windhamdavid 7 years ago
parent
commit
6dfd13db55
4 changed files with 1394 additions and 1323 deletions
  1. 6 11
      header.php
  2. 8 1
      js/climatecontrol.js
  3. 40 0
      page-home.php
  4. 1340 1311
      style.css

+ 6 - 11
header.php

@@ -36,22 +36,18 @@
 	<header id="masthead" class="site-header" role="banner">
 	<header id="masthead" class="site-header" role="banner">
 		<div class="header-main">
 		<div class="header-main">
 			<div class="inner-wrapper">
 			<div class="inner-wrapper">
+				<div class="header-left">
 				<div class="header-left">
 				<div class="header-left">
 					<div class="header-links">
 					<div class="header-links">
-						<?php if ( get_field('header_links', 'options') ) {
+						<a href='service-request/'>Service Request</a><a href='estimate-request/'>Estimate Request</a></div>
-							while( has_sub_field('header_links', 'options') ) {
+						<div class="phone"><a href="tel:+18642291409">864-229-1409</a></div>
-								$page = get_sub_field('page');
-								echo "<a href='" . get_permalink( $page->ID ) . "'>" . $page->post_title . "</a>";
-							}
-						} ?>
 					</div>
 					</div>
-					<div class="phone"><?php the_field('phone', 'options'); ?></div>
 				</div>
 				</div>
 				<div class="logo">
 				<div class="logo">
-					<a href="<?php bloginfo('url'); ?>"></a>
+					<a href="<?php bloginfo('url'); ?>"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/climate_control_logo.png"></a>
 				</div>
 				</div>
 				<!--<?php get_search_form(); ?>-->
 				<!--<?php get_search_form(); ?>-->
-				<div class="social">
+				<!--<div class="social">
 					<?php if ( get_field('social_media', 'options') ) {
 					<?php if ( get_field('social_media', 'options') ) {
 						echo "<ul class='social-links'>";
 						echo "<ul class='social-links'>";
 						while( has_sub_field('social_media', 'options') ) {
 						while( has_sub_field('social_media', 'options') ) {
@@ -59,7 +55,7 @@
 						}
 						}
 						echo "</ul>";
 						echo "</ul>";
 					} ?>
 					} ?>
-				</div>
+				</div>-->
 			</div>
 			</div>
 		</div>
 		</div>
 		<nav id="primary-navigation" class="site-navigation primary-navigation inner-wrapper " role="navigation">
 		<nav id="primary-navigation" class="site-navigation primary-navigation inner-wrapper " role="navigation">
@@ -70,5 +66,4 @@
 		</nav>
 		</nav>
 	</header><!-- #masthead -->
 	</header><!-- #masthead -->
 
 
-	<div class="bg-element"></div>
 	<div id="main" class="site-main">
 	<div id="main" class="site-main">

+ 8 - 1
js/climatecontrol.js

@@ -18,7 +18,14 @@ $(window).load( function() {
 });
 });
 
 
 $(function () {
 $(function () {
-  $("#menu-primary-menu").tinyNav();
+  $("#menu-primary-menu").tinyNav(
+	  {
+	    active: 'selected', // String: Set the "active" class
+	    header: 'Navigation', // String: Specify text for "header" and show header instead of the active item
+	    indent: '- ', // String: Specify text for indenting sub-items
+	    label: '' // String: Sets the <label> text for the <select> (if not set, no label will be added)
+	  }
+  );
 });
 });
 
 
 
 

+ 40 - 0
page-home.php

@@ -0,0 +1,40 @@
+<?php
+/*
+Template Name: Home
+*/
+?>
+<?php
+/**
+ * @package WordPress
+ * @subpackage Default_Theme
+ */
+
+get_header(); ?>
+<?php if ( is_front_page() ) { ?>
+	<div class="slider">
+		<div class="bg-color">
+			<div class="inner-wrapper">
+				<?php 
+    echo do_shortcode("[metaslider id=130 percentwidth=100]"); 
+?>
+			</div>
+		</div>
+	</div>
+<?php } ?>
+
+<div id="main-content" class="main-content inner-wrapper">
+	<div id="primary" class="content-area">
+		<div id="content" class="site-content" role="main">
+			<?php
+				// Start the Loop.
+				while ( have_posts() ) : the_post();
+					// Include the page content template.
+					get_template_part( 'content', 'page' );
+				endwhile;
+			?>
+		</div><!-- #content -->
+	</div><!-- #primary -->
+</div><!-- #main-content -->
+            
+
+<?php get_footer(); ?>

+ 1340 - 1311
style.css

@@ -1,1313 +1,1342 @@
-/* @override https://macs.local/cc/wp-content/themes/cc_17/style.css */
+/*
-
+Theme Name: Climate Control Services
-/* @override https://macs.local/cc/wp-content/themes/cc_17/style.css?ver=4.8 */
+Author: AdServices
-
+*/
-/*

+
-Theme Name: Climate Control Systems

+/**
-Author: AdServices

+ * Table of Contents:
-*/

+ *
-

+ * 1.0 - Reset
-/**

+ * 2.0 - Repeatable Patterns
- * Table of Contents:

+ * 3.0 - Basic Structure
- *

+ * 4.0 - Header
- * 1.0 - Reset

+ * 5.0 - Navigation
- * 2.0 - Repeatable Patterns

+ * 6.0 - Content
- * 3.0 - Basic Structure

+ *   6.1 - Post Thumbnail
- * 4.0 - Header

+ *   6.2 - Entry Header
- * 5.0 - Navigation

+ *   6.3 - Entry Meta
- * 6.0 - Content

+ *   6.4 - Entry Content
- *   6.1 - Post Thumbnail

+ *   6.5 - Galleries
- *   6.2 - Entry Header

+ *   6.6 - Post Formats
- *   6.3 - Entry Meta

+ *   6.7 - Post/Image/Paging Navigation
- *   6.4 - Entry Content

+ *   6.8 - Attachments
- *   6.5 - Galleries

+ *   6.9 - Archives
- *   6.6 - Post Formats

+ *   6.10 - Contributor Page
- *   6.7 - Post/Image/Paging Navigation

+ *   6.11 - 404 Page
- *   6.8 - Attachments

+ *   6.12 - Full-width
- *   6.9 - Archives

+ *   6.13 - Singular
- *   6.10 - Contributor Page

+ *   6.14 - Comments
- *   6.11 - 404 Page

+ * 7.0 - Sidebar
- *   6.12 - Full-width

+ *   7.1 - Widgets
- *   6.13 - Singular

+ *   7.2 - Content Sidebar Widgets
- *   6.14 - Comments

+ * 8.0 - Footer
- * 7.0 - Sidebar

+ * 9.0 - Featured Content
- *   7.1 - Widgets

+ * 10.0 - Fluid Columns
- *   7.2 - Content Sidebar Widgets

+ * 11.0 - Media Queries
- * 8.0 - Footer

+ * 12.0 - Print
- * 9.0 - Featured Content

+ * -----------------------------------------------------------------------------
- * 10.0 - Fluid Columns

+ */
- * 11.0 - Media Queries

+
- * 12.0 - Print

+
- * -----------------------------------------------------------------------------

+/**
- */

+ * 1.0 Reset
-

+ *
-

+ * Resetting and rebuilding styles have been helped along thanks to the fine
-/**

+ * work of Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
- * 1.0 Reset

+ * along with Nicolas Gallagher and Jonathan Neal
- *

+ * http://necolas.github.com/normalize.css/ and Blueprint
- * Resetting and rebuilding styles have been helped along thanks to the fine

+ * http://www.blueprintcss.org/
- * work of Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html

+ *
- * along with Nicolas Gallagher and Jonathan Neal

+ * -----------------------------------------------------------------------------
- * http://necolas.github.com/normalize.css/ and Blueprint

+ */
- * http://www.blueprintcss.org/

+
- *

+html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
- * -----------------------------------------------------------------------------

+	border: 0;
- */

+	font-family: inherit;
-

+	font-size: 100%;
-html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {

+	font-style: inherit;
-	border: 0;

+	font-weight: inherit;
-	font-family: inherit;

+	margin: 0;
-	font-size: 100%;

+	outline: 0;
-	font-style: inherit;

+	padding: 0;
-	font-weight: inherit;

+	vertical-align: baseline;
-	margin: 0;

+}
-	outline: 0;

+
-	padding: 0;

+article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
-	vertical-align: baseline;

+	display: block;
-}

+}
-

