
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
#scrollableNavContainer {
	margin: 0 0 0 0;
	padding: 0 10px 0 10px;
	background: #313131;
	width: 696px;
	height: 100px;
}

.scrollable {

	/* required settings */
	position: relative;
	overflow: hidden;
	width: 615px;
	height: 100px;
	background: #313131;
	/* custom decorations */
}

/*
	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 */
	margin: 0 0 0 0;
	padding: 10px;
	width: 20000em;
	position: absolute;
	clear: both;
}

/* single scrollable item */
.scrollable img {
	float: left;
	margin: 0 10px 0 0;
	padding: 0 0 0 0;
	border: 1px solid #666666;
	cursor: pointer;
	width: 111px;
	height: 75px;
}

/* active item */
.scrollable .active {
	border: 2px solid #FFFFFF;
	z-index: 9999;
	position: relative;
}



