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

	/* vertical scrollers have typically larger height than width */	
	height: 370px;	 
	width: 80px;
}

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

/* elements inside single item */
.items img {
	height:75px;
	width:100px;
}

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

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

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

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}