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

/* 
	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, a.prevPage, a.nextPage {
	margin-top:35px;	
}



/* single item */
#thumbs div {
	float:left;
	width:75px;
	height:75px;
	background:#fff;
	margin-left: 9px;	
	color:#fff;
	cursor:pointer;
	border: 1px solid #000;

}

/* style when mouse is over the item */
#thumbs div.hover {
	opacity:0.4;
	filter:alpha(opacity=40);
}

/* style when element is active (clicked) */
#thumbs div.active {
	
}

#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;
}


/* tooltip styling. uses a background image (a black box with an arrow) */ 
div.tooltip { 
    background:transparent url(../images/black_arrow_big.png) no-repeat scroll 0 0; 
    font-size:14px; 
    height:153px; 
    padding:30px; 
    width:310px; 
    font-size:14px; 
    display:none; 
    color:#fff; 
} 
 
/* tooltip title element (h3) */ 
div.tooltip h3 { 
    margin:0; 
    font-size:18px; 
    color:#fff; 
}
