
/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:39px;
	height:75px;
	background:url(/sitev3/v4_images/left.png) no-repeat;
	background-position:0px -2px;
	float:left;
	cursor:pointer;
	margin-top:60px;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -76px;		
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(/sitev3/v4_images/right.png);
	clear:right;	
}





/* root element for the whole scrollable setup */
div.scrollable {  
	position:relative;
	overflow:hidden;
	width: 861px;	 
	height:185px;	
}

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



/* single item */
#thumbs div {
	float:left;
	text-align:center;
	width:287px;
	height:185px;
	color:#fff;
	cursor:pointer;
}

/* style when mouse is over the item */
#thumbs div.hover {
	
}

/* style when element is active (clicked) */
#thumbs div.active {
	/*background-color:#7db8ca;*/
	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;
}