/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scroll-products{
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 476px;	
	height:255px;	
	
	/* custom decorations */
	padding:0;	
	background-color: none;	
	float:left;			
}

/* 
	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.
*/

#prod-thumbs {	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;		
}

/* single scrollable item */
#prod-thumbs div {
	float:left;
	
	/* custom decoration */
	text-align:center;
	width:476px;
	height:255px;
	padding:0;
	font-size:12px;
	border:0;
	background-color: #ddd;	
}

#prod-thumbs div img {
	border: none;
}

/* active item */
#prod-thumbs div.active {	
	background-color:none;
}

/*********** navigator ***********/

/* position and dimensions of the navigator */
#prod-thumbs-navi {	
	margin-left:45%;
	width:200px;
	height:20px;
	/* provisoire - en anttendant de régler l'affichage*/
	visibility: hidden

}
/* items inside navigator */
#prod-thumbs-navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../images/scrollable/navigator.png) 0 0 no-repeat;     
	cursor:pointer;	
}

/* mouseover state */
#prod-thumbs-navi a:hover { background-position:0 -8px; }

/* active state (current page state) */
#prod-thumbs-navi a.active { background-position:0 -16px; }

/*********** Next / Previous ***********/
/* prev, next, prevPage and nextPage buttons */
#prod-thumbs-prev a.prev, #prod-thumbs-next a.next, #prod-thumbs-prev a.prevPage, #prod-thumbs-next a.nextPage {
	display:block;
	width:18px;
	height:18px;
	background:url(../images/scrollable/std-left.png) no-repeat;
	float:left;
	margin:130px 3px;
	cursor:pointer;
	/* provisoire - en anttendant de régler l'affichage*/
	visibility: hidden
}

/* mouseover state */
#prod-thumbs-prev a.prev:hover, #prod-thumbs-next a.next:hover, #prod-thumbs-prev a.prevPage:hover, #prod-thumbs-next a.nextPage:hover {
	background-position:0px -18px;		
}

/* disabled navigational button */
#prod-thumbs-navi .disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
#prod-thumbs-next a.next, #prod-thumbs-next a.nextPage {
	background-image:url(../images/scrollable/std-right.png);
	clear:right;
	margin:130px 0px 0px 3px;	
}