﻿@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);

/* =============================================================================
 * bootstrap overrides
 * -------------------------------------------------------------------------- */

.container {
	height: 100%;
	/*padding-left: 20px;
	padding-right: 20px;*/
    padding-left: 0px;
	padding-right: 0px;
	position: relative;	
}

@media (min-width: 768px) {
	/*.container { width: 750px; }*/
    .container { width: 100%; }
}
@media (min-width: 992px) {
	.container { width: 992px; }
    /*.container { width: 100%; }*/
}
@media (min-width: 1230px) {
	/*.container { width: 100%;}*/
    /*.container { width: 1230px; }*/
}
/*@media (min-width: 1400px) {
	.container { width: 1400px;}
}*/





/*
.container {
	height: 100%;
	padding-left: 20px;
	padding-right: 20px;
	position: relative;	
}

@media (min-width: 768px) {
	.container { width: 750px; }
}
@media (min-width: 992px) {
	.container { width: 970px; }
}
@media (min-width: 1230px) {
	.container { width: 1230px; padding-left: 30px; padding-right: 30px; }
}
*/



/* buttons ---------------------------------------------------------- */

.btn {
	font-size: 14px;
	font-weight: 600;
	padding: 10px 20px;
	border-radius: 0;
	border-width: 2px;
	position: relative;
    font-family:"Lato";
    text-transform:uppercase;
    /*text-shadow: 1px 1px #000;*/
	/*-webkit-transition: background .1s, color .2s;
	   -moz-transition: background .1s, color .2s;
	    -ms-transition: background .1s, color .2s;
	        transition: background .1s, color .2s;*/
    /*border-radius:5px;*/
    color:#fff;
}

.btn-primary {
	border: #fbbd19 2px solid;
	background-color: #fbbd19;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active {
	color: #717171;
	border-color: #fbbd19;
    background: #fff;
    /*background: transparent;*/
	box-shadow: none;
}

/*.btn-inverted { 
    color:#fff;
	border: #000 2px solid;
	background-color: #000;
}
.btn.btn-inverted:hover,
.btn.btn-inverted:focus,
.btn.btn-inverted:active {
	color: #fff;
	border-color: #000;
    background: #000;
	box-shadow: none;
}*/

/*
.btn-inverted:hover {
	color: #fbbd71;
	background: #FFF;
}*/

/* additional markup and for hover effects, added via javascript
positioning and background color depends on button type
.btn-initialized is added to reset conflicting defaults */

.btn:after {
    /*content:"\f0da";
	font-family: 'FontAwesome';
	font-weight: 700;
	padding-left: 15px;*/
	position: relative;
}
.btn:before {
	content: '';
	content: '';
	position: absolute;
	top: 0;
	height: 100%;
	/*-webkit-transition: all .3s cubic-bezier(.54,.12,.2,1);
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	transition: all .3s cubic-bezier(.54,.12,.2,1);*/
}
.btn > span {
	position: relative;
	z-index: 1;
}

/*
.btn-inverted.btn-initialized,
.btn-inverted.btn-initialized:hover,
.btn-inverted.btn-initialized:focus {
	background: transparent;
}
.btn-inverted.btn-initialized:before {
	background: #000;
	left: 0;
	width: 0;
}
.btn-inverted.btn-initialized:hover:before,
.btn-inverted.btn-initialized:focus:before {
	width: 100%;	
}


.btn-primary.btn-initialized,
.btn-primary.btn-initialized:hover,
.btn-primary.btn-initialized:focus {
	background: transparent;
}*/
.btn-primary.btn-initialized:before {
	right: 0;
	width: 100%;
}
.btn-primary.btn-initialized:hover:before,
.btn-primary.btn-initialized:focus:before {
	width: 0;	
}

.btn-download:after {
	content: '\f019';
}

/* product and gallery filters dropdowns */

.btn.btn-dropdown {
	color: #837561;
	background: #e2e0dc;
	text-align: left;
	padding-left: 20px;
}
.btn-dropdown.btn-inverted {
	width: 100%;
	background: transparent;
	border-color: #dad7d4;
}

.btn.btn-dropdown:hover,
.btn.btn-dropdown:active,
.btn-group.open .btn-dropdown {
	background: #837561;
	border-color: #837561;
	color: #FFF;
	box-shadow: none;
}

.btn-dropdown:after {
	content: '\f0d7';
	position: absolute;
	right: 20px;
}
.btn-group.open .btn-dropdown:after {
	content: '\f00d';	
}

/* dropdown-menu ---------------------------------------------------------- */

.dropdown-menu {
	width: 100%;
	margin-top: 0;
	border: 0;
	border-radius: 0;
	box-shadow: 0 2px 3px rgba(0,0,0,.15);
}
.dropdown-menu-static {
	background: #dfddd9;
	padding: 15px 25px;
}
.dropdown-menu-static > ul {
	margin: 0 !important;
	padding: 0;
}
.dropdown-menu-static .help {
	color: #b4aea4;
	position: absolute;
	top: 15px;
	right: 20px;
}



/* forms ---------------------------------------------------------- */

.form-group {
	margin-bottom: 20px;
}
.form-group > label {
	/* all form-controls use placeholder attributes
	radio and checkboxes use custom styles that reset this */
	display: none;
}
.form-group .radios-label { 
	padding-right: 12px;
}

.form-control {
	background: transparent;
	color: #4f483e;
	border: #d2d2d2 2px solid;
	height: 60px;
	padding: 10px 15px;
	font-size: 16px;
	border-radius: 0;
	box-shadow: none;
	-webkit-appearance: none;
	-webkit-font-smoothing: subpixel-antialiased;
	font-smoothing: subpixel-antialiased; 
    font-family:"Lato";
}
.form-control:focus {
	border-color: #fbbd71;
	background-color: #FFF;
	box-shadow: none;
	outline: none;
	-webkit-transition: background 0.1s;
	-moz-transition: background 0.1s;
	-ms-transition: background 0.1s;
	transition: background 0.1s;
}
.form-inverted .form-control,
.form-inverted .form-control:focus,
.form-inverted .form-control.has-value {
	border-color: #fff;
}

.radio-inline, 
.checkbox-inline {
	padding-left: 24px;
}
.radio input[type="radio"], 
.radio-inline input[type="radio"], 
.checkbox input[type="checkbox"], 
.checkbox-inline input[type="checkbox"] {
	margin-left: -24px;
}
.radio-inline + .radio-inline, 
.checkbox-inline + .checkbox-inline { 
	margin-left: 12px;
}

/* custom radio buttons */

