﻿/*
#region !!====={ Version Information }=====!!
// %~%@ < 91.3003 > @%~%     // File Version
// %~%# < 03/24/2016 > #%~%   // File Mod Date
// %~%! < Genesis Content > !%~%    // Core Module
// %~%^ < 1.3000 > ^%~%     // Minimum Core Version
#endregion ==================================
*/
/* 
#region !!====={ Mod Information }=====!!
#~#$ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
03/24/2016 - MKA :  * Color Change for Gen 1.3
$#~# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#~#$ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
11/5/2014 - MKA : Added style for comments
$#~# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#endregion ==================================
*/

/* Calendar popup Styling */

.dredgingProjectA {
	background: #fc1301;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	padding: 15px 15px;
	font-family: "montserratregular";
	font-style: italic;
	letter-spacing: 1px;
	font-size: 16px;
	position: fixed;
	bottom: 15px;
	text-decoration: none;
	right: 0;
	color: #fff;
	z-index: 999999;
	vertical-align: middle;
	transition: all 0.25s ease;
}

.dredgingProjectA:active:after {
	opacity: 0;
}

.dredgingProjectA:after {
	animation: shine 2s ease-in-out infinite;
	animation-fill-mode: forwards;
	content: "";
	position: absolute;
	top: -110%;
	left: -210%;
	width: 200%;
	height: 200%;
	opacity: 0;
	transform: rotate(30deg);
	background: rgba(255, 255, 255, 0.13);
	background: linear-gradient(
		to right,
		rgba(255, 255, 255, 0.13) 0%,
		rgba(255, 255, 255, 0.13) 77%,
		rgba(255, 255, 255, 0.5) 92%,
		rgba(255, 255, 255, 0) 100%
	);
}

@keyframes shine {
	10% {
		opacity: 1;
		top: -30%;
		left: -30%;
		transition-property: left, top, opacity;
		transition-duration: 0.7s, 0.7s, 0.15s;
		transition-timing-function: ease;
	}

	100% {
		opacity: 0;
		top: -30%;
		left: -30%;
		transition-property: left, top, opacity;
	}
}

.dredgingProjectA:hover {
	background: #fc6844;
	transition: all 0.25s ease;
}

.dredgingProjectA span {
	display: inline-block;
	vertical-align: middle;
}

.dredgingProjectA img {
	display: inline-block;
	vertical-align: middle;
}

#MeetingMinutes #mainContent ul {
	display: block;
	width: 28.333%;
	float: left;
	margin: 0;
	vertical-align: top;
}

#MeetingMinutes #mainContent ul li:first-of-type {
	list-style-type: none;
	text-decoration: underline;
	margin-bottom: 0px;
}

@media screen and (max-width: 1100px) {
	#MeetingMinutes #mainContent ul {
		width: 45.333%;
		padding: 0;
	}
}

@media screen and (max-width: 700px) {
	#MeetingMinutes #mainContent ul {
		width: 100%;
		max-width: 300px;
		clear: both;
		margin: 0 auto;
		padding: 0 0 0 15px;
	}
}

body#DredgingProject img {
	max-width: 100%;
	height: auto;
}
body#DredgingProject .img-grid {
	display: grid;
	column-gap: clamp(10px, 2vw, 30px);
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

body#DredgingProject .img-grid img {
	width: 100% !important;
	height: auto !important;
}

body#DredgingProject .img-grid iframe {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-color: black;
}

@media screen and (max-width: 680px) {
	body#DredgingProject .img-grid iframe {
		min-height: 50vw;
	}
}

#CalendarBodyID {
}

#descHolder {
	margin: 70px auto;
	padding: 20px 0;
	background: #fff;
	border-radius: 5px;
	width: 40%;
	position: relative;
	font-size: 17px;
	transition: all 1s ease-in-out;
	font-family: "open_sansregular";
	text-align: center;
}

#descHolder #DescTitle {
	font-weight: bold;
	font-size: 19px;
}

#descHolder #DescStart {
	padding-bottom: 10px;
}

#descHolder #DescEnd {
	display: none;
}

#descHolder h2 {
	margin-top: 0;
	color: #333;
	font-family: Tahoma, Arial, sans-serif;
}

#descHolder .close {
	position: absolute;
	top: 20px;
	right: 30px;
	transition: all 200ms;
	font-size: 30px;
	font-weight: bold;
	text-decoration: none;
	color: #333;
}

#descHolder .close:hover {
	color: #06d85f;
}

#descHolder .content {
	max-height: 30%;
	overflow: auto;
}

#descHolder a {
	background: #fc6843;
	color: #fff;
	text-decoration: none;
	display: inline-block;
	padding: 10px 15px;
	margin: 5px auto 0 auto;
	font-size: 14px;
	max-width: 200px;
	transition: all 0.25s ease;
}

#descHolder a:hover {
	background: #000;
	transition: all 0.25s ease;
}

@media screen and (max-width: 700px) {
	.box {
		width: 70%;
	}

	#descHolder {
		width: 70%;
	}
}

.eventHomeSpanContain a {
	background: #fc6843;
	color: #fff;
	display: block;
	text-decoration: none;
	padding: 11px 0px;
	border-radius: 7px;
	margin: 0 auto;
	font-size: 17px;
	transition: all 0.25s ease;
	max-width: 200px;
}

.eventHomeSpanContain a:hover {
	background: #273c58;
	color: #fff;
	transition: all 0.25s ease;
}

#Home {
	background: #eee;
}
body {
	margin: 0;
	padding: 0;
}
::selection {
	background: #c14456;
	color: #fff;
}
::-moz-selection {
	background: #c14456;
	color: #fff;
}

p,
ul {
	margin-bottom: 20px;
}
header,
footer,
nav,
section {
	display: block;
}

a,
a img {
	border: none;
	outline: none;
}
a {
	color: #fc6843;
}
a:hover {
	color: #1c3755;
}

h1 {
}
h2 {
}
h3 {
}
h4 {
}
h5 {
}

.wrap {
}
#mainHeader #headerLogo {
	position: relative;
	z-index: 9000;
}

#Home #mainHeader {
	background: url(/Content/images/homeTempHeader2.jpg) top center no-repeat;
	height: 475px;
}
#ContactStreamBodyID #mainHeader {
	background: url(/Content/images/subBanner_Contact.jpg) top center no-repeat;
}
.PhotoStreamBodyClass #mainHeader {
	background: url(/Content/images/subBanner_Gallery.jpg) top center no-repeat;
}
#mainHeader {
	background: url(/Content/images/subBanner_LearnAbout.jpg) top center no-repeat;
	height: 388px;
	width: 100%;
	color: #fff;
	text-align: center;
	position: relative;
	z-index: 9500;
}

#Home #subContainer {
	background: none;
}
#subContainer {
	background: url(/Content/images/bottom_Background.jpg) bottom center no-repeat;
	width: 100%;
	float: left;
	position: relative;
}

#headerLogo {
	padding-top: 40px;
}


.newsletter_signup {
	position: absolute;
	bottom: 130px;
	z-index: 1225;
	text-align: center;
	width: 100%;
	font-family: 'montserratregular';

}


@media screen and (max-width: 600px) {
	.newsletter_signup form {

	}

	.newsletter_signup label {
		display: block;
		width: 100%;
	}

	.newsletter_signup input[type=submit] {
		margin-top: 16px;
	}
}


@media screen and (max-width: 430px) {
	body .newsletter_signup p {
		width: 50%;
	}
	body .newsletter_signup input {
		max-width: 75% !important;
	}
}

@media screen and (max-width: 470px) {
	body .newsletter_signup {
		bottom: 60px;
		overflow-x: hidden;
	}
	body .newsletter_signup label {
		text-align: center;
	}
	body .newsletter_signup p {
		width: 50%;
		margin: 0;
		text-align: center;
	} 
	body .newsletter_signup p#SendButton {
		width: 100%;
		text-align: center;
	}
		body .newsletter_signup p input {
			max-width: 100%;
		}
}


	.newsletter_signup form {
		max-width: 582px;
		margin: 0 auto;
		background: #8bb5d4;
		padding: 10px 10px 12px;
		-webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.32);
		-moz-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.32);
		box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.32);
	}

	.newsletter_signup h2 {
		margin: 0 0 5px;
	}

	.newsletter_signup p#SendButton {
		width: 13%;
		float: right;
	}

	.newsletter_signup p {
		width: 43%;
		float: left;
		margin-bottom: 0;
		margin-top: 0;
		margin-right: 0%;
		text-align: left;
	}

	.newsletter_signup label {
		text-align: left;
		font-size: 14px;
		padding-right: 3px;
		position: relative;
	}
		.newsletter_signup label.error {
			display: none !important;
		}

		.newsletter_signup input {
			padding: 8px 5px;
			font-size: 14px;
		}

		.newsletter_signup input.error {
			border-color: Red;
		}

		.newsletter_signup input[type=submit] {
			background: #273c58;
			color: #FFF;
			border: none;
			padding: 9px 15px;
			position: relative;
			top: 0px;
			transition: all 0.25s ease;
		}

		.newsletter_signup input[type=submit]:hover {
			cursor: pointer;
			transition: all 0.25s ease;
			background: #000;
		}


	#countdownTimer {
		background: url(/Content/images/fireworks.png) bottom center no-repeat;
		text-align: center;
		z-index: 1220;
		text-transform: uppercase;
		height: 63px;
		width: 100%;
		position: absolute;
		bottom: 50px;
		font-family: "playfair_displayregular";
	}
