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

	/* vertical scrollers have typically larger height than width */	
	height: 400px;	 
	width: 200px;
	}

/* 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 auto;
	padding:2px auto;
	font-size:12px;
	/*height:180px;*/
	width:200px;
}

.items div:hover{
	color:#000;	
}

.items img {
	float:left;
	margin-right:5px;
	height:70px;
	width:70px;
}
.items h3 {
	margin:0 0 5px 0;
	font-size:12px;
	color:#e54a34;
	font-weight:bold;
}

/* the action buttons above the scrollable */
#actions {
	width:200px;
	margin:5px 0 10px 0;
	float:left;	
}

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

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

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}
.prevPage {
	float:left;
}