



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	position:absolute;
	top:13px;left:640px;
	width:10px;
	height:auto;
	z-index:2;
}


/* items inside navigator */
div.navi a {
	width:10px;
	height:10px;
	float:left;
	margin:3px;
	background:url(nav.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -10px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -20px;     
} 	

