:root {
	--blue: #00657f;
	--lightBlue: #00bfd6;
	--lighterBlue: #dff7fa;
	--blue65: rgba(10,78,121,.65);
	--offWhite: #eff4f7;
	--green: #87B546;
	--white: #ffffff;
	--black: #000000;
	--headerGrey: #736868;
	--bodyGrey: #f2f6f8;
	--footerGrey: #736868;
	--altGrey: #e6eef1;
	--greyText: #444444;
	--fontRegular: Montserrat-Regular, Arial, Helvetica, Verdana, sans-serif;
	--fontBold: Montserrat-SemiBold, Arial, Helvetica, Verdana, sans-serif;
	--fontTrueBold: Montserrat-Bold, Arial, Helvetica, Verdana, sans-serif;
}

* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

a {
	color: var(--blue);
	text-decoration: none;
}

.content-container a {
	text-decoration: underline;
	font-family: var(--fontBold);
}

img {
	max-width: 100%;
	height: auto;
	outline: none;
}


body {
	padding: 0;
	margin: 0;
	background-color: var(--footerGrey);
	background-color: var(--blue);
	color: var(--greyText);
	font-size: 20px;
	font-family: var(--fontRegular);
	/*
		padding-top: 184px; */
}

h1, h2, h3, h4 {
	font-family: var(--fontBold);	
	margin-top: 0px;
	color: var(--blue);
}

h1 {
	font-size: 24px;
}

h2 {
	font-size: 20px;
}

h3 {
	font-size: 18px;
}

h4 {
	font-size: 15px;
	margin-bottom: 0px;
}
header {
	background-color: var(--lighterBlue);
	min-height: 191px;
	position: relative;
	width: 100%;
	top: 0px;
	z-index: 10;	
	box-shadow: 0 -2px 20px 0 rgba(0, 0, 0, 0.6);
	text-align: center;
	transition: height .5s;
}

b, strong {
	font-family:var(--fontTrueBold);
}

#header-design {
	position: absolute;
	right: 10px;
	top: 0;
}
.logo-container {
	padding-top:27px;
}
.nav-container {
	background-color: var(--headerGrey);
	width: 100%;
	height: 41px;
	position: absolute;
	bottom: 0px;	
}

	.nav-container .inner-container {
		height: auto;
	}
header .inner-container {
	display: flex;
	align-items: center;	
	justify-content: space-evenly;	
	justify-content:space-between;
	height: 150px;
}
.top-nav a {
	background-color: var(--blue);
	color: var(--white);
	font-size: 15px;
	font-family: var(--fontBold);
	position: relative;
	padding: 10px 8px 10px 16px;
	display:block;
	margin-top:10px;
}
.top-nav a::before {
	content: "";
	width: 0;
	height: 0;
	border-top: 0px solid transparent;
	border-bottom: 39px solid transparent;
	border-right: 39px solid #00687f;
	position: absolute;
	left: -39px;
	top: 0;
}
.nowrap {
	white-space: nowrap;
}
.content-container {
	background-color: var(--white);
	display:block;
}

.inner-container {
	/*max-width: 1920px;
	max-width: 1640px;*/
	max-width: 1360px;
	padding: 0px 20px;
	margin: 0 auto;
	position: relative;
}
.sub-container {
	background-color:var(--white);
}
.sub-container .inner-container {
	padding-top:40px;
	padding-bottom:30px;
	display:flex;
}
.left-nav-container {
	width:213px;
	margin-right:30px;
}
.inner-content-container {
	width: calc(100% - 243px);
}

.main-nav-item {
	font-size: 17px;
	line-height: 27px;
	padding: 7px 30px;
	position: relative
}

	.main-nav-item a {
		color: var(--offWhite);
		font-family:var(--fontBold);
		/*font-variant:small-caps;*/
		font-size: 18px;
		/*cursor: default;*/
	}

	.main-nav-item:hover {
		/* background-color:var(--offWhite); */
	}

		.main-nav-item:hover a, .main-nav-item a.active {
			text-decoration: underline;
		}

	.main-nav-item .sub-nav a {
		color: var(--blue);
		font-weight: normal;
		cursor: pointer;
		text-decoration:none;
	}

.sub-nav {
	display: none;
	text-align: left;
	top: 41px;
	left: 0px;
	box-shadow: 0 -2px 20px 0 rgba(0, 0, 0, 0.2);
}

