
/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 900px;	
	height:160px;	
	
	/* custom decorations */
	padding:0;	
	border:1px solid #999999;
	background-color:#efefef;				
}

/* 
	root element for scrollable items. Must be absolutely positioned
	and it should have a super large width to accomodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
div.scrollable div.items {	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;		
	
	/* decoration */
	margin-left:0px;
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;

}

/* active item */
div.scrollable div.items div.active {
/*
	border:1px solid #ccc;		
	background-color:#fff;
*/
}


#thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
	border:1px solid #222;
}
 
 
/* single item */
#thumbs div {
	float:left;
	width:225px;
	height:180px;
	background:#333 url('h150.png') repeat-x  0 100px;
	color:#fff;
	border-left:1px solid #333;
	/* 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: Tahoma, Arial, Helvetica, sans-serif;
	font-size:13px;
	color:#EBC035;	
}
#thumbs h3 a {		
	color:#EBC035;
	text-decoration:none;
}
#thumbs h3 a:hover {		
	color:#DE710F;
}
#thumbs h3 em {
	font-style:normal;
	color:#fff;
	font-size:10px;
}