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

	/* vertical scrollers have typically larger height than width */	
	height: 200px; /*65px;	*/ 
	width: 300px; /*700px; */
	/*border-top:1px solid #ddd;	*/
}

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

/* single scrollable item */
/*.listasecciones li { 
	display:block;
	border-bottom:1px solid #ddd;
	margin:10px 0;
	padding:15px;
	font-size:12px;
	height:22px;	
	width: 700px;
}*/

/* elements inside single item */
/*
.listasecciones img {
	float:left;
	margin-right:20px;
	height:180px;
	width:240px;
}

.listasecciones h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}
*/
/* the action buttons above the scrollable */
#actions {
	display:block;
	width:300px;
	height:15px;
	margin:0px;
	padding:0px;
}

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

#actions a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	