+
-article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {

+audio, can vas, video {
-	display: block;

+	display: inline-block;
-}

+	max-width: 100%;
-

+}
-audio, can vas, video {

+
-	display: inline-block;

+html {
-	max-width: 100%;

+	overflow-y: scroll;
-}

+	-webkit-text-size-adjust: 100%;
-

+	-ms-text-size-adjust:     100%;
-html {

+}
-	overflow-y: scroll;

+
-	-webkit-text-size-adjust: 100%;

+html, body {
-	-ms-text-size-adjust:     100%;

+	height:100%;
-}

+	position: relative;
-

+}
-html, body {

+
-	height:100%;

+body, button, input, select, textarea {
-	position: relative;

+	color: #2b2b2b;
-}

+	font-family: 'Economica', sans-serif;
-

+	font-size: 16px;
-body, button, input, select, textarea {

+	font-weight: 400;
-	color: #2b2b2b;

+	line-height: 1.5;
-	font-family: 'Economica', sans-serif;

+}
-	font-size: 16px;

+
-	font-weight: 400;

+body {
-	line-height: 1.5;

+}
-}

+
-

+p {
-body {

+	font-size: 16px;
-}

+	line-height: 1.3em;
-

+	margin-bottom:1em;
-p {

+}
-	font-size: 16px;

+
-	line-height: 1.3em;

+a {
-	margin-bottom:1em;

+	text-decoration: none;
-}

+}
-

+
-a {

+a:hover, a:active {
-	text-decoration: none;

+	outline: 0;
-}

+}
-

+
-a:hover, a:active {

+a:active, a:hover {
-	outline: 0;

+}
-}

+
-

+h1, h2, h3, h4, h5, h6 {
-a:active, a:hover {

+	clear: both;
-}

+	font-weight: 700;
-

+	margin:0 0 .7em 0;
-h1, h2, h3, h4, h5, h6 {

+	color:#7a1919;
-	clear: both;

+	text-transform: uppercase;
-	font-weight: 700;

+}
-	margin:0 0 .7em 0;

+
-	color:#7a1919;

+h1 {
-	text-transform: uppercase;

+	font-size: 30px;
-}

+	line-height: 1;
-

+}
-h1 {

+
-	font-size: 30px;

+h2 {
-	line-height: 1;

+	font-size: 26px;
-}

+	line-height: 1;
-

+}
-h2 {

+
-	font-size: 26px;

+h3 {
-	line-height: 1;

+	font-size: 22px;
-}

+	line-height: 1.0909090909;
-

+}
-h3 {

+
-	font-size: 22px;

+h4 {
-	line-height: 1.0909090909;

+	font-size: 20px;
-}

+	line-height: 1.2;
-

+}
-h4 {

+
-	font-size: 20px;

+h5 {
-	line-height: 1.2;

+	font-size: 18px;
-}

+	line-height: 1.3333333333;
-

+}
-h5 {

+
-	font-size: 18px;

+h6 {
-	line-height: 1.3333333333;

+	font-size: 16px;
-}

+	line-height: 1.5;
-

+}
-h6 {

+
-	font-size: 16px;

+address {
-	line-height: 1.5;

+	font-style: italic;
-}

+	margin-bottom: 24px;
-

+}
-address {

+
-	font-style: italic;

+abbr[title] {
-	margin-bottom: 24px;

+	border-bottom: 1px dotted #2b2b2b;
-}

+	cursor: help;
-

+}
-abbr[title] {

+
-	border-bottom: 1px dotted #2b2b2b;

+b, strong {
-	cursor: help;

+	font-weight: 700;
-}

+}
-

+
-b, strong {

+cite, dfn, em, i {
-	font-weight: 700;

+	font-style: italic;
-}

+}
-

+
-cite, dfn, em, i {

+mark, ins {
-	font-style: italic;

+	background: #fff9c0;
-}

+	text-decoration: none;
-

+}
-mark, ins {

+
-	background: #fff9c0;

+code, kbd, tt, var, samp, pre {
-	text-decoration: none;

+	font-family: monospace, serif;
-}

+	font-size: 15px;
-

+	-webkit-hyphens: none;
-code, kbd, tt, var, samp, pre {

+	-moz-hyphens:    none;
-	font-family: monospace, serif;

+	-ms-hyphens:     none;
-	font-size: 15px;

+	hyphens:         none;
-	-webkit-hyphens: none;

+	line-height: 1.6;
-	-moz-hyphens:    none;

+}
-	-ms-hyphens:     none;

+
-	hyphens:         none;

+pre {
-	line-height: 1.6;

+	border: 1px solid rgba(0, 0, 0, 0.1);
-}

+	-webkit-box-sizing: border-box;
-

+	-moz-box-sizing:    border-box;
-pre {

+	box-sizing:         border-box;
-	border: 1px solid rgba(0, 0, 0, 0.1);

+	margin-bottom: 24px;
-	-webkit-box-sizing: border-box;

+	max-width: 100%;
-	-moz-box-sizing:    border-box;

+	overflow: auto;
-	box-sizing:         border-box;

+	padding: 12px;
-	margin-bottom: 24px;

+	white-space: pre;
-	max-width: 100%;

+	white-space: pre-wrap;
-	overflow: auto;

+	word-wrap: break-word;
-	padding: 12px;

+}
-	white-space: pre;

+
-	white-space: pre-wrap;

+blockquote, q {
-	word-wrap: break-word;

+	-webkit-hyphens: none;
-}

+	-moz-hyphens:    none;
-

+	-ms-hyphens:     none;
-blockquote, q {

+	hyphens:         none;
-	-webkit-hyphens: none;

+	quotes: none;
-	-moz-hyphens:    none;

+}
-	-ms-hyphens:     none;

+
-	hyphens:         none;

+blockquote:before, blockquote:after, q:before, q:after {
-	quotes: none;

+	content: "";
-}

+	content: none;
-

+}
-blockquote:before, blockquote:after, q:before, q:after {

+
-	content: "";

+blockquote {
-	content: none;

+	color: #767676;
-}

+	font-size: 19px;
-

+	font-style: italic;
-blockquote {

+	font-weight: 300;
-	color: #767676;

+	line-height: 1.2631578947;
-	font-size: 19px;

+	margin-bottom: 24px;
-	font-style: italic;

+}
-	font-weight: 300;

+
-	line-height: 1.2631578947;

+blockquote cite, blockquote small {
-	margin-bottom: 24px;

+	color: #2b2b2b;
-}

+	font-size: 16px;
-

+	font-weight: 400;
-blockquote cite, blockquote small {

+	line-height: 1.5;
-	color: #2b2b2b;

+}
-	font-size: 16px;

+
-	font-weight: 400;

+blockquote em, blockquote i, blockquote cite {
-	line-height: 1.5;

+	font-style: normal;
-}

+}
-

+
-blockquote em, blockquote i, blockquote cite {

+blockquote strong, blockquote b {
-	font-style: normal;

+	font-weight: 400;
-}

+}
-

+
-blockquote strong, blockquote b {

+small {
-	font-weight: 400;

+	font-size: smaller;
-}

+}
-

+
-small {

+big {
-	font-size: smaller;

+	font-size: 125%;
-}

+}
-

+
-big {

+sup, sub {
-	font-size: 125%;

+	font-size: 75%;
-}

+	height: 0;
-

+	line-height: 0;
-sup, sub {

+	position: relative;
-	font-size: 75%;

+	vertical-align: baseline;
-	height: 0;

+}
-	line-height: 0;

+
-	position: relative;

+sup {
-	vertical-align: baseline;

+	bottom: 1ex;
-}

+}
-

+
-sup {

+sub {
-	bottom: 1ex;

+	top: .5ex;
-}

+}
-

+
-sub {

+dl {
-	top: .5ex;

+	margin-bottom: 24px;
-}

+}
-

+
-dl {

+dt {
-	margin-bottom: 24px;

+	font-weight: bold;
-}

+}
-

+
-dt {

+dd {
-	font-weight: bold;

+	margin-bottom: 24px;
-}

+}
-

+
-dd {

+ul, ol {
-	margin-bottom: 24px;

+	list-style: none;
-}

+	margin: 0 0 24px 20px;
-

+}
-ul, ol {

+
-	list-style: none;

+ul {
-	margin: 0 0 24px 20px;

+	list-style: disc;
-}

+}
-

+
-ul {

+ol {
-	list-style: disc;

+	list-style: decimal;
-}

+}
-

+
-ol {

+li > ul, li > ol {
-	list-style: decimal;

+	margin: 0 0 0 20px;
-}

+}
-

+
-li > ul, li > ol {

+img {
-	margin: 0 0 0 20px;

+	-ms-interpolation-mode: bicubic;
-}

+	border: 0;
-

+	vertical-align: middle;
-img {

+}
-	-ms-interpolation-mode: bicubic;

+
-	border: 0;

+figure {
-	vertical-align: middle;

+	margin: 0;
-}

+}
-

+
-figure {

+fieldset {
-	margin: 0;

+	border: 1px solid rgba(0, 0, 0, 0.1);
-}

+	margin: 0 0 24px;
-

+	padding: 11px 12px 0;
-fieldset {

+}
-	border: 1px solid rgba(0, 0, 0, 0.1);

+
-	margin: 0 0 24px;

+legend {
-	padding: 11px 12px 0;

+	white-space: normal;
-}

+}
-

