/* @override http://slake.la/css/scrollable-vertical.css */

/* @override http://slake.la/css/scrollable-vertical.css */

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

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

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

/* single scrollable item */
.item {
	padding: 00px 20px 10px 20px;
	margin-bottom: 10px;
	border-bottom:1px solid #ddd;
	height: 80px;
}

/* 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 {
	padding: 0px 20px;
	padding-top: 15px;
}

#actions a {
	cursor:pointer;
}

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

.disabled {
	visibility:hidden;		
}

.next {
	float:right;
}	