.main-nav-item-on .sub-nav {
	display: block;
	position: absolute;
	background-color: var(--white);
	background-color:var(--offWhite);
	border-top: 6px solid var(--lightBlue);
	padding: 6px 0px;
	min-width: 280px;
}

	.main-nav-item-on .sub-nav a {
		/*white-space: nowrap;*/
		display: block;
		font-size: 18px;
		padding: 7px 23px;
	}

		.main-nav-item-on .sub-nav a:hover {
			color: var(--offWhite);
			background-color: var(--blue);
		}

		.main-nav-item-on .sub-nav a.active {
			color: var(--offWhite);
			background-color: var(--blue);
		}

	.main-nav-item-on .sub-nav.sub-nav-grouped {
		min-width: 580px;		
	}

.sub-nav-grouped a:nth-child(odd) {
	border-right: 1px solid var(--black);
	float: left;
	clear:both;
	width: 50%;
}

.sub-nav-grouped a:nth-child(even) {
	border-left: 1px solid transparent;
	margin-left: -1px;
	float: right;
	width: 50%;
}

/*Side Nav*/
a.active-section {
	background-color: var(--blue);
	color: var(--white);
	display: block;
	font-weight: bold;
	text-decoration: none;
	text-align: left;
	padding: 12px 12px;
	font-size: 20px;
}

a.side-sub-nav {
	background-color: var(--greyText);
	padding: 8px 12px;
	font-size: 15px;
	display: block;
	color: var(--white);
	text-decoration: none;
	text-align: left;
	margin-top: 1px;
}

	a.side-sub-nav.active {
		text-decoration:underline;
	}

a.sub-child {
	background-color: var(--footerGrey);
	margin-top: 0px;
	border-top: 1px solid var(--footerGrey);
}
	a.side-sub-nav.sub-child.active {
		text-decoration:underline;
	}

span a.side-sub-nav.sub-child:nth-child(1) {
	border-top: none;
}

a.active-section:hover, a.side-sub-nav:hover {
	text-decoration: underline;
}

/*Common Page Styles */
#inside-header, .blog-body .ms-PostTitle {
	font-weight: 400;
	font-style: normal;
	font-size: 27px;
	color: var(--blue);
	text-transform: none;
	border-bottom: solid 4px #a1a9b1;
	width: 100%;
}
.body-header, p.body-header {	
	font-weight: 400;
	font-style: normal;
	font-size: 27px !important;
	color: var(--blue);	
	text-transform: none;
	margin-top: 60px !important;
	text-indent: 0 !important;
	border-bottom: solid 4px #d6d8da;
}
#inside-body .body-header:first-of-type {
	margin-top:30px !important;
}
#inside-body {
	font-size:17px;
}
img.bio-picture, span.bio-picture img {
	text-indent: 35px;
	background-color: transparent;	
	width: 152px;
	height: auto;
	float: left;
	margin: 0px 15px 15px 0px;	
}
span.float-right, img.float-right {
	padding: 10px;
	float: right;
	padding-right: 0px;
	padding-top: 0px;
}
span.float-left, img.float-left {
	padding: 10px;
	float: left;
	padding-left: 0px;
	padding-top: 0px;
}
.disclaimer {
	display:block;
	font-size:14px;
	clear:both;
	font-style:italic;
}
hr {
	clear:both;
}
/* BEGIN - styles for menu bar*/
header .left-container {
	display:none;
}
.ani-menu-bar {
	display: none;
	cursor: pointer;
	z-index: 49;
	position: absolute;
	left: 0px;
	top: 0px;
	border: 1px solid transparent;
	border-radius: 0px;
	padding: 10px 12px;
	margin-right: 20px;
	margin-top: 0px;
	height: 79px;
	width: 79px;
}

.bar1, .bar2, .bar3 {
	width: 36px;
	height: 4px;
	background-color: var(--blue);
	margin: 9px auto;
	transition: 0.4s;
	border-radius: 2px;
}

.ani-menu-bar.change {
	background-color: var(--greyText);
}
/* Rotate first bar */
.change .bar1 {
	-webkit-transform: rotate(-45deg) translate(-12px, 9px);
	transform: rotate(-45deg) translate(-12px, 9px);
}

/* Fade out the second bar */
.change .bar2 {
	opacity: 0;
}

/* Rotate last bar */
.change .bar3 {
	-webkit-transform: rotate(45deg) translate(-10px, -7px);
	transform: rotate(45deg) translate(-10px, -7px);
}

.change .bar1, .change .bar2, .change .bar3 {
	background-color: var(--offWhite);
}
/* END - styles for menu bar*/

.icon-hide {
	display: block;
}

