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

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(/images/arrows.png) no-repeat;
	display:block;
	width:60px;
	height:49px;
position:absolute;
top:200px;
	cursor:pointer;
	font-size:1px;
z-index:100;
}

/* right */
a.right 	{ background-position: -80px 0px; right:0px;}
a.right:hover 		{ background-position:-78px 0; }
a.right:active 	{ background-position:-78px 0px; } 


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


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