+
-legend {

+button, input, select, textarea {
-	white-space: normal;

+	-webkit-box-sizing: border-box;
-}

+	-moz-box-sizing:    border-box;
-

+	box-sizing:         border-box;
-button, input, select, textarea {

+	font-size: 100%;
-	-webkit-box-sizing: border-box;

+	margin: 0;
-	-moz-box-sizing:    border-box;

+	max-width: 100%;
-	box-sizing:         border-box;

+	vertical-align: baseline;
-	font-size: 100%;

+}
-	margin: 0;

+
-	max-width: 100%;

+button, input {
-	vertical-align: baseline;

+	line-height: normal;
-}

+}
-

+
-button, input {

+input, textarea {
-	line-height: normal;

+	background-image: -webkit-linear-gradient(hsla(0,0%,100%,0), hsla(0,0%,100%,0)); /* Removing the inner shadow, rounded corners on iOS inputs */
-}

+}
-

+
-input, textarea {

+button, html input[type="button"], input[type="reset"], input[type="submit"] {
-	background-image: -webkit-linear-gradient(hsla(0,0%,100%,0), hsla(0,0%,100%,0)); /* Removing the inner shadow, rounded corners on iOS inputs */

+	-webkit-appearance: button;
-}

+	cursor: pointer;
-

+}
-button, html input[type="button"], input[type="reset"], input[type="submit"] {

+
-	-webkit-appearance: button;

+button[disabled], input[disabled] {
-	cursor: pointer;

+	cursor: default;
-}

+}
-

+
-button[disabled], input[disabled] {

+input[type="checkbox"], input[type="radio"] {
-	cursor: default;

+	padding: 0;
-}

+}
-

+
-input[type="checkbox"], input[type="radio"] {

+input[type="search"] {
-	padding: 0;

+	-webkit-appearance: textfield;
-}

+}
-

+
-input[type="search"] {

+input[type="search"]::-webkit-search-decoration {
-	-webkit-appearance: textfield;

+	-webkit-appearance: none;
-}

+}
-

+
-input[type="search"]::-webkit-search-decoration {

+button::-moz-focus-inner, input::-moz-focus-inner {
-	-webkit-appearance: none;

+	border: 0;
-}

+	padding: 0;
-

+}
-button::-moz-focus-inner, input::-moz-focus-inner {

+
-	border: 0;

+textarea {
-	padding: 0;

+	overflow: auto;
-}

+	vertical-align: top;
-

+}
-textarea {

+
-	overflow: auto;

+table {
-	vertical-align: top;

+	border-collapse: separate;
-}

+	border-spacing: 0;
-

+	border-width: 1px 0 0 1px;
-table {

+	margin-bottom: 24px;
-	border-collapse: separate;

+	width: 100%;
-	border-spacing: 0;

+}
-	border-width: 1px 0 0 1px;

+
-	margin-bottom: 24px;

+caption, th, td {
-	width: 100%;

+	font-weight: normal;
-}

+	text-align: left;
-

+}
-caption, th, td {

+
-	font-weight: normal;

+th {
-	text-align: left;

+	border-width: 0 1px 1px 0;
-}

+	font-weight: bold;
-

+}
-th {

+
-	border-width: 0 1px 1px 0;

+td {
-	font-weight: bold;

+	border-width: 0 1px 1px 0;
-}

+}
-

+
-td {

+del {
-	border-width: 0 1px 1px 0;

+	color: #767676;
-}

+}
-

+
-del {

+hr {
-	color: #767676;

+	background-color: rgba(0, 0, 0, 0.1);
-}

+	border: 0;
-

+	height: 1px;
-hr {

+	margin-bottom: 23px;
-	background-color: rgba(0, 0, 0, 0.1);

+}
-	border: 0;

+
-	height: 1px;

+/* Support a widely-adopted but non-standard selector for text selection styles
-	margin-bottom: 23px;

+ * to achieve a better experience. See http://core.trac.wordpress.org/ticket/25898.
-}

+ */
-

+::selection {
-/* Support a widely-adopted but non-standard selector for text selection styles

+	background: #7a1919;
- * to achieve a better experience. See http://core.trac.wordpress.org/ticket/25898.

+	color: #fff;
- */

+	text-shadow: none;
-::selection {

+}
-	background: #7a1919;

+
-	color: #fff;

+::-moz-selection {
-	text-shadow: none;

+	background: #7a1919;
-}

+	color: #fff;
-

+	text-shadow: none;
-::-moz-selection {

+}
-	background: #7a1919;

+
-	color: #fff;

+
-	text-shadow: none;

+/**
-}

+ * 2.0 Repeatable Patterns
-

+ * -----------------------------------------------------------------------------
-

+ */
-/**

+
- * 2.0 Repeatable Patterns

+/* Input fields */
- * -----------------------------------------------------------------------------

+
- */

+input, textarea {
-

+	border: 1px solid rgba(0, 0, 0, 0.1);
-/* Input fields */

+	border-radius: 2px;
-

+	color: #2b2b2b;
-input, textarea {

+	padding: 8px 10px 7px;
-	border: 1px solid rgba(0, 0, 0, 0.1);

+}
-	border-radius: 2px;

+
-	color: #2b2b2b;

+textarea {
-	padding: 8px 10px 7px;

+	width: 100%;
-}

+}
-

+
-textarea {

+input:focus, textarea:focus {
-	width: 100%;

+	border: 1px solid rgba(0, 0, 0, 0.3);
-}

+	outline: 0;
-

+}
-input:focus, textarea:focus {

+
-	border: 1px solid rgba(0, 0, 0, 0.3);

+/* Buttons */
-	outline: 0;

+
-}

+
-

+/* Placeholder text color -- selectors need to be separate to work. */
-/* Buttons */

+
-

+::-webkit-input-placeholder {
-

+	color: #7a1919;
-/* Placeholder text color -- selectors need to be separate to work. */

+}
-

+
-::-webkit-input-placeholder {

+:-moz-placeholder {
-	color: #7a1919;

+	color: #7a1919;
-}

+}
-

+
-:-moz-placeholder {

+::-moz-placeholder {
-	color: #7a1919;

+	color: #7a1919;
-}

+	opacity: 1; /* Since FF19 lowers the opacity of the placeholder by default */
-

+}
-::-moz-placeholder {

+
-	color: #7a1919;

+:-ms-input-placeholder {
-	opacity: 1; /* Since FF19 lowers the opacity of the placeholder by default */

+	color: #7a1919;
-}

+}
-

+
-:-ms-input-placeholder {

+/* Responsive images. Fluid images for posts, comments, and widgets */
-	color: #7a1919;

+
-}

+.comment-content img, .entry-content img, .entry-summary img, #site-header img, .widget img, .wp-caption {
-

+	max-width: 100%;
-/* Responsive images. Fluid images for posts, comments, and widgets */

+}
-

+
-.comment-content img, .entry-content img, .entry-summary img, #site-header img, .widget img, .wp-caption {

+/**
-	max-width: 100%;

+ * Make sure images with WordPress-added height and width attributes are
-}

+ * scaled correctly.
-

+ */
-/**

+
- * Make sure images with WordPress-added height and width attributes are

+.comment-content img[height], .entry-content img, .entry-summary img, img[class*="align"], img[class*="wp-image-"], img[class*="attachment-"], #site-header img {
- * scaled correctly.

+	height: auto;
- */

+}
-

+
-.comment-content img[height], .entry-content img, .entry-summary img, img[class*="align"], img[class*="wp-image-"], img[class*="attachment-"], #site-header img {

+img.size-full, img.size-large, .wp-post-image, .post-thumbnail img {
-	height: auto;

+	height: auto;
-}

+	max-width: 100%;
-

+}
-img.size-full, img.size-large, .wp-post-image, .post-thumbnail img {

+
-	height: auto;

+/* Make sure embeds and iframes fit their containers */
-	max-width: 100%;

+
-}

+embed, iframe, object, video {
-

+	margin-bottom: 24px;
-/* Make sure embeds and iframes fit their containers */

+	max-width: 100%;
-

+}
-embed, iframe, object, video {

+
-	margin-bottom: 24px;

+p > embed, p > iframe, p > object, span > embed, span > iframe, span > object {
-	max-width: 100%;

+	margin-bottom: 0;
-}

+}
-

+
-p > embed, p > iframe, p > object, span > embed, span > iframe, span > object {

+/* Alignment */
-	margin-bottom: 0;

+
-}

+.alignleft {
-

+	float: left;
-/* Alignment */

+}
-

+
-.alignleft {

+.alignright {
-	float: left;

+	float: right;
-}

+}
-

+
-.alignright {

+.aligncenter {
-	float: right;

+	display: block;
-}

+	margin-left: auto;
-

+	margin-right: auto;
-.aligncenter {

+}
-	display: block;

+
-	margin-left: auto;

+blockquote.alignleft, img.alignleft {
-	margin-right: auto;

+	margin: 7px 24px 7px 0;
-}

+}
-

