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

/* 
	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:500px;
	background:#222;
	color:#fff;
	border-left:1px solid #333;
	cursor:pointer;
	text-align:center;
}

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

#thumbs .item img{
	height:500px;
	}
	
#thumbs .item .details{
	z-index:10000;
	position:absolute;
	
	margin-top:-100px;
	*margin-left:-450px;
	background:transparent url(../../../img/scrollable/h151.png) repeat-x 100% 100%;
	width:900px;
	height:100px;
	color:#CCCCCC;
	font-size:18px;
	
	
	}
#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;