/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 140px;	 
	width: 650px;	
}

/* root element for scrollable items */
.items {	
	position:absolute;
	top: 0;
	left: 0;
	
	/* this time we have very large space for height */	
	height:130px;	
	margin: 0px;
}

/* single scrollable item */
.item {
	margin:0px 0;
	padding:5px;
	font-size:12px;
	height:130px;
}

/* elements inside single item */


.item h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}

/* the action buttons above the scrollable */
#actions {
	width:650px;
	margin:0px 0 3px 0;	
}

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
}

#actions a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
	visibility:hidden;		
}

.next {
	float:right;
}	

