@charset "utf-8";
/* CSS Document */


/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
	border:1px solid #ccc;
}

div.scrollable {  
	position:relative;
	overflow:hidden;
}

/* single item */
#thumbs div {
	float:left;
	background:#f2f2f2;
	color:#333;
	border-left:1px solid #e2e2e2;
	cursor:pointer;
}

/* style when mouse is over the item */
#thumbs div.hover {
	background-color:#e4e4e4;	
}

#thumbs p, #thumbs span {
	margin:2px !important;		
	font-size:12px;
	color:#333 !important;	
}


#thumbs h3, #thumbs h3 a {
	margin:2px 2px -15px 0 !important;
	font-size:110%;
	text-align: left;
	color:#333 !important;
	text-decoration: none;
}


/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;		
}

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

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


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


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


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(images/scroll/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;     
} 	


