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

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

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




/* single item */
#thumbs div {
	float:left;
	width:650px;
	height:620px;
	color:#222;
	cursor:pointer;
}

/* style when mouse is over the item */
#thumbs div.hover {
}

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

#thumbs h3, #thumbs p, #thumbs span {
	padding:0;
	margin:10px 20px;
	font-size:14px;
	text-align:center;
}