
/* this makes it possible to add next button beside scrollable */
div.scrollable2 {
	float:left;		
}

/* prev, next, prevPage and nextPage buttons */
a.next2, a.nextPage2 {
	display:block;
	width:18px;
	height:18px;
	float:left;
	margin-top: 40px;
	margin-right:10px;
	cursor:pointer;
	background-image: url(images/right.png);
	background-repeat: no-repeat;
	background-position:0;
}

a.prev2, a.prevPage2 {
	display:block;
	width:18px;
	height:18px;
	float:left;
	margin-top: 40px;
	margin-left:10px;
	cursor:pointer;
	background-image: url(images/left.png);
	background-repeat: no-repeat;
	background-position:0;		
}

/* mouseover state */
a.prev2:hover, a.next2:hover, a.prevPage2:hover, a.nextPage2:hover {
	background-position:-17px 0px;			
}

/* disabled navigational button */
a.disabled {
/*	We want the arrows to always appear. So comment this line */
/*	visibility:hidden !important;		*/
}

/* next button uses another background image */
a.next2, a.nextPage2 {
	clear:right;	
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi2 {
	margin-left:328px;
	width:200px;
	height:20px;
}


/* items inside navigator */
div.navi2 a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(./images/arrow/h150.png) 0 0 no-repeat;     
	cursor:pointer;	
}

/* mouseover state */
div.navi2 a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi2 a.active {
	background-position:0 -16px;     
} 	


