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

