/**
* HTML5 ✰ Boilerplate
*
* style.css contains a reset, font normalization and some base styles.
*
* Credit is left where credit is due.
* Much inspiration was taken from these projects:
* - yui.yahooapis.com/2.8.1/build/base/base.css
* - camendesign.com/design/
* - praegnanz.de/weblog/htmlcssjs-kickstart
*/



@import url(//fonts.googleapis.com/css?family=Questrial);
@import url(//fonts.googleapis.com/css?family=Droid+Sans|PT+Sans);

@font-face {
	font-family: 'ITCAVANTGARDEGOTHICLTMEDIUM';
    src: url('http://fontsforweb.com/public/fonts/7916/ITCAVANTGARDEGOTHICLTMEDIUM.eot');
	src: local('ITCAVANTGARDEGOTHICLTMEDIUM'), url('//fontsforweb.com/public/fonts/7916/ITCAVANTGARDEGOTHICLTMEDIUM.ttf') format('truetype');
    }


/**
* html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
* v1.6.1 2010-09-17 | Authors: Eric Meyer & Richard Clark
* html5doctor.com/html-5-reset-stylesheet/
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
	content: none;
}

ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}

mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}

del {
	text-decoration: line-through;
}

abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #000;
	margin: 1em 0;
	padding: 0;
	clear: both;
}

em {
	font-style: italic;
}

input, select {
	vertical-align: middle;
}

blockquote { font-size: 17px; font-style: italic; line-height: 1.4; margin: 0 0 4px 0; }

cite { color: #DD2733; font-weight: bold; font-size: 13px; }

/**
* Font normalization inspired by YUI Library's fonts.css: developer.yahoo.com/yui/
*/

body {
	font: 12px/1.231 sans-serif; *font-size:small;
}
/* Hack retained to preserve specificity */
select, input, textarea, button {
	font: 99% sans-serif;
}

/* Normalize monospace sizing:
en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome */
pre, code, kbd, samp {
	font-family: monospace, sans-serif;
}


/**
* Minimal base styles.
*/

/* Always force a scrollbar in non-IE */
html {
	overflow-y: scroll;
}

/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active {
	outline: none;
}

ul, ol {
	margin-left: 1.5em;
}
ol {
	list-style-type: decimal;
}
ul {
	list-style-type: square;
}
ul li,
ol li {
	margin: 3px 0;
}

/* Remove margins for navigation lists */
nav ul, nav li {
	margin: 0;
	list-style: none;
	list-style-image: none;
}

/* Sub-menu */
nav li ul{
        display: none;
        position: absolute;
        background-color: #444;
}
nav li:hover ul{
        display: block;
        background: red;
        height: auto;
        width: 8em;
        background-color: #444;
}
nav li ul li{
        clear: both;
        border-style: none;
        background-color: #444;
}

small {
	font-size: 85%;
}
strong, th {
	font-weight: bold;
}

td {
	vertical-align: top;
}

/* Set sub, sup without affecting line-height: gist.github.com/413930 */
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}

pre {
/* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
white-space: pre;
white-space: pre-wrap;
word-wrap: break-word;
padding: 15px;
}

textarea {
	overflow: auto;
}
/* www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend {
	margin-left: -7px;
}

/* Align checkboxes, radios, text inputs with their label by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css */
input[type="radio"] {
	vertical-align: text-bottom;
}
input[type="checkbox"] {
	vertical-align: bottom;
        width:20px !important;
        padding:0 !important;
        margin:0 !important;
        margin-top:7px !important;
}
.ie7 input[type="checkbox"] {
	vertical-align: baseline;
}
.ie6 input {
	vertical-align: text-bottom;
}

/* Hand cursor on clickable input elements */
label, input[type="button"], input[type="submit"], input[type="image"], button {
	cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
	margin: 0;
}

/* Colors for form validity */
input:valid, textarea:valid {
}
input:invalid, textarea:invalid {
	border-radius: 1px;
	-moz-box-shadow: 0px 0px 5px red;
	-webkit-box-shadow: 0px 0px 5px red;
	box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, .no-boxshadow textarea:invalid {
	background-color: #f0dddd;
}


/* These selection declarations have to be separate
No text-shadow: twitter.com/miketaylr/status/12228805301
Also: hot pink! */
::-moz-selection {
	background: #DA2A34;
	color: #fff;
	text-shadow: none;
}
::selection {
	background: #DA2A34;
	color: #fff;
	text-shadow: none;
}

/* j.mp/webkit-tap-highlight-color */
a:link {
	-webkit-tap-highlight-color: #FF5E99;
}

/* Make buttons play nice in IE:
www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {
	width: auto;
	overflow: visible;
}

/* Bicubic resizing for non-native sized IMG:
code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img {
	-ms-interpolation-mode: bicubic;
}

/**
* You might tweak these..
*/

body, select, input, textarea {
	color: #444;
	font-family: 'PT Sans',Arial,Verdana,sans-serif;
	font-size: 13px;
}

/* Headers (h1, h2, etc) have no default font-size or margin; define those yourself */
h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
}

p {
	margin-bottom: 1em;
}

br {
	margin: 0;
}

a, a:active, a:visited {
	color: #DA2A34;
}
a:hover {
	color: #8F2720;
}


/**
* Primary styles
*
* Author:
*/

body {

}

tr, td {
	padding: 2px;
}

.logo {
	display: block;
	float: left;
	margin: 23px 20px 15px 0;
}


#container, .container {
	width: 960px;
	height: auto;
	margin: 0 auto;
	position: relative;
}

header {
	height: 240px;
	background: #B91E25;
	position: relative;
	overflow: hidden;
}

#container header { height: auto; background: none; }

#b-index header { height: 430px; }

#header_contact {
	float: left;
	width: 200px; 
	overflow: none;
	text-align: right;
	margin: 3px 0 0 0;
}

#header_contact .phone-times {
	font-size: 24px;
	color: #fff;
}

#header_contact .phone-times span {
	font-size: 12px;
	color: #333;
	display: block;
	margin: 0 0 10px 0;
}

#header_contact .social {
	text-align: right;
}

#b-index #header_contact .social {
	margin-top: -5px; 
}


