
#next, #prev, .navi{
	float:left;
	cursor:pointer;
}

#prev{
	margin-right:230px;
	color:#666666;
	font-weight:bold;
	text-shadow:#333333;
	background:url(../../../img/scrollable/navi/left.png);
	width:18px;
	height:18px;

}

#next{
	margin-left:180px;
	background:url(../../../img/scrollable/navi/right.png);
	width:18px;
	height:18px;

}

#prev:hover, #next:hover{
	background-position:0 -18px;
}


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





/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	width:100px;
	height:20px;
	
}


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

