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

.scrollable {

	/* required settings */ 
	position:relative;
	overflow:hidden;
	width:inherit;
	height:inherit;
}

.scrollable .items {
	/* this cannot be too large */
	width:2000000px;
	position:absolute;
	clear:both;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}


