
/* 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 {
	display:block;
	width:20px;
	height:9px;
	background:url(../images/freccia-su.gif) no-repeat;
	margin: -18px 0 0 0;
	cursor:pointer;

}

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

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

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../images/freccia.gif);
	position: relative; 
	top: 40px; 

}

a.prev, a.prevPage {
	margin: 0;
	position: relative; 
	top: 4px; 

}





