﻿
/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	display:block;
	width:60px;
	height:70px;
	float:left;
	margin:40px 10px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right  
{
	position: absolute;
	top: 40px;
	right: 0px;
	background: url(/images/slideshow/buttons-small.png) no-repeat;
	_background: url(/images/slideshow/buttons-small.gif) no-repeat;
	background-position: -61px 0;
	clear:right; 
	margin-right: 0px;
	z-index: 100;
}
a.right:hover 		
{ 
	background-position:-61px -71px; 
}
a.right:active 	
{ 
	background-position:-61px -71px;
} 

/* left */
a.left				
{ 
	position: absolute;
	top: 40px;
	left: 0px;
	background: url(/images/slideshow/buttons-small.png) no-repeat;
	_background: url(/images/slideshow/buttons-small.gif) no-repeat;
	background-position:0 0; 
	margin-left: 0px; 
	z-index: 100;
} 
a.left:hover  		
{ 
	background-position:0 -71px; 
}
a.left:active  	
{ 
	background-position:0 -71px;
}

/* disabled navigational button */
a.disabled 
{
	visibility:hidden !important;		
} 	