.red { color: #DD2833; }


.excellence { color: #fff; font-family: 'ITCAVANTGARDEGOTHICLTMEDIUM', sans-serif; font-weight: bold; font-size: 30px; margin: -20px 0 0 185px; float: left; }

#b-index .excellence { float: none; margin: 0; }
 
#header_description { font-family: 'Questrial', sans-serif; font-size: 24px; color: #fff; width: 410px; clear: left; float: left; line-height: 1.5; }
#header_description span, .excellence span { color: #393939 }
#header_description p:first-of-type { border-bottom: 1px solid #fff; padding-bottom: 13px; margin: 10px 0 8px 0; }

h1 {
	font-family: 'Questrial', sans-serif;
	font-size: 24px;
	font-weight: normal;
	color: #333333;
	margin: 15px 0;
	padding: 0 0 7px 0;
	border-bottom: 1px solid #ccc;
}

hgroup { border-bottom: 1px solid #ccc; padding: 0 0 10px 0; margin: 0 0 10px 0; }
hgroup h1, hgroup h3 { border: none; margin: 0; padding: 0; }

h2, h3, h4, h5 {
	font-family: 'Questrial', sans-serif;
	font-weight: normal;
	font-size: 21px;
	color: #DB2A34;
	margin: 20px 0;
}

h3 {
	font-size: 18px;
}

h4 {
	font-family: 'PT Sans',Arial,Verdana,sans-serif;
	font-size: 15px;
	font-weight: bold;
	color: #DD2633;
	margin: 0;
}


h5 {
	font-size: 1em;
	color: #000;
}

img.tag {
	margin: 0 0 0 20px;
}

#main { margin-top: 20px;}

.tab {
    background-color: #DD2833;
    height: 100px;
    left: 0;
    position: absolute;
    top: 60px;
    width: 50px;
}

#popular.tab { background-color: #3B3B3B; }

.tab a {
    border: 0 solid #f00;
    bottom: 0;
	text-indent: 7px;
    color: #fff;
    display: block;
    font-family: 'ITCAVANTGARDEGOTHICLTMEDIUM', sans-serif; 
	font-weight: bold; 
	font-size: 18px;
    height: 130px;
    line-height: 1.8;
    margin-left: 40px;
    text-align: center;
	text-decoration: none;
    white-space: nowrap;
    width: 60px;
    z-index: 999;
	
	transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

a.action, input.action { width: 140px; float: left; display: block; line-height: 50px; height: 50px; text-align: center; text-decoration: none; font-weight: bold; border: 1px solid #000; background: #000 url('../images/button_black.png') left top repeat-x; color: #fff; font-size: 17px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

a.action.red, input.action.red { background: #B91E25 url('../images/button_red.png') left top repeat-x; border: 1px solid #B91E25; margin-left: 15px; }


/* Layout */

.column-left, .column-right { float: left; width: 640px; margin-right: 19px; }
.column-right { float: left; width: 300px; margin: 0; }


/* Home */

#specials { height: 235px; padding: 15px 0 0 0; background: url('../images/specials_bg.png') left top repeat-x; position: relative; overflow: hidden; }

#why-dsg { background: #ddd; width: 300px; height: 320px; float: left; margin: 0 30px 0 0; }
#why-dsg h2,  h2.box-header { background: #C6C6C6; line-height: 50px; margin: 0; padding: 0; text-indent: 15px; }
#why-dsg h2 { background: #C6C6C6 url('../images/lion-head.png') right top no-repeat; }
#why-dsg ul { list-style: none; margin: 9px 15px 0 15px; }
#why-dsg ul li { padding-left: 35px; background: url('../images/bullet_tick.png') 0 7px no-repeat; margin-bottom: 10px; }

#quote { width: 630px; margin: 20px 0; }
#quote h3 { width: 180px; margin: 0 20px 0 0; padding: 10px 20px 10px 0; border-right: 1px solid #ccc; float: left; color: #333; font-size: 21px; }

#finance { background: #DD2833; width: 300px; height: 319px; float: right; font-family: 'Questrial', sans-serif; color: #fff; font-size: 18px; position: relative; }
#finance p { background: #B91E25; padding: 20px; margin: 0; bottom: 0; position: absolute; }
#finance ul { list-style: none; margin: 20px 18px; }
#finance ul li { line-height: 54px; padding-left: 35px; background: url('../images/bullet_circle_white.png') 0 13px no-repeat; }
#finance ul li a { text-decoration: none; color: #fff; }
#finance ul li a:hover { text-decoration: underline; }

#home-about { clear: both; padding: 30px 0 0 0; }
#home-intro { float: left; width: 630px; }
#home-intro h1 { margin-top: 0; }
#home-intro h3 { margin: 15px 0; }
#home-image { float: left; padding: 0 30px 0 0; }
#home-logos { float: right; width: 240px; margin: 0 0 0 15px; }
#home-logos img { margin: 0 12px 20px 0; }

ul#main_list { margin: 0; }
ul#main_list li { margin: 0 0 5px 0; list-style-type: none; }

#box_container {
	width: 300px;
	height: auto;
	float: left;
	margin: 0 30px 0 0;
}

a.box {
	width: 270px;
	height: 80px;
	margin: 0 0 10px 0;
	text-decoration: none;
	background: #ddd;
	display: block;
	padding: 10px 15px;
}

a.box:last-of-type { margin: 0; }

a.box:hover { background: #C6C6C6; }

a.box img, a.last img {
	border: 1px solid #444;
}

a.box:hover img, a.last:hover img {
	border: 1px solid #888;
}

a.box h2 { margin: 0; padding: 0; }

a.box p, a.last p {
	margin: 0;
	color: #444;
}

a.last {
	width: 220px;
	height: auto;
	float: left;
	display: inline;
	text-decoration: none;
	margin: 10px 0 10px 0;
}

#box_container.sidebar { margin: 0 0 10px 0; }
.sidebar a.box { background-color: #3b3b3b; }
.sidebar a.box#box-about { background: #3b3b3b url('../images/lion-wonky.png') right top no-repeat; }
.sidebar a.box#box-offers { background-color: #ddd; height: 60px; }
.sidebar a.box#box-offers h2 { font-size: 24px; }
.sidebar a.box#box-offers h2 span { color: #333; }
.sidebar a.box#box-protection { background-color: #DD2833; }
.sidebar a.box#box-protection h2 { color: #3b3b3b; }
.sidebar a.box p { color: #fff; }

.column-right #finance { height: 290px; }


/* Nav
-------------*/

nav { width: 530px; float: left; }

nav ul {
	width: auto;
	height: 40px;
	background: #3B3B3B;
	margin: 0;
	padding: 0 0 0 7px;
	clear: both;
}

nav ul li {
	list-style: none;
	float: left;
	display: inline;
	margin: 0;
}

nav ul a {
	height: 40px;
	line-height: 40px;
	color: #fff !important;
	display: inline-block;
	padding: 0 4px;
	text-decoration: none;
	text-align: center;
}

nav a:hover {
	color: #DD2833 !important;
}


/* Search Bar
-------------*/

#SearchBar { height: 108px; background: #DD2833; clear: both; position: absolute; bottom: 0; width: 100%; }

form#search fieldset {
	width: 960px;
	margin: 0 auto;
	color: #fff;
	border: none;
	height: 34px;
	padding: 10px 0;
}

form#search .form-error {
	font-style: italic;
	font-weight: bold;
	color: yellow;
	padding: 0 0 5px 10px;
}

form#search label {
	color: #fff;
	margin: 10px;
}

form#search .search-label {
	font-size: 17px;
	margin: 7px 15px 0 0px;
	position: relative;
	display: block;
	float: left;
	top: 1px;
	font-family: 'Questrial', sans-serif;
}

form#search select {
	width: 138px;
	margin: 0 10px;
	padding: 4px 2px;
	border: none;
	font-size: 14px;
	
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.product-derivs .vehicle-more { padding: 0 13px; }

form#search button { background: none; border: none; padding: 0 5px; }

form#search .submit, .product-derivs .vehicle-more, #submit_button, .refresh, .button { font-family: 'Questrial', sans-serif; text-align: center; background: #000; border: none; color: #fff; font-size: 15px; text-transform: none; text-decoration: none; font-weight: bold; height: 30px; line-height: 30px; padding: 0 15px; cursor: pointer;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;

	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#333), to(#1a00082f7));
	background-image: -webkit-linear-gradient(top, #333, #000); 
	background-image:    -moz-linear-gradient(top, #333, #000);
	background-image:     -ms-linear-gradient(top, #333, #000);
	background-image:      -o-linear-gradient(top, #333, #000);
	background-image:               linear-gradient(#333,#000);
}

.button { display: block; width: 250px; }
.button:hover,.button:visited { color: #fff; }

#submit_button, .refresh { float: right; }

.product-derivs .vehicle-more, .refresh { display: block; }

a.refresh { padding: 0 6px; text-indent: 0; margin: 10px 10px 0 0; color: #fff; }
.refresh.refresh-btm { margin-right: -5px }

form#search .submit:hover, .product-derivs .vehicle-more:hover { background: #000; text-decoration: none; }

form#search .submit:active { line-height: 42px; }

#sizeSearch { background: #3B3B3B }

.deal-count { color: #DD2833; clear: both; float: right; }


/* Admin */

#b-admin #SearchBar,
#b-admin #header_description,
#b-admin nav,
#b-admin #header_contact,
#b-admin footer { display: none; }

#b-admin header { height: 130px; border-bottom: 40px solid #DD2833; }

#b-admin .excellence { margin-top: 40px; }

.admin-return { float: right; font-weight: bold; padding: 5px 5px 0 0; }



/* Filter Forms */

#pre-search fieldset, #brand-filter fieldset { border: 10px solid #eee; float: left; width: 256px; margin: 0 20px 20px 0; height: 250px; padding: 15px; }
#pre-search label, #brand-filter label { font-size: 15px; font-weight: bold; display: block; margin: 10px 10px 10px 0; clear: both; }
#pre-search legend, #brand-filter legend { padding: 10px 10px 0 10px; margin: 0; }
#pre-search p { margin: 0; }
#pre-search select, #brand-filter select { padding: 7px 5px; width: 250px; font-size: 14px; }


#brand-filter { float: left; width: 705px; }
#brand-filter fieldset { width: auto; height: auto; }
#brand-filter select, #brand-filter label { float: left; clear: none; }
#brand-filter select { margin-right: 20px; width: 192px; margin-bottom: 8px; }
#brand-filter label {  width: 95px; margin-bottom: 0; }

#brand-filter #submit_button { margin: 10px 10px 0 0; }

#brand-filter.special-filter { width: 100%; float: none; }
#brand-filter.special-filter label.label-wide { width: auto; }
#brand-filter.special-filter #ppmf, #brand-filter.special-filter #ppmt { width: 100px; }
#brand-filter.special-filter #brandFilter {width:170px;}
#brand-filter.special-filter #submit_button { margin: 0; }


.last { margin-right: 0!important; }


#popup-pad { padding: 5px; }
#popup-pad #recaptcha_widget_div { margin-left: 130px; }

#popup-pad fieldset {
    margin: 0px;
    padding: 0px;
}



/* Showcase
-------------*/

#showcase { width: 420px!important; height: 220px!important; position: absolute; top: 80px; left: 470px; background: #fff;
	-webkit-border-radius: 3px;	
	-moz-border-radius: 3px;
	border-radius: 3px;

	-moz-box-shadow:    3px 3px 5px 5px #98191E;
	-webkit-box-shadow: 3px 3px 5px 5px #98191E;
	box-shadow:         3px 3px 5px 5px #98191E; 
}

#showcase ul.bjqs { position: relative !important; overflow: visible !important; }
#showcase ul.bjqs li { border: 1px solid #ddd; margin: 10px; padding: 10px; background-color: #fff; overflow: hidden;
	-webkit-border-radius: 3px;	
	-moz-border-radius: 3px;
	border-radius: 3px;
}

#showcase ul.bjqs li h3 { font-size: 20px; margin: 0; font-family: Verdana, Geneva, sans-serif; text-transform: capitalize; position: relative; z-index: 999; }
#showcase ul.bjqs li h4 { font-size: 15px; color: #666; font-family: Verdana, Geneva, sans-serif; font-weight: normal; margin-bottom: 80px; position: relative; z-index: 999; }
#showcase ul.bjqs li .price { font-family: Verdana, Geneva, sans-serif; font-weight: normal; font-size: 18px; position: relative; z-index: 999; line-height:1em;}
#showcase ul.bjqs li .price small { color: #999; font-size: 10px; position: relative; z-index: 999; }
#showcase ul.bjqs li a { text-decoration: none; }
#showcase ul.bjqs li img { position: absolute; z-index: 0; top: 10px; left: 100px; }

.bjqs-prev,
.bjqs-next { overflow: hidden; position: absolute; top: 90px; right: 20px; width: 35px; height: 35px; cursor: pointer; background: url('../images/arrows_slider.png') no-repeat -35px 0; }
.bjqs-prev { left: 20px; background-position: 0 0; }
.bjqs-prev:hover { background-position: 0 -35px; }
.bjqs-next:hover { background-position: -35px -35px; }

.bjqs-prev a,
.bjqs-next a { width: 100%; height: 100%; display: block; text-indent: -9345px; }


.bjqs-prev:active,
.bjqs-next:active { top: 92px; }

.deal { position: absolute; right: -10px; top: 100px; z-index: 999; }

#awOnePageButton .view-slide {
	display: none;
}

/* This class is removed after the showcase is loaded */
/* Assign the correct showcase height to prevent loading jumps in IE */
.showcase-load {
	height: 470px; /* Same as showcase javascript option */
	overflow: hidden;
}

/* Container when content is shown as one page */
.showcase-onepage {
/**/
}

/* Container when content is shown in slider */
.showcase {
	position: relative;
	margin: auto;
}

.showcase-content-container {
	background-color: #000;
}

/* Navigation arrows */
.showcase-arrow-previous, .showcase-arrow-next {
	position: absolute;
	background: url('../images/arrows.png');
	width: 33px;
	height: 33px;
	top: 150px;
	cursor: pointer;
}

.showcase-arrow-previous {
	left: -60px;
}

.showcase-arrow-previous:hover {
	background-position: 0px -34px;
}

.showcase-arrow-next {
	right: -56px;
	background-position: -34px 0;
}

.showcase-arrow-next:hover {
	background-position: -34px -34px;
}

/* Content */
.showcase-content {
	background-color: #000;
	text-align: center;
}

.showcase-content-wrapper {
	text-align: center;
	height: 470px;
	width: 810px;
	display: table-cell;
	vertical-align: middle;
}

/* Styling the tooltips */
.showcase-plus-anchor {
	background: url('../images/plus.png');
	background-repeat: no-repeat;
}

.showcase-plus-anchor:hover {
	background-position: 0 -42px;
}

div.showcase-tooltip {
	background-color: #fff;
	color: #000;
	text-align: left;
	padding: 5px 8px;
	background-image: url(../images/white-opacity-80.png);
}

/* Styling the caption */
.showcase-caption {
	color: #000;
	padding: 5px 10px;
	text-align: left;
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	display: none;
	background-image: url(../images/white-opacity-80.png);
}

.showcase-onepage .showcase-content {
	margin-bottom: 10px;
}

/* Button Wrapper */
.showcase-button-wrapper {
	clear: both;
	margin-top: 10px;
	text-align: center;
}

.showcase-button-wrapper span {
	margin-right: 3px;
	padding: 2px 5px 0px 5px;
	cursor: pointer;
	font-size: 12px;
	color: #444444;
}

.showcase-button-wrapper span.active {
	color: #fff;
}

/* Thumbnails */
.showcase-thumbnail-container /* Used for backgrounds, no other styling!!! */ {
	background-color: #000;
}

.showcase-thumbnail-wrapper {
	overflow: hidden;
}

.showcase-thumbnail {
	width: 120px;
	height: 42px;
	cursor: pointer;
	border: solid 1px #333;
	position: relative;
}

.showcase-thumbnail-caption {
	position: absolute;
	bottom: 2px;
	padding-left: 10px;
	padding-bottom: 5px;
}

.showcase-thumbnail-content {
	padding: 10px;
	text-align: center;
	padding-top: 15px;
}

.showcase-thumbnail-cover {
	background-image: url(../images/black-opacity-40.png);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.showcase-thumbnail:hover {
	border: solid 1px #999;
}

.showcase-thumbnail:hover .showcase-thumbnail-cover {
	display: none;
}

.showcase-thumbnail.active {
	border: solid 1px #999;
}

.showcase-thumbnail.active .showcase-thumbnail-cover {
	display: none;
}

.showcase-thumbnail-wrapper-horizontal {
	padding: 10px;
}

.showcase-thumbnail-wrapper-horizontal .showcase-thumbnail {
	margin-right: 10px;
	width: 116px;
}

.showcase-thumbnail-wrapper-vertical {
	padding: 10px;
}

.showcase-thumbnail-wrapper-vertical .showcase-thumbnail {
	margin-bottom: 10px;
}

.showcase-thumbnail-button-backward,
.showcase-thumbnail-button-forward {
	padding: 7px;
	cursor: pointer;
}

.showcase-thumbnail-button-backward {
	padding-bottom: 0px;
	padding-right: 0px;
}

.showcase-thumbnail-button-backward .showcase-thumbnail-vertical,
.showcase-thumbnail-button-forward .showcase-thumbnail-vertical,
.showcase-thumbnail-button-forward .showcase-thumbnail-horizontal,
.showcase-thumbnail-button-backward .showcase-thumbnail-horizontal {
	background-image: url('../images/arrows-small.png');
	background-repeat: no-repeat;
	display: block;
	width: 17px;
	height: 17px;
}

.showcase-thumbnail-button-backward .showcase-thumbnail-vertical {
	background-position: 0 -51px;
	margin-left: 55px;
}
.showcase-thumbnail-button-backward:hover .showcase-thumbnail-vertical {
	background-position: -17px -51px;
}

.showcase-thumbnail-button-forward .showcase-thumbnail-vertical {
	background-position: 0 -34px;
	margin-left: 55px;
}
.showcase-thumbnail-button-forward:hover .showcase-thumbnail-vertical {
	background-position: -17px -34px;
}

.showcase-thumbnail-button-backward .showcase-thumbnail-horizontal {
	background-position: 0 -17px;
	margin-top: 40px;
	margin-bottom: 40px;
}
.showcase-thumbnail-button-backward:hover .showcase-thumbnail-horizontal {
	background-position: -17px -17px;
}

.showcase-thumbnail-button-forward .showcase-thumbnail-horizontal {
	background-position: 0 0;
	margin-top: 40px;
	margin-bottom: 40px;
}
.showcase-thumbnail-button-forward:hover .showcase-thumbnail-horizontal {
	background-position: -17px 0;
}

/* Hide button text */
.showcase-thumbnail-button-forward span span,
.showcase-thumbnail-button-backward span span {
	display: none;
}

a.order_btn {
	width: 125px;
	height: 42px;
	display: block;
	background: #db2a34 url('../images/plus.png') top left no-repeat;
	position: absolute;
	top: 200px;
	left: 677px;
}

a.order_btn:hover {
	background-position: 0 -42px;
}



/* Clear (used for horizontal thumbnails)
-------------------------------------------*/

.clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
	float: none;
}

/* Special Offers
-------------*/

.description {
	font-weight: bold;
	display: block;
}

#b-index .details { width: 180px; margin-left: 50px; text-align: center; }
#b-index .details h4 { text-transform: capitalize; }
#b-index .details p { margin: 0; }

#whyDSG {
	float: right;
	width: 290px;
	height: 230px;
	padding: 0px 10px;
	margin: 0 0 10px 0;
}

#whyDSG h2 {
	margin: 0 0 10px 0;
}

#specialOffer {
	width: 630px;
	height: 250px;
	border: 1px solid #cdcdcd;
	float: left;
	margin: 0 0 20px 0;
	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.deal-week-special {
	margin: 10px;
	border: 1px solid #cdcdcd;
	padding: 10px;
	height: 208px;
	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}


#deals { clear: both; }

.dealContainer h2 {
	font-size: 18px;
	margin: 10px;
}

.vehicle-circle {
	background: #fff;
	width: 220px;
	height: 110px;
	overflow: hidden;
	margin: 0 0 5px 20px;
	
	-webkit-border-radius: 90px;
	-moz-border-radius: 90px;
	border-radius: 90px;
}

.vehicle-circle img.carImage { margin-left: 0; margin-top: -30px; }
.vehicle-circle img.logoImage { margin-left: 75px; margin-top: 30px; }


.deal-week-special h2 {
	margin: 0;
}

#specialOffer .dealContainer .carImage,
.deal-week-special .carImage {
	float: left;
}

.deal-week-special .carImage {
	margin-right: 15px;
}

.carDealBox, .vanDealBox {
	width: 282px;
	height: 195px;
	float: left;
	margin: 0px 20px 20px 0;
	padding: 11px;
	border: 1px solid #cdcdcd;
	overflow: hidden;
	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.carDealBox.rowLast, .vanDealBox.rowLast {
	margin: 0px 0px 15px 0;
}

.carDealBox .dealContainer span, .vanDealBox .dealContainer span {
	float: none;
}

.carDealBox .carImage, .vanDealBox .carImage {
	margin: 0 5px 5px 40px;
}



.price {
	font-weight: bold;
	font-size: 15px;
	color: #DD2633;
}

.price small, .special-deal small, .dealContainer .profile {
	font-weight: normal;
	font-size: 12px;
	color: #333;
}

.dealContainer .profile { line-height: 1.1; color: #555; }
.special-deal h3 { margin-bottom: 0; }

/*
a.applyNow, a.getQuote, a.callNow {
	background: #DA2A34;
	color: #fff;
	display: block;
	padding: 3px;
	margin: 5px 4px 2px 0;
	width: auto;
	height: 15px;
	float: left;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}
*/

a.applyNow, 
a.getQuote, 
a.callNow, 
a.info, 
a.quote { font-family: 'Questrial', sans-serif; display: block; width: 80px; margin-top: 5px; float: left; margin-right: 10px; text-align: center; background: #000; border: none; color: #fff; font-size: 15px; text-transform: none; text-decoration: none; font-weight: bold; height: 30px; line-height: 30px; padding: 0 15px; cursor: pointer;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;

	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#333), to(#1a00082f7));
	background-image: -webkit-linear-gradient(top, #333, #000); 
	background-image:    -moz-linear-gradient(top, #333, #000);
	background-image:     -ms-linear-gradient(top, #333, #000);
	background-image:      -o-linear-gradient(top, #333, #000);
	background-image:               linear-gradient(#333,#000);
}

a.quote { background: url("../images/button_red.png") repeat-x scroll left top #B91E25; }
a.getQuote { background: url("../images/button_red.png") repeat-x scroll left top #B91E25; width: 100px; }

a:hover.info, a:hover.applyNow, a:hover.callNow {
	background: #000;
}

a:hover.quote, a:hover.getQuote {
	background: #8F2720;
}

p.dealsText {
	float: left;
	font-style: italic;
}

#details {
	width: 100%;
}

.col4 { margin-bottom: 10px; }

#details, #details .carImage {
	float: left;
}

.carImage {
	margin: 5px;
}

#details .carImage {
	border: 1px solid #cdcdcd;
	margin: 0px 20px 10px 0;
	padding: 10px;
}

#details span {
	font-weight: bold;
	display: block;
	margin-bottom: 5px;
}

.notes { padding: 12px 0 0 0; }

#details .price, #details .vat, #details .term { display: inline; }

.businessPrice, .personalPrice {
	margin: 10px 0 10px 0;
	float: left;
	width: 400px;
}

/* Testimonials
-------------*/

#article b {
	font-weight: bold;
	border-bottom: 1px solid #cdcdcd;
}

/* Forms
-------------*/

#contactUs form {
	margin: 10px 0;
}

#contactUs .column-1,
#contactUs .column-2 {
	width: 459px;
	float: left;
	margin-top: 10px;
}

#contactUs .column-1 {
	border-right: 1px dashed #CDCDCD;
}

#contactUs form fieldset {
	border: none;
}

#contactUs form .column-1 fieldset {
	margin: 0 20px 15px 0;
}

#contactUs form .column-2 fieldset {
	margin: 0 0 15px 20px;
}

#contactUs .form-item {
	clear: both;
}

form p {
	/* margin: 10px; */
}

fieldset {
	margin: 10px;
	padding: 10px;
}

legend {
	font-weight: bold;
	font-size: 18px;
	color: #DB2A34;
	margin: 10px 0;
}

#contactUs input, textarea {
	width: 200px;
	background: url("bg_label.jpg") no-repeat scroll left bottom #FFFFFF;
	border: 1px solid #BBBBBB;
	color: #3B3B3B;
	/*height: 15px;*/
	margin: 5px;
	padding: 2px 4px;
}

#contactUs select {
	width: 210px;
	margin: 5px;
	padding: 2px 4px;
}

