
/* position and dimensions of the navigator */
.navi {
	margin-left:20px;
	margin-top:20px;
	position:absolute;
	z-index:1;
	width:200px;
}


/* items inside navigator */
.navi a {
	width:16px;
	height: 16px;
	float:left;
	margin-left:4px;
	background: url(../graphics/corusel-nav.png) 0 0 no-repeat;
	display:block;
	font-size:12px;
	font-weight:bold;
	color:#555;
	cursor:pointer;
}

/* mouseover state */
.navi a:hover {
	background-position:0 -16px;      
}

/* active state (current page state) */
.navi a.active {
	background-position:0 -32px; 
	color:#fff;    
}
