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


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

div.scrollable {  
	background-color:#ffffff;	
	position:relative;
	overflow:hidden;
}

/* single item */
#thumbs div {
	float:left;
	background::#ffffff;
	color:#FFF;
	cursor:pointer;
	font-family: Arial;
}

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

#thumbs p, #thumbs span {
	background-color:#ffffff;	
	margin:2px !important;		
	font-size:12px;
	color:#FFFFFF !important;
	line-height: 14px;
}


#thumbs h3, #thumbs h3 a {
	margin:2px 2px 0px 2px !important;
	padding:0;
	background-color:#ffffff;	
	font-size:13px;
	text-align: left;
	color:#000 !important;
	text-decoration: none;
	line-height: 14px;
	display:block;
}

.blue{
	padding: 0 0 0 5px;
	}


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

