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

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



/* single item */
div.thumbs div {
	float:left;
	width:440px;
	height:330px;
	margin:0 0 0 0;
	cursor:pointer;
}

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


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

