/* root element for the whole scrollable setup */
#scrollablewrapper {height: 110px; }
div.scrollable {  
	position:relative;
	overflow:hidden;
	width: 475px;	 
	height:100px;	
}

/* 
	root element for scrollable items. it is 
	absolutely positioned with large width. 
*/
#items {	
	position:absolute;
	width:20000em;	
	clear:both;
}

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


/* single item */
#items div {
	margin: 5px 2px; 
	text-align: center;
	float:left;
	width:155px;
	height: 96px;
	color:#fff;
	cursor:pointer;
	overflow:hidden;
}
#items div img {
	position: relative;
	top: -8px;
}

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

/* style when element is active (clicked) */
#items div.active {
	background-color:#FFFF99;
	cursor:default;
}

#items h3, #items p, #items span {
	margin:4px 13px;
	padding: 0;		
	font-family:"bitstream vera sans";
	font-size:13px;
	color:#fff;	
}
#items a {color: #000; font-weight: bold; text-decoration: none;}
#items a img{border: none;}
#items a:hover {color: #444;}
#items .remarks {font-size: 10px;}
#items h3 {color: orange; }


