@charset "UTF-8";
/* CSS Document */
/*********reset **********************/

html {
	/* use for continuous color or image on top when a second one is used at bottom of browser*/
	background-image: url(../assets/graphics/headbkgnd.png);
	background-repeat: repeat-x;
	background-position: top;
}



body {
	font-family:Arial, Helvetica, sans-serif;
	margin: 0;      /* margin and padding set to zero thus must override for different values --------*/
	padding: 0;	
	
	font-size: 10px;
	line-height: 2.0em;
	color: #333333;   /* set background color of browser window   */
	
	/*  use for a continuous color or image at bottom of browser */ 
	
	
	
	
}
	
#wrapper {
	position: relative;
	width: 100%;
	margin: 17em auto 2em auto;
	max-width: 1200px;	/* set max page expansion */
	/* below for wrapper to have a curved frame with drop shadow */
	box-shadow:  0 0 .5em .5em rgba(0,0,0, .1);
	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;
	-ms-border-radius: 2em;
	border-radius: 2em; 
	height: auto;
	
}


* {
	box-sizing: border-box;
}

a {
	color: #277ec2;  /*  set standard color for <a>color of links  */
	text-decoration: none;
}

a:hover,
a:focus {
	color: #005580;    /* set standard color of hover over   */
	text-decoration: underline;
}

image a{			/* removes box around image link   */
	border: none;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
	width: auto;
}

.imageshadow { /* add drop shadow to an image Change color as required default black */
	-webkit-box-shadow:.4em .6em .8em rgba(0,0,0,.75);
	box-shadow:.4em .6em .8em rgba(0,0,0,.75);
}

.textshadow { /* add drop shadow to text. Change color as required default black  */
	text-shadow: 2px 2px 2px rgba(0,0,0,.70);
}
.overflow {
	overflow: auto;
}

.divider { /* creates a divider line inlieu of a <hr/> tag. Can change size and color as required */
	margin: 0;
	padding: 0;
	height: .2em;
	background: #00448e;
}
.dividery { /* creates a divider line inlieu of a <hr/> tag. Can change size and color as required */
	
	padding: 0;
	height: .2em;
	background: #f3f400;
	box-shadow:  0 0 0 .2em rgba(0,0,0, .3);
}

.linespacer {
	margin: 1em 0 1em 0;
}

/* most of these tags are css3 new use instad of <div id>  */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}

dl {
	margin-top: 2em;
}

dt  /* used for drop down faqs and read more font-size can be changed as required */
 {
	font-size: 1.6em;
	font-weight: bold;
}

dd {
	padding-bottom: .5em;
}

.margin0 {
	margin-top: 0;
}

.margin3 {
	margin-top: .3em;
}

.margin5 {
	margin-top: .5em;
}

.margin10 {
	margin-top: 1em;
}

.margin20 {
	margin-top: 2em;
}

.margin25 {
	margin-top: 2.5em;
}

.margin30 {
	margin-top:3em;
}

.margin40 {
	margin-top:4em;
}

/*------------ set standard colors -------------------- */
/* list as comments the site's main colors and then create a class for each*/


.gold {
	color: #f29e00;
}

.blue {
	color: #00448e;
}

.midblue {
	color: #2d69b4;
}

.water {
	color:#009df1;
}

.yellow {
	color: #f3f400;
}

.textgrey {
	color: #333;
}

.white {
	color: white;
}

.black {
	color: black;
}

.red {
	color:#E1211E;
}

.orange {
	color: #f39005;
}


/*--------- header tags set standard font-size and padding -----------*/

h1 {
	margin: 0;
	font-size: 2.4em;
	padding: .3em .3em .1em .3em;
}

h2 {
	margin: 0;
	font-size: 1.8em;
	padding: .3em .3em .1em .3em;
}

h3 {
	margin: 0;
	font-size: 1.6em;
	padding: .3em .3em .1em .3em;
}

h4 {
	margin: 0;
	font-size: 1.4em;
	padding: .3em .3em .1em .3em;
}

