/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:absolute;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	top:232px;
	left: 50%;
	margin-left: -18em;
	height: 240px;	 
	width: 630px;
}

.acciones{
	position:absolute;
	top:491px;
	left: 50%;
	height: 20px;	 
	width: 550px;
	margin-left: -17em;
	}

/* root element for scrollable items */
.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	padding:5px;
	height:20000em;	
	margin: 0px;
}

/* single scrollable item */
.items div {
	border-bottom:1px dotted #ddd;
	font-size:11px;
	height:35px;
}

.items div a{
	color:#e12d21;
	text-decoration:none;
}

.items div a:hover{
	color:#000;
	text-decoration:none;
}


.destacado{ color:#900;}


/* the action buttons above the scrollable */


#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
}

#actions a:hover {
	color:#000;
}

#bot_buscar a {
	color:#FFF;
}

#bot_buscar a:hover {
	color:#000;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	

