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

/* prev, next, prevPage and nextPage buttons */
a.browse {
	display:block;
	width:20px;
	height:100px;
	float:left;
	margin:190px 10px;
	cursor:pointer;
	font-size:1px;
	position: absolute;
	z-index: 100;
}

/* right */
a.right{
	clear:right;
	margin-left: 510px;
	background-image: url(images/right.png);
	background-repeat: no-repeat;
}
a.right:hover{
	background-image: url(images/right_hover.png);
}


/* left */
a.left				{
	margin-left: 10px;
	background-image: url(images/left.png);
	background-repeat: no-repeat;
} 
a.left:hover{
	background-image: url(images/left_hover.png);
}


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

