.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	background: none !important;

	/* vertical scrollables have typically larger height than width but not now */
 width: 230px !important;
 height:100px; 
 border:  0px !important;
 margin-left: 30px !important;
 margin-top:10px !important;
}

/* root element for scrollable items */
.scrollable .items {
	position:absolute;

	/* this time we have very large space for the height */
	height:20000em;
}
.scrollable .items li{
	display: block;
	height: 100px;
	}
