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

/* prev, next, prevPage and nextPage buttons */
a.browse {
	display:block;
	width:30px;
	height:48px;
	float:left;
	margin:50px 5px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 				{ background:url(./images/arrow_right.png) no-repeat;}
a.right:hover 		{ background:url(./images/arrow_right_on.png) no-repeat;}
a.right:active 	{ background:url(./images/arrow_right.png) no-repeat;} 


/* left */
a.left				{ background:url(./images/arrow_left.png) no-repeat;} 
a.left:hover  		{ background:url(./images/arrow_left_on.png) no-repeat;}
a.left:active  	{ background:url(./images/arrow_left.png) no-repeat;}




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

