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

	/* required settings */
	background-color: transparent; background-repeat: repeat-x; background-attachment: scroll; background-position: 0 0; position:relative; overflow:hidden; width: 93%; height:85px; border-color: #fbfbfb; }

/*
	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 {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

.items div { float:left; width:880px; height: 80px; }

/* single scrollable item */
.scrollable img {
	float:left;
	margin:1px;
	background-color:#fff;
	padding:1px;
	border:solid 1px #ccc;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
.scrollable .active {
	border:solid 1px #000;
	position:relative;
	cursor:default;
}


