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

/* prev, next, prevPage and nextPage buttons */
div.browse {
	background:url(../images/scrollable_buttons.png) no-repeat;
	_background:url(../images/scrollable_buttons.gif) no-repeat;
	display:block;
	margin-top:63px;
	width:20px;
	height:30px;
	float:left;
	cursor:pointer;
	font-size:1px;
}

/* right */
div.right 				{ background-position: -10px -30px; clear:right; margin-right: 0px;}
div.right:hover 		{ background-position:-40px -30px; }
div.right:active 	{ background-position:-70px -30px; } 


/* left */
div.left				{ margin-left: 0px; } 
div.left:hover  		{ background-position:-30px 0; }
div.left:active  	{ background-position:-60px 0; }

/* up and down */
div.up, div.down		{ 
	background:url(../images/vert_large.png) no-repeat; 
	float: none;
	margin: 10px 50px;
}

/* up */
div.up:hover  		{ background-position:-30px 0; }
div.up:active  		{ background-position:-60px 0; }

/* down */
div.down 				{ background-position: 0 -30px; }
div.down:hover  		{ background-position:-30px -30px; }
div.down:active  	{ background-position:-60px -30px; } 


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

