/* position and dimensions of the navigator */
.navi {
	width:auto;
	height:25px;
	padding-top:8px;
}
/* items inside navigator */
.navi a {
	display:none;
}
/* mouseover state */
.navi a:hover {
	background-position:0 -8px;
	cursor:pointer; 
}
/* active state (current page state) */
.navi a.active {
	background-position:0 -16px;     
}