/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;
	padding:5px;
	font:bold 11px Trebuchet MS;
	font-family: Trebuchet MS;
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:39px;
	height:25px;
	background:url(flecha2.png) no-repeat;
	float:left;
	cursor:pointer;
	font-size:1px;
	margin:8px 5px 0 5px;
}


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

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(flecha.png);
	clear:right;	
}





/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin-left:328px;
	width:200px;
	height:20px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:#000;
	display:block;
	font-size:1px;
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;  
	background:#8b0000;    
}

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


