


/****************************************************************
  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 {
	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;
	}


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





/* group container(s) */
.dbx-group {
	background:#fff;
	border-color:#f3f3f3 #999 #999 #f3f3f3;
	width:730px !important;
}





/* boxes */
.dbx-box {


	}
	

	
/* handles */
.dbx-handle, .dbx-handle:visited {
	display:block;
	background:#fff;
}






/* keyboard navigation tooltip */
.dbx-tooltip {

	}
* html .dbx-tooltip {}

/* use CSS2 system colors in CSS2 browsers 
   but not safari, which doesn't support them */
*[class="dbx-tooltip"]:lang(en) {

	}

/* additional clone styles */
.dbx-clone {
	opacity:0.9;
	-moz-opacity:0.9;
	-khtml-opacity:0.9;
	filter:alpha(opacity=90);
	}




