@import url("https://use.typekit.net/fst6nml.css");
* {
	margin:0px;
	padding:0px;
	box-sizing:border-box;
	position: relative;
}
body {
	font-family: karmina-sans, sans-serif; 
	font-style: normal;
	font-weight: 400;
	font-size:21px;
	color:#333;
}
img {
	max-width:100%;
	height:auto;
}
img.orientation-3 {
	transform: rotate(-180deg);
}
img.orientation-6 {
	transform: rotate(-90deg);
}
img.orientation-9 {
	transform: rotate(90deg);
}
.container {
	max-width: 1360px;
	margin:0px auto;
	padding:0px 30px;
}
.clear:after {
	content:'';
	display:block;
	clear:both;
}
.mobile {
	display: none;
}
.nomobile {
	display: block;
}
/* ERRORS & ALERTS */
	.Alert {
		background-color: #F7D3A5;
	}

	div.Errors,
	.BadAlert {
		border: 1px solid red;
		height: auto;
		background: #EFE0E0;
		border-radius: 5px;
		-moz-border-radius: 5px;
		padding: 10px;
		margin-bottom: 10px;
	} 

	.BadNews {
		color: red;
	}
	.GoodNews {
		color: green;
	}

	.GoodAlert {
		padding: 10px;
		border: 1px solid green;
		height: auto;
		background: #E2EFE0;
		border-radius: 5px;
		-moz-border-radius: 5px;
		margin-bottom: 10px;
	}
	ul.Errors {
		border: 1px solid #666666;
		border-radius: 10px;
		background: #eeeeee;
		list-style: none;
		padding: 10px;
		margin: 20px 0px 20px 0px;
	}

	ul.Errors li {
		padding: 2px 0px 2px 25px;
	}

	ul.Errors li.ErrorTitle {
		padding: 2px 0px;
		font-weight: bold;
	}

	ul.Errors li.Error {
		color: red;
	}

	ul.Errors li.Warning {
		color: orange;
	}

	ul.Errors li.Notice {
		color: blue;
	}

	ul.Errors li.GoodNews {
		color: green;
	}

	ul.Errors li ol {
		margin: 0px 0px 0px 50px;
	}
/* ^ ERRORS & ALERTS */
/* HEADER */
	header {
		position:fixed;
		top:0px;
		z-index:4;
		width:100%;
		background-color:#fff;
		border-bottom:0px solid #000;
		padding-top: 10px;
	}
	header.border {
		border-bottom: 1px solid #164591;
	}
	#header:after {
		content:'';
		display:block;
		clear:both;
	}
	#header #left {
		float:left;
		width:25%;
		text-align: center;
	}
	#header #left img {
		max-width: 220px;
	}

	#header #right {
		float:right;
		width:75%;
		padding-top: 10px;
	}
	#header #right #top {
		color: #b5121b;
		text-align: right;
		font-size: 26px;
		font-style: italic;
	}
	#header #right #top a {
		padding-right: 15px;
		padding-left: 25px;
		color: #002a5c;
		font-size: 20px;
	}
/* ^ HEADER */
/* NAVIGATION */
	header nav.mainmenu {
		text-align:right;
		background: #fff;
		color: #164591;
		margin-top: 7px;
	}
	
	header .nav > ul {
		list-style:none;
		width:100%;
		display:block;
		margin:0px auto;
		font-size: 0px; /*elimiates spacing between li*/
	}
	header .nav ul li {
		margin-bottom:0px;
	}
	header .nav > ul > li {
		display:inline-block;
	}
	header .nav ul li a {
		text-decoration:none;
		color: #fff;
		text-transform:uppercase;
		display:block;
		padding:20px 0px;
		font-size:21px;
		font-weight:bold;
		color: #164591;
	}
	header .nav > ul > li > a {
		border-right:0px solid #ccc;
		padding:0px 14px;
		margin:20px 0px;
	}
	header .nav ul li:last-of-type a {
		border-right:0px;
	}
	header .nav > ul > li:hover {
		background: #164591;
	}
	header .nav > ul > li:hover > a {
		color:#fff;
	}
	header .nav > ul > li ul  {
		display:none;
		position:absolute;
		text-align:left;
		margin-left:0px;
		background-color:#fff;
		min-width: 250px;
	}
	header .nav > ul > li ul li {
		display:block;
	}
	header .nav > ul > li ul li a {
		font-weight:300;
		padding:10px 20px;
		display:block;
		white-space: nowrap;
		color: #164591;
		text-transform: none;
	}
	header .nav > ul > li > ul > li a:hover {
		background: #164591;
		color: #fff;
	}
