@charset "utf-8";
/* CSS Document */


/* root element for scrollable */
#index1 .scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;

	/* vertical scrollables have typically larger height than width but not now */
	height:160px;
	width:270px;
}

/* root element for scrollable items */
#index1 .scrollable .items {
	position:absolute;
	/* this time we have very large space for the height */
	height:15999px;
}
