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

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

/* right */
a.right 	{ background:url(images/scrollable-right.jpg) no-repeat; clear:right; margin-right: 0px;}
a.right:hover 		{ background:url(images/scrollable-right-over.jpg) no-repeat; }
a.right:active 	{ background:url(images/scrollable-right.jpg) no-repeat; } 


/* left */
a.left			{ background:url(images/scrollable-left.jpg) no-repeat; margin-left: 0px; } 
a.left:hover  		{ background:url(images/scrollable-left-over.jpg) no-repeat; }
a.left:active  	{ background:url(images/scrollable-left.jpg) no-repeat; }

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

