/****************************************************************
  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;
	}
.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) */
#purple-outer {
	margin:0;
	width:152px;
	z-index:4;
	}
	
.dbx-group {
	clear:both;
	width:143px;
	padding:6px 3px 0 3px;
	background-color: #67679a;
	}
	
* html .dbx-group {
	padding-bottom:0;
	}







	
/* handles */
.dbx-handle {
	width:143px; 
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:15px;
	font-weight:bold;
	text-align:center;
	position:relative;
	margin: 6px 0 0 0;
	padding:6px 0 6px 0;
	color:#fff;
	background-image: url(images/rounded-codemesh-purple_140x460.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	}
* html .dbx-handle { 
	width:143px; 
	}

	
/* 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 {
	display:block;
	width:16px;
	height:16px;
	overflow:hidden;
	background:url(images/purple_toggle.gif) no-repeat;
	position:absolute;
	top:8px;
	left:3px;
	text-indent:-50px;
	text-decoration:none;
	}
	
	
a.dbx-toggle-open, a.dbx-toggle-open:visited {
	background-position:0 -16px;
	}
a.dbx-toggle-closed, a.dbx-toggle-closed:visited {
	background-position:0 0;
	}
a.dbx-toggle-hilite-open, a.dbx-toggle-hilite-open:visited {
	background-position:-16px -16px;
	}
a.dbx-toggle-hilite-closed, a.dbx-toggle-hilite-closed:visited {
	background-position:-16px 0;
	}






/* 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;
	padding:2px 4px 3px 5px;
	text-align:left;
	}
* html .dbx-tooltip { width:195px; }

/* 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 {
	margin:0;
	padding:0 0 12px 0;
	list-style-type:none;
	background: #9a9ac0 url(images/rounded-codemesh-lightpurple_140x460.png) no-repeat 0 100%;
	}




.dbx-content li {
	margin:0;
	padding:3px 6px 3px 6px;
	list-style-type:none;
	font:normal normal normal 0.80em verdana,sans-serif;
	color:#fff;
	background-color: #9a9ac0;
	background-image: url(images/rounded-codemesh-lightpurple_140x460.png);
	background-repeat: repeat-y;
	}
	
.dbx-content li.important {
	margin:0;
	padding:3px 6px 3px 6px;
	list-style-type:none;
	font:normal normal normal 0.80em verdana,sans-serif;
	color:#fff;
	background-color: #9a9ac0;
	background-image: url(images/rounded-codemesh-lightred_bottom_143x460.png);
	background-repeat: repeat-y;
}

.dbx-content a, .dbx-content a:visited {
	color:#fff;
	margin-left:3px;
	text-decoration:none;
	}

.dbx-content a:hover, .dbx-content a:focus, .dbx-content a:active {
	color:#306;
	margin-left:3px;
	text-decoration:underline;
	}





/* 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;
	-moz-opacity:0.8;
	-khtml-opacity:0.8;
	filter:alpha(opacity=80);
	}





			
