﻿/*===================== 
	Color information
	
	-
	-
	-
	-
		 
=======================*/
/*===================== 
	CSS reset/normalize 
=======================*/

/**Correct `block` display not defined in IE 8/9.**/
article,aside,details,figcaption,figure,footer,header,hgroup,
main,nav,section,summary {display: block;}
pre {white-space: pre-wrap;}
small { font-size: 80%;}


/*===================== 
	@Font-Face 
=======================*/


/*===================== 
	base styles 
=======================*/

html {
    font-family: Bahnschrift, sans-serif; /* 1 */
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 2 */
	}

body {
    margin: 0;
    font-family:  Bahnschrift, sans-serif;
    font-size: 14px;
	}

svg:not(:root) {overflow: hidden;/*reset*/}
	
/* clear floats */ 
.group:before,
.group:after {content: ""; display: table;} 
.group:after {clear: both;}
.group {zoom: 1;}	
.clear { clear: both;}
	
/*image replacement*/
.hide-text {
	text-indent:  100%;
	white-space:  nowrap;
	overflow:  hidden;
	}	

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
	border-style: solid;
    height: 0;
	} 

img { border: 0;} 
	
/*===================== 
	typography 
=======================*/

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	}
	h1 {font-size: 2em;}

p {
	margin: 0;
    font-size: 14px;
	}

	
h1 {
    font-size: 30px;
}
		

h2 {
    font-size: 26px;
}

	
h3 {
    font-size: 24px;
}


h4 {
    font-size: 20px;
}


h5 {
    font-size: 18px;
}


h6 {
    font-size: 16px;
}

/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/
	}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    color: #aaa; 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		color: #ccc;
		}  

/*===================== 
	header styles 
=======================*/


header {
	margin: 0 auto;
	width: 100%;
	}

.header_contain {
    width: 100%;
    box-sizing: border-box;
}

.header_wrap {
    width: 85%;
    margin: auto;
    margin-top: 20px;
}

.logo_head {
    padding-bottom: 20px;
}

.contact_head {
    width: 65%;
    text-align: right;
    float: right;
    line-height: 2;
    text-transform: uppercase;
    font-weight: 700;
    padding-top: 20px;
    padding-bottom: 20px;
}

.head_link {
    color: #434DA1 !important; 
}

.head_link:hover {
    color: #000000 !important;
}

/*===================== 
	nav styles 
=======================*/

nav.primary {
	padding:0;
	display:block;
	margin:0 auto;
	position:relative;
	text-align: center;
    width: 100%;
    background: #434DA1;
    padding: 10px;
    box-sizing: border-box;
	}

nav ul {
	padding:0;
	margin:0;
}

nav ul li {

}

nav > ul > li {
	display:inline-block;
	list-style-type:none; 
	text-align: center;
	padding: 0 5px ;
}

nav ul li a {
	font-family: Bahnschrift, sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #FFFFFF !important;
    background: transparent;
    text-transform: uppercase;
    padding: 10px;
}	
			
nav ul li a:hover {
	color: #000000!important ;
    background: #FFFFFF;
    padding: 13px 10px;
}


/* Appearance of the sub-level links */

nav.primary ul li li a { 
	line-height: 2;
	color: #000000!important;
    background: transparent;
	text-align: left;
	font-size: 15px;
	font-weight: 600;
	}
	
nav.primary ul li li a:hover { 
	color: #434DA1!important;
	text-align: left;
	font-size:  15px;
	font-weight: 600;
	}
	
nav.primary ul li li:hover { 
	}
	
	
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too much */
nav.primary ul ul {
	display: none;
    position: absolute; 
	max-width: 235px;
	background: ;
	/*margin-top: 21px;*/
}
nav.primary ul ul ul {
    position: absolute; 
    left: 100%;
    top:0; 
}
nav.primary ul li:hover > ul {  
    display: block;
    line-height:18px; 
    z-index: 2000 !important;
    padding-top: 10px;
    width: 118px;
    background: #FFFFFF;
    text-align: left;
    margin-top: 10px;
}
nav.primary ul ul li {
    float: none; 
    position: relative;
	display:block;
    margin:0;
	width:100%;
	padding-left: 7px;
    border-bottom: none;
}

.dropdown_arrow {
	display: inline-block !important;
}

.dropdown_style {
	font-size: ;
	font-weight: ;
}


/******** End of primary Nav ***************/


/*===================== 
	mobile nav
=======================*/