/* ^ NAVIGATION */
/* CONTENT */
	main {
	}
	#main {
		position: relative;
		z-index:2;
		padding-top:0px;
		padding-bottom:0px;
	}
	#default #main {
		padding-top: 0;
	}
	#main:after {
		content:'';
		display: block;
		clear:both;
	}
	h1 {
		font-size:38px;
		color:#002a5c;
		margin-bottom:15px;
		font-weight: bold;
	}
	h2 {
		font-size:34px;
		color:#002a5c;
		margin-bottom:15px;
		font-weight: bold;
	}
	h3 {
		font-size:24px;
		color:#002a5c;
		margin-bottom:15px;
		font-weight: bold;
	}
	h4 {
		font-size:24px;
		color:#b5121b;
		margin-bottom:15px;
		font-weight: bold;
	}
	p {
	  margin-bottom:15px;
	}
	a {
		-webkit-transition: all 0.25s ease;
		-moz-transition: all 0.25s ease;
		-o-transition: all 0.25s ease;
		transition: all 0.25s ease;
		color:#002a5c;
		text-decoration:none;
	}
	a:hover {
		color:#002a5c;
		text-decoration: underline;
	}

	a.button {
		background-color:#b5121b;
		display:inline-block;
		padding:10px 25px;
		color:#fff;
		font-size:20px;
		text-decoration: none;
		border: 1px solid #fff;
		border-radius: 20px;
	}
	a.button:hover {
		background-color:#841302;
	}
	.mce-content-body ol,
	.mce-content-body ul,
	main ol, 
	main ul {
		list-style-position: outside;
		margin-left: 25px;
	}	
	.mce-content-body ol li,
	.mce-content-body ul li,
	main ol li, 
	main ul li {
		margin-bottom: 5px;
	}	
	main ul ul li {
		list-style-type: disc;
	}	
	
	.left {
		float:left;
		width:80%;
		padding-right:50px;
	}
	.right {
		float:left;
		width:20%;
	}
	.hidden {
		display: none;
		-webkit-transition: all 0.25s ease;
		-moz-transition: all 0.25s ease;
		-o-transition: all 0.25s ease;
		transition: all 0.25s ease;
	}
