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


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


/* position and dimensions of the navigator */
div.navi {
	float:left;	
	margin:0;
	padding:0;
	width:300px;
	height:11px;
	text-align:center;
}


/* items inside navigator */
div.navi a {
	width:11px;
	height:11px;
	float:left;
	margin:3px;
	background:url(../images/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
	z-index:10;
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -11px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -11px;     
} 	


