/* root element for scrollable */
.vertical {
	/* required settings */
	position:relative;
	overflow:hidden;
	/* vertical scrollers have typically larger height than width */	
	height: 500px;
	width: auto;
	margin-top: 35px;
	margin-left: 35px;
}

/* root element for scrollable items */
.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}

/* single scrollable item */
.items div {
	height: 500px;
}

/* the action buttons above the scrollable */
#actions {
	width:906px;
	padding-top: 5px;
	padding-right: 35px;
	padding-bottom: 0px;
	padding-left: 35px;
	position: relative;
	z-index: 5;
}

#actions a {
	cursor:pointer;
	color:#FCFDFB;
}

#actions a:hover {
	text-decoration:none;
	color:#CCCCCC;
	background-color: transparent;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	
