/* position and dimensions of the navigator */
.navi {
	height:20px;
	width: 499px;
	clear: both;
	text-align: center;
}


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

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

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

