
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width : 100%;
	height: 175px;
	
	
	/* custom decorations */
	background-color: #333333;
}

/*
	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:100000px;
	position:absolute;
	clear:both;
	height: 100%;
}

/* single scrollable item */
.scrollable img {
	
	margin-left: 6px;
	margin-right: 6px;
	margin-top: 3px;
	margin-bottom: 3px;
	
	
	padding: 0px;
	cursor: pointer;
	vertical-align: middle;
 }

/* active item */
.scrollable .active {
	border:0px solid #000;
	position:relative;
}