#halloweenCountdown {
	display: block;
	float: left;
	position: relative;
	width: 100%;
}
#halloweenCountdown a {
	display: block;
	float: right;
	padding: 0;
	margin: 20px 0 0;
	position: relative;
}
#countdownInner {
	width: 90%;
	margin: 0 auto;
	padding: 0 5%;
	max-width: 600px;
	text-align: center;
}
#countdownSpan {
	float: left;
	width: 50%;
}
#countdownUntilText {
	float: left;
	width: 40%;
	margin: 0 5%;
	font-size: 22px;
}
.dates {
	width: 25%;
	float: left;
}
.cdLabel {
	clear: both;
	width: 100%;
	font-size: 13px;
	font-family: "montserratlight";
	position: relative;
	top: -7px;
}

.days,
.hours,
.minutes,
.seconds {
	display: block;
	width: 100%;
	font-family: "montserratregular";
	font-size: 33px;
}

#oarNavigation {
	background: url(/Content/images/topHeader_Oar.png) top center no-repeat; /*background-size:contain;*/
	height: 311px;
	width: 100%;
	z-index: 990;
	position: absolute;
	bottom: -155px;
	font-family: "montserratregular";
}
#oarNavigation nav {
	position: absolute;
	bottom: 130px;
	display: block;
	width: 100%;
}
#oarNavigation ul {
	padding: 0;
	list-style-type: none;
	margin: 0 auto;
	max-width: 1600px;
	width: 90%;
}
#oarNavigation li {
	float: left;
	margin: 0 2.2%;
}
#oarNavigation a {
	color: #fff;
	text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3); /*background:url(/Content/images/nav_Drop_ShadowPre.png) center no-repeat;*/
	position: relative;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	padding: 5px 25px;
	transition: all 0.3s ease;
	display: block;
	float: left;
}
#oarNavigation a:hover {
	color: #1c3755;
	text-shadow: none;
	transition: all 0.3s ease; /*background:url(/Content/images/nav_Drop_Shadow.png) center no-repeat;*/
}

#managementDistrictLI {
	position: relative;
	z-index: 10000;
}
#managementDistrictLI:hover #managementDistrictUL {
	display: block;
}
#oarNavigation #managementDistrictUL {
	position: absolute;
	margin: 0;
	left: 21px;
	top: 27px;
	display: none;
	padding: 30px 0 0;
	background: url(/Content/images/oarNav_SubBG.png) top center repeat-x;
	width: 200px;
	z-index: 990;
}
#oarNavigation #managementDistrictUL li {
	display: block;
	margin: 0;
	padding: 0;
	clear: both;
	text-align: center;
	width: 100%;
}
#oarNavigation #managementDistrictUL a {
	display: block;
	text-align: center;
	width: 100%;
	padding: 5px 0;
}
#oarNavigation #managementDistrictUL a:before {
	content: none;
}
#oarNavigation #managementDistrictUL a:hover {
	background: #fff;
	color: #1c3755;
	text-decoration: underline;
}

#informationLI {
	position: relative;
	z-index: 10000;
}
#informationLI:hover #informationUL {
	display: block;
}
#oarNavigation #informationUL {
	position: absolute;
	margin: 0;
	left: -34px;
	top: 27px;
	display: none;
	padding: 30px 0 0 0px;
	background: url(/Content/images/oarNav_SubBG.png) top center repeat-x;
	width: 240px;
	z-index: 990;
}
#oarNavigation #informationUL li {
	display: block;
	margin: 0;
	padding: 0;
	clear: both;
	text-align: center;
	width: 100%;
}
#oarNavigation #informationUL a {
	display: block;
	text-align: center;
	width: 100%;
	padding: 5px 0;
}
#oarNavigation #informationUL a:before {
	content: none;
}
#oarNavigation #informationUL a:hover {
	background: #fff;
	color: #1c3755;
	text-decoration: underline;
}

#galleryLI {
	position: relative;
	z-index: 10000;
}
#galleryLI:hover #galleryUL {
	display: block;
}
#oarNavigation #galleryUL {
	position: absolute;
	margin: 0;
	left: -54px;
	top: 27px;
	display: none;
	padding: 30px 0 0 0px;
	background: url(/Content/images/oarNav_SubBG.png) top center repeat-x;
	width: 240px;
	z-index: 990;
}
#oarNavigation #galleryUL li {
	display: block;
	margin: 0;
	padding: 0;
	clear: both;
	text-align: center;
	width: 100%;
}
#oarNavigation #galleryUL a {
	display: block;
	text-align: center;
	width: 100%;
	padding: 5px 0;
}
#oarNavigation #galleryUL a:before {
	content: none;
}
#oarNavigation #galleryUL a:hover {
	background: #fff;
	color: #1c3755;
	text-decoration: underline;
}

.Amphibians .photoItem .ImageName,
.Birds .photoItem .ImageName,
.Fish .photoItem .ImageName,
.Insects .photoItem .ImageName,
.Mammals .photoItem .ImageName,
.Reptiles .photoItem .ImageName,
.Invertebrates .photoItem .ImageName {
	display: block;
}

a.downloadClass {
	background: #fc6843;
	color: #fff;
	padding: 5px;
	text-decoration: none;
	transition: all 0.3s ease;
}
a.downloadClass:hover {
	background: #c14456;
	transition: all 0.3s ease;
}

/* Video Styling */
#videoHeader {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	overflow: hidden;
}
#videoHeader video {
	width:2000px;
}

.seeAllSpan {
	position: absolute;
	right: 0;
	top: 56px;
	font-size: 13px;
	z-index: 1000;
}

/* Effect 13: three circles */
.cl-effect-13 a {
	-webkit-transition: color 0.3s;
	-moz-transition: color 0.3s;
	transition: color 0.3s;
}
.cl-effect-13 a::before {
	position: absolute;
	top: 100%;
	left: 50%;
	color: transparent;
	pointer-events: none;
	content: "•";
	text-shadow: 0 0 transparent;
	font-size: 1.2em;
	-webkit-transition: text-shadow 0.3s, color 0.3s;
	transform: translateX(-50%);
	-moz-transition: text-shadow 0.3s, color 0.3s;
	transition: text-shadow 0.3s, color 0.3s;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
}

.cl-effect-13 a:hover::before,
.cl-effect-13 a:focus::before {
	color: #1c3755;
	text-shadow: 10px 0 #1c3755, -10px 0 #1c3755;
}
.cl-effect-13 a:hover,
.cl-effect-13 a:focus {
	color: #ba7700;
	text-shadow: 0px 2px 4px rgba(150, 150, 150, 0.68);
}

#Home #mainContentContainer {
	height: 3403px;
	background: url(/Content/images/mainBackgroundImage.jpg) top center no-repeat;
	max-width: 2000px;
	margin-inline: auto;
}
#mainContentContainer {
	width: 100%;
	padding-top: 80px;
	position: relative;
	height: auto;
}
#Home #mainHeader1 {
	display: none;
}
#Home #mainContentSpan {
	display: none;
}
.mainWrap {
	width: 95%;
	padding: 0 2.5%;
	max-width: 1500px;
	margin: 0 auto;
	position: relative;
	z-index: 9200;
}
#eventSection {
	height: 610px;
}
.eventBlock {
	width: 30%;
	margin: 0 1.5%;
	float: left;
}

#welcomeBlock {
}
#welcomeBlock h2 {
	color: #d0a073;
	font-family: "playfair_displaybold";
	font-weight: normal;
	font-size: 52px;
	margin: 0;
}
#welcomeBlock p {
	margin: 0 0 15px;
	color: #1c3656;
	font-family: "playfair_displayregular";
	font-size: 15px;
}
#welcomeBlock .headerHR {
	border: 1px solid #d0a073;
	top: 40px;
}

.lightText {
	font-family: "open_sanslight";
	font-size: 24px;
}
.boldText {
	font-family: "open_sansextrabold";
	font-size: 24px;
}

