/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;
	padding: 3px;
	margin-left: 7px;
	/* vertical scrollers have typically larger height than width */	
	height: 95px;	 
	width: 210px;
	border:1px solid #ddd;
	-moz-border-radius: 3px; 
	-webkit-border-radius: 3px;
	background-color: #111;
	color: #ccc;
	
}

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

/* single scrollable item */
.item {
	/* border:1px solid #ddd; */
	/* margin:10px 0; */
	margin: 0px;
	margin-top: 10px;
	margin-bottom: 5px;
	font-weight: normal;
	padding:10px;
	padding-top: 5px;
	padding-bottom: 5px;
	font-size:11px;
	height:80px;
	
}

/* elements inside single item */
.item img {
	float:left;
	height:75px;
	width:90px;
	padding: 3px;
	border: 1px solid #ccc;
}

.item h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}

.item a {
	color:#fff;
	font-weight:normal;
}

/* the action buttons above the scrollable */
#actions {
	width:230px;
	margin:30px 0 10px 0;	
}

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

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

.disabled {
	visibility:hidden;		
}

.next {
	float:right;
	margin-right: 10px;
}	

.prev {
	float: left;
	margin-left: 10px;
}
