/* position and dimensions of the navigator */
.new_container {
	position:relative;
	width:100%;
}
.pos {
	position:absolute;
	top:5px;
	left:50px;

}
.pos_l {
	position:absolute;
	top:20px;
	left:65px;

}
.pos_r {
	position:absolute;
	top:20px;
	right:65px;

}
.navi {
	float:left;
	height:20px;
	
}


/* items inside navigator */
.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(navigator.png) 0 0 no-repeat;
	display: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;     
}