+
-blockquote.alignleft, img.alignleft {

+.wp-caption.alignleft {
-	margin: 7px 24px 7px 0;

+	margin: 7px 14px 7px 0;
-}

+}
-

+
-.wp-caption.alignleft {

+blockquote.alignright, img.alignright {
-	margin: 7px 14px 7px 0;

+	margin: 7px 0 7px 24px;
-}

+}
-

+
-blockquote.alignright, img.alignright {

+.wp-caption.alignright {
-	margin: 7px 0 7px 24px;

+	margin: 7px 0 7px 14px;
-}

+}
-

+
-.wp-caption.alignright {

+blockquote.aligncenter, img.aligncenter, .wp-caption.aligncenter {
-	margin: 7px 0 7px 14px;

+	margin-top: 7px;
-}

+	margin-bottom: 7px;
-

+}
-blockquote.aligncenter, img.aligncenter, .wp-caption.aligncenter {

+
-	margin-top: 7px;

+.site-content blockquote.alignleft, .site-content blockquote.alignright {
-	margin-bottom: 7px;

+	border-top: 1px solid rgba(0, 0, 0, 0.1);
-}

+	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
-

+	padding-top: 17px;
-.site-content blockquote.alignleft, .site-content blockquote.alignright {

+	width: 50%;
-	border-top: 1px solid rgba(0, 0, 0, 0.1);

+}
-	border-bottom: 1px solid rgba(0, 0, 0, 0.1);

+
-	padding-top: 17px;

+.site-content blockquote.alignleft p, .site-content blockquote.alignright p {
-	width: 50%;

+	margin-bottom: 17px;
-}

+}
-

+
-.site-content blockquote.alignleft p, .site-content blockquote.alignright p {

+.wp-caption {
-	margin-bottom: 17px;

+	margin-bottom: 24px;
-}

+}
-

+
-.wp-caption {

+.wp-caption img[class*="wp-image-"] {
-	margin-bottom: 24px;

+	display: block;
-}

+	margin: 0;
-

+}
-.wp-caption img[class*="wp-image-"] {

+
-	display: block;

+.wp-caption {
-	margin: 0;

+	color: #767676;
-}

+}
-

+
-.wp-caption {

+.wp-caption-text {
-	color: #767676;

+	-webkit-box-sizing: border-box;
-}

+	-moz-box-sizing:    border-box;
-

+	box-sizing:         border-box;
-.wp-caption-text {

+	font-size: 12px;
-	-webkit-box-sizing: border-box;

+	font-style: italic;
-	-moz-box-sizing:    border-box;

+	line-height: 1.5;
-	box-sizing:         border-box;

+	margin: 9px 0;
-	font-size: 12px;

+	padding-right: 10px;
-	font-style: italic;

+}
-	line-height: 1.5;

+
-	margin: 9px 0;

+.wp-smiley {
-	padding-right: 10px;

+	border: 0;
-}

+	margin-bottom: 0;
-

+	margin-top: 0;
-.wp-smiley {

+	padding: 0;
-	border: 0;

+}
-	margin-bottom: 0;

+
-	margin-top: 0;

+/* Assistive text */
-	padding: 0;

+
-}

+.screen-reader-text {
-

+	clip: rect(1px, 1px, 1px, 1px);
-/* Assistive text */

+	position: absolute;
-

+}
-.screen-reader-text {

+
-	clip: rect(1px, 1px, 1px, 1px);

+.screen-reader-text:focus {
-	position: absolute;

+	background-color: #f1f1f1;
-}

+	border-radius: 3px;
-

+	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
-.screen-reader-text:focus {

+	clip: auto;
-	background-color: #f1f1f1;

+	color: #21759b;
-	border-radius: 3px;

+	display: block;
-	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);

+	font-size: 14px;
-	clip: auto;

+	font-weight: bold;
-	color: #21759b;

+	height: auto;
-	display: block;

+	line-height: normal;
-	font-size: 14px;

+	padding: 15px 23px 14px;
-	font-weight: bold;

+	position: absolute;
-	height: auto;

+	left: 5px;
-	line-height: normal;

+	top: 5px;
-	padding: 15px 23px 14px;

+	text-decoration: none;
-	position: absolute;

+	text-transform: none;
-	left: 5px;

+	width: auto;
-	top: 5px;

+	z-index: 100000; /* Above WP toolbar */
-	text-decoration: none;

+}
-	text-transform: none;

+
-	width: auto;

+.hide {
-	z-index: 100000; /* Above WP toolbar */

+	display: none;
-}

+}
-

+
-.hide {

+/* Clearing floats */
-	display: none;

+
-}

+.footer-sidebar:before, .footer-sidebar:after, .hentry:before, .hentry:after, .slider-direction-nav:before, .slider-direction-nav:after, .contributor-info:before, .contributor-info:after, .search-box:before, .search-box:after, [class*="content"]:before, [class*="content"]:after, [class*="site"]:before, [class*="site"]:after {
-

+	content: "";
-/* Clearing floats */

+	display: table;
-

+}
-.footer-sidebar:before, .footer-sidebar:after, .hentry:before, .hentry:after, .slider-direction-nav:before, .slider-direction-nav:after, .contributor-info:before, .contributor-info:after, .search-box:before, .search-box:after, [class*="content"]:before, [class*="content"]:after, [class*="site"]:before, [class*="site"]:after {

+
-	content: "";

+.footer-sidebar:after, .hentry:after, .slider-direction-nav:after, .contributor-info:after, .search-box:after, [class*="content"]:after, [class*="site"]:after {
-	display: table;

+	clear: both;
-}

+}
-

+.clear {
-.footer-sidebar:after, .hentry:after, .slider-direction-nav:after, .contributor-info:after, .search-box:after, [class*="content"]:after, [class*="site"]:after {

+	float:none;
-	clear: both;

+	clear:both;
-}

+}
-.clear {

+
-	float:none;

+/* Genericons */
-	clear:both;

+
-}

+.bypostauthor > article .fn:before .comment-edit-link:before .comment-reply-link:before .comment-reply-login:before .comment-reply-title small a:before .contributor-posts-link:before .menu-toggle:before .search-toggle:before .slider-direction-nav a:before .widget_twentyfourteen_ephemera .widget-title:before {
-

+	-webkit-font-smoothing: antialiased;
-/* Genericons */

+	display: inline-block;
-

+	font: normal 16px/1 Genericons;
-.bypostauthor > article .fn:before .comment-edit-link:before .comment-reply-link:before .comment-reply-login:before .comment-reply-title small a:before .contributor-posts-link:before .menu-toggle:before .search-toggle:before .slider-direction-nav a:before .widget_twentyfourteen_ephemera .widget-title:before {

+	text-decoration: inherit;
-	-webkit-font-smoothing: antialiased;

+	vertical-align: text-bottom;
-	display: inline-block;

+}
-	font: normal 16px/1 Genericons;

+
-	text-decoration: inherit;

+/* Separators */
-	vertical-align: text-bottom;

+
-}

+.site-content span + .entry-date:before, .full-size-link:before, .parent-post-link:before, span + .byline:before, span + .comments-link:before, span + .edit-link:before, .widget_twentyfourteen_ephemera .entry-title:after {
-

+	content: "\0020\007c\0020";
-/* Separators */

+}
-

+
-.site-content span + .entry-date:before, .full-size-link:before, .parent-post-link:before, span + .byline:before, span + .comments-link:before, span + .edit-link:before, .widget_twentyfourteen_ephemera .entry-title:after {

+table {
-	content: "\0020\007c\0020";

+	color:#7a1919;
-}

+}
-

+table td {
-table {

+	font-weight: bold;
-	color:#7a1919;

+	font-size: 14px;
-}

+}
-table td {

+
-	font-weight: bold;

+
-	font-size: 14px;

+/**
-}

+ * 3.0 Basic Structure
-

+ * -----------------------------------------------------------------------------
-

+ */
-/**

+.inner-wrapper {
- * 3.0 Basic Structure

+	width:940px;
- * -----------------------------------------------------------------------------

+	position: relative;
- */

+	margin:0 auto;
-.inner-wrapper {

+}
-	width:980px;

+#page {
-	position: relative;

+	padding-top:140px;
-	margin:0 auto;

+	min-height: calc(100% - 140px);
-}

+	position: relative;
-#page {

+	background:#CCC;
-	padding-top:140px;

+}
-	min-height: calc(100% - 140px);

+
-	position: relative;

+#main {
-	background:#CCC;

+	position: relative;
-}

+	z-index: 5;
-.bg-element {

+	padding-bottom:100px;
-	position:fixed;

+}
-	width:980px;

+#main-content {
-	top:0;

+	background: #fff;
-	left:50%;

+}
-	margin-left:-490px;

+#primary {
-	height:100%;

+
-	z-index: 0;

+	padding:20px;
-	background:white;

+	position: relative;
-}

+	z-index: 10;
-#main {

+	/*padding-bottom:;*/
-	position: relative;

+}
-	z-index: 5;

+
-	padding-bottom:100px;

