
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 840px;
	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 {
	clear:both;
	margin: 0;
	padding: 0;
	position: absolute;
	width: 4000em;
}

/* single scrollable item */
.scrollable a {
    border: 0;
    display: block;
	float: left;
    margin: 0 5px 5px 5px;
    padding: 5px 5px 5px 5px;
	text-decoration: none;
	text-align: center;
	width: 120px;
    _margin: 0;
    _padding: 5px 0;
	_width: 140px; /* for IE */
}

.scrollable a img {
	background-color: #fff;
	border: 0;
	height: 100px;
	margin: 0 10px;
	padding: 0;
    _margin: 0 20px;
	width: 100px;
}

.scrollable div.items a span {
	border: 0;
	clear: both;
	color: #000;
	display: block;
	font-size: 8pt;
	height: 15px;
	margin: 0;
	padding: 0;
}

.scrollable a.hovered {
	background-color: #ccc;
	z-index: 9999;
	position: relative;
}

.scrollable div.items a.hovered span {
	color: #fff;
}

.scrollable div.items canvas {
	margin: 0 10px;
	padding: 0;
}
