:focus {
  -moz-outline-style:none;
}
/* this makes it possible to add next button beside scrollable */
div.scrollable {
	margin-top: 20px;
	float:left;		
}
/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:19px;
	height:100px;
	background:url(../img/scroll/left.jpg) no-repeat;
	float:left;
	margin: 0px 0px 0px 0px;
	cursor:pointer;
	font-size:1px;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -100px;		
}
/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}
/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../img/scroll/right.jpg);
	clear:right;	
}


/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin-left:230px;
	margin-top: 5px;
	width:200px;
	height:20px;
}

/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../img/scroll/navigator.jpg) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
} 
	
/* root element for the whole scrollable setup */
div.scrollable {  
	position:relative;
	overflow:hidden;
	width: 495px;
	height: 125px;
	margin: 0px 0px 0px 0px;
}
/* 
	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: 15px;	
}
/* single item */
#thumbs div {
	float:left;
	width:100px;
	height: 125px;
	cursor:pointer;
	text-align: center;
}
/* style when mouse is over the item */
#thumbs div.hover {
	background-color:;	
}
/* style when element is active (clicked) */
#thumbs div.active {
	cursor:default;
}
#thumbs img{
	width: auto;
	height: 115px;	
	font-size:13px;
	color:#fff;
	margin-top: 0px;
	border: 1px solid #999999;
	padding: 3px;
}