/* ^ CONTENT */
/* BLOCKS */
	.block {}
	.block:after {
		content:'';
		display: block;
		clear:both;
	}
	.block .left {
		width: 60%;
		margin-right: 5%;
		padding: 0;
	}
	.block .right {
		width: 35%;
		margin: 0;
		padding: 0;
	}
	.block .singlecolumn {}
	.block .doublecolumn {}
	.block .doublecolumn h2 {
		margin-top: 60px;
	}
	.block .yellowbg {
		width: 80%;
		margin: 0 10%;
		background: #e3a91a;
		padding: 30px;
		border-radius: 30px;
		position: relative;
		color: #fff;
		font-size: 24px;
	}
	.block .yellowbg .content {}
	.block .yellowbg.wimage .content {
		width: 70%;
	}
	.block .yellowbg.wimage .img {
		position: absolute;
		right: 50px;
		top: -30px;
		width: 20%;
	}
	.block .doublecolumn.wideright .left {
		width: 35%;
		margin-right: 5%;
		padding: 0;
	}
	.block .doublecolumn.wideright .right {
		width: 60%;
		margin: 0;
		padding: 0;
	}
	.block .doublecolumn.equal .left {
		width: 49%;
		margin: 0 1% 0 0;
		padding: 0;
	}
	.block .doublecolumn.equal .right {
		width: 49%;
		margin: 0 0 0 1%;
		padding: 0;
	}
	.block.small-bottom-padding {
		padding-bottom: 20px;
	}
	.block.large-bottom-padding {
		padding-bottom: 40px;
	}
	.block.small-top-padding {
		padding-top: 20px;
	}
	.block.large-top-padding {
		padding-top: 40px;
	}
	.block .SingleColumnOverImage .SingleColumnOverImage-Text {
		background: #fff;
		padding: 40px 60px 30px;
		border-top-right-radius: 20px;
		border-top-left-radius: 20px;
		position: absolute;
		top: 440px;
		z-index: 9;
		width: 100%;
	}
	.block .SingleColumnOverImage .SingleColumnOverImage-Text #four-blocks {
	}
	.block .SingleColumnOverImage .SingleColumnOverImage-Text #four-blocks .col a {
		max-height: 368px;
		border-top-right-radius: 15px;
		border-top-left-radius: 15px;
		border-bottom-left-radius: 35px;
		border-bottom-right-radius: 35px;
		overflow:hidden;
		display: block;
	}
	.block .SingleColumnOverImage .SingleColumnOverImage-Text #four-blocks #four-blocks-wrapper .col {
		float: left;
		margin: 0 1%;
		width: 23%;
	}
	.block .SingleColumnOverImage .SingleColumnOverImage-Text #four-blocks #four-blocks-wrapper .col .title {
		background: #002a5c;
		padding: 10px;
		color: #fff;
		text-transform: uppercase;
		text-align: center;
		font-weight: bold;
	}
	.block .SingleColumnOverImage .SingleColumnOverImage-Text #four-blocks #four-blocks-wrapper .col .image {
		overflow: hidden;
	}
	.block .SingleColumnOverImage .SingleColumnOverImage-Text #four-blocks #four-blocks-wrapper .col .image img {
		-webkit-transition: all 0.25s ease;
		-moz-transition: all 0.25s ease;
		-o-transition: all 0.25s ease;
		transition: all 0.25s ease;
		width: 100%;
	}
	.block .SingleColumnOverImage .SingleColumnOverImage-Text #four-blocks #four-blocks-wrapper .col .image:hover img {
		filter: brightness(70%);
	}
	.block .DoubleColumnOverImage {
		background-size: cover !important;
		overflow: hidden;
	}
	.block .DoubleColumnOverImage .container {
		
	}
	.block .SingleColumnOverImage .container {
		padding: 0;
		position: absolute;
		width: 86%;
		max-width: 9999px;
		margin: 0 7%;
		top: 0;
	
	}

	.block .DoubleColumnOverImage .left {
		padding: 50px 5% 50px 0px;
		margin: 100px 0 0;
		color: #002a5c;
	}
	.block .DoubleColumnOverImage .right {
		padding: 0px;
		color: #fff;
	}
	
	/* TRIPLE */
		.TripleColumn .right,
		.TripleColumn .center,
		.TripleColumn .left {
			width: 31%;
			float: left;
			text-align: center;
			margin: 0;
		}
		.TripleColumn .center {
			margin: 0 3%;
		}
		.TripleColumn.double .left {
			margin: 0 3% 0 17%;
		}
		.TripleColumn.double .right {
			margin: 0 18% 0 0%;
		}
	/* ^ TRIPLE */
	/* GALLERY */
		.gallery-slider {
			position: relative;
			padding: 0px;
		}
		.gallery-slider #gallerys-frame {
			position: relative;
			overflow: hidden;
		}
		.gallery-slider #gallerys-frame-slider {
			position: absolute;
			width: 100%;
		}
	.gallery-slider .gallery-arrow {
			background: rgba(0,0,0,.7);
			width: 50px;
			height: 100%;
			position: absolute;
			left: 0;
			top: 0;
			z-index: 99;
		}
		.gallery-slider .gallery-arrow.arrow-right {
			right: 0;
			left: auto;
		}
		.gallery-slider .scroll-left {
			position: absolute;
			left: 10px;
			top: 40%;
			cursor: pointer;
			z-index: 99;
		}
		.gallery-slider .scroll-right {
			position: absolute;
			right: 10px;
			top: 40%;
			cursor: pointer;
			z-index: 99;
		}
		.gallery-slider .gallery {
			padding: 0px;
			position: absolute;
			width: 100%;
			min-width: 600px;
			text-align: center;
			overflow: hidden;
			max-height: 650px;
		}
		.gallery-slider .gallery img {
			width: 100%;
		}
		.gallery-slider #gallery-frame {
			position: relative;
			overflow: hidden;
			padding: 0px;
		}
	/* ^ GALLERY */
