.scrollable_main
{
	text-align: center; width: 710px; height:250px;
}

.scrollable, .items div {
	width:620px;
}

.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	height: 240px;
	background-color: #EFEEEA;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-box-shadow: #E9E8E2 1px 1px 1px;
	-webkit-box-shadow: #E9E8E2 1px 1px 1px;
	box-shadow: #E9E8E2 1px 1px 1px;
}

.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

.items div {
	float:left;
}

/* single scrollable item */
.scrollable img {
	text-align: center;
	margin:20px 5px 20px 11px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

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