/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	margin-top: 16px;

}

/*
	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 {
	position:absolute;
	clear:both;
	margin-top: 0px;
}

/* single scrollable item */
.scrollable img {
	float:left;
	padding:0px;
	cursor:pointer;
	width:110px;
	height:81px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 10px;
}

/* active item */
.scrollable .active {
	z-index:9999;
	position:relative;
	outline:none;
}
