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

/* prev, next, prevPage and nextPage buttons */
a.browse {
	display:block;
	width:62px;
	height:62px;
	float:left;
	cursor:pointer;
	margin-top: 22px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 10px;
	background-image: url(../images/!hori_large.png);
	background-repeat: no-repeat;
}

/* right */
a.right 				{
	background-position: 0 -62px;
	clear:right;
	margin-right: 0px;
}
a.right:hover 		{
	background-position:-62px -62px;
}
a.right:active 	{
	background-position:-62px -62px;
} 


/* left */
a.left				{
	margin-left: 5px;
} 
a.left:hover  		{
	background-position:-62px 0;
}
a.left:active  	{
	background-position:-62px 0;
}

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

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

/* down */
a.down 				{
	background-position: 0 -62px;
	outline:none;
}
a.down:hover  		{
	background-position:-62px -62px;
}
a.down:active  	{
	background-position:-62px -62px;
} 


/* disabled navigational button */
a.disabled {

}