/* root element for scrollable */
.launch-scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;

	/* vertical scrollables have typically larger height than width but not now */
	height: 440px;
	width: 280px;
}

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

	/* this time we have very large space for the height */
	height:20000em;
}

