/* --- FONTS --- */
@charset "utf-8";

@font-face {
	font-family: "Raleway-ExtraLight";
	src: url('../../fonts/raleway/Raleway-ExtraLight.ttf') format('truetype');
}
@font-face {
	font-family: "Raleway-Light";
	src: url('../../fonts/raleway/Raleway-Light.ttf') format('truetype');
}
@font-face {
	font-family: "Raleway-Regular";
	src: url('../../fonts/raleway/Raleway-Regular.ttf') format('truetype');
}
@font-face {
	font-family: "Raleway-Medium";
	src: url('../../fonts/raleway/Raleway-Medium.ttf') format('truetype');
}
@font-face {
	font-family: "Raleway-SemiBold";
	src: url('../../fonts/raleway/Raleway-SemiBold.ttf') format('truetype');
}
@font-face {
	font-family: "Raleway-Bold";
	src: url('../../fonts/raleway/Raleway-Bold.ttf') format('truetype');
}
/* This Font Software is licensed under the SIL Open Font License, Version 1.1. */
/* This license can be found at this permalink: https://www.fontsquirrel.com/license/raleway */

/* --- GENERAL --- */
* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
*::before, *::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;	
}
html {
	height: 100%;
	font-size: 16px;
}
body {
	min-height: 100%;
	vertical-align: baseline;
	background-color: #FFF;
	font-weight: normal;
	font-style: normal;
	font-size: 1em;
	line-height: 1.5em;
	font-family: "Raleway-Light", verdana, helvetica, sans-serif;
	color: #333;
}
h1, h2, h3, h4 {
	color: #262626;
}
h1, h2 {
	font-family: "Raleway-Light", verdana, helvetica, sans-serif;
}
h3 {
	font-family: "Raleway-Regular", verdana, helvetica, sans-serif;
}
h4 {
	font-family: "Raleway-Medium", verdana, helvetica, sans-serif;
}
h1 {
	font-size: 3.1875em;
	line-height: 1.25em;
	margin-top: 0;
	margin-bottom: 0.7em;
}
h2 {
	font-size: 2.375em;
	line-height: 1.25em;
	margin-top: 0;
	margin-bottom: 0.7em;
}
h3 {
	font-size: 1.75em;
	line-height: 1.25em;
	margin-top: 0;
	margin-bottom: 0.7em;
}
h4 {
	font-size: 1.3125em;
	line-height: 1.5em;
	margin-top: 0;
	margin-bottom: 0.7em;
}
@media screen and (max-width:750px) {
	body {
		font-size: 1em;
		line-height: 1.25em;
	}
	h1 {
		font-size: 2em;
		line-height: 1.25em;
	}
	h2 {
		font-size: 1.625em;
		line-height: 1.15384615em;
	}
	h3 {
		font-size: 1.375em;
		line-height: 1.13636364em;
	}
	h4 {
		font-size: 1.125em;
		line-height: 1.25em;
	}
}
p, ul, ol, pre, table, blockquote {
	margin-top: 0em;
	margin-bottom: 1.4em;
}
ul ul, ol ol, ul ol, ol ul {
	margin-top: 0;
	margin-bottom: 0;
}
input, select, textarea, button {
	font-family: "Raleway-Light", verdana, helvetica, sans-serif;
	font-size: 100%;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
}
a {
	color: #00ACED;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	border-bottom: 1px solid #00ACED;
}
img {
	border: 0;
	max-width: 100%;
	height: auto;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
	border: 0;
}
caption, th, td {
	text-align: left;
}
ol, ul {
	list-style: none;
}
::selection {
    background-color: #00ACED;
	color: #FFF;
}
::-webkit-input-placeholder {
	color: #a6a6a6;
}
::-moz-placeholder {
	color: #a6a6a6;
}
:-ms-input-placeholder {
	color: #a6a6a6;
}
:-moz-placeholder {
	color: #a6a6a6;
}