+/**
-}

+ * 4.0 Header
-#main-content {

+ * -----------------------------------------------------------------------------
-}

+ */
-#primary {

+
-	width:940px;

+/* Ensure that there is no gap between the header and
-	padding:20px;

+   the admin bar for WordPress versions before 3.8. */
-	min-height: calc(100% - 140px);

+#wpadminbar {
-	background:white;

+	min-height: 32px;
-	position: relative;

+}
-	z-index: 10;

+header#masthead {
-	/*padding-bottom:;*/

+	background: #D1D1D1;
-}

+	padding-top:0px;
-

+	position: fixed;
-/**

+	z-index: 100;
- * 4.0 Header

+	width:100%;
- * -----------------------------------------------------------------------------

+	top:0;
- */

+	left:0;
-

+}
-/* Ensure that there is no gap between the header and

+.header-main {
-   the admin bar for WordPress versions before 3.8. */

+	background:white;
-#wpadminbar {

+}
-	min-height: 32px;

+.header-main .inner-wrapper {
-}

-header#masthead {

-	background: #D1D1D1; /* Old browsers */


-	padding-top:4px;

-	position: fixed;

-	z-index: 100;

-	width:100%;

-	height:136px;

-	top:0;

-	left:0;

-}

-.header-main {

-	background:white;

-}

-.header-main .inner-wrapper {

 	height: 107px;
 	height: 107px;
-	

+}
-}

+.logo {
-.logo {

+	position: absolute;
-	position: absolute;

+	top:10px;
-	top:10px;

+	left:50%;
-	left:50%;

+	margin-left:-152px;
-	margin-left:-152px;

+}
-}

+.logo a {
-.logo a {

+	display: block;
-	display: block;

+}
-	width:305px;

+.header-main .search-form {
-	height:85px;

+	position: absolute;
-	background:url('images/climate_control_logo.png') center center no-repeat;

+	top:10px;
-}

+	right:0;
-.header-main .search-form {

+	width:200px;
-	position: absolute;

+}
-	top:10px;

+input.search-field {
-	right:0;

+	border: 1px solid #7a1919;
-	width:200px;

+	padding: 2px 2px 2px 20px;
-}

+	color: #7a1919;
-input.search-field {

+	background:url('images/search_icon.png') left center no-repeat;
-	border: 1px solid #7a1919;

+	background-color: rgba(232,196,139,.5);
-	padding: 2px 2px 2px 20px;

+	border-radius: 0;
-	color: #7a1919;

+	width:90%;
-	background:url('images/search_icon.png') left center no-repeat;

+}
-	background-color: rgba(232,196,139,.5);

+input.search-submit {
-	border-radius: 0;

+	display: block;
-	width:90%;

+	text-indent: -9999px;
-}

+	padding: 0;
-input.search-submit {

+	width: 0;
-	display: block;

+	height: 0px;
-	text-indent: -9999px;

+	border: 10px solid transparent;
-	padding: 0;

+	border-right: 0;
-	width: 0;

+	border-left: 15px solid #7a1919;
-	height: 0px;

+	background: none;
-	border: 10px solid transparent;

+	float: right;
-	border-right: 0;

+	margin-top: 2px;
-	border-left: 15px solid #7a1919;

+}
-	background: none;

+.search-submit {
-	float: right;

+	display: none;
-	margin-top: 2px;

+}
-}

+.social {
-.search-submit {

+	position: absolute;
-	display: none;

+	right:0;
-}

+	bottom:10px;
-.social {

+}
-	position: absolute;

+.social .social-links {
-	right:0;

+	margin:0;
-	bottom:10px;

+}
-}

+.social .social-links li {
-.social .social-links {

+	display: inline-block;
-	margin:0;

+	list-style: none outside none;
-}

+}
-.social .social-links li {

+.social .social-links li a {
-	display: inline-block;

+	display: block;
-	list-style: none outside none;

+	font-weight: bold;
-}

+	padding:5px 30px 5px 5px;
-.social .social-links li a {

+	background-position: right center;
-	display: block;

+	background-repeat: no-repeat;
-	font-weight: bold;

+	color:#7a1919;
-	padding:5px 30px 5px 5px;

+}
-	background-position: right center;

+
-	background-repeat: no-repeat;

+.header-left{
-	color:#7a1919;

+	position: absolute;
-}

+	top:5px;
-

+	right:0;
-.header-left{

+	margin:0px 0px 10px;
-	position: absolute;

+}
-	top:10px;

+.header-left .header-links a {
-	left:0;

+	display: block;
-}

+	width:160px;
-.header-left .header-links a {

+	text-align: center;
-	display: block;

+	background:#7a1919;
-	width:160px;

-	text-align: center;

-	background:#7a1919;

-	color:white;

-	font-weight: bold;

-	font-size: 14px;

-	text-transform: uppercase;

-	margin-bottom:10px;

-}

-.header-left .phone {

-	font-size: 30px;

-	font-weight: bold;

-	color:#7a1919;

-	line-height: 1em;

-	text-align: center;

-}

-

-/**

- * 5.0 Navigation

- * -----------------------------------------------------------------------------

- */

-#primary-navigation, .menu-primary-menu-container {

-	position: relative;

-	z-index: 100;

-}

-#primary-navigation .nav-menu {

-	list-style: none outside none;

-	margin:0;

-	text-align: left;

-}

-#primary-navigation .nav-menu li {

-	display: block;

-	float:left;

-	position: relative;

-}

-#primary-navigation .nav-menu > li > a {

-	display: block;

-	font-size: 17px;

-	font-weight: bold;

-	color:#5a0000;

-	line-height: 17px;

-	padding:6px 12px;

-	text-transform: uppercase;

-}

-#primary-navigation .nav-menu > li:hover > a, #primary-navigation .nav-menu > li.current-menu-item > a, #primary-navigation .nav-menu > li.current-menu-ancestor > a {

 	color:white;
 	color:white;
-	background-color: #797979;
+	font-weight: bold;
-}

+	font-size: 14px;
-#primary-navigation .nav-menu li > ul {

+	text-transform: uppercase;
-	display: none;

+	margin-bottom:10px;
-	position: absolute;

+}
-	margin:0;

+.header-left .phone {
-	left:50%;

+	font-size: 30px;
-	-moz-transform: translateX(-50%);

+	font-weight: bold;
-	-webkit-transform: translateX(-50%);

+	color:#7a1919;
-	-o-transform: translateX(-50%);

+	line-height: 1em;
-	-ms-transform: translateX(-50%);

+	text-align: center;
-	transform: translateX(-50%);

+}
-	white-space: nowrap;

+
-	line-height: 18px;

+/**
-}

+ * 5.0 Navigation
-#primary-navigation .nav-menu li:hover > ul {

+ * -----------------------------------------------------------------------------
-	display: block;

+ */
-}

+#primary-navigation, .menu-primary-menu-container {
-#primary-navigation .nav-menu li > ul > li {

+	position: relative;
-	margin:0 3px 0 1px;

+	z-index: 100;
-	line-height: 20px;

+	margin: 3px 0 8px;
-	font-size: 14px;

+}
-	display: inline-block;

+#primary-navigation .nav-menu {
-	float:none;

+	list-style: none outside none;
-}

+	margin:0;
-#primary-navigation .nav-menu li > ul > li:before {

+	text-align: left;
-	content:" | ";

+}
-	color:white;

+#primary-navigation .nav-menu li {
-}

+	display: block;
-#primary-navigation .nav-menu li > ul > li:first-child:before {

+	float:left;
-	content:"";	

+	position: relative;
-}

+}
-#primary-navigation .nav-menu li > ul > li > a {

+#primary-navigation .nav-menu > li > a {
-	color:white;

+	display: block;
-	display: inline-block;

+	font-size: 17px;
-	padding:0 2px 0 4px;

+	font-weight: bold;
-}

