<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* 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: 25px;
	height: 25px;
	background:url(../htmlimages/left_arrow.png) no-repeat;
	background-position: left center;
	float:left;
	cursor:pointer;	
	margin: 30px 0px 0px 0px;	
	color: #FFFFFF;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {		
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../htmlimages/right_arrow.png);
	clear:right;
}

div.scrollable {  
	position:relative;
	overflow:hidden;
	width: 327px;	 
	height:120px;	
	border:0px solid;    
	
}
#thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
	border:0px solid #222;
}

a.prev, a.next {
	height: 28px;
}

#thumbs div {
	float:left;	
	border-left:0px solid #333;
	cursor:pointer;
}








</pre></body></html>