.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 222px;	 
	width: 265px;
	
}

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

/* single scrollable item */
.items div {
	
	
	
	font-size:12px;
	height:70px;
}

/* elements inside single item */
.items img {
	float:right;
	margin-right:2px;
	height:64px;
	width:66px;
}

.items h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}

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


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

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

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
	padding-right:2px;
}	


.prevPage {
	float:left;
	padding-left:2px;
}	