+	color:#5a0000;
-.sub-nav-back {

+	line-height: 17px;
-	background: #452802; /* Old browsers */

+	padding:6px 12px;
-	background: -moz-linear-gradient(left,  #452802 0%, #ac8b59 15%, #ac8b59 50%, #ac8b59 85%, #ac8b59 85%, #452802 100%); /* FF3.6+ */

+	text-transform: uppercase;
-	background: -webkit-gradient(linear, left top, right top, color-stop(0%,#452802), color-stop(15%,#ac8b59), color-stop(50%,#ac8b59), color-stop(85%,#ac8b59), color-stop(85%,#ac8b59), color-stop(100%,#452802)); /* Chrome,Safari4+ */

+}
-	background: -webkit-linear-gradient(left,  #452802 0%,#ac8b59 15%,#ac8b59 50%,#ac8b59 85%,#ac8b59 85%,#452802 100%); /* Chrome10+,Safari5.1+ */

+#primary-navigation .nav-menu > li:hover > a, #primary-navigation .nav-menu > li.current-menu-item > a, #primary-navigation .nav-menu > li.current-menu-ancestor > a {
-	background: -o-linear-gradient(left,  #452802 0%,#ac8b59 15%,#ac8b59 50%,#ac8b59 85%,#ac8b59 85%,#452802 100%); /* Opera 11.10+ */

+	background: #4b4b4b;
-	background: -ms-linear-gradient(left,  #452802 0%,#ac8b59 15%,#ac8b59 50%,#ac8b59 85%,#ac8b59 85%,#452802 100%); /* IE10+ */

+	color:white;
-	background: linear-gradient(to right,  #452802 0%,#ac8b59 15%,#ac8b59 50%,#ac8b59 85%,#ac8b59 85%,#452802 100%); /* W3C */

+}
-	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#452802', endColorstr='#452802',GradientType=1 ); /* IE6-9 */

+#primary-navigation .nav-menu li > ul {
-	width:100%;

+	display: none;
-	position: absolute;

+	position: absolute;
-	z-index: 1;

+	margin:0;
-	left:-20px;

+	left:50%;
-	padding:0 20px;

+	-moz-transform: translateX(-50%);
-	height:20px;

+	-webkit-transform: translateX(-50%);
-	top:100%;

+	-o-transform: translateX(-50%);
-	display: none;

+	-ms-transform: translateX(-50%);
-}

+	transform: translateX(-50%);
-.sub-nav-back.show {

+	white-space: nowrap;
-	display: block;

+	line-height: 18px;
-}

+}
-

+#primary-navigation .nav-menu li:hover > ul {
-

+	display: block;
-/**

+}
- * 6.0 Content

+#primary-navigation .nav-menu li > ul > li {
- * -----------------------------------------------------------------------------

+	margin:0 3px 0 1px;
- */

+	line-height: 20px;
-.home .slider {

+	font-size: 14px;
-	background: #7f5516; /* Old browsers */

+	display: inline-block;
-	background: -moz-linear-gradient(left,  #7f5516 0%, #ba9458 15%, #e8c48b 50%, #ba9458 85%, #7f5516 100%); /* FF3.6+ */

+	float:none;
-	background: -webkit-gradient(linear, left top, right top, color-stop(0%,#7f5516), color-stop(15%,#ba9458), color-stop(50%,#e8c48b), color-stop(85%,#ba9458), color-stop(100%,#7f5516)); /* Chrome,Safari4+ */

+}
-	background: -webkit-linear-gradient(left,  #7f5516 0%,#ba9458 15%,#e8c48b 50%,#ba9458 85%,#7f5516 100%); /* Chrome10+,Safari5.1+ */

+#primary-navigation .nav-menu li > ul > li:before {
-	background: -o-linear-gradient(left,  #7f5516 0%,#ba9458 15%,#e8c48b 50%,#ba9458 85%,#7f5516 100%); /* Opera 11.10+ */

+	content:" | ";
-	background: -ms-linear-gradient(left,  #7f5516 0%,#ba9458 15%,#e8c48b 50%,#ba9458 85%,#7f5516 100%); /* IE10+ */

+	color:white;
-	background: linear-gradient(to right,  #7f5516 0%,#ba9458 15%,#e8c48b 50%,#ba9458 85%,#7f5516 100%); /* W3C */

+}
-	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7f5516', endColorstr='#7f5516',GradientType=1 ); /* IE6-9 */

+#primary-navigation .nav-menu li > ul > li:first-child:before {
-	padding-bottom:4px;

+	content:"";	
-}

+}
-.home .slider .bg-color {

+#primary-navigation .nav-menu li > ul > li > a {
-	background:#7a1919;

+	color:white;
-}

+	display: inline-block;
-.home .entry-content p {

+	padding:0 2px 0 4px;
-	font-size: 22px;

+}
-}

+.sub-nav-back {
-#slider img {

+	background: #452802;
-	display: none;

+	width:100%;
-}

+	position: absolute;
-#slider img:first-child {

+	z-index: 1;
-	display: block;

+	left:-20px;
-}

+	padding:0 20px;
-.content_area {

+	height:20px;
-	padding-left: 10px;

+	top:100%;
-	border-left: 3px solid #7a1919;

+	display: none;
-	margin: 25px 0;

+}
-}

+.sub-nav-back.show {
-.home .content_area {

+	display: block;
-	padding-left: 0px;

+}
-	border-left: none;

+
-	margin: 0;

+
-}

+/**
-.entry-content a {

+ * 6.0 Content
-	color:#7a1919;

+ * -----------------------------------------------------------------------------
-	font-weight: bold;

+ */
-}

+.home .slider {
-a.anchor{ display: block; position: relative; top: -160px; visibility: hidden; }

+	background: #7a1919;
-

+	padding-bottom:4px;
-/**

+}
- * 6.1 Post Thumbnail

+.home .slider .bg-color {
- * -----------------------------------------------------------------------------

+	background:#7a1919;
- */

+}
-

+.home .entry-content p {
-

+	font-size: 22px;
-/**

+}
- * 6.2 Entry Header

+#slider img {
- * -----------------------------------------------------------------------------

+	display: none;
- */

+}
-

+#slider img:first-child {
-

+	display: block;
-/**

+}
- * 6.3 Entry Meta

+.content_area {
- * -----------------------------------------------------------------------------

+	margin: 35px 0;
- */

+}
-

+.home .content_area {
-

+	padding-left: 0px;
-

+	border-left: none;
-

+	margin: 0;
-/**

+}
- * 6.4 Entry Content

+.entry-content a {
- * -----------------------------------------------------------------------------

+	color:#7a1919;
- */

+	font-weight: bold;
-.home .content_area > div { margin-left:-3px; }

+}
-.home .content_area > div:first-child {

+a.anchor{ display: block; position: relative; top: -160px; visibility: hidden; }
-	border-right:1px solid #7a1919;

+
-	margin-left:0;

+/**
-	padding-right:1%;

+ * 6.1 Post Thumbnail
-	margin-right:3%;

+ * -----------------------------------------------------------------------------
-}

+ */
-form .grid_2 , form .grid_3{

+
-	float:left;

+
-}

+/**
-form .grid_2 {

+ * 6.2 Entry Header
-	width:120px;

+ * -----------------------------------------------------------------------------
-}

+ */
-form .grid_3 {

+
-	width:340px;

+
-}

+/**
-.form_row {

+ * 6.3 Entry Meta
-	float: left;

+ * -----------------------------------------------------------------------------
-	padding: 6px 0;

+ */
-	width: 570px;

+
-}

+
-.form_row .indent { padding-left: 40px; }

+
-.form_row .indent .row {

+
-	float: left;

+/**
-	margin-bottom: 2px;

+ * 6.4 Entry Content
-	width: 100%;

+ * -----------------------------------------------------------------------------
-}

+ */
-.form_row .indent .first-row { margin-top: 5px; }

+.home .content_area > div { margin-left:-3px; }
-.form_row .indent input, .form_row .indent span {

+.home .content_area > div:first-child {
-	/*float: left;*/

+	border-right:1px solid #7a1919;
-	padding-right: 8px;

+	margin-left:0;
-	width: auto;

+	padding-right:1%;
-}

+	margin-right:3%;
-.form_row1 {

+}
-	float: left;

+form .grid_2 , form .grid_3{
-	padding-top: 6px;

+	float:left;
-	width: 570px;

+}
-}

+form .grid_2 {
-.form_row1 label {

+	width:120px;
-	padding-left: 16px;

+}
-	padding-right: 0;

+form .grid_3 {
-	padding-top: 0;

+	width:340px;
-	text-align: left;

+}
-}

+.form_row {
-.form_row1 span {

+	float: left;
-	float: left;

+	padding: 6px 0;
-	padding: 0 10px 0 6px;

+	width: 570px;
-}

+}
-.form_row span textarea {

+.form_row .indent { padding-left: 40px; }
-	margin: 0 20px;

+.form_row .indent .row {
-	width: 95%;

+	float: left;
-}

+	margin-bottom: 2px;
-.form_row table { margin-left: 10px; }

+	width: 100%;
-.form_row td input { width: auto; }

+}
-

+.form_row .indent .first-row { margin-top: 5px; }
-

+.form_row .indent input, .form_row .indent span {
-/**

+	/*float: left;*/
- * 6.6 Post Formats

+	padding-right: 8px;
- * -----------------------------------------------------------------------------

+	width: auto;
- */

+}
-

+.form_row1 {
-

+	float: left;
-/**

+	padding-top: 6px;
- * 6.7 Post/Image/Paging Navigation

+	width: 570px;
- * -----------------------------------------------------------------------------

+}
- */

+.form_row1 label {
-

+	padding-left: 16px;
-

+	padding-right: 0;
-/**

+	padding-top: 0;
- * 6.8 Attachments

+	text-align: left;
- * -----------------------------------------------------------------------------

+}
- */

+.form_row1 span {
-

+	float: left;
-

+	padding: 0 10px 0 6px;
-/**

+}
- * 6.9 Archives

+.form_row span textarea {
- * -----------------------------------------------------------------------------

+	margin: 0 20px;
- */

+	width: 95%;
-

+}
-

+.form_row table { margin-left: 10px; }
-/**

+.form_row td input { width: auto; }
- * 6.10 Contributor Page

+
- * -----------------------------------------------------------------------------

+
- */

+/**
-

+ * 6.6 Post Formats
-

+ * -----------------------------------------------------------------------------
-/**

+ */
- * 6.11 404 Page

+
- * -----------------------------------------------------------------------------

+
- */

+/**
-

+ * 6.7 Post/Image/Paging Navigation
-

+ * -----------------------------------------------------------------------------
-/**

+ */
- * 6.12 Full-width

+
- * -----------------------------------------------------------------------------

+
- */

+/**
-

+ * 6.8 Attachments
-

+ * -----------------------------------------------------------------------------
-/**

+ */
- * 6.13 Singular

+
- * -----------------------------------------------------------------------------

+
- */

+/**
-

+ * 6.9 Archives
-

+ * -----------------------------------------------------------------------------
-/**

+ */
- * 7.0 Sidebars

+
- * -----------------------------------------------------------------------------

+
- */

+/**
-

+ * 6.10 Contributor Page
-

+ * -----------------------------------------------------------------------------
-/**

+ */
- * 7.1 Widgets

+
- * -----------------------------------------------------------------------------

+
- */

+/**
-

+ * 6.11 404 Page
-

+ * -----------------------------------------------------------------------------
-/**

+ */
- * 7.2 Content Sidebar Widgets

+
- * -----------------------------------------------------------------------------

+
- */

+/**
-

+ * 6.12 Full-width
-

+ * -----------------------------------------------------------------------------
-

+ */
-/**

+
- * 8.0 Footer

+
- * -----------------------------------------------------------------------------

+/**
- */

+ * 6.13 Singular
-footer#colophon {

+ * -----------------------------------------------------------------------------
-	margin-top:-100px;

+ */
-	background:#7A1919;

+
-	position: relative;

+
-	z-index: 100;

+/**
-}

+ * 7.0 Sidebars
-footer#colophon > .inner-wrapper {

+ * -----------------------------------------------------------------------------
-	height:150px;

+ */
-}

+
-#footer-navigation {

+
-	text-align: center;

+/**
-	padding-top:8px;

+ * 7.1 Widgets
-}

+ * -----------------------------------------------------------------------------
-#footer-navigation ul {

+ */
-	list-style: none outside none;

+
-	margin:0 auto;

+
-	display: inline-block;

+/**
-}

+ * 7.2 Content Sidebar Widgets
-#footer-navigation ul ul {

+ * -----------------------------------------------------------------------------
-	display: none;

+ */
-}

+
-#footer-navigation li {

+
-	display: block;

+
-	float:left;

+/**
-	font-size: 14px;

+ * 8.0 Footer
-}

+ * -----------------------------------------------------------------------------
-#footer-navigation li:before {

+ */
-	content:" | ";

+footer#colophon {
-	color:white;

+	margin-top:-100px;
-	font-size: 15px;

+	background:#7A1919;
-}

+	position: relative;
-#footer-navigation li:first-child:before {

+	z-index: 100;
-	content: "";

+}
-}

+footer#colophon > .inner-wrapper {
-#footer-navigation li a {

+	height:150px;
-	color:white;

+}
-	font-weight: bold;