p {
	line-height: 130%;
	font-size: 1.4em;
	padding: .3em .3em .1em .3em;
}
h6 {
	margin: 0;
	padding: 0;
}

/*------------ text standard styling ----------------*/
.small {
	font-size:1em;
}

.font12 {
	font-size:1.2em;
}

.font14 {
	font-size:1.4em;
}

.font16 {
	font-size:1.6em;
}

.font17 {
	font-size: 1.7em;
}
	

.font18 {
	font-size:1.8em;
}

.font20 {
	font-size:2.0em;
}

.large {
	font-size:2.4em;
}

.xlarge {
font-size:2.8em;
}	


.xxlarge {
	font-size:3em;
}




.font36 {
	font-size: 3.6em;
}

.letterspace1 {
	letter-spacing: .1em;
}

.letterspace2 {
	letter-spacing: .2em;
}

.lineheight20 {
	line-height: 120%;
}

.lineheight30 {
	line-height: 130%;
}


.bold {
	font-weight: bold;
}

.italic {
	font-style: italic;
}

.underline {
	text-decoration: underline;
}
.high {
	line-height: 130%;
}
.alignleft {
	text-align: left;
}

.aligncenter {
	text-align: center;
}

.alignright {
	text-align: right;
}

/* float related classes ---------*/

.rightfloat {
	float: right;
}

.leftfloat {
	float: left;
}

.clearfix {
	*zoom: 1;
	clear: both;
}

.clearfix:before,
.clearfix:after {
	display:table;
	content: "";
	line-height: 0;
}
.clearfix:after {
	clear: both;
}


/* ------- setting up column widths based on a 12 grid system -half equals value of a half of column. Thus .col-9-5 equals 9 and half columns ----------*/

.col-half {
	width: 4.166%; /* 50px */
}

.col-1 {
	width: 8.333%; /* 100px */
}

.col-1-half {
	width: 12.5%; /* 150px */
}

.col-2 {
	width: 16.666%; /* 200px */
}

.col-2-half {
	width: 20.8333%; /* 250px */
}

.col-3 {
	width: 25%; /* 300px */
}

.col-3-half {
	width: 29.1666%; /* 350px */
}

.col-4 {
	width: 33.333%; /* 400px */
}

.col-4-half {
	width: 37.5%; /* 450px */
}

.col-5 {
	width: 41.666%; /* 500px */
}

.col-5-half {
	width: 45.8333%; /* 550px */
}

.col-6 {
	width: 50%; /* 600px */
}

.col-6-half {
	width: 54.16666%; /* 650px */
}

.col-7 {
	width: 58.333%; /* 700px */
}

.col-7-half {
	width: 62.5%; /* 750px */
}

.col-8 {
	width: 66.666%; /* 800px */
}

.col-8-half {
	width: 70.8333%; /* 850px */
}

.col-9 {
	width: 75%; /* 900px */
}

.col-9-half {
	width: 79.1666%; /* 950px */
}

.col-10 {
	width: 83.333%; /* 1000px */
}

.col-10-half {
	width: 87.5%; /* 1050px */
}

.col-11 {
	width: 91.666%; /* 1100px */
}

.col-11-half {
	width: 95.8333%; /* 1150px */
}

.col-12 {
	width: 100%; /* 1200px */
}

/*------------ setting up shift lefts -------------*/

.shift-half {
	margin-left: 4.166%;
}

.shift-1 {
	margin-left: 8.333%;
}

.shift-1-half {
	margin-left: 12.5%;
}

.shift-2 {
	margin-left: 16.666%;
}

.shift-2-half {
	margin-left: 20.8333%;
}

.shift-3 {
	margin-left: 25%;
}

.shift-3-half {
	margin-left: 29.1666%;
}

.shift-4 {
	margin-left: 33.333%;
}

.shift-4-half {
	margin-left: 37.5%;
}

.shift-5 {
	margin-left: 41.666%;
}

.shift-5-half {
	margin-left: 45.3333%;
}

.shift-6 {
	margin-left: 50%;
}

.shift-6-half {
	margin-left: 54.1666%;
}

.shift-7 {
	margin-left: 58.333%;
}

