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

/* prev, next, prevPage and nextPage buttons */
a.next, a.nextPage {
	display:block;
	width:195px;
	height:19px;
	background: url(../images/barra_inf.jpg) left top no-repeat;
	float:left;
	cursor:pointer;
	margin:6px 0px 0px 0px;
	padding:0px;
}

a.prev, a.prevPage {
	display:block;
	width:195px;
	height:29px;
	background: url(../images/barra_sup.jpg) left top no-repeat;
	float:left;
	cursor:pointer;
	margin:0px 0px 5px 0px;
	padding:0px;
}

/* mouseover state */
a.next:hover, a.nextPage:hover {
	background: url(../images/barra_inf.jpg) left bottom no-repeat;		
}

a.prev:hover, a.prevPage:hover {
	background: url(../images/barra_sup.jpg) left bottom no-repeat;	
}

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



