/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 400px;
	height:84px;
	background:url(/img/global/gradient/h300.png) repeat-x;
}
.border {
	height: 80px;
	width: 1px;
	padding-top: 2px;
	padding-bottom: 2px;
	float: left;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #333;
}


/*
	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:950px;
	position:absolute;
	float: left;
	clear: both;
}

.items div {
	float:left;
	width:680px;
}

/* single scrollable item */
.scrollable img {
	float:left;
	background-color:#fff;
	border:1px solid #ccc;
	width:94px;
	height:66px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	margin-top: 0px;
	margin-right: 2px;
	margin-bottom: 0px;
	margin-left: 2px;
	padding: 3px;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}
.clientscroller {
	width: 1035px;
	height: 90px;
	margin-top: 10px;
	float: left;
	padding: 5px;
	margin-right: 15px;
	margin-left: 15px;
}