#callbackForm label { display: block; float: left; width: 130px; clear: left; font-size: 14px; margin-top: 5px; }
#callbackForm input, #callbackForm textarea { padding: 8px; margin: 0 0 10px 0; float: left; font-size: 14px; width: 300px; }

form a.submitButton { font-family: 'Questrial', sans-serif; display: block; width: 150px; margin-left: 150px; text-align: center; background: #000; border: none; color: #fff; font-size: 15px; text-transform: none; text-decoration: none; font-weight: bold; height: 30px; line-height: 30px; padding: 0 15px; cursor: pointer;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;

	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#333), to(#1a00082f7));
	background-image: -webkit-linear-gradient(top, #333, #000); 
	background-image:    -moz-linear-gradient(top, #333, #000);
	background-image:     -ms-linear-gradient(top, #333, #000);
	background-image:      -o-linear-gradient(top, #333, #000);
	background-image:               linear-gradient(#333,#000);
}

textarea, select {
	height: auto;
}

input.financeCheck, input.infocheck {
	width: 12px;
	margin-top: 9px;
}

#contactUs label {
	display: block;
	float: left;
	margin: 7px 10px 7px 0;
	width: 130px;
	clear: both;
	text-align: right;
}

#contactUs form {
	float: left;
	margin: 0 20px 0 0;
}

span.required {
	color: #ff0000;
}

p span.required {
}

.contact_address {
	margin: 0px 0 0 50px;
	width: 340px;
}

#quoteSubmit {
	text-align: center;
	padding-top: 15px;
	clear: both;
}

#quoteSubmit .submitButton,
#contactSubmit .submitButton {
	background: #DB2A34;
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	border: none;
	text-align: center;
	background: #DA2A34;
	color: #fff;
	padding: 5px;
	font-size: 1.2em;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	width: 160px;
	
	box-shadow: #999 1px 1px 4px;
	-webkit-box-shadow: #999 1px 1px 4px;
	-moz-box-shadow: #999 1px 1px 4px;
	-ms-box-shadow: #999 1px 1px 4px;
}

#administration .form-item {
	margin: 1em 0;
}

