@charset "UTF-8";
/* CSS Document */


/*--------------- Reset -----------------------------*/

*, 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, figure, footer, header, 
hgroup, menu, nav, section, menu,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  vertical-align:baseline;
  box-sizing:border-box;
  -webkit-appearance:none; /* removes weird styling in ios */
  -moz-appearance: none; /* removes weird styling in other mobile browsers */
}



/*------------- Core Styles ---------------------------*/

* {
	font-family: Whitney SSm A, Whitney SSm B, Helvetica, Arial;
	-ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased !important;
}

html{
	height:100%;
	}

body{
	color:#5d6164;
	font-size:14px;
	font-smooth:always;
	/*-webkit-font-smoothing: antialiased; // Makes the font look a ton better but dont want to enable yet
	-moz-osx-font-smoothing: grayscale;*/
	height:200%;
	}

h1{
	font-size:40px;
	font-weight:700;
	color:#474b4f;
	letter-spacing:-2px;
	margin:15px 0 15px 0;
	text-align:center;
	}
	
h2{
	font-size:22px;
	font-weight:400;
	color:#474b4f;
	letter-spacing:-1px;
	margin:15px 0 15px 0;
	text-align:center;
	}
	
h3{
	font-size:20px;
	font-weight:500;
	color:#474b4f;
	letter-spacing:-1px;
	}
	
h4{
	font-size:18px;
	font-weight:500;
	color:#474b4f;
	display:block;
	letter-spacing:0px;
	}
	
h5{
	font-size:16px;
	font-weight:500;
	color:#474b4f;
	display:block;
	}
	
h6{
	font-size:14px;
	font-weight:500;
	color:#474b4f;
	display:block;
	}
	
h1.lineThrough, h2.lineThrough, h3.lineThrough, h4.lineThrough{
  display: table;
  white-space: nowrap;
}

h1.lineThrough:before, h2.lineThrough:before, h3.lineThrough:before, h4.lineThrough:before,
h1.lineThrough:after, h2.lineThrough:after, h3.lineThrough:after, h4.lineThrough:after{
  border-top: 1px solid #c9cacb;
  content: '';
  display: table-cell;
  position: relative;
  top: 0.6em;
  width: 45%;
}

h1.lineThrough:before, h2.lineThrough:before, h3.lineThrough:before, h4.lineThrough:before{
  right: 1.5%;
}

h1.lineThrough:after, h2.lineThrough:after, h3.lineThrough:after, h4.lineThrough:after{
  left: 1.5%;
}

p{
	margin-top:15px;
	margin-bottom:15px;
	line-height: 1.6em;
	}
	
p.topMargin{
	margin-top:40px;
	}
	
p.bottomMargin{
	margin-bottom:40px;
	}
	
img{
	max-width:100%;
	}
	
img.shadow{
	-webkit-box-shadow: 0 0 2px 2px #737373;
	box-shadow: 0 0 2px 2px #737373;
	}
	
a{
	color:#108dd2;
	text-decoration:none;
	}
	
a:hover{
	color:#5d6164;
	}
	
ul, ol{
	margin-top:15px;
	margin-bottom:15px;
	}
	
ul li{
	margin-left:40px;
	margin-bottom:10px;
	list-style-type:circle;	
	line-height: 1.6em;
	text-align:left;
	}
	
ol li{
	margin-left:40px;
	margin-bottom:10px;
	list-style-type:decimal;
	line-height: 1.6em;
	text-align:left;
	}
	
hr{
	border:none;
	border-bottom:1px solid #c9cacb;
	}
	
b, strong{
	font-weight:700;
	}
	
pre{
	padding:10px;
	color:#FFF;
	font-size: 90%;
	background-color:#3e4042;
	border-left:5px solid #108dd2;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	box-sizing:border-box;
	margin:20px 0 20px 0px;
	overflow:scroll;
	}
	
pre code{
	font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
	}
	
	
	
/*------------- Grid Styles ----------------------*/

.col-row{
	clear:both;
	display:block;
	text-align:center;
	padding-top:5px;
	padding-bottom:5px;
	margin-top:15px;
	margin-bottom:15px;
	}

.col-2{
	display:inline-block;
	box-sizing:border-box;
	text-align:left;
	width:49.5%;
	padding-left:10px;
	padding-right:10px;
	text-align:left;
	vertical-align:top;
	}
	
.col-3{
	display:inline-block;
	box-sizing:border-box;
	text-align:left;
	width:33%;
	padding-left:10px;
	padding-right:10px;
	text-align:left;
	vertical-align:top;
	}
	
