@charset "UTF-8";
/* CSS Document */

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/


.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:relative;
}

.scrollable {
	height:500px;
	width:1024px;
	overflow:hidden;
}

.items div {
	float:left;
}