/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 572px;
	height:170px;	
}

/*
	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;
}

.scrollable .items div {
	float:left;
	background:transparent url(../images/frame03.png) no-repeat 0 0;
	margin:10px 5px 10px 0;
	padding:10px 10px;
	width:118px;
	height:122px;
}

/* single scrollable item */
.scrollable img {	
	cursor:pointer;
	width:116px;
	height:116px;
}

/* active item */
.scrollable .active img {
	border:1px solid #B7B7B7;
	z-index:9999;
	position:relative;
}
