/* CSS Document */
/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
	margin-left:41px;
}

.scrollable h3 {color:#1b1b1b !important; font-size:110%; }
.scrollable a {text-decoration:none;}
.scrollable a:hover { text-decoration:underline; color:#1b1b1b !important;}

#featuredvehiclesheadline {color:#1b1b1b; font-size:143%; margin:28px 0px 0px 36px;}
.featuredvehiclespricebin {color:#1b1b1b; }
.featuredvehiclesprice {font-weight:bold; }

.getdetails {color:#b89300; }

/* prev, next, prevPage and nextPage buttons */
a.browse {
	/*background:url(./scrollable/arrow/hori_large.png) no-repeat;*/
	background:url(images/featuredvehicles_arrows.png) no-repeat;
	display:block;
	width:17px;
	height:49px;
	float:left;
	margin:10px 10px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 				{ background-position: 0px -49px; clear:right; margin-right: 0px;}
a.right:hover 		{ background-position:-17px -49px; }


/* left */
a.left				{ margin-left: 0px; } 
a.left:hover  		{ background-position:-17px 0; }

/* up and down */
a.up, a.down		{ 
	background:url(./scrollable/arrow/vert_large.png) no-repeat; 
	float: none;
	margin: 10px 50px;
}

/* up */
a.up:hover  		{ background-position:-30px 0; }
a.up:active  		{ background-position:-60px 0; }

/* down */
a.down 				{ background-position: 0 -30px; }
a.down:hover  		{ background-position:-30px -30px; }
a.down:active  	{ background-position:-60px -30px; } 

.adjust{float: right!important;}

.nav_featured{clear: left; float: left; width: 659px; margin:-187px 0px 0px 24px;}

#actionButtons{padding-top: 18px; padding-left: 15px; float: left;}


.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 619px;
	height:300px;

	/* custom decorations */
	border:3px solid #ccc;
}

/*
	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;
}

.items div {
	float:left;
	width:167px;
	padding: 20px 7px 10px 26px;
}

/* single scrollable item */
.scrollable img {
	background-color:#fff;
	padding:1px;
	border:3px solid #ccc;
	width:159px;
	height:111px;
	
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}

.listing_info{
	
	display: block;
	
}