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

	/* required settings */
	position:absolute;
	overflow:hidden;
	top:100%;
	left:50%;
	width:820px;
	height:120px;
	margin-left:-410px;
	margin-top:-160px;
	padding:0;

}

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

/* single scrollable item */
.scrollable img {
	float:left;
	border:1px solid #ccc;
	width:85px;
	height:85px;
}

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


