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

	/* vertical scrollers have typically larger height than width */	
	height: 241px;	 
	width: 262px;

}

/* root element for scrollable items */
.items {
	position:absolute;	
	/* this time we have very large space for height */	
	margin: 0px;
	left:0px;
}

/* single scrollable item */
.items div {
	padding:0px;
	margin:0px 1px;
	border-bottom:1px solid #cccccc;
	width:262px;
	height:120px;
}

.prevPage{
	cursor:pointer;
}

.nextPage{
	cursor:pointer;
}
