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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 724px;
	height:160px;

	/* 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:50000px;
	position:absolute;
	clear:both;
	left: 0;
}

/* single scrollable item */
.scrollable a {
	float:left;
	margin:0;
	cursor:pointer;
	width:181px;
	height:160px;
}

.scrollable img {
	float:left;
	margin: 0;
	width:181px;
	height:160px;
}

/* active item */
/*.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}*/