+#footer-navigation {
-	display: inline-block;

+	text-align: center;
-	padding:0px 7px 0 5px;

+	padding-top:8px;
-	text-transform: uppercase;

+}
-}

+#footer-navigation ul {
-.footer-left, .footer-right {

+	list-style: none outside none;
-

+	margin:0 auto;
-	line-height: 1.3em;

+	display: inline-block;
-	color: white;

+}
-	position: absolute;

+#footer-navigation ul ul {
-	bottom: 10px;

+	display: none;
-}

+}
-.footer-left a, .footer-right a {

+#footer-navigation li {
-	color:white;

+	display: block;
-}

+	float:left;
-.footer-left {

+	font-size: 14px;
-	left:20px;

+}
-	text-align: left;

+#footer-navigation li:before {
-}

+	content:" | ";
-.footer-right {

+	color:white;
-	right:20px;

+	font-size: 15px;
-	text-align: right;

+}
-}

+#footer-navigation li:first-child:before {
-

+	content: "";
-/**

+}
- * 9.0 Pagination

+#footer-navigation li a {
- * -----------------------------------------------------------------------------

+	color:white;
- */

+	font-weight: bold;
- 	.pagination { clear:both; padding:20px 0; position:relative; font-size:11px; line-height:13px; }

+	display: inline-block;
-	.pagination span, .pagination a { display:block; float:left; margin: 2px 2px 2px 0; padding:6px 9px 5px 9px; text-decoration:none; width:auto; color:#fff; background: #555; }

+	padding:0px 7px 0 5px;
-	.pagination a:hover{ color:#fff; background: #3279BB; } 

+	text-transform: uppercase;
-	.pagination .current{ padding:6px 9px 5px 9px; background: #3279BB; color:#fff; }

+}
-

+.footer-left, .footer-right {
-/**

+
- * 10.0 Fluid Columns

+	line-height: 1.3em;
- * -----------------------------------------------------------------------------

+	color: white;
- */

+	position: absolute;
-	.one_half{ width:48%; }

+	bottom: 10px;
-	.one_third{ width:30.66%; }

+}
-	.two_third{ width:65.33%; }

+.footer-left a, .footer-right a {
-	.one_fourth{ width:22%; }

+	color:white;
-	.three_fourth{ width:74%; }

+}
-	.one_fifth{ width:16.8%; }

+.footer-left {
-	.two_fifth{ width:37.6%; }

+	left:20px;
-	.three_fifth{ width:58.4%; }

+	text-align: left;
-	.four_fifth{ width:79.2%; }

+}
-	.one_sixth{ width:13.33%; }

+.footer-right {
-	.five_sixth{ width:82.67%; }

+	right:20px;
-	.one_half,.one_third,.two_third,.three_fourth,.one_fourth,.one_fifth,.two_fifth,.three_fifth,.four_fifth,.one_sixth,.five_sixth{ position:relative; margin-right:4%; float:left; }

+	text-align: right;
-	.last{ margin-right:0 !important; clear:right; }

+}
-	.clearboth {clear:both;display:block;font-size:0;height:0;line-height:0;width:100%;}

+
-

+/**
-/**

+ * 9.0 Pagination
- * 12.0 Print

+ * -----------------------------------------------------------------------------
- * -----------------------------------------------------------------------------

+ */
- */

+ 	.pagination { clear:both; padding:20px 0; position:relative; font-size:11px; line-height:13px; }
-

+	.pagination span, .pagination a { display:block; float:left; margin: 2px 2px 2px 0; padding:6px 9px 5px 9px; text-decoration:none; width:auto; color:#fff; background: #555; }
-@media print {

+	.pagination a:hover{ color:#fff; background: #3279BB; } 
-	body {

+	.pagination .current{ padding:6px 9px 5px 9px; background: #3279BB; color:#fff; }
-		background: none !important; /* Brute force since user agents all print differently. */

+
-		color: #2b2b2b;

+/**
-		font-size: 12pt;

+ * 10.0 Fluid Columns
-	}

+ * -----------------------------------------------------------------------------
-

+ */
-	.site, .site-header, .hentry, .site-content .entry-header, .site-content .entry-content, .site-content .entry-summary, .site-content .entry-meta, .page-content, .archive-header, .page-header, .contributor-info, .comments-area, .attachment .entry-attachment .attachment {

+	.one_half{ width:48%; }
-		max-width: 100%;

+	.one_third{ width:30.66%; }
-	}

+	.two_third{ width:65.33%; }
-

+	.one_fourth{ width:22%; }
-	#site-header img, .search-toggle, .site-navigation, .site-content nav, .edit-link, .page-links, .widget-area, .more-link, .post-format-archive-link, .comment-respond, .comment-list .reply, .comment-reply-login, #secondary, .site-footer, .slider-control-paging, .slider-direction-nav {

+	.three_fourth{ width:74%; }
-		display: none;

+	.one_fifth{ width:16.8%; }
-	}

+	.two_fifth{ width:37.6%; }
-

+	.three_fifth{ width:58.4%; }
-	.site-title a, .entry-meta, .entry-meta a, .featured-content .hentry, .featured-content a {

+	.four_fifth{ width:79.2%; }
-		color: #2b2b2b;

+	.one_sixth{ width:13.33%; }
-	}

+	.five_sixth{ width:82.67%; }
-

+	.one_half,.one_third,.two_third,.three_fourth,.one_fourth,.one_fifth,.two_fifth,.three_fifth,.four_fifth,.one_sixth,.five_sixth{ position:relative; margin-right:4%; float:left; }
-	.entry-content a, .entry-summary a, .page-content a, .comment-content a {

+	.last{ margin-right:0 !important; clear:right; }
-		text-decoration: none;

+	.clearboth {clear:both;display:block;font-size:0;height:0;line-height:0;width:100%;}
-	}

+
-

+/**
-	.site-header, .post-thumbnail, a.post-thumbnail:hover, .site-content .entry-header, .site-footer, .featured-content, .featured-content .entry-header {

+ * 12.0 Print
-		background: transparent;

+ * -----------------------------------------------------------------------------
-	}

+ */
-

+
-	.header-main {

+@media print {
-		padding: 48px 10px;

+	body {
-	}

+		background: none !important; /* Brute force since user agents all print differently. */
-

+		color: #2b2b2b;
-	.site-title {

+		font-size: 12pt;
-		float: none;

+	}
-		font-size: 19pt;

+
-	}

+	.site, .site-header, .hentry, .site-content .entry-header, .site-content .entry-content, .site-content .entry-summary, .site-content .entry-meta, .page-content, .archive-header, .page-header, .contributor-info, .comments-area, .attachment .entry-attachment .attachment {
-

+		max-width: 100%;
-	.content-area {

+	}
-		padding-top: 0;

+
-	}

+	#site-header img, .search-toggle, .site-navigation, .site-content nav, .edit-link, .page-links, .widget-area, .more-link, .post-format-archive-link, .comment-respond, .comment-list .reply, .comment-reply-login, #secondary, .site-footer, .slider-control-paging, .slider-direction-nav {
-

+		display: none;
-	.list-view .site-content .hentry {

+	}
-		border-bottom: 1px solid rgba(0, 0, 0, 0.1);

+
-		margin-bottom: 48px;

+	.site-title a, .entry-meta, .entry-meta a, .featured-content .hentry, .featured-content a {
-		padding-bottom: 24px;

+		color: #2b2b2b;
-	}

+	}
-

+
-	.post-thumbnail img {

+	.entry-content a, .entry-summary a, .page-content a, .comment-content a {
-		margin: 0 10px 24px;

+		text-decoration: none;
-	}

+	}
-

+
-	.site-content .has-post-thumbnail .entry-header {

+	.site-header, .post-thumbnail, a.post-thumbnail:hover, .site-content .entry-header, .site-footer, .featured-content, .featured-content .entry-header {
-		padding-top: 0;

+		background: transparent;
-	}

+	}
-

+
-	.site-content footer.entry-meta {

+	.header-main {
-		margin: 24px auto;

+		padding: 48px 10px;
-	}

+	}
-

+
-	.entry-meta .tag-links a {

+	.site-title {
-		color: #fff;

+		float: none;
-	}

+		font-size: 19pt;
-

+	}
-	.singular .site-content .hentry.has-post-thumbnail {

+
-		margin-top: 0;

+	.content-area {
-	}

+		padding-top: 0;
-

+	}
-	.gallery-columns-1.gallery-size-medium, .gallery-columns-1.gallery-size-thumbnail, .gallery-columns-2.gallery-size-thumbnail, .gallery-columns-3.gallery-size-thumbnail {

+
-		display: block;

+	.list-view .site-content .hentry {
-	}

+		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
-

+		margin-bottom: 48px;
-	.archive-title, .page-title {

+		padding-bottom: 24px;
-		margin: 0 10px 48px;

+	}
-	}

+
-

+	.post-thumbnail img {
-	.featured-content .hentry {

+		margin: 0 10px 24px;
-		margin-bottom: 48px;

+	}
-	}

+
-

+	.site-content .has-post-thumbnail .entry-header {
-	.featured-content .post-thumbnail, .slider .featured-content .post-thumbnail {

+		padding-top: 0;
-		padding-top: 0;

+	}
-	}

+
-

+	.site-content footer.entry-meta {
-	.featured-content .post-thumbnail img {

+		margin: 24px auto;
-		position: relative;

+	}
-	}

+
-

+	.entry-meta .tag-links a {
-	.featured-content .entry-header {

+		color: #fff;
-		padding: 0 10px 24px;

+	}
-	}

+
-

+	.singular .site-content .hentry.has-post-thumbnail {
-	.featured-content .entry-meta {

+		margin-top: 0;
-		font-size: 9pt;

+	}
-		margin-bottom: 11px;

+
-	}

+	.gallery-columns-1.gallery-size-medium, .gallery-columns-1.gallery-size-thumbnail, .gallery-columns-2.gallery-size-thumbnail, .gallery-columns-3.gallery-size-thumbnail {
-

+		display: block;
-	.featured-content .cat-links {

+	}
-		font-weight: 900;

+
-	}

+	.archive-title, .page-title {
-

+		margin: 0 10px 48px;
-	.featured-content .entry-title {

+	}
-		font-size: 25pt;

+
-		line-height: 36px;

+	.featured-content .hentry {
-	}

+		margin-bottom: 48px;
-	

+	}
-}

+
-.bf_layout_checkbox {margin-right:10px!important;}

+	.featured-content .post-thumbnail, .slider .featured-content .post-thumbnail {
-
+		padding-top: 0;
-
+	}
-/**************************************************
+
- Styles Below Added by https://davidawindham.com 
+	.featured-content .post-thumbnail img {
- 
+		position: relative;
- **************************************************/
+	}
-
+
-
+	.featured-content .entry-header {
-.tinynav { display: none }
+		padding: 0 10px 24px;
-
+	}
-
+
-/* Small Devices, Tablets */
+	.featured-content .entry-meta {
-@media only screen and (max-width: 767px) {
+		font-size: 9pt;
-	
+		margin-bottom: 11px;
-	.logo a {
+	}
-
+
-	}
+	.featured-content .cat-links {
-	
+		font-weight: 900;
-	.tinynav { 
+	}
-		display: block 
+
-	}
+	.featured-content .entry-title {
-	 #menu-primary-menu { display: none }
+		font-size: 25pt;
-
+		line-height: 36px;
-}
+	}
-
+	
-/* Medium Devices, Desktops */
+}
-@media only screen and (min-width : 992px) {
+.bf_layout_checkbox {margin-right:10px!important;}/*
-
+
-}
+/**************************************************
-
+ Styles Below Added by https://davidawindham.com
-/* Large Devices, Wide Screens */
+ **************************************************/
-@media only screen and (min-width : 1200px) {
+.tinynav { display: none }
-
+
-}
+.inner-wrapper {
-    
+	width:90% !important;
-    
+	position: relative;
- /*! responsive-nav.js 1.0.39 by @viljamis */
+	margin:0 auto;
- 
+}
+#primary {
+
+	padding:30px 20px !important;
+	background:white;
+	position: relative;
+	z-index: 10;
+}
+.bg-element {
+	position:fixed;
+	width:980px;
+	top:0;
+	left:50%;
+	margin-left:-490px;
+	height:100%;
+	z-index: 0;
+	background:white;
+}
+.header-left .phone a {
+	font-size: 30px;
+	font-weight: bold;
+	color:#7a1919;
+
+}
+ul#menu-primary-menu .l_tinynav1 {
+	margin-top: 10px;
+}
+
+@media only screen and (max-width: 767px) {
+	.logo img {
+		max-width:200px;
+	}
+	.tinynav {
+		display: block
+	}
+	 #menu-primary-menu { 
+	 	display: none 
+	 }
+	.header-left .header-links a {
+		display: block; 
+		width:100px;
+		text-align: center;
+		background:#7a1919;
+		color:white;
+		font-weight: bold;
+		font-size: 14px;
+		text-transform: uppercase;
+		margin-bottom:5px;
+	}
+	.header-left .phone {
+		font-size: 15px !important;
+		font-weight: bold;
+		color:#7a1919;
+		text-align: center;
+	}
+	.header-left .phone a {
+		font-size: 18px;
+		font-weight: bold;
+		color:#7a1919;
+
+	}
+	.one_half{ width:100%; }
+	.one_third{ width:100%; }
+	.two_third{ width:100%; }
+	.one_fourth{ width:100%; }
+	.three_fourth{ width:100%; }
+	.one_fifth{ width:100%; }
+	.two_fifth{ width:100%; }
+	.three_fifth{ width:100%; }
+	.four_fifth{ width:100%; }
+	.one_sixth{ width:100%; }
+	.five_sixth{ width:100%; }
+	.one_half,.one_third,.two_third,.three_fourth,.one_fourth,.one_fifth,.two_fifth,.three_fifth,.four_fifth,.one_sixth,.five_sixth{ position:relative; margin-right:4%; float:left; }
+	.last{ margin-right:0 !important; clear:right; }
+	.clearboth {clear:both;display:block;font-size:0;height:0;line-height:0;width:100%;}
+	.home .content_area > div { margin-left:-3px; }
+	.home .content_area > div:first-child {
+		border-right:none;
+		margin-left:0;
+		padding-right:1%;
+		margin-right:3%;
+	}
+	
+}
+
+@media only screen and (min-width : 992px) {
+}
+@media only screen and (min-width : 1200px) {
+}
+