/* Color Tokens */
.primary {
	color: #B9A06F; /* $primary */
}

.secondary {
	color: #3F6400; /* $secondary */
}

.tertiary {
	color: #BAB7AB; /* $tertiary */
}

.light {
	color: #F2F0EE; /* $light */
}

.dark {
	color: #211F1C; /* $dark */
}

.white {
	color: #FFFFFF; /* $white */
}
/* End Color Tokens */

/* General Site Styles */
html {
	font-size: 18px;
	overflow-x: hidden;
}

body {
	font-size: 100%;
	font-family: 'Open Sans', sans-serif; /* @mainfont */
	line-height: 1.6;
	color: #211F1C; /* $dark */
}

main {
	-webkit-transition: padding-top .2s ease 0s;
	-moz-transition: padding-top .2s ease 0s;
	-o-transition: padding-top .2s ease 0s;
	transition: padding-top .2s ease 0s;
}

main section {
	padding: 4.5em 0;
}

.full {
	font-size: .9375vw;
	position: relative;
}

html.no-canvas .full {
	width: 1920px;
	font-size: 1em;
}

.main {
	width: auto;
	margin: 0 auto;
	max-width: 1530px;
	padding-left: 3%;
	padding-right: 3%;
	position: relative;
}

html.no-canvas .main {
	width: 1530px;
}

.flex {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
}

.no-flexbox .flex {
	display: table;
	width: 100%;
}

.no-flexbox .flex > * {
	display: table-cell;
}

ul, ol {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}

icon.next:before {
	content: '\e0ea' !important;
}

body > iframe {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
}

