
/* container for slides */
.scrolltabs {
	position:fixed; /* ------- ATTENTION: la div père doit être relative ou absolute ------------ */
	/* background:transparent url(images/barrebandeau.png) repeat-y top left; */
	width:100%;
	top:0;
	left:50%; /* centrage du header qq soit la taille du navigateur */
	margin-left:-500px; /* width / 2 + 20px calage avec le bloc news */
	z-index:-1;
	cursor:pointer;
}

/* single slide */
.scrolltabs div {
	display:none;
	position:absolute;
	width:100%;
	top:0;
	left:0;		
	margin:0 0;
	padding:0;
	overflow:hidden;
}

/* p */
.scrolltabs div p.titre {
	position:relative;
	margin:60px 0 0 250px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:48px;
	font-weight:bold;
	text-align:left;
	text-transform:uppercase;
	line-height:50px;
	color:#f3892d;
	float:left;
	z-index:10;
}

/* tabs (those little circles below slides) */
.slidetabs {
	position:relative;
	width:100%;
	height:15px;
	padding-top:1px;
	float:left;
	z-index:-1;
}

/* single tab */
/*.slidetabs a {
	position:relative;
	width:15px;
	height:15px;
	margin:10px;
	background:url(/Plugins/jquerytools/img/scrollable/arrow/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
	float:right;
	z-index:-1;
}

/* mouseover state */
/*.slidetabs a:hover {
	background-position:0 -15px;      
}

/* active state (current page state) */
/*.slidetabs a.current {
	background-position:0 -30px;     
} 	


/* prev and next buttons */
/*.forward, .backward {
	float:left;
	margin-top:40px;
	background:#fff url(/Plugins/jquerytools/img/scrollable/arrow/hori_large.png) no-repeat;
	display:block;
	width:15px;
	height:15px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;	
}

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


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

/* disabled navigational button. is not needed when tabs are configured with rotate: true */
.disabled {
	visibility:hidden !important;		
}
