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

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

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



/* single item */
#thumbs .item {
	float:left;
	width:900px;
	height:400px;
	background:#000;
	color:#fff;
	border-left:1px solid #333;
	background:#000 url(../../../img/scrollable/h151.png) repeat-x;

	cursor:pointer;
	padding:20px;
}

#thumbs .item .image{
	width:900px;
	height:330px;
	border:1px solid white;
	
	}

#thumbs .item img{
	height:330px;
	}
	
	
#thumbs .item .details{
	float:left;
	width:245px;
		padding:2%;

	}
#thumbs .item .details p{
	text-align:center;
	color:#CCCCCC;
	line-height:20px;
	font-size:16px;	
	
}
#thumbs .item .details a{
	color:white;
	}

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

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

#thumbs h3, #thumbs p, #thumbs span {
	margin:13px;		
	font-family:"bitstream vera sans";
	font-size:13px;
	color:#fff;	
}

#thumbs h3 em {
	font-style:normal;
	color:yellow;