/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.thumbs_scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 530px;	
	height:90px;	
	
	/* custom decorations */
	padding:10px 0;	
	border:1px outset #ccc;
	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.thumbs_scrollable ul.thumbs {	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;		
	
	/* decoration */
	margin: 0 0 0 20px; padding: 0;
}



/* single scrollable item */
div.thumbs_scrollable ul.thumbs li {
	float:left;
	display: inline;
	
	/* custom decoration */
	text-align:center;
	width:103px;
	border: 1px solid #ccc;
	margin: 0 23px 0 0; padding:0;
	font-size:30px;
	font-family: 'bitstream vera sans';
}

/* active item */
div.thumbs_scrollable ul.thumbs li.active {
	/*border:1px inset #ccc;		
	background-color:#fff;*/
	border: 1px solid #000;
}

div.thumbs_scrollable ul.thumbs li a 
{
    display: block;
    color: #444; 
    text-decoration: none;
}

