/* root element for the whole scrollable setup */
div.scrollable {  
	position:relative;
	top:-4px;
	left:1px;
	overflow:hidden;
	width: 528px;	 
	height:300px;
	background:#FFF;
}
 
/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position:absolute;
	margin:0;
	padding:0;
	width:20000em;	
	clear:both;
	
}
 
/* custom positioning for navigational links */
a.prev, a.next {
	margin-top:118px;	
}
 
 
 
/* single item */
#thumbs div {
	float:left;
	width:175px;
	height:300px;
	margin:0 1px 0 0;
	background:#333 url(../images/bck_scroller.png) repeat-x 0 210px;
	color:#fff;
	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: #8A0000;
	cursor:default;
}
 
#thumbs h3, #thumbs p, #thumbs span {
	margin:13px;		
	font-family: Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#fff;	
}
 
#thumbs h3 em {
	font-style:normal;
	color:#CCC;
	font-size:13px;
}