


/****************************************************************
  Docking Boxes core CSS: YOU MUST NOT CHANGE OR OVERRIDE THESE 
*****************************************************************/
.dbx-clone {
	position:absolute;
	visibility:hidden;
	}
.dbx-clone, 
.dbx-clone .dbx-handle-cursor {
	cursor:move !important;
	}
.dbx-dummy {
	display:block;
	width:0;
	height:0;
	overflow:hidden;
	margin:0 !important;
	padding:0 !important;
	}
.dbx-group, .dbx-box, .dbx-handle {
	position:relative;
	display:block;
	}



/****************************************************************
  avoid padding, margins or borders on dbx-box, 
  to reduce visual discrepancies between it and the clone.  
  overall, dbx-box is best left as visually unstyled as possible 
*****************************************************************/
.dbx-box {
	margin:0;
	padding:0;
	border:none;
	}



/****************************************************************
  otherwise, do what you like :) 
*****************************************************************/




/* group container(s) */
#widgets {
	padding:0;
	margin:0 0 0 0;
	float:left;
	position:relative;
	
	}
.dbx-group {
	float:left;
	clear:both;
	width:100%;
	}
* html .dbx-group {
	width:100%;
	padding-bot\tom:0;
	}


#widgets .dbx-box, #widgets2 .dbx-box {
	float:left;
	
	height:auto;
	margin:1%;
	padding:0;
	border:1px solid #dfdfdf;
	background:#f3f3f3;
	-moz-border-radius-topleft:6px;
	-moz-border-radius-topright:6px;
	-moz-border-radius-bottomleft:6px;
	-moz-border-radius-bottomright:6px;

}
#widgets .dbx-box {
width:30.2%;
}
#widgets2 .dbx-box {
	width:46.25%;

}
#widgets .dbx-box.dbx-dummy.dbx-offdummy, #widgets2 .dbx-box.dbx-dummy.dbx-offdummy {
	border:0;
}
	
/* handles */
.dbx-handle {
	font-size: 12px;
	
	text-align:left;
	position:relative;
	margin:0;
	padding:3px;
	padding-left:5px;
	
	background:url('../img/handle_bg.png') top left repeat-x;
	color:#464646;
	}
* html .dbx-handle { 
	width:150px; 
	}

	
/* handle cursors are in a class of their own
   so they only get applied if the script is supported */
.dbx-handle-cursor {
	cursor:move;
	}
	

	
	

/* toggle images */
.dbx-toggle {
	display:block;
	width:20px;
	height:20px;
	padding:0;
	margin:0;
	border:none;
	background:url(images/purple-toggle.gif) no-repeat;
	position:absolute;
	top:14px;
	right:3px;
	border:none;
	}
	
	
.dbx-toggle-open {
	background-position:0 0;
	}
.dbx-toggle-closed {
	background-position:0 -20px;
	}
.dbx-toggle-hilite-open {
	background-position:-20px 0;
	}
.dbx-toggle-hilite-closed {
	background-position:-20px -20px;
	}






/* keyboard navigation tooltip */
.dbx-tooltip 
{
	margin:36px 0 0 125px;
	width:185px;
	
	display:block;
	position:absolute;
	border:1px solid InfoText;
	background:InfoBackground;
	color:InfoText;
	font:small-caption;
	font-weight:normal;
	padding:2px 4px 3px 5px;
	text-align:left;
}







/* inner content area */	
.dbx-content {
	margin:0;
	overflow:auto;
	padding:5px;
	height:360px;
	list-style-type:none;
	}


.dbx-content li {
	width:94%;
	margin-left:7%;
	list-style-type:disc;
	list-style-position:outside;
	
	}


/* toggle state of inner content area */
.dbx-box-closed .dbx-content {
	display:block;
	height:10px;
	padding:0;
	overflow:hidden;
	}
.dbx-box-closed .dbx-content * {
	display:none;
	}





/* additional clone styles */
.dbx-clone {
	opacity:0.8;
	filter:alpha(opacity=80);
	}







/* hacks for IE6 */
* html .dbx-tooltip {
	font-weight:normal !important;
	}
	
			