#eventSection h2 {
	float: left;
	padding-right: 6%;
}
#eventSection .headerHR {
	position: relative;
}
#eventBlock {
	text-align: center;
	color: #273c58;
	font-family: "playfair_displayregular";
	font-size: 15px;
	margin-top: 12px;
	position: relative;
}
#eventBlock .seeAllSpan a {
	color: #8bb5d4;
	text-decoration: underline;
	font-family: "open_sansregular";
	transition: all 0.3s ease;
}
#eventBlock .seeAllSpan a:hover {
	text-decoration: none;
	color: #000;
	transition: all 0.3s ease;
}
#eventBlock .headerHR {
	border: 1px solid #8bb5d4;
	top: 30px;
}
#eventBlock h2 {
	color: #8bb5d4;
	font-family: "playfair_displaybold";
	font-weight: normal;
	font-size: 40px;
	margin: 0;
	text-align: left;
}
.eventThirdLeft {
	float: left;
	width: 33%;
	text-align: center;
}
.eventThirdRight {
	float: left;
	width: 60%;
	text-align: center;
}

#alertsBlock {
	text-align: center;
	color: #273c58;
	font-family: "playfair_displayregular";
	font-size: 24px;
	margin-top: 6px;
}
#alertsBlock h2 {
	color: #fc6843;
	font-family: "playfair_displaybold";
	font-weight: normal;
	font-size: 40px;
	margin: 0;
	text-align: left;
}
#alertsBlock .headerHR {
	border: 1px solid #fc6843;
	top: 30px;
}
#alertsBlock .seeAllSpan a {
	color: #fc6843;
	text-decoration: none;
	font-family: "open_sansregular";
	transition: all 0.3s ease;
}
#alertsBlock .seeAllSpan a:hover {
	text-decoration: underline;
	color: #000;
	transition: all 0.3s ease;
}
#alertsBlock img {
	max-width: 100%;
	height: auto;
}
.eventThird {
	float: left;
	width: 33.33%;
}
.eventTop {
	font-family: "open_sanssemibold";
	display: block;
	font-size: 24px;
}
.boldText {
	color: #273c58;
}
.lightText {
	color: #273c58;
}

#lowerEventHR {
	border: 1px solid #8bb5d4;
	margin-bottom: 30px;
}
#lowerAlertHR {
	border: 1px solid #fc6843;
	margin-bottom: 18px;
}

#angleBoxes {
	display: block;
	width: 100%;
	height: 323px;
	position: relative;
}
#angleBoxes img {
	max-width: 2000px;
	left: 0;
	top: 0;
	position: absolute;
	width: 100%;
}
.angleDiv {
	width: 19%;
	margin: 0 0 0 11%;
	float: left;
	position: relative;
	z-index: 100;
	text-decoration: none;
	text-align: center;
	color: #273c58;
	font-family: "playfair_displayregular";
	font-size: 16px;
	line-height: 24px;
}
.angleDiv p {
	display: block;
	clear: both;
	margin-top: 10%;
	float: left;
	width: 100%;
}
.lightText_Angle {
	color: #273c58;
	font-family: "open_sanslight";
	text-transform: uppercase;
	display: block;
	text-align: center;
	font-size: 29px;
	line-height: 29px;
	margin-top: 10%;
}
.heavyText_Angle {
	color: #fc6844;
	font-family: "open_sansextrabold";
	text-transform: uppercase;
	display: block;
	text-align: center;
	font-size: 32px;
	line-height: 32px;
}

#contentWrap {
	width: 90%;
	margin: 0 auto;
	max-width: 1600px;
	clear: both;
	position: relative;
	z-index: 2000;
}
#Home #contentWrap {
	padding-top: 150px;
	width: 100%;
	max-width: 1000px;
}
#alertBlock {
	width: 90%;
	max-width: 700px;
	padding: 0 5%;
	margin: 0 auto;
}
#alertBlock h2 {
	text-align: center;
	color: #e97d61;
	font-size: 58px;
	font-weight: normal;
	font-family: "playfair_displayblack";
	text-transform: uppercase;
}
#alertLeft {
	width: 46%;
	margin: 0 2%;
	float: left;
	text-align: center;
}
#alertRight {
	width: 46%;
	margin: 0 2%;
	float: left;
	text-align: center;
}
#alertRight a {
	text-decoration: none;
}
#alertRight a img {
	transition: all 0.3s ease;
}
#alertRight a img:hover {
	transition: all 0.3s ease;
	opacity: 0.6;
}

#event_TempText {
	float: left;
	width: 100%;
	clear: both;
	text-align: center;
	color: #1c3755;
	margin-top: 5px;
	padding: 2px 0;
	font-family: "montserratregular";
	background: url(/Content/images/bgFade.png) center no-repeat;
	/*background-color: rgba(255, 255, 255, 0.5);*/
}

#visNavContainer {
	width: 100%;
	position: relative;
}
#backToTopBuoy {
	position: absolute;
	left: 10px;
	z-index: 900;
	-webkit-animation: floatingAnim 5s infinite;
	animation: floatingAnim 5s infinite;
}
#visualNav {
	width: 100%;
	max-width: 1000px;
	margin: 190px auto 0 auto;
}
.visNavCircle {
	width: 20%;
	position: relative;
	float: left;
	text-align: center;
	text-decoration: none;
	color: #fff;
	font-family: "montserratbold";
	font-size: 12.5px;
	text-transform: uppercase;
	transition: all 0.3s ease;
}
.visNavCircle:hover {
	color: #91b1cd;
	transition: all 0.3s ease;
	text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.6);
}
.visNavCircleIdle {
	opacity: 1;
	transition: all 0.3s ease;
}
.visNavCircle:hover .visNavCircleHover {
	opacity: 1;
	transition: all 0.3s ease;
}
.visNavCircle:hover .visNavCircleIdle {
	opacity: 0;
	transition: all 0.3s ease;
}
.visNavCircleHover {
	position: absolute;
	top: 0;
	left: 8px;
	opacity: 0;
	transition: all 0.3s ease;
}

.alertsThinText {
	color: #e97d61;
	font-family: "open_sanslight";
	font-size: 22px;
	text-transform: uppercase;
}
.alertsBoldText {
	color: #e97d61;
	font-family: "open_sansextrabold";
	font-size: 22px;
	text-transform: uppercase;
}
.alertText {
	color: #243c3d;
	font-family: "open_sanslight_italic";
	display: block;
	clear: both;
	padding-top: 20px;
}

#Home #mainContentWrap {
	max-width: 950px;
	margin: 70px 25px;
	float: left;
	background: url(/Content/images/background_Repeat.png) repeat;
	min-height: 800px;
	position: relative;
	top: 50px;
}
#mainContentWrap {
	display: block;
	position: relative;
	z-index: 1000;
	clear: both;
	width: 100%;
	padding: 0;
}
#Home #mainContentWrap h1 {
	color: #c14456;
	margin: 10px 0 0 0;
	font-weight: normal;
	font-size: 58px;
	font-family: "playfair_displayblack";
	text-transform: uppercase;
	text-align: center;
}
#MemberLoginBodyID #mainContentWrap h1 {
	text-align: center;
}
#mainContentWrap h1 {
	color: #d0a073;
	margin: 10px 0 0 0;
	font-weight: normal;
	font-size: 36px;
	font-family: "playfair_displayregular";
	display: block;
}
#Home #mainContent {
	font-size: 15px;
	width: 94%;
	padding: 3%;
	background: url(/Content/images/background_Repeat.png) repeat;
	min-height: 610px;
}
#mainContent {
	margin: 20px 0 45px;
	float: left;
	width: 100%;
	color: #1c3656;
	font-size: 16px;
	font-family: "playfair_displayregular";
}

#leftMainContent {
	width: 48%;
	padding-right: 2%;
	float: left;
}
#rightMainContent {
	width: 48%;
	padding-left: 2%;
	float: left;
}
.mp_Paragraph {
	display: block;
	width: 100%;
	float: left;
}
#bottomMainContent {
	width: 100%;
	clear: both;
	display: block;
	float: left;
}

#angleBoxImg {
	display: block;
}
#tealAngleWrap {
	width: 100%;
	text-align: center;
	margin: 0 auto;
	max-width: 1150px;
	position: relative;
	clear: both;
}
#subFema {
	font-family: "open_sanssemibold_italic";
}
#tealAngleWrap p {
	margin: 5px 0;
}
#tealAngleImg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
#tealAngleImg img {
	max-width: 100%;
}
#tealAngles {
	width: 100%;
	display: block;
	color: #fff;
	font-family: "open_sanslight";
	font-size: 14px;
}
#leftTealAngle {
	width: 33%;
	margin: 1% 2% 0 11%;
	float: left;
	position: relative;
	z-index: 100;
}
#rightTealAngle {
	width: 35%;
	margin: 1% 2% 0 8%;
	float: left;
	position: relative;
	z-index: 100;
}
#viewPanelText {
	font-family: "open_sansbold";
	display: block;
	padding: 8px 0 0;
	text-transform: uppercase;
}
.tealAngle_LightText {
	font-size: 22px;
	font-family: "open_sanslight";
	text-transform: uppercase;
}
.tealAngle_BoldText {
	font-size: 22px;
	font-family: "open_sansextrabold";
	text-transform: uppercase;
}
.darkAngleBG {
	background: url(/Content/images/fade_Accent.png) top center no-repeat;
	height: 32px;
	line-height: 32px;
	width: 100%;
}

