/*
Theme Name: 7thVision Theme
Theme URI: http://7thvision.com.au
Description: A 7thVision Theme
Author: Devon Mather
Version: 2.0.0
*/


/*________ GLOBAL ELEMENTS ________*/

@import url('frontend/css/devs-form.css');

* {
	border: 0;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
abbr[title],
acronym[title] {
	text-decoration: none;
}
html {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
*,
*:before,
*:after {
	box-sizing: inherit;
}

.ie * {

}
img {
	display: block;
	border: 0;
	position: relative;
}
img.animate {
	/*chrome fix for animations */
	-webkit-backface-visibility: hidden;
}
a {
	outline: none;
	text-decoration: underline;
	color: #003764;
}
a:hover,
a:focus {
	color: #004764;
	text-decoration: none;
}
a[href*='tel:'] {
	cursor: default;
	text-decoration: none;
}
html {
	font-size: 100%;
}
body {
	font-family: 'Roboto', Arial, 'Helvetica Neue', Helvetica, sans-serif;
	font-weight: 300;
	font-size: 16px;
	font-size: 1rem;
	color: #000;
	line-height: 1;
	-webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape */
	-ms-text-size-adjust: 100%;

	background: #fff -webkit-linear-gradient(top, #FFF, #FFF) repeat-x; /* windows chrome fixed scrolling replication issue */
  	background-attachment: fixed; /* windows chrome fixed scrolling replication issue */
}
strong, b {
	font-weight: 500;
}
.headingUnderline:after {
	content: '';
	display: block;
	width: 92px;
	width: 5.75rem;
	height: 4px;
	height: 0.25rem;
	background-color: #89a6d3;
	margin-top: 8px;
	margin-top: 0.5rem;
}
.wrapper {
	width: 100%;
	max-width: 1160px;
	max-width: 72.5rem;
	margin: 0 auto;
	padding: 0 20px;
	padding: 0 1.25rem;
}
.wrapper.small {
	max-width: 840px;
	max-width: 52.5rem;
}
.wrapper.large {
	max-width: 1240px;
	max-width: 77.5rem;
}
.wrapper.full {
	max-width: 100%;
}
.ie .wrapper {
	width: 1160px;
}
.content .button {
	display: inline-block;
    background-color: #88a6d3;
    color: #fff;
    text-decoration: none;
    transition: all 0.15s linear;
    padding: 8px 24px;
    padding: 0.5rem 1.5rem;
    margin: 8px 0 0;
    margin: 0.5rem 0 0;
    font-size: 14px;
    font-size: 0.875rem;
    cursor: pointer;
}
.content .button:hover,
.content .button:focus {
    background-color: #004166;
}

/*________ HEADER & NAV ________*/

.header {
	padding: 20px 0;
	padding: 1.25rem 0;
	text-align: center;
}
.header .logo {
	width: 100%;
	max-width: 200px;
	max-width: 12.5rem;
	margin: 0 auto;
}
.header .logo img {
	width: 100%;
	height: auto;
}
.navContainer {
	width: 100%;
	position: relative;
	z-index: 1500;
	height: 60px;
	height: 3.75rem;
	background-color: #003764;
}
.navContainer .wrapper {
	height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
}
.header .wrapper {
	display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}
.headerInfo {
	margin: 0 auto;
}
.navToggle {
	transition: background 0.3s;
	overflow: hidden;
	position: relative;
	background: transparent;
	width: 40px;
	width: 2.5rem;
	display: block;
	margin: 8px 0 0;
	margin: 0.5rem 0 0;
	float: right;
	color: #fff;
	text-transform: uppercase;
	font-size: 12px;
	font-size: 0.75rem;
	text-align: center;
	order: 3;
	margin-left: auto;
}

.navToggle span.icon {
	position: absolute;
	top: 12px;
	top: 0.75rem;
	left: 0;
	right: 0;
	margin: auto;
	width: 32px;
	width: 2rem;
	height: 3px;
	height: 0.1875rem;
	background-color: #fff;
	transition: background 0s 0.3s;
	display: block;
}
.navToggle span.icon::before,
.navToggle span.icon::after {
	position: absolute;
	display: block;
	left: 0;
	width: 32px;
	width: 2rem;
	height: 3px;
	height: 0.1875rem;
	background-color: #fff;
	content: "";
	transition-duration: 0.3s, 0.3s;
	transition-delay: 0.3s, 0s;
}
.navToggle span.icon::before {
	top: -10px;
	top: -0.625rem;
	transition-property: top, transform;
}
.navToggle span.icon::after {
	bottom: -10px;
	bottom: -0.625rem;
	transition-property: bottom, transform;
}
.navToggle.toggled span.icon {
	background-color: transparent;
}
.navToggle.toggled span.icon::before {
	top: 0;
	transform: rotate(45deg);
}
.navToggle.toggled span.icon::after {
	bottom: 0;
	transform: rotate(-45deg);
}
.navToggle.toggled span.icon::before,
.navToggle.toggled span.icon::after {
	transition-delay: 0s, 0.3s;
}

.navToggle span.text {
	display: block;
	padding: 30px 0 0;
	padding: 1.875rem 0 0;
}
.navToggle:focus span.text,
.navToggle.toggled span.text {
	display: none;
}
.navToggle:after {
	display: block;
	padding: 30px 0 0;
	padding: 1.875rem 0 0;
}
.navToggle:focus:after {
	content: 'Open';
}
.navToggle.toggled:after {
	content: 'Close';
}

.mainNav {
	opacity: 0;
	height: 0;
	overflow: hidden;
	position: absolute;
	top: 80px;
	top: 5rem;
	padding: 0 20px;
	padding: 0 1.25rem;
	left: 0;
	width: 100%;
}
.mainNav.show {
	opacity: 1;
	height: auto;
	overflow: visible;
}
.mainNav.show:after {
	content: '';
	display: block;
	width: 100%;
	width: calc(100% - 40px);
	width: calc(100% - 2.5rem);
	height: 100%;
	top: 0;
	border-radius: 6px;
	border-radius: 0.375rem;
	left: 20px;
	left: 1.25rem;
	position: absolute;
	-webkit-box-shadow: 0 1px 6px 1px rgba(0,0,0,0.35);
	box-shadow: 0 1px 6px 1px rgba(0,0,0,0.35);
	z-index: 1;
}
.mainNav li {
	width: 100%;
	float: none;
	position: relative;
	list-style: none;
	z-index: 2;
}
.mainNav li a {
	color: #fff;
	text-decoration: none;
	display: block;
	padding: 0 16px;
	padding: 0 1rem;
	position: relative;
	border-bottom: 1px solid #145e89;
	transition: all 0.15s linear;
}
.mainNav li:hover > a,
.mainNav li.hover > a,
.mainNav li a:focus {
	/*color: #fcc40f;*/
}



.mainNav li.menu-item-has-children > a:after {
	content: '';
	height: 0;
	width: 0;
	position: absolute;
	top: 0;
	bottom: 0;

	margin: auto 0 auto 6px;
	margin: auto 0 auto 0.375rem;

	border: 4px solid transparent;
	border: 0.25rem solid transparent;
	border-bottom: none;
	border-top-color: #fff;

	transition: all 0.15s linear;
}
.mainNav li.menu-item-has-children:hover > a:after, 
.mainNav li.menu-item-has-children:focus > a:after {
	border-top-color: #88a6d3;
}
.mainNav li.menu-item-has-children.hover > a:after {
	-ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

/* First Level */
.mainNav > li {
	background-color: #054265;
}
.mainNav > li:first-child {
	border-radius: 6px 6px 0 0;
	border-radius: 0.375rem 0.375rem 0 0;
	overflow: hidden;
}
.mainNav > li:last-child {
	border-radius: 0 0 6px 6px;
	border-radius: 0 0 0.375rem 0.375rem;
	overflow: hidden;
	border-bottom: none;
}
.mainNav > li > a {
	line-height: 50px;
	line-height: 3.125rem;
}
.mainNav > li:last-child > a {
	border-bottom: none;
}
.mainNav > li:hover > a,
.mainNav > li.hover > a,
.mainNav > li > a:focus {
	background-color: #003764;
	border-bottom-color: #003764;
}
.mainNav > li:last-child ul {
	border-radius: 0 0 6px 6px;
	border-radius: 0 0 0.375rem 0.375rem;
	overflow: hidden;
}

/* Second Level */
.mainNav ul {
	display: none;
	background-color: #88a6d3;
	width: 100%;
	position: relative;
	padding: 16px 24px 32px;
	padding: 1rem 1.5rem 2rem;
	border-bottom: 1px solid #88a6d3;
}
.mainNav li.hover > ul {
	display: block;
}
.mainNav ul li a {
	padding: 0;
	line-height: 40px;
	line-height: 2.5rem;
	font-size: 14px;
	font-size: 0.875rem;
	color: #fff;
	border-bottom: 1px solid #003764;
}
.mainNav ul li a:hover,
.mainNav ul li a:focus {
 	/*color: #fcc40f;*/
 	border-bottom-color: #fff;
}

/* Third Level */
.mainNav ul ul {
	padding: 16px 0 16px 24px;
	padding: 1rem 0 1rem 1.5rem;
}


/* Top Nav */
.topNavContainer {
	display: none;
}


/*________ CONTENT ________*/

.contentSection {
	clear: both;
	width: 100%;
}

.contentContainer {
	padding-bottom: 24px;
	padding-bottom: 1.5rem;
}
.content {
	padding-bottom: 16px;
	padding-bottom: 1rem;
}

.content h1,
.content .h1,
.content h2,
.content .h2,
.content h3,
.content .h3,
.content h4,
.content .h4,
.content h5,
.content .h5,
.content h6,
.content .h6 {
	font-family: 'Roboto', Helvetica, Arial, sans-serif;
	font-weight: 400;
	line-height: 1.15;
	padding: 0 0 20px;
	padding: 0 0 1.25rem;
	font-weight: 400;
    color: #003764;
}
.content h3:after,
.content .h3:after{
    content: '';
    display: block;
    width: 92px;
    width: 5.75rem;
    height: 4px;
    height: 0.25rem;
    background-color: #89a6d3;
    margin-top: 8px;
    margin-top: 0.5rem;
}
.content h1,
.content .h1 {
	font-size: 48px;
	font-size: 3rem;
	padding-bottom: 30px;
	padding-bottom: 1.875rem;
}
.content h2,
.content .h2 {
	font-size: 32px;
	font-size: 2rem;
	padding-bottom: 28px;
	padding-bottom: 1.75rem;
}
.content h3,
.content .h3 {
	font-size: 24px;
	font-size: 1.5rem;
	padding-bottom: 24px;
	padding-bottom: 1.5rem;
}
.content h4,
.content .h4 {
	font-size: 16px;
	font-size: 1rem;
	padding-bottom: 20px;
	padding-bottom: 1.25rem;
}
.content h5,
.content .h5 {
	font-size: 16px;
	font-size: 1rem;
}
.content h6,
.content .h6 {
	font-size: 16px;
	font-size: 1rem;
	text-transform: uppercase;
	font-weight: 700;
}
.content p {
	font-weight: 300;
	padding: 0 0 20px;
	padding: 0 0 1.25rem;
	line-height: 1.5;
}
.content ul,
.content ol {
	padding: 0 0 20px 40px;
	padding: 0 0 1.25rem 2.5rem;
	line-height: 1.5;
}
.content ul ul,
.content ol ol {
	padding-bottom: 0;
}
.content blockquote {
	font-style: italic;
	padding: 0 0 0 40px;
	padding: 0 0 0 2.5rem;
	margin: 0 0 20px 20px;
	margin: 0 0 1.25rem 1.25rem;
	border-left: 4px solid #222;
	border-left: 0.25rem solid #222;
}
.content iframe {
	padding: 0 0 20px;
	padding: 0 0 1.25rem;
}
.content img {
	max-width: 100%;
	height: auto;
}
.content table {
	margin: 0 0 20px;
	margin: 0 0 1.25rem;
	width: 100%;
	text-align: left;
	line-height: 1.5;
    border-collapse: collapse;

    /*Make table horizontally scroll*/
	display: block;
    overflow-x: auto;
    white-space: nowrap;
}
.content table thead tr {
}
.content table thead tr th {
    padding: 4px;
    padding: 0.25rem;
    font-weight: 700;
    font-size: 14px;
    font-size: 0.875rem;
}
.content table tbody tr {
	border-top: 1px dotted #ccc;
}
.content table tbody tr td {
	padding: 4px;
    padding: 0.25rem;
    font-size: 12px;
    font-size: 0.75rem;
}
.content hr {
	border: none;
	margin: 0 0 20px;
	margin: 0 0 1.25rem;
	display: block;
	clear: both;
	border-bottom: 1px solid #ccc;
}
.content .entryContent {
	overflow: hidden;
	width: 100%;
}
.content a.readMore {
	display: inline-block;
}





.content .articleMeta {
	margin: 0 0 16px;
	margin: 0 0 1rem;
	padding-bottom: 4px;
	padding-bottom: 0.25rem;
	border-bottom: 1px solid #89a6d3;
}
.content .articleMeta p {
	padding: 0 0 4px;
	padding: 0 0 0.25rem;
	font-size: 12px;
	font-size: 0.75rem;
	color: #6d6e71;
}
.content .articleMeta p strong {
	color: #6d6e71;
}
.content .articleMeta p a {
	color: #6d6e71;
}


.content .articleContainer {

}
.content .articleContainer .article {
	margin: 0 0 40px;
	margin: 0 0 2.5rem;
	overflow: hidden;
}
.content .articleContainer .article:last-child {
	border-bottom: none;
}
.content .articleContainer .article .thumbContainer {
	display: block;
	width: 100%;
	margin: 0 0 16px;
	margin: 0 0 1rem;
}
.content .articleContainer .article .thumbContainer img {
	width: 100%;
	height: auto;
}
.content .articleContainer .article .thumbContainer:hover img,
.content .articleContainer .article .thumbContainer:focus img {
	opacity: 0.8;
}
.content .articleContainer .article .articleInfo {
	overflow: hidden;
}
.content .articleContainer .article h3 {
	border-bottom: 1px solid #89a6d3;
	margin-bottom: 12px;
	margin-bottom: 0.75rem;
	padding-bottom: 10px;
	padding-bottom: 0.625rem;
}
.content .articleContainer .article h3 a {
	text-decoration: none;
}

.content .articleContainer .article .articleInfo p.excerpt a {
	display: inline-block;
    color: #004166;
}

.content .fc_container {
	margin-bottom: 20px;
	margin-bottom: 1.25rem;
}



/*________ SIDEBAR ________*/

.sidebar {
	padding: 0 0 40px;
	padding: 0 0 2.5rem;
}


.sidebar .section {
	padding: 0 0 20px;
	padding: 0 0 1.25rem;
}

.sidebar .section h5,
.sidebar .section h6 {
	line-height: 1.25;
	padding: 0 0 20px;
	padding: 0 0 1.25rem;
	font-size: 16px;
	font-size: 1rem;
	color: #003764;
    font-weight: 500;
}

.sidebar .section ul.basicList {
	list-style: none;
	border-top: 1px dotted #ccc;
}
.sidebar .section ul.basicList li {
	list-style: none;
	border-bottom: 1px dotted #ccc;
}
.sidebar .section ul.basicList li a {
	line-height: 1.5;
	padding: 8px 0;
	padding: 0.5rem 0;
	display: block;
	text-decoration: none;
	transition: all 0.15s linear;
	font-size: 14px;
	font-size: 0.875rem;
}
.sidebar .section ul.basicList li a:hover,
.sidebar .section ul.basicList li a:focus {
	padding-left: 4px;
	padding-left: 0.25rem;
}





/*________ FOOTER ________*/

.footer {
	width: 100%;
	clear: both;
}
.footer .copyright {
	text-align: center;
}
.footer .copyright {
	font-weight: 400;
	font-size: 12px;
	font-size: 0.75rem;
	color: #003764;
	line-height: 1.5;
	padding: 16px 0 32px 0;
    padding: 1rem 0 2rem 0;
    border-top: 1px #a7a9ac solid;
    border-top: 0.0625rem #a7a9ac solid;
}
.footer .copyright span {
	display: block;
}
.footer .copyright a {
	color: #003764;
}
.footer .copyright a:hover,
.footer .copyright a:focus {
	color: #003764;
}



/*________ LIGHT GALLERY ________*/

body .lg-backdrop {
	background-color: rgba(0,0,0,0.8);
}
body.admin-bar .lg-outer {
	padding-top: 32px;
}
body .lg-outer .lg-toolbar {
	background-color: transparent;
}
body .lg-outer .lg-sub-html p {
	margin-top: 0;
}
body .lg-outer .lg-sub-html a {
	color: #fff;
	text-decoration: none;
}
body .lg-outer .lg-sub-html a:hover,
body .lg-outer .lg-sub-html a:focus {
	text-decoration: underline;
}


/*________ SLICK SLIDER ________*/

.slick-slider button.slick-prev,
.slick-slider button.slick-next {
	width: 32px;
	width: 2rem;
	height: 32px;
	height: 2rem;
	position: absolute;
	top: 40px;
	top: 2.5rem;
	left: 40px;
	left: 2.5rem;
	text-indent: -9999px;
	background-color: #000;
	z-index: 100;
	transition: all 0.15s linear;
}
.slick-slider button.slick-next {
	left: 78px;
	left: 4.875rem;
}
.slick-slider button.slick-prev:hover,
.slick-slider button.slick-prev:focus,
.slick-slider button.slick-next:hover,
.slick-slider button.slick-next:focus {
	background-color: #fff;
}
.slick-slider button.slick-prev:after,
.slick-slider button.slick-next:after {
	display: block;
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	border: 4px solid transparent;
	border: 0.25rem solid transparent;
	transition: all 0.15s linear;
}
.slick-slider button.slick-prev:after {
	border-right-color: #fff;
	border-right-width: 6px;
	border-right-width: 0.375rem;
	right: 4px;
	right: 0.25rem;
}
.slick-slider button.slick-prev:hover:after,
.slick-slider button.slick-prev:focus:after {
	border-right-color: #000;
}
.slick-slider button.slick-next:after {
	border-left-color: #fff;
	border-left-width: 6px;
	border-left-width: 0.375rem;
	left: 4px;
	left: 0.25rem;
}
.slick-slider button.slick-next:hover:after,
.slick-slider button.slick-next:focus:after {
	border-left-color: #000;
}




.slick-slider .slick-dots {
	width: 100%;
	padding: 0;

	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	align-content: flex-start;
}
.slick-slider .slick-dots li {
	width: 12px;
	width: 0.75rem;
	height: 12px;
	height: 0.75rem;
	margin: 0 5px 10px;
	margin: 0 0.3125rem 0.625rem;
	list-style: none;
}
.slick-slider .slick-dots li button {
	display: block;
	width: 100%;
	height: 100%;
	text-indent: -9999px;
	border: 1px solid #fff;
	border-radius: 50%;
	background-color: transparent;
	transition: all 0.15s linear;
	box-shadow: 0 0 2px 0 rgba(0,0,0,0.1);
}
.slick-slider .slick-dots li.slick-active button,
.slick-slider .slick-dots li button:hover,
.slick-slider .slick-dots li button:focus {
	background-color: #88a6d3;
}




/*________ MISC ________*/

.show-1340,
.show-1240,
.show-1140,
.show-1040,
.show-940,
.show-840,
.show-740,
.show-640,
.show-540,
.show-440,
.show-340 {
	display: none;
}

.backstretchThis {
	overflow: hidden;
}

img.fittedBg {
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
    font-family: 'object-fit: cover;';
}

.injectSvg {
	overflow: hidden;
	display: none;
}
.injectSvg.injected-svg {
	display: block;
}

.ui-widget {
	font-family: inherit !important;
}

.mapContainer {
	position: relative;
	width: 100%;
	min-height: 400px;
	min-height: 25rem;
}
.mapContainer .locationCanvas {
	width: 100%;
	height: 100%;
	position: absolute;
}
.mapContainer img {
	max-width: none;
}
.mapContainer .gm-style-cc {
	display: none;
}

.hyphenate { /*allow really big words to wrap*/
	overflow-wrap: break-word;
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}

.flexBlocks {
	overflow: hidden;
	display: -webkit-flex;
	display: flex;
	-webkit-flex: 0 1 auto;
	flex: 0 1 auto;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;

	width: auto;

	margin-left: -20px;
	margin-left: -1.25rem;
	margin-right: -20px;
	margin-right: -1.25rem;
}
.flexBlocks .flexBlock {
	padding: 0 20px;
	padding: 0 1.25rem;

	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;

	-webkit-flex-basis: 50%;
	-ms-flex-preferred-size: 50%;
	flex-basis: 50%;
	max-width: 50%;
}


.hide {
	display: none;
}
.clearFix::after {
	clear: both;
	display: block;
	content: ' ';
	visibility: hidden;
	line-height: 0;
	height: 0;
}

button {
	cursor: pointer;
	font-family: inherit;
}
button::-moz-focus-inner { /* Remove stupid button padding in FF */
    border:0;
    padding:0;
}

.navigation .wp-pagenavi span,
.navigation .wp-pagenavi a {
	border: none;
}

.flexibleContainer { /* Flexible iFrame */
    position: relative;
    padding-bottom: 50%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
.flexibleContainer iframe,
.flexibleContainer object,
.flexibleContainer embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.videoContainer {
    float: none;
    clear: both;
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
}
.videoContainer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
}

.animate,
.animate:hover,
.animate:focus,
.animate:active {
	transition: all 0.15s linear;
}

.centerVertical {
	display: flex;
	justify-content: center;
	flex-direction: column;
	height: 100%;
	position: relative;
}
.absoluteWrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



ul.socialNav {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	align-content: flex-start;
}
ul.socialNav li {
	list-style: none;
	padding: 0 0 10px;
	padding: 0 0 0.625rem;
}
ul.socialNav li:not(:last-child) {
	padding-right: 10px;
	padding-right: 0.625rem;
}
ul.socialNav li a {
	display: block;
	width: 32px;
	width: 2rem;
	height: 32px;
	height: 2rem;
	position: relative;
	border-radius: 2px;
	border-radius: 0.125rem;
	overflow: hidden;
}
ul.socialNav li a span {
	display: block;
	width: 100%;
	height: 100%;
	transform: translateZ(0);
	transition-duration: 0.4s;
	transition-property: transform;
}
ul.socialNav li.facebook a span {
	background-color: #3b5998;
}
ul.socialNav li.twitter a span {
	background-color: #238ccc;
}
ul.socialNav li.instagram a span {
	background-color: #3f729b;
}
ul.socialNav li.youtube a span {
	background-color: #cd201f;
}
ul.socialNav li.googlePlus a span {
	background-color: #c13727;
}
ul.socialNav li.tripAdvisor a span {
	background-color: #26a146;
}
ul.socialNav li a span img,
ul.socialNav li a span svg {
	margin: auto;
	position: absolute;
	top: 0; left: 0; bottom: 0; right: 0;
	width: 100%;
  	height: auto;
}
ul.socialNav li a:hover span,
ul.socialNav li a:focus span,
ul.socialNav li a:active span {
	background-color: #333 !important;
}
ul.socialNav li a span * {
	fill: #fff;
}
ul.socialNav li.facebook a span svg,
ul.socialNav li.facebook a span img {
	max-width: 50%;
}
ul.socialNav li.twitter a span svg,
ul.socialNav li.twitter a span img {
	max-width: 50%;
}
ul.socialNav li.instagram a span svg,
ul.socialNav li.instagram a span img {
	max-width: 50%;
}
ul.socialNav li.youtube a span svg,
ul.socialNav li.youtube a span img {
	max-width: 50%;
}
ul.socialNav li.googlePlus a span svg,
ul.socialNav li.googlePlus a span img {
	max-width: 50%;
}
ul.socialNav li.pinterest a span svg,
ul.socialNav li.pinterest a span img {
	max-width: 40%;
}
ul.socialNav li.tripAdvisor a span svg,
ul.socialNav li.tripAdvisor a span img {
	max-width: 50%;
}
ul.socialNav li.linkedIn a span svg,
ul.socialNav li.linkedIn a span img {
	max-width: 50%;
}


/*________ FORMS ________*/

form *,
form.elab_form *,
.fc_container form.elab_form * {
	font-family: inherit;
	font-size: 16px;
	font-size: 1rem;
}
form ::-webkit-input-placeholder { /* WebKit browsers */
	color: #999;
}
form :-moz-placeholder { /* Firefox 18- */
	color: #999;
	opacity: 1;
}
form ::-moz-placeholder {  /* Firefox 19+ */
	color: #999;
	opacity: 1;
}
form :-ms-input-placeholder { /* Internet Explorer 10+ */
	color: #999;
}


.fc_container form.elab_form fieldset input[type="text"],
.fc_container form.elab_form fieldset textarea {
	padding: 0 12px;
	padding: 0 0.75rem;
	height: 38px;
	height: 2.375rem;
	transition: all 0.15s linear;
}
.fc_container form.elab_form fieldset textarea {
	padding-top: 12px;
	padding-top: 0.75rem;
	padding-bottom: 12px;
	padding-bottom: 0.75rem;
	height: 200px;
	height: 12.5rem;
}

.fc_container form.elab_form input[type="submit"],
.fc_container form.elab_form button[type="submit"] {
	transition: all 0.2s linear;
	float: none;
	background: #88a6d3;
}
.fc_container form.elab_form input[type="submit"]:hover,
.fc_container form.elab_form button[type="submit"]:hover {
	background: #003764;
}
.fc_container form.elab_form .footnote {
	display: none;
}
.fc_container form.elab_form .footnote.error-field {
	display: block;
}




/*________ WP IMAGES ________*/

img.size-auto,
img.size-full,
img.size-large,
img.size-medium,
.attachment img {
	max-width: 100%; /* When images are too wide for containing element, force them to fit. */
	height: auto; /* Override height to match resized width for correct aspect ratio. */
}
.aligncenter,
img.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
img.alignleft,
img.alignright,
img.aligncenter,
img.alignnone {
	margin-bottom: 24px;
	margin-bottom: 1.5rem;
}
.wp-caption {
	background: #f1f1f1;
	margin-bottom: 20px;
	margin-bottom: 1.25rem;
	max-width: 100%;
	padding: 4px;
	padding: 0.25rem;
	text-align: center;
}
.wp-caption img {
	padding: 4px 4px 0;
	padding: 0.25rem 0.25rem 0;
	max-width: 100%;
	height: auto;
}
.wp-caption p.wp-caption-text {
	color: #888;
	font-size: 12px;
	font-size: 0.75rem;
	padding: 4px;
	padding: 0.25rem;
}
.wp-smiley {
	margin: 0;
}

.gallery {
	padding: 0 0 20px;
	padding: 0 0 1.25rem;
	clear: both;
	width: 100%;
	width: calc(100% + 20px);
	width: calc(100% + 1.25rem);
	text-align: left;
}
.gallery .gallery-item {
	width: 100%;
	display: inline-block;
	zoom: 1;
	*display: inline;
	vertical-align: top;
	min-width: 120px;
	min-width: 7.5rem;
	padding: 0 20px 20px 0;
	padding: 0 1.25rem 1.25rem 0;
}
.gallery .gallery-item a {
	display: block;
	background-color: #222;
	overflow: hidden;
}
.gallery .gallery-item img {
	width: 100%;
	height: auto;
	transition: all 0.15s linear;
	-webkit-backface-visibility: hidden;
}
.gallery .gallery-item a img:hover,
.gallery .gallery-item a img:focus {
	opacity: 0.8;
}
.gallery .gallery-caption {
	color: #888;
	font-size: 12px;
	font-size: 0.75rem;
	margin: 0 0 12px;
	margin: 0 0 0.75rem;
	text-align: center;
	line-height: 1.5;
}
.gallery br {
	display: none;
}
.gallery dl {
	margin: 0;
}
.content .attachment img {/* single attachment images should be centered */
	display: block;
	margin: 0 auto;
}




/*________ FRONT PAGE ________*/


/*________ CONTACT PAGE ________*/

/*________ LOCATION PAGE ________*/

.page-id-45 .entryContent .col-xs-6 {
	flex-basis: 100%;
    max-width: 100%;
}
/*________ ARCHIVE PAGES ________*/


/*________ CATEGORY PAGES ________*/


/*________ TAXONOMY PAGES ________*/


/*________ SINGLE PAGES ________*/



/*________ WP PRINT ________*/

@media print {

}


/*________ RESPONSIVE ________*/

/* 340px */
@media (min-width: 21.25em) {

	/*________ MISC ________*/

	.hide-340 {
		display: none;
	}
	.show-340 {
		display: block;
	}
	.show-340.inline {
		display: inline;
	}
	.show-340.inline-block {
		display: inline-block;
	}


	/*________ WP IMAGES ________*/

	.gallery-columns-2 .gallery-item,
	.gallery-columns-3 .gallery-item,
	.gallery-columns-4 .gallery-item,
	.gallery-columns-5 .gallery-item,
	.gallery-columns-6 .gallery-item,
	.gallery-columns-7 .gallery-item,
	.gallery-columns-8 .gallery-item {
		width: 50%;
	}


}

/* 440px */
@media (min-width: 27.5em) {

	/*________ CONTENT ________*/

	.content .articleMeta {
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		flex-wrap: nowrap;
	}
	.content .articleMeta p {
		padding-right: 12px;
		padding-right: 0.75rem;
		padding-bottom: 0;
		margin: 0 12px 10px 0;
		margin: 0 0.75rem 0.625rem 0;
		position: relative;
	}
	.content .articleMeta p:after {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		margin: auto;
		width: 1px;
		height: 10px;
		height: 0.625rem;
		background-color: #999;
	}
	.content .articleMeta p:last-child {
		margin-right: 0;
		padding-right: 0;
	}
	.content .articleMeta p:last-child:after {
		display: none;
	}

	/*________ MISC ________*/

	.hide-440 {
		display: none;
	}
	.show-440 {
		display: block;
	}
	.show-440.inline {
		display: inline;
	}
	.show-440.inline-block {
		display: inline-block;
	}


	/*________ WP IMAGES ________*/

	.alignleft,
	img.alignleft {
		display: inline;
		float: left;
		margin-right: 24px;
		margin-right: 1.5rem;
	}
	.alignright,
	img.alignright {
		display: inline;
		float: right;
		margin-left: 24px;
		margin-left: 1.5rem;
	}

	.gallery-columns-3 .gallery-item,
	.gallery-columns-4 .gallery-item,
	.gallery-columns-5 .gallery-item,
	.gallery-columns-6 .gallery-item,
	.gallery-columns-7 .gallery-item,
	.gallery-columns-8 .gallery-item {
		width: 33.33%;
	}
}

/* 540px */
@media (min-width: 33.75em) {

	/*________ MISC ________*/

	.hide-540 {
		display: none;
	}
	.show-540 {
		display: block;
	}
	.show-540.inline {
		display: inline;
	}
	.show-540.inline-block {
		display: inline-block;
	}



	/*________ WP IMAGES ________*/

	.gallery-columns-4 .gallery-item,
	.gallery-columns-5 .gallery-item,
	.gallery-columns-6 .gallery-item,
	.gallery-columns-7 .gallery-item,
	.gallery-columns-8 .gallery-item {
		width: 25%;
	}
}

/* 640px */
@media (min-width: 40em) {

	/*________ HEADER & NAV ________*/






	/*________ FOOTER ________*/

	.footer .copyright {
		text-align: center;
	}
	.footer .copyright {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		flex-wrap: nowrap;
	}
	.footer .copyright span {
		position: relative;
	}
	.footer .copyright span:first-child {
		margin-right: 6px;
		margin-right: 0.375rem;
		padding-right: 6px;
		padding-right: 0.375rem;
	}
	.footer .copyright span:first-child:after {
		content: '';
		display: block;
		height: 12px;
		height: 0.75rem;
		width: 1px;
		background-color: #546d79;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		margin: auto;
	}





	/*________ MISC ________*/

	.hide-640 {
		display: none;
	}
	.show-640 {
		display: block;
	}
	.show-640.inline {
		display: inline;
	}
	.show-640.inline-block {
		display: inline-block;
	}
	.page-id-45 .entryContent .col-xs-6 {
		flex-basis: 50%;
	    max-width: 50%;
	}

	/*________ WP IMAGES ________*/

	.gallery-columns-5 .gallery-item,
	.gallery-columns-6 .gallery-item,
	.gallery-columns-7 .gallery-item,
	.gallery-columns-8 .gallery-item {
		width: 20%;
	}

}


/* 740px */
@media (min-width: 46.25em) {

	/*________ CONTENT ________*/
	.contentContainer {
		padding-bottom: 48px;
		padding-bottom: 3rem;
	}

	.contentContainer .wrapper {
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		align-items: flex-start;
		flex-wrap: nowrap;
	}

	.mainContent .content {
		width: calc(100% - 300px);
		width: calc(100% - 18.75rem);
		flex-shrink: 1;
		flex-grow: 1;
	}


	/*________ SIDEBAR ________*/

	.mainContent .sidebar {
		width: 300px;
		width: 18.75rem;
		margin-left: 32px;
		margin-left: 2rem;
		padding-left: 24px;
		padding-left: 1.5rem;
		flex-shrink: 0;
		flex-grow: 0;
	}




	/*________ MISC ________*/

	.hide-740 {
		display: none;
	}
	.show-740 {
		display: block;
	}
	.show-740.inline {
		display: inline;
	}
	.show-740.inline-block {
		display: inline-block;
	}


	/*________ WP IMAGES ________*/

	.gallery-columns-6 .gallery-item,
	.gallery-columns-7 .gallery-item,
	.gallery-columns-8 .gallery-item {
		width: 16.66%;
	}


}


/* 782px //should only be used for .admin-bar items */
@media (min-width: 48.875em) {

}


/* 840px */
@media (min-width: 52.5em) {

	/*________ HEADER ________*/

	.mobileInfo {
		display: none;
	}
	.header {
		padding: 0;
		border-top: 5px #88a6d3 solid;
		border-top: 0.3125rem #88a6d3 solid;
	}
	.navContainer .wrapper {
		padding: 0;
	}
	.header .logo {
	    margin: 16px auto 16px 0;
	    margin: 1rem auto 1rem 0;
	}
	.navRightContainer {
		display: flex;
	    flex-direction: column;
	    flex-wrap: wrap;
	    justify-content: flex-end;
	    /*margin-top: -40px;
	    margin-top: -2.5rem;*/
	    margin-bottom:auto;
	}
	.navRightContainer .topNav {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		flex-wrap: nowrap;
		position: relative;
	}
	.navRightContainer .topNav li a {
	    padding-right: 22px;
		padding-right: 1.375rem;
		color: #003764;
		font-weight: 400;
		font-size: 14px;
		font-size: 0.875rem;
	}
	.navRightContainer .topNavContainer .topNav li a:hover {
		color: #89a6d3;
	}
	.navRightContainer .topNav li.current-menu-item a:after {
	    content: '';
	    display: block;
	    position: absolute;
	    height: 4px;
	    height: 0.25rem;
	    width: 40px;
	    width: 2.5rem;
	    margin: 8px 0px;
	    margin: 0.5rem 0rem;
	    background-color: #88a6d3;
	}
	.navRightContainer .topNav #menu-item-115.current-menu-item a:after {
	    content: '';
	    display: block;
	    position: absolute;
	    height: 4px;
	    height: 0.25rem;
	    width: 32px;
	    width: 2rem;
	    margin: 6.4px 0px;
	    margin: 0.4rem 0rem;
	    background-color: #88a6d3;
	}
	.navContainer ul.mainNav > li.menu-item > a:before,
	.navContainer ul.mainNav > li.menu-item:hover > a:before {
		content: '';
		display: block;
		position: absolute;
		height: 24px;
		height: 0.8rem;
		width: 1px;
		width: 0.0625rem;
		margin: 24px -16px;
		margin: 1.5rem -1rem;
		background-color: #fff;
	}
	.navContainer ul.mainNav > li.menu-item-107 > a:before,
	.navContainer ul.mainNav > li.menu-item-107:hover > a:before{
		display: none;
	}
	/* Solid MultiLevel Css Nav */
	.mainNav {
		position: relative;
		opacity: 1;
		height: auto;
		top: auto;
		left: auto;
		overflow: visible;
		padding: 0;
		width: 100%;
		display: flex;
		flex-direction: row;
		align-items: center;
		/*justify-content: center;*/
		flex-wrap: nowrap;
		flex-shrink: 0;
		margin-bottom: 0;
	}
	.mainNav.show:after {
		display: none;
	}
	.mainNav li a {
		border-bottom: none;
		padding: 0 14px;
		padding: 0 0.875rem;
		font-size: 14px;
		font-size: 0.875rem;
	}
	.mainNav > li.menu-item-has-children > a {
		padding-right: 22px;
		padding-right: 1.375rem;
	}
	..mainNav > li.menu-item-has-children > a:hover :after,
	..mainNav > li.menu-item-has-children > a:focus :after {
	    border-top-color: #88a6d3;
	}
	.mainNav li a:hover,
	.mainNav li a:focus {
	    color: #b4d1fd;
	}
	/* Level 1 */
	.mainNav > li {
		float: left;
		width: auto;
		background-color: transparent;
	}
	.mainNav > li:first-child,
	.mainNav > li:last-child {
		border-radius: 0;
		overflow: visible;
	}
	.mainNav > li > a {
		line-height: 60px;
		line-height: 3.75rem;
	}
	.mainNav > li:first-child > a {
	}
	.mainNav > li:last-child > a {
	}
	.mainNav li.current-menu-parent > a,
	.mainNav li.current-menu-item > a {
	}
	.mainNav > li:hover > a,
	.mainNav > li:focus > a {
	}

	/* Level 2 */
	.mainNav ul {
		display: none;
		margin: 0;
		width: 248px;
		width: 15.5rem;
		position: absolute;
		top: 60px;
		top: 3.755rem;
		left: 0;
		display: block;
		height: 0;
		opacity: 0;
		overflow: hidden;
		padding: 0;

		box-shadow: 0 1px 2px 0 rgba(0,0,0,0.25),
                    2px 1px 2px -1px rgba(0,0,0,0.25),
                    -2px 1px 2px -1px rgba(0,0,0,0.25);
	}
	.mainNav > li:last-child ul {
		/*Holdover from mobile nav*/
		border-radius: 0;
	}
	.mainNav > li:last-child > ul {
		/* Prevent dropdown nav items from flowing off screen */
		left: auto;
		right: 0;
	}
	.mainNav > li:last-child > ul ul {
		left: auto;
		right: 248px;
		right: 15.5rem;
	}


	.mainNav li:hover > ul,
	.mainNav li:focus > ul,
	.mainNav li[aria-expanded="true"] > ul {
		height: auto;
		opacity: 1;
		overflow: visible;
		padding: 16px 0 32px;
		padding: 16px 0 2rem;
	}
	.mainNav ul li {
		padding: 0 24px;
		padding: 0 1.5rem;
	}
	.mainNav ul li a {
	}

	.mainNav ul li a:hover,
	.mainNav ul li a:focus {
		color: #fff;
	}

	.mainNav ul li.menu-item-has-children > a {
		padding-right: 20px;
		padding-right: 1.25rem;
	}
	.mainNav ul li.menu-item-has-children > a:after {
	    -ms-transform: rotate(-90deg);
	    -webkit-transform: rotate(-90deg);
	    transform: rotate(-90deg);
	    right: 0;
	}

	/* Level 3 */
	.mainNav ul ul {
		padding: 0;
		left: 248px;
		left: 15.5rem;
    	top: -10px;
    	top: -1rem;
    	background-color: #88a6d3;
	}

	/* Level 4 */
	.mainNav ul ul ul {
		padding: 0;
	}

	/* Top Nav */
	.mainNav .topNavItem {
		display: none;
	}
	.topNavContainer {
		display: block;
	}
	.topNavContainer ul li {
		list-style: none;
	}
	.topNavContainer ul li a {
		text-decoration: none;
		transition: color 0.15s linear;
	}


	/*________ CONTENT ________*/



	/*________ MISC ________*/

	.hide-840 {
		display: none;
	}
	.show-840 {
		display: block;
	}
	.show-840.inline {
		display: inline;
	}
	.show-840.inline-block {
		display: inline-block;
	}


	/*________ WP IMAGES ________*/

	.gallery-columns-7 .gallery-item,
	.gallery-columns-8 .gallery-item {
		width: 14.28%;
	}
}


/* 940px */
@media (min-width: 58.75em) {

	/*________ CONTENT ________*/

	.content .articleContainer .article .thumbContainer {
		max-width: 200px;
		max-width: 12.5rem;
		margin-right: 20px;
		margin-right: 1.25rem;
		float: left;
	}


	/*________ MISC ________*/

	.hide-940 {
		display: none;
	}
	.show-940 {
		display: block;
	}
	.show-940.inline {
		display: inline;
	}
	.show-940.inline-block {
		display: inline-block;
	}

	/*________ WP IMAGES ________*/

	.gallery-columns-8 .gallery-item {
		width: 12.5%;
	}

}


/* 1040px */
@media (min-width: 65em) {

	/*________ HEADER & NAV ________*/
	.header {
		border-top: 8px #88a6d3 solid;
		border-top: 0.5rem #88a6d3 solid;
	}

	.mainNav > li > a {
		padding: 0 22px;
		padding: 0 1.375rem;
		font-size: 16px;
		font-size: 1rem;
	}
	.mainNav > li.menu-item-has-children > a {
		padding-right: 26px;
		padding-right: 1.625rem;
	}


	/*________ MISC ________*/

	.hide-1040 {
		display: none;
	}
	.show-1040 {
		display: block;
	}
	.show-1040.inline {
		display: inline;
	}
	.show-1040.inline-block {
		display: inline-block;
	}
}


/* 1140px */
@media (min-width: 71.25em) {

	/*________ HEADER & NAV ________*/

	.mainNav > li:last-child > ul ul {
		left: 248px;
		left: 15.5rem;
		right: auto;
	}


	/*________ MISC ________*/

	.hide-1140 {
		display: none;
	}
	.show-1140 {
		display: block;
	}
	.show-1140.inline {
		display: inline;
	}
	.show-1140.inline-block {
		display: inline-block;
	}
}


/* 1240px */
@media (min-width: 77.5em) {

	/*________ HEADER & NAV ________*/

	/* Reset dropdown nav items to drop down normally */
	.mainNav > li:last-child > ul {
		right: auto;
		left: 0;
	}


	/*________ MISC ________*/

	.hide-1240 {
		display: none;
	}
	.show-1240 {
		display: block;
	}
}


/* 1340px */
@media (min-width: 83.75em) {

	/*________ MISC ________*/

	.hide-1340 {
		display: none;
	}
	.show-1340 {
		display: block;
	}
}


/* 1440px */
@media (min-width: 90em) {

}


/* 1540px */
@media (min-width: 96.25em) {

}




/* HEIGHT */

/* 640px */
@media (min-height: 40em) {


}




/* MIXED */

@media (min-height: 40em) and (min-width: 58.75em) {

	/*________ HEADER & NAV ________*/

	.navContainer.stuck {
		position: fixed;
		top: 0;
	}
	.admin-bar .navContainer.stuck {
		top: 32px;
	}
}
/* Fade in Lazy loaded image */
	/* PART 1 - Before Lazy Load */
	img[data-lazyloaded]{
		opacity: 0;
	}
	/* PART 2 - Upon Lazy Load */
	img.litespeed-loaded{
		-webkit-transition: opacity .5s linear 0.2s;
		-moz-transition: opacity .5s linear 0.2s;
		transition: opacity .5s linear 0.2s;
		opacity: 1;
	}