.radio-inline input[type="radio"] {
	display: none;
}
.radio-inline input[type="radio"] + label {
	cursor: pointer;
	font-weight: 600;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.radio-inline input[type="radio"] + label:before {
	content: '';
	position: absolute;
	margin: 4px 0 0 -24px;
	width: 17px;
	height: 17px;
	vertical-align: middle;
	cursor: pointer;
	border-radius: 50%;
	border: #b9aea3 2px solid;
	background-color: transparent;
	-webkit-transition: all .1s;
	   -moz-transition: all .1s;
	    -ms-transition: all .1s;
	        transition: all .1s;
}
.radio-inline input[type="radio"]:checked + label:before {
	background-color: #b9aea3;
}

.quick-consultation input[type="radio"] + label:before,
.footer-form input[type="radio"] + label:before {
	border-color: #FFF;
}
.quick-consultation input[type="radio"]:checked + label:before,
.footer-form input[type="radio"]:checked + label:before {
	background-color: #FFF;
}

.form-actions {
	text-align: center;
}

::-ms-clear { display: none; }

::-webkit-input-placeholder 	{ font-style: italic; letter-spacing: 0.01em; }
:-moz-placeholder 				{ font-style: italic; letter-spacing: 0.01em; }
::-moz-placeholder 				{ font-style: italic; letter-spacing: 0.01em; }
:-ms-input-placeholder 			{ font-style: italic; letter-spacing: 0.01em; }

.form-inverted input::-webkit-input-placeholder	{ color: rgba(255,255,255,.65); }
.form-inverted input:-moz-placeholder 			{ color: rgba(255,255,255,.65); }
.form-inverted input::-moz-placeholder 			{ color: rgba(255,255,255,.65); }
.form-inverted input:-ms-input-placeholder 		{ color: rgba(255,255,255,.65); }

.search-terms::-webkit-input-placeholder		{ color: rgba(210,210,210,.75); }
.search-terms:-moz-placeholder 					{ color: rgba(210,210,210,.75); }
.search-terms::-moz-placeholder 				{ color: rgba(210,210,210,.75); }
.search-terms:-ms-input-placeholder 			{ color: rgba(210,210,210,.75); }

.form-control:focus::-webkit-input-placeholder	{ color: #988f86; }
.form-control:focus:-moz-placeholder 			{ color: #988f86; }
.form-control:focus::-moz-placeholder 			{ color: #988f86; }
.form-control:focus:-ms-input-placeholder 		{ color: #988f86; }

/* table ---------------------------------------------------------- */

.table-striped > tbody > tr:nth-of-type(odd) {
	background-color: #e4e2df;
}
.table-borderless tr,
.table-borderless td,
.table-borderless th {
	border: 0 !important;
}

/* modal ---------------------------------------------------------- */
/*
.modal-backdrop.in {
	opacity: .4;	
}

@media (min-width: 768px) { 
	
	.modal-dialog { 
		width: 700px; 
		margin-top: 0; 
	}
	.modal.fade .modal-dialog,
	.modal.in .modal-dialog {
		-webkit-transition: all .25s ease-out;
		-moz-transition: all .25s ease-out;
		-ms-transition: all .25s ease-out;
		transition: all .25s ease-out;
		-webkit-transform: translate(0, 50%) scale(0.95);
		-ms-transform: translate(0, 50%) scale(0.95);
		-o-transform: translate(0, 50%) scale(0.95);
		transform: translate(0, 50%) scale(0.95);
	}
	.modal.in .modal-dialog {
		-webkit-transform: translate(0, 50%) scale(1);
		-ms-transform: translate(0, 50%) scale(1);
		-o-transform: translate(0, 50%) scale(1);
		transform: translate(0, 50%) scale(1);
	}
}

.modal .close {
	position: absolute;
	width: 50px;
	height: 50px;
	top: 0;
	right: 0;
	margin: 0;
	outline: none;
	text-shadow: none;
	opacity: 1;
}
.modal .close:before {
	content: '\f00d';
	font: 16px/50px 'FontAwesome';
	color: #837561;
}

.modal-header { 
	text-align: center;
	border: 0;
	padding-top: 30px;
}
.modal-header h1 {
	display: inline-block;
	margin: 0;
	padding-bottom: 15px;
	border-bottom: #cbc7c2 1px solid;
}
.modal-content {
	border-radius: 0;
	box-shadow: 0 3px 6px rgba(0,0,0,.15);
}
.modal-body { 
	padding: 15px 50px 40px 50px;
}
*/

/* page-header ---------------------------------------------------------- */

.page-header {
	margin: 0;
	border: 0;
	padding: 165px 0 20px 0;
	background-color: #000;
	background-position: 50% 0;
	background-repeat: no-repeat;
	/*background-image: url('/images/FSD/rwd/page-header-bg.jpg');*/
}
.page-header .wrap {
	background: rgba(131,117,97,.85);
	margin-top: -8px;
}
.page-header .container {
	padding-top: 30px;
	padding-bottom: 28px;
}
.page-header h1 {
	margin: 0;
	color: #FFF;
	cursor: default;
}

@media only screen and (max-width: 1020px) {
	.page-header h1 { font-size: 35px; }
}

/* breadcrumb ---------------------------------------------------------- */

.breadcrumb {
	padding: 0 10px;
	background: transparent;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased; 
    max-width:992px;width:100%;margin:0 auto;font-family:Montserrat;
    line-height:1.3em;
}
.breadcrumb > li,
.breadcrumb > li a,
.breadcrumb > li.active {
	font-size: 10px;
	font-weight: 300;
	color: #717171;
	text-transform: uppercase;
	display: inline-block;
    padding:0;
    margin:0;
}
.breadcrumb > li {
	cursor: default;
    color:#fbbd19;
}
.breadcrumb > li + li:before {
	padding: 0 2px 0 6px;
	color: #000;
}
.breadcrumb_container {width:100%;background:#fff;}


/* carousel ---------------------------------------------------------- */

.carousel-indicators {
	margin: 0;
	width: auto;
	left: 0px;
    right: 0px;
	bottom: 10px;
}
.carousel-indicators li,
.carousel-indicators li.active {
	background: #FFF;
	width: 14px;
	height: 14px;
	border: 0;
	margin: 0 3px 0 0;
}
.carousel-indicators li {
	opacity: .5;
}
.carousel-indicators li.active {
	opacity: 1;
}

/* panel ---------------------------------------------------------- */

.panel-group {
	margin: 20px 0;
}
.panel-group .panel {
	border: 0;
	border-radius: 0;
	box-shadow: none;
}
.panel-group .panel + .panel {
	margin-top: 10px;
}
.panel-group .panel .panel-heading {
	background: #717171;
	padding: 0;
	border: 0;
	border-radius: 0;
}
.panel-group .panel-heading a {
	display: block;
	color: #fff;
	padding: 20px 15px 20px 50px;
	text-decoration: none;
	position: relative;
	line-height: 1.3;
    font-weight:normal;
}
.panel-group .panel-heading a:before {
	/*content: '\f067';*/
    content: '\f068';
	font: 14px 'FontAwesome';
	position: absolute;
	display: block;
	left: 0;
	top: 50%;
	width: 40px;
	text-align: center;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.panel-group .panel-heading a.collapsed:before { 
	/*content: '\f068';*/
    content: '\f067'; 
}
.panel-group .panel-body {
	padding: 20px;
	background: #f8f7f6;
	border: 0 !important;
}
.panel-group .panel-body > p {
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased; 
}
.panel-group .panel-body > p:last-child {
	margin-bottom: 0;
}

/* pagination ---------------------------------------------------------- */

.pager li > a,
.pager li > a:hover {
	border: 0;
	padding: 0;
	background: transparent;
}
.pager .previous a:before {
	content: '\00AB';
	margin-right: 8px;
}
.pager .next a:after {
	content: '\00BB';
	margin-left: 8px;
}

/* well ---------------------------------------------------------- */

.well {
	background: #f5f3f1;
	box-shadow: 0 1px 5px rgba(0,0,0,.25);
	border-radius: 0;
	padding: 0;
}
.well-body {
	padding: 30px;
	position: relative;
}
.well-body:not(:last-child):after {
	content: '';
	position: absolute;
	display: block;
	width: 100%;
	height: 1px;
	left: 0;
	bottom: 0;
	font-size: 0;
	background-image: -webkit-gradient(linear, 0 0, 100% 0, from(#bcb4a9), to(transparent));
	background-image: -webkit-linear-gradient(left, #bcb4a9, transparent);
	background-image: -moz-linear-gradient(left, #bcb4a9, transparent);
	background-image: -o-linear-gradient(left, #bcb4a9, transparent);
}
.well h3 {
	margin: 0 0 30px 0;
	color: #493b27;
}

/* thumbnail ---------------------------------------------------------- */

.thumbnail {
	padding: 0;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	position: relative;
}
.thumbnail:hover { 
	text-decoration: none;
}
.thumbnail-overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	color: #f1efee;
	text-align: center;
	background: rgba(54,47,37,.6);
}
.thumbnail-overlay h2 {
	font-size: 1.65em;
	font-weight: 300;
	line-height: 1.4;
}
.thumbnail-overlay .btn:hover {
	border-color: #FFF;
	color: #FFF;
}
.thumbnail-overlay > div {
	position: absolute;
	width: 100%;
	padding: 0 15%;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);	
}
.thumbnail-heading {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	font-size: 1.65em;
	font-weight: 300;
	color: #FFF;
	background: #8f8270;
	margin: 0; 
	padding: 20px 50px 20px 20px;
}
.thumbnail-footer:before,
.thumbnail-heading:before {
	content: '';
	position: absolute;
	display: block;
	width: 100%;
	height: 8px;
	top: -8px;
	left: 0;
	background: rgba(131,117,97,.9);
}
.thumbnail-heading:after {
	content: '\f105';
	font-family: 'FontAwesome';
	font-size: 0.9em;
	position: absolute;
	right: 20px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.thumbnail-actions {
	position: absolute;
	top: 0; 
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.4);
	z-index: 10; /* below .thumbnail-footer */
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.thumbnail-actions > ul {
	margin: 0 !important;
	padding: 20px;
	position: absolute;
	width: 100%;
	list-style: none;
}
.thumbnail-actions > ul li {
	display: inline;
	margin: 0 5px;	
}
.thumbnail-actions > ul li:last-child { 
	float: right;
}
.thumbnail-actions a {
	color: #FFF;
	color: rgba(255,255,255,0.5);
	font-size: 1.2em;
	text-decoration: none;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}
.thumbnail-actions a:hover {
	color: #FFF;
	text-decoration: none;
	-webkit-transform: scale(1.15);
	-moz-transform: scale(1.15);
	-ms-transform: scale(1.15);
	transform: scale(1.15);
}
.thumbnail:hover .thumbnail-actions {
	opacity: 1;
	visibility: visible;
}
.touch .thumbnail .thumbnail-actions {
	opacity: 1;
	visibility: visible;
	height: 100px;
	background: -moz-linear-gradient(top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.5)), color-stop(100%,rgba(0,0,0,0)));
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0) 100%);
	background: -o-linear-gradient(top, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0) 100%);
	background: -ms-linear-gradient(top, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0) 100%);
}

/* used on masonry product list */

.thumbnail-footer {
	display: block;
	position: relative;
	z-index: 20; /* above .thumbnail-actions */
	background: #fbbd71;
	padding: 20px;
	font-weight: 300;
	color: #fff;
    text-shadow:2px 2px #000;
}
.thumbnail-footer:hover {
	text-decoration: none;
    color:#fff;
}
.thumbnail-footer:before {
	background: rgba(0,0,0,.5);
}

/* callout ---------------------------------------------------------- */

.callouts-list { 
	padding: 0;
	list-style: none;
}
.callout {
	max-width: 570px;
	margin: 0 0 15px 0;
	text-align: center;
	background: #d2d2d2;
    color:#000;
    /*text-shadow:2px 2px #000;*/
	box-shadow: none;
}
.callout-inverted {
	color: #FFF;
    background: #fbbd71;
}
.callout-transparent {
	color: #000;
    background: #fff;
    text-shadow:none;
}
/*.callout-body:before {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 20px;
	top: -16px;
	left: 0;
	z-index: 1;
	opacity: 0.75;
	background: #efebe8;
}*/
.callout img {
	width: 100%;
}
.callout-body {
	padding: 30px 3% 35px 3%;
	position: relative;
}
.callout-body h2 {
	font-size: 28px;
	font-weight: 300;
	line-height: 1.2;
	margin: 0 0 15px 0;
}
.callout[class*="project-type"] h2 {
	/* home page project callouts */
	font-weight: 400;
}
.callout-body p {
	margin-bottom: 15px;
	-webkit-font-smoothing: subpixel-antialiased;
	font-smoothing: subpixel-antialiased; 	
}
/*.callout-inverted .btn-primary {
	border: #000 2px solid;
    background-color: #000;
}
.callout-inverted .btn-primary.btn-initialized:before {background:#000;}*/



/* nav-tabs ---------------------------------------------------------- */

.nav-tabs {
	margin-top: 30px;
	margin-bottom: 30px;
	border-bottom: #d2d2d2 1px solid;
}
.nav-tabs > li > a {
	margin: 0;
	padding: 15px 0;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	color: #000;
	border-radius: 0;
	border-top: 0 !important;
	border-left: 0 !important;
	border-right: 0 !important;
	background: transparent;
	border-bottom: transparent 5px solid;
}
.nav-tabs > li > a:hover {
	background: transparent;
	border-bottom: #fbbd71 5px solid;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
	color: #fbbd71;
	background-color: transparent;
	border-bottom: #fbbd71 5px solid;
}
.nav-tabs.has-2 > li { width: 50.00%; }
.nav-tabs.has-3 > li { width: 33.33%; }
.nav-tabs.has-4 > li { width: 25.00%; }
.nav-tabs.has-5 > li { width: 20.00%; }

/* nav-tabs-secondary ---------------------------------------------------------- */

.nav-tabs-secondary {
	border: 0;
	margin: 0;
}
.nav-tabs.nav-tabs-secondary > li {
	width: auto;
	margin: 0 10px 0 0;
}
.nav-tabs.nav-tabs-secondary > li > a {
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	padding: 15px 40px;
	color: #fff;
	/*background: #f6f4f2;*/
	border: 0;
}
.nav-tabs-secondary > li > a:hover,
.nav-tabs-secondary > li.active > a,
.nav-tabs-secondary > li.active > a:hover,
.nav-tabs-secondary > li.active > a:focus {
	color: #fff;
	/*background: #e7e5e2;*/
	border: 0;
}

/* nav-tabs-select ---------------------------------------------------------- */

/* added dynamically in .nav-tabs jquery.view, 
used as a replacement for tabs on mobile */

.nav-tabs-select {
	margin: 20px 0;
	position: relative;
	display: none; /* responsive */
}
.nav-tabs-select select {
	width: 100%;
	height: 50px;
	font-size: 18px;
	font-weight: 400;
	padding: 10px 18px;
	color: #fff;
	text-shadow:2px 2px #000;
    background: #fbbd71;
	border: 0;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
}
.nav-tabs-select:after {
	content: '\f0d7';
	font-family: 'FontAwesome';
	position: absolute;
	right: 20px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
@media (max-width: 699px) {
	.nav-tabs-select { display: block; }
    .nav-tabs { display: none; }
	/*.nav-tabs-select + .nav-tabs { display: none; }*/

    /*.nav-tabs-select { display: none; }
    #nav-tabs-select { display: block; }*/
    #nav-tabs-select { display: none; }
    .nav-tabs-select { display: block; }
}

/* lead ---------------------------------------------------------- */

.lead {
	font-size: 2em;
	font-weight: 300;
	line-height: 1.25;
	margin-bottom: 30px;
}

/* help ---------------------------------------------------------- */

.help {
	color: #dcdad6;
	font-size: 17px;
}
.no-touch .help:hover {
	color: #4f483e;
}

.tooltip-inner {
	background-color: #4f483e;
}
.tooltip.top .tooltip-arrow { 
	border-top-color: #4f483e;
}

/* media ---------------------------------------------------------- */

.media-object,
.embed-responsive {
	border: #e7e5e2 3px solid;
	position: relative;
	z-index: 1;
}

.media-left {
	display: block;
	float: left;
	margin-right: 20px;
}
.media-play {
	display: inline-block;
	position: relative;
}
.media-play:after {
	content: '\f01d';
	font: 50px 'FontAwesome';
	color: #FFF;
	text-shadow: 0 0 8px rgba(0,0,0,0.3);
	position: absolute;
	left: 50%;
	top: 50%;
	opacity: 0.85;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.media-play-alt:after {
	content: '\f144';
	font-size: 60px;	
}
.media-play-big:after {
	font-size: 85px;
}
.media-play:hover:after {
	opacity: 1;
	-webkit-transform: translateX(-50%) translateY(-50%) scale(1.15);
	-moz-transform: translateX(-50%) translateY(-50%) scale(1.15);
	-ms-transform: translateX(-50%) translateY(-50%) scale(1.15);
	transform: translateX(-50%) translateY(-50%) scale(1.15);
}

/* =============================================================================
 * typography
 * -------------------------------------------------------------------------- */

@-webkit-viewport { width: device-width; zoom: 1.0; }
   @-moz-viewport { width: device-width; zoom: 1.0; }
	@-ms-viewport { width: device-width; zoom: 1.0; }
	 @-o-viewport { width: device-width; zoom: 1.0; }
		@viewport { width: device-width; zoom: 1.0; }

body {
	color: #000;
	font: 18px/1.8 'Arial', sans-serif;
	font-weight: 400;
	background-color: #fff;
	height: 100%;
}

.site-header,
.site-footer,
.site-content { background: #FFF; }

p {
	/*margin-bottom: 25px;*/
}
a {
	color: #fbbd71;
	text-decoration: none;
	font-weight: 600;
}
a:hover,
a:focus {
	color: #fbbd71;
	text-decoration: underline;
	outline: none;
}
a.more:after {
	content: '\f105';
	padding-left: 6px;
	font: 0.9em 'FontAwesome';
}
a.more-download:after {
	content: '\f019';
}
a.more:hover {
	text-decoration: none;
}
img {
	max-width: 100%;
}

h1, .h1 {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 30px;
}
h2 {
	font-size: 60px;
	font-weight: 700;
	margin-bottom: 10px;
}
h3 {
	/*color: #837561;
	font-size: 1.125em;
	font-weight: 700;
	letter-spacing: 0.025em;
	text-transform: uppercase;*/
    margin-top: 20px;
    margin-bottom: 12px;
    font-size: 1.5em;
    font-weight: 700;
}
h4 {
	font-family: "Montserrat";
    font-size: 11pt;
    font-weight: normal;
}
h5 {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 15px 0;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

hr {
	border-color: #b7b1a9;
	margin: 30px 0;
}

blockquote {
	font-size: 28px;
	font-weight: 300;
	line-height: 1.4;
	color: #837561;
}
blockquote footer {
	margin-top: 1.125em;
	font-size: 16px;
	font-weight: 400;
	color: #837561;	
	text-transform: uppercase;
}
blockquote footer:before {
	display: none;
}

.main { 
	/*margin-bottom: 30px;*/
}
ul:not([class]),
ol:not([class]) {
	margin-top: 15px;
	margin-bottom: 15px;
}
ul:not([class]) > li,
ol:not([class]) > li {
	margin-bottom: 10px;
}
@media only screen and (min-width: 1230px) {	
	/* a little more breathing room between the main 
	content and sidebar on general content pages */
	.main.col-md-9 { padding-right: 30px; }
}

.call-to-action {
	font-weight: 700;
}
.call-to-action a {
	font-weight: inherit;
	text-decoration: none;
}
.call-to-action a:after {
	content: '\f105';
	font-family: 'FontAwesome';
	padding-left: 6px;
}

.footnote { 
	font-size: 14px;
	/*font-style: italic;*/
	color: #000;
}
.caption {
	font-style: italic;
	color: #4f483e;
	margin: 10px 0;
}

::-webkit-selection { background: #F5F5F5; color: #fbbd71; text-shadow: none; }
::-moz-selection 	{ background: #F5F5F5; color: #fbbd71; text-shadow: none; }
::selection			{ background: #F5F5F5; color: #fbbd71; text-shadow: none; }

/* =============================================================================
 * header
 * -------------------------------------------------------------------------- */

.site { 
	/* needed for full width, absolutely positioned submenus withing a relative container */
	overflow: hidden; 
}

.site-header {
	width: 100%;
	position: relative;
	z-index: 100;
    height:116px;
}
.site-header > .wrap {
	/*height: 160px;*/
	position: relative;
	z-index: 2; /* above quick-consultation */
}
/*.header-sticky .site {
	padding-top: 155px;
}*/
.header-sticky .site-header {
	/*position: fixed;
	top: 0;*/
}

.submenu,
.site-header > .wrap {
	/*background: #840406;*/
	/*border-bottom: #67a7ad 8px solid;*/
    /*background: rgba(132,4,6,.6);*/
}

#logo {
	width: 134px;
	height: 54px;
	margin: 0;
	padding: 0;
	position: absolute;
	z-index: 101; /* above .submenu */
	top: 55px;
	left: 10px;
}
#logo a {
	display: block;
	width: 100%;
	height: 100%;
	background: url('/images/PEL/logo_PelPro.png') 0 0 no-repeat;
	background-size: contain;
	text-indent: -9999px;
	outline: none;
}

/* nav ---------------------------------------------------------------- */

.nav-toggle { display: none; /* responsive */ }

.nav-main { 
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
    background: url(/images/PEL/nav_Background.png) top left repeat-x;
    height: 116px;
}
.nav .menu {
	/* can't absoltuely position this because the submenus would then be positioned relative to it 
	rather than the full width nav and left: 0 wouldn't actually be the left edge of the container */
	z-index: 100;
	margin: 0;
	/*padding: 68px 0 0 340px;*/
}

/*.nav-main ul.menu {background: rgba(132,4,6,.6);margin:52px 0 0 0px;height:50px;width:100%;max-width:1032px;padding-left:71px;}*/
.nav-main ul.menu {margin:0px;height:68px;float:right;}

.nav .primary-menu {padding:0px;width:100%;float:right;position:relative;}
.nav .secondary-menu {position:absolute;top:0px;right:0px;}
.nav .secondary-menu ul.menu {background: none;margin:0 220px 0 0;}

.nav .menu > li {
	display: inline;
	float: left;
}
.nav .primary-menu ul.menu > li {float: left;position:relative;}

.nav .menu > li > a {
	display: block;
	float: left;
	height: 50px;
	padding: 5px 20px;
	/*font: 18px/1.8 'Arial', sans-serif;*/
    font-family: "Montserrat";
    font-size:13px;
    text-transform:uppercase;
    text-decoration:none;
    font-weight: normal;
    /*text-shadow: 2px 2px #000;*/
	line-height: 50px;
	/*text-decoration: none;*/
	text-align: center;
	color: #fff;
	position: relative;
	/*background: url('/images/FSD/rwd/nav-item-divider.png') 100% 50% no-repeat;*/
	z-index: 101; /* above .submenu */
	-webkit-transition: all .2s ease;
	   -moz-transition: all .2s ease;
	    -ms-transition: all .2s ease;
	        transition: all .2s ease;
}
.nav .menu > li:hover > a,
.nav .menu > li > a:hover,
.nav .menu > li.active > a {
	color: #fff;
}

.nav .menu > li > a span {
	display: block;
	position: relative;
	height: 100%;
}
/*.nav .menu > li > a span:after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background: #899a5a;
	position: absolute;
	left: 0;
	bottom: 0;
	opacity: 0;
	-webkit-transform: scale(.45);
	   -moz-transform: scale(.45);
	    -ms-transform: scale(.45);
	        transform: scale(.45);
	-webkit-transition: all .2s ease;
	   -moz-transition: all .2s ease;
	    -ms-transition: all .2s ease;
	        transition: all .2s ease;
}*/
.nav .menu > li:hover > a span:after,
.nav .menu > li > a:hover span:after,
.nav .menu > li.active > a span:after {
	opacity: 1;
	-webkit-transform: scale(1);
	   -moz-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
}

.nav .menu > li:nth-child(2) > a span { max-width: 100px; line-height: 1.25; padding-top: 7px; }
.nav .menu > li:nth-child(6) > a span { max-width: 90px; line-height: 1.25; padding-top: 7px; }

.nav .menu > li:hover .submenu { 
	opacity: 1;
	visibility: visible;
	overflow: visible;
}

img.fly-out-nav-logo {display:none;}

/* nav-secondary ---------------------------------------------------------------- */

.nav-secondary {
    position: absolute;
	text-align: right;
	right: 0px; 
	top: 10px;
	width: 100%;
	height: 50px;
	line-height: 50px;
	/*background: #c3beb8;*/
	z-index: 101; /* above .submenus */
}


.divSearch.nav-secondary{width:200px;top:0;right:130px;}
.divSearch.nav-secondary .container{width:100%;}

.nav-secondary a {
	display: inline-block;
	text-decoration: none;
	-webkit-font-smoothing: subpixel-antialiased;
	font-smoothing: subpixel-antialiased; 
    color:#fff;
    font: 18px/1.8 'Arial', sans-serif;
    font-weight: 400;
    text-shadow: 2px 2px #000;
    padding:0 10px;
}

/*.nav .secondary-menu ul.menu li:first-child {border-right:2px solid white;}*/
.nav .secondary-menu ul.menu li.owner-support:after {content: " | ";color:#fff;line-height:48px;text-shadow: 2px 2px #000;}


/*.nav-secondary .pull-right a {
	float: left;
	margin-right: 25px;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
}
.nav-secondary .pull-left a:hover {
	color: #fff;
}
	
a.nav-secondary-account,
a.nav-secondary-locations {
	padding: 0 20px 0 15px;
	font-size: 14px;
	font-weight: bold;
	float: right;
	background: #fbbd71;
	-webkit-transition: all .1s ease;
	   -moz-transition: all .1s ease;
	    -ms-transition: all .1s ease;
	        transition: all .1s ease;
}
a.nav-secondary-account:hover,
a.nav-secondary-locations:hover {
	background: #FFF;
    color:#fbbd71;
}
a.nav-secondary-account:before,
a.nav-secondary-locations:before {
	font: normal 1em 'FontAwesome'; 
	margin-right: 8px;
}

a.nav-secondary-account 			{ color: #4f483e; }
a.nav-secondary-account:before		{ content: '\f007'; }
a.nav-secondary-locations 			{ color: #fff; margin-left: 2px; }
a.nav-secondary-locations:before	{ content: '\f041'; }
*/



.top-menu a.logo_PP     {float:left; background:url(/images/PEL/top_logo_PP_on.png) top left no-repeat; width:112px; height:48px; display:block;}
.top-menu a.logo_WP     {float:left; background:url(/images/PEL/top_logo_WP_off.png) top left no-repeat; width:145px; height:48px; display:block;}
.top-menu a.logo_WP:hover     {float:left; background:url(/images/PEL/top_logo_WP_on.png) top left no-repeat; width:145px; height:48px; display:block;}

.top-menu .top-menu-content span {position:relative; top:15px; color:White;}
.top-menu .top-menu-content a {float:left; display:block; text-decoration:none; }
.top-menu .top-menu-content a:hover {background-color:#323232;}

.my-account {float:right;}
.my-account a.login {width:123px; height:48px; font-size:12px;font-family: "Montserrat";font-weight:normal;}
.icon_login {background:url(/images/PEL/icon_Lock.png) top left no-repeat; width:17px; height:22px; display:block; float:left; margin:10px 10px 0 5px;}

ul.menu li.my-account {display:none;float:none;}


/* submenu ----------------------------------------------------------- */

.submenu {
	display: block;
	position: absolute;
	width: 220px;
	left: 0;
	top: 60px;
	z-index: 101;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	
	/* full width in fixed container trick */
	/*padding: 0 1000em;
    margin: 0 -1000em;*/
    
	-webkit-transition: all .25s ease .15s;
	   -moz-transition: all .25s ease .15s;
	    -ms-transition: all .25s ease .15s;
	        transition: all .25s ease .15s;
	
	-webkit-transform: translate3d(0, 0, 0);
	   -moz-transform: translate3d(0, 0, 0);
	    -ms-transform: translate3d(0, 0, 0);
	        transform: translate3d(0, 0, 0);
}
.submenu .container {
	/* header height without border - workarounds for full width, absolutely 
	positioned and contained submenu that still use reasonable markup.
	Without this, moving your mouse from the parent li would cause the
	submenu to hide again, unless a bunch of "magic numbers" are used
	for the submenu's top position. This is at least slightly more reasonable. */
	/*margin-top: 100px; */
    width:auto;
    display:inline-block;
    padding:0;
}
.submenu .row {
    list-style: none;
	padding: 5px 0;
	position: relative;
    background:#323232;
    color:#fff;
    width:220px;
    margin:0;
}

.submenu .row a {color:#fff;font-family: "Montserrat";font-size:12px;text-transform:uppercase;text-decoration:none;font-weight:normal;}
.submenu .row li:hover {background:#000;}
.submenu .row li a {margin:5px 15px;}

/*.sub-products {left:444px;top:100px;}
.sub-shopping-tools {left:556px;top:100px;}
.sub-key-technologies {left:720px;top:100px;}
.sub-owner-support ul {position:relative;left:0px;}
.sub-owner-support{left:75px;top:50px;}*/
.sub-owner-support{left:40px;}

.submenu-thumbs .row {
	padding-bottom: 15px;
}
.submenu .row:before {
	/* setting a border-top on the submenu's .container or .row
	extends beyond the left and right edge due to bootstrap's grid,
	and I didn't want to additional more markup just for a border */
	/*content: '';
	position: absolute;
	top: 0;
	left: 0px;
	width: 250px;
	height: 1px;
	background: #fff;*/
	
}
/*
.submenu-footer {
	background: #e7e5e2;
	text-align: center;
	padding: 15px 1000em;
    margin: 0 -1000em;
}
.submenu-footer a {
	display: inline-block;
	color: #000;
	padding: 0 15px 0 4px;
	margin: 0 5px;
	border-right: #000 1px solid;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
}
.submenu-footer a:last-child {
	border-right: 0;
	padding-right: 0;
}
.submenu-footer a:hover {
	color: #fbbd71;
}

.submenu-thumb > a {
	display: block;
	position: relative;
	margin-bottom: 20px;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.2;
	color: #FFF;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}
.submenu-thumb > a > div {
	position: absolute;
	width: 100%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.no-csstransforms .submenu-thumb > a > div {
	top: 33%;
}
.submenu-thumb > a:before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	opacity: .85;
	-webkit-transition: opacity .2s ease;
	   -moz-transition: opacity .2s ease;
	    -ms-transition: opacity .2s ease;
	        transition: opacity .2s ease;
}
.submenu-thumb > a:hover:before {
	opacity: .98;
}

.submenu-intro h2 {
	font-size: 32px;
	font-weight: 300;
	margin: 0 0 20px 0;
}
.submenu-intro p {
	font-style: italic;
	line-height: 1.8;
	padding-right: 40px;
	color: #8a8c8e;
}
.submenu-links {
	background: #f3f2f0;
	padding: 20px 30px;
	list-style: none;
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
	-webkit-column-gap: 40px;
	-moz-column-gap: 40px;
	column-gap: 40px;
}
.submenu-links li {
	margin: 0 0 8px 0;
}
.submenu-links a {
	font-weight: 400;
	text-decoration: none;
}
.submenu-links a:after {
	content: '\f105';
	padding-left: 8px;
	font-family: 'FontAwesome';
}*/


.dropdown-submenu{position:relative;}
.dropdown-submenu>.dropdown-menu{top:-11px;left:100%;border-radius:0;background: rgba(132,4,6,.8);}
.dropdown-submenu:hover>.dropdown-menu{display:block;}
.dropdown-submenu>.dropdown-menu a:hover{background:none;color:white;text-decoration:underline;}
.dropdown-submenu>.dropdown-menu a {padding:3px 20px 3px 0;}
ul.dropdown-menu {position:absolute;left:0px;top:0px;width:100%;min-width:250px;}



/* search ---------------------------------------------------------------- */

.site-header .search {
	/*float: right;
	position: relative;*/
    position:absolute;
    top:8px;
    right:10px;
	width: 40px;
	-webkit-transition: all .15s;
	   -moz-transition: all .15s;
	    -ms-transition: all .15s;
	        transition: all .15s;

	/* TODO: make this work better */

}
.site-header .search.search-active {
	width: 195px;
}
.site-header .search input {
	position: absolute;
	left: 0;
	float: left;
	width: 100%;
	height: 35px;
	padding: 0 18px;
	font-size: 14px;
    line-height:16px;
	/*color: #d2d2d2;*/
    color:#444;
	background: #fff;
    font-style:normal;
	border: 0;
	outline: none;
	-webkit-font-smoothing: subpixel-antialiased;
	font-smoothing: subpixel-antialiased; 
}
.site-header .search .submit {
	position: relative;
	float: right;
	width: 40px;
	height: 35px;
	line-height: 30px;
	text-align: center;
	font-size: 0;
	color: #fbbd71;
	background: #fff;
	border: 0;
	outline: none;
	-webkit-transition: all .1s ease;
	   -moz-transition: all .1s ease;
	    -ms-transition: all .1s ease;
	        transition: all .1s ease;
}
.site-header .search .submit:hover {
	color: #fbbd71;	
}
.site-header .search .submit:after {
	content: '\f002';
	font: 16px/30px 'FontAwesome';
}


/* =============================================================================
 * content
 * -------------------------------------------------------------------------- */

.site-content,
.has-sidebar.has-gradient .site-content { 
	/*padding-bottom: 100px;*/
    padding-bottom: 0; 
    /*background: #FFF url('/images/FSD/rwd/site-content-bg.png') 0 0 repeat-x;*/
    background:#efefef;
}
.has-sidebar .site-content { 
	background-image: none;
}
.has-footer .site-content,
.page-home .site-content { 
	padding-bottom: 0; 
}

.main-footer { 
	margin-top: 50px; 
	padding-top: 50px;
	padding-bottom: 75px;
}

/* =============================================================================
 * home
 * -------------------------------------------------------------------------- */

/* hero ---------------------------------------------------------------- */

.hero { 
	height: 738px;
	background-color: #fbbd71;
	background-position: 50% 0;
	background-repeat: no-repeat;
	/*background-image: url('/images/FSD/rwd/hero.jpg');*/
}
@media (min-width: 1230px) and (max-height: 800px) {
	.hero { height: 400px; background-size: cover; }
}
.hero .container {
	display: table;
	height: 100%;
	max-width: 620px;
	color: #FFF;
}
.hero .container > div {
	display: table-cell;
	width: 100%;
	height: 100%;
	vertical-align: middle;
	text-align: center;
}
.hero h1 {
	font-size: 52px;
	font-weight: 300;	
	line-height: 1.2;
	margin: 0 0 15px 0;
}
.hero p {
	font-size: 16px;
	margin: 0 0 25px 0;	
}
.hero h1,
.hero p {
	text-shadow: 0 2px 10px rgba(0,0,0,.5);
}

/* home-projects ---------------------------------------------------------------- */
/*
.home-projects {
	padding-top: 35px;
	padding-bottom: 50px;
	position: relative;
}
.home-projects:before {
	content: '';
	position: absolute;
	width: 100%;
	left: 0;
	right: 0;
	top: 165px;
	bottom: 0;
	background: #e7e5e2;
}
.home-projects .container > h2 {
	margin: 0 0 25px 0;
	font-size: 25px;
	font-weight: 400;
	letter-spacing: 0.025em;
	text-align: center;
	text-transform: uppercase;
}
.home-projects ul {
	margin-bottom: 0;
	padding: 0;
    list-style: none;
}
.home-projects .callout { 
	margin: 0 auto 15px auto;
}
*/
/* home-ideas ---------------------------------------------------------------- */

/*
.home-ideas {
	background: #dbd1c1 url('/images/FSD/rwd/home-ideas-bg.jpg') 50% -60px no-repeat;
	box-shadow: inset 0 0 25px rgba(0,0,0,.25);
}
.home-ideas .container {
	padding-top: 100px;
	padding-bottom: 100px;
}
.home-ideas .callout-box {
	float: right;
	max-width: 570px;
	padding-left: 5%;
	padding-right: 5%;
	color: #FFF;
}
.home-ideas .callout-box h1 {
	font-size: 40px;
}
*/

/* home-offers ---------------------------------------------------------------- */

/*
.home-offers {
    background: linear-gradient(#d8cfbe, #b8a789);
}
.home-offers .container {
	padding-top: 0px;
	padding-bottom: 0px;
}
.home-offers h1 {
    color: #171717;
	font-size: 34px;
    text-align:center;
    text-transform:uppercase;
}
.home-offers h1 em {
	font-size:42px;
	color: #660000;
    font-weight:bold;
    font-style:normal;
}
.home-offers .btn-inverted {
	background:#660000;
}
.home-offers p {text-align:center;}
*/

/* home-testimonials ---------------------------------------------------------------- */

/*
.home-testimonials {
	background: #e7e5e2;
	overflow: hidden;
}
.home-testimonials .container {
	padding-top: 100px;
	padding-bottom: 80px;
	position: relative
}
.home-testimonials .container:before,
.home-testimonials .container:after {
	content: '';
	display: block !important;
	position: absolute;
	width: 105px;
	height: 82px;
	background: url('/images/FSD/rwd/home-testimonials-sprite@2x.png') -999px -999px no-repeat;
	background-size: auto 82px;
	opacity: .55;
}
.home-testimonials .container:before 	{ left: 30px; top: -8px; background-position: 0 0; }
.home-testimonials .container:after 	{ right: 30px; bottom: -8px; background-position: 100% 0; }

.home-testimonials blockquote {
	margin: 0;
	padding: 0;
	border: 0;
}

.home-testimonials .row :first-child blockquote { padding-left: 40px; padding-right: 25px; }
.home-testimonials .row :last-child blockquote 	{ padding-left: 25px; padding-right: 40px; }
*/

/* home-tools ---------------------------------------------------------------- */

/*
.home-tools {
	padding-top: 25px;
	padding-bottom: 75px;
}
.home-tools form { 
	margin-bottom: 50px;
}
.home-tools .lead {
	margin: 40px auto;
	max-width: 840px;
	text-align: center;	
}
*/

/* home-service ---------------------------------------------------------------- */

/*
.home-service {
	padding: 100px 0;
	background: #8e816f url('/images/FSD/rwd/service-cta-bg.jpg') 50% -120px no-repeat;
}
.home-service .container {
	max-width: 500px;
	text-align: center;
	color: #FFF;
}
.home-service h1 {
	margin-top: 0;
	font-size: 40px;
	font-weight: 300;
	letter-spacing: 0.025em;
	text-transform: uppercase;
	color: #fff;
}
*/

/* LOCATIONS ---------------------------------------------------------------- */

.map {
	background: #FFF;
	padding: 5px;
	border-radius: 0;	
	box-shadow: 0 1px 5px rgba(0,0,0,.25);
}

.locations-search {
	margin: 40px 0;
}
.site-search { 
	margin-bottom: 40px;
}
.site-search .form-control,
.locations-search .form-control {
	margin-bottom: 10px;
}
.site-search .btn,
.locations-search .btn {
	margin-top: 6px;
}

.locations-geolocation strong:before {
	content: '';
	display: block;	
}
.locations-geolocation a {
	color: #988f86;
	font-weight: 400;
	display: inline-block;
	margin-left: 10px;
}
.locations-body {
	padding: 30px 20px;	
	/*background: url('/images/FSD/rwd/locations-body-bg.png') 0 0 repeat-x;*/
}
.locations-results {
	list-style: none;
	margin: 0;
	padding: 0;
}
.locations-results > li {
	margin-bottom: 30px;
}
.locations-results h4 {
	font-size: 18px;
	margin: 0 0 5px 0;
}
.locations-results h4 a {
	font-weight: 700;
}
.location-address {
	margin-bottom: 0;
}
.location-links a {
	display: inline-block;
	margin-right: 12px;
}
.location-contacts { 
	margin: 0;
}
.location-contacts dt {
	font-weight: bold;
	clear: both;
	float: left;
	margin-right: 6px;
}

/* SEARCH ---------------------------------------------------------------- */

/* NOTE .search has shared styles with .locations above */

.search-results {
	list-style: none;
	margin: 30px 0;
	padding: 0;
}
.search-results > li {
	margin-bottom: 30px;
    display:inline-block;
    width:100%;
}
.search-results h2 > a {
	font-weight: 700;
}
.search-results h2 {
    font-size:28px;
    margin:0;
}
.search-results-thumb {
	display: block; 
	margin: 0 20px 20px 0;
    float:left;
}
.search-results > li ul {
    display:none;
}

@media (max-width: 479px) {
	.search-results-thumb { float: none; margin: 0 0 20px 0px;}
}

/* REQUEST FREE CONSULTATION */
/*
.consultation-steps {
	padding: 0;
	margin-top: 25px;
}
.consultation-steps > .container p { 
	font-size: 1.5em; 
}
.consultation-steps .wrap { 
	background: #e7e5e2; 
	padding-top: 40px; 
	padding-bottom: 40px; 
}
.consultation-steps ol {
	padding: 0;
	list-style: none;
}
.consultation-steps li > div { 
	margin-bottom: 30px;
	position: relative;
	padding-left: 60px;
}
.consultation-steps li > div:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #c7c1b9;
	text-align: center;
	color: #e7e5e2;
	font-size: 30px;
	font-weight: 700;
	line-height: 44px;
}
.consultation-steps li:nth-child(1) > div:before { content: '1'; }
.consultation-steps li:nth-child(2) > div:before { content: '2'; }
.consultation-steps li:nth-child(3) > div:before { content: '3'; }

.consultation-steps h2 { 
	font-size: 2em; 
	font-weight: 300; 
	line-height: 1.2;
	max-width: 270px; 
	margin: 0 0 10px 0;
}*/

/* PRODUCTS */

.products-list,
.products-gallery {
	padding: 0;
	list-style: none;
}
.products-gallery > li {
	margin-bottom: 10px;
}
.products-list > li {
	/*min-height: 360px;*/
    min-height: 380px;
}
.products-list .product-title {
	font-size: 16px;
	line-height: 1.3;
	margin: 15px 0 3px 0;
    color:#000;
}
.products-list .product-price { 
    font-size: 16px;
	color:#000;
	font-style: italic;
	display: block;
}

/* PRODUCT FILTERING */

.product-filters > h3 {
	font-size: 1em;
	opacity: .5;
}
.product-filters-panel {
	background: #FFF;
	padding: 30px 0;
	margin-bottom: 25px;
	box-shadow: 0 1px 3px rgba(0,0,0,.25);
	position: relative;
}
.product-filters-panel:before,
.product-filters-panel:after {
	content: '';
	position: absolute;
	display: block;
	font-size: 0;
	width: 1px;
	top: 30px;
	bottom: 30px;
	background: #d4cfc8;
} 
.product-filters-panel:before 	{ left: 33%; }
.product-filters-panel:after 	{ left: 67%; }

.product-filters-heading {
	color: #fbbd71;
	min-height: 60px;
	display: flex;
	align-items: center; /* vertical */
	text-align: center; /* horizontal */
	font-size: 1.5em;
	line-height: 1.4;
	padding: 0 15%;
	pointer-events: relative;
}
.product-filters-heading .help {
	position: absolute;
	top: 6px;
	right: 25px;	
}
.product-filters-panel .row > div:last-child .product-filters-heading .help {
	right: 40px;
}
.product-filters-checkboxes {
	list-style: none;
	padding: 0; 
	margin-top: 20px;
}
.product-filter-project .product-filters-checkboxes { padding-left: 22.5%; }
.product-filter-fuel 	.product-filters-checkboxes { padding-left: 35%; }
.product-filter-room 	.product-filters-checkboxes { padding-left: 20%; padding-right: 20%; -webkit-column-count: 2; -moz-column-count: 2; -ms-column-count: 2; column-count: 2; }

.product-filters-checkboxes li {
	margin: 5px 0 0 0;
}
.product-filters-checkboxes label {
	font-weight: normal;
	font-style: italic;
	padding-left: 8px;
}

.product-filters-dropdowns .btn-group { 
	margin-bottom: 20px;
}
.product-filters-dropdowns .btn-group,
.product-filters-dropdowns .btn-dropdown {
	width: 100%;
}

.product-filters-results {
	/*margin-bottom: 20px;
    width:100%;
    background-color:#fbbd71; */
    padding:0px; color:white; text-align:center;
}
.product-filters-results > span {
	/*position: relative;
	top: 12px;
	left: 5px;
	font-style: italic;
	opacity: .5;*/
    font-size:28px;
}





.product-filters-sort {
	width: 170px;
}
.product-filters-sort .btn-group {
	width: 100%;
}

/* PRODUCT DETAILS */

.product-hero { 
	margin: 0px auto; 
	position: relative;
}
.product-detail h3, .product-detail h1 {
	margin-bottom: 20px;
    font-family:"Lato";
    font-size:20px;
}
.product-detail p {line-height:24px;}
.carousel-inner a.hasLink {cursor:pointer;}
.product-header { 
	margin: 0 0 15px 0;
	overflow: hidden; /* clearfix */
}
.product-header .product-pricing {
	float: left;
}
.product-share {
	list-style: none;
	margin: 0;
	padding: 0;
	/*float: right;*/
}
.product-share li { 
	display: inline-block;
	margin: 0 10px 0 0;
}
.product-share a {
	color: #000;
	font-size: 20px;
	text-decoration: none;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.product-share a:hover {
	color: #fbbd71;	
}

.product-how-it-works h1 {
	font-size: 2em;
	margin: 0 0 10px 0;
}

.product-feature-thumbs img {
	margin-bottom: 8px;
    width:100%;
}
.product-feature-thumbs strong {
	display: block;
	line-height: 1.3;
	margin-bottom: 10px;
    min-height: 30px;
    font-size:16px;
}
.product-feature-thumbs .controls strong {
	margin-bottom: 0px;
    min-height: 0px;
}

.product-detail-specs-image {
	text-align: center;
	/*padding: 30px 0;*/
    padding: 0px 0;
}
.product-detail-specs-links {
	list-style: none;
	margin: 30px 0;
	-webkit-column-count: 2;
	-moz-column-count: 2;
	-ms-column-count: 2;
	column-count: 2;
    font-size:16px;
}
/*.product-detail-specs-links a:after { 
	content: '\00A0\00BB';
    font-weight: normal;
}*/

ul.product-detail-specs-links li a {cursor:pointer;}
/*ul.product-detail-specs-links li a.selected:after {content: '\00A0\00BB';font-weight: normal;}*/
ul.product-detail-specs-links li a.selected:after {content: '\f102';font: 14px/26px 'FontAwesome';}


.product-detail-downloads h3 {
	margin-bottom: 15px;
}
.product-detail-downloads ul {
	list-style: none;
	margin: 0 0 0px 0;
	padding: 0;
}
.product-detail-downloads ul li {
	margin-bottom: 3px;
}
.product-detail-downloads a > i {
	display: inline-block;
	margin-right: 8px;
}

/*
.ideas-footer-callout {
	margin-top: 0;
	padding-top: 0;
	padding-bottom: 0;
    background: #dbd1c1 url('/images/FSD/rwd/ideas-bg.jpg') 50% -60px no-repeat;
    box-shadow: inset 0 0 25px rgba(0,0,0,.25);
}
.ideas-footer-callout .callout-big {
	overflow: visible;
}
.ideas-footer-callout .callout-big .callout-box {
	max-width: 550px;
	top: 50px;
	right: 30px;
	bottom: auto;
	padding-top: 30px;
	padding-bottom: 30px;
	background: #9d5116; 
	background: rgba(157,81,22,.9);
}
.ideas-footer-callout img {
	position: relative;
}
*/

/* LOCATION DETAILS */

.location-hero {
	margin-bottom: 15px;
}
.location-hours {
	overflow: hidden; /* clearfix */
}
.location-hours dt {
	clear: left;
	float: left;
	font-weight: normal;
	width: 120px;
	margin: 2px 0;
}
.location-hours dd {
	float: left;
}
.location-brands > div {
	margin-bottom: 15px;
}
.location-footer {
	background: #f5f3f1;
}
.location-footer [class*="col-"] {
	margin-bottom: 30px;	
}

/* ARTICLE LIST */

.article-list { 
	list-style: none;
	padding: 0;
}
.article-list > li { 
	margin-bottom: 40px;
}
.article-list-body { 
	padding: 30px;
	background: #fbbd71;
	position: relative;
}
.article-list-body:before {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 20px;
	top: -16px;
	left: 0;
	z-index: 1;
	opacity: 0.5;
	background: #000;
}
.article-list .call-to-action { 
	margin-bottom: 0;
}


/* ARTICLE DETAILS */

.article-header {
	margin-bottom: 20px;
}
.article-header h3 {
    font-size:32px;
	margin: 0px;
}
.article-header h3,
.article-header h3 a {
    color:#fff;
    text-shadow:2px 2px #000;
	font-weight: 700;
}
.article-meta {
	font-size: 14px;
	font-weight: 700;
	color: #000;
	/*text-transform: uppercase;*/
}

/* =============================================================================
 * sidebar
 * -------------------------------------------------------------------------- */

.sidebar > div {
	/*margin-bottom: 30px;*/
}

.subnav {
	background: #fff;
	/*box-shadow: 0 1px 5px rgba(0,0,0,.25);*/
}
.subnav-heading {
	color: #000;
    font-family: Montserrat;
    text-transform: uppercase;
    font-size: 16px;
}
.subnav-menu {
	margin: 0 0 0px 0;
	padding: 0 0 0px 0;
	list-style: none;
}
.subnav-menu li {
	margin: 0;
	padding: 0;
}
.subnav-menu li:first-child:before,
.subnav-menu li:after {
	content: '';
	display: block;
	height: 1px;
	font-size: 0;
	background-image: -webkit-gradient(linear, 0 0, 100% 0, from(#bcb4a9), to(transparent));
	background-image: -webkit-linear-gradient(left, #bcb4a9, transparent);
	background-image: -moz-linear-gradient(left, #bcb4a9, transparent);
	background-image: -o-linear-gradient(left, #bcb4a9, transparent);
}
.subnav-menu a {
	display: block;
	color: #fbbd71;
	padding: 5px;
	font-size: 12px;
	font-weight: 400;
    font-family: Montserrat;
    text-transform: uppercase;
	text-decoration: none;
}
.subnav-menu a:after {
	/*content: '\00A0\00A0\00BB';
	font-weight: normal;*/
}
.subnav-menu a:hover {
	/*background: #000;*/
}
.subnav-menu .active a {
	font-weight: 700;
	background: #e7e5e2;
}

.related-products {
	/*background: #efebe8 url('/images/FSD/rwd/related-products-bg.jpg') 50% 0 no-repeat;*/
	background-size: auto 100%;
}
.related-products ul {
	list-style: none;
	margin: 25px 0;
	padding: 0;
	-webkit-column-count: 4;
	-moz-column-count: 4;
	-ms-column-count: 4;
	column-count: 4;
}
.related-products li a {
	color: #493b27;
	font-size: 15px;
	font-weight: 400;
	text-decoration: none;
}
.related-products li a:after {
	content: '\00A0\00A0\00BB';
	font-weight: normal;
}
.related-products li a:hover {
	color: #fbbd71;
}

/* quick-nav ---------------------------------------------------------- */

.quick-nav-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-top: 20px;
	border-bottom: #464243 1px dotted;
}
.quick-nav-menu li:not(:last-child) { 
	border-bottom: #464243 1px dotted;
}
.quick-nav-menu a {
	display: block;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.25;
	padding: 10px 15px 10px 40px;
	color: #000;
	text-decoration: none;
	position: relative;
	-webkit-transition: all 0.1s ease;
	-moz-transition: all 0.1s ease;
	-ms-transition: all 0.1s ease;
	transition: all 0.1s ease;
}
.quick-nav-menu li:hover {
	background: #fbbd71;
}
.quick-nav-menu li a:hover {
	color: #fff;
}
.quick-nav-menu a > i {
	display: block;
	position: absolute;
	top: 50%;
	left: 20px;
	width: 30px;
	-webkit-transform: translateY(-50%) scale(1.3);
	-moz-transform: translateY(-50%) scale(1.3);
	-ms-transform: translateY(-50%) scale(1.3);
	transform: translateY(-50%) scale(1.3);
	
}


/* PPC LANDING */

.ppc-landing .sidebar .form {
	margin-top: 20px;
	padding: 35px;
	background-color: #d2d2d2;
    color:#000;
	/*background: -moz-linear-gradient(top,  rgba(224,220,216,1) 0%, rgba(245,243,241,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(224,220,216,1)), color-stop(100%,rgba(245,243,241,1)));
	background: -webkit-linear-gradient(top,  rgba(224,220,216,1) 0%,rgba(245,243,241,1) 100%);
	background: -o-linear-gradient(top,  rgba(224,220,216,1) 0%,rgba(245,243,241,1) 100%);
	background: -ms-linear-gradient(top,  rgba(224,220,216,1) 0%,rgba(245,243,241,1) 100%);
	background: linear-gradient(to bottom,  rgba(224,220,216,1) 0%,rgba(245,243,241,1) 100%);*/
}
/*.ppc-landing .sidebar .form h2 {
	margin-bottom: 40px;
}*/
.ppc-landing .sidebar .form-control {border:#000 2px solid;}
.ppc-landing .banner {
	height:600px;
}
.ppc-landing h2 {font-size:36px;}
.ppc-landing .main img {width:100%;padding:10px 0;}
.ppc-landing p {margin:20px 10px;}
.ppc-landing .features p, .ppc-landing .main .features a {margin:5px 0;}


/* =============================================================================
 * footer
 * -------------------------------------------------------------------------- */

/* footer-links ---------------------------------------------------------- */

#footer {background:url(/images/PEL/footer_Pattern.png) top left repeat;}
.footer-links {
	padding-top:20px;
	padding-bottom:20px;
    padding-left:20px;
    padding-right:20px;
	
}
.footer-links,
.footer-links a {
	color: #fff;
	font-family: "Lato";
    font-size: 13px;
    font-weight:normal;
    text-decoration:none;
}
.footer-links a:hover {
	/*color: #FFF;
	color: rgba(255,255,255,.9);*/
}
.footer-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer-links li {
	margin-bottom: 3px;
    line-height:1.0em;
}

.footer-links h5, .footer-links h5 a {color:#fbbd19;font-family: "Lato";font-size: 14px;margin: 0px;padding:10px 0;text-transform:none;}
.footer-links .logo {display: block;width:137px;height:54px;background: url('/images/PEL/logo_PelPro.png') 0 0 no-repeat;background-size: contain;margin:0 0 10px 0;}
.small-links a {font-size:11px;}
.small-links li {line-height:1.1em;}
.copyright {font-size:11px;}


/* footer-form ---------------------------------------------------------- */

.footer-form b {
	display: inline-block;
	margin-right: 20px;
	text-transform: uppercase;
	font-weight: 800;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased; 
}
.footer-form .form-control {
	margin-top: 8px;
	height: 50px;
}
.footer-form .radio-inline {
	margin-left: 0;
	margin-right: 12px;
}
.footer-form .form-actions {
	position: relative;
}
.footer-form .form-actions .submit {
	position: absolute;
	width: 28px;
	height: 28px;
	font-size: 0;
	text-align: center;
	background: #FFF;
	right: 11px;
	top: 11px;
	border: 0;
	outline: none;
}
.footer-form .submit:after {
	content: '\f054';
	font: 14px/26px 'FontAwesome';
	color: #899f99;
	padding-left: 3px;
}


/* FIND A LOCATION */

/*.footer-links .submit,
.footer-links input + label:before {
	opacity: .45;
}
.footer-links .submit:after {
	color: #554b3e;
}
.footer-links .form-control {
	opacity: .45;
}
.footer-links .form-control:focus,
.footer-links .form-control.has-value {
	opacity: 1;
}
*/
.footer-locator .required, .footer-locator .professional_info {display:none;}
.footer-locator p {margin:5px 0 0 0px;}
.footer-locator .locator_search_type_control {margin-top:5px;}
.footer-locator .type {float:left;margin-right:10px;}
.footer-locator .options ul {list-style:none;padding:0;}
.footer-locator .options ul li {display:inline-block;}
.footer-locator .options label {padding:0 5px;font-weight:300;}
.footer-locator .form-control {background:#fff;color:#000;}
.footer-locator a.btn {font-size:18px;}


/* social ---------------------------------------------------------- */

.social {
	margin: 0;
	padding: 0;
	overflow: hidden;
}
/*.site-footer .social {
	margin-bottom: 50px;
}*/
.social li {
	display: inline;
}
.social a {
	display: block;
	float: left;
	margin-right: 10px;
	/*width: 42px;
	height: 42px;*/
	color: #554b3e;
	text-align: center;
	text-decoration: none;
	line-height: 50px;
	/*background: #a29c95;
	background: rgba(255,255,255,.45);*/
	-webkit-transition: all .1s ease;
	   -moz-transition: all .1s ease;
	    -ms-transition: all .1s ease;
	        transition: all .1s ease;
}
/*.social a:hover {
	color: #fbbd71;
	background: rgba(255,255,255,.9);
}*/
.social a:before {
	font: 24px 'FontAwesome';
}

.social-facebook:before		{ content: '\f09a'; }
.social-google:before		{ content: '\f0d5'; }
.social-pinterest:before 	{ content: '\f231'; }
.social-houzz:before 		{ content: '\f27c'; }

/* footer-copyright ---------------------------------------------------------- */
/*
.footer-copyright { 
	background: #3c352c;
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
	line-height: 47px;
	box-shadow: 0 -10px 20px rgba(0,0,0,.1);
}
.footer-copyright .container { 
	color: rgba(255,255,255,.35);
	overflow: hidden;
}
.backgroundsize .footer-copyright .container:before {
	content: '';
	display: block;
	float: left;
	width: 395px;
	height: 127px;
	background: url('/images/HTL/rwd/logo.png') 0 0 no-repeat;
	background-size: contain;
	opacity: .35;
}*/
/*
.footer-copyright .container:after {
	content: '';
	display: block;
	float: right;
	clear: none;
	width: 124px;
	height: 47px;
	background: url('/images/FSD/rwd/logo-bbb@2x.png') 0 0 no-repeat;
	background-size: contain;
	opacity: .35;
}

.footer-copyright a {
	color: rgba(255,255,255,.35);
	font-weight: normal;
	text-decoration: none;
}
.footer-copyright a:hover {
	color: rgba(255,255,255,.7);
}*/

/* =============================================================================
 * modals
 * -------------------------------------------------------------------------- */

#account .form-control[name="password"] {
	margin-bottom: 8px;
}
#account p {
	text-align: center;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}
#account .form-group { 
	max-width: 370px;
	margin-left: auto;
	margin-right: auto;
}

/* =============================================================================
 * retina
 * -------------------------------------------------------------------------- */

@media 
	(-webkit-min-device-pixel-ratio: 2), 
	(-webkit-min-device-pixel-ratio: 1.25), 
	(-webkit-min-device-pixel-ratio: 1.3), 
	(-webkit-min-device-pixel-ratio: 1.5),
	(min-resolution: 192dppx),
	(min-resolution: 144dppx),
	(min-resolution: 120dppx),
	(min-resolution: 124.8dppx) {
	
	/* /images/FSD/rwd/logo@2x.png, background-size: 100px auto; */
}

/* =============================================================================
 * browsers
 * -------------------------------------------------------------------------- */

.ie8 body {
	padding-bottom: 100px;
}
.ie8 #logo a {
	background-image: url('/images/HTL/rwd/logo.png');
}

.ie8 .nav .menu { padding-left: 320px; }
.ie8 .nav .menu > li > a { padding: 0 18px; }
.ie8 .nav .menu > li > a span:after { display: none; }
.ie8 .nav .menu-item-2 > a span { width: 105px; line-height: 1.25; padding-top: 7px; }
.ie8 .nav .menu-item-6 > a span { width: 95px; line-height: 1.25; padding-top: 7px; }
.ie8 .submenu-thumb a { background: #6b5b46 !important; }
.ie8 .submenu-thumb img { visibility: hidden; }

.ie8 .form-inverted .form-control {
	color: #FFF;
}
.ie8 .form-inverted .form-control:focus {
	color: #4f483e;
}
.ie8 .radio-inline input[type="radio"] {
	display: inline-block !important;	
}
.ie8 .radio-inline input[type="radio"] + label:before {
	display: none !important;
}

.home-testimonials .container:before,
.home-testimonials .container:after {
	display: none;
}

.ie8 .footer-copyright .container:before,
.ie8 .footer-copyright .container:after {
	display: none;
}

#IE {
	position: fixed;
	bottom: 0;
	left: 0;
	font-size: 15px;
	width: 100%;
	height: 100px;
	line-height: 100px;
	text-align: center;
	color: #FFF;
	background: #231f20;
}





/*OVERRIDE*/
.clear {clear:both;}

.submenu a.thumbnail .thumbnail-heading {font-size: 17px;font-weight: 400;letter-spacing: 0.015em;padding: 15px;text-align: left;}

.breadcrumb span.orange {display:none;}

/*.container {background:#efefef;}*/

.errors, .error, .error ul li, .errorlist ul li {color:red;}


ul.image-list {margin-right: -15px;margin-left: -15px;list-style:none;padding:0;display: inline-block;}
ul.image-list li {margin-bottom:10px;}

/*promo list page*/
ul.promotions {padding:0 0 40px 0;}
ul.promotions li {display:inline-block;padding:10px 0;width:100%;}
ul.promotions li img {float:left;padding-right:20px;}

/*video container*/
.video-container iframe { width:100%; height:645px;}


.js-vw3d {cursor:pointer;}
.g-plusone {content: "\f0d5" !important;}



/*careers*/
.careers-cta {margin:20px 0;}
.careers-cta .btn {width:100%;margin-bottom:10px;padding:10px 0px;}
.connect-button {width:100%;background: #fbbd71;border: none;box-shadow: 0 2px 3px rgba(0,0,0,.15);font-size: 18px;font-weight: 300;padding: 10px 0px;color: #fff;display: inline-block;text-align: center;white-space: nowrap;vertical-align: middle;border-radius:5px;text-shadow:2px 2px #000;}

/*four/five wide a tag*/
.a-four-wide {width:100%;display:inline-block;}
.a-five-wide {width:100%;display:inline-block;}
.a-four-wide span {width:25%;float:left;text-align:center;}
.a-five-wide span {width:20%;float:left;text-align:center;}

/*three wide*/
.three-wide p {font-size:14px;}
.three-wide img {width:100%;}


.custom_form label { padding:0px 20px 0 5px; font-weight:normal;}

/*calculators*/
.calculator .calculator_savings { color:White; background-color:#000; font-size:24px; text-transform:uppercase; }
.calculator .fuel_savings_open  { padding:10px;line-height:24px;}
.calculator .fuel_savings       { font-size:60px; font-weight:bold; text-align:center; margin:0;padding:0;}
.calculator .fuel_savings_close { padding:10px; text-align:right; line-height:24px;}
.calculator input[type='text'] {margin:5px 0;}
.calculator select {margin:5px 0;}


/*idea gallery*/
.zoom {position: absolute;top:5px; right: 5px;bottom: 5px;border-radius: 5px;width: 31px;height: 31px;background: #dddad9 url(/images/MAJ/icon_zoom.png) 50% 50% no-repeat;background-color: rgba(169,163,161,.4);text-indent: -9999px;transition: background-color .5s;}
#zoom {position: fixed;left: 0;right: 0;top: 0;bottom: 0;z-index: 30;max-width: none;background: url(/images/FPL/dimmer.png) fixed;text-align: center;}
#zoom div {position: absolute;left: 50px;right: 50px;top: 50px;bottom: 50px;box-shadow: 4.01px 4.46px rgba(96,102,95,.15);overflow: hidden;text-align: left;}
#zoom div {text-align: center;}
#zoom img {position: absolute;left: 0;top: 0;width: 100%;}
#zoom .tall img {position: static;margin: 0 -450px;width: auto;height: 100%;}
#zoom .close {position: absolute;right: 5px;top: 5px;z-index: 3;padding: 1.25em .75em 1em;background:url(/images/MAJ/gallery_close.png) no-repeat;height:21px;width:21px;font-size:0px;}


/*locator nav*/
.locatornav {margin-top: 30px;margin-bottom: 10px;list-style:none;padding:0;}
.locatornav > li {width: auto;margin: 0 10px 0 0;display:inline-block;}
.locatornav > li > a {margin: 0;padding: 15px 40px;font-size: 16px;font-weight: 700;text-align: center;text-transform: uppercase;color: #000;text-decoration:none;}
.locatornav > li > a:hover,.locatornav > li.active > a,.locatornav > li.active > a:hover,.locatornav > li.active > a:focus {background-color: #e7e5e2;}


/*form validation*/
input:required:focus:invalid, textarea:required:focus:invalid {border:2px solid red;}
input:required:focus:valid, textarea:required:focus:valid {border:2px solid green;}


/*home carousel*/
.home .carousel {position:relative;background:#000;}
.home .carousel .page-header {margin: 0;border: 0;padding: 0px 0 0 0;background-position: 50% 0;background-repeat: no-repeat;background-size: cover;background-repeat: no-repeat;max-width:1280px;width:100%;height:540px;margin:0 auto;}
.home .carousel .item a:hover {text-decoration:none;}
.home .carousel .item-copy h1 {margin:0;color:#fff;font-size:30px;padding:5px 0;text-transform:none;text-shadow:2px 2px #000;}
.home .carousel .item-copy h1:after {content: '\f04e';font-family: 'FontAwesome';font-weight: 300;padding-left: 15px;position: relative;color:#fbbd71;text-shadow:none;}
.home .carousel .item-copy h3 {margin:0;color:#fff;font-size:72px;padding:5px 0 20px 0;text-transform:none;font-weight:300;line-height:1.0em;text-shadow:2px 2px #000;}
.home .carousel .item-copy {position:absolute;bottom:200px;left:20px;right:0px;max-width:1400px;width:100%;margin:0 auto;}


/*product hero carousel*/
.product-hero .carousel {position:relative;background:#000;}
.product-hero .carousel-indicators {bottom:35px;}
.product-hero .page-header {margin: 0;border: 0;padding: 0px 0 0 0;background-position: 70% 0;background-repeat: no-repeat;background-size: cover;background-repeat: no-repeat;max-width:992px;width:100%; height:456px;margin:0 auto;}
.product-hero .item-copy {position:absolute;bottom:0px;left:0px;right:0px;max-width:992px;width:100%;margin:0 auto;color:#fff;background-color: #fbbd19;}
.product-hero .item-copy p {margin:0;color:#fff;font-size:14px;padding:7px;font-weight:300;font-family:Montserrat;}



/*main content*/
/*.main-content {padding:0 30px;}*/

/*styling*/
.editorial .content {background:#fff;margin:10px 0;padding:10px;border-top: 3px solid #fbbd19;border-bottom: 3px solid #fbbd19;font-family: "Lato";font-size: 12px;color: #625f5f;}
.editorial h1 {margin:10px 0;font-family:Montserrat;text-transform:uppercase;font-size:24px;color:#000;}
.editorial ul:not([class]) > li,
.editorial ol:not([class]) > li {
	margin: 0px;
    font-size:14px;
    font-family: "Lato";
}
.content p {font-size:14px;color: #625f5f;line-height: 1.5em;margin:10px 0px;font-family: "Lato";}
.editorial .sidebar .content a.btn {width:100%;}

.editorial table td {font-size:14px;padding:5px;border-color:gray;}

.editorial a.inactive {cursor:default; text-decoration:none;color:#717171;}
.editorial .col-md-4 {padding:10px;}
.editorial .products img {width:100%;max-width:300px;}


/*home page*/
.home .container {background:#fff;}

.home .image-copy {position:relative;top:30%;width:50%;left:20px;}
.home .image-copy h1 {font-size:60px;font-weight:700;}

.home h1 {margin:0;}
.home h5 {margin:0;font-size:30px;padding:5px 0;text-transform:none;}
.home h5:after {content: '\f04e';font-family: 'FontAwesome';font-weight: 300;padding-left: 10px;position: relative;color:#fbbd71;}
.home p {font-size:24px;line-height:28px;}

.home .col-md-12 {padding:0;}
.home .col-md-6 {padding:0;}
.home .col-md-7 {padding:0;}
.home .col-md-5 {padding:0;}

.home .faq_banner { display:block; width:100%; height:13px; background:url(/images/PEL/home_faq_bg.png) top left repeat-x; position:relative;}
.home a.faq_link { display:block; margin:0 auto; position:relative;color:#fff;font-weight:normal;text-align:center;font-family:"Lato";font-size:1.2em;text-decoration:none;background:#fbbc16;padding:25px 0;}

.home .calls_to_action	{ margin:0 auto; background:#fff; position:relative; display:block;}
.home .calls_to_action .slot { margin:20px auto;max-width:411px;width:100%;}
.home .calls_to_action a {background:#fbbc16;display:block;}
.home .calls_to_action img:hover {opacity:.4;}
.home .home-text {padding:20px 0 0 0;}
.home .home-text h1 {font-size:28px;font-weight: normal;color: #fbbc16;font-family:"Montserrat";padding:20px 10px;}
.home .home-text p {padding:10px;font-family: "Lato";font-size: 12pt;line-height:1.5em;}



/*banner*/
.banner {width:100%;background:#000;}
.banner h2 {margin:0px;padding:15px 10px;text-transform: uppercase;font-size:18px;font-weight:normal;color: #ffffff;font-family: "Montserrat";}



/*product page*/
.product-details .content {background:#fff;padding:10px;}
.product-details .cta a.btn {width: 100%;}
.product-details .social-icons {float:right;}
.product-details .social-icons div {float:left;padding: 0 2px 0 0;line-height:20px;}
.product-details .social-icons .facebook a {display: block;background: url(/images/FPL/redesign/btn_like.jpg) top left no-repeat;height: 23px;width: 47px;}
.product-detail-overview ul li {margin:0;font-size:14px;color:#625f5f;font-family: "Lato";}

.product-details .section-header {font-size: 1.1em;padding: 0px 0 20px 15px;max-width:991px;width:100%;border-top: 1px solid #dadada;background: url(/images/PEL/section_hdr_image.png) top left no-repeat;height: auto;}
.product-details .section-header h3 {font-size: 16px;font-weight: bold;margin: 0;padding: 4px 0 5px 0;font-family:"Montserrat";}

.product-details .row {margin-right:0px;}
.product-details p strong {font-weight:bold;color:#000;font-size:14px;}

.product-detail-downloads ins.pdf {float: left;display: block;background: url(/images/HNG/redesign/icon_pdf.jpg);width: 24px;height: 24px;margin:5px 5px 0 0;}
.product-detail-downloads a {font-size:14px;}

.related-products {background:#d2d2d2;padding:20px 30px;}
.related-products img {max-width:326px;width:100%;}
#specifications h2 {font-size:20px;}
#specifications .table {font-size: 14px;}
#specifications .table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {padding: 4px 8px;}
#features img {max-width:326px;}


/*attributes section*/
.attributes .slider {display:block;height:80px;width:100%;}
.attributes .slider > div {display:inline-block;height:80px;float:left;background:#ebebeb;font-size:0px;margin-right:.5%;color:#fff;text-align:center;}
.attributes .slider > div:last-child {margin-right:0;}
.attributes .slider > div p {position:relative;top:35%;transform:translateY(-50%);color:#000;}
.attributes .slider .active {background:#717171;font-size:24px;}
.attributes .slider .active p {color:white;}
.attributes .values {display:block;height:20px;width:100%;}
.attributes .values > div {float:left;font-size:14px;font-weight:bold;margin-right:1%;}
.attributes .values > div:last-child {margin-right:0;}
.attributes .maintenance .slider > div {width:24%;}
.attributes .maintenance .slider div:last-child {width:25%;}
.attributes .maintenance .values > div {width:24%;}
.attributes .btu .values > div {width:49%;}
.attributes .btu .values div:last-child {text-align:right;}




/*manuals*/
.installmanuals .form_row {margin:5px 0;}


/*site map*/
.site_map a {font-size:1.2em;}



/*document search*/
.document-search ul {padding:0;list-style:none;}
.document-search ul li {padding:5px 0;}
.document-search .search-box, .document-search .close-icon, .document-search .search-wrapper {position: relative;}
.document-search .close-icon {border:1px solid transparent;outline: 0;position:absolute;display: block;width: 45px;height: 45px;z-index:1;right:5px;top: 8px;border-radius: 50%;text-align: center;background-color: #808080;font-weight: normal;font-size: 22px;cursor: pointer;}
.document-search .close-icon:after {content: "X";color: #fff;}
.document-search .search-box:not(:valid) ~ .close-icon {display: none;}
.document-search ul li a {color:#fbbd71;}


/*Software Update*/
.custom_form button.locateModel{text-transform:none;padding:0;background-color:transparent;border:none;color:#fbbd19;font-weight:300;}
.custom_form button.locateModel:before{background:none;}
.custom_form button.locateModel:hover, .custom_form button.locateModel span:hover{text-decoration:underline;color:#fbbd19;}
.custom_form .msg-processing label{font-size:16px;font-weight:600;color:#17a2b8;}
.custom_form .successMessage p {font-size:16px;font-weight:600;color:#3c763d;}
.custom_form .errorlist p {font-size:16px;font-weight:600;color:#17a2b8;}
.custom_form .errorlist a{color:#fbbd19;}
.custom_form .errorlist ul li {font-size:16px;font-weight:600;}
.custom_form .modal-title {color:#fbbd19;}
.custom_form .modal-footer button {background-color:#fbbd19;border:2px solid #fbbd19;}
.custom_form .modal-footer button:hover{background-color:transparent;}
.custom_form a.btn-primary.btn-initialized:before {background:none;}