.img-rotate90 {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	padding-right: 6px !important;
	margin-top: -3px !important;
}

footer {
	background-color: var(--footerGrey);
	border-bottom: 4px solid var(--blue);
	clear: both;
	color: var(--white);
}
	footer a {
		color: var(--white);
		font-family:var(--fontBold);
	}
.footer-nav-container a {	   
    font-size: 16px;    
	line-height:1.7;	
}
	.footer-nav-container a:nth-child(odd):after {
		content: " | ";
		padding-left: 4px;
		padding-right: 4px;
	}
	.footer-nav-container a:nth-child(2n+1):before {
		content:" ";
		display:block;
		clear:both;
	}
footer .left-container {
	float:left;
}
footer .right-container {
	float:right;
	min-width:65%;
	text-align:right;
	font-size:15px;
}
footer .inner-container {
	padding-top: 30px;
	font-size: 14px;
	/*background: url("/images/common/footer-design.png") no-repeat;*/
}
#connect {
	width: 256px;
	height: 34px;
	background: url(/images/common/connect-bg.png?width=256) no-repeat;
	position: absolute;
	right: 0;
	bottom: 0;	
	color: #445464;
	font-size: 16px;
}
	#connect p {
		padding: 8px 10px 0 35px;
		float: left;
		margin: 0;
		font-size:14px;
		font-family:var(--fontBold);
		letter-spacing:-1px;
		color:var(--blue);
	}
	#connect img {
		padding-top:4px;
	}

/*
@media (max-width: 1080px) {
	
	header .inner-container div.left-container, header .inner-container div.right-container {
		min-width: 40%;
		display: inline-block;
	}

	.main-nav-item a {
		font-size: 17px;
	}

	.main-nav-item {
		padding: 6px 20px;
	}
	
}*/
.main-nav-item .sub-nav a.main-mobile-subs {
	display: none;
}

@media (max-width: 1080px) {
	.main-nav-item .sub-nav a.main-mobile-subs {
		color: var(--white);
		background-color: var(--footerGrey);
		display: block;
	}
	.top-nav a {
		font-size: 13px;
		padding: 5px 4px 5px 8px;
		margin-top: 5px;
	}
	.top-nav a:first-child {	
		margin-top: 0px;
	}
		.top-nav a::before {			
			border-bottom: 26px solid transparent;
			border-right: 26px solid #00687f;			
			left: -26px;			
		}

	.inner-overlayer {
		/*/content: url("/images/home/heroOverlay-mobile.png");*/
		width: 100%;
		height: 100%;
		text-align: center;
	}

	body {
		padding-top: 79px;
	}

	.logo-container {
		padding-top:7px;
	}

	header {
		height: 79px;
		box-shadow: 0 0px 8px 0 rgba(0, 0, 0, 0.11);
		position:fixed;
		top:0px;
		min-height:79px;
	}

		header.open {
			box-shadow: inset 0 -2px 5px rgba(0, 0, 0, 0.2);
		}

		header img {
			max-height: 47px;
			width:auto;
		}

		header .inner-container {
			height: 79px;
			padding: 0px 10px;
			
		}
		header .left-container {
			display:block;
		}

	.nav-container {
		/* display:none;*/
	}

	.top-bar-icon {
		display: none;
	}

	.top-bar a {
		padding: 17px 12px;
	}

	.ani-menu-bar {
		display: block;
	}

	.main-nav-container {
		/*display: none;*/
		margin-left: 0px;
		margin-top: 0px;
	}

	.main-nav-item a {
		font-size: 16px;
	}

	.main-nav-item:hover, .main-nav-item.active {
		background-color: var(--white);
		color: var(--blue);
	}

	.nav-container .inner-container {
		display: block;
		padding-top: 30px;
		padding-left:0px;
		padding-right:0px;
	}

	.left-nav-container {
		display:none;
	}
	.inner-content-container {
		width:100%;
	}
	/*   .main-nav-container-open {
        display: block;
    }*/
	.drawer {
		position: fixed;
		z-index: 49;
		top: 79px;
		left: -300px;
		height: calc( 100% - 79px);
		width: 242px;
		background: var(--blue);
		/*background-image: url('/images/common/background.png');
		background: var(--blue) url('/images/common/background.png');*/
		overflow-x: visible;
		overflow-y: visible;		
		-webkit-transform: translate3d(0, 0, 0);
		-ms-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		transition: left, right, -webkit-transform;
		transition: transform, left, right;
		transition: transform, left, right, -webkit-transform;
		transition-timing-function: ease-in-out;
		transition-duration: 150ms;
		border-right: none;
		background-repeat: no-repeat;
		background-position: 90% bottom;
	}

	.main-nav-container-open.drawer {
		-webkit-transform: translate3d(300px, 0, 0);
		-ms-transform: translate3d(300px, 0, 0);
		transform: translate3d(300px, 0, 0);
	}

	header .inner-container div.top-nav {
		/*display: none;*/
		font-size:13px;
	}

	header .inner-container div.search-nav {
		display: block;
		width: auto;
		padding-right: 24px;
	}

	#searchForm {
		z-index: 200;
		position: absolute;
		position: absolute;
		right: 70px;
		top: 12px;
	}

		#searchForm.open {
			width: calc(100% - 150px);
		}

	.main-nav-item {
		display: block;
		text-align: left;
	}

		.main-nav-item:hover {
			background-color: var(--offWhite);
			color: var(--blue);
		}

			.main-nav-item:hover a {
				font-weight: bold;
				color: var(--blue);
			}

	.main-nav-item-on .sub-nav {
		top: 0px;
		left: 100%;
		border-top: 0px;
		margin-left: 0px;
		width: calc(100vw - 242px);
	}

		.main-nav-item-on .sub-nav a {
			white-space: normal;
			font-size: 16px;
		}

	.page-description {
		width: 100%;
	}

	.sub-page-header {
		background-position: right 32px;
	}

	footer .left-container, footer .right-container {
		float: none;
		width: 100%;
	}

	footer .left-container {
		padding-bottom: 30px;
	}

	.footer-nav-container {
		justify-content: space-between;
		align-items: flex-start;
	}

	.footer-nav-group {
		min-width: 33%;
	}

	.main-nav-item-on .sub-nav.sub-nav-grouped {
		min-width: none;
	}
		.main-nav-item-on .sub-nav.sub-nav-grouped {
			min-width: calc(100% - 242px);
		}
	.sub-nav-grouped a:nth-child(odd) {
		border-right: none;
		float: none;
		width: 100%;
	}

	.sub-nav-grouped a:nth-child(even) {
		border-left: none;
		margin-left: 0px;
		float: none;
		width: 100%;
	}
	
	footer .inner-container {
		border-top: 10px solid var(--blue);
	}
	
}
@media (max-width:680px) {
	footer .inner-container {
		padding-bottom:28px;
	}
}

