/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	display:block;
	width:40px;
	height:40px;
	float:left;
	cursor:pointer;
	font-size:1px;
	position: absolute;
	z-index: 100;
	margin-top: 200px;
	margin-right: 10px;
	margin-bottom: 190px;
	margin-left: 10px;
}

/* right */
a.right{
	clear:right;
	margin-left: 910px;
	background-image: url(images/right.png);
	background-repeat: no-repeat;
}
a.right:hover{

}


/* left */
a.left				{
	margin-left: 10px;
	background-image: url(images/left.png);
	background-repeat: no-repeat;
} 
a.left:hover{

}


/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	
