/* this makes it possible to add next button beside scrollable */
div.scrollable, div.scrollable2 {
	float:left;		
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:11px;
	height:55px;
	background:url(../img/arrow/left.png) no-repeat;
	float:left;
	margin:20px 15px;
	cursor:pointer;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	/*background-position:0px -18px;*/		
}

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

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(arrow_right.gif);
	clear:right;	
	margin-right: 2px;
}
.next:hover, .nextPage:hover { /*a*/
	background-image:url(arrow_right_act.gif);
	clear:right;	
	color:#ff0000;
}
a.prev, a.prevPage {
	background-image:url(arrow_left.gif);
	clear:right;	
	margin-left: 2px;
}
.prev:hover, .prevPage:hover { /*a*/
	background-image:url(arrow_left_act.gif);
	clear:right;	
}



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


/* position and dimensions of the navigator */
div.navi {
	
	width:216px;
	height:20px;
	float:none;
	margin:0 auto;
}


/* items inside navigator */
div.navi a {
	width:12px;
	height:12px;
	float:left;
	text-align:center;
	background:url(option.gif) 0 0 no-repeat;     
	cursor:pointer;	
	margin: 3px 10px;
}

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

/* active state (current page state) */
div.navi a.active {
	background:url(option_act.gif) 0 0 no-repeat;     
} 	