/* --- FOOTER --- */
.footer {
	width: 100%;
	background-color: #838383;
}
.footer-container {
	max-width: 1150px;
	margin: 0 auto;
}
.footer-container .foot-navigation {
	width: 100%;
	padding: 3.2em 0 1.2em 0;
	border-bottom: 1px solid rgba(255,255,255,0.2);
}
.foot-navigation .foot-links, .foot-navigation .foot-icons {
	display: inline-block;
	margin: 0;
}
.foot-navigation .foot-links {
	float: left;
}
.foot-navigation .foot-icons {
	float: right;
}
.foot-navigation .foot-links li, .foot-navigation .foot-icons li {
	display: inline-block;
	margin: 0;
	padding: 0;
	vertical-align: middle;
}
.foot-links li a {
	font-family: "Raleway-Regular", verdana, helvetica, sans-serif;
	color: #FFF;
	font-size: 0.9375em;
	padding-right: 1.4em;
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.foot-links li a:hover {
	text-decoration: none;
	border-bottom: none;
	filter: alpha(opacity=65);
	opacity: 0.65;
}
.foot-icons li a img {
	height: 20px;
	width: auto;
	filter: alpha(opacity=65);
	opacity: 0.65;
	padding-right: 0.7em;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.foot-icons li:last-child a img {
	padding-right: 0;
}
.foot-icons li img:hover {
	filter: alpha(opacity=100);
	opacity: 1;
}
.foot-icons li a:hover {
	text-decoration: none;
	border-bottom: none;
}
.footer-container .foot-navigation:after { 
	content: '';
	display: block; 
	clear: both;
}
.footer-container .foot-copyright {
	width: 100%;
	padding: 3em 0 3.2em;
	text-align: left;
}
.foot-copyright p {
	font-family: "Raleway-Light", verdana, helvetica, sans-serif;
	color: #FFF;
	filter: alpha(opacity=65);
	opacity: 0.65;
	font-size: 0.875em;
	margin: 0;
}
@media screen and (max-width:1150px) {
	.footer {
		padding-left: 5%;
		padding-right: 5%;
	}
}
@media screen and (max-width:750px) {
	.footer {
		padding-left: 5%;
		padding-right: 5%;
	}
	.footer-container .foot-navigation {
		padding-bottom: 0;
		border-bottom: none;
	}
	.foot-navigation .foot-links, .foot-navigation .foot-icons {
		display: block;
		float: none;
	}
	.footer-container .foot-navigation:after { 
		content: none;
	}
	.foot-navigation .foot-links li {
		display: block;
		line-height: 2.125em;
		margin: 0;
		padding: 0;
	}
	.foot-links li a {
		display: block;
		width: 100%;
		height: 100%;
		margin: 0;
		padding: 0;
	}
	.foot-navigation .foot-icons {
		padding-top: 1.2em;
	}
}

/* --- WEB BANNER --- */
.promo-banner {
	background-color: #F8F9FB;
	padding: 0.7em 0;
	text-align: center;
}
.promo-banner p {
	font-family: "Raleway-Light", verdana, helvetica, sans-serif;
    color: #262626;
    font-size: 0.875em;
    margin: 0;
}
@media screen and (max-width:1125px) {
	.promo-banner {
		display: none;
	}
}

/* --- PRIMARY NAVIGATION BAR --- */
.header {
	position: -webkit-sticky;
  	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #32506D;
	z-index: 9999;
}
.header-container {
	max-width: 1150px;
	margin: 0 auto;
	text-align: justify;
}
.header-container:after {
	content: '';
	display: inline-block;
	width: 100%;
}
.header-container .header-logo, .header-container .header-navbar-menu {
	display: inline-block;
	vertical-align: middle;
}
.header-logo img {
	height: 2em;
	width: auto;
}
.header-navbar-menu {
	text-align: justify;
	padding-left: 1em;
}
.header-navbar-menu:after {
	content: '';
	display: inline-block;
	width: 100%;
}
/* === navicon button for mobile === */
.lines-button {
	height: 27px;
	border: 0;
	outline: 0;
	background: none;
	cursor: pointer;
	display: none;
}
.lines {
	display: inline-block;
	width: 27px;
	height: 3px;
	background: #FFF;
	border-radius: 1px;
	transition: 0.2s;
	position: relative;
}
.lines:before, .lines:after {
	content: '';
	display: inline-block;
	width: 27px;
	height: 3px;
	background: #FFF;
	border-radius: 1px;
	transition: 0.2s;
	position: absolute;
	left: 0;
}
.lines:before {
	top: 9px;
}
.lines:after {
	top: -9px;
}
.lines-button .lines {
	transition: background 0.2s 0.4s ease;
}
.lines-button .lines:before, .lines-button .lines:after {
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	transition: top 0.2s 0.4s ease, -webkit-transform 0.2s ease;
	transition: top 0.2s 0.4s ease, transform 0.2s ease;
}
.lines-button.open .lines {
	transition: background 0.2s 0s ease;
	background: transparent;
}
.lines-button.open .lines:before, .lines-button.open .lines:after {
	transition: top 0.2s ease, -webkit-transform 0.2s 0.4s ease;
	transition: top 0.2s ease, transform 0.2s 0.4s ease;
	top: 0;
	width: 27px;
}
.lines-button.open .lines:before {
	-webkit-transform: rotate3d(0, 0, 1, 45deg);
	transform: rotate3d(0, 0, 1, 45deg);
}
.lines-button.open .lines:after {
	-webkit-transform: rotate3d(0, 0, 1, -45deg);
	transform: rotate3d(0, 0, 1, -45deg);
}
/* === end navicon === */
.header-navbar-menu ul {
	margin: 0;
	text-align: left;
	position: relative;
}
.header-navbar-menu ul li {
	display: inline-block;
	line-height: 4.5em;
	margin: 0;
	padding: 0 1em;
}
.header-navbar-menu ul li.nav-menu-search {
	padding-right: 0;
}
.header-navbar-menu ul li a {
	position: relative;
	font-family: "Raleway-Regular", verdana, helvetica, sans-serif;
	color: #FFF;
	font-size: 0.9375em;
	letter-spacing: 0.025em;
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.header-navbar-menu ul li a:hover {
	text-decoration: none;
	border-bottom: none;
}
.header-navbar-menu ul li a:hover:after {
	content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    height: 2px;
    width: 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #ffd100;
}
li.nav-menu-search .icon-button {
	display: inline-block;
	height: 20px;
	width: 20px;
	border: 0;
	outline: 0;
	background: none;
	cursor: pointer;
}
.icon-button svg {
	width: 20px;
	height: 20px;
	vertical-align: middle;
	fill: #FFF;
}
.icon-button svg:hover {
	filter: alpha(opacity=65);
	opacity: 0.65;
}
.icon-button svg.icon-searchbutton {
	display: inline-block;
}
.icon-button svg.icon-clearbutton {
	display: none;
}
li.nav-menu-search .searchbox {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 20px;
	display: none;
}
.searchbox-wrapper {
	position: relative;
}
.searchbox-wrapper svg {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto 0;
	width: 20px;
	height: 20px;
	fill: #FFF;
}
.searchbox-wrapper input[type=text] {
	width: 100%;
	height: 4.5em;
	border: 0;
	outline: 0;
	background-color: #32506D;
	font-family: "Raleway-Regular", verdana, helvetica, sans-serif;
	color: #FFF;
	font-size: 0.9375em;
	letter-spacing: 0.025em;
	padding: 0 35px 0 35px;
}
.searchbox-wrapper input[type=text]::placeholder {
	font-family: "Raleway-Regular", verdana, helvetica, sans-serif;
	color: #FFF;
	letter-spacing: 0.025em;
	filter: alpha(opacity=65);
	opacity: 0.65;
}
@media screen and (max-width:1150px) {
	.header {
		padding-left: 5%;
		padding-right: 5%;
	}
}
@media screen and (max-width:1125px) {
	.header {
		position: static;
		line-height: 4.25em;
		padding-left: 5%;
		padding-right: 5%;
	}
	.header-logo img {
		height: 1.7em;
	}
	.header-navbar-menu {
		padding: 0;
	}
	.lines-button {
		display: inline-block;
	}
	.header-navbar-menu ul {
		position: absolute;
		top: 4.25em;
		left: 0;
		width: 100%;
		height: 100%;
		background: #32506D;
		background: -webkit-linear-gradient(top,#32506D,#00ACED);
		background: -moz-linear-gradient(top,#32506D,#00ACED);
		background: -o-linear-gradient(top,#32506D,#00ACED);
		background: linear-gradient(to bottom,#32506D,#00ACED);
		padding: 0 5% 0 5%;
		text-align: left;
		z-index: 9999;
		display: none;
	}
	.header-navbar-menu ul li {
		display: block;
		line-height: 2.875em;
		margin: 0;
		padding: 0;
	}
	.header-navbar-menu ul li:first-child {
		padding-top: 1.4375em;
		border-top: 1px solid rgba(255,255,255,0.1);
	}
	.header-navbar-menu ul li a {
		display: block;
		width: 100%;
		height: 100%;
		margin: 0;
		padding: 0;
	}
	.header-navbar-menu ul li a:hover:after {
		content: none;
	}
	li.nav-menu-search .icon-button {
		display: none;
	}
	li.nav-menu-search .searchbox {
		position: static;
		display: block;
	}
	.searchbox-wrapper input[type=text] {
		height: 2.875em;
		background-color: transparent;
		padding: 0 0 0 27.5px;
	}
}

/* --- HOMEPAGE CAROUSEL --- */
.carousel-container {
	position: relative;
	width: 100%;
	height: 620px;
}
.carousel-item-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.carousel-item {
	display: block;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.carousel-item-opacity {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	background: -webkit-linear-gradient(left,#000,transparent);
	background: -moz-linear-gradient(left,#000,transparent);
	background: -o-linear-gradient(left,#000,transparent);
	background: linear-gradient(to right,#000,transparent);
	filter: alpha(opacity=95);
	opacity: 0.95;
}
.carousel-item-descrip-container {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: auto;
	-webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.carousel-item-descrip {
	max-width: 1150px;
	margin: 0 auto;
	text-align: left;
}
.carousel-item-descrip h1 {
	max-width: 50%;
	margin: 0 0 0.7em 0;
	font-family: "Raleway-SemiBold", verdana, helvetica, sans-serif;
	color: #FFF;
	font-size: 3.75em;
	letter-spacing: 0.05em;
}
.carousel-item-descrip h2 {
	max-width: 50%;
	margin: 0 0 1em 0;
	font-family: "Raleway-Medium", verdana, helvetica, sans-serif;
	color: #FFF;
	font-size: 2.8125em;
}
.carousel-item-descrip p {
	max-width: 50%;
	margin: 2.8em 0;
	font-family: "Raleway-Light", verdana, helvetica, sans-serif;
	color: #FFF;
	font-size: 1.125em;
	line-height: 1.425em;
}
.carousel-item-descrip .butt-home a {
	display: inline-block;
	font-family: "Raleway-SemiBold", verdana, helvetica, sans-serif;
	color: #FFF;
	font-size: 0.9375em;
	border: 2px solid #FFF;
	border-radius: 50px;
	padding: 18px 32px;
	line-height: 1em;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}
.carousel-item-descrip .butt-home a:hover {
	text-decoration: none;
	color: #ffd100;
	border: 2px solid #ffd100;
}
.carousel-item-descrip a:hover {
	text-decoration: none;
	border-bottom: none;
}
.carousel-item-descrip img {
	max-width: 200px;
	height: auto;
}
@media screen and (max-width:1150px) {
	.carousel-item-descrip-container {
		padding-left: 5%;
		padding-right: 5%;
	}
}
@media screen and (max-width:750px) {
	.carousel-container {
		height: 450px;
	}
	.carousel-item-descrip-container {
		padding-left: 5%;
		padding-right: 5%;
	}
	.carousel-item-descrip {
		text-align: center;
	}
	.carousel-item-descrip h1, .carousel-item-descrip h2, .carousel-item-descrip p {
		max-width: 100%;
	}
	.carousel-item-descrip h1 {
		margin: 0 0 0.35em 0;
		font-size: 2em;
	}
	.carousel-item-descrip h2 {
		margin: 0 0 0.7em 0;
		font-size: 1.625em;
	}
	.carousel-item-descrip p {
		margin: 1.4em 0;
		font-size: 1em;
		line-height: 1.25em;
	}
	.carousel-item-descrip img {
		max-width: 150px;
	}
}

/* --- PAGE HEADING CONTAINER --- */
.heading-container {
	position: relative;
	width: 100%;
	height: 500px;
}
.heading-container-img {
	display: block;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;	
}
.heading-container-opacity {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	background: -webkit-radial-gradient(#000,transparent 99%);
	background: -moz-radial-gradient(#000,transparent 99%);
	background: -o-radial-gradient(#000,transparent 99%);
	background: radial-gradient(#000,transparent 99%);
	filter: alpha(opacity=95);
	opacity: 0.95;
}
.heading-container-text-container {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: auto;
	-webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.heading-container-text {
	max-width: 1150px;
	margin: 0 auto;
	text-align: center;
}
.heading-container-text h1 {
	max-width: 100%;
	margin: 0 auto 0.2em auto;
	font-family: "Raleway-Bold", verdana, helvetica, sans-serif;
	color: #FFF;
	font-size: 4.375em;
}
.heading-container-text p {
	max-width: 50%;
	margin: 0 auto;
	font-family: "Raleway-Light", verdana, helvetica, sans-serif;
	color: #FFF;
	font-size: 1.4375em;
	line-height: 1.425em;
}
.heading-container-text img {
	max-width: 300px;
	height: auto;
	padding-top: 1.5em;
}
@media screen and (max-width:1150px) {
	.heading-container-text-container {
		padding-left: 5%;
		padding-right: 5%;
	}
}
@media screen and (max-width:750px) {
	.heading-container {
		height: 350px;
	}
	.heading-container-text-container {
		padding-left: 5%;
		padding-right: 5%;
	}
	.heading-container-text h1, .heading-container-text p {
		max-width: 100%;
	}
	.heading-container-text h1 {
		margin: 0 auto 0.7em auto;
		font-size: 2em;
	}
	.heading-container-text p {
		font-size: 1.1875em;
		line-height: 1.25em;
	}
	.heading-container-text img {
		max-width: 200px;
	}
}

/* --- STANDARD PAGE CONTAINER --- */
/* === container colors === */
.div-color {
	width: 100%;
	background-color: #f9f9f9;
}
/* === container styling === */
.main-contain {
	max-width: 1150px;
	margin: 0 auto;
	padding: 4.5em 0 4.5em 0;
	text-align: center;
}
.main-contain .align-left {
	max-width: 720px;
	margin: 0;
	text-align: left;
}
.main-contain .squeeze-block {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}
.squeeze-block .align-left {
	text-align: left;
}
.main-contain ul {
	list-style-type: disc;
	list-style-position: outside;
	margin-left: 1em;
}
.main-contain ul li ul {
	list-style-type: circle;
	list-style-position: outside;
	margin-left: 1em;
}
@media screen and (max-width:1150px) {
	.main-contain {
		padding-left: 5%;
		padding-right: 5%;
	}
}
@media screen and (max-width:750px) {
	.main-contain {
		padding: 3.5em 5% 3.5em 5%;
		text-align: left;
	}
	.main-contain .squeeze-block {
		max-width: 100%;
	}
}
/* === container styling exceptions === */
h1.header-border, h2.header-border, h3.header-border, h4.header-border {
	margin-top: 1.4em;
	padding-top: 1.4em;
	border-top: 1px solid #e2e2e2;
}
h1.text-with-media, h2.text-with-media, h3.text-with-media, h4.text-with-media {
	margin-bottom: 1.75em;
}
h4.headline-big {
	font-size: 1.4375em;
	font-family: "Raleway-Light", verdana, helvetica, sans-serif;
	color: #6b7c93;
}
h4.headline-small {
	font-size: 1.3125em;
	font-family: "Raleway-Light", verdana, helvetica, sans-serif;
	color: #6b7c93;
}
h4.headline-big.headline-darker, h4.headline-small.headline-darker {
	color: #525f7f;
}
span#spec-bold {
	font-family: "Raleway-Medium", verdana, helvetica, sans-serif;
	color: #333;
}
span#text-light {
	color: #828282;
}
span#text-color {
	color: #00ACED
}
ul li.no-bullet {
	list-style-type: none;
	margin-left: -1em;
}
h4.add-margin-after-photo {
	margin-top: 1em;
}
p.remove-margin-bott, h2.remove-margin-bott, h3.remove-margin-bott, h4.remove-margin-bott, ul.remove-margin-bott {
	margin-bottom: 0;
}
.photo-inset-wrapper {
	max-width: 450px;
	margin-bottom: 2.8em;
}
.photo-inset-wrapper.wide {
	max-width: 100%;
}
.photo-inset-wrapper img {
	width: 100%;
	height: auto;
}
.photo-inset-wrapper p {
	font-family: "Raleway-Light", verdana, helvetica, sans-serif;
	color: #828282;
	font-size: 0.9375em;
	margin: 0.75em 0 0 0;
}
@media screen and (max-width:750px) {
	h4.headline-big {
		font-size: 1.25em;
	}
	h4.headline-small {
		font-size: 1.125em;
	}
	.photo-inset-wrapper {
		max-width: 100%;
	}
}
/* === clickable button (standard) === */
.butt-reg a {
	display: inline-block;
	font-family: "Raleway-SemiBold", verdana, helvetica, sans-serif;
	color: #262626;
	font-size: 0.9375em;
	background-color: #ffd100;
	border: 1px solid #ffd100;
	border-radius: 50px;
	padding: 18px 32px;
	line-height: 1em;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}
.butt-reg a:hover {
	text-decoration: none;
	background-color: #e5bc00;
	border: 1px solid #e5bc00;
}
/* === clickable button (special action) === */
.butt-act a {
	display: inline-block;
	font-family: "Raleway-SemiBold", verdana, helvetica, sans-serif;
	color: #FFF;
	font-size: 0.9375em;
	background-color: #00ACED;
	border: 1px solid #00ACED;
	border-radius: 50px;
	padding: 18px 32px;
	line-height: 1em;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}
.butt-act a:hover {
	text-decoration: none;
	background-color: #009ad5;
	border: 1px solid #009ad5;
}
/* === clickable arrow === */
a.link-arrow {
	font-family: "Raleway-Bold", verdana, helvetica, sans-serif;
}
a.link-arrow:hover {
	text-decoration: none;
	border-bottom: none;
}
a.link-arrow:after {
    content: '\2192';
    padding-left: 5px;
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
a.link-arrow:hover:after {
	color: #ffd100;
}
/* === video wrapper/frame === */
.vid-wrapper {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 25px;
	height: 0;
}
.vid-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/* === photo block === */
.photo-block-contain {
	text-align: justify;
	font-size: 0;
}
.photo-block-contain:after {
	content: '';
	display: inline-block;
	width: 100%;
}
.photo-block-contain .block-photo, .photo-block-contain .gapper {
	display: inline-block;
	width: 33.3333333333%;
}
.photo-block-contain .block-photo {
	vertical-align: top;
	height: 350px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
@media screen and (max-width:750px) {
	.photo-block-contain .block-photo, .photo-block-contain .gapper {
		width: 100%;
	}
	.photo-block-contain .block-photo {
		height: 300px;
		margin-bottom: 5%;
	}
}

/* --- SECTIONS/BOXES --- */
/* === two-column section === */
.two-col-contain {
	text-align: justify;
	font-size: 0;
}
.two-col-contain:after {
	content: '';
	display: inline-block;
	width: 100%;
}
.two-col-contain .col-one, .two-col-contain .col-two {
	display: inline-block;
	vertical-align: top;
	font-size: 16px;
	text-align: left;
}
.two-col-contain .col-one.thin-spacing, .two-col-contain .col-two.thin-spacing {
	width: 48.5%;
}
.two-col-contain .col-one.med-spacing, .two-col-contain .col-two.med-spacing {
	width: 47.5%;
}
.two-col-contain .col-one.wide-spacing, .two-col-contain .col-two.wide-spacing {
	width: 46.5%;
}
.two-col-contain p, .two-col-contain ul {
	font-size: 16px;
}
.two-col-contain .butt-reg a, .two-col-contain .butt-act a {
	font-size: 15px;
}
.two-col-contain h2 {
	font-size: 38px;
}
.two-col-contain h3 {
	font-size: 28px;
}
.two-col-contain h4 {
	font-size: 21px;
}
.two-col-contain img {
	max-width: 100%;
	height: auto;
}
@media screen and (max-width:750px) {
	.two-col-contain .col-one.thin-spacing, .two-col-contain .col-two.thin-spacing, .two-col-contain .col-one.med-spacing, .two-col-contain .col-two.med-spacing, .two-col-contain .col-one.wide-spacing, .two-col-contain .col-two.wide-spacing {
		width: 100%;
	}
	.two-col-contain h2 {
		font-size: 26px;
	}
	.two-col-contain h3 {
		font-size: 22px;
	}
	.two-col-contain h4 {
		font-size: 18px;
	}
}
/* === three-column section === */
.three-col-contain {
	text-align: justify;
	font-size: 0;
}
.three-col-contain:after {
	content: '';
	display: inline-block;
	width: 100%;
}
.three-col-contain .col, .three-col-contain .gapper {
	display: inline-block;
	font-size: 16px;
}
.three-col-contain .col {
	vertical-align: top;
	text-align: left;
}
.three-col-contain .col.thin-spacing, .three-col-contain .gapper.thin-spacing {
	width: 31.3333333333%;
}
.three-col-contain .col.wide-spacing, .three-col-contain .gapper.wide-spacing {
	width: 29.3333333333%;
}
.three-col-contain p, .three-col-contain ul {
	font-size: 16px;
}
.three-col-contain .butt-reg a, .three-col-contain .butt-act a {
	font-size: 15px;
}
.three-col-contain h2 {
	font-size: 38px;
}
.three-col-contain h3 {
	font-size: 28px;
}
.three-col-contain h4 {
	font-size: 21px;
}
.three-col-contain img {
	max-width: 100%;
	height: auto;
}
@media screen and (max-width:750px) {
	.three-col-contain .col.thin-spacing, .three-col-contain .gapper.thin-spacing, .three-col-contain .col.wide-spacing, .three-col-contain .gapper.wide-spacing {
		width: 100%;
	}
	.three-col-contain h2 {
		font-size: 26px;
	}
	.three-col-contain h3 {
		font-size: 22px;
	}
	.three-col-contain h4 {
		font-size: 18px;
	}
}
/* === two- or three-column sections === */
.two-col-contain.section-padding, .three-col-contain.section-padding {
	padding-top: 2.5%;
}
.two-col-contain .photo-wrapper, .three-col-contain .photo-wrapper {
	display: block;
	width: 100%;
    height: 235px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
/* === special styling: Z-shape layout === */
.col-one.zshape-text, .col-two.zshape-text {
	vertical-align: middle;
	width: 31%;
}
.col-one.zshape-img, .col-two.zshape-img {
	vertical-align: middle;
	width: 61%;
}
.zshape-text h2 {
	font-size: 30px;
	margin-bottom: 0.5em
}
.zshape-text p {
	line-height: 1.7em;
}
/* === special styling: product intro section === */
.two-col-contain.featured-img-with-intro .col-one {
	width: 64%;	
}
.two-col-contain.featured-img-with-intro .col-two {
	width: 32%;
}
.two-col-contain.featured-img-with-intro .featured-image {
	display: block;
	width: 100%;
	height: 575px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
/* === special styling: cards === */
.col-panel {
	background-color: #FFF;
	-webkit-box-shadow: 0 2.5px 5px 0 rgba(0,0,0,0.2);
	box-shadow: 0 2.5px 5px 0 rgba(0,0,0,0.2);
	text-align: left;
}
.col-panel .text-wrapper {
	padding: 2.25em 2.5em 2.5em 2.5em;
}
.col-panel h4 {
	font-family: "Raleway-Bold", verdana, helvetica, sans-serif;
	line-height: 1.25em;
}
/* === special styling: boxes === */
.col-tile {
	background-color: #FFF;
	padding: 2.25em;
	border: 1px solid #e2e2e2;
	text-align: center;
}
.col-tile p.contact-info {
	font-family: "Raleway-SemiBold", verdana, helvetica, sans-serif;
}
.col-tile p.contact-hours {
	text-transform: lowercase;
	font-variant: small-caps;
	margin-top: 0.35em;
}
/* === special styling: icon above text === */
.col-icon {
	text-align: center;
}
.col-icon img {
	max-width: 100px;
	height: auto;
	padding-bottom: 1.4em;
}
@media screen and (max-width:750px) {
	.two-col-contain.section-padding, .three-col-contain.section-padding {
		padding-top: 5%;
	}
	.two-col-contain .add-margin-bott-mobile, .three-col-contain .add-margin-bott-mobile {
		margin-bottom: 1.4em;
	}
	.col-one.zshape-text, .col-two.zshape-text, .col-one.zshape-img, .col-two.zshape-img {
		width: 100%;
	}
	.zshape-text h2 {
		font-size: 26px;
	}
	.zshape-text p {
		line-height: 1.25em;
	}
	.two-col-contain.featured-img-with-intro .col-one, .two-col-contain.featured-img-with-intro .col-two {
		width: 100%;
	}
	.two-col-contain.featured-img-with-intro .featured-image {
		height: 300px;
	}
	.col-panel .text-wrapper {
		padding: 1.75em;
	}
	.col-tile {
		padding: 1.75em;
	}
}
/* === two-column comparison table === */
.plan-comparison-container {
	text-align: justify;
	font-size: 0;
	padding-top: 2.5%;
	border-bottom: 1px solid #d5dce0;
}
.plan-comparison-container:after {
	content: '';
	display: inline-block;
	width: 100%;
}
.plan-comparison-container .plan-table-col {
	display: inline-block;
	vertical-align: top;
	width: 50%;
	font-size: 16px;
	padding: 2.5em 2em;
	border-top: 1px solid #d5dce0;
}
.plan-table-col.highlight-col {
	background-color: #e5f6fd;
}
.plan-comparison-container p, .plan-comparison-container ul {
	font-size: 16px;
	text-align: left;
}
.plan-comparison-container h3 {
	font-size: 24px;
	font-family: "Raleway-Regular", verdana, helvetica, sans-serif;
	text-align: center;
	margin-bottom: 0.35em;
}
.plan-comparison-container h4 {
    font-size: 16px;
    font-family: "Raleway-Medium", verdana, helvetica, sans-serif;
	text-align: center;
	margin-bottom: 1.4em;
}
.plan-comparison-container ul {
	margin: 0;
}
.plan-comparison-container li {
	list-style-type: none;
	margin-bottom: 1em;
}
.plan-comparison-container li:last-child {
	margin-bottom: 0;
}
.plan-comparison-container .check {
	display: inline-block;
	transform: rotate(45deg);
	height: 14px;
	width: 7px;
	border-bottom: 2px solid #00ACED;
	border-right: 2px solid #00ACED;
	margin-right: 16px;
}
@media screen and (max-width:750px) {
	.plan-comparison-container {
		padding-top: 5%;
	}
	.plan-comparison-container .plan-table-col {
		width: 100%;
	}
	.plan-comparison-container h3 {
		font-size: 22px;
	}
	.plan-comparison-container h4 {
		font-size: 18px;
	}
	.plan-comparison-container p, .plan-comparison-container ul, .plan-comparison-container h3, .plan-comparison-container h4 {
		text-align: left;
	}
}

/* --- NAVIGATION BAR 2 --- */
.navbar-secondary {
	max-width: 1150px;
	margin: 0 auto;
	z-index: 999;
}
.navbar-secondary .arrow-right {
	display: none;
}
.navbar-secondary ul {
	font-size: 0;
	text-align: center;
}
.navbar-secondary li {
	font-size: 16px;
	display: inline-block;
	line-height: 3.5em;
	margin: 0;
	padding: 0.7em 1.4em 0 1.4em;
	vertical-align: middle;
	border-bottom: 2px solid #e2e2e2;
}
.navbar-secondary li a {
	position: relative;
	font-family: "Raleway-Medium", verdana, helvetica, sans-serif;
	color: #828282;
	font-size: 0.9375em;
	letter-spacing: 0.025em;
	display: block;
	height: 100%;
	-webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
.navbar-secondary li.navbar-selected a {
	color: #262626;
}
.navbar-secondary li a:hover {
	text-decoration: none;
	border-bottom: none;
	color: #262626;
}
.navbar-secondary li.navbar-selected a:after {
	content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    height: 6px;
    width: 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #ffd100;
}
.navbar-secondary li a:hover:after {
	content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    height: 6px;
    width: 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #ffd100;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
@media screen and (max-width:1150px) {
	.navbar-secondary {
		padding-left: 5%;
		padding-right: 5%;
	}
}
@media screen and (max-width:750px) {
	.navbar-secondary {
		position: -webkit-sticky;
  		position: sticky;
		top: 0;
		left: 0;
		padding-left: 0;
		padding-right: 2.1em;
		border-bottom: 1px solid rgba(0,0,0,0.2);
	}
	.navbar-secondary .arrow-right {
		display: inline-block;
		position: absolute;
		top: 0;
		right: 0;
		height: 100%;
		border-left: 1px solid rgba(0,0,0,0.2);
		background-color: rgba(255,255,255,0.75);
		cursor: pointer;
	}
	.navbar-secondary .arrow-right span {
		display: inline-block;
		width: 0.55em;
		height: 0.55em;
		border-top: 1px solid #262626;
		border-right: 1px solid #262626;
		-moz-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		margin: 1.35em 0.775em;
	}
	.navbar-secondary ul {
		overflow-x: auto;
		white-space: nowrap;
		background-color: rgba(255,255,255,0.75);
	}
	.navbar-secondary ul::-webkit-scrollbar {
		display: none;
	}
	.navbar-secondary li {
		line-height: 3.25em;
		padding: 0 0.9em;
		border-bottom: none;
	}
	.navbar-secondary li:first-child {
		padding-left: 1.35em;
	}
	.navbar-secondary li:last-child {
		padding-right: 1.35em;
	}
	.navbar-secondary li.navbar-selected a:after {
		content: none;
	}
	.navbar-secondary li a:hover:after {
		content: none;
	}
}

/* --- NAVIGATION BAR 3 --- */
.navbar-tertiary {
	width: 100%;
	z-index: 999;
}
.navbar-tertiary ul {
	max-width: 1150px;
	margin: 0 auto;
	text-align: left;
}
.navbar-tertiary li {
	display: inline-block;
	margin: 0;
	padding: 0;
	vertical-align: middle;
}
.navbar-tertiary li a {
	font-family: "Raleway-Regular", verdana, helvetica, sans-serif;
	color: #828282;
	font-size: 0.9375em;
	display: block;
	height: 100%;
	padding-top: 1.75em;
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.navbar-tertiary li a:before {
	content: '\2039';
	color: #828282;
	margin-right: 0.7em;
}
.navbar-tertiary li a:hover {
	text-decoration: none;
	border-bottom: none;
	color: #262626;
}
@media screen and (max-width:1150px) {
	.navbar-tertiary ul {
		padding-left: 5%;
		padding-right: 5%;
	}
}
@media screen and (max-width:750px) {
	.navbar-tertiary {
		position: -webkit-sticky;
  		position: sticky;
		top: 0;
		left: 0;
		background-color: rgba(255,255,255,0.75);
	}
	.navbar-tertiary li {
		line-height: 3.25em;
	}
	.navbar-tertiary li a {
		padding-top: 0;
	}
}

/* --- MENU W/ HOT LINKS --- */
.menu-hotlinks {
	width: 100%;
	background-color: #a5a5a5;
}
.menu-hotlinks ul {
	text-align: justify;
	font-size: 0;
}
.menu-hotlinks ul:after {
	content: '';
	display: inline-block;
	width: 100%;
}
.menu-hotlinks li {
	font-size: 16px;
	display: inline-block;
	line-height: 6.5em;
	margin: 0;
	padding: 0;
	width: 25%;
	vertical-align: middle;
	border-left: 0.1em solid #FFF;
	border-right: 0.1em solid #FFF;
}
.menu-hotlinks li:first-child {
	border-left: 0;
}
.menu-hotlinks li:last-child {
	border-right: 0;
}
.menu-hotlinks li a {
	font-family: "Raleway-Light", verdana, helvetica, sans-serif;
	color: #FFF;
	font-size: 1.125em;
	display: block;
	height: 100%;
	text-align: center;
	-webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}
.menu-hotlinks li a:hover {
	text-decoration: none;
	border-bottom: none;
	background-color: #838383;
}
@media screen and (max-width:750px) {
	.menu-hotlinks li {
		line-height: 4em;
		border: 0;
	}
	.menu-hotlinks li a {
		font-size: 1em;
	}
}

/* --- SORTABLE GALLERY --- */
.gallery-filter {
	width: 100%;
	padding-top: 2.5%;
}
.gallery-filter .filter-toggle, .gallery-filter .clear-filter {
	display: inline-block;
	line-height: 3em;
	vertical-align: middle;
}
.gallery-filter .filter-toggle {
	float: left;
	font-family: "Raleway-Regular", verdana, helvetica, sans-serif;
	color: #FFF;
	padding: 0 1.2em;
	background-color: #00ACED;
	cursor: pointer;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}
.gallery-filter .filter-toggle:hover {
	background-color: #009ad5;
}
.gallery-filter .filter-toggle:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    border-top: 4px solid #FFF;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    margin: 0 0 0 2.5em;
}
.gallery-filter .filter-toggle.open:after {
    border-top: none;
    border-bottom: 4px solid #FFF;
}
.gallery-filter .clear-filter {
	float: right;
}
.clear-filter a {
	font-family: "Raleway-Regular", verdana, helvetica, sans-serif;
	color: #FFF;
	padding: 0 1.2em;
	background-color: #a5a5a5;
	display: block;
    height: 100%;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}
.clear-filter a:hover {
	text-decoration: none;
	border-bottom: none;
	background-color: #838383;
}
.gallery-filter:after { 
	content: '';
	display: block; 
	clear: both;
}
.filter-dropdown {
	width: 100%;
	padding: 1.5em;
	background-color: #FFF;
	border-radius: 4px;
	margin-top: 2.5%;
	-webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.25);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.25);
    text-align: left;
	display: none;
}
.filter-dropdown p {
	font-family: "Raleway-Medium", verdana, helvetica, sans-serif;
	text-transform: uppercase;
	color: #262626;
}
.filter-dropdown p:not(:first-child) {
	margin-top: 1.4em;
}
.filter-dropdown ul {
	margin: 0;
	padding: 0;
}
.filter-dropdown ul li {
	display: inline-block;
	margin: 0 0.25em 0.5em 0;
	padding: 0;
}
.filter-dropdown ul li a {
	font-size: 0.9375em;
	color: #262626;
	text-transform: lowercase;
	border: 1px solid #e2e2e2;
	padding: 1em 1em;
	line-height: 1em;
	display: block;
	height: 100%;
	-webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}
.filter-dropdown ul li a:hover {
	text-decoration: none;
	border: 1px solid #262626;
}
.filter-dropdown ul li a:focus {
	border: 1px solid #262626;
}
#container {
	text-align: justify;
	font-size: 0;
	padding-top: 2.5%;
}
#container:after {
	content: '';
	display: inline-block;
	width: 100%;
}
#container .gallery-box, #container .gap {
	display: inline-block;
	width: 31.6666666667%;
}
#container .gallery-box {
	margin-bottom: 2.5%;
	vertical-align: top;
}
#container .gallery-box.mix {
	display: none;
}
.gallery-box .gallery-photo {
	display: block;
	width: 100%;
	height: 300px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	border: 1px solid #e2e2e2;
}
.gallery-box .gallery-photo.tall {
	height: 450px;
}
.gallery-box .gallery-photo.grayscale {
	filter: grayscale(100%);
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.gallery-box .gallery-photo.grayscale:hover {
	filter: grayscale(0%);
}
.gallery-box .gallery-descrip {
	display: block;
	width: 100%;
	text-align: left;
}
.gallery-descrip h4 {
	font-size: 18px;
	font-family: "Raleway-Medium", verdana, helvetica, sans-serif;
	margin: 0.85em 0 0 0;
	line-height: 1.25em;
}
.gallery-descrip h4 a {
	color: #262626;
	border-bottom: 1px solid #ffd100;
}
.gallery-descrip h4 a:hover {
	text-decoration: none;
	border-bottom: 1px solid #262626;
}
.gallery-descrip h4.small-caps {
	text-transform: lowercase;
	font-variant: small-caps;
	margin: 0.65em 0 0 0;
}
.gallery-descrip p {
	font-size: 16px;
	margin: 0.75em 0 0 0;
	line-height: 1.25em;
}
.gallery-descrip p.pullquote {
	font-family: "Raleway-Bold", verdana, helvetica, sans-serif;
	color: #00ACED;
}
@media screen and (max-width:750px) {
	.gallery-filter {
		padding-top: 5%;
	}
	.filter-dropdown {
		margin-top: 5%;
	}
	#container {
		padding-top: 5%;
	}
	#container .gallery-box, #container .gap {
		width: 100%;
	}
	#container .gallery-box {
		margin-bottom: 5%;
	}
	.gallery-box .gallery-descrip {
		width: 100%;
	}
}

/* --- PHOTO/VIDEO GALLERIES --- */
.gallery-vid-contain {
	text-align: justify;
	font-size: 0;
}
.gallery-vid-contain:after {
	content: '';
	display: inline-block;
	width: 100%;
}
.gallery-vid-contain .gallery-vidbox {
	display: inline-block;
	width: 49%;
	margin-bottom: 2%;
	vertical-align: top;
}
.gallery-vid-contain .vidbox-vid {
	display: block;
	width: 100%;
}
.gallery-vid-contain .vidbox-descrip {
	display: block;
	width: 100%;
	text-align: left;
}
.vidbox-descrip p {
	font-size: 16px;
	margin: 0.75em 0 0 0;
	line-height: 1.25em;
}
.gallery-photo-contain {
	text-align: justify;
	font-size: 0;
}
.gallery-photo-contain:after {
	content: '';
	display: inline-block;
	width: 100%;
}
.gallery-photo-contain .gallery-photobox, .gallery-photo-contain .gapper {
	display: inline-block;
	width: 32.6666666667%;
}
.gallery-photo-contain .gallery-photobox {
	margin-bottom: 1%;
	vertical-align: top;
}
.gallery-photo-contain .photobox-photo {
	display: block;
	width: 100%;
	height: 337.5px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	border: 1px solid #e2e2e2;
}
.gallery-photo-contain .photobox-descrip {
	display: block;
	width: 100%;
	text-align: left;
}
.photobox-descrip p {
	font-size: 16px;
	margin: 0.75em 0 0 0;
	line-height: 1.25em;
}
@media screen and (max-width:750px) {
	.gallery-vid-contain .gallery-vidbox {
		width: 100%;
		margin-bottom: 5%;
	}
	.gallery-photo-contain .gallery-photobox, .gallery-photo-contain .gapper {
		width: 100%;
	}
	.gallery-photo-contain .gallery-photobox {
		margin-bottom: 5%;
	}
	.gallery-photo-contain .photobox-photo {
		height: 300px;
	}
}

/* --- CONTACT PAGE & FORM --- */
.squeeze-table-container {
	max-width: 620px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 4.5em;
}
.squeeze-table {
	padding: 1.4em;
	background-color: #f7f7f7;
	margin-top: 2.8em;
	text-align: left;
}
.squeeze-table p {
	margin-bottom: 0;
}
table.contact {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0;
	border-collapse: separate;
	border-spacing: 0 1em;
}
table.contact input[type=text], table.contact textarea, table.contact select {
	width: 100%;
	padding: 0.75em;
	background-color: #FFF;
	border: 1px solid #e2e2e2;
	border-radius: 2px;
	color: #333;
	-webkit-transition: border-color 0.3s ease-in-out;
    -moz-transition: border-color 0.3s ease-in-out;
    -o-transition: border-color 0.3s ease-in-out;
	transition: border-color 0.3s ease-in-out;
}
table.contact input[type=text]:focus, table.contact textarea:focus, table.contact select:focus {
	outline: 0;
	border: 1px solid #00ACED;
}
table.contact textarea {
	resize: none;
}
table.contact input[type=submit] {
	font-family: "Raleway-SemiBold", verdana, helvetica, sans-serif;
	color: #FFF;
	font-size: 0.9375em;
	text-decoration: none;
	background-color: #00ACED;
	border: 1px solid #00ACED;
	border-radius: 50px;
	padding: 18px 32px;
	line-height: 1em;
	cursor: pointer;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}
table.contact input[type=submit]:hover {
	border: 1px solid #009ad5;
	background-color: #009ad5;
}
table.contact input[type=submit]:focus {
	outline: 0;
}
table.contact .select-button {
	position: relative;
}
table.contact .select-button:after {
	content: '';
	position: absolute;
	border-top: 6px solid #333;
	border-right: 6px solid transparent;
	border-left: 6px solid transparent;
	top: 1.25em;
	right: 0.75em;
	pointer-events: none;
}
@media screen and (max-width:750px) {
	.squeeze-table-container {
		max-width: 100%;
		margin-top: 3.5em;
	}
	.squeeze-table {
		padding: 0;
		background-color: #FFF;
	}
}

/* --- NEWS/EVENT TABLE --- */
table.event-list {
	width: 100%;
}
table.event-list td {
	text-align: center;
	vertical-align: middle;
	width: 15%;
	padding: 2.1em 1.4em;
	border-bottom: 1px solid #e2e2e2;
}
table.event-list td.event-logo {
	width: 22%;
}
table.event-list td.event-name {
	width: 33%;
}
table.event-list tr:last-child td {
	border-bottom: none;
}
table.event-list h4 {
	font-size: 1.25em;
	margin: 0;
}
@media screen and (max-width:750px) {
	table.event-list td {
		width: 25%;
		padding-left: 1em;
		padding-right: 1em;
	}
	table.event-list td.event-logo {
		width: 25%;
		display: none;
	}
	table.event-list td.event-name {
		width: 25%;
		padding-left: 0;
	}
	table.event-list td.event-date {
		width: 25%;
		padding-right: 0;
	}
	table.event-list h4 {
		font-size: 1.125em;
	}
}

/* --- PRESS PAGE --- */
.press-page h2 {
	font-family: "Raleway-Bold", verdana, helvetica, sans-serif;
	margin-bottom: 1.4em;
}
.press-page p {
	font-family: "Raleway-Regular", verdana, helvetica, sans-serif;
}
.press-page .press-CTA h4.pullquote {
	font-family: "Raleway-Bold", verdana, helvetica, sans-serif;
	color: #00ACED;
	margin-top: 1.75em;
}
.press-page .press-CTA h4.pullquote a {
	border-bottom: 1px solid #ffd100;
}
.press-page .press-CTA h4.pullquote a:hover {
	text-decoration: none;
	border-bottom: 1px solid #00ACED;
}
.press-page .press-CTA h4.pullquote-author {
	font-family: "Raleway-Light", verdana, helvetica, sans-serif;
	color: #828282;
	margin-bottom: 1.75em;
}
.press-page span#pullquote-callouts {
	color: #ffd100;
}
.press-page .pressphoto-wrapper {
	max-width: 100%;
	margin-bottom: 1.75em;
}
.press-page .pressphoto-wrapper img {
	width: 100%;
	height: auto;
}
.press-page .pressphoto-wrapper p {
	font-family: "Raleway-Light", verdana, helvetica, sans-serif;
	color: #828282;
	font-size: 0.9375em;
	margin: 0.75em 0 0 0;
}
.press-page span#press-dateline {
	font-family: "Raleway-Bold", verdana, helvetica, sans-serif;
}
.press-page .press-logos {
	margin-top: 2.25em;
}
.press-page .press-logos a:first-child img {
	display: inline-block;
	vertical-align: middle;
	max-width: 200px;
	height: auto;
	margin-right: 0.5em;
}
.press-page .press-logos a:last-child img {
	display: inline-block;
	vertical-align: middle;
	max-width: 200px;
	height: auto;
	margin-left: 0.5em;
}
.press-page .press-logos a:hover {
	text-decoration: none;
	border-bottom: none;
}
@media screen and (max-width:750px) {
	.press-page .press-logos a:first-child img, .press-page .press-logos a:last-child img {
		display: block;
		max-width: 150px;
		margin: 1em 0;
	}
}

/* --- PARTNERSHIP PAGE --- */
.partner-contain {
	text-align: justify;
	font-size: 0;
	padding-top: 5%;
}
.partner-contain:after {
	content: '';
	display: inline-block;
	width: 100%;
}
.partner-contain .col-logo, .partner-contain .col-descrip {
	display: inline-block;
	vertical-align: top;
	text-align: left;
}
.partner-contain .col-logo {
	width: 19.4%;
}
.partner-contain .col-descrip {
	width: 75.6%;
}
.partner-contain p {
	font-size: 16px;
	margin-bottom: 0.7em;
}
.partner-contain h4 {
	font-size: 21px;
}
.partner-contain p:last-child {
	margin-bottom: 2.1em;
}
.partner-contain img {
	width: 100%;
	height: auto;
}
@media screen and (max-width:750px) {
	.partner-contain .col-logo {
		display: none;
	}
	.partner-contain .col-descrip {
		width: 100%;
	}
	.partner-contain h4 {
		font-size: 18px;
	}
}

/* --- SEARCH RESULTS --- */
a.gs-title {
	font-family: "Raleway-Medium", verdana, helvetica, sans-serif;
}
div.gs-bidi-start-align.gs-snippet {
	font-family: "Raleway-Light", verdana, helvetica, sans-serif;
	padding: 0.7em 0;
}
div.gs-visibleUrl {
	font-family: "Raleway-Light", verdana, helvetica, sans-serif;
}
div.gsc-cursor {
	font-family: "Raleway-Light", verdana, helvetica, sans-serif;
}
div.gsc-control-cse {
	padding: 0;
}
div.gsc-above-wrapper-area {
	display: none;
}
div.gsc-webResult.gsc-result {
	padding: 0;
	margin: 0;
}
td.gsc-table-cell-thumbnail.gsc-thumbnail {
	padding: 0;
}
div.gsc-cursor-box.gs-bidi-start-align {
	margin: 1.4em 0;
	padding: 0;
}