#Home #footer {
	margin: 50px 0;
}
#footer {
	margin: 150px 0 40px;
	display: block;
	float: left;
	width: 100%;
}
#footer ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
#Home #footer a {
	color: #1c3656;
}
#footer a {
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 14px;
	font-family: "open_sanslight";
}
#footer a:hover {
	text-decoration: underline;
	color: #e97d61;
}
#footerWrap {
	width: 94%;
	padding: 0 3%;
	max-width: 1000px;
	margin: 0 auto;
}
#footerLogo {
	float: left;
}
#footerFirstColumn {
	float: left;
	margin: 0 2%;
}
#footerSecondColumn {
	float: left;
	margin: 0 2%;
}
#footerThirdColumn {
	float: left;
	margin: 0 2%;
}

/* Member Log-in Styling */
#MemberLoginBodyID #mainContentSpan {
	text-align: center;
}
#MemberLoginBodyID #mainContentSpan a {
	color: #1c3755;
	text-decoration: none;
}
#MemberLoginBodyID #mainContentSpan a:hover {
	text-decoration: underline;
}
#MemberLoginBodyID #mainContentSpan input {
	background: #1c3755;
	font-size: 16px;
	padding: 7px;
	border: none;
	color: #fff;
	transition: all 0.3s ease;
	text-align: center;
	width: 60%;
	max-width: 450px;
	margin: 0 auto;
	min-width: 290px;
}
#MemberLoginBodyID #mainContentSpan input:hover {
	background: #5395a3;
	transition: all 0.3s ease;
}
#MemberLoginBodyID #mainContentSpan input:focus {
	background: #5395a3;
	transition: all 0.3s ease;
}
#MemberLoginBodyID #mainContentSpan button {
	border: none;
	background: #c14456;
	color: #fff;
	padding: 7px;
	transition: all 0.3s ease;
	font-size: 16px;
}
#MemberLoginBodyID #mainContentSpan button:hover {
	transition: all 0.3s ease;
	cursor: pointer;
	background: #e17d65;
}

/* News Styling */
.newsBlock {
	display: block;
	float: left;
	width: 48%;
	margin: 2% 1%;
	height: 200px;
}
.newsContent {
	float: right;
	width: 100%;
}
.newsHeadline {
	font-weight: bold;
}
.newsBody {
	float: left;
}
.newsReadMore a {
	border: none;
	display: block;
	float: left;
	clear: both;
	background: #c14456;
	text-decoration: none;
	color: #fff;
	padding: 7px;
	transition: all 0.3s ease;
	font-size: 16px;
	text-align: center;
	width: 150px;
	float: left;
	margin: 5px 0;
}
.newsReadMore a:hover {
	transition: all 0.3s ease;
	cursor: pointer;
	background: #e17d65;
}
.newsReadMoreEntry {
	border: none;
	display: block;
	float: left;
	clear: both;
	background: #c14456;
	text-decoration: none;
	color: #fff;
	padding: 7px;
	transition: all 0.3s ease;
	font-size: 16px;
	text-align: center;
	width: 150px;
	float: left;
	margin: 5px 0;
}
.newsReadMoreEntry:hover {
	transition: all 0.3s ease;
	cursor: pointer;
	background: #e17d65;
}

/* The Board Styling */
#theBoardUL {
	list-style-type: none;
}
.theBoardULI {
	list-style-type: none;
	display: block;
	width: 48%;
	margin: 1%;
	float: left;
	min-height: 350px;
}
.theBoardIMG {
	float: left;
	display: block;
	width: 25%;
}
.theBoardRight {
	float: left;
	display: block;
	width: 70%;
}
.theBoardName {
	display: block;
}
.theBoardPosition {
	display: block;
	font-size: 13px;
	font-style: italic;
}
.theBoardBody {
	display: block;
}

.membersRight {
	width: 100%;
}
.membersRight p {
	margin-top: 0;
}
.membersRight img {
	max-height: 100%;
}
.membersTitleName {
	display: block;
	font-weight: bold;
	font-size: 18px;
	width: 100%;
}

/* Contact Styling */
#ContactStreamBodyID #mainContentSpan input {
	margin: 0 auto;
	text-align: center;
	display: block;
	background: #1c3755;
	font-size: 16px;
	padding: 7px;
	border: none;
	color: #fff;
	transition: all 0.3s ease;
	width: 60%;
	max-width: 450px;
	margin: 0 auto;
	min-width: 290px;
}
#ContactStreamBodyID #mainContentSpan input:hover {
	background: #5395a3;
	transition: all 0.3s ease;
}
#ContactStreamBodyID #mainContentSpan input:focus {
	background: #5395a3;
	transition: all 0.3s ease;
}
#ContactStreamBodyID #mainContentSpan textarea {
	display: block;
	text-align: center;
	margin: 0 auto;
	font-family: inherit !important;
	background: #1c3755;
	font-size: 16px;
	padding: 7px;
	border: none;
	color: #fff;
	transition: all 0.3s ease;
	width: 60%;
	max-width: 450px;
	margin: 0 auto;
	min-width: 290px;
}
#ContactStreamBodyID #mainContentSpan textarea:hover {
	background: #5395a3;
	transition: all 0.3s ease;
}
#ContactStreamBodyID #mainContentSpan textarea:focus {
	background: #5395a3;
	transition: all 0.3s ease;
}
#ContactStreamBodyID #SendButton {
	text-align: center;
}
#ContactStreamBodyID #mainContentSpan input[type="submit"] {
	border: none;
	background: #c14456;
	color: #fff;
	padding: 7px;
	transition: all 0.3s ease;
	font-size: 16px;
	text-align: center;
	width: 150px;
	margin: 0 auto;
	float: none;
}
#ContactStreamBodyID #mainContentSpan input[type="submit"]:hover {
	transition: all 0.3s ease;
	cursor: pointer;
	background: #e17d65;
}
#contactContainer {
	width: 100%;
}
#contactLeft {
	float: left;
	width: 50%;
}
#contactLeft label {
	display: block;
	text-align: center;
}
#contactRight {
	float: left;
	width: 50%;
}
#emoji-slider {
	margin-left: auto;
	margin-right: auto;
}
.emoji-slider-question {
	text-align: center;
}

/* Image Gallery Styling */
.photoItem .ImageName {
	display: none;
}
.photoItem .videoImage {
	max-width: 90%;
	margin: 0 auto;
}
#jquery-overlay {
	z-index: 9999 !important;
}
.videoImage {
	transition: all 0.3s ease;
}
.videoImage:hover {
	opacity: 0.8;
	transition: all 0.3s ease;
}
#PaginationDisplay .selected {
	padding: 6px;
}
#PaginationDisplay a {
	padding: 6px;
}

#noScriptWarning {
	display: none;
}

/* KidsGallery Styling */
#kidsGalleryContainer {
	width: 100%;
	position: relative;
	float: left;
}
#kidsGalleryContainer a.kidGalleryBlock {
	display: block;
	overflow: hidden;
	height: 158px;
	float: left;
	margin: 0.4%;
	line-height: 158px;
	width: 49%;
	text-align: center;
	border: 1px solid #dbb694;
	color: #b6c9d3;
	text-decoration: none;
	font-size: 30px;
	position: relative;
}
#kidsGalleryContainer a.kidGalleryBlock:hover {
	color: #1c3655;
}
#kidsGalleryContainer #invertebrateBlock {
	width: 99%;
	margin: 0.5% 0.4%;
}
#kidsGalleryContainer img {
	position: absolute;
}
.leftKidsIcon {
	left: 20%;
}
.rightKidsIcon {
	right: 20%;
}

#kidsGalleryContainer a.kidGalleryBlock:hover .waveHover {
	opacity: 1;
	transition: all 0.4s ease;
}
.waveHover {
	-webkit-animation: waveMotion 10s infinite;
	animation: waveMotion 10s infinite;
	position: absolute;
	margin-top: -350px;
	left: 0;
	margin-left: -200px; /*width:100%;*/
	height: auto;
	height: auto;
	z-index: 1;
	opacity: 0;
	transition: all 0.2s ease;
}

.topKidBlock {
	position: relative;
	z-index: 100;
	display: block;
}

#backSpeciesBtn {
	background: url(/Content/images/backArrow.png) center left no-repeat #379db5;
	color: #fff;
	transition: all 0.3s ease;
	padding: 8px 18px 8px 50px;
	text-decoration: none;
}
#backSpeciesBtn:hover {
	background: url(/Content/images/backArrow.png) center left no-repeat #1c3656;
	transition: all 0.3s ease;
}
#leftTopRope {
	position: absolute;
	top: 1%;
	left: 0.4%;
	width: 321px;
	height: 203px;
}
#botRightRope {
	position: absolute;
	bottom: 1.2%;
	right: 0.6%;
	width: 391px;
	height: 245px;
}

