/*
 scrollable.
*/
.scrollable {

	position:relative;
	overflow:hidden;
	width: 450px;
	height:87px;
	border:1px solid transparent;
	background:#E9E7E4 repeat-x;
}


.scrollable .items {
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:0px;
	background-color:#E9E7E4;
	padding:0px;
	border:1px solid transparent;
	cursor:pointer;
	height:87px;
	width:130px;
}

/* active item */
.scrollable .active {
	border:1px solid #F3F3F3;
	z-index:9999;
	position:relative;
}



