﻿
/* 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:13px;
	height:16px;
	background:url(../Images/Buttons/left_arrow.gif) no-repeat;
	float:left;
	cursor:pointer;
	font-size:1px;
}

/* 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/Buttons/right_arrow.gif);
	clear:right;
	margin-left:3px;
}

a.prev {
	margin-right:3px;		
}

div.scrollable 
{
	position:relative;
	overflow:hidden;
	width: 250px;	 
	height:110px;	
	border:0px solid;    
}

#thumbs {	
	position:absolute;
	clear:both;
	border:0px solid #222;
}

a.prev, a.next {
	margin-top:50px;	
}
#thumbs div {
	float:left;
	margin:0 5px;
	width:108px;
	height:108px;
	border:#e8e8e8 solid 1px;
	cursor:pointer;
}


