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

	/* vertical scrollers have typically larger height than width */	
	height: 450px;	 
	width: 160px;
}

/* 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 {
	margin:10px 0;
	height: 106px;
}

/* elements inside single item */
.items img {
	float:left;
	padding: 0 0 10px 0;
}

/* the action buttons above the scrollable */
#actions {
	width:160px;
	margin:30px 0 10px 0;	
}

#actions a {
	font-size:14px;		
	text-decoration: none;
	cursor:pointer;
	color:#fff;
}

#actions a:hover {
	text-decoration: none;
	color:#fff;
	font-size: 14px;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	

