/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 830px;
	height:271px;
	margin-left: 10px;

	/* custom decorations */
	
}

/*
	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:261693px;
	position:absolute;
	clear:both;
	left: 16px;
	height: 263px;
}

.items div {
	margin: 0 auto;
	float:left;
	width:900px;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:20px 5px 20px 0px;
	padding:2px;
	height:205px;
	

}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}
