/* root element for the whole scrollable setup */
div.scrollable {  
	position:relative;
	overflow:hidden;
	width: 870px;	 
	height:300px;	
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
	
}

/* single item */
#thumbs div {
	float:left;
	width:260px;
	/*height:240px;*/
	padding:0 15px;
	background:#fff;
	color:#fff;
	cursor:pointer;
	border-right:1px solid #ccc;
	
}

#thumbs h3 {
	font:16px/140% normal Helvetica, Arial, sans-serif; color:#005899;	
	text-transform:uppercase;
	margin-bottom:10px!important;
	}

#thumbs p, #thumbs span {
	font-family:Helvetica, Arial, sans-serif;
	font-size:13px;
	color:#333;	
	line-height:150%;
}
#thumbs img {
	float:left;
	margin:0 10px 5px 0;	
	}

/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.prevPage {
	display:block;
	width:18px;
	height:18px;
	background:url(../images/design/left.png) no-repeat;
	float:left;
	margin:120px 10px 140px 4px;
	cursor:pointer;
	font-size:1px;
}
a.next, a.nextPage {
	display:block;
	width:18px;
	height:18px;
	background:url(../images/design/left.png) no-repeat;
	float:left;
	margin:120px 6px 140px 10px;
	cursor:pointer;
	font-size:1px;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -18px;		
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../images/design/right.png);
	clear:right;	
}

