/*
 scrollable.
*/
.scrollable {

	position:relative;
	overflow:hidden;
	width: 848px;
	height:100px;
	border:1px solid transparent;
	background: transparent repeat-x;
}

.scrollable .items {
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:0px 7px 0 7px;
	background-color:#373737;
	padding:0px;
	cursor:pointer;
	height:100px;
	width:150px;
}

/* active item */
.scrollable .active {
	z-index:9999;
	position:relative;
}

