#scrollable-container {
	margin: 15px 0 0 0;
	padding: 3px;
	clear: both;
	width: 480px;
	height: 160px;
	border:1px solid #ccc;
	background: url(../images/h300.png) repeat-x;
}
.scrollable {
	position:relative;
	overflow:hidden;
	width: 414px;
	height:160px;
}
.scrollable .items {
	width:1000em;
	position:absolute;
}

.items div {
	float:left;
	width:415px;
}

/* single scrollable item */
.scrollable img {
	float:left;
	position: relative;
	margin:20px 20px 15px 15px;
	background-color:#fff;
	padding:3px;
	border:1px solid #ccc;
	width:165px;
	height:115px;
	cursor: pointer;
	-moz-border-radius:4px; /*css3 rounded corners */
	-webkit-border-radius:4px;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}
.scrollable p {
	margin: 10px;
	font-size: 0.8em;
	color: #555;
}

