/*
  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 :) 
*/
.dbx-box {
	margin-bottom: 5px;
}
.dbx-box-open .dbx-content {
	display:block;
}
.dbx-box-closed .dbx-content {
	display:none;
}
/* Fait disparaitre le handle sur la pub sans perturber le fonctionnement */
.pub-handle {
	display:none;
}
.dbx-handle-cursor {
	cursor: move;
}
a.dbx-toggle, a.dbx-toggle:visited {
	display:block;
	width:10px;
	height:10px;
	overflow:hidden;
	background-image:url(/images/sidep-toggle.png);
	position:absolute;
	top:2px;
	right:2px;
	text-indent:-50px;
	text-decoration:none;
}
a.dbx-toggle-open, a.dbx-toggle-open:visited,
a.dbx-toggle-hilite-open, a.dbx-toggle-hilite-open:visited {
	background-position:-5px -5px;
}
a.dbx-toggle-closed, a.dbx-toggle-closed:visited,
a.dbx-toggle-hilite-closed, a.dbx-toggle-hilite-closed:visited {
	background-position:-5px -25px;
}
