/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;		
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next {
	position:absolute;
	display:block;
	width:18px;
	height:18px;
	background:url(../img/prev_left.png) no-repeat;
	/*margin:75px 10px;*/
	cursor:pointer;
}

a.prev {
	top: 217px;
	left:562px;

}

a.next {
	top: 217px;
	left: 582px;

}
/* mouseover state */
a.prev:hover {
	background-image:url(../img/prev_left_over.png);		
}

a.next:hover {
	background-image:url(../img/next_right_over.png);	
}

/* disabled navigational button 
a.prev.disabled, a.next.disabled {
	/*visibility:hidden !important;	
}*/

/* next button uses another background image */
a.next {
	background-image:url(../img/next_right.png);
	clear:right;	
}

#prev.disabled {
	background-image:url(../img/prev_left_over.png);
	clear:right;	
}
#next.disabled {
	background-image:url(../img/next_right_over.png);
	clear:right;	
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	float:left;
	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;     
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
} 	
