/* root element for the whole scrollable setup */
div.scrollable {  
	position: relative;
	overflow: hidden;
	top: 0px;
	left: 0px;
	width: 646px;	 
	height: 300px;	
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position: absolute;
	width: 20000em;	
	height: 300px;
	clear: both;
	border: 1px solid #222;
}

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



/* single item */
#thumbs div {
	float: left;
	width:214px;
	height:300px;
	background:#333 url(../img/h150.png) repeat-x 0 146px;
	color:#fff;
	border-left:1px solid #333;
	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:#003;
	cursor:default;
}

#thumbs h3, #thumbs span {
	margin:13px;
	font-family: Arial, Helvetica, sans-serif;
	font-size:13px;
	color:#fff;
}

#thumbs p {
	margin:13px;
	font-family: Arial, Helvetica, sans-serif;
	font-size:12px;
	line-height: 16px;
	color:#fff;
	text-align: justify;
}

#thumbs h3 em {
	font-style:normal;
	font-family: Arial, Helvetica, sans-serif;
	color:#00a2e5;
}