/* ^ BLOCKS */
/* FORMS */
	input[type="text"], textarea, select {
		-webkit-appearance: none;
		border-radius: 0;
		font-family:inherit;
		font-size:inherit;
		font-weight:inherit;
		background-color:#f3f3f3;
		border:0px;
		padding:10px;
		width:100%;
		margin-bottom:15px;
	}
	input[type="submit"], button {
		background-color:#b5121b;
		border: 1px solid #fff;
		color:#fff;
		font-family:inherit;
		font-size:inherit;
		font-weight:inherit;
		text-align:center;
		display:inline-block;
		width:auto;
		padding:10px 30px;
		border-radius:10px;
	}
/* ^ FORMS */

/* FOOTER */
	#scroll-up {
		position:fixed;
		opacity:.5;
		z-index:99999999999;
		right:20px;
		bottom:30px;
		width:30px;
		height:30px;
		border-radius:50%;
		text-align:center;
		cursor:pointer;
		color:#fff;
		background-color:#000;
		display:none;
		font-size:30px;
		font-family:verdana, sans-serrif;
	}
	#scroll-up:hover {
		opacity:1;
	}
	footer {
		background:#000 url('../../Assets/Images/footer-background.jpg') 0 0 no-repeat;
		background-size: cover;
		color: #fff;
	}
	#footer {
		color:#fff;
		font-size:16px;
		padding-top:50px;
		padding-bottom:40px;
	}
	#footer a {
		color: #fff;
	}
	#footer a:hover {
		text-decoration: underline;
	}
	#footer .footer-top {
		margin-bottom: 25px;
	}
	#footer .left {
		width: 49%;
		margin-right: 1%;
		text-align: left;
	}
	#footer .right {
		width: 49%;
		margin-left: 1%;
		text-align: right;
	}
	#footer .left .right {
		width: 49%;
		margin-left: 1%;
		text-align: left;
	}
	#footer .left a {
		padding: 0px 4px;
	}
	#footer .siteby {
		padding: 20px;
	}
/* ^ FOOTER */
/* MOBILE */
#mobile-nav {
	display:none;
	text-transform:uppercase;
	color:#fff;
	text-align:center;
	padding:7px 10px;
	height:37px;
	width:100px;
	font-family:Arial;
	margin:0px auto;
}
#mobile-nav > div {
	width:25px;
	float:right;
}
#mobile-nav div.bar {
	height:3px;
	background-color:#fff;
	margin:3px 0px;
}
#mobile-nav span{
	float:right;
	display:block;
	padding:0px 5px;
	font-size:14px;
	line-height:22px;
}
.map-responsive{
	overflow:hidden;
	padding-bottom:56.25%;
	position:relative;
	height:0;
}
.map-responsive video,
.map-responsive iframe{
	left:0;
	top:0;
	height:100%;
	width:100%;
	position:absolute;
}

