/* root element for the whole scrollable setup */
div.scrollable {  
	position:relative;
	overflow:hidden;
	width: 644px;	 
	height:174px;	
	margin: 0 0 7px 0;
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
	border:1px solid #222;
}




/* single item */
#thumbs div {
	float:left;
	width:320px;
	height:174px;
	background:url(../img/bg_c.jpg) no-repeat;
	border-left:1px solid #161616;
	cursor:pointer;
}

/* style when mouse is over the item */
#thumbs div.hover {
	background:url(../img/bg_c2.jpg) no-repeat;;	
}

/* style when element is active (clicked) */
#thumbs div.active {
	background-color:#200108;
	cursor:default;
}


</style>
