
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	background-color:#FFFFFF;

	/* vertical scrollables have typically larger height than width but not now */
	height: 250px;
	width: 185px;
	margin:0;
	padding:0;
}

/* root element for scrollable items */
.scrollable .items {
	position:absolute;
	top:0px;
	left: 0px;
	background-color:#FFFFFF;

	/* this time we have very large space for the height */
	height:20000em;
	width: 185px;
		margin:0;
	padding:0;
}


