/* container for slides */
#actualites .actus {
	position:relative;	
	height:210px;
	width:205px;
	float:left;	
	cursor:pointer;
}
#partenaires .parten {
	position:relative;
	height:160px;
	width:205px;
	float:left;
	cursor:pointer;
	text-align: center;
}
/* single slide */
.actus div {
	display:none;
	position:absolute;
	top:0;
	left:0;		
	margin:0px;
	padding:5px;
	height:210px;
}
.parten div {
	display:none;
	position:absolute;
	top:0;
	left:0;		
	margin:0px;
	padding:5px;
	height:160px;
}

/* header */

/* tabs (those little circles below slides) */
div#side .tabs {
	clear:both;
	margin-left: 90px;
}

/* single tab */
.tabs a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(images/navigator.png) no-repeat 0 0;
	display:block;
	font-size:1px;		
}

/* mouseover state */
.tabs a:hover {
	background-position: 0 -8px;
}
/* active state (current page state) */
.tabs a.current {
	background-position: 0 -16px;
} 	

/* prev and next buttons */
.forward {
	float:left;
	margin-top:100px;
	background:url(images/right.png) no-repeat;
	display:block;
	width:18px;
	height:18px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;	
}
.backward {
	float:left;
	margin-top:100px;
	background:url(images/left.png) no-repeat;
	display:block;
	width:18px;
	height:18px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;	
}
/* next */
.forward 				{ background-position: 0 -18px; clear:right; }
.forward:hover 		{ background-position:-18px -18px; }
.forward:active 	 	{ background-position:-36px -18px; } 


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

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