#menu-button{ /* initially will need to be hidden */
	display: block;
	font-size: 32px;
	width:100%;
	position: relative;
	z-index: 400;/* needs to be lower than nav.mobile, adjust as needed */
	background: #434DA1;
	text-align: right;
	min-height: 0 !important;
    box-sizing: border-box;
	}
	#menu-button a{
		 color:#fff;
		 text-decoration: none;
		 text-align: right !important;
	  }

nav.mobile {
	display:block;
	position: fixed;
	top: 0;
	left: -280px;
	width: 250px;
	height: 100%;
	background: #000;
	z-index: 500; /* needs to be higher than #menu-button, adjust as needed */
	overflow:auto;
}
nav.mobile h3 { /* Menu header styles */
	position: relative;
	padding: 12px 10px;
	color: #fff;
	font-size: 1.2em;
	font-weight: 400;
	border-bottom: 4px solid #222;
}
nav.mobile .menu-toggle { /* Menu close button */
	position: absolute;
	top: 12px;
	right: 10px;
	display: inline-block;
	padding: 6px 9px 5px;
	font-family: Bahnschrift, sans-serif;
	font-weight: 700;
	line-height: 1;
	background: #222;
	color: #999;
	text-decoration: none;
	vertical-align: top;
}
.menu-toggle {
	text-align: right;
	font-size: 28px;
	color: #000;
}

.menu-toggle a:hover {
	color: #000 !important;
}

.close_mobile {
	font-size: 26px !important;
	font-weight: 900;
	text-align: right;
}

nav.mobile .menu-toggle:hover { /* Menu close button on hover */
	color: #fff;
}
nav.mobile ul {
	list-style: none;
	font-weight: 300;
	margin:0;
	padding:0;
}
nav.mobile ul li {
	padding: 8px 0 6px 0 !important;
}
nav.mobile ul li a {
	position: relative;
	display: block;
	padding-left: 14px;
	color: #999;
	text-decoration: none;
	font-size: 15px;
	letter-spacing: 1px;
}
nav.mobile ul li a:hover {
	background:;
	color: #2b2b2b;
}


nav.mobile ul li li a { /* appearance of the sub-level links */
	position: relative;
	display: block;
	padding: 5px 10px 5px 25px;
	color: #000;
	text-decoration: none;
	text-transform: uppercase!important;
}
nav.mobile ul li li li a { /* appearance of third level sub-level links if needed */
	background: #666;
	position: relative;
	display: block;
	padding: 10px 10px 10px 25px;
	color: #000;
	text-decoration: none;
}
nav.mobile ul li span.click{/* dropdown menu idicator arrow be sure to include this image with your image files */ 
	background:url(../siteart/menu-dropdown-arrow.png) 10px 12px no-repeat;
	background-size:55%;
	position:relative;
	display:block;
	float:right;
	margin:-44px 0 0 0;
	cursor:pointer;
	z-index: 12399994;
	width:44px;
	height:44px;
	-webkit-transition:background-size .3s ease-in-out;
	-moz-transition:background-size .3s ease-in-out;
	transition:background-size .3s ease-in-out;
}
nav.mobile ul li span.click:hover{
	background-size:60%;
}

/*====================
    all page styles
====================*/

.brd_lft {
    border-left: 1px solid #FFFFFF;
}

.wht_txt {
    color: #FFFFFF;
    font-size: 34px;
    text-align: center;
    text-shadow: 2px 2px 5px #000;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/*===================== 
	slideshow styles 
=======================*/

.scroll_contain {
    background-color: #000000;
    width: 100%;
    display: block;
}

.scroll_wrap {
    width: 100%;
    margin: auto;
}

.scrolling-wrap {
    width:100%;
    height:90px;
    overflow:hidden;
}
 
.scrolling{
    width:100%;
    height:92px;
}

/*===================== 
	home styles 
=======================*/

.hero_contain {
    max-width: 100%;
    width: 100%;
    position: relative;
    margin: auto;
}

.heroslide {
    display: none;
}

.hero_img {
    width: 100%;
}
.heroslide img {
    background-color: #000;
}
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 30px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    color: #999999;
}

.slidetext {
    padding: 40px;
    position: absolute;
    bottom: 35%;
    width: 60%;
    text-align: center;
    margin-left: 20%;
    margin-right: 20%;
}

.quick_link_contain {
    background: #000;
    width: 100%;
    padding: 50px 20px;
    display: inline-block;
    vertical-align: middle;
}

.quick_link_wrap {
    width: 90%;
    margin: auto;
}

.quick_link {
    width: 50%;
    display: inline-block;
    vertical-align: middle;
}

.quick_img {
    float: left;
    padding-right: 20px;
    width: 60%;
}

.quick_subhead {
    font-weight: 100;
    text-transform: uppercase;
    padding-top: 120px;
    padding-bottom: 120px;
}