.col-4{
	display:inline-block;
	box-sizing:border-box;
	text-align:left;
	width:24.6%;
	padding-left:10px;
	padding-right:10px;
	text-align:left;
	vertical-align:top;
	}
	
.col-2:first-child,
.col-3:first-child,
.col-4:first-child{
	padding-left:0px;
	}
	
.col-2:last-child,
.col-3:last-child,
.col-4:last-child{
	padding-right:0px;
	}
	
	


/*-------------Button Styles---------------------------*/

.btn-xsmall{
	padding:5px 15px 5px 15px;
	text-align:center;
	display:inline-block;
	border:1px solid #FFF;
	background:transparent;
	color:#FFF;
	text-decoration:none;
	cursor:pointer;
	letter-spacing:0px;
	font-size:13px;
	font-weight:400;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	}
	
.btn-small:hover{
	color:#FFF;
	}
	

.btn-small{
	padding:8px 15px 8px 15px;
	text-align:center;
	display:inline-block;
	border:1px solid #FFF;
	background:transparent;
	color:#FFF;
	text-decoration:none;
	cursor:pointer;
	letter-spacing:0px;
	font-size:14px;
	font-weight:400;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	}
	
.btn-small:hover{
	color:#FFF;
	}

	
.btn-medium{
	padding:10px 20px 10px 20px;
	text-align:center;
	display:inline-block;
	border:1px solid #FFF;
	background:transparent;
	color:#FFF;
	text-decoration:none;
	cursor:pointer;
	letter-spacing:0px;
	font-size:16px;
	font-weight:400;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	}
	
.btn-medium:hover{
	color:#FFF;
	}
	

.btn-large{
	padding:10px 40px 10px 40px;
	text-align:center;
	display:inline-block;
	border:1px solid #FFF;
	background:transparent;
	color:#FFF;
	text-decoration:none;
	cursor:pointer;
	letter-spacing:0px;
	font-size:16px;
	font-weight:400;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	}
	
.btn-large:hover{
	color:#FFF;
	}

	
/*------------- Button Shadow ---------------------------*/

.btn-xsmall.shadow, .btn-small.shadow,
.btn-medium.shadow, .btn-large.shadow{
	-webkit-box-shadow: 1px 1px 2px 0 #272c31;
	box-shadow: 1px 1px 2px 0 #272c31;
	}	

