@charset "UTF-8";
/* CSS Document */

/* this makes it possible to add next button beside scrollable */
div.scrollable1,
div.scrollable2 {
	float:left;		
	padding-bottom:10px;
	
}

/* prev, next, prevPage and nextPage buttons */
a.prev1, a.next1, a.prevPage, a.nextPage,
a.prev2, a.next2, a.prevPage, a.nextPage {
	display:block;
	width:10px;
	height:30px;
	background:url(/images/img_scroll_left.gif) no-repeat;
	float:left;
	margin:60px 3px 0 3px;
	cursor:pointer;
}
a.prev1,
a.prev2{
	margin-left:13px;
}

/* mouseover state */
a.prev1:hover, a.next1:hover, a.prevPage:hover, a.nextPage:hover,
a.prev2:hover, a.next2: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.next1, a.nextPage,
a.next2, a.nextPage {
	background-image:url(/images/img_scroll_right.gif);
	clear:right;	
}