/* Parallax
*****************************************************************/
#parallaxContainer {
	position: absolute;
	bottom: 0;
	width: 100%;
}
#content {
	z-index: 4;
	position: relative;
	max-width: 100%;
	padding: 0;
	margin: 0 auto;
	line-height: 1.7;
}
#content article {
	width: 100%;
}
#manned-flight,
#frameless-parachute,
#english-channel,
#about {
	padding-top: 105px;
	display: none;
}
#manned-flight {
	position: absolute;
	top: 0px;
	display: none;
}
#frameless-parachute {
	position: absolute;
	top: 1090px;
	display: none;
}
#english-channel {
	position: absolute;
	top: 2180px;
	display: none;
}
#content h1 {
	margin: 0 0 25px 0;
	font-size: 60px;
	font-family: Georgia, serif;
	font-weight: normal;
	line-height: 65px;
}
#about {
	position: absolute;
	top: 3270px;
	display: none;
}
#parallax-bg3 {
	z-index: 3;
	position: relative;
	left: 0; /* align left edge with center of viewport */
	top: 0;
	width: 100%;
	margin-left: 0; /* move left by half element's width */
}
#bg3-1 {
	position: absolute;
	top: -431px;
	left: 0;
	max-width: 100%;
}
#bg3-2 {
	position: absolute;
	top: 100px;
	left: 0;
	max-width: 100%;
}
#bg3-3 {
	position: absolute;
	top: 1628px;
	left: 0;
	display: none;
}
#bg3-4 {
	position: absolute;
	top: 2700px;
	left: 0;
	display: none;
}
#parallax-bg2 {
	z-index: 2;
	position: relative;
	left: 0; /* align left edge with center of viewport */
	top: 0;
	width: 100%;
	margin-left: -600px; /* move left by half element's width */
}
#bg2-1 {
	position: absolute;
	top: 162px;
	left: 0;
}
#bg2-2 {
	position: absolute;
	top: 300px;
	left: 0;
}
#bg2-3 {
	position: absolute;
	top: 543px;
	left: 0;
}
#bg2-4 {
	position: absolute;
	top: 1180px;
	left: 0;
}
#bg2-5 {
	position: absolute;
	top: 900px;
	left: 0;
	display: none;
}
#parallax-bg1 {
	z-index: 1;
	position: relative;
	left: 0; /* align left edge with center of viewport */
	top: 0;
	width: 100%;
	margin-left: 0; /* move left by half element's width */
}
#bg1-1 {
	position: absolute;
	top: -950px;
	right: 0;
	width: 100%;
	max-width: 1831px;
}
#bg1-2 {
	position: absolute;
	top: 440px;
	left: 0;
	display: none;
}
#bg1-3 {
	position: absolute;
	top: 900px;
	left: 0;
	display: none;
}
#bg1-4 {
	position: absolute;
	top: 1020px;
	left: 0;
	display: none;
}

@-webkit-keyframes floatingAnim {
	0% {
		margin-top: 0;
	}
	25% {
		margin-top: -5px;
		-ms-transform: rotate(7deg);
		-webkit-transform: rotate(7deg);
		transform: rotate(7deg);
	}
	50% {
		margin-top: 0px;
	}
	75% {
		margin-top: -5px;
		-ms-transform: rotate(-7deg);
		-webkit-transform: rotate(-7deg);
		transform: rotate(-7deg);
	}
	100% {
		margin-top: 0px;
	}
}

@keyframes floatingAnim {
	0% {
		margin-top: 0;
	}
	25% {
		margin-top: -5px;
		-ms-transform: rotate(7deg);
		-webkit-transform: rotate(7deg);
		transform: rotate(7deg);
	}
	50% {
		margin-top: 0px;
	}
	75% {
		margin-top: -5px;
		-ms-transform: rotate(-7deg);
		-webkit-transform: rotate(-7deg);
		transform: rotate(-7deg);
	}
	100% {
		margin-top: 0px;
	}
}

@-webkit-keyframes waveMotion {
	0% {
		margin-top: -350px;
		margin-left: -200px;
	}
	25% {
		margin-top: -355px;
		margin-left: -100px;
	}
	50% {
		margin-top: -350px;
		margin-left: 0px;
	}
	75% {
		margin-top: -355px;
		margin-left: -100px;
	}
	100% {
		margin-top: -350px;
		margin-left: -200px;
	}
}

@keyframes waveMotion {
	0% {
		margin-top: -350px;
		margin-left: -200px;
	}
	25% {
		margin-top: -355px;
		margin-left: -100px;
	}
	50% {
		margin-top: -350px;
		margin-left: 0px;
	}
	75% {
		margin-top: -355px;
		margin-left: -100px;
	}
	100% {
		margin-top: -350px;
		margin-left: -200px;
	}
}

table {
	border-collapse: collapse;
}
.clear {
	clear: both;
}
.error {
	color: Red;
}

div#title {
	display: block;
	float: left;
	text-align: left;
}
#logindisplay {
	font-size: 1.1em;
	display: block;
	text-align: right;
	margin: 10px;
	color: White;
}
#logindisplay a:link {
	color: white;
	text-decoration: underline;
}
#logindisplay a:visited {
	color: white;
	text-decoration: underline;
}
#logindisplay a:hover {
	color: white;
	text-decoration: none;
}
.hidethis {
	visibility: hidden;
}
.image {
	text-align: center;
}

.field-validation-error {
	color: #ff0000;
}
.field-validation-valid {
	display: none;
}
.input-validation-error {
	border: 1px solid #ff0000;
	background-color: #ffeeee;
}
.validation-summary-errors {
	font-weight: bold;
	color: #ff0000;
}
.validation-summary-valid {
	display: none;
}

.display-label,
.editor-label {
	margin: 1em 0 0 0;
}
.display-field,
.editor-field {
	margin: 0.5em 0 0 0;
}
.text-box {
	width: 30em;
}
.text-box.multi-line {
	height: 6.5em;
}
.tri-state {
	width: 6em;
}

.field-validation-error {
	color: #f00;
}
.field-validation-valid {
	display: none;
}
.input-validation-error {
	border: 1px solid #f00;
	background-color: #ffeeee;
}
.validation-summary-errors {
	font-weight: bold;
	color: #f00;
}
.validation-summary-valid {
	display: none;
}

#DeleteSelectedFiles {
	background: none;
	border: 0;
	color: #2b94ff;
	cursor: pointer;
}
ul.FileManLinks li {
	display: inline;
}
ul.FileManLinks li a {
	text-decoration: underline;
}
p.FileManCwd {
	color: Gray;
	font-size: 1.2em;
	text-align: center;
}
ul.FileManOps li {
	display: inline;
}
ul.FileManip {
	margin-left: 150px;
}
ul.FileManip li {
	display: inline;
	padding: 0 3px;
}
#HelpOutput {
	border: 1px solid grey;
	margin-bottom: 20px;
	color: #2b94ff;
}
#FileManipSelectAllFiles {
	margin-left: 100px;
}

#PaginationDisplay {
}
#PaginationDisplay a {
}
#PaginationDisplay .selected {
}

.photoItem {
	float: left;
	text-align: center;
	width: 12.5%;
	height: 220px;
}
.photoItem .lightbox {
	max-height: 150px;
	overflow: hidden;
	display: block;
}
.ImageName {
	text-align: center;
}
.categoryItem {
	float: left;
	text-align: center;
	width: 180px;
	height: 220px;
}
.subCategoryName {
	text-align: center;
}

#ModalContactFormSlot {
	float: right;
	width: 250px;
	display: inline-block;
}
#ModalContactMask {
	background-color: #5c87b2;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 9000;
	display: none;
}
#ContactFormModal fieldset {
	padding: 10px 25px;
	border: none;
	margin-bottom: 0px;
	color: #000;
}
#ContactFormModal fieldset input {
	margin-bottom: 5px;
}
#ContactFormModal #boxes fieldset {
	background-color: #e8eef4;
	position: fixed;
	left: 0;
	top: 0;
	width: 500px;
	display: none;
	z-index: 9999;
	padding: 20px;
	color: #000;
}
#ContactFormModal #boxes fieldset legend {
	padding-top: 53px;
	text-align: center;
	border: none;
	width: 90%;
	display: block;
}
#ContactFormModal #boxes fieldset label {
	display: block;
}
#ContactFormModal #boxes fieldset label.error {
	display: inline;
	color: #f00;
}
#ContactFormModal #boxes fieldset input.error {
	border: 1px dotted #f00;
}
#ContactFormModal .CloseFieldset {
	margin: 10px 0 0 0;
	border-color: #ddd;
	color: #ddd;
	background-color: #222;
}
#ContactFormModal .CloseFieldset:hover {
	border-color: #eee;
	color: #eee;
	background-color: #444;
	font-weight: 900;
}
#ContactFormModal .formbg_top {
	display: block;
	width: 302px;
	height: 41px;
}
#ContactFormModal .formbg_middle {
	display: block;
	width: 302px;
	height: auto;
}
#ContactFormModal .formbg_bottom {
	display: block;
	width: 302px;
	height: 96px;
}
#ContactFormModal .section {
	margin-bottom: 26px;
	padding-bottom: 10px;
	padding-top: 10px;
	text-align: left;
	float: left;
	margin-right: 42px;
}
#ContactFormModal #captcha {
	float: left;
}
#ContactFormModal legend {
	border: none;
	font-weight: bold;
	text-transform: uppercase;
}