/*------------- Button Colors ---------------------------*/
	
	
.btn-xsmall.green, .btn-small.green,
.btn-medium.green, .btn-large.green{
	color:#FFF !important;
	border:none;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#00b61e+0,02a41c+100 */
	background: #00b61e; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwYjYxZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMmE0MWMiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  #00b61e 0%, #02a41c 100%); /* FF3.6-15 */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#00b61e), color-stop(100%,#02a41c)); /* Chrome4-9,Safari4-5 */
	background: -webkit-linear-gradient(top,  #00b61e 0%,#02a41c 100%); /* Chrome10-25,Safari5.1-6 */
	background: -o-linear-gradient(top,  #00b61e 0%,#02a41c 100%); /* Opera 11.10-11.50 */
	background: -ms-linear-gradient(top,  #00b61e 0%,#02a41c 100%); /* IE10 preview */
	background: linear-gradient(to bottom,  #00b61e 0%,#02a41c 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00b61e', endColorstr='#02a41c',GradientType=0 ); /* IE6-8 */
	}
	
.btn-xsmall.green:hover, .btn-small.green:hover,
.btn-medium.green:hover, .btn-large.green:hover{
	background: #02a41c;
	text-decoration:none;
	color:#FFF !important;
	}
	
.btn-xsmall.blue, .btn-small.blue,
.btn-medium.blue, .btn-large.blue{
	color:#FFF !important;
	border:none;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#47ace5+0,0892df+100 */
	background: #47ace5; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzQ3YWNlNSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwODkyZGYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  #47ace5 0%, #0892df 100%); /* FF3.6-15 */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#47ace5), color-stop(100%,#0892df)); /* Chrome4-9,Safari4-5 */
	background: -webkit-linear-gradient(top,  #47ace5 0%,#0892df 100%); /* Chrome10-25,Safari5.1-6 */
	background: -o-linear-gradient(top,  #47ace5 0%,#0892df 100%); /* Opera 11.10-11.50 */
	background: -ms-linear-gradient(top,  #47ace5 0%,#0892df 100%); /* IE10 preview */
	background: linear-gradient(to bottom,  #47ace5 0%,#0892df 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#47ace5', endColorstr='#0892df',GradientType=0 ); /* IE6-8 */
	}
	
.btn-xsmall.blue:hover, .btn-small.blue:hover,
.btn-medium.blue:hover, .btn-large.blue:hover{
	background: #0892df;
	text-decoration:none;
	color:#FFF !important;
	}
	
.btn-xsmall.red, .btn-small.red,
.btn-medium.red, .btn-large.red{
	color:#FFF !important;
	border:none;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f51e46+0,d9042b+100 */
	background: #f51e46; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y1MWU0NiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkOTA0MmIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  #f51e46 0%, #d9042b 100%); /* FF3.6-15 */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f51e46), color-stop(100%,#d9042b)); /* Chrome4-9,Safari4-5 */
	background: -webkit-linear-gradient(top,  #f51e46 0%,#d9042b 100%); /* Chrome10-25,Safari5.1-6 */
	background: -o-linear-gradient(top,  #f51e46 0%,#d9042b 100%); /* Opera 11.10-11.50 */
	background: -ms-linear-gradient(top,  #f51e46 0%,#d9042b 100%); /* IE10 preview */
	background: linear-gradient(to bottom,  #f51e46 0%,#d9042b 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f51e46', endColorstr='#d9042b',GradientType=0 ); /* IE6-8 */
	}
	
.btn-xsmall.red:hover, .btn-small.red:hover,
.btn-medium.red:hover, .btn-large.red:hover{
	background: #d9042b;
	text-decoration:none;
	color:#FFF !important;
	}
	
.btn-xsmall.purple, .btn-small.purple,
.btn-medium.purple, .btn-large.purple{
	color:#FFF !important;
	border:none;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#832fa9+0,642482+100 */
	background: #832fa9; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzgzMmZhOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM2NDI0ODIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  #832fa9 0%, #642482 100%); /* FF3.6-15 */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#832fa9), color-stop(100%,#642482)); /* Chrome4-9,Safari4-5 */
	background: -webkit-linear-gradient(top,  #832fa9 0%,#642482 100%); /* Chrome10-25,Safari5.1-6 */
	background: -o-linear-gradient(top,  #832fa9 0%,#642482 100%); /* Opera 11.10-11.50 */
	background: -ms-linear-gradient(top,  #832fa9 0%,#642482 100%); /* IE10 preview */
	background: linear-gradient(to bottom,  #832fa9 0%,#642482 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#832fa9', endColorstr='#642482',GradientType=0 ); /* IE6-8 */
	}
	
.btn-xsmall.purple:hover, .btn-small.purple:hover,
.btn-medium.purple:hover, .btn-large.purple:hover{
	background: #642482;
	text-decoration:none;
	color:#FFF !important;
	}
	
.btn-xsmall.grey, .btn-small.grey,
.btn-medium.grey, .btn-large.grey{
	color:#FFF !important;
	border:none;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#525558+0,2b3033+100 */
	background: #525558; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzUyNTU1OCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMyYjMwMzMiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  #525558 0%, #2b3033 100%); /* FF3.6-15 */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#525558), color-stop(100%,#2b3033)); /* Chrome4-9,Safari4-5 */
	background: -webkit-linear-gradient(top,  #525558 0%,#2b3033 100%); /* Chrome10-25,Safari5.1-6 */
	background: -o-linear-gradient(top,  #525558 0%,#2b3033 100%); /* Opera 11.10-11.50 */
	background: -ms-linear-gradient(top,  #525558 0%,#2b3033 100%); /* IE10 preview */
	background: linear-gradient(to bottom,  #525558 0%,#2b3033 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#525558', endColorstr='#2b3033',GradientType=0 ); /* IE6-8 */
	}
	
.btn-xsmall.grey:hover, .btn-small.grey:hover,
.btn-medium.grey:hover, .btn-large.grey:hover{
	background: #2b3033;
	text-decoration:none;
	color:#FFF !important;
	}


	
	

	
/*-------------Form Styles----------------------*/

form{
	text-align:left;
	width:auto;
	}
	
form input[type=checkbox]{
	-webkit-appearance: checkbox; /* removes weird styling in ios */
 	-moz-appearance: checkbox; /* removes weird styling in other mobile browsers */
	}
	
form .form-group{
	display:block;
	}
	
form .form-group.half{
	display:inline-block;
	width:48%;
	}
	
form .form-group.half.left{
	float:left;
	}
	
form .form-group.half.right{
	float:right;
	}

form .form-group input[type=text], form .form-group input[type=tel], form .form-group input[type=password], form .form-group input[type=checkbox], form .form-group textarea{
	-moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-image: none;
    -webkit-border-radius: 5px;
	border-radius: 5px;
    border: 1px solid #CCC;
    border-style: solid;
    border-width: 1px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1) inset;
    font-size: 14px;
	font-weight:700;
    padding: 8px 10px;
    min-width: 100px;
	width:100%;
	color:#5d6164;
	margin-bottom:10px;
	box-sizing:border-box;
	background-color: #f9f9f9;
	}
	
form .form-group textarea{
	min-height:125px;
	}
	
form .form-group select{
	-moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-image: none;
    -webkit-border-radius: 5px;
	border-radius: 5px;
    border: 1px solid #CCC;
    border-style: solid;
    border-width: 1px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    font-size: 14px;
	font-weight:700;
    padding: 8px 10px;
    min-width: 100px;
	color:#5d6164;
	margin-bottom:10px;
	cursor:pointer;
	box-sizing:border-box;
	background-color: #f9f9f9;
	background: #f9f9f9; /* Old browsers */
	background: -moz-linear-gradient(top,  #f9f9f9 0%, #ededed 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9f9f9), color-stop(100%,#ededed)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #f9f9f9 0%,#ededed 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #f9f9f9 0%,#ededed 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #f9f9f9 0%,#ededed 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #f9f9f9 0%,#ededed 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9f9f9', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
	}
	
form .form-group input[type=checkbox]{
	width:auto;
	min-width:0px;
	-webkit-appearance: checkbox; /* removes weird styling in ios */
 	-moz-appearance: checkbox; /* removes weird styling in other mobile browsers */
	margin-right:10px;
	}
	
form .form-group input[type=text]:focus, form .form-group input[type=tel]:focus, form .form-group input[type=password]:focus, form .form-group select:focus, form .form-group textarea:focus{
	border: 1px solid #47ace5;
    box-shadow:  0 0 5px #47ace5;
    outline: medium none;
	}
	
form .form-group label{
	text-align:left;
	font-size:13px;
	color:#5d6164;
	font-weight:400;
	display:inline-block;
	margin-bottom:2px;
	}
	
form .form-group ul.errors{
	padding:10px 0 10px 0;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	background-color:#f00134;
	}
	
form .form-group ul.errors li{
	color:#FFF;
	margin-left:20px;
	margin-bottom:0px;
	}
	
form.vertical .form-group{
	margin-bottom:10px;
	}

	
form.vertical .form-group label{
	display:block;
	margin-bottom:2px;
	}
	
	
form.horizontal .form-group label{
	text-align:right;
	font-weight:400;
	display:inline-block;
	margin-right:10px;
	width:25%;
	}

	
form.horizontal .form-group input[type=text], form.horizontal .form-group input[type=tel], form.horizontal .form-group input[type=password], form.horizontal .form-group select, form.horizontal .form-group textarea{
	width:70%;
	vertical-align:top;
	}
	
form.inline{
	
	}
	
form.inline .form-group label{
	margin-bottom:0;
	}
	
form.inline .form-group{
	display:inline-block;
	vertical-align:top;
	}
	
form.inline .form-group input[type=text], form.inline .form-group input[type=tel], form.inline .form-group input[type=password], form.inline .form-group input[type=checkbox], form.inline .form-group select, form.inline .form-group textarea{
	display:inline-block;
	vertical-align:middle;
	margin-bottom:0px;
	width:auto;
	}

	
/*------------- Header & Navigation ---------------------------*/
	
#nav{
	background-color:#3e4042;
	height:55px;
	-webkit-box-shadow: 0 0 2px 0px #1f1f1f;
	box-shadow: 0 0 2px 0px #1f1f1f;
	}
	
#navContent{
	
	}
	
#nav #navContent #navPhoneNumber{
	text-align:right;
	margin-top:2px;
	margin-bottom:2px;
	color:#cbcccc;
	}
	
#nav #navContent #navPhoneNumber a{
	color:#47ace5;
	}
	
#nav #navContent #navLogo{
	float:left;
	}
	
#nav #navContent ul{
	float:right;
	margin:0 0 0 0;
	}
	
#nav #navContent ul li{
	list-style-type:none;
	display:inline-block;
	margin:0 0 0 18px;
	}
	
#nav #navContent ul li a{
	color:#FFF;
	font-size:15px;
	}
	
#nav #navContent ul li .btn-xsmall{
	font-size:14px;
	}
	
#nav #navContent ul li a:hover{
	
	}
	
#nav #navContent ul li#mobileNavPhoneNumber{
	display:none;
	}
	
		
/*-------------Common Element Styles---------------------------*/
	
.container{
	max-width:1024px;
	padding:10px;
	margin-left:auto;
	margin-right:auto;
	overflow-x:hidden;
	}
	
.container-full{
	width:100%;
	padding:0px;
	margin-left:auto;
	margin-right:auto;
	}
	
.container.bottomBorder, .container-full.bottomBorder{
	border-bottom:1px solid #e1e1e1;
	}
	
.container.topBorder, .container-full.topBorder{
	border-top:1px solid #e1e1e1;
	}
	
.pannel{
	padding:10px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: 1px 1px 2px 0 #B5B5B5;
	box-shadow: 1px 1px 2px 0 #B5B5B5;
	background-color:#FFF;
	}
	
.textShadow{
	text-shadow: 1px 1px 3px #1c1c1c;
	}
	
.textMessage{
	max-width:300px;
	min-width:75px;
	min-height:37px;
	text-align:left;
	line-height:1.2em;
	color:#474b4f;
	display:inline-block;
	vertical-align:top;
	position:relative;
	padding:10px;
	font-size:14px;
	font-weight:500;
	background: #b4e391; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2I0ZTM5MSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzYxYzQxOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNiNGUzOTEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  #b4e391 0%, #61c419 50%, #b4e391 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b4e391), color-stop(50%,#61c419), color-stop(100%,#b4e391)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #b4e391 0%,#61c419 50%,#b4e391 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #b4e391 0%,#61c419 50%,#b4e391 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #b4e391 0%,#61c419 50%,#b4e391 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #b4e391 0%,#61c419 50%,#b4e391 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b4e391', endColorstr='#b4e391',GradientType=0 ); /* IE6-8 */
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow:  0px 0px 2px 0px ;
	box-shadow:  0px 0px 2px 0px ;
}

.textMessage:after {
	content:'';
	position:absolute;
	bottom:-10px;
	left:10px;
	border-width:10px 10px 0;
	border-style:solid;
	border-color:#b4e391 transparent;
	display:block;
	width:0;
}

.textMessage img{
	float:right;
	width:100px;
	margin-left:10px;
	-webkit-border-radius: 8px 8px 8px 8px;
	border-radius: 8px 8px 8px 8px;
	-webkit-box-shadow: 0 0 2px 1px #969696;
	box-shadow: 0 0 2px 1px #969696;
	}
	
.textMessageOutbound{
	max-width:300px;
	color:#474b4f;
	display:inline-block;
	vertical-align:top;
	position:relative;
	padding:10px;
	font-size:14px;
	font-weight:500;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d2d2d2+0,b7b7b7+47,d2d2d2+100 */
	background: #d2d2d2; /* Old browsers */
	background: -moz-linear-gradient(top,  #d2d2d2 0%, #b7b7b7 47%, #d2d2d2 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #d2d2d2 0%,#b7b7b7 47%,#d2d2d2 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #d2d2d2 0%,#b7b7b7 47%,#d2d2d2 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d2d2d2', endColorstr='#d2d2d2',GradientType=0 ); /* IE6-9 */
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow:  0px 0px 2px 0px ;
	box-shadow:  0px 0px 2px 0px ;
	margin-top:5px;
	margin-right:33.5%;
}
.textMessageOutbound:after {
	content:'';
	position:absolute;
	bottom:-10px;
	right:10px;
	border-width:10px 10px 0;
	border-style:solid;
	border-color:#d2d2d2 transparent;
	display:block;
	width:0;
}

.badgeNew{
	padding:2px 5px 2px 5px;
	margin:0 10px 0 10px;
	font-size:11px;
	font-weight:400;
	text-align:center;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:0px;
	line-height:inherit;
	vertical-align:middle;
	display:inline;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	
	color:#FFF !important;
	border:none;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#00b61e+0,02a41c+100 */
	background: #00b61e; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwYjYxZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMmE0MWMiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  #00b61e 0%, #02a41c 100%); /* FF3.6-15 */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#00b61e), color-stop(100%,#02a41c)); /* Chrome4-9,Safari4-5 */
	background: -webkit-linear-gradient(top,  #00b61e 0%,#02a41c 100%); /* Chrome10-25,Safari5.1-6 */
	background: -o-linear-gradient(top,  #00b61e 0%,#02a41c 100%); /* Opera 11.10-11.50 */
	background: -ms-linear-gradient(top,  #00b61e 0%,#02a41c 100%); /* IE10 preview */
	background: linear-gradient(to bottom,  #00b61e 0%,#02a41c 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00b61e', endColorstr='#02a41c',GradientType=0 ); /* IE6-8 */
	}


/*-------------Engager---------------------------*/

#engager{
	background:#87c6e8;
	}

#engager #engagerContent{
	display:inline-block;
	vertical-align:middle;
	width:64%;
	padding-top:45px;
	padding-bottom:45px;
	}
	
#engager #engagerContent h4{
	font-weight:500;
	font-size:30px;
	letter-spacing:-1px;
	color:#474b4f;
	margin-bottom:5px;
	}
	
#engager #engagerContent h5{
	color:#FFF;
	font-size:16px;
	}
	
#engager #engagerButtons{
	display:inline-block;
	vertical-align:middle;
	width:35%;
	text-align:right;
	padding-top:35px;
	padding-bottom:35px;
	}
	
#engager #engagerButtons a{
	margin:5px;
	min-width:250px;
	}
	
	
/*-------------Excellent Hands---------------------------*/

#excellentHands{
	text-align:center;
	padding-top:20px;
	padding-bottom:20px;
	}
	
#excellentHands .container h4{
	color:#00b61e;
	letter-spacing:-1px;
	font-size:18px;
	font-weight:400;
	margin-bottom:0px;
	}
	
#excellentHands .container #footerLogos{
	padding-top:20px;
	}
		
#excellentHands .container #footerLogos img{
	vertical-align:middle;
	margin:0 40px 0 40px;
	}
	
#excellentHands .container #footerLogos img:first-of-type{
	margin-left:0px;	
	}
	
#excellentHands .container #footerLogos img:last-of-type{
	margin-right:0px;	
	}



/*------------- footer ---------------------------*/
	
#footer{
	background-color:#3e4042;
	}
	
#footer a{
	color:#87c6e8;
	}