#administration .form-item label {
	display: block;
	font-weight: bold;
        padding-left:5px;
        padding-right:5px;
}


#DealForm .ui-tabs-nav li a {
    font-size: 1.2em;
    padding: 10px 10px;
}

#DealForm .form-item {
	margin: 0 0 12px 0;
	padding: 0 0 12px 0;
	border-bottom: 1px solid #ddd;
}

#DealForm fieldset .form-item:last-of-type {
	border-bottom: none;
}


#DealForm .form-item label {
	float: left;
	width: 200px;
}

#DealForm .form-item select,
#DealForm .form-item input {
	width: 200px;
	padding: 3px;
}

#DealForm .form-item input[type='radio'],
#DealForm .form-item input[type='checkbox'] {
	width: 15px;
	padding: 3px;
}

#DealForm .form-item select {
	width: 208px;
}

#administration .form-item textarea {
	width: 100%;
	margin: 0;
}

#DealForm fieldset { border: none; margin: 0; padding: 20px 0 0 0; }

#DealForm #pricing p { width: 250px; float: right; padding: 10px 0; text-align: right; }



/* Footer
-------------*/

footer {
	background: #3B3B3B;
	margin: 20px 0 0 0;
	padding: 15px 0 0 0;
	clear: both;
	position: relative;
	overflow: hidden;
}