.shift-7-half {
	margin-left: 62.5%;
}

.shift-8 {
	margin-left: 66.666%;
}

.shift-8-half {
	margin-left: 70.8333%;
}

.shift-9 {
	margin-left: 75%;
}

.shift-9-half {
	margin-left: 79.1666%;
}

.shift-10 {
	margin-left: 83.333%;
}

.shift-10-half {
	margin-left: 87.5%;
}

.shift-11 {
	margin-left: 91.666%;
}

.shift-11-half {
	margin-left: 95.8333%;
}

.shift-12 {
	margin-left: 100%;
}



/*------------------- header area -----------------------*/
header {       /* header consists of logo and secondary nav bar */
	position: relative;
	margin-top: 0em;
	
	height: auto;
}



.logo {	/* use for main logo change margin, width depending on logo graphic size  */
margin-top: -16em;
height: auto;	
}


.tagline  {
margin: 0;
	margin-top: .5em;
	padding-bottom: .1em;
	font-size: 3.4em;
	color: white;
	font-family: "charter", serif;
}

.tagline2 {
	margin: 0;
	padding-bottom: .3em;
	width: 100%;
	font-size: 2.0em;
	color: white;
	font-family: "charter", serif;
	font-style: italic;
}




.phone {
margin: 0;
	margin-top: 1em;
	color: white;
	font-size: 2.6em;
	font-weight: bold;
	
		
}

.headerright {
	margin-top: -5.2em;
	line-height: 220%;
}

.headernav {
	margin-top: 1em;
	text-decoration: none;
	color: #f3f400;
	font-size: 1.4em;

}

.headernav a {
	text-decoration: none;
	 color: #f3f400;
}

.headernav a:hover{
	text-decoration:underline;
 color:white;
}


/*****************  end of header   ****************/
/************** the main nav can be part of the header if design calls for   *******************/	

/*-------------- main nav ----------*/

nav {
	position: relative;
	
	margin-top: 3em;
	height: auto;
background-color: white;
	
}

.mainnav {
	width: 83.3333%;
	margin-left: 12.5%
}

/*-------------- following is based on using superfisheye jquery plugin  -------------------
it is sete up for three levels. Most of level 1 is repeating css3 gradient and box shadow coommands.
These require vendor prefixes - thus the extensive length - just repeats for each vendor.*/


/****** Level 1 *******/
ul#sfNav {
	position: relative;
	width: 100%;
	padding: 0;
	margin: 0;
	background-color: white;
	list-style: none;
	height: auto;
	
}

ul#sfNav li {
	float: left;
	margin:0;
	
 background-color: white;

}

ul#sfNav li.parent {  /*  this adds an arrow if required  */

}

ul#sfNav  li a {

	color:#00448e;
	font-weight: bold
	display: block;
	width: auto;
	padding: .5em 1.2em 0 1.4em;
	width: auto;
	font-size: 1.5em;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	margin:0;
	
	
	letter-spacing: .1em;
}

ul#sfNav li a:hover {
	
	color:#f7f118;
	text-shadow: 2px 2px 2px rgba(0,0,0, 1);
}









/*** ARROWS ***/
.sf-sub-indicator {
	display: none;
}

.sf-menu img {   /* use this if using an image as part of the nav button   */
	max-width: 100%;
}
/******************* end of main navigation **************************/

/*******************   slider   **************************************/
#slider{
	position: relative;
	height: 50em;
	margin-top: 1em;
}

#sliderb{
	position: relative;
	height: 50em;
	margin-top: 1em;
}

#slider img {
	position: absolute;
	width: 100%;
	
	left: 0;
}

/****************** service bar     *********************/

.servicebar {
	margin-left: 6%;
}
.serviceicon {
	margin-left: 2%;
	width: 18%;
	height: auto;
}

/******** location columns  *********/

/*************** right CTA column  ***************/
.r-col-loc {
	margin-top: .5em;
}

.locmarker {
	width: 4%;
}

.locbox {
	background-color: white;
	box-shadow:  0 0 .3em .3em rgba(0,0,0, .1);
	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;
	-ms-border-radius: 2em;
	border-radius: 2em; 
	border: solid .3em #828282;
	height: auto;
	margin-top: 1em;
}