@media (max-width:1340px) {
	header .nav ul li a {
		font-size: 20px;
	}
}
@media (max-width:1250px) {
	header .nav ul li a {
		padding: 0 12px;
	}
	h2 {
		font-size: 28px;
	}
	#footer .left {
		width: 59%;
	}
	#footer .left .right,
	#footer .left .left {
		width: 49%;
	}
	#footer .right {
		width: 39%;
	}
}
@media (max-width:1110px) {
	header {
		position: relative;
	}
	#header {
		padding:0px;
	}
	#header #left #logo {
		position: relative;
		width: 100%;
		text-align: center;
		padding: 0px 0 10px;
	}
	#header #right #top {
		text-align: center; 
		font-size: 22px;
		padding: 0px 15px;
	}
	header nav.mainmenu {
		background-color: #164591;
		width:100%;
		float:none;
		margin-top: 20px;
		clear:both;
		cursor: pointer;
	}
	#mobile-nav {
		display:block;
	}
	#footer #mobile-nav {
		display: none;
	}
	header .nav > ul {
		display:none;
		position:absolute;
		background-color:#fff;
		padding-left:0px;
		width:100%;
	}
	header .nav ul li {
		display:block;
		border-top:1px solid #ccc;
		text-align:left;
	}
	header .nav > ul > li > a {
		padding:10px 20px;
		margin:0px;
		color: #000;
		font-size: 20px;
	}
	header .nav > ul > li ul {
		position:relative;
		background: #efefef;
	}
	header .nav > ul > li:hover {
		background-color: #164591;
	}
	header .nav > ul > li:hover > a {
		color: #fff;
		border:0px;
	}
	.block .DoubleColumnOverImage .container {
		padding: 20px;
	}
	.block .doublecolumn .left,
	.block .doublecolumn .right,
	.block .doublecolumn.equal .left,
	.block .doublecolumn.equal .right,
	.block .doublecolumn.wideright .left,
	.block .doublecolumn.wideright .right,
	.TripleColumn .left,
	.TripleColumn .right,
	.TripleColumn .center,
	.TripleColumn.double .left,
	.TripleColumn.double .right,
	#header #left,
	#header #right,
	.left,
	.right {
		width:100%;
		margin: 10px 0;
		padding: 0;
	}
	#header #left,
	#header #right a,
	#header #right {
		text-align: center;
	}
	#header #right {
		margin: 10px 0 0 0;
	}
	.block .SingleColumnOverImage .SingleColumnOverImage-Text #four-blocks #four-blocks-wrapper .col .title {
		font-size: 20px;
	}
	.block .DoubleColumnOverImage .right {
		padding-top: 80px;
		
	}
}
@media (max-width:900px) {
	#footer .left,
	#footer .left .right,
	#footer .right,
	#footer .left,
	#footer .right,
	#footer .right .left,
	#footer .right .right,
	.block .DoubleColumnOverImage .left,
	.block .DoubleColumnOverImage .right {
		width:100%;
		margin: 10px 0;
		padding: 0;
	}
	#footer .left .right,
	#footer .right,
	#footer .left {
		text-align: center;
	}
	#footer .right .right {
		border-left: 0px;
	}
	footer {
		text-align: center;
	}
	#footer .left .left,
	#footer .left .right {
		width: 100%;
		text-align: center;
	}
	#footer .footer-top {
		margin-bottom: 10px;
	}
}
@media (max-width:800px) {
	.block .yellowbg.wimage .content {
		width: 100%;
	}
	.block .yellowbg.wimage .img {
		position: relative;
		left: 0px;
		bottom: 0px;
		width: 100%;
		text-align: center;
		right: auto;
		top: auto;
	}
	h1 {
		font-size: 30px;
	}
	.mobile {display: block;}
	.no-mobile {display: none;}
	.block .SingleColumnOverImage .SingleColumnOverImage-Text {
		top: 180px;
		padding: 15px;
	}
	h2 {
		font-size: 26px;
	}
}
@media (max-width:700px) {
	.block .SingleColumnOverImage .SingleColumnOverImage-Text #four-blocks #four-blocks-wrapper .col {
		width: 100%;
		margin: 10px 0;
	}
	.gallery-slider .gallery-arrow {
		height: 98%;
	}
	.gallery-slider .gallery-arrow img {
		max-width: 12px
	}
}
@media (max-width:500px) {
	a.button {
		width: 100%;
		text-align: center;
	}
	
}