footer h3 { margin: 0 0 10px 0; }

footer a:link, footer a:visited { color: #cbcbcb; text-decoration: none; }
footer a:hover, footer a:active { color: #fff; }

#address {
	width: 295px;
	margin: 0;
	padding: 0;
	float: left;
	color: #fff;
	text-align: right;
}

#address img {
	float: right;
	margin: 0 0 0 15px;
}

#address h3 {
	text-align: left;
}

h1 span.subtitle {
	font-weight: normal;
	color: #3A3A3A;
}

#like, #follow {
	float: right;
	height: 25px;
	margin: 5px 5px; 0 0;
}

#follow {
	width: 150px;
}

#like {
	width: 90px;
}

#sitemap {
	float: left;
	width: 180px;
	border-right: 1px solid #4F4F4F;
	margin-right: 30px;
}

.footerbrand {
	width: 420px;
	float: left;
	list-style: none;
	display: block;
	position: relative;
	margin-right: 30px;
	border-right: 1px solid #4F4F4F;
}


footer ul { width: auto; margin: 0; list-style: none; color: #ccc; }
footer ul li { float: left; width: 105px; margin: 0 0 1px 0; }
footer ul li:before { content: "\00BB \0020"; }

footer #sitemap ul li { width: 180px; margin: 0 0 1px 0; }

footer p.copy {
	font-size: 10px;
	padding: 8px 0 0 0;
	clear: both;
	color: #aaa;
}

#footer-phone { height: 37px; background: #DD2833; padding: 5px 20px; width: 260px; position: absolute; bottom: 0; right: 0; font-size: 27px; color: #fff; }
#footer-phone p { float: left; margin: 0; padding: 0; }
#footer-phone small { float: left; font-size: 12px; padding: 2px 0 0 15px; }



/**
* Non-semantic helper classes: please define your styles before this section.
*/

/* For image replacement */
.ir {
	display: block;
	text-indent: -999em;
	overflow: hidden;
	background-repeat: no-repeat;
	text-align: left;
	direction: ltr;
}

/* Hide for both screenreaders and browsers:
css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden {
	display: none;
	visibility: hidden;
}

/* Hide only visually, but have it available for screenreaders: by Jon Neal.
www.webaim.org/techniques/css/invisiblecontent/ & j.mp/visuallyhidden */
.visuallyhidden {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: drupal.org/node/897638 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
	clip: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	position: static;
	width: auto;
}

/* Hide visually and from screenreaders, but maintain layout */
.invisible {
	visibility: hidden;
}

/* The Magnificent Clearfix: Updated to prevent margin-collapsing on child elements.
j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
	content: "\0020";
	display: block;
	height: 0;
	overflow: hidden;
}
.clearfix:after {
	clear: both;
}
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix {
	zoom: 1;
}



/**
* Media queries for responsive design.
*
* These follow after primary styles so they will successfully override.
*/

@media all and (orientation:portrait) {
/* Style adjustments for portrait mode goes here */
}

@media all and (orientation:landscape) {
/* Style adjustments for landscape mode goes here */
}

/* Grade-A Mobile Browsers (Opera Mobile, Mobile Safari, Android Chrome)
consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {


/* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you: j.mp/textsizeadjust */
/* html {
-webkit-text-size-adjust: none;
-ms-text-size-adjust: none;
}
*/
}


