/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 355px;
	height:120px;
	margin:0px;
}

/*
	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;
	height: 120px;
/*	width: 350px; */
}

/* single scrollable item */
.scrollable img {
	float:left;
	background-color:#fff;
	padding:0px;
	border:1px solid #ccc;
	cursor:pointer;
	width:80px;
/*	height:105px;*/
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
.scrollable .active {
	border:1px solid #000;
	/*z-index:9999;
	position:relative;*/
}

