/* prev, next, prevPage and nextPage buttons */
div.up, div.down, div.upPage, div.downPage {
	display:block;
	width:124px;
	height:21px;
	float:right;
	cursor:pointer;
	background:transparent url('images/up.png') top left;
}

/* mouseover state */
div.up:hover, div.down:hover, div.upPage:hover, div.downPage:hover {
	background-position:top right;		
}

/* disabled navigational button */
div.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
div.next, div.nextPage {
	background-image:url('images/prev.gif');
	clear:right;	
}
div.down, div.downPage {
	background-image:url('images/down.png');
	clear:right;	
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin-left:328px;
	width:200px;
	height:20px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../img/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;     
} 	

