/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.prevPage {
	display:block;
	width:50px;
	height:400px;
	background:url(img/left.gif) no-repeat;
	float:left;
	margin-right:50px;
	cursor:pointer;
	font-size:1px;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px;		
}

/* disabled navigational button */
a.disabled {	
}

/* next button uses another background image */
a.next, a.nextPage {
	display:block;
	width:50px;
	height:400px;
	background-image:url(img/right.gif);
	clear:right;
	float:right;
	margin-left:50px;
	cursor:pointer;
	font-size:1px;
}





