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

/* prev, next, prevPage and nextPage buttons */
a.browse {
	display:block;
	width:19px;
	height:55px;
	nofloat:left;
	nomargin:40px 10px;
	cursor:pointer;
	font-size:1px;
	
	position: absolute;
}

/* right */
a.right 				{ clear:right; margin-right: 0px; top: 56px; right: 1px; z-index: 9999; background:url(scrollable_btn_right.gif) no-repeat;}
a.right:hover 		{ background:url(scrollable_btn_right_active.gif) no-repeat; }
a.right:active 	{  } 


/* left */
a.left				{ margin-left: 0px; top: 56px; left: 1px; z-index: 9999; background:url(scrollable_btn_left.gif) no-repeat; }
a.left:hover  		{ background:url(scrollable_btn_left_active.gif) no-repeat; }
a.left:active  	{  }

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


