/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	margin: 0 0 0 0px;
	overflow:hidden;
	width: 160px;
	height:160px;
	top: -10px;
}

/*
	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;
	left: 2px;
	top: 0px;
}


.scrollable div {
	float:left;
	margin:0 110px 10px 0;
	width:60px;
	height:160px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}
/* single scrollable item */
.scrollable img {
	
	background-color:#fff;
	border:2px solid #E6E6E6;
	vertical-align:middle;
	horizontal-align:center;
	-moz-border-radius:2px;
	-webkit-border-radius:2px;
	text-align: center;
display: block;
margin: 0px;
margin-bottom: 0px;
}

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

