/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollContainer {
	padding: 10px 0 0 0;
	margin: 0 auto;
	width: 970px;
	background: transparent url(../images/background_gradient2.jpg) top left repeat-x;
	}
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 905px;
	height:100px;
	padding-top: 2px;
	/* custom decorations
	border:1px solid #f00;
	background:url(../images/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;
}

/*.scrollable img {
	float:left;
	margin:20px 5px 20px 21px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	cursor:pointer;
	width:100px;
	height:75px;	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}
active item 
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
} */
/* single scrollable item */
a.veh {
	font: 12px Arial, Helvetica, sans-serif;
	text-decoration: none;
	float: left;
	display: block;
	float: left;
	width:120px;
	height: 60px;
	padding: 5px;
	text-align: center;
	color: #666;
	cursor: auto;
	}
.scrollable img {
	float: left;
	/*border: 1px solid #ccc;*/
	border: none;
	background-color: #fff;
	background-color: none;
	background: transparent;
	padding: 2px;
	width: 120px;
	height: 60px;
	/*-moz-border-radius:4px;
	-webkit-border-radius:4px;*/
	}
