@charset "utf-8";
/* CSS Document */

/* root element for the whole scrollable setup */
div.scrollable {  
	position:relative;
	overflow:hidden;
	width: 600px;	 
	height:200px;	
	border:2px ridge black;
	float:left;
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
	border:1px solid #222;
}

/* custom positioning for navigational links */
a.prev, a.next {
	
cursor:pointer;
display:block;
float:left;
height:40px;
width:50px;
margin-top:12%;
}


a.prev{
	background:transparent url(../images/centrex/retour.png) no-repeat scroll 0 0;
}

a.next{
	background:transparent url(../images/centrex/suivant.png) no-repeat scroll 0 0;
}


/* single item */
#thumbs div {
	float:left;
	width:200px;
	height:200px;
	background:#333 url(http://static.flowplayer.org/img/global/gradient/h150.png) repeat-x 0 146px;
	color:#fff;
	border-left:1px solid #333;
	cursor:pointer;
}

/* style when mouse is over the item */
#thumbs div.hover {
	background-color:#444;	
}

/* style when element is active (clicked) */
#thumbs div.active {
	background-color:#066;
	cursor:default;
}

#thumbs h3, #thumbs p, #thumbs span {
	margin:13px;		
	font-family:"bitstream vera sans";
	font-size:13px;
	color:#fff;	
}

#thumbs h3 em {
	font-style:normal;
	color:yellow;
}
