/* root element for the whole scrollable setup */
div.scrollable {  
	position:relative;
	overflow:hidden;
	width: 1000px;	 
	min-height: 475px;
	height:auto !important;
	height: 475px;
	/*margin:0px;
	padding:0px;*/
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position:absolute;
	width:20000px;	
	clear:both;
	/*border:none;
	margin:0px;
	padding:0px;*/
}

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



/* single item */
#thumbs div {
	float:left;
	width:1000px;
	height:475px;
	/*background:#333 url(../images/scrollable-bg.png) repeat-x 0 0px;*/
	color:#fff;
	/*border-left:1px solid #333;*/
	border:none;
	/*border:2px solid red;*/
	cursor:pointer;
	margin:0px;
	padding:0px;
}

/* style when mouse is over the item */
#thumbs div.hover {
	/*background-color:#444;*/
}

/* style when element is active (clicked) */
#thumbs div.active {
	background-color:#066;
	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;
}