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

/* prev, next, prevPage and nextPage buttons */
a.browse {
/*	background:url(test_hori_large.png) no-repeat; */ 
	display:block;
	width:32px;
	height:85px;
	float:left;
/*	margin:40px 10px; */ 
	margin-top: 0px; 
/*  	margin-right: 5px; */ 
	cursor:pointer;
	font-size:1px;
}

/* left */
a.left { background:url(../images/prev-horizontal.jpg) no-repeat; margin-right: 5px; }
a.left { background-position: 0 0; margin-left: 0px; } 
a.left:hover { background-position: -33px 0; }
a.left:active { background-position: -64px 0; } 

a.left.disabled, a.left.disabled:hover, a.left.disabled:active {
/* 	visibility:hidden !important; */ 
        background-position: -96px 0; 
	cursor:default; 
} 	

/* right */
a.right { background:url(../images/next-horizontal.jpg) no-repeat; margin-left: 5px; }
a.right { background-position: 0 0; clear:right; margin-right: 0px;}
a.right:hover { background-position: -32px 0; }
a.right:active { background-position: -64px 0; } 

a.right.disabled, a.right.disabled:hover, a.right.disabled:active {
/* 	visibility:hidden !important; */ 
        background-position: -96px 0; 
	cursor:default; 
} 	








/* Vertical controls, deal with later if need them 

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

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

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




/* Original disappear on disable approach for both horizontal and vertical */ 
/* disabled navigational button */
/* a.disabled {
	visibility:hidden !important;		
} 	
*/ 
