/* Pour test en standalone
body, div, p, img {
	margin :0;
	padding: 0;
	border: none;
}
*/
/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {	
	width: 565px; /* 553px taille totale des vignettes + marges droite */
	/*height: 90px;*/
	
	/* custom decorations */
	/*padding:10px 0;*/
	/*border:1px outset #ccc;*/
	/*background-color:#00ff00;*/		
}

/* 
	root element for scrollable items. Must be absolutely positioned
	and it should have a super large width to accomodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
div.scrollable div.items {	
	/* this cannot be too large */
	/*width:20000em;*/
	/*height: 100%;*/
	/*position:absolute;*/
	/*clear:both;*/
	/* decoration */
	/*margin-left:10px;*/
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	
	/* custom decoration */
	background-color: #ddd;
	/*
	margin-right: 4px;
	margin-bottom: 4px;
	*/
	margin: 0px 2px 2px 0px;
}
div.scrollable div.items div a {
	display: block;
	border:1px solid #bebebe;
	outline: none;
}
div.scrollable div.items div a:hover {
	border:1px solid #a3a2a2;
}
div.scrollable div.items div a img {
	display: block;
}
/* active item */
div.scrollable div.items div.active a{
	border:1px solid #a3a2a2;
	cursor: default;	
	/*background-color:#fff;*/
}