#footerLinksIframe{
	width:100%;
	}



#footerLinks{
	
	}

#footerLinks #footerLinksContent{
	width:100%;
	text-align:center;
	}
	
#footerLinks #footerLinksContent ul{
	display:inline-block;
	text-align:left;
	vertical-align:top;
	margin-top:20px;
	margin-bottom:20px;
	padding:0 10px 0 12px;
	}
	
#footerLinks #footerLinksContent ul:first-child{
	padding-left:0px;
	}
	
#footerLinks #footerLinksContent ul:last-child{
	padding-right:0px;
	}
	
#footerLinks #footerLinksContent ul li{
	list-style-type:none;
	margin:0 0 10px 0;
	}
	
#footerLinks #footerLinksContent ul li h3{
	color:#87c6e8;
	font-size:18px;
	font-weight:500;
	margin-bottom:20px;
	}
	
#footerLinks #footerLinksContent ul li a{
	color:#939597;
	font-weight:300;
	}
	
#footerLinks #footerLinksContent ul li a:hover{
	color:#c9cacb;
	}
	

#footerBottomIframe{
	width:100%;
	margin-top:35px;
	margin-bottom:15px;
	border-top: 1px solid #4f5152;
	}

#footerBottom{
	margin-bottom:5px;
	padding-top:20px;
	}
	