.YoutubeThumb {
	width: 150px;
	height: 150px;
}

div.comment {
	background: #eee;
	border: 1px solid gray;
	padding: 10px 10px 0 10px;
	margin-bottom: 20px;
}
span.commentDate {
	font-weight: normal;
}
span.commentDate:after {
	font-weight: normal;
	content: " by ";
}
span.commentPoster {
	font-weight: bold;
}
p.commentContent {
}
div.commentError {
	color: red;
}

.homepageIframe {
	width: 100%;
	padding-bottom: 20px;
}

.homepageIframe iframe {
	width: 100%;
	height: 490px;
}

.homepageIframe p {
	font-size: 16px;
}

.homepageIframe hr {
	background: #ccc;
	height: 1px;
	-webkit-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.75);
	box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.75);
	margin-bottom: 20px;
	float: left;
	width: 100%;
}

@media screen and (max-width: 780px) {
	.homepageIframe iframe {
		max-height: 250px;
	}
}

@media screen and (max-width: 480px) {
	.homepageIframe iframe {
		max-height: 200px;
	}
}

/* Weather Styling */
#weather {
	width: 100%;
	border-radius: 5px;
	height: 200px;
	float: left;
	overflow: hidden;
	margin: 25px auto 0 auto;
	text-align: center;
	text-transform: uppercase;
	clear: both;
	background: #20302e;
	color: #fff;
}
#weather h2 {
	margin: 0 0 8px;
	color: #fff;
	font-size: 60px;
	font-weight: 300;
	text-align: center;
	text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15);
}
#weather ul {
	margin: 0;
	padding: 0;
}
#weather li {
	background: #e97d61;
	padding: 20px 0;
	width: 47%;
	font-weight: bold;
	font-size: 23px;
	text-align: center;
	display: block;
	border-radius: 5px;
	float: left;
	margin: 0 1.5%;
}
#weather p {
	width: 25%;
	float: left;
}
#weather .currently {
}

@media screen and (max-width: 1800px) {
	.angleDiv p {
		margin-top: 5px;
		font-size: 15px;
		line-height: 20px;
	}
}

@media screen and (max-width: 1750px) {
	#oarNavigation ul {
		width: auto;
	}
	#oarNavigation li {
		margin: 0;
	}
	.angleDiv p {
		margin-top: 5px;
		font-size: 14px;
		line-height: 19px;
	}
}

@media screen and (max-width: 1550px) {
	#oarNavigation ul {
		width: auto;
	}
	#oarNavigation li {
		margin: 0;
	}
	.angleDiv p {
		margin-top: 5px;
		font-size: 13px;
		line-height: 17px;
	}
}

@media screen and (max-width: 1400px) {
	#angleBoxImg {
		display: none;
	}
	.angleDiv {
		width: 100%;
		float: none;
		display: block;
		height: auto;
		padding: 30px 0;
		margin: 5px auto;
		background: url(/Content/images/angleBGSmaller.png) repeat;
		max-width: 500px;
		clear: both;
	}
	.lightText_Angle {
		margin-top: 0;
	}
	.angleDiv p {
		display: none;
	}
}

@media screen and (max-width: 1330px) {
	#kidsGalleryContainer a.kidGalleryBlock {
		width: 99%;
	}
	#leftTopRope {
		top: 0.5%;
	}
	#botRightRope {
		right: 0.5%;
		bottom: 0.5%;
	}
}

@media screen and (max-width: 1200px) {
	.newsBlock {
		width: 98%;
	}

	#parallaxContainer {
		display: none;
	}
	.photoItem {
		width: 20%;
	}
	#tealAngleWrap {
		display: none;
	}
	.mainWrap {
		min-height: 1070px;
	}

	#mainContentContainer #angleBoxes {
		height: auto;
		margin-top: 10px;
	}
	#Home #mainContentContainer {
		background: url(/Content/images/mainBackgroundImage2.jpg) top center
			no-repeat;
		width: 90%;
		padding: 80px 5% 0;
		height: 3530px;
	}
	#Home #mainContentWrap {
	}
	#Home #mainHeader {
		background: url(/Content/images/subBanner_LearnAbout.jpg) top center
			no-repeat;
		height: 388px;
	}
	#videoHeader {
		display: none;
	}
	#eventSection {
		height: auto;
	}
	#backToTopBuoy {
		display: none;
	}
	#visualNav {
		margin: 15px 0 0;
	}

	#welcomeBlock {
		width: 80%;
		margin: 0 auto;
		max-width: 500px;
		float: none;
	}
	#eventBlock {
		width: 80%;
		margin: 0 auto;
		max-width: 500px;
		float: none;
	}
	#alertsBlock {
		width: 80%;
		margin: 0 auto;
		max-width: 500px;
		float: none;
	}

	#angleBoxes {
		float: left;
		clear: both;
		margin: 150px 0 180px 0;
	}
	#visNavContainer {
		float: left;
	}

	#oarNavigation ul {
		width: auto;
	}
	#oarNavigation li {
		margin: 0;
	}
	#oarNavigation a {
		padding: 5px 13px;
	}
	.lightText_Angle {
		font-size: 23px;
	}

	#leftTealAngle {
		display: none;
	}
	#rightTealAngle {
		display: none;
	}
}

@media screen and (max-width: 1120px) {
	#Home #mainContentContainer {
		padding: 80px 0 0;
		width: 100%;
	}
	#Home #mainContentWrap {
		max-width: 100%;
		margin: 70px 0;
	}

	#footerFirstColumn {
		margin: 0 1%;
	}
	#footerSecondColumn {
		margin: 0 1%;
	}
	#footerThirdColumn {
		margin: 0 1%;
	}
}

@media screen and (max-width: 450px) {
	body#Home #mainContentWrap h1 {
		font-size: 48px;
	}
}

@media screen and (max-width: 1000px) {
	#event_TempText {
		background: none;
		font-size: 20px;
	}
	#event_TempText sup {
		font-size: 11px;
	}

	.newsImage {
		display: none;
	}
	.newsContent {
		width: 100%;
	}
	.cdLabel {
		font-size: 11px;
	}

	#footerLogo {
		width: 100%;
		text-align: center;
	}
	#footerLogo img {
		max-width: 100%;
		height: auto;
	}
	#footerFirstColumn {
		clear: both;
		width: 30%;
		margin: 50px 1.5%;
		text-align: center;
	}
	#footerSecondColumn {
		width: 30%;
		margin: 50px 1.5%;
		text-align: center;
	}
	#footerThirdColumn {
		width: 30%;
		margin: 50px 1.5%;
		text-align: center;
	}

	#visNavContainer {
		display: none;
	}
	#countdownTimer {
		background: none;
	}
	#mainHeader #headerLogo {
		width: 70%;
		margin: 0 15%;
	}
	#mainHeader #headerLogo img {
		max-width: 100%;
	}
	.slicknav_menu {
		display: block !important;
	}
	#menucontainer {
		overflow: hidden;
		opacity: 0;
		display: none;
	}
	#oarNavigation {
		background: url(/Content/images/topHeader_Oar.png) top center no-repeat;
		background-size: contain;
		top: 335px;
	}

	.photoItem {
		width: 25%;
	}

	#Home #mainContentContainer {
		background: url(/Content/images/responsiveBG_1000px.jpg) bottom center
			no-repeat;
	}

	#contactLeft {
		width: 100%;
	}
	#contactRight {
		width: 100%;
	}
	#ContactStreamBodyID iframe {
		max-width: 100%;
		margin: 0 auto;
		display: block;
	}
}

@media screen and (max-width: 820px) {
	#event_TempText {
		background: none;
		font-size: 20px;
	}

	#oarNavigation {
		background: url(/Content/images/topHeader_Oar.png) top center no-repeat;
		background-size: auto;
		bottom: -155px;
		top: auto;
	}
	#countdownTimer {
		bottom: -25px;
	}

	#botRightRope {
		display: none;
	}
	.leftKidsIcon {
		opacity: 0.2;
	}
	.rightKidsIcon {
		opacity: 0.2;
	}
	#kidsGalleryContainer a.kidGalleryBlock span {
		color: #1c3656;
	}
}

