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

/* prev, next, prevPage and nextPage buttons */
a.browse {
	
	display:block;
	width:21px;
	height:63px;
	float:left;
	margin:0px 0px;
	cursor:pointer;
	font-size:1px;
	border:1px solid #fff;
}

/* right */
a.right	{ 
background:url(../images/rightarrow_on.jpg) no-repeat ;
background-position: 0 0px; 
clear:right; 
margin-right: 0px;
}

a.right:hover 	{
background:url(../images/rightarrow_off.jpg) no-repeat ;

}

a.right:active 	{ 
background:url(../images/rightarrow_on.jpg) no-repeat ;
} 


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

a.left:hover  	{ 
background:url(../images/leftarrow_off.jpg) no-repeat; 
}

a.left:active  	{ 
background:url(../images/leftarrow_on.jpg) no-repeat ; 
}

/* up and down */
a.up, a.down		{ 
	background:url(../images/vert_large.png) no-repeat; 
	float: none;

}

/* 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; } 


/* disabled navigational button */
a.disabled {

/*	visibility:hidden !important;		*/
} 	