#footerBottom #footerBottomContent{
	color:#68696a;
	}
	
#footerBottom #footerBottomContent #left{
	display:inline-block;
	text-align:left;
	width:49.5%;
	vertical-align:top;
	}
	
#footerBottom #footerBottomContent #left #footerSocialIcons{
	margin-bottom:15px;
	}
	
#footerBottom #footerBottomContent #left #footerSocialIcons img{
	margin-right:15px;
	}
	
#footerBottom #footerBottomContent #left #miniTerms{
	margin-bottom:15px;
	font-size:12px;
	}
	
#footerBottom #footerBottomContent #left #miniTerms b{
	color:#939597;
	}
	
#footerBottom #footerBottomContent #left #americanOwned{
	font-size:12px;
	}
	
#footerBottom #footerBottomContent #left #americanOwned div{
	
	}
	
#footerBottom #footerBottomContent #left #americanOwned img{
	float:left;
	margin-right:5px;
	margin-top: 2px;
	}
		
#footerBottom #footerBottomContent #right{
	display:inline-block;
	text-align:right;
	width:50%;
	vertical-align:top;
	}
	
#footerBottom #footerBottomContent #right #copyright{
	margin-bottom:10px;
	font-size:12px;
	}
	
#footerBottom #footerBottomContent #right #cardsAccepted{
	margin-bottom:15px;
	}
	