form *,form *:before,form *:after {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

img {
	-ms-interpolation-mode: bicubic;
	max-width: 100%;
}

sup {
	font-size: .5em;
}

main, nav, aside, article, section, header, footer, video, form, figure, blockquote, fieldset {
	display: block;
}

body.cms-layout .cms-zone ul.zone-tab li {
	position: relative !important;
	opacity: 1 !important;
	float: none !important;
	overflow: visible !important;
}

body.cms-layout .cms-zone ul.zone-tab {
	overflow: visible !important;
	-webkit-column-count: auto !important;
	-moz-column-count: auto !important;
	column-count: auto !important;
	-webkit-column-gap: 0 !important;
	-moz-column-gap: 0 !important;
	column-gap: 0 !important;
}

div.zone-editable {
	min-width: 150px;
}

body.cms-layout .cms-zone>[icobalt] {
	min-height: 20px;
}

.panel-section {
}

.panel-section .flex {
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

.panel-section .flex.reverse {
	-webkit-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.panel-section .flex > * {
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	width: 50%;
	max-width: 50%;
}
/* End General Site Styles */

/* Title & Header Styles */
h1, h2, h3, h4 {
	font-family: 'Frank Ruhl Libre', sans-serif; /* @titlefont */
	line-height: 1.2;
	margin: 0;
}

h1, h2, .content-style h2.look-like-h1 {
	font-weight: 600;
	font-size: 2.333em;
	color: #B9A06F; /* $primary */
	text-transform: none;
}

h1 strong, h2 strong, .content-style h2.look-like-h1 strong {
	display: block;
	font-size: 1.75em;
	color: #B9A06F; /* $primary */
	text-transform: uppercase;
	line-height: 1;
}

.content-style h1, .content-style h2.look-like-h1 {
	margin-bottom: .1em;
}

.content-style h2.look-like-h1 {
	margin-top: 0;
}

.content-style h2, .content-style h3, .content-style h4 {
	margin: 1em 0 .3em;
}

.content-style h2, header h1 + h2, h3 {
	font-size: 1.6em;
	color: #211F1C; /* $dark */
	font-weight: 600;
	text-transform: none;
}

h4 {
	font-size: 1.333em;
	font-weight: 600;
	color: #211F1C; /* $dark */
}

main section header {
	padding-bottom: 2em;
	text-align: center;
}

header h1 + h2, header h2 + h3 {
	margin-top: .3em;
}

main section header p {
	margin-top: .4em;
}

main section header > *:last-child {
	margin-bottom: 0;
}

.content-style h1 + p, .content-style h2 + p, .content-style h3 + p, .content-style h4 + p {
	margin-top: .3em;
}
/* End Title & Header Styles */

/* Link & Btn Styles */
a {
	color: #B9A06F; /* $primary */
	text-decoration: none;
	-webkit-transition: color .4s ease 0s;
	-moz-transition: color .4s ease 0s;
	-o-transition: color .4s ease 0s;
	transition: color .4s ease 0s;
}

a:hover {
	color: #211F1C; /* $dark */
}

a[href^=tel] {
	cursor: default;
}

button {
	border: none;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	outline: none;
	cursor: pointer;
	margin: 0;
	padding: 0;
	background-color: transparent;
}

.btn {
	display: inline-block;
	font-size: 1.111em;
	text-transform: uppercase;
	line-height: 1.4;
	padding: .75em 2em;
	cursor: pointer;
	text-align: center;
	border-radius: 0;
	font-weight: 300;
}

.btn.v1 {
	background-color: #3F6400; /* $secondary */
	color: #FFFFFF; /* $white */
	-webkit-transition: background-color .4s ease 0s, color .4s ease 0s;
	-moz-transition: background-color .4s ease 0s, color .4s ease 0s;
	-o-transition: background-color .4s ease 0s, color .4s ease 0s;
	transition: background-color .4s ease 0s, color .4s ease 0s;
}

.btn.v1:not(.no-hover):hover, a:hover .btn.v1:not(.no-hover) {
	background-color: #F2F0EE; /* $light */
	color: #B9A06F; /* $primary */
}

.btn.v2 {
	background-color: #3F6400; /* $secondary */
	color: #FFFFFF; /* $white */
	-webkit-transition: background-color .4s ease 0s;
	-moz-transition: background-color .4s ease 0s;
	-o-transition: background-color .4s ease 0s;
	transition: background-color .4s ease 0s;
}

.btn.v2:not(.no-hover):hover, a:hover .btn.v2:not(.no-hover) {
	background-color: #B9A06F; /* $primary */
}
/* End Link & Btn Styles */

/* General Form Styles */
input, textarea, select {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

fieldset {
	border: none;
	padding: 0;
	margin: 0;
}

fieldset ul {
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

fieldset > ul > li {
	padding-bottom: .8em;
	position: relative;
	width: 100%;
	font-size: inherit;
	padding-left: 0;
	padding-right: 0;
}

.no-flexbox fieldset > ul > li:not(.full) {
	display: block;
	float: left;
}

fieldset > ul > li.fit {
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

fieldset > ul > li.fit + .fit {
	margin-left: 2%;
}

fieldset > ul > li.fourth {
	width: 24%;
}

fieldset > ul > li.third {
	width: 32%;
}

fieldset > ul > li.half {
	width: 49%;
}

fieldset > ul > li.full {
}

fieldset ul li.ui-conditional-panel, fieldset ul li.hide {
	position: relative;
	overflow: hidden;
	padding-bottom: 0;
	max-height: 0;
	display: block !important;
	-webkit-transition: padding-bottom .5s ease 0s, max-height .5s ease 0s;
	-moz-transition: padding-bottom .5s ease 0s, max-height .5s ease 0s;
	-o-transition: padding-bottom .5s ease 0s, max-height .5s ease 0s;
	transition: padding-bottom .5s ease 0s, max-height .5s ease 0s;
}

fieldset ul li.ui-conditional-panel.active:not(.hide), fieldset ul li.hide.show:not(.ui-conditional-panel), fieldset ul li.ui-conditional-panel.active.show {
	max-height: 7em;
	padding-bottom: .8em;
}

fieldset ul li.ui-conditional-panel.active.invalid:not(.hide), fieldset ul li.hide.show.invalid:not(.ui-conditional-panel), fieldset ul li.ui-conditional-panel.active.show.invalid {
	overflow: visible;
}

.input-text {
	position: relative;
}

fieldset li > label {
	display: block;
	position: relative;
	margin-bottom: .25em;
}

fieldset li > label.hide {
	display: none;
}

fieldset li > label small {
	display: block;
	line-height: 1;
}

.input-text input[type='text'], .input-text input[type='month'], .input-text input[type='email'], .input-text input[type='tel'], .input-text input[type='datetime'], .input-text input[type='datetime-local'], .input-text textarea, .input-text select, .zip-search-input {
	display: block;
	border: none;
	background-color: #F2F0EE; /* $light */
	padding: .6em .75em;
	color: #211F1C; /* $dark */
	width: 100%;
	border-radius: 0;
	text-align: left;
	outline: none;
}

.input-text textarea {
	resize: none;
	min-height: 8em;
}

.input-text select {
	padding: .67em .75em .67em;
}

.touch .input-text select {
	appearance: none;
	-webkit-appearance: none;
	-mox-appearance: none;
}

.input-text input[type='month'] {
	padding: .45em .5em;
}

.input-text input:focus, .input-text select:focus, .input-text textarea:focus, .zip-search-input:focus {
	outline: none;
}

.input-text.check-box {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.input-text.check-box label:not(.check-replace) {
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
}

.input-text.check-box input {
	width: 1.5em;
	height: 1.5em;
	margin: 0;
	padding: 0;
	position: absolute;
	opacity: 0;
}

.input-text.check-box .check-replace {
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	background-color: #F2F0EE; /* $light */
	border: solid 1px #DBDBDB;
	margin-right: .75em;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	position: relative;
	border-radius: .2em;
}

.input-text.check-box .check-replace:before {
	content: '\e132';
	font-family: 'icomoon-ult';
	color: #3F6400; /* $secondary */
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	opacity: 0;
	-webkit-transition: opacity .4s ease 0s;
	-moz-transition: opacity .4s ease 0s;
	-o-transition: opacity .4s ease 0s;
	transition: opacity .4s ease 0s;
}

.input-text.check-box input:checked + .check-replace:before {
	opacity: 1;
}

.input-text select option {
	text-transform: none;
	text-align: center;
}

.input-text ::-webkit-input-placeholder {
	color: #211F1C; /* $dark */
}

.input-text :-moz-placeholder {
	color: #211F1C; /* $dark */
	opacity: 1;
}

.input-text ::-ms-input-placeholder {
	color: #211F1C; /* $dark */
}

fieldset .validation {
	position: absolute;
	padding: .5em 1em;
	background-color: rgba(0,0,0,0.8);
	top: 100%;
	z-index: 2;
	color: #F2F2F2;
	font-size: .8em;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: .25s;
	-moz-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
	-webkit-transform: translateY(10%);
	-moz-transform: translateY(10%);
	-o-transform: translateY(10%);
	transform: translateY(10%);
	white-space: nowrap;
	display: block;
	right: 0;
}

fieldset .invalid .validation {
	opacity: 1;
	-webkit-transform: translate(0);
	-moz-transform: translate(0);
	-o-transform: translate(0);
	transform: translate(0);
	visibility: visible;
}

fieldset .validation:before {
	content: '';
	display: block;
	position: absolute;
	height: 0;
	width: 0;
	border-left: solid .5em transparent;
	border-right: solid .5em transparent;
	border-bottom: solid .5em rgba(0,0,0,0.8);
	bottom: 100%;
	right: 1em;
}
/* End General Form Styles */

/* General Content Styles */
.content-style {
	line-height: 1.8;
}

html:not(.cms-editing) body:not(.cms-admin) .content-style:empty {
	display: none;
}

.main.content-style > *:first-child {
	margin-top: 0;
}

.content-style h1 + p, .content-style h2 + p, .content-style h3 + p, .content-style h4 + p {
	margin-top: .3em;
}

.content-style p {
	margin: 1.2em 0;
	font-size: .95em;
}

.main.content-style > *:last-child {
	margin-bottom: 0;
}
/* End General Content Styles */

/* General Video Popup Styles */
.video-pop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	-webkit-transition: opacity .5s ease 0s, -webkit-transform .5s ease 0s;
	-moz-transition: opacity .5s ease 0s, -moz-transform .5s ease 0s;
	-o-transition: opacity .5s ease 0s, -o-transform .5s ease 0s;
	transition: opacity .5s ease 0s, transform .5s ease 0s;
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	-o-transform: translateX(-100%);
	transform: translateX(-100%);
	z-index: 51;
}

.cms-layout .video-pop {
	position: relative;
	opacity: 1;
	top: auto;
	left: auto;
	height: auto;
	width: auto;
	-webkit-transform: none;
	-moz-transform: none;
	-o-transform: none;
	transform: none;
}

.video-open .video-pop {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
	opacity: 1;
}

.video-pop .bg {
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(185,160,111,0.902); /* alpha($primary,90%) */
}

.video-pop .video-con {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 86%;
	max-width: 720px;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

.cms-layout .video-pop .video-con {
	-webkit-transform: none;
	-moz-transform: none;
	-o-transform: none;
	transform: none;
	left: auto;
}

.video-pop .video-con .video-pop-btn {
	position: absolute;
	left: 100%;
	bottom: 100%;
	display: block;
	font-size: 2em;
	cursor: pointer;
	color: #FFFFFF; /* $white */
	-webkit-transform: translate(-50%,50%);
	-moz-transform: translate(-50%,50%);
	-o-transform: translate(-50%,50%);
	transform: translate(-50%,50%);
	-webkit-transition: color .4s ease 0s;
	-moz-transition: color .4s ease 0s;
	-o-transition: color .4s ease 0s;
	transition: color .4s ease 0s;
}

.video-pop .video-con .video-pop-btn:hover {
	color: #3F6400; /* $secondary */
}
/* End General Video Popup Styles */

/* Scrolling List Nav */
.scrolling-list-nav {
	display: none;
	aling-items: center;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.active .scrolling-list-nav {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.no-flexbox .active .scrolling-list-nav {
	display: block;
}

.no-flexbox .active .scrolling-list-nav:after {
	content: ' ';
	display: block;
	clear: both;
}

.scrolling-list-nav span {
	cursor: pointer;
	color: #3F6400; /* $secondary */
	text-transform: uppercase;
	font-family: 'Frank Ruhl Libre', sans-serif; /* @titlefont */
	font-weight: 400;
	letter-spacing: .15em;
	position: relative;
	display: inline-block;
	-webkit-transition: color .4s ease 0s, opacity .4s ease 0s;
	-moz-transition: color .4s ease 0s, opacity .4s ease 0s;
	-o-transition: color .4s ease 0s, opacity .4s ease 0s;
	transition: color .4s ease 0s, opacity .4s ease 0s;
	font-size: 1.111em;
}

.scrolling-list-nav span.prev {
}

.no-flexbox .active .scrolling-list-nav span.prev {
	float: left;
}

.start .scrolling-list-nav span.prev {
	opacity: .5;
	pointer-events: none;
}

.scrolling-list-nav span.next {
}

.no-flexbox .active .scrolling-list-nav span.next {
	float: right;
}

.end .scrolling-list-nav span.next {
	opacity: .5;
	pointer-events: none;
}

.scrolling-list-nav span:hover {
	color: #B9A06F; /* $primary */
}

.scrolling-list-nav span:before {
	content: ' ';
	display: block;
	position: absolute;
	width: 1em;
	height: 1px;
	background-color: #B9A06F; /* $primary */
	top: calc(50% - 2px);
	left: calc(100% + .5em);
}

.scrolling-list-nav span.next:before {
	left: auto;
	right: calc(100% + .5em);
}
/* End Scrolling List Nav */

/* Scrolling List Thumbs */
.scrolling-list-thumbs {
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-top: 1.5em;
}

.no-flexbox .scrolling-list-thumbs {
	display: table;
	width: auto;
	margin: 0 auto;
}

.scrolling-list-thumbs span {
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	width: 1.25em;
	height: 1.25em;
	border-radius: 50%;
	background-color: #211F1C; /* $dark */
	-webkit-transition: background-color .4s ease 0s;
	-moz-transition: background-color .4s ease 0s;
	-o-transition: background-color .4s ease 0s;
	transition: background-color .4s ease 0s;
	margin: 0 .75em;
	display: inline-block;
	cursor: pointer;
}

.no-flexbox .scrolling-list-thumbs span {
	display: table-cell;
	vertical-align: middle;
}

.scrolling-list-thumbs span:hover, .scrolling-list-thumbs span.active {
	background-color: #3F6400; /* $secondary */
}
/* End Scrolling List Thumbs */

/* IE8 Popup */
.ie-popup {
	position: fixed;
	z-index: 99;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
}

.ie-popup.show {
	display: block;
}

.cms-active-only .ie-popup {
	display: block;
	position: relative;
}

.ie-popup .bg {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #000000;
	-ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=70)';
}

.ie-popup .container {
	position: absolute;
	background-color: #F2F0EE; /* $light */
	width: 50%;
	left: 25%;
	top: 25%;
	padding: 4em 3em;
	text-align: center;
}

.ie-popup .container .modal-btn {
	position: absolute;
	font-size: 1.75em;
	top: .25em;
	right: .5em;
	cursor: pointer;
	line-height: 1;
}

.ie-popup .container .modal-btn:hover {
	color: #B9A06F; /* $primary */
}

.ie-popup .container .content {
}

.ie-popup .container .content .icon {
	font-size: 3.5em;
	margin: 0;
	line-height: 1;
}

.ie-popup .container .content p {
	font-size: 1.333em;
}

.ie-popup .container .content .btn {
}
/* End IE8 Popup */

/* 1530px Responsive */
@media screen and (max-width:1530px) {
	html {
		font-size: 1.177vw;
	}

	.full {
		font-size: 1em;
	}
}
/* End 1530px Responsive */

/* 1300px Responsive */
@media screen and (max-width:1300px) {
	html {
		font-size: 1.4vw;
	}

	main section header br {
		display: none;
	}
}
/* End 1300px Responsive */

/* 1000px Responsive */
@media screen and (max-width:1000px) {
	html {
		font-size: 1.7vw;
	}

	main section {
		padding: 3.5em 0;
	}

	main section header {
		padding-bottom: 1.5em;
	}

	main section header.raised-box-header {
		max-width: none;
		padding: 3em 5%;
		-webkit-transform: translateY(-2em);
		-moz-transform: translateY(-2em);
		-o-transform: translateY(-2em);
		transform: translateY(-2em);
		margin-bottom: 1em;
		text-align: center;
	}

	main section header.raised-box-header:after {
		height: 4em;
	}

	main section header.cut-off-big {
		margin-bottom: -1.75em;
	}

	main section header.cut-off-big h2 {
		font-size: 7em;
	}

	.panel-section .flex {
		display: block;
	}

	.panel-section .flex > * {
		width: 100%;
		padding-left: 3% !important;
		padding-right: 3% !important;
	}
}
/* End 1000px Responsive */

/* 800px Responsive */
@media screen and (max-width:800px) {
	html {
		font-size: 2.123vw;
	}

	main section header.raised-box-header {
		padding: 2em 3%;
		-webkit-transform: translateY(-1.5em);
		-moz-transform: translateY(-1.5em);
		-o-transform: translateY(-1.5em);
		transform: translateY(-1.5em);
	}

	main section header.raised-box-header:after {
		height: 3em;
	}

	main section header.cut-off-big {
		margin-bottom: -1.2em;
	}

	main section header.cut-off-big h2 {
		font-size: 5.5em;
	}

	h1, h2, .content-style h2.look-like-h1 {
		font-size: 2rem;
	}
}
/* End 800px Responsive */

/* 650px Responsive */
@media screen and (max-width:650px) {
	html {
		font-size: 2.47vw;
	}

	main section {
		padding: 2.75em 0;
	}

	main section header {
		padding-bottom: 1em;
	}

	main section header.cut-off-big h2 {
		font-size: 4.5em;
	}
}
/* End 650px Responsive */

/* 550px Responsive */
@media screen and (max-width:550px) {
	html {
		font-size: 2.92vw;
	}

	h1, h2, .content-style h2.look-like-h1 {
		font-size: 1.6667rem;
	}

	main section header h1 + h2, .content-style h2, h3 {
		font-size: 1.2rem;
	}

	main section header.cut-off-big {
		margin-bottom: -.75em;
	}

	main section header.cut-off-big h2 {
		font-size: 3.5em;
	}
}
/* End 550px Responsive */

/* 500px Responsive */
@media screen and (max-width:500px) {
	html {
		font-size: 3.2vw;
	}

	.content-style h2, .content-style h3, .content-style h4 {
		margin: .75rem 0 .2rem;
	}

	fieldset > ul {
		display: block;
	}

	fieldset > ul > li {
		display: block;
		width: 100% !important;
	}
}
/* End 500px Responsive */

/* 450px Responsive */
@media screen and (max-width:450px) {
	html {
		font-size: 3.5vw;
	}
}
/* End 450px Responsive */

/* 400px Responsive */
@media screen and (max-width:400px) {
	html {
		font-size: 4vw;
	}

	main section {
		padding: 2em 0;
	}

	main section header {
		padding-bottom: 1em;
	}
}
/* End 400px Responsive */

/* 350px Responsive */
@media screen and (max-width:350px) {
	html {
		font-size: 4.3vw;
	}
}
/* End 350px Responsive */

/* 550px Height & Landscape Responsive */
@media (orientation: landscape) and (max-height: 550px) {
	#HeaderZone {
		position: absolute !important;
	}
}
/* End 550px Height & Landscape Responsive */
