

.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 910px;
	height:350px;

}


.scrollable .items {
	/* this cannot be too large */
	width:2500px;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable img {
	float:left;
	padding:2px;
	cursor:pointer;
	width:180px;
	height:345px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
.scrollable .active {
	border:1px solid #9AD8DA;
	z-index:9999;
	position:relative;
}


