/*
* Skeleton V1.2
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 6/20/2012
*/

/* global
================================================== */

* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.container {
	clear: both;
}


/* header
================================================== */

#header_wrapper {
	float: left;
	width: 100%;
	margin-bottom: 0;
	background: url(../images/header/bg_header.png) center top repeat-x;
}

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

#phone {
	padding: 4px 0 4px 30px;
	background: url(../images/common/icon_phone.png) 0 center no-repeat;
	font-family: Oswald, sans-serif;
	font-size: 35px;
	line-height: 1em;
	font-weight: 400;
	color: #000;
}

#header_wrapper #phone {
	margin-top: 50px;
	margin-left: 20px;
}	


/* navigation - UNUSED
================================================== */

#nav_wrapper {
	width: 100%;
	margin-bottom: 20px;
	background: #343434;
}

nav.primary ul,
nav.primary ul li {
	margin: 0px;
}

nav.primary select {
	display: none;
	width:  100%;
	height: 28px;
	margin: 21px 0;
}

nav.primary ul li {
	display: inline;
	float: left;
	position: relative;
}

nav.primary ul li a {
	display: inline-block;
	line-height: 49px;
	padding:  0 14px;
	color: #ebebeb;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	letter-spacing: 0.08em;
}

nav.primary ul li a:hover {
	background: #424242;
	cursor: pointer;
}

/*sub navigation*/

nav.primary ul ul {
	opacity: 0; 
  	filter: alpha(opacity=0); 

	position: absolute;
	top:100%;
	left: 0;
	z-index: 999;
	background: #343434;
	
	height: 0px;
	overflow: hidden;
	
	width: 100%;
	min-width: 12em;
	
	-webkit-transition: opacity 0.4s ease-out;
	-moz-transition: opacity 0.4s ease-out;
	-o-transition: opacity 0.4s ease-out;
	-ms-transition: opacity 0.4s ease-out;
	transition: opacity 0.4s ease-out;
	
	-webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);	
}

nav.primary ul li span {
	display: none;
}

nav.primary ul li:hover ul {
	opacity: 10; 
  	filter: alpha(opacity=100); 
  	
	height: auto;
	overflow: auto;
}

nav.primary ul ul li {
	float: none;
	display: list-item;
	border-bottom: 1px solid #383737;
}

nav.primary ul ul li a {
	display: block;
	line-height: 35px;
	white-space: nowrap;
	text-transform: none;
}

nav.primary ul li:hover > a {
	background: #424242;
}


/* content
================================================== */

#content {
	padding-left: 10px;
    padding-top: 20px;
	background: #ececec;
	border-left: 2px solid #acacac;
	border-right: 2px solid #acacac;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

#content_title,
#content_footer {
	padding: 14px 0;
	background: #B90707;
	font-family: Oswald, sans-serif;
	line-height: 1em;
	font-weight: 400;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
}

#content_title {
	border-top-left-radius: 24px;
	-moz-border-radius-topleft: 24px;
	-webkit-border-radius-topleft: 24px;
	border-top-right-radius: 24px;
	-moz-border-radius-topright: 24px;
	-webkit-border-radius-topright: 24px;
	font-size: 36px;
}

#content_footer {
	border-bottom-left-radius: 24px;
	-moz-border-radius-bottomleft: 24px;
	-webkit-border-radius-bottomleft: 24px;
	border-bottom-right-radius: 24px;
	-moz-border-radius-bottomright: 24px;
	-webkit-border-radius-bottomright: 24px;
	font-size: 48px;
}

#list_content {
	text-align: center;
}

#list_content h2 {
	padding: 8px 0;
	background: #000;
	font-family: 'Open Sans', sans-serif;
	font-size: 30px;
	line-height: 1em;
	font-weight: 800;
	color: #FFFFFF;
	text-transform: uppercase;
}

#list_content h3 {
	font-family: 'Open Sans', sans-serif;
	font-size: 24px;
	font-weight: 800;
}

#list_content ul {
	margin-top: 20px;
	font-size: 24px;
}

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

#guarantee {
	margin-top: 30px;
	margin-bottom: 30px;
	padding: 8px 0;
	background: #000;
	font-family: 'Open Sans', sans-serif;
	font-size: 36px;
	line-height: 1em;
	font-weight: 800;
	font-style: italic;
	color: #ffa300;
	text-transform: uppercase;
	text-align: center;
}

#logo_wrapper {
	float: left;
	width: 100%;
	margin-bottom: 30px;
	border-top: 2px solid #ddd;
	border-bottom: 2px solid #ddd;
}

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

#contact_info {
	float: left;
	width: 100%;
	margin-bottom: 30px;
}

#contact_info p {
	margin-bottom: 10px;
}

#contact_info p.contact_location {
	padding: 4px 0 0 32px;
	background: url(../images/common/icon_location.png) 0 4px no-repeat;
	font-size: 18px;
	line-height: 1.5em;
	color: #000;
}

#contact_info p.contact_location span {
	font-size: 14px;
	font-style: italic;
	text-transform: uppercase;
}

#contact_info p.contact_hours {
	padding: 4px 0 0 32px;
	background: url(../images/common/icon_clock.png) 0 8px no-repeat;
	font-size: 18px;
	line-height: 1.5em;
	color: #000;
}

#contact_info p.contact_phone {
	padding: 4px 0 0 30px;
	background: url(../images/common/icon_phone.png) 0 center no-repeat;
	font-family: Oswald, sans-serif;
	font-size: 48px;
	line-height: 1em;
	font-weight: 400;
	color: #000;
}

#contact_info p.contact_phone_location {
	padding: 4px 0 0 30px;
	background: url(../images/common/icon_phone_12.png) 4px 10px no-repeat;
	font-size: 18px;
	line-height: 1.75em;
	color: #000;
}

#contact_info p.contact_phone_location span {
	font-family: Oswald, sans-serif;
	font-size: 24px;
	font-weight: 400;
}



/* footer
================================================== */

#footer_wrapper {
	float: left;
	width: 100%;
	background: url(../images/footer/bg_footer.png) center top repeat-x;
	text-align: center;
}

#footer_info {
	padding: 10px 0 30px;
	font-size: 12px;
	text-align: center;
}




/* #Media Queries
================================================== */

	/* Smaller than standard 960 (devices and browsers) */
	@media only screen and (max-width: 959px) {}

	/* Tablet Portrait size to standard 960 (devices and browsers) */
	@media only screen and (min-width: 768px) and (max-width: 959px) {}

	/* All Mobile Sizes (devices and browser) */
	@media only screen and (max-width: 767px) {
		
#header_wrapper #phone {
	margin-top: 0;
	padding-left: 0;
	text-align: center;
}

#content {
	padding-left: 0;
	border-left: none;
	border-right: none;
}
		
	}

	/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
	@media only screen and (min-width: 480px) and (max-width: 767px) {}

	/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
	@media only screen and (max-width: 479px) {}


/* #Font-Face
================================================== */
/* 	This is the proper syntax for an @font-face file
		Just create a "fonts" folder at the root,
		copy your FontName into code below and remove
		comment brackets */

/*	@font-face {
	    font-family: 'FontName';
	    src: url('../fonts/FontName.eot');
	    src: url('../fonts/FontName.eot?iefix') format('eot'),
	         url('../fonts/FontName.woff') format('woff'),
	         url('../fonts/FontName.ttf') format('truetype'),
	         url('../fonts/FontName.svg#webfontZam02nTh') format('svg');
	    font-weight: normal;
	    font-style: normal; }
*/