
/* root element for the whole scrollable setup */
div.scrollable {  
	position:relative;
	overflow:hidden;
	width:890px;	 
	height:100px;	
/*
	width: 646px;	 
	height:300px;	
*/
}

/* 
	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:140px;
	height:85px;
  padding-top:10px;
  padding-bottom:10px;
	background:#fff url(http://static.flowplayer.org/img/global/gradient/h150.png) repeat-x 0 146px;
	color:#333;
	cursor:pointer;
}


/* style when mouse is over the item */
#thumbs div.hover {
	background-color:#fafafa;
}

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


#thumbs h3{
padding:0;
}

#thumbs h3, #thumbs p, #thumbs span{
/*
	margin:13px;
*/
	font-size:12px;
	color:#79aa00;
}

/*
#thumbs h3 em {
	font-style:normal;
	color:yellow;
}
*/

