/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 95px;	 
	width: 250px;
	/* border-top:1px solid #ddd; */
}

.at-anywhere {
	margin-left:10px;	
}

/* root element for scrollable items */
.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
	width:230px;
}

/* single scrollable item */
p { margin:0; padding:0; height:1309x; overflow:hidden; }

.item {
	/* border-bottom:1px solid #ddd; */
	margin:5px 0 0 10px;
	padding:5px;
	font-size:12px;
	height:100px;
	width:230px;
}

/* 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:230px;
	margin:0 0 0 15px;
}

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
}

#actions a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
	visibility:hidden;		
}

.next {
	float:left;
}	

.prev {
	float:right;
}	


