/* position and dimensions of the navigator */
.navi {
	width:60px;
	height:20px;
	text-align: center;
	left: 451px;
	float: left;
	margin-left: 370px;
}


/* items inside navigator */
.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	display:block;
	font-size:1px;
	background-image: url(http://kenkragen.com/images/navigator.png);
	background-repeat: no-repeat;
	background-position: 0 0;
}

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

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