/* root element for the whole scrollable setup */
div.scrollable {  
	position:relative;
	overflow:hidden;
	width: 923px;	 
	height:242px;	
}

/* 
	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:214px;*/
	width:923px;
	
	height:248px;
	background: ;
	color:#fff;
	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:#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;
}

/*********** navigator ***********/


.tabs {
position:absolute;
left:130px;
top:195px;

}
.tabs,.tabs li {
float:left;
list-style-type: square;
z-index: 15;
color: #000;
margin:8px;
font-size: 25px;
font-weight: bolder;
letter-spacing: 2px;
cursor: pointer;
}

.tabs li.active {
color: #fff;
}