/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:18px;
	height:18px;
	background:url(../images/navigator/left.png) no-repeat;
	float:left;
	margin:125px -5px;
	cursor:pointer;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -18px;
	z-index:9999px;
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../images/navigator/right.png);
	clear:right;	
}

/*********** custom **************/

/* root element for the whole scrollable setup */
div.scrollable {  
	position:relative;
	overflow:hidden;
	width: 670px;	 
	height:270px;
}

/* 
	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:150px;
	height:270px;
	background:#99C3DF url(images/navigator/h150.png) repeat-x 0 146px;
	color:#fff;
	cursor:pointer;
	padding: 10px;
}

#thumbs h3 a, #thumbs p, #thumbs span {
	font-size:13px;
	color:#666;	
	width:95%;
	padding: 3px;
}
