


/****************************************************************
  docking boxes core CSS: YOU MUST NOT CHANGE OR OVERRIDE THESE 
*****************************************************************/
.lbx-clone {
	position:absolute;
	visibility:hidden;
	}
.lbx-clone, .lbx-clone .lbx-handle-cursor {
	cursor:move !important;
	}
.lbx-dummy {
	display:block;
	width:0;
	height:0;
	overflow:hidden;
	}
.lbx-group, .lbx-box, .lbx-handle {
	position:relative;
	display:block;
	}



/****************************************************************
  avoid padding, margins or borders on lbx-box, 
  to reduce visual discrepancies between it and the clone.  
  overall, lbx-box is best left as visually unstyled as possible 
*****************************************************************/
.lbx-box {
	margin:0;
	padding:0;
	border:none;
	}



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





/* group container(s) */
.lbx-group {

	}





/* boxes */
.lbx-box {
}
	
.lbx-box-open {
}

.lbx-box-closed {
	display:none;
}





/* inner content area */	
.lbx-content {
	}

/* toggle state of inner content area */
.lbx-box-open .lbx-content {
	display:block;
}

.lbx-box-closed .lbx-content {
	display:none;
}





/* handles */
.lbx-handle {
	}

/* handle cursors */
.lbx-handle-cursor {
	cursor: move;
}





/* toggle images */
a.lbx-toggle, a.lbx-toggle:visited {
	display:block;
	width:20px;
	height:20px;
	overflow:hidden;
	background-image:url(/images/sidep-toggle.png);
	position:absolute;
	top:2px;
	right:3px;
	text-indent:-50px;
	text-decoration:none;
}
.fieldset a.lbx-toggle, a.lbx-toggle:visited {
		visibility:hidden;
}
	
/* open */
a.lbx-toggle-open, a.lbx-toggle-open:visited {
	background-position:0 0;
}
/* closed */
a.lbx-toggle-closed, a.lbx-toggle-closed:visited {
	background-position:0 -20px;
}
/* open and highlighted */
a.lbx-toggle-hilite-open, a.lbx-toggle-hilite-open:visited {
	background-position:-20px 0;
}
/* closed and highlighted */
a.lbx-toggle-hilite-closed, a.lbx-toggle-hilite-closed:visited {
	background-position:-20px -20px;
}





/* keyboard navigation tooltip */
.lbx-tooltip {
	}





/* additional clone styles */
.lbx-clone {
/* Attendre CSS 3
   	opacity:0.8;
	-moz-opacity:0.8;
	-khtml-opacity:0.8;
	filter:alpha(opacity=80); */
}





			