/************************************************ the overlayed element ****************************************************/
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#333;
	
	max-width:1100px;	
	min-height:200px;
	border:1px solid #666;
	padding:0;
	max-height:680px;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;
	box-shadow: 0 0 90px #000;
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(../img/close.png) ;
	/*background-repeat : no-repeat ;*/ /** ajouter par moi : inutile **/
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:32px;
	width:32px;
}

.simple_overlay img{
	float:left;
	margin: 0 10px 0px 0;
	max-width:550px;
	max-height:680px;
}

/* styling for elements inside overlay */
	.details {
		display:inline-block;
		max-width:510px;
		margin:5px 10px 5px 5px;
		font-size:11px;
	}
	
	.details h2 {
		margin:0 0 -10px 0;
	}
	
	
	
	
/************************************************ root element for tabs  ***************************************/
.tabs { 
	list-style:none; 
	/* margin:0 !important;*/
	margin:0 ;
	padding:0;
	margin-top:10px;
	padding-left:10px;
	height:28px;
	clear:both;
	/*border-bottom:1px solid #666;	*/
}

/* single tab */
.tabs li { 
	float:left;	 
	text-indent:0;
	padding:0;
	margin:0 !important;
	list-style-image:none !important; 
}

/* link inside the tab. uses a background image */
.tabs a { 
	background: url(../img/tabs.png) no-repeat 0 0;
	font-size:11px;
	display:block;
	height: 28px;  
	line-height:28px;
	width: 150px;
	text-align:center;	
	text-decoration:none;
	color:#000;
	padding:0px;
	margin:0px;	
	position:relative;
	top:1px;
}

.tabs a:active {
	outline:none;		
}

/* when mouse enters the tab move the background image */
.tabs a:hover {
	background-position: -0px -60px;	
	color:#fff;	
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
.tabs .current, .tabs .current:hover, .tabs li.current a {
	background-position: 0px -120px;		
	cursor:default !important; 
	color:#000 !important;
}

/* Different widths for tabs: use a class name: w1, w2, w3 or w2 */


/* width 1 */
.tabs .w1 			{ background-position: -519px 0; width:134px; }
.tabs .w1:hover 	{ background-position: -519px -31px; }
.tabs .w1.current { background-position: -519px -62px; }

/* width 2 */
.tabs .w2 			{ background-position: -366px -0px; width:154px; }
.tabs .w2:hover 	{ background-position: -366px -31px; }
.tabs .w2.current { background-position: -366px -62px; }


/* width 3 */
.tabs .w3 			{ background-position: -193px -0px; width:174px; }
.tabs .w3:hover 	{ background-position: -193px -31px; }
.tabs .w3.current { background-position: -193px -62px; }

/* width 4 */
.tabs .w4 			{ background-position: -0px -0px; width:194px; }
.tabs .w4:hover 	{ background-position: -0px -31px; }
.tabs .w4.current { background-position: -0px -62px; }


/* initially all panes are hidden */ 
.panes .pane {
	display:none;		
}

.panes {
	text-align:left;
	padding:10px;
	margin-bottom:15px;
	border:1px solid #282828;
	background-color:#3a3a3a;
	clear:both;
	min-height:200px;
	max-height:540px;
	overflow:auto;
	box-shadow:3px 3px 6px 2px rgba(35,30,30,0.7) ;
	border-radius:6px;
	-moz-box-shadow:3px 3px 6px 2px rgba(35,30,30,0.7) ;
	-moz-border-radius:6px;
	-webkit-box-shadow:3px 3px 6px 2px rgba(35,30,30,0.7) ;
	-webkit-border-radius:6px;
	}
	
.panes-image {
	
	width:640px;
	min-height:0;
	margin-left:20px;
	color:#efefef;
}

/************************************************** tool tips *********************************************/
/* simple css-based tooltip */
.tooltip {
	background-color:#000;
	border:1px solid #fff;
	padding:10px 15px;
	width:200px;
	display:none;
	color:#fff;
	text-align:left;
	font-size:1.0em;

	/* outline radius for mozilla/firefox only */
	-moz-box-shadow:0 0 10px #000;
	-webkit-box-shadow:0 0 10px #000;
}



/**********************************************	root element for the scrollable.when scrolling occurs this element stays still.************/

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 552px;
	height:120px;

	/* custom decorations */
	border:1px solid #ccc;
	
	/*-moz-border-radius:8px;
	-webkit-border-radius:8px;
	-moz-box-shadow:0 0 12px #000;
	-webkit-box-shadow:0 0 12px #000;*/
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

.items div {
	float:left;
	width:760px;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:20px 4px 20px 13px;
	background-color:#fff;
	border:1px solid #ccc;
	width:115px;
	height:80px;
	
	/*-moz-border-radius:4px;
	-webkit-border-radius:4px;   */
	/*-moz-box-shadow:0 0 6px #000;
	-webkit-box-shadow:0 0 6px #000;*/
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}



/* prev, next, prevPage and nextPage buttons */
/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;

}

a.browse {
	background:url(../img/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	/*float:left;
	margin:40px 10px; */
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 				{ background-position: 0 -30px; clear:right; margin-right: 0px;}
a.right:hover 		{ background-position:-30px -30px; }
a.right:active 	{ background-position:-60px -30px; } 


/* left */
a.left				{ margin-left: 0px; } 
a.left:hover  		{ background-position:-30px 0; }
a.left:active  	{ background-position:-60px 0; }


/* div scrollgallery */
div.scrollgallery {float:left;margin:44px 7px;}

/********************************************************************** up and down ****************************************************/
a.up, a.down		{ 
	background:url(../img/vert_large.png) no-repeat; /* fichier inexistant*/
	float: none;
	margin: 10px 50px;
}

/* up */
a.up:hover  		{ background-position:-30px 0; }
a.up:active  		{ background-position:-60px 0; }

/* down */
a.down 				{ background-position: 0 -30px; }
a.down:hover  		{ background-position:-30px -30px; }
a.down:active  	{ background-position:-60px -30px; } 


/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	
