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

/* prev, next, prevPage and nextPage buttons */
a.browse {
	position: relative;
	top: 13px;
	background: url(/images/scroll_arrows.png) no-repeat;
	display: block;
	width: 25px;
	height: 90px;
	float: left;
	cursor: pointer;
	font-size: 1px;
}

/* right */
a.right			{ background-position: 0 -90px; }
a.right:hover	{ background-position: -25px -90px; }
a.right:active 	{ background-position: -50px -90px; } 


/* left */
a.left			{ } 
a.left:hover  	{ background-position: -25px 0; }
a.left:active  	{ background-position: -50px 0; }


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