.quick_link_link{
    color: #FFFFFF!important;
}

.quick_link_link:hover {
    color: #999999!important;
}

.welcome_contain {
    background: url("/siteart/welcome_bkg.jpg");
	background-color: #000;
    background-repeat: repeat;
    padding: 50px;
    margin: auto;
}

.welcome_wrap {
    width: 90%;
    margin: auto;
}

.welcome_subhead {
    color: #FFFFFF;
    font-weight: 300;
    text-transform: uppercase;
}

.welcome_head {
    color: #FFFFFF;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.welcome {
    color: #FFFFFF;
    padding-bottom: 10px;
}

.welcome_btn {
    background-color: #434DA1;
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    box-shadow: 5px 5px 10px #000;
}

.welcome_btn:hover {
    background-color: #999999;
}

/*===================== 
	contact styles 
=======================*/

.contact_contain {
    width: 100%;
    background: url("/siteart/welcome_bkg.jpg");
	background-color: #000;
}

.contact_wrap {
    width: 90%;
    margin: auto;
    display: block;
    padding-top: 50px;
    padding-bottom: 50px;
}

.contact_info {
    padding: 10px 0;
    display: inline-block;
}

.contact_headline {
    text-transform: uppercase;
    font-weight: bold;
    color: #FFFFFF;
    padding-bottom: 5px;
}

.contact_link {
    color: #fff!important;
    font-weight: bold;
    line-height: 1.75;
}

.contact_link:hover {
    color: #999!important;
}

.contact_p {
    color: #FFFFFF;
}

/*===================== 
	inventory layout styles 
=======================*/

.cf {
    width: 90%;
    margin: auto;
    box-sizing: border-box;
}

.list-content .list-title .list-listings-count {
    color: #434DA1!important;
}

.faceted-search-content .selected-facets-container .selected-facet {
    background-color: #434DA1!important;
}

.list-content .list-main-section .list-container .list-listing .listing-top .listing-top-left .listing-main-stats .price {
    color: #434da1!important;
}

.list-content .list-main-section .list-container .list-listing .listing-top-right .view-listing-details-link {
    background-color: #434DA1 !important;
}

.list-content .list-main-section .list-container .list-listing .listing-top-right .view-listing-details-link:hover {
   background-color: #999999!important;
}

.detail-content .search-results {
    color: #434DA1!important;
}

.detail-content .detail-main-body .main-detail-data .detail-price {
    color: #434DA1!important;
}

.detail-content .detail-main-body .main-detail-data .offer-btn {
    background-color: #434DA1!important;
}

.detail-content .detail-main-body .main-detail-data .offer-btn:hover {
    background-color: #999999!important;
}

.detail-content .dealer-info .phone-and-email .send-email-btn {
    color: #434DA1!important;
    border-color: #434DA1!important;
}

.detail-content .dealer-info .phone-and-email .send-email-btn:hover {
    color: #999999!important;
    border-color: #999999!important;
}

.detail-content .detail-additional-data .data-row .data-label {
    background-color: #434DA1!important;
}

.button {
    background-color: #434da1!important;
    border-color: #434DA1!important;
}

.button:hover {
    background-color: #999999!important;
    border-color: #999!important;
}

/*----------mobile styles-------------*/

.list-content .list-listing-mobile .price-container .price {
    color: #434DA1!important;
}

.list-content .list-listing-mobile .dealer-phone-container .dealer-phone-call {
    color: #434DA1!important;
    border-color: #434DA1!important;
}

.list-content .list-listing-mobile .dealer-phone-container .dealer-phone-call:hover {
    color: #999999!important;
    border-color: #999999!important;
}

.list-content .list-top-section .listing-option-bar .list-listings-count {
    color: #434DA1!important;
}

.list-content .list-listing-mobile .view-listing-details-link {
    background-color: #434DA1!important;
}

.list-content .list-listing-mobile .view-listing-details-link:hover {
    background-color: #999999!important;
}

.detail-content-mobile .detail-main-body .main-detail-data .detail-price {
    color: #434DA1!important;
}

.detail-content-mobile .detail-main-body .main-detail-data .dealer-phone-mobile-container .dealer-phone-mobile {
    background-color: #434DA1!important;
}

.detail-content-mobile .detail-main-body .main-detail-data .dealer-phone-mobile-container .dealer-phone-mobile:hover {
    background-color: #999999!important;
}

.detail-content-mobile .detail-main-body .main-detail-data .buy-btn-mobile, .detail-content-mobile .detail-main-body .main-detail-data .offer-btn-mobile {
    background-color: #434DA1!important;
}

