

/* prv, next, prevPage and nextPage buttons */
 a.next,  a.nextPage {
	display:block;
	float:right;
	width: 100px;
	cursor:pointer;
	clear:right;
	text-align: right;
}
a.prev,  a.prevPage {
	display:block;
	float:left;
	width: 100px;
	cursor:pointer;
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}




/* position and dimensions of the navigator */
div.navi {
	float:left;
	text-align:center;
	margin-left: 65px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../images/navigator.png) 0 0 no-repeat;     
	cursor:pointer;	
}

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

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


