/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;	
	margin: 10px 0;
}

/* 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 10px;
	cursor:pointer;
}

/* 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/navigator/right.png);
	clear:right;	
}

/*********** custom **************/

/* root element for the whole scrollable setup */
div.scrollable {  
	position:relative;
	overflow:hidden;
	width: 820px;	 
	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:820px;
	height:270px;
	background:#e3e3e3 url(../images/navigator/h300.png) repeat-x 0 820px;
	color:#fff;
	cursor:pointer;
	padding: 0 10px;
}

#thumbs h1 a, #thumbs p, #thumbs span {
	font-size:13px;
	color:#666;	
	width:95%;
}