#footerBottom #footerBottomContent #right #siteseal{
	
	}
	
#sitemapContainer{
	background-color:#272c31;
	}
	
#sitemapContainer a{
	color:#939597;
	}
	
#sitemapContainer a:hover{
	color:#c9cacb;
	}


/*------------- Lead Gen Popup ---------------------------*/

#contactModal{
	max-width:500px;
	margin-left:auto;
	margin-right:auto;
	margin-top:60px;
	margin-bottom:60px;
	padding:10px 35px 10px 35px;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	text-align:center;
	}
	
#contactModal h3{
	font-size:26px;
	font-weight:700;
	color:#00b61e;
	text-align:center;
	padding:15px 0 15px 0;
	}
	
#contactModal p{
	text-align:left;
	}
	
#contactModal select{
	width:60%;
	display:block;
	}
	
#contactModal .error{
	color:#f00134;
	text-align:left;
	}
	
#contactModal .error:empty{
	display:none;
	}
	
#contactModal input[name=address]{
	display:none;
	}
	
#contactModal input[type=submit]{
	width:100%;
	}
	
#contactModal #contactModalFormThankYou{
	display:none;
	text-align:center;
	padding-bottom:20px;
	}
	
#contactModal #contactModalFormThankYou p{
	text-align:center;
	margin-top:0px;
	}
	