@media screen and (max-width: 640px) {
	#event_TempText {
		margin-bottom: 30px;
	}
	#countdownUntilText {
		height: 40px;
	}

	#leftTopRope {
		display: none;
	}
	.newsBlock {
		height: auto;
		margin: 7% 1%;
	}
	#alertLeft {
		width: 96%;
	}
	#alertRight {
		width: 96%;
	}
	#alertCenter {
		width: 800px;
		margin: auto 0;
	}

	#weather {
		height: 250px;
	}
	#weather li {
		display: block;
		width: 80%;
		margin: 1% 10%;
	}

	.eventThird {
		display: block;
		width: 100%;
		text-align: left;
	}
	.eventThird .eventThirdRight {
		text-align: left;
	}
	#alertsBlock {
		color: #fff;
		text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.51);
	}

	.photoItem {
		width: 33.33%;
	}
	#countdownTimer {
		bottom: -25px;
	}
	#countdownSpan {
		display: block;
		width: 100%;
		text-align: center;
	}
	#countdownUntilText {
		display: block;
		width: 100%;
		text-align: center;
		margin: 0;
		font-size: 15.5px;
	}
	#headerLogo {
		padding-top: 95px;
	}
}

@media screen and (max-width: 320px) {
	.photoItem {
		width: 50%;
	}
}

/* Slick Nav Menu */
.slicknav_btn {
	position: relative;
	display: block;
	vertical-align: middle;
	float: right; /*padding:0.438em 0.625em 0.438em 0.625em;*/
	line-height: 1.125em;
	cursor: pointer;
}
.slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar {
	margin-top: 0.188em;
}
.slicknav_menu {
	*zoom: 1;
}
.slicknav_menu .slicknav_menutxt {
	display: block;
	line-height: 1.188em;
	float: left;
}
.slicknav_menu .slicknav_icon {
	float: left;
	width: 1.125em;
	height: 0.875em;
	margin: 0.188em 0 0 0.438em;
	display: none;
}
.slicknav_menu .slicknav_icon:before {
	background: transparent;
	width: 1.125em;
	height: 0.875em;
	display: block;
	content: "";
	position: absolute;
}
.slicknav_menu .slicknav_no-text {
	margin: 0;
}
.slicknav_menu .slicknav_icon-bar {
	display: block;
	width: 1.125em;
	height: 0.125em;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
	-webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
	-moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}
.slicknav_menu:before {
	content: " ";
	display: table;
}
.slicknav_menu:after {
	content: " ";
	display: table;
	clear: both;
}
.slicknav_nav {
	clear: both;
}
.slicknav_nav ul {
	display: block;
}
.slicknav_nav li {
	display: block;
}
.slicknav_nav .slicknav_arrow {
	background: url(/Content/images/slickNavArrow.png) top center no-repeat;
	width: 15px;
	height: 15px;
	position: absolute;
	right: 10%;
}
.slicknav_nav .slicknav_item {
	cursor: pointer;
}
.slicknav_nav .slicknav_item a {
	display: inline;
}
.slicknav_nav .slicknav_row {
	display: block;
}
.slicknav_nav a {
	display: block;
}
.slicknav_nav .slicknav_parent-link a {
	display: inline;
}
.slicknav_brand {
	float: left;
}
.slicknav_menu {
	font-size: 16px;
	box-sizing: border-box;
	position: absolute;
	top: 35px;
	right: 0px;
	z-index: 9999;
	display: none;
	width: 100%;
}
.slicknav_menu * {
	box-sizing: border-box;
}
.slicknav_menu .slicknav_menutxt {
	color: #fff;
	font-weight: bold;
	text-shadow: 0 1px 3px #000;
}
.slicknav_menu .slicknav_icon-bar {
	background-color: #fff;
}
.slicknav_btn {
	text-decoration: none;
	position: relative;
	z-index: 8000;
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px; /*background:#222;*/
}
.slicknav_nav {
	color: #fff;
	margin: 0;
	font-family: "montserratbold";
	font-size: 15px;
	top: -75px;
	position: relative;
	width: 100%;
	z-index: 7000;
	padding: 130px 0 40px;
	list-style: none;
	overflow: hidden;
	background: #273c58;
}
.slicknav_nav ul {
	list-style: none;
	overflow: hidden;
	padding: 0;
	margin: 0;
	background: #384d69;
}
.slicknav_nav .slicknav_row {
	padding: 5px 10px;
	margin: 2px 5px;
	text-align: center;
	position: relative;
}
.slicknav_nav .slicknav_row:hover {
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	background: #fff;
	color: #104a31;
}
.slicknav_nav .slicknav_row:hover a {
	color: #273c58;
}
.slicknav_nav a {
	padding: 5px 10px;
	margin: 2px 5px;
	text-decoration: none;
	color: #fff;
	text-align: center;
}
.slicknav_nav a:hover {
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	background: #fff;
	color: #273c58;
}
.slicknav_nav .slicknav_txtnode {
	margin-left: 15px;
}
.slicknav_nav .slicknav_item a {
	padding: 0;
	margin: 0;
}
.slicknav_nav .slicknav_parent-link a {
	padding: 0;
	margin: 0;
}
.slicknav_nav .linkA,
.slicknav_nav .noLinkA {
	top: auto;
}
.slicknav_brand {
	color: #fff;
	font-size: 18px;
	line-height: 30px;
	padding: 7px 12px;
	height: 44px;
}

/* Icon 1 */
#nav-icon1 {
	width: 50px;
	height: 40px;
	right: 15px;
	position: relative; /*margin:50px auto;*/
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	-o-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
	cursor: pointer;
}
#nav-icon1 span {
	display: block;
	position: absolute;
	height: 5px;
	width: 100%;
	background: #fff;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: 0.25s ease-in-out;
	-moz-transition: 0.25s ease-in-out;
	-o-transition: 0.25s ease-in-out;
	transition: 0.25s ease-in-out;
}
#nav-icon1 span:nth-child(1) {
	top: 0px;
}
#nav-icon1 span:nth-child(2) {
	top: 15px;
}
#nav-icon1 span:nth-child(3) {
	top: 30px;
}
#nav-icon1.open span:nth-child(1) {
	top: 18px;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}
#nav-icon1.open span:nth-child(2) {
	opacity: 0;
	left: -60px;
}
#nav-icon1.open span:nth-child(3) {
	top: 18px;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

/* Weather Forecast */

