div #navigator{
	background:url(../images/interface/slider_bg.jpg) no-repeat;
	width:860px;
	height:180px;
}
/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;	
	position:relative;
	
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.prevPage {
	display:block;
	width:18px;
	height:18px;
	background:url(../images/interface/left.png) no-repeat;
	float:left;
	margin:43px 2px 43px 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 {
	display:block;
	width:18px;
	height:18px;
	background:url(../images/interface/left.png) no-repeat;
	float:left;
	margin:43px 10px 43px 2px;
	cursor:pointer;
	background-image:url(../images/interface/right.png);
	clear:right;	
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
padding-top:0px;
	margin:0 0 0 770px;
	width:100px;
	height:40px;
}


/* items inside navigator */
div.navi a {
	width:10px;
	height:10px;
	float:left;
	margin:20px 3px 3px 3px;
	background:url(../images/interface/navigator.png) 0 0 no-repeat;     
	cursor:pointer;	
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -10px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -20px;     
} 	
/* root element for the whole scrollable setup */
div.scrollable {  
/*background-color:#dadada;*/
	
	position:relative;
	overflow:hidden;
	width: 800px;	 
	height:132px;	
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
	
}

/* custom positioning for navigational links */
a.prev, a.next {
	margin-top:55px;	
}



/* single item */
#thumbs div {
	float:left;
	width:199px;
	height:132px;

	background:#FFF url(../images/interface/thumbs_off_bg.jpg) repeat-x 0 0;
	color:#fff;
	border-left:1px solid #E7E7E7;
	cursor:pointer;
}

/* style when mouse is over the item */
#thumbs div.hover {
	background:#FFF url(../images/interface/thumbs_over_bg.jpg) repeat-x 0 0;
}

/* style when element is active (clicked) */
#thumbs div.active {
	background:#FFF url(../images/interface/thumbs_on_bg.jpg) repeat-x 0 0;
	cursor:default;
}

#thumbs h3 {
	margin:0 0 0 0;		
	padding: 0 20px 0 19px;
	font-size:12px;
	color:#0D57A7;	
}
#thumbs img{padding: 0 20px 0 19px; } 
#thumbs p {
	padding: 0 20px 0 19px;
	font-size:11px;
	color:#333;	
}

