
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 900px;
	height:196px;

	/* custom decorations */
	border:0px solid #000;
	background:url(slider-bg.png) left top repeat-x;
}

/*
	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;
	height:196px;
	z-index:1000000;
	
}

/* single scrollable item */
.scrollable img {
	
	margin:20px 20px 10px 17px;
	padding:0px;
	border:0px solid #727272;
	cursor:pointer;
	width:192px;
	height:126px;
	z-index:-1111111;
}

/* active item */
.scrollable .active {
	border:0px solid #868686;
	z-index:9999;
	position:relative;
}