/**
* Print styles.
*
* Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
*/
@media print {
	* {
		background: transparent !important;
		color: black !important;
		text-shadow: none !important;
		filter: none !important;
		-ms-filter: none !important;
	}
	/* Black prints faster: sanbeiji.com/archives/953 */
	a, a:visited {
		color: #444 !important;
		text-decoration: underline;
	}
	a[href]:after {
		content: " (" attr(href) ")";
	}
	abbr[title]:after {
		content: " (" attr(title) ")";
	}
	.ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
		content: "";
	}
	/* Don't show links for images, or javascript/internal links */
	pre, blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}
	thead {
		display: table-header-group;
	}
	/* css-discuss.incutio.com/wiki/Printing_Tables */
	tr, img {
		page-break-inside: avoid;
	}
	@page {
		margin: 0.5cm;
	}
	p, h2, h3 {
		orphans: 3;
		widows: 3;
	}
	h2, h3 {
		page-break-after: avoid;
	}

}

/* Twitter feed over-ride styling
*/

#tweets {
	width: 300px;
	margin: 0 auto;
}

#tweets .twtr-widget,
#tweets .twtr-doc {
	width: 100%;
	height: auto;
}

#tweets .twtr-hd {
	background: #d40;
	color: #fff;
	-moz-border-radius: 6px 6px 0 0;
	border-radius: 6px 6px 0 0;
	font-family: Georgia, serif;
}

#tweets .twtr-hd *,
#tweets .twtr-hd h4 a {
	background: #d40 !important;
}

#tweets .twtr-hd h3,
#tweets .twtr-hd h4 {
	font-weight: normal;
	text-align: center;
}

#tweets .twtr-hd h3 {
	display: none !important;
}

#tweets .twtr-tweet {
	background: #fff;
}

#tweets .twtr-tweet a:link,
#tweets .twtr-tweet a:visited,
#tweets .twtr-tweet a:hover {
	color: #c40 !important;
}

#tweets .twtr-tweet .twtr-tweet-text {
	border-bottom: 2px dashed #666 !important;
	padding-bottom: 4px !important;
}


#tweets .twtr-tweet .twtr-tweet-text p {
	color: #333 !important;
}

#tweets .twtr-ft {
	display: none !important;
}

/****** Meet the Team ******/
#meet-the-team-wrapper .team-member {
	width: 220px;
	height: 260px;
	position: relative;
	overflow: hidden;
	float: left;
	margin-right: 17px;
	border: 1px solid #cdcdcd;
}

#meet-the-team-wrapper .row-last {
	margin-right: 0px;
}

#meet-the-team-wrapper .team-member-bio {
	width: 202px;
	height: 244px;
	position: absolute;
	top: 210px;
	background: transparent url('../images/red-90.png') repeat top left;
	color: #fff;
	padding: 8px 9px;
	box-shadow: 0 0 10px #000;
	-moz-box-shadow: 0 0 10px #000;
	-webkit-box-shadow: 0 0 10px #000;
	-ms-box-shadow: 0 0 10px #000;
}

#meet-the-team-wrapper .team-member-bio h4 {
	color: #fff;
	font-size: 1.1em;
	margin: 0 0 2px 0;
}

#meet-the-team-wrapper .team-member-bio h5 {
	color: #cdcdcd;
	font-size: 1em;
	margin: 0 0 12px 0;
}

#meet-the-team-wrapper .team-member-bio p {
	font-style: normal;
	text-align: left;
	font-size: 0.9em;
	padding: 0;
	margin: 8px 0;
}

#meet-the-team-wrapper .team-member-bio p b {
	border: none;
	color: #cdcdcd;
}

a#about-the-business {
	background: url("../images/bg_nav_blog.png") repeat-x scroll left top #565656;
	color: #FFFFFF;
	display: block;
	font-size: 1.2em;
	font-style: normal;
	padding: 7px 12px 7px 10px;
	text-decoration: none;
	width: 200px;
}

a#about-the-business:hover {
	background: #7f1e1c url('../images/bg_nav_over.png') top left repeat-x !important;
}

.ui-accordion {
  margin: 0 0 15px 0;	
}

.ui-accordion-header {
	margin: 5px 0 0 0;
	border: 1px solid #ccc;
	outline: none;
}

.ui-accordion-header a {
	text-decoration: none;
	outline: none;
	display: block;
  padding: 5px 15px;
	background: #e9e9e9;
}

.ui-accordion-header a:hover {
	color: #000;
}

.ui-accordion-content {
	padding: 15px 15px 10px 15px;
	border: 1px solid #ccc;
	border-top: none;
}

.pdf-download {
	padding-left: 45px;
	background: transparent url('../images/pdf-icon.png') no-repeat top left;
	min-height: 32px;
}

.pdf-icon {
	float: left;
	margin: 0 1em 1em 0;
}

.two-columns .column-one,
.two-columns .column-two {
	width: 48%;
	float: left;
}

.two-columns .column-one {
	margin-right: 4%;
}

.testimonial {
	background: #e9e9e9;
	padding: 10px 16px;
	margin: 0 325px 15px 0;
}

.testimonial .name {
	font-weight: bold;
	margin-bottom: 0.5em !important;
	color: #000;
}

.testimonial .quote {
	margin-top: 0 !important;
	font-style: italic;
}

/* Derivatives Table */
.product-derivs {
	width: 100%;
	clear: both;
}

.product-derivs td {
	border-bottom: 1px solid #ddd;
	padding: 4px;
	vertical-align: middle;
}

.product-derivs thead {
	border-bottom: 5px solid #f3f3f3;
}

.product-derivs thead th {
	border-right: 1px solid #f3f3f3;
}

.product-derivs tr:hover td {
	background: #f0f0f0;
}

.product-derivs tr.special td {
	background: #f0f0f0;
	border-bottom: 1px solid #DD2833;
}

.product-derivs a {
	text-decoration: none;
}

.product-derivs a:hover {
	text-decoration: underline;
}

.product-derivs .subtle {
	color: #999;
}