.detail-content-mobile .detail-main-body .main-detail-data .buy-btn-mobile, .detail-content-mobile .detail-main-body .main-detail-data .offer-btn-mobile:hover {
    background-color: #999999!important;
}

.detail-content-mobile .detail-main-body .main-detail-data .send-email-btn-mobile {
    background-color: #434DA1!important;
}

.detail-content-mobile .detail-main-body .main-detail-data .send-email-btn-mobile:hover {
    background-color: #999999!important;
}

.detail-content-mobile .detail-additional-data .data-row .data-label {
    background-color: #434DA1!important;
}

.detail-content-mobile .detail-contact-bar .contact-bar-btn {
    background-color: #434DA1!important;
}

.detail-content-mobile .detail-contact-bar .contact-bar-btn:hover {
    background-color: #999999!important;
}

.detail-content-mobile .accordion-container .form-bottom .captcha-and-submit .mobile-close {
    color: #434da1!important;
    border-color: #434da1!important;
}

.detail-content-mobile .accordion-container .form-bottom .captcha-and-submit .mobile-close:hover{
    background-color: #999999!important;
}

.faceted-search-content .mobile-done-button-container .mobile-done-button {
    background-color: #434DA1!important;
}

.faceted-search-content .mobile-done-button-container .mobile-done-button:hover {
    background-color: #999999!important;
}

/*===================== 
	footer styles 
=======================*/

footer {
	margin: 20px auto;
	width: 100%;
    font-family:  Bahnschrift, sans-serif;
	}

.contact_foot {
    padding-bottom: 20px;
    padding-left: 50px;
    width: 45%;
    position: absolute;
}

.foot_link {
    color: #000000!important;
    margin-left: 50px;
    font-weight: 500;
}

.foot_link:hover {
    color: #999999!important;
}

.main_foot {
    text-align: right;
    width: 50%;
    float: right;
    margin-right: 50px;
    padding-right: 50px; 
    padding-bottom: 20px;
}
	
a.footerlink:link,
a.footerlink:visited, 
a.footerlink:active {
	text-decoration: none; 
	font-size:13px;
	color: #000;
    font-weight: 500;
	}
	a.footerlink:hover {
		text-decoration:none; 
		font-size:13px;
		color: #999999;
		}

.footertext {
	font-size:13px; 
	color:#000;
	}

.smallfootertext {
	font-size:10px; 
	color:#000;
	}

.divfooter {
	max-width:1200px; 
	margin:0 auto;
	}

/*========================= 
	 Responsive styles 
===========================*/

/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
    .header_wrap{width: 90%;}
    .contact_head {padding-top: 15px;}
    .slidetext {bottom: 20%;}
    .quick_img {width: 50%;}
    .quick_subhead {padding-top: 75px; padding-bottom: 75px;}
}


/* Medium Devices, Desktops */
@media only screen and (max-width : 991px) {
    .header_wrap {width: 100%; display: inline-block;}
    .logo_head {width: 100%; margin: auto; padding-top: 20px; padding-left: 0; padding-right: 0;}
    .logo {margin: auto;}
    .contact_head {width: 100%; float: none; text-align: center; padding:0;  position: relative;}
    .slidetext {bottom: 15%;width: 90%; margin-left: 5%; margin-right: 5%;}
    .quick_subhead {padding-top: 50px; padding-bottom: 50px;}
    .welcome_contain {text-align: center;}
    .contact_wrap {text-align: center;}
    footer {width: 90%;}
    .contact_foot {padding: 0; width: 100%;margin: auto; text-align: center; position: relative;}
    .foot_link {margin: 0;}
    .main_foot {text-align: center; width: 100%; padding: 0;  margin: auto; float: none; }
}


/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    .slidetext {padding: 10px; bottom: 20%}
    .wht_txt {font-size: 28px;}
    .brd_lft {border-left: none;}
    .quick_link {width: 90%; padding:20px 0; margin-left: 5%; margin-right: 5%; display: block;}
    .quick_subhead {padding-top: 75px; padding-bottom: 75px;}
}

@media only screen and (max-width: 570px) {
    .slidetext {bottom: 5%;}
    .wht_txt {font-size: 26px;}
}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
    .slidetext {bottom: 0px; padding-bottom: 0;}
    .wht_txt {font-size: 24px;}
    .quick_link {width: 100%; padding: 0; margin: auto}
    .quick_img {width: 100%; float: none; padding: 0; padding-top: 20px;}
    .quick_subhead {padding-top: 20px; padding-bottom: 20px; text-align: center;}
}

@media only screen and (max-width: 400px) {
    .slidetext {display: none;}
}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {
    
}

