/* SCROLLABLE */

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	padding-top: 0px;
	width:170px;
	/* height:775px; */
	/* height:1950px; */
	/* height:3900px; */
	/* height:5850px; */
	height:7800px;
	
	/* custom decorations */
}

.homeScroller {
	height:350px;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:170em;
	/* height:1950px; */
	height:7800px;
	position:absolute;
	clear:both;
}
