/* root element for the whole scrollable setup */
div.scrollable {  
	position:relative;
	overflow:hidden;
	padding:10px;
	width: 460px;	 
	height:230px;	
	border:solid 1px #cccccc;
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position:absolute;
	width:60000px;	
	clear:both;

}

/* custom positioning for navigational links */
a.prev, a.next {
	margin-top:118px;	
}



/* single item */
#thumbs div {
	float:left;
	text-align:center;
	font-size:12px;
	line-height:140%;
	margin:5px;
	width:140px;
	height:220px;
	background-color:#ffffff;
	cursor:pointer;
}

/* style when mouse is over the item */
#thumbs div.hover {
	background-color:#cccccc;	
}

/* style when element is active (clicked) */
#thumbs div.active {
	background-color:#999999;
	cursor:default;
}

#thumbs h3, #thumbs p, #thumbs span {
	font-size:12px;
}

#thumbs h3 em {

}