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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 960px;
	height:120px;
	margin: 20px 25px;
}

/*
	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 .item {
	float: left;
	background-image: url(../Images_masterLayout/bkg_item.png);
	background-position: bottom;
	background-repeat: no-repeat;
	width: 116px;
	height: 64px;
	margin: 0 12px 0 0;
	padding: 10px 5px 5px 5px;
}

.scrollable .items .item .label {
	background-image: url(../Images_masterLayout/label_new.png);
	width: 62px;
	height: 62px;
	position: absolute;
	z-index: 2;
	margin-left: 62px;
	margin-top: -8px;
}

.items div {
	float:left;
}

/* single scrollable item */


/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}



