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

	/* vertical scrollers have typically larger height than width */	
	height: 425px;	 
	width: 120px;
}

.selected {
	border : 2px solid #fff;
}

/* 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:1px 0;
	height:70px;
}

/* elements inside single item */
.items img {
	float:left;
	height:65px;
	width:100px;
	cursor: pointer;
}

/* the action buttons above the scrollable */
.actions {
	width:120px;
	margin:5px 0 5px 0;
}

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

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

.disabled {
	visibility:hidden;		
}

.nextPage {
}	


