/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	
	/* vertical scrollers have typically larger height than width */	
	width:524px;
	height:334px;
		padding-bottom:80px;
}

/* root element for scrollable items */
.items {	
	position:absolute;
	/* this time we have very large space for height */	
	margin: 0px;
		height:350px;
		padding-bottom:76px;
		margin-top:10px;

}



/* single scrollable item */
.item {
	font-size:12px;
	width: 470px;
	padding-left:30px;
}

/* 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:170px;
	margin-left:175px;
	margin-top:0px;
}

#actions a {
	font-size:12px;		
	cursor:pointer;
	color:red;
}

#actions a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
	visibility:hidden;		
}

.next {
	float:right;
}	