.deriv-finance .vat {
	font-size: 0.8em;
	color: #999;
	font-weight: normal;
}

.product-derivs th {
	text-align: left;
	padding: 7px 5px;
	background-color: #999;
	color: #fff;
}

.product-derivs .deriv-mpg,
.product-derivs .deriv-co2,
.product-derivs .deriv-p11d,
.product-derivs .deriv-finance,
.product-derivs .deriv-special {
	text-align: center;
}

.product-derivs .deriv-name {padding-left:10px;}

.product-derivs .deriv-mpg, .product-derivs .deriv-co2, .product-derivs .deriv-p11d {width: 45px;}

.product-derivs .deriv-finance {width: 155px;}

.product-derivs .deriv-special {width: 100px; color: #3B3B3B; font-size: 14px; }

.product-derivs .deriv-more {
	text-align: right;
        width: 100px;
}

.grey {
	color: #999;
}

.sorttable_header {
	text-decoration: underline;
	cursor: pointer;
}

.sorttable_header:hover {
	color: #DDD;
}

/* Vehicle Detail Page */
h1 .deriv-name {
  font-weight: normal;	
}

.share-deal { float: left; width: 180px; text-align: left; padding: 5px 0; }
#b-vehicledetails #twitter-widget-0 {  width: 85px!important; }


table.finance-details {
	margin: 0 0 3em 0;
	width: 220px;
	clear: left;
        float:left;
}

table.finance-details td.label {
	padding-right: 15px;
	font-weight: bold;
}

table.finance-details tr {
	border-bottom: 1px dotted #ccc;
}

table.finance-details td {
	padding-top: 10px;
	padding-bottom: 10px;
}

table.finance-details .finance-rental {
	font-weight: bold;
	font-size: 1.15em;
}

table.finance-details .finance-notice {
	color: #999;
}

table.finance-details .finance-notice {
	font-size: 0.8em;
}

#vehicle-image {
	float: right;
}

#vehicle-title {
	text-transform: capitalize;
}

#vehicle-title.with-image {
	margin-right: 370px;
}

#brand-image {
  float: right;
  border: 1px solid #ddd;
 }

#b-vehicledetails #brand-image {
  border: none;
  margin: 5px 10px 0 0;
}

#deriv-list-title.with-image {
	margin-right: 270px;
}

#quote-buttons { background: #ddd; margin-bottom: 12px; }

#term36, #term48 { display: none; }

ol#tailor { list-style: none; margin: 15px; }
ol#tailor > li { height: 44px; line-height: 22px; padding-left: 35px; background: url('../images/bullet_number1.png') 0 9px no-repeat; }
ol#tailor > li:nth-of-type(2n) { background-image: url('../images/bullet_number2.png'); }
ol#tailor > li:nth-of-type(3n) { background-image: url('../images/bullet_number3.png'); }
ol#tailor > li:nth-of-type(4n) { background-image: url('../images/bullet_number4.png'); }
ol#tailor > li:nth-of-type(5n) { background-image: url('../images/bullet_number5.png'); }
ol#tailor > li:nth-of-type(6n) { background-image: url('../images/bullet_number6.png'); }
ol#tailor > li a.selected { background: url('../images/bullet_tick.png') -4px -4px no-repeat; color: #000; padding-left: 20px; }
#quote-buttons input { }

#tailor-info ol#tailor { margin: 0; }
#tailor-info ol#tailor li { float: left; height: auto; width: 145px; line-height: 18px; padding: 0 10px 0 35px; }
#tailor-info { margin-bottom: 20px; }

.slider-display { }
.ui-slider { margin-left: 10px; }

.yesno { list-style: none; margin: 0; }
.yesno li { float: left; }
.yesno li.no { padding-right: 197px; }

#calculation-holder { display: none; }

#running-total { padding: 10px 10px 10px 50px; background: #E6E6E6 url('../images/bullet_circle_red.png') 15px 10px no-repeat; }
#running-total p { font-size: 11px; margin-bottom: 0; }
#running-total h3 { margin: 0; }
#running-total p.finance-details { margin-bottom: 1em; }

.rt-specials #special-total-initial { border-bottom: 1px solid #ccc; padding-bottom: 10px }

#running-total-value, #special-total-value { font-size: 21px; color: #DB2A34; margin: 0 0 10px 0; }
#running-total-initial, #special-total-initial { font-size: 15px;  margin: 0 0 10px 0; }

#running-total-value .vat, 
#running-total-initial .vat {
	font-weight: normal;
	color: #888;
	font-size: 12px;
}


/* Gallery */

#gallery { /*width: 410px; float: right;*/ }

.vehicle-photo { float: right; margin-top: -10px; }

ul.thumbnails { list-style: none; margin: 0; clear: right; }
ul.thumbnails li { float: right; margin: 0 0 10px 0; }




#vehicle-tabs { width: 640px; clear: both; }

.phone { font-size: 21px; color: #DD2733; text-align: right; clear: both; padding: 15px 20px; }
.phone span { color: #333; font-size: 27px; }
.phone small { color: #333; font-size: 12px; }

.css-columns {
	width: 600px;
	column-count: 2;
	-webkit-column-count: 2;
	-moz-column-count: 2;
	-ms-column-count: 2;
	column-gap: 40px;
	-webkit-column-gap: 40px;
	-moz-column-gap: 40px;
	-ms-column-gap: 40px;
}

.css-columns .group {
  display: inline-block;
  width: 100%;
}

.css-columns .group h3 {
  margin: 0.7em 0;
}

#vehicle-options .group ul {
	padding: 0;
	margin: 0;
}

#vehicle-options .group li {
	display: block;
	list-style-type: none;
	padding: 2px 0;
}

#vehicle-options .group li input {
	float: left;
	margin-top: 1px;
}

#vehicle-options .group li label {
	margin-left: 20px;
	display: block;
	line-height: 1.2;
}

#vehicle-options .option-label {
}

#vehicle-options .option-price {
	font-size: 0.8em;
	color: #999;
}

/* Jquery UI Tabs 
.ui-tabs-hide {
	display: none;
}

ul.ui-tabs-nav {
	margin: 0;
	padding: 0;
}

.ui-tabs-nav li {
	display: block;
	float: left;
	list-style-type: none;
	margin: 0 3px 0 0;
	padding: 0;
}

.ui-tabs-nav li a {
	display: block;
	padding: 5px 10px;
	text-decoration: none;
	font-size: 1.1em;
}

.ui-tabs-nav li.ui-state-active a {
	border: 1px solid #ccc;
	border-bottom: 1px solid #fff;
}

.ui-tabs-panel {
	border: 1px solid #ccc;
	padding: 5px 15px;
	margin-top: -1px;
}

*/

.ui-state-default a, 
.ui-state-default a:link, 
.ui-state-default a:visited {
    color: #222 !important;
}

.ui-state-active a, 
.ui-state-active a:link, 
.ui-state-active a:visited {
    color: #C00 !important;
}

/* Admin */
.admin-options {
	list-style-type: none;
	padding: 0;
	margin: 1em 0;
	width: 250px;
}

.admin-options li {
	margin: 0 0 5px 0;
	padding: 0;
}

.admin-options li a {
	display: block;
	padding: 5px 10px;
	border: 1px solid #CDCDCD;
	text-decoration: none;
	background: #e0e0e0;
	font-weight: bold;
}

