/* root element for scrollable */


#menuRolante{

	float:right;

}

#menuRolante .vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	

	float:left;

}

/* root element for scrollable items */
#menuRolante .items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	
	margin: 0px;
}

/* single scrollable item */
#menuRolante .items div {
	
	float:left;
	height:49px;
	width:270px;
	
	
}



/* elements inside single item */
#menuRolante .items a {
	
	float:left;	
	margin-right:1px;

	height:48px;
	width:48px;
	
}

/* the action buttons above the scrollable */
#menuRolante #actions {
	
	width:20px;
	margin:42px 0 10px 0;	
	float:right;
}

#menuRolante #actions a {
	float:right;

	font-size:11px;		
	cursor:pointer;
	color:#666;
	padding:5px;
	background-color:#0A0A0A;
}

#menuRolante #actions a:hover {
	text-decoration:underline;
	color:#000;
}

#menuRolante .disabled {
	visibility:hidden;		
}
#menuRolante .prevPage{
		
}

#menuRolante .nextPage {
	float:right;
}	

/* root element for scrollable */ 

