
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 590px;
	height:102px;
}

/*
	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:30000em;
	position:absolute;
	clear:both;
}

.scrollable div.thumbnail{
	float:left;
	width:90px;
	height:100px;
	margin:2px 4px 0px 4px;
	text-align: center;
}

.scrollable div.thumbnail p{
	font-size:10px;
	line-height:12px;
	vertical-align:top;
	margin:5px 0 0 0;
}

/* single scrollable item */
.scrollable img {
	background-color:#fff;
	cursor:pointer;
	width:90px;
	height:66px;
	margin:0;

}

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



