/* 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:160px;
	height:18px;
	background:url(/images/left.png) no-repeat;
	margin-top:3px;
	margin-left:5px;
	float:left;
	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/right.png);
	margin-top:5px;
	margin-bottom:2px;
	float:right;
	overflow:hidden;
	border:0px;
}

/*********** navigator ***********/

/* position and dimensions of the navigator */
div.navi {
	margin-left:328px;
	width:200px;
	height:20px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../img/navigator.png) 0 0 no-repeat;     
	cursor:pointer;	
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
} 	

/*********** Scrolling Thumnails ***********/

div.scrollable {  
	position:relative;
	overflow:hidden;
	width: 675px;	 
	height:170px;	
}
#thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
	border:0px solid #555555;
}
#thumbs div {
	float:left;
	width:225px;
	height:170px;
	background:#cccccc;
	border-right:2px solid #ffffff;
	border-top:2px solid #ffffff;
	font-family:Tahoma, Arial, Helvetica, sans-serif;
	cursor:pointer;
}

#thumbs div.hover {
	background-color:#afafaf;	
}
#thumbs h3 {
	margin:5px;		
	font-size:12px;
	color:#555555;
}
#thumbs p {
	margin:5px;		
	font-size:11px;
	color:#555555;	
}
#thumbs a {
	color:#266acc;	
}
