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

	/* vertical scrollers have typically larger height than width */	
	height: 365px;	 
	width: 154px;
	margin-left:37px;
}

/* 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;padding:5px;font-size:12px;height:122px;}

/* elements inside single item */
.items img {float:left;height:113px;width:150px;border:2px solid #333;}
.items img:hover {border:2px solid #6697C9;}

/* the action buttons above the scrollable */
#actions {width:120px;margin:30px 0 10px 0;	}
#actions a {font-size:11px;		cursor:pointer;color:#666;}
#actions a:hover {text-decoration:underline;color:#000;}
.disabled {visibility:hidden;	}
.nextPage {float:right;}	

