
/* this makes it possible to add next button beside scrollable */
div.scrollable1 {
	float:left;		
}

/* prev, next, prevPage and nextPage buttons */
a.next1, a.nextPage1 {
	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.prev1, a.prevPage1 {
	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.prev1:hover, a.next1:hover, a.prevPage1:hover, a.nextPage1: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.next1, a.nextPage1 {
	clear:right;	
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi1 {
	margin-left:328px;
	width:200px;
	height:20px;
}


/* items inside navigator */
div.navi1 a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../topic/images/arrow/h150.png) 0 0 no-repeat;     
	cursor:pointer;	
}

/* mouseover state */
div.navi1 a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi1 a.active {
	background-position:0 -16px;     
} 	


