body {
	margin: 0px;
	padding: 0px;
}


/****************************************************************
  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:10px;
	padding:0;
	
	}



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




/* group container(s) */
.dbx-group {
	position: absolute;
	z-index: 500;
	top: 0px;
	left: 0px;
	clear:both;
	width:250px;
	margin: 0px;
	font-family: Tahoma, Arial, Helvetica, SansSerif;
	font-size: 12px;
	color: #333333;
	}
.dbx-header {
	font-size: 9px;
	width: 220px;
	text-align: right;
	height: 30px;
	margin: 10px;
	padding: 37px 10px 0px 0px;
	-moz-border-radius: 10px;
	-webkit-border: 10px;
	background-color: #eeeeee;
	border: 1px solid #DDDDDD;
	background-image: url(media/on-admin-header.png);
	background-repeat: no-repeat;
	cursor: move;
}
.dbx-sub-header {
	font-size: 9px;
	width: 210px;
	text-align: right;
	margin: 10px;
	padding: 10px;
	-moz-border-radius: 10px;
	-webkit-border: 10px;
	background-color: #eeeeee;
	border: 1px solid #DDDDDD;
}
	
/* handles */
.dbx-handle {
	font:normal normal bold 1em tahoma,sans-serif;
	text-align:left;
	position:relative;
	margin:0px;
	padding: 10px;
	color: #0071BC;
	font-size: 14px;
	font-weight: bold;
	background-color: #DDDDDD;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-topright: 10px;
	-webkit-border-topleft: 10px;
	-webkit-border-topright: 10px;
	}

	
/* 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:16px;
	height:17px;
	padding:0;
	margin:0;
	border:none;
	position:absolute;
	top:10px;
	right:3px;
	border:none;
	background-color: #DDDDDD;
	background-image: url(media/minmax_btn.png);
	}

.dbx-toggle-open {	
	background-position: top left;
	}
.dbx-toggle-closed {
	background-position: bottom left;
	}
.dbx-toggle-hilite-open {
	background-position: top left;
	}
.dbx-toggle-hilite-closed {
	background-position: bottom left;
	}
/* 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;
	padding:10px 0px 10px 0;
	list-style-type:none;
	background-color: #EEEEEE;
	border-bottom: 1px solid #DDDDDD;
	border-left: 1px solid #DDDDDD;
	border-right: 1px solid #DDDDDD;
	-moz-border-radius-bottomleft: 10px;
	-moz-border-radius-bottomright: 10px;
	-webkit-border-bottomleft: 10px;
	-webkit-border-bottomright: 10px;
	}
.dbx-content h1 {
	font-size: 20px;	
	background: none;
}
.dbx-content h2 {
	font-size: 16px;	
	background: none;
}
.dbx-content h3 {
	font-size: 14px;	
	background: none;
}
.dbx-content li {
	width:210px;
	margin:0px;
	padding:0px 10px;
	list-style-type:none;
	font:normal normal normal 0.85em verdana,sans-serif;
	}

.dbx-content a, .dbx-content a:visited {
	color:#000;
	text-decoration:none;
	}

.dbx-content a:hover, .dbx-content a:focus, .dbx-content a:active {
	color:#306;
	text-decoration:underline;
	}
.dbx-content table td {
	text-align: left;	
}
/* 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;
	}
	
			