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

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

/* custom positioning for navigational links */
a.prev, a.next {
	margin-top:27px;	
}



/* single item */
#thumbs div {
	float:left;
	width:600px;
	height:400px;
	margin:0 -1px 0 0;
	cursor:pointer;
}



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


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


