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

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

/* 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 {
	text-align: center;
	margin:5px 0;
	padding:0px;
	font-size:12px;
	height:160px;
	width: 274px;
}

/* elements inside single item */
.item img {
	margin-right:0px;
	height:160px;
	width:240px;
}



/* the action buttons above the scrollable */
#actions {
	width:274px;
	margin:5px 0 5px 0;	
	text-align: center;
}

#actionsd {
	width: 274px;
	margin: 5px 0 0px 0;	
	text-align: center;
}

.disabled {
	visibility:hidden;		
}

