/* root element for scrollable */
.vertical {  
	/* required settings */
	position:relative;
	overflow:hidden;
	margin-top:76px;
	height:384px;
}

/* root element for scrollable items */
.items {	
	position:absolute;
	top:0;
	left:0;
	/* this time we have very large space for height */	
	height:20000em;	
}

.items ul li {margin-bottom:1px;}

/* the action buttons above the scrollable */
#actions {
	position:absolute;
	top:56px;
	left:56px;
	width:26px;
	height:420px;
	z-index:550;
}

#actions a {
	cursor:pointer;
	display:block;
}

#actions a.next {margin-top:384px;}

.disabled {
	visibility:visible;	/* hidden x avere i controller inattivi */
}