.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 470px;
	height:120px;
}
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}
.items div {
	float:left;
	width:480px;
}
/* single scrollable item */
.scrollable img {
	float:left;
	background-color:#fff;
	padding:0px;
	width:100px;
	height:75px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	margin-top: 20px;
	margin-right: 7px;
	margin-bottom: 20px;
	margin-left: 7px;
	border: 2px solid #be720b;
}
/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}