.loctitle {
	font-size: 3.6em;
	padding: 1em .5em 1em .5em;
}

.col-cta {
	margin-top: 1em;
}

.genloctitle {
	font-size: 2.8em;
	font-weight: bold;
	
	padding: .5em 0 .3em 0;
}
.genlocadd,
.genlocphone {
	font-size: 1.8em;
	
	padding: .4em 0 .3em 0;
	
}

.pricing {
	font-weight: bold;
	
	color: #00448e;
	text-align: center;
	margin: 0;
	padding: .1em 0 0 0;
}

.carclub h1{
	font-size: 3em;
}

.carclub h2{
	font-size: 2.8em;
}

#maincontent .carmain h1{
font-size: 2.6em;
}	

#maincontent .carmain h2{
font-size: 2.3em;
}
		
.loc-col2 {
	margin-top: 1.2em;
}

.locadd {
	font-size: 2.4em;
}

.carmainloc {
font-size: 3.6em;
}

.promise {
	width: 90%;
}

.fundmgr {
	border: solid .2em  #00448e;
}

.fundraiserbannertext {
	background-color: #00448e;
}

.fundraiserbannertext p{
	font-size: 1.8em;
	margin: 0;
	padding: 2em 0 2em .5em;
	font-weight: bold;
	color: white;
}

.locationdetail {
	margin-top: -2em;
}

.maptext {
	display: none;
}

.mgr {
	font-size: 1.6em;
}


.pricebox {
	
	background-color: white;
	box-shadow:  0 0 .5em .5em rgba(0,0,0, .1);
	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;
	-ms-border-radius: 2em;
	border-radius: 2em; 
}

.lavashield {
	border: .5em solid #777777;
}

.hotwax {
border: .5em solid #777777;
margin-top: 2em;
}
	
.shine {
border: .5em solid #777777;
margin-top: 2em;
}
		
.basic {
border: .5em solid #777777;
margin-top: 2em;
}

.addon {
border: .5em solid #777777;
margin-top: 2em;
}

.addclub {
border: .5em solid #DE070A;
margin-top: 2em;
}			

.pricetitle p{
	margin: 0;
	margin-top: .5em;
	margin-left: 1em;
	padding: 0;
	font-size: 3.6em;
	font-weight: bold;
	text-align: center;
	font-style: italic;
	
}

.detailpricetitle p{
	margin: 0;
	margin-top: .5em;
	margin-left: 1em;
	padding: 0;
	font-size: 2.4em;
	font-weight: bold;
	text-align: left;
	font-style: italic;
}

.priceprice {
margin: 0;
	margin-top: .5em;
	padding: 0;
	font-size: 3.6em;
	font-weight: bold;
	text-align: center;
	
}

.detailprice {
margin: 0;
	margin-top: .5em;
	padding: 0;
	font-size: 2em;
	font-weight: bold;
	text-align: center;
}

.plustax {
	font-size: 1.4em;
	font-style: italic;
	text-align: center;
	margin: 0;
	padding: 0;
}


.pricedesc {
	margin-top: -1.5em;
}

.pricedesc p{
	margin: 0;
	margin-left: 5%;
	padding: 0;
	font-size: 1.6em;
	text-align: left;	
}

.addontitle p{
margin: 0;
	margin-top: .5em;
	margin-left: 1em;
	padding: 0;
	font-size: 3.6em;
	font-weight: bold;
	text-align: center;
	text-shadow: 2px 2px 2px rgba(0,0,0,.70);
	letter-spacing: .1em;
	text-align: left;
}	
	
.detailpro {
	width: 100%;
	font-size: 2.2em;
	font-weight: bold;
	background-color: #f3f400;
	color: #e1211e;
	text-align: center;
	margin: 0;
	padding: .7em 0 .7em 0;
	text-shadow: 2px 2px 2px rgba(0,0,0,.70);
}

