@charset "utf-8";
/* CSS Document */

/* root element for the whole scrollable setup */
div.scrollable {
	position:relative;
	overflow:hidden;
	width: 720px;
	height:330px;
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {
	position:absolute;
	width:20000em;
	clear:both;
	border:0px solid #222;
	top: 2px;
	
}

/* custom positioning for navigational links */
a.prev, a.next {
	margin-top:118px;	
}

/* single item */
#thumbs div {
	float:left;
	width:214px;
	height:330px;
	/*background:#333 url(http://static.flowplayer.org/img/global/gradient/h150.png) repeat-x 0 146px;*/
	color:#fff;
	border-left:0px solid #333;
	cursor:pointer;
	margin:0px 30px 0px 3px;
}

 style when mouse is over the item
#thumbs div.hover {
	background-color:#ddd;	
}

/* style when element is active (clicked) */
#thumbs div.active {
	background-color:#ddd;
	cursor:default;
}

#thumbs h3, #thumbs p, #thumbs span {
	margin:13px;		
	font-family: "Times New Roman", Times, serif;
	font-size:13px;
	color:#333;	
}

#thumbs h3, #thumbs span {
	margin:13px;		
	font-family: "Times New Roman", Times, serif;
	font-size:16px;
	color:#016eb3;	
}

#thumbs h3 em {
	font-style:normal;
	color:#016eb3;}