.admin-list {
	margin-top: 1em;
	margin-bottom: 1em;
}


table.admin-list td  {
	padding: 5px;
}

table.admin-list tr:nth-child(odd) { background: #eee; }
table.admin-list tr:hover { background: #ddd; }

#adminEdit, #addArticle, .dacbutton {
	border: 1px solid #CDCDCD;
	text-decoration: none;
	background: #e0e0e0;
	padding: 5px 10px;
	font-weight: bold;
	display: block;
	width: 90px;
	text-align: center;
	clear: both;
}


/* Quote: go-back facility */
#go-back #go-back-submit {
	width: auto;
	border: none;
	display: block;
	text-align: center;
	background: #DA2A34;
	color: #fff;
	padding: 4px 15px;
	font-size: 1.2em;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	
	box-shadow: #999 1px 1px 4px;
	-webkit-box-shadow: #999 1px 1px 4px;
	-moz-box-shadow: #999 1px 1px 4px;
	-ms-box-shadow: #999 1px 1px 4px;
}

.go-back-link {
	margin: 5px 0 0 0 !important;
	padding: 0 0 0 165px;
}

.jcarousel-skin-tango .jcarousel-direction-rtl {
	direction: rtl;
}

.jcarousel-skin-tango .jcarousel-container-horizontal {
    width: 960px;
}

.jcarousel-skin-tango .jcarousel-clip {
    overflow: hidden;
}

.jcarousel-skin-tango .jcarousel-clip-horizontal {
    width:  960px;
    height: 340px;
}

.jcarousel-skin-tango .jcarousel-item {
    width: 230px;
    height: 215px;
	background: url('../images/bg_vehicle.png') right bottom no-repeat;
	margin-right: 10px;
}

.jcarousel-skin-tango .jcarousel-item:hover {
	background: url('../images/bg_vehicle_hover.png') right bottom no-repeat;
}

.jcarousel-skin-tango .jcarousel-item-horizontal {
	margin-left: 0;
    margin-right: 10px;
}

.jcarousel-skin-tango .jcarousel-direction-rtl .jcarousel-item-horizontal {
	margin-left: 10px;
    margin-right: 0;
}

.jcarousel-skin-tango .jcarousel-item-placeholder {
    background: #fff;
    color: #000;
}

/**
 *  Horizontal Buttons
 */



.jcarousel-skin-tango .jcarousel-next-horizontal,
.jcarousel-skin-tango .jcarousel-prev-horizontal {
    position: absolute;
    top: 90px;
    right: -60px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background: url('../images/arrows_specials.png') no-repeat -50px 0;
}

.jcarousel-skin-tango .jcarousel-prev-horizontal {
	left: -60px;
    background: url('../images/arrows_specials.png') no-repeat 0 0;
}

.jcarousel-skin-tango .jcarousel-next-horizontal:hover,
.jcarousel-skin-tango .jcarousel-next-horizontal:focus {
    background: url('../images/arrows_specials.png') no-repeat -50px -50px;
}

.jcarousel-skin-tango .jcarousel-prev-horizontal:hover, 
.jcarousel-skin-tango .jcarousel-prev-horizontal:focus {
    background: url('../images/arrows_specials.png') no-repeat 0 -50px;
}

.jcarousel-skin-tango .jcarousel-next-horizontal:active {
    background-position: -50px 0;
}

.jcarousel-skin-tango .jcarousel-prev-horizontal:active {
    background-position: 0 0;
}

.jcarousel-skin-tango .jcarousel-prev-disabled-horizontal,
.jcarousel-skin-tango .jcarousel-prev-disabled-horizontal:hover,
.jcarousel-skin-tango .jcarousel-prev-disabled-horizontal:focus,
.jcarousel-skin-tango .jcarousel-prev-disabled-horizontal:active,
.jcarousel-skin-tango .jcarousel-next-disabled-horizontal,
.jcarousel-skin-tango .jcarousel-next-disabled-horizontal:hover,
.jcarousel-skin-tango .jcarousel-next-disabled-horizontal:focus,
.jcarousel-skin-tango .jcarousel-next-disabled-horizontal:active {
    cursor: not-allowed;
}

.jcarousel-item-undefined, .jcarousel-item-NaN, .jcarousel-item-placeholder { display: none; }


/* @misc
   ========================================================================== */

.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { *zoom: 1; }


.imageFooter {
    float:right;
    clear:right;
    color: #bd0015;
    margin-top: -40px;
    font-weight:bold;
}


table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting {
  cursor: pointer;
  *cursor: hand;
}
table.dataTable thead .sorting {
  background: #999 url("../images/sort_both.png") no-repeat center right;
}
table.dataTable thead .sorting_asc {
  background: #999 url("../images/sort_asc.png") no-repeat center right;
}
table.dataTable thead .sorting_desc {
  background: #999 url("../images/sort_desc.png") no-repeat center right;
}
table.dataTable thead .sorting_asc_disabled {
  background: #999 url("../images/sort_asc_disabled.png") no-repeat center right;
}
table.dataTable thead .sorting_desc_disabled {
  background: #999 url("../images/sort_desc_disabled.png") no-repeat center right;
}

.tableRowGroupHeader
{
    font-size:1.3em;
    font-weight:bold;
    color: #999; 
}

.searchResultsLoader
{
    width:200px;
    text-align:center;
    margin-left:auto;
    margin-right:auto;
}

.searchResults
{
    display:none;
}

.wideSelect
{
    width:220px !important;
}

.inlineLabel
{
    display:inline !important;
    float:none !important;
    font-weight:normal !important;
    margin-right:10px;
}

.adminTextArea
{
    width:400px;
    height:200px;
    max-width:400px;
    max-height:200px;
    overflow: scroll;
}

.adminToolbar
{
    float:left;
}

.adminStatusBar
{
    width:50vw;
    height:30px;
    position:fixed;
    top:0px;
    margin-top:5px;
    left:50%;
    margin-left:-25vw;
    line-height:30px;
    vertical-align:center;
    border:1px solid black;
    background-color:white;
    color:black;
    font-weight:bold;
    text-align:center;  
}

.floatLeft{
    float:left;
}

.brandFilter
{
    display: inline-block;
    width:120px;
    height:100px;
    padding:20px;
}

.brandFilterCost
{
    text-align:center;
    width:120px;
    line-height:20px;
    height:20px;
    vertical-align:middle;
    overflow:hidden;
    color:black;
    font-weight:bold;
}

.brandFilterText
{
    text-align:center;
    width:120px;
    line-height:20px;
    height:20px;
    vertical-align:middle;
    overflow:hidden;
    color:white;
    font-weight:bold;
    background-color:#bd0015;
}

.brandFilterImage
{
    text-align:center;
    width:120px;
    height:50px;
}

.marginAuto{
    text-align:center;
    margin-left:auto;
    margin-right:auto;
}

.brandList
{
   margin-left:auto; 
   margin-right:auto; 
}

.OffersByBrandHeader
{
    height:40px;
    line-height:40px;
    vertical-align: middle;
}

.marginRight10
{
    margin-right:10px;
}

ul.NoListStyle
{
    list-style-type:none;
    
}

.validation
{
    color:red;
    font-weight:bold;    
}

.clearBoth
{
    clear:both;
}

.ui-slider-handle {
    background-image: none !important;
    background-color: #bd0015 !important;
    border:1px solid #444444 !important;
}