/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	height:136px;
	left:0;
	overflow:hidden;
	padding:23px 0 0 0;
	position:relative;
	width:618px
}

/*
	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 {
	background:#e4e2e2;
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}



/* single scrollable item */
.scrollable img {
	cursor:pointer
}

/* active item */
.scrollable .active {
	cursor:default
}

/* this makes it possible to add next button beside scrollable */
.scrollable {
	margin:0 auto	
}