/****************************************************************
  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;
	border-style: none;
}

.dbx-box.dbx-dummy.dbx-offdummy {
	border-style: none;
}
.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 {
	clear: both;
	width: 174px;
	margin-top: 5px;
	margin-bottom: 5px;
	background-color: white;
	border: 3px solid #A0AEB5;
}
/****************************************************************
  otherwise, do what you like :) 
*****************************************************************/
/* group container(s) */
.dbx-group {
	padding: 0;
}
* html .dbx-group {
	padding-bottom:0;
	padding: 0;
}

/* handles */
.dbx-handle {
	position:relative;
	margin: 0;
	color: white;
	font-size: 11px;
	background-color: #A0AEB5;
	padding: 2px 2px 2px 7px;
	height: 16px;
}
* html .dbx-handle {
	position:relative;
	margin: 0;
}

h3.dbx-handle {
	line-height: 15px;
	font-size: 11px;
	text-transform: uppercase;
	font-weight: normal;
	font-style: normal;
	letter-spacing: 1px;
}

/* 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 */
a.dbx-toggle, a.dbx-toggle:visited {
	overflow:hidden;
	text-indent:-50px;
	text-decoration:none;
}
a.dbx-toggle-open, a.dbx-toggle-open:visited {
	border: 1px solid white;
	background: #A0AEB5 no-repeat 0 0;
	width: 9px;
	height: 9px;
	display: inline-block;
	position: absolute;
	right: 3px;
	top: 3px;
}

a.dbx-toggle-open:hover {
	background: #f90 0 0;
}
a.dbx-toggle-closed, a.dbx-toggle-closed:visited {
	background-color: #900;
	border: 1px solid white;
	width: 9px;
	height: 9px;
	display: inline-block;
	position: absolute;
	top: 3px;
	right: 3px;
}

a.dbx-toggle-closed:hover {
	background-color: #99cc00;
}
a.dbx-toggle-hilite-open, a.dbx-toggle-hilite-open:visited {
}
a.dbx-toggle-hilite-closed, a.dbx-toggle-hilite-closed:visited {
}

/* keyboard navigation tooltip */
.dbx-tooltip {
	display:block;
	position:absolute;
	margin:36px 0 0 125px;
	width:185px;
	border:1px solid #000;
	background:#ffd;
	color:#000;
	font:normal normal normal 0.85em tahoma, arial, sans-serif;
	text-align:left;
	padding: 2px 4px 3px 5px;
}
* html .dbx-tooltip { width:210px; }

/* use CSS2 system colors in CSS2 browsers 
   but not safari, which doesn't support them */
*[class="dbx-tooltip"]:lang(en) {
	border-color:InfoText;
	background:InfoBackground;
	color:InfoText;
	font:small-caption;
	font-weight:normal;
	}
/* inner content area */	
.dbx-content {
	overflow: hidden;
}

.dbx-content select {
	width: 150px;
}
/* toggle state of inner content area */

.dbx-box-closed .dbx-content {
	display:block;
	padding:0;
	overflow:hidden;
}
.dbx-box-closed .dbx-content * {
	display:none;
}

/* additional clone styles */
.dbx-clone {
	opacity:0.8;
	-moz-opacity:0.8;
	-khtml-opacity:0.8;
	filter:alpha(opacity=80);
	padding: 0;
}