
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.ie6 .scrollable {
	position: relative;
	overflow: hidden;
	width: 780px;
	height: 60px;
	margin: -60px 0 0 106px;
}
.scrollable {
	position: relative;
	overflow: hidden;
	width: 780px;
	height: 60px;
	margin: -60px 0 0 212px;
}

/*
	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 {
	width: 20000em;
	position: absolute;
}

.items div {
	width: auto;
	float: left;
}

/* single scrollable item */
.scrollable img {

}

/* active item */
.scrollable .active {

}


