/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 880px;
	height:131px;
	background:url(http://kenkragen.com/img/global/gradient/h300.png) repeat-x;
}

/*
	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:20000em;
	position:absolute;
	clear:both;
}

.items .container {
	width:900px;
	float: left;
	margin-left: 0px;
}

/* single scrollable item */
.scrollable img {
	background-color:none;
	padding:0px;
	width:134px;
	height:88px;
	border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	margin-top: 0px;
	margin-right: 6px;
	margin-bottom: 2px;
	margin-left: 7px;
	-o-box-shadow: 0 0 5px #444444;
	-moz-box-shadow:0 0 5px #444444;
	-webkit-box-shadow:0 0 5px #444444;
	box-shadow:0 0 5px #444444;
	display: block;
}

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

.box
{
	float:left;
	margin-top: 20px;
}

.box span
{
	text-align:center;
	color: #666;
	font-size: 12px;
	padding-left: 10px;
	width: 134px;
	margin: auto;
}