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

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	cursor:pointer;
     display:block;
     float:left;
     height:64px;
	margin:28px 8px 0 0;
    width:43px;
	background: url(../img/galeria/left_arrow.png) no-repeat;

}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px 0px;		
}

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

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../img/galeria/right_arrow.png);
	clear:right;
	margin-left:17px;
	margin-right:0;	
}



/* position and dimensions of the navigator */
.navi {
	height:30px;
	margin:0 auto;
	overflow:hidden;
	width:778px;
	clear: both;
}


/* items inside navigator */
.navi a {
	width:20px;
	height:20px;
	float:left;
	margin:5px;
	background:url(../img/galeria/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
.navi a:hover {
	background-position:0 -20px;      
}

/* active state (current page state) */
.navi a.active {
	background-position:0 -40px;     
}
