
/* root element for tabs  */
ul.tabs { 
	list-style:none; 
	margin:0 !important; 
	padding:0;	
	border-bottom:1px solid #fff;	
	height:31px;
}

/* single tab */
ul.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 */
ul.tabs a { 
	background-image:url(../img/puce_onglets.gif);
	background-repeat:no-repeat;
	background-position:right 0px;
	position:relative;
	font-size:16px;
	font-weight:bold;
	display:block;
	height: auto;/*25px*/  
	/*line-height:30px;*/
	width: auto;
	text-align:left;	
	text-decoration:none;
	color:#938f8d;
	padding:4px 25px 4px 6px;
	margin:0px 4px 0px 0px;
	background-color:#f2f0ec;

}

ul.tabs a:active {
	outline:none;
	
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	background-position:right -42px;
	color:#a3a3a3;	
}

/* active tab uses a class name "current". its highlight is also done by moving the background image. */
ul.tabs a.current, ul.tabs a.current:hover, ul.tabs li.current a {
	background-position:right -42px;	
	cursor:default !important; 
	color:#e97f04 !important;
}




/* initially all panes are hidden */ 
.panes .pane {
	display:block;		
}

.panes div {
	display:block;
	padding:15px 10px;
	margin:8px 0px 0px px;
	border:none;
	border-top:0;
	height:auto;
}