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

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

/* right */
a.right { 
	background:url(../images/button-next.png) no-repeat;
	clear:right; 
	margin-right: 0px;
}



/* left */
a.left { 
	background:url(../images/button-previous.png) no-repeat;
	margin-left: 0px; 
} 

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

