


/* position and dimensions of the navigator */
.navi {
	width:500px;
	height:20px;
	background:#ddd;
	margin:auto;
}

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

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

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