.icon-0 {
	background: url(/Content/images/weatherForecastIcons/0.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-1 {
	background: url(/Content/images/weatherForecastIcons/1.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-2 {
	background: url(/Content/images/weatherForecastIcons/2.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-3 {
	background: url(/Content/images/weatherForecastIcons/3.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-4 {
	background: url(/Content/images/weatherForecastIcons/4.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-5 {
	background: url(/Content/images/weatherForecastIcons/5.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-6 {
	background: url(/Content/images/weatherForecastIcons/6.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-7 {
	background: url(/Content/images/weatherForecastIcons/7.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-8 {
	background: url(/Content/images/weatherForecastIcons/8.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-9 {
	background: url(/Content/images/weatherForecastIcons/9.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-10 {
	background: url(/Content/images/weatherForecastIcons/10.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-11 {
	background: url(/Content/images/weatherForecastIcons/11.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-12 {
	background: url(/Content/images/weatherForecastIcons/12.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-13 {
	background: url(/Content/images/weatherForecastIcons/13.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-14 {
	background: url(/Content/images/weatherForecastIcons/14.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-15 {
	background: url(/Content/images/weatherForecastIcons/15.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-16 {
	background: url(/Content/images/weatherForecastIcons/16.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-17 {
	background: url(/Content/images/weatherForecastIcons/17.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-18 {
	background: url(/Content/images/weatherForecastIcons/18.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-19 {
	background: url(/Content/images/weatherForecastIcons/19.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-20 {
	background: url(/Content/images/weatherForecastIcons/20.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-21 {
	background: url(/Content/images/weatherForecastIcons/21.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-22 {
	background: url(/Content/images/weatherForecastIcons/22.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-23 {
	background: url(/Content/images/weatherForecastIcons/23.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-24 {
	background: url(/Content/images/weatherForecastIcons/24.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-25 {
	background: url(/Content/images/weatherForecastIcons/25.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-26 {
	background: url(/Content/images/weatherForecastIcons/26.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-27 {
	background: url(/Content/images/weatherForecastIcons/27.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-28 {
	background: url(/Content/images/weatherForecastIcons/28.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-29 {
	background: url(/Content/images/weatherForecastIcons/29.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-30 {
	background: url(/Content/images/weatherForecastIcons/30.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-31 {
	background: url(/Content/images/weatherForecastIcons/31.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-32 {
	background: url(/Content/images/weatherForecastIcons/32.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-33 {
	background: url(/Content/images/weatherForecastIcons/33.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-34 {
	background: url(/Content/images/weatherForecastIcons/34.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-35 {
	background: url(/Content/images/weatherForecastIcons/35.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-36 {
	background: url(/Content/images/weatherForecastIcons/36.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-37 {
	background: url(/Content/images/weatherForecastIcons/37.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-38 {
	background: url(/Content/images/weatherForecastIcons/38.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-39 {
	background: url(/Content/images/weatherForecastIcons/39.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-40 {
	background: url(/Content/images/weatherForecastIcons/40.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-41 {
	background: url(/Content/images/weatherForecastIcons/41.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-42 {
	background: url(/Content/images/weatherForecastIcons/42png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-43 {
	background: url(/Content/images/weatherForecastIcons/43.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-44 {
	background: url(/Content/images/weatherForecastIcons/44.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-45 {
	background: url(/Content/images/weatherForecastIcons/45.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-46 {
	background: url(/Content/images/weatherForecastIcons/46.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}
.icon-47 {
	background: url(/Content/images/weatherForecastIcons/47.png) top center
		no-repeat;
	width: 56px;
	height: 56px;
	display: inline-block;
}

@font-face {
	font-family: "montserratbold";
	src: url("/Content/fonts/montserrat-bold-webfont.eot");
	src: url("/Content/fonts/montserrat-bold-webfont.eot?#iefix")
			format("embedded-opentype"),
		url("/Content/fonts/montserrat-bold-webfont.woff") format("woff"),
		url("/Content/fonts/montserrat-bold-webfont.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "montserratlight";
	src: url("/Content/fonts/montserrat-light-webfont.eot");
	src: url("/Content/fonts/montserrat-light-webfont.eot?#iefix")
			format("embedded-opentype"),
		url("/Content/fonts/montserrat-light-webfont.woff") format("woff"),
		url("/Content/fonts/montserrat-light-webfont.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "montserratregular";
	src: url("/Content/fonts/montserrat-regular-webfont.eot");
	src: url("/Content/fonts/montserrat-regular-webfont.eot?#iefix")
			format("embedded-opentype"),
		url("/Content/fonts/montserrat-regular-webfont.woff") format("woff"),
		url("/Content/fonts/montserrat-regular-webfont.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "playfair_displayblack";
	src: url("/Content/fonts/playfairdisplay-black-webfont.eot");
	src: url("/Content/fonts/playfairdisplay-black-webfont.eot?#iefix")
			format("embedded-opentype"),
		url("/Content/fonts/playfairdisplay-black-webfont.woff") format("woff"),
		url("/Content/fonts/playfairdisplay-black-webfont.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "playfair_displayblack_italic";
	src: url("/Content/fonts/playfairdisplay-blackitalic-webfont.eot");
	src: url("/Content/fonts/playfairdisplay-blackitalic-webfont.eot?#iefix")
			format("embedded-opentype"),
		url("/Content/fonts/playfairdisplay-blackitalic-webfont.woff")
			format("woff"),
		url("/Content/fonts/playfairdisplay-blackitalic-webfont.ttf")
			format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "playfair_displaybold";
	src: url("/Content/fonts/playfairdisplay-bold-webfont.eot");
	src: url("/Content/fonts/playfairdisplay-bold-webfont.eot?#iefix")
			format("embedded-opentype"),
		url("/Content/fonts/playfairdisplay-bold-webfont.woff") format("woff"),
		url("/Content/fonts/playfairdisplay-bold-webfont.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "playfair_displaybold_italic";
	src: url("/Content/fonts/playfairdisplay-bolditalic-webfont.eot");
	src: url("/Content/fonts/playfairdisplay-bolditalic-webfont.eot?#iefix")
			format("embedded-opentype"),
		url("/Content/fonts/playfairdisplay-bolditalic-webfont.woff") format("woff"),
		url("/Content/fonts/playfairdisplay-bolditalic-webfont.ttf")
			format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "playfair_displayitalic";
	src: url("/Content/fonts/playfairdisplay-italic-webfont.eot");
	src: url("/Content/fonts/playfairdisplay-italic-webfont.eot?#iefix")
			format("embedded-opentype"),
		url("/Content/fonts/playfairdisplay-italic-webfont.woff") format("woff"),
		url("/Content/fonts/playfairdisplay-italic-webfont.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "playfair_displayregular";
	src: url("/Content/fonts/playfairdisplay-regular-webfont.eot");
	src: url("/Content/fonts/playfairdisplay-regular-webfont.eot?#iefix")
			format("embedded-opentype"),
		url("/Content/fonts/playfairdisplay-regular-webfont.woff") format("woff"),
		url("/Content/fonts/playfairdisplay-regular-webfont.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "open_sansbold";
	src: url("/Content/fonts/opensans-bold-webfont.eot");
	src: url("/Content/fonts/opensans-bold-webfont.eot?#iefix")
			format("embedded-opentype"),
		url("/Content/fonts/opensans-bold-webfont.woff") format("woff"),
		url("/Content/fonts/opensans-bold-webfont.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "open_sansbold_italic";
	src: url("/Content/fonts/opensans-bolditalic-webfont.eot");
	src: url("/Content/fonts/opensans-bolditalic-webfont.eot?#iefix")
			format("embedded-opentype"),
		url("/Content/fonts/opensans-bolditalic-webfont.woff") format("woff"),
		url("/Content/fonts/opensans-bolditalic-webfont.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "open_sansextrabold";
	src: url("/Content/fonts/opensans-extrabold-webfont.eot");
	src: url("/Content/fonts/opensans-extrabold-webfont.eot?#iefix")
			format("embedded-opentype"),
		url("/Content/fonts/opensans-extrabold-webfont.woff") format("woff"),
		url("/Content/fonts/opensans-extrabold-webfont.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "open_sansextrabold_italic";
	src: url("/Content/fonts/opensans-extrabolditalic-webfont.eot");
	src: url("/Content/fonts/opensans-extrabolditalic-webfont.eot?#iefix")
			format("embedded-opentype"),
		url("/Content/fonts/opensans-extrabolditalic-webfont.woff") format("woff"),
		url("/Content/fonts/opensans-extrabolditalic-webfont.ttf")
			format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "open_sansitalic";
	src: url("/Content/fonts/opensans-italic-webfont.eot");
	src: url("/Content/fonts/opensans-italic-webfont.eot?#iefix")
			format("embedded-opentype"),
		url("/Content/fonts/opensans-italic-webfont.woff") format("woff"),
		url("/Content/fonts/opensans-italic-webfont.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "open_sanslight";
	src: url("/Content/fonts/opensans-light-webfont.eot");
	src: url("/Content/fonts/opensans-light-webfont.eot?#iefix")
			format("embedded-opentype"),
		url("/Content/fonts/opensans-light-webfont.woff") format("woff"),
		url("/Content/fonts/opensans-light-webfont.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "open_sanslight_italic";
	src: url("/Content/fonts/opensans-lightitalic-webfont.eot");
	src: url("/Content/fonts/opensans-lightitalic-webfont.eot?#iefix")
			format("embedded-opentype"),
		url("/Content/fonts/opensans-lightitalic-webfont.woff") format("woff"),
		url("/Content/fonts/opensans-lightitalic-webfont.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "open_sansregular";
	src: url("/Content/fonts/opensans-regular-webfont.eot");
	src: url("/Content/fonts/opensans-regular-webfont.eot?#iefix")
			format("embedded-opentype"),
		url("/Content/fonts/opensans-regular-webfont.woff") format("woff"),
		url("/Content/fonts/opensans-regular-webfont.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "open_sanssemibold";
	src: url("/Content/fonts/opensans-semibold-webfont.eot");
	src: url("/Content/fonts/opensans-semibold-webfont.eot?#iefix")
			format("embedded-opentype"),
		url("/Content/fonts/opensans-semibold-webfont.woff") format("woff"),
		url("/Content/fonts/opensans-semibold-webfont.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "open_sanssemibold_italic";
	src: url("/Content/fonts/opensans-semibolditalic-webfont.eot");
	src: url("/Content/fonts/opensans-semibolditalic-webfont.eot?#iefix")
			format("embedded-opentype"),
		url("/Content/fonts/opensans-semibolditalic-webfont.woff") format("woff"),
		url("/Content/fonts/opensans-semibolditalic-webfont.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}


.wakeAlertBar {
	background: #fc1301;
	color: #FFF;
	width: 90%;
	text-align: center;
	padding: 10px 5%;
}

	.wakeAlertBar h3 {
		margin: 0;
		padding: 0;
		font-family: "open_sansbold";
		letter-spacing: 0.3px;
	}

@media screen and (max-width: 1000px) {
	.wakeAlertBar {
		padding: 3px 5%;
	}
		.wakeAlertBar h3 {
			font-size: 17px;
			font-family: "open_sansregular";
		}
}

@media screen and (max-width: 450px) {
	.wakeAlertBar h3 {
		font-size: 15px;
		font-family: "open_sansregular";
	}

	.slicknav_menu {
		top: 60px;
	}
}