/*-------------Media Queries---------------------------*/


@media all and (max-width: 768px) {
	body{
		font-size:16px;	
	}
	
	h1, h2, h3, h4, h5, h6, p{
	text-align:center;	
	}
	
	h2{
		font-size:24px;
		}
		
	h3{
		font-size:22px;
		}
		
	h4{
		font-size:20px;
		}
		
	h5{
		font-size:18px;
		}
		
	h6{
		font-size:16px;
		}
	
	p{
		line-height:1.8em;	
		margin-top:20px;
		margin-bottom:20px;
		}
	
	h1.lineThrough, h2.lineThrough, h3.lineThrough, h4.lineThrough{
	  display: block;
	  white-space:normal;
	}
	
	h1.lineThrough:before, h2.lineThrough:before, h3.lineThrough:before, h4.lineThrough:before{
	  display:none;
	}
	
	h1.lineThrough:after, h2.lineThrough:after, h3.lineThrough:after, h4.lineThrough:after{
	  display:none;
	}
	
	.col-2, .col-3, .col-4{
		width:100% !important;
		margin-bottom:50px !important;
		padding-left:0px;
		padding-right:0px;
		text-align:center;
		}
		
	.btn-xsmall, .btn-small,
	.btn-medium, .btn-large{
		padding:15px 20px;
		}
	
	.btn-large.responsive, .btn-medium.responsive,
	.btn-small.responsive, .btn-xsmall.responsive,
	form.responsive, table.responsive{
		width:100% !important;
		}
		
	form .form-group.half{
		width:100%;
		}
		
	form .form-group.half.left,
	form .form-group.half.right{
		float:none;
		}
		
	form .form-group input[type=text],
	form .form-group input[type=tel], 
	form .form-group input[type=password],
	form .form-group select,
	form .form-group textarea{
		font-size:18px;
		padding: 10px 10px;
		}
		
	form.horizontal.responsive .form-group label{
		text-align:left;
		width:auto !important;
		}
	
	form.horizontal .form-group input[type=text],
	form.horizontal .form-group input[type=tel], 
	form.horizontal .form-group input[type=password],
	form.horizontal .form-group select,
	form.horizontal .form-group textarea{
		width:100% !important;
		vertical-align:top;
		}
	
	form.inline .form-group{
		display:block;
		margin-bottom:10px;
		vertical-align:middle;
		}
	
	form.inline .form-group label{
		margin-bottom:5px;
		margin-right:10px;
		}
	
	form.inline .form-group input[type=text], form.inline .form-group input[type=tel], form.inline .form-group input[type=password], form.inline .form-group select, form.inline .form-group textarea{
		display:inline-block;
		vertical-align:middle;
		margin-bottom:0px;
		width:100% !important;
		}
	
	form .form-group select{
		width:100% !important;	
		}
		
	#mobileNavHelper{
		height:48px;
		}
	
	#nav{
		width:100%;
		overflow:hidden;
		position:fixed !important;
		z-index:99999999;
		left:0px;
		top:0px;
		background:#3e4042 !important;
		-webkit-box-shadow: 0 0 2px 0px #1f1f1f !important;
		box-shadow: 0 0 2px 0px #1f1f1f !important;
		}
		
	#nav.mobileClosed{
		height:50px;
		-webkit-transition: height .3s ease;
		-moz-transition: height .3s ease;
		-ms-transition: height .3s ease;
		-o-transition: height .3s ease;
		transition: height .3s ease;
		}
		
	#nav.mobileOpen{
		height:450px;
		-webkit-transition: height .3s ease;
		-moz-transition: height .3s ease;
		-ms-transition: height .3s ease;
		-o-transition: height .3s ease;
		transition: height .3s ease;
		}
		
	#nav.mobileOpen.showPhone{
		height:505px;
		}
		
	#nav #navContent ul li#mobileNavPhoneNumber{
		display:inline-block;
		}
		
	#nav #navContent{
		padding:0 0 0 0;
		}
	
	#nav #navContent #navLogo{
		height:26px !important;
		width:112.5px !important;
		margin-top:11px !important;
		margin-left:10px;
		float:left;
		}
		
	#nav #navContent #navPhoneNumber{
		display:none;
		}
		
	#nav #navContent #mobileMenuBtn{
		cursor:pointer;
		height:50px;
		width:100%;
		margin-top:0px;
		}
		
	#nav #navContent #mobileMenuBtn.mobileClosed{
		background-image:url(../images/icon_mobilemenu.png);
		background-size: 30px 24px;
		background-repeat:no-repeat;
		background-position:97% 12px;
	}
	
	#nav #navContent #mobileMenuBtn.mobileOpen{
		background-image:url(../images/icon_mobilemenux.png);
		background-size: 24px 24px;
		background-repeat:no-repeat;
		background-position:97% 12px;
	}
		
	#nav #navContent ul{
		list-style:none;
		float:none;
		padding:20px 0 20px 0;
		width:100%;
		box-sizing:border-box;
		}
		
	#nav #navContent ul li{
		float:none;
		text-align:left;
		width:100%;
		margin:0px !important;
		font-size:14px !important;
		}
		
	#nav #navContent ul li a{
		box-shadow:none !important;
		}
		
	#nav #navContent ul li#mobilecustomerlogin{
		display:block;
		}
		
		
	#nav #navContent ul li a{
		font-size:18px !important;
		text-decoration:none;
		display:block;
		padding:15px 20px 15px 20px;
		border:none;
		text-align:left;
		border-bottom: 1px solid #4f5152;
		-webkit-border-radius: 0px;
		border-radius: 0px;
		}
		
	#nav #navContent ul li a.textShadow{
		text-shadow:none;
		}
		
	#nav #navContent ul li:last-child a{
		border:none;
		}
		
	#nav #navContent ul li a:hover{
		background-color:#32373c;
		}
	
	#engager{
		background:#87c6e8;
		text-align:center;
		}

	#engager #engagerContent{
		width:100%;
		padding-top:25px;
		padding-bottom:25px;
		}
		
	#engager #engagerContent h4{
		margin-bottom:25px;
		}
		
	#engager #engagerContent h4 br{
		display:none;
		}
		
	#engager #engagerContent h5{
		font-size:18px;
		}
		
	#engager #engagerButtons{
		width:100%;
		text-align:center;
		padding-top:25px;
		padding-bottom:25px;
		}
		
	#engager #engagerButtons a{
		margin:10px;
		}
		
	#excellentHands .container h4{
		font-size:20px;
		margin-bottom:20px !important;
		}
	
	#excellentHands .container #footerLogos img{
		margin:0 15px 10px 15px !important;
		}
	
	
	#footer{
		text-align:center;
		}
	
	#footerLinks #footerLinksContent ul{
		width:100%;
		text-align:center;
		padding:0 0 0 0;
		margin-bottom:30px;
		}
		
	#footerLinks #footerLinksContent ul li{
		text-align:center;
		margin-bottom:15px;
		font-size:18px;
		}
		
	#footerLinks #footerLinksContent ul li h3{
		font-size:22px;
		}
		
	#footerBottom #footerBottomContent #left{
	width:100%;
	text-align:center;
	}
	
	#footerBottom #footerBottomContent #left #miniTerms{
	font-size:14px;
	}
	
	#footerBottom #footerBottomContent #left #footerSocialIcons{
	margin-bottom:25px;
	}
	
	#footerBottom #footerBottomContent #left #footerSocialIcons img{
	margin-left:8px;
	margin-right:8px;
	}
	
	#footerBottom #footerBottomContent #left #americanOwned{
	font-size:14px;
	width:175px;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:20px;
	}
	
	#footerBottom #footerBottomContent #right{
	width:100%;
	text-align:center;	
	}
	
	#footerBottom #footerBottomContent #right #copyright{
	margin-bottom:20px;
	font-size:14px;
	}
	
	#footerBottom #footerBottomContent #right #cardsAccepted{
	display:none;	
	}
	
	#leadGenPopup{
	padding:20px;
	}
}

@media all and (max-width: 992px) {
	
	#nav{
		
		}
	
	#nav #navContent{
		
		}
		
	#nav #navContent #navLogo{
		height:29px;
		width:120px;
		}
		
	#nav #navContent ul li#navSignup{
		display:none;
		}
		
	#nav #navContent ul li{
		margin:0 0 0 15px;
		}
		
	#excellentHands .container #footerLogos img{
		margin:0 22px 0 22px;
		}
}

@media all and (max-width: 1200px) {


}