/* root element for scrollable */
.vertical {  
	/* required settings */
	position:relative;
	overflow:hidden;
	height: 250px;	 
	width: 350px;
}

/* root element for scrollable items */
.items {	
	position:relative;
	/* this time we have very large space for height */	
	height:20000em;
}

/* single scrollable item */
.items div {
	height:250px;
}


/* the action buttons above the scrollable */
#actions {
	width:350px;
	margin:0px;
}
#actions a {
cursor:hand;
}

.disabled {
	visibility:hidden;		
}


.prevPage {
	position:relative;
	top:32px;
	left:85px;
}	
.nextPage {
	position:relative;
	top:15px;
	left:110px;
}	