.detailexpress {
	width: 100%;
	font-size: 2.2em;
	font-weight: bold;
	background-color: #E1211E;
	color: #f3f400;
	text-align: center;
	margin: 0;
	padding: .7em 0 .7em 0;
	text-shadow: 2px 2px 2px rgba(0,0,0,.70);
}

.includetext p{
	font-size: 2.2em;
}

.combo {
	margin-bottom: 0;
}

.addonbox {
	width: 15%;
	margin-left: 10%;
}

.addonbox p{
	text-align: center;
}
	
.addonbox1 {
width: 15%;

}

.cheerleader {
	margin-top: .5em;
	
	border: .2em solid #1d4592;
	-webkit-box-shadow:.4em .6em .8em rgba(0,0,0,.75);
	box-shadow:.4em .6em .8em rgba(0,0,0,.75);
}

.aboutmain {
	padding-right: 1em;
}
	
	
/***********************************footer section ******************/
footer {  /* footer has two sides .footerright and .footerleft. If 3 columns are desired then add the center column as footercenter */
	position: relative;
	height: auto;
	margin: 0;
	/*background-color: rgba(0,70,186, .8);*/
	top: 5.4em;
	background:url(../assets/graphics/footerback.png);
	background-repeat: no-repeat;
	
}

.footer-col-a,
.footer-col-b,
.footer-col-c {
	
	margin-top: .5em;
}

.footer-col-right {
	margin-top: 0em;
}

.footertitle {
	margin: 0;
	padding: 0;
	text-align: center;
	font-weight: bold;
	font-size: 1.4em;
}

.footerlines {
	margin: 0;
	padding: .3em;
	text-align: center;
	font-weight: bold;
	font-size: 1.2em;
}

#footerbottom {
position: relative;
	top: 2em;
}	

.copyright  {
	margin: 0;
	padding: 0em .5em 2em 1em;
	font-size: 1.4em;
	font-weight: bold;
	color: white;
}

.promisestar img{
	border: solid 2px blue;
	-webkit-box-shadow:.4em .6em .8em rgba(0,0,0,.75);
	box-shadow:.4em .6em .8em rgba(0,0,0,.75);}

/* -------------------- styles for forms. The overall form tag is given the class = .subform ----------------*/

#contactform {
	width: 90%;
}


.subformp {
	font-size: 1.4em;
  color:black;
  margin: 0;
  margin-top: 1em;
  padding: 0;
  
}


#contactform .label {

  display: inline-block;
  width: 100%;
  vertical-align: top;
  text-align: left;
  
  font-weight: bold;
 font-size: 1.2em;
  color: black;
  
}
#contactform select {
	font-size: 1.2em;
}
#contactform input[type="text"], #contactform input[type="email"], #contactform input[type="tel"], #contactform textarea { /* add any other input types also */
	font-size: 1.2em;
	color: rgb(255,255,255,1);
	
	border: solid .1em black;
	background-color: rgba(255,255,255,.5);	
	box-shadow: inset 0 0 10px rgba(255,255,255,.75);
	width: 100%;
	
	padding: 4px; 	
}
#contactform input[type="text"]:focus, #contactform input[type="email"]:focus, #contactform input[type="phone"]:focus, #contactform textarea:focus {
  background-color: white;
  color: black;
}
.subformh {
	font-size: 1.8em;
  color: white;
  font-weight: bold;
  text-align: center;
  padding-bottom: 2%;
  padding-top: 2%;
}
.subform input[type="submit"] {  
  	/*margin-left: 32%;*/
  	padding: .5em 1.5em;
  	font-size: 1.2em;
  	color: white;
  	background-color: #80771a;
  	border: .2em solid white;
 	 -webkit-border-radius: 7px;
  	-moz-border-radius: 7px;
   	-o-border-radius: 7px;
	-ms-border-radius: 7px;
	border-radius: 7px;
  	box-shadow: 0 0 4px white;
}
.subform select {
	font-size: 1.2em;
	font-weight: bold;
	
}

.promisetext p{
	
	font-weight: bold;
	
	margin: 0;
	padding: 0;
}

.promisebar {
	margin-top: 3em;
}


.bullets {
	margin: 0;
}