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

	/* vertical scrollers have typically larger height than width */	
	height: 200px;	 
	width: 500px;
	border:0px;	
}

/* 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 {
	border:0px;
	margin:0px0;
	padding:0px;
	font-size:12px;
	height:50px;
}

/* elements inside single item */
.items img {
	margin-right:20px;
	height:42px;
	width:130px;
}

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

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
}

#actions a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	
}

.prevPage {
	
}

