﻿/* root element for the whole scrollable setup */
div.scrollable {
	position: relative;
	overflow: hidden;
	width: 300px;
	height: 288px;
}
/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {
	position: absolute;
	width: 20000em;
	clear: both;
/*	border: 1px solid #a4dff3;*/
}
/* custom positioning for navigational links */
a.prev, a.next {
	margin-top: 130px;
}
/* single item */
#thumbs div {
	float:left;
	width: 100px;
	height: 288px;

	color: #fff;
	/*border-left: 1px solid #a4dff3;*/
	cursor: pointer;
	
}
/* style when mouse is over the item */
#thumbs div.hover {
	
}
/* style when element is active (clicked) */
#thumbs div.active {
	
	cursor: default;
}
#thumbs h3, #thumbs p, #thumbs span {
	margin: 13px;
	font-family: "bitstream vera sans";
	font-size: 13px;
	color: #fff;
}
#thumbs h3 em {
	font-style: normal;
	color: yellow;
}
