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


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

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

/* single item */
#thumbs div {
	float:left;
	background:#f5f5f5;
	color:#333;
	text-align: left;
	margin: 0px;
}

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

#thumbs p, #thumbs span {
	margin-top: 0px !important;	
	margin-bottom: 5px !important;
	margin-right: 11px !important;
	margin-left: 11px !important;
	font-size:12px;
	color:#333 !important;
	text-align: left;
}


#thumbs h3, #thumbs h3 a {
	margin-left:3px !important;
	margin-right: 5px !important;
	margin-top: 5px !important;
	margin-bottom: 1px !important;
	font-size:12px;
	color:#333 !important;
	text-decoration: none;
	font-weight: bold;
	display: block;
}

#thumbs p a{
	color: #333;
	}

/* 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 {
	background-position:0px -18px;		
}

/* 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 {     
}

/* active state (current page state) */
div.navi a.active {    
} 	