@media (max-width: 560px) {	

	h1 {
		font-size: 26px;
		line-height: 1.2
	}
}

@media (max-width: 480px) {
	.main-nav-item-on .sub-nav {
		position: relative;
		left: 0px;
		background-color: transparent;
		border-right: none;
		box-shadow: none;
		margin-left: -20px;
		width: calc(100% + 40px);
	}

	.footer-nav-group {
		min-width: 50%;
		float: left;
		padding-bottom: 20px;
	}

	.footer-nav-container {
		display: block;
	}

	.main-nav-container-open.drawer {
		width: 100%;
		overflow-y: auto;
	}

	h3 {
		font-size: 16px;
		line-height: 1.2;
	}

	.top-nav a {
		font-size: 13px;
		padding: 5px 4px 5px 8px;
		margin-top: 5px;
	}

		.top-nav a:first-child {
			margin-top: 0px;
		}

		.top-nav a::before {
			content:"";
			border-bottom: 0px solid transparent;
			border-right: 0px solid #00687f;
			left: 0px;
		}
		header img {
			max-height:36px;
		}
	span.float-right, img.float-right, span.float-left, img.float-left {
		padding: 0px;
		float: none;
		display: block;
		padding-right: 0px;
		padding-top: 0px;
		width: 100%;
	}
	.float-right img, .float-left img {
		width:100%;
	}
}
@media (max-width: 410px) {
	.top-nav a {		
		padding: 0px 0px 0px 0px;
		margin-top: 2.5px;
		background-color:transparent;
		color:var(--blue);
	}
	header .inner-container {
		justify-content:space-between;
	}
	.ani-menu-bar {
		height:38px;
		width:38px;
	}
	.bar1, .bar2, .bar3 {
		margin:3px auto;
		height:2px;
		width:20px;
	}
	.change .bar1 {
		-webkit-transform: rotate(-45deg) translate(-4px, -3px);
		transform: rotate(-45deg) translate(-4px, -3px);
	}
	.change .bar3 {
		-webkit-transform: rotate(45deg) translate(-10px, -3px);
		transform: rotate(45deg) translate(-10px, -3px);
	}
}
