* {
	margin: 0;
	padding: 0;
}

html {
	width: 100%;
	overflow: visible;
	font-family: "Calibri", "Trebuchet MS", Arial, Helvetica, sans-serif;
	margin: 0px;
	padding: 0px;
}

body {
	width: 100%;
	font-family: "Calibri", "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 62.5%;
	background-color: #CBDBD8;
	box-sizing: border-box;
	margin: 0px;
	padding: 0px;
}

h1 {
	font-family: "Calibri", "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 3.8em;
	font-weight: bold;
	color: #236D64;
	width: 100%;
	border-bottom: 1px solid #236D64;	
	padding-bottom: 10px;
	margin-bottom: 20px;
}
h2 {
	font-family: "Calibri", "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 2.6em;
	font-weight: bold;
	color: #236D64;
	width: 100%;
	margin-bottom: 10px;
}
h3 {	
	background: linear-gradient(#246D64, #3F5351);
	font-family: "Calibri", "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 2.4em;
	font-weight: bold;
	text-transform: uppercase;
	color: #FFFFFF;
	width: 100%;
	padding: 8px 15px 8px 15px;
	box-sizing: border-box;
	margin: 40px 0px 10px 0px;
}

h4 {
	font-family: "Calibri", "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 2.0em;
	font-weight: bold;
	color: #236D64;
	width: 100%;	
	margin-bottom: 10px;
}
hr {
	height: 1px;
	background-color: #CCCCCC;
	color: #CCCCCC;
	margin: 15px 0px 15px 0px;
	clear: both;	
}

header {
	background-image: url(../images/header-bg.jpg);
	background-repeat: repeat-x;
	background-position: top;
	background-color: #FFFFFF;
	border-bottom: 10px solid #494949;
	width: 100%;
	z-index: 5000;
}
header .headerContent {
	max-width: 1000px;
	width: 100%;
	margin: 0px auto 0px auto;
	text-align: center;	
	padding: 30px 10px 0px 10px;
	box-sizing: border-box;
}
header .headerContent img {
	border: 0px;
	width: 100%;
	max-width: 950px;
}
header .headerContent .headerLogoLarge {
	margin: 0px auto 0px auto;
}
header .headerContent .headerLogoMedium {
	display: none;
}
header .headerContent .headerLogoSmall {
	display: none;
}
header .headerContent .headerSubTitle {
	color: #4F8B83;
	font-size: 2.7em;
	padding-top: 10px;
	box-sizing: border-box;
}

.navigation {
	clear: both;
	width: 100%;
	max-width: 1000px;
	padding: 10px 10px 0px 10px;
	box-sizing: border-box;
	margin: 20px auto 0px auto;
	text-align: center;
}
nav {
	max-width: 1000px;
	width: 100%;
	margin: 0px auto 0px auto;
	text-align: left;
	color: #FFFFFF;	
	padding: 0px 0px 0px 0px;
	text-align: center;
}
#nav {  }
#nav > a {
	display: none;
}
#nav li {
	position: relative;
}
 
/* first level */
#nav > ul {
	list-style: none;
	color: #FFFFFF;
	margin: 0px auto 0px auto;
	width: 100%;
}
#nav > ul > li {
	display: inline-block;
	width: 156px;
	height: 65px;
	margin: 0px 1px 0px 1px;
	vertical-align: middle;
}
 
/* second level */
#nav li ul {
	display: none;
	position: absolute;
	top: 100%;
	list-style: none;
	color: #FFFFFF;
	background-color: #93C72C;
	text-align: left;
	width: 220px;
	padding-top: 15px;
	z-index: 1001;
}
#nav li ul li {
	padding: 0px 10px 12px 10px;
}
#nav li ul li::before {content: "-"; margin-right: 7px;}
#nav li:hover ul {
	display: block;
}
#nav > ul > li .oneLinePad {
	padding-top: 10px;	
}

a.menuLink:link, a.menuLink:active, a.menuLink:visited {
	background: linear-gradient(#246D64, #3F5351);
	color: #FFFFFF;
	text-decoration: none;
	font-size: 2.0em;
	line-height: 1.0em;
	font-style: normal;
	font-weight: bold;
	text-transform: uppercase;
	font-family: "Calibri", "Trebuchet MS", Arial, Helvetica, sans-serif;
	padding: 10px 10px 10px 10px;
	border-top-right-radius: 10px;	
	border-top-left-radius: 10px;
	width: 100%;
	display: block;
	text-align: center;
	box-sizing: border-box;
	height: 65px;
}
a.menuLink:hover {
	background: linear-gradient(#333333, #444444);
	text-decoration: none;
	font-style: normal;
}
a.menuLinkPad:link, a.menuLinkPad:active, a.menuLinkPad:visited {
	background: linear-gradient(#246D64, #3F5351);
	color: #FFFFFF;
	text-decoration: none;
	font-size: 2.0em;
	line-height: 1.0em;
	font-style: normal;
	font-weight: bold;
	text-transform: uppercase;
	font-family: "Calibri", "Trebuchet MS", Arial, Helvetica, sans-serif;
	padding: 20px 10px 10px 10px;
	border-top-right-radius: 10px;	
	border-top-left-radius: 10px;
	width: 100%;
	display: block;
	text-align: center;
	box-sizing: border-box;
	height: 65px;
}
a.menuLinkPad:hover {
	background: linear-gradient(#333333, #444444);
	text-decoration: none;
	font-style: normal;
}

.mainContent {
	background-color: #FFFFFF;
	max-width: 980px;
	width: 100%;
	padding: 25px 25px 25px 25px;
	box-sizing: border-box;	
	border-radius: 10px;
	margin: 15px auto 15px auto;	
}
.mainContent p {
	font-size: 1.8em;
	line-height: 1.7em;
	color: #000000;	
	margin-bottom: 20px;
}
.mainContent ul {
	font-size: 1.8em;
	line-height: 1.5em;
	color: #000000;	
	margin: 20px 0px 20px 50px;
}
.mainContent ul li {
	list-style-type: none;	
}
.mainContent ul li:before {
  content: url('../images/bullet.png'); /* FontAwesome Unicode */
  display: inline-block;
  margin-left: -1.3em; /* same as padding-left set on li */
  width: 1.3em; /* same as padding-left set on li */
}
.mainContent .homeLeft {
	display: inline-block;
	width: 66%;
	vertical-align: top;
	padding: 0px 30px 0px 0px;
	box-sizing: border-box;
}
.mainContent .homeRight {
	display: inline-block;
	width: 33%;	
	vertical-align: top;
	padding: 0px 0px 0px 0px;
	box-sizing: border-box;
}
.mainContent .leftBox {
	width: 47%;
	display: inline-block;
	vertical-align: top;
	background-color: #EFF4F3;
	border: 1px solid #246D64;
	padding: 20px 20px 20px 20px;	
	box-sizing: border-box;
}
.mainContent .padder {
	display: inline-block;
	width: 4%;
}
.mainContent .rightBox {
	width: 47%;
	display: inline-block;
	vertical-align: top;
	background-color: #EFF4F3;
	border: 1px solid #246D64;
	padding: 20px 20px 20px 20px;
	box-sizing: border-box;
}
.mainContent .biogPic {
	float: left;
	margin: 0px 15px 30px 0px;
	border: 1px solid #236D64;
}
.mainContent .highlightBox {
	background-color: #EFF4F3;
	border: 1px solid #246D64;
	padding: 20px 20px 20px 20px;	
	box-sizing: border-box;
}
.mainContent .highlightBox blockquote {
	font-size: 1.6em;
	line-height: 1.6em;
	font-style: normal;	
	margin-bottom: 20px;
	color: #333333;
}
.mainContent .highlightBox p {
	font-size: 1.6em;
	line-height: 1.6em;
	margin-bottom: 20px;
	color: #333333;
}
.mainContent .currNewsTit {
	margin-top: 0px;	
}
.mainContent .leftImage {
	float: left;
	margin: 0px 20px 20px 0px;
	border: 1px solid #335E59;
	max-width: 280px;	
}
.mainContent .faqs{ /*header of 1st demo*/
	width: 100%;
	cursor: hand;
	cursor: pointer;
	font-family: "Calibri", "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 2.8em;
	font-weight: bold;
	color: #236D64;
	width: 100%;
	border-bottom: 1px solid #236D64;	
	padding-bottom: 10px;
	margin-bottom: 20px;
}
.mainContent .faqs .downArr{ 
	float: right;
	font-size: 0.8em;
}
.mainContent .answer {
	clear: both;
	margin: 0px 0px 20px 0px;
}
.mainContent .answer p {
	font-size: 1.8em;
	line-height: 1.7em;
	color: #000000;	
	margin-bottom: 20px;
}
.mainContent .answer blockquote {
	font-size: 1.8em;
	line-height: 1.7em;
	font-style: italic;	
	margin-bottom: 20px;
	color: #000000;
}
.mainContent .contactLeft {
	display: inline-block;
	width: 49%;	
	box-sizing: border-box;
	padding-right:30px;
}
.mainContent .contactLeft iframe {
	width: 100%;
	height: 100%;
	max-width: 400px;
	max-height: 300px;
	min-height: 300px;
}
.mainContent .contactRight {
	display: inline-block;
	width: 49%;	
	vertical-align: top;
	box-sizing: border-box;
}
.mainContent .highlightText {
	color: #236D64;
	font-weight: bold;
}
.mainContent p .highlightText {
	color: #236D64;
	font-weight: bold;
}

footer {
	clear: both;
	width: 100%;	
	background: linear-gradient(#246D64, #78A79D);
	border-top: 5px solid #494949;
}
footer .footerContent {
	max-width: 1000px;
	width: 100%;
	box-sizing: border-box;
	padding: 30px 10px 40px 10px;
	margin: 0px auto 0px auto;	
	text-align: center;
}
footer .footerContent .footerContact {
	display: inline-block;
	width: 28%;
	vertical-align: middle;
}
footer .footerContent .footerContact p {
	color: #FFFFFF;
	font-size: 2.0em;
	line-height: 1.2em;
	text-align: center;
}
footer .footerContent .footerLogos {
	display: inline-block;
	width: 40%;	
	vertical-align: middle;
}
footer .footerContent .footerLogos img {
	border: 0px;
	margin: 0px 15px 0px 0px;
}
footer .footerCopyright {
	border: 0px;
	color: #FFFFFF;
	font-size: 1.6em;
	width: 100%;
	box-sizing: border-box;
	margin: 0px auto 0px auto;
	padding: 10px 20px 50px 20px;
	text-align: center;
	background-color: #494949;
}

a.subMenuLink:link, a.subMenuLink:active, a.subMenuLink:visited {
	color: #FFFFFF;
	text-decoration: none;
	font-size: 1.3em;	
	font-style: normal;
	text-transform: uppercase;
}
a.subMenuLink:hover {
	text-decoration: underline;
	color: #333333;
	font-style: normal;
}
.mainContent a:link, a:active, a:visited {
	color: #236D64;
	text-decoration: underline;
}
.mainContent a:hover {
	text-decoration: none;
	color: #236D64;
}
a.copyrightLink:link, a.copyrightLink:active, a.copyrightLink:visited {
	color: #FFFFFF;
	text-decoration: underline;
	font-style: normal;
}
a.copyrightLink:hover {
	text-decoration: none;
	color: #CCCCCC;
	font-style: normal;
}

.clear {
	clear: both;
	height: 0px;
	padding: 0px;
	margin: 0px;	
}
.hidden {
	display: none;
	position: absolute;
	clip: rect(1px 1px 1px 1px); /* IE6 & 7 */
	clip: rect(1px, 1px, 1px, 1px);
}

@media screen and (max-width:999px) {
header {
	background-image: none;
	border-top: 10px solid #236D64;
	border-bottom: 0px;
	position: fixed;
	top: 0px;
}
header .headerContent {	
	padding: 10px 10px 30px 10px;
	margin-bottom: 20px;
}
header .headerContent .headerLogoLarge {
	display: none;
}
header .headerContent .headerLogoMedium {
	display: block;
	margin: 0px auto 0px auto;
	width: 100%;
	max-width: 896px;
}
header .headerContent .headerLogoSmall {
	display: none;
}
header .headerContent .headerSubTitle {
	font-size: 2.2em;
}

.navigation {
	clear: both;
	padding: 5px 0px 0px 0px; !important
	margin: 0px 0px 0px 0px;
	text-align: left;	
	border-bottom: 0px;
}
#nav {
	position: relative;
	top: auto;
	left: auto;
	text-align: left;
	margin: -38px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	background: linear-gradient(#246D64, #3F5351);
	height: 38px;
}

#nav > a {
	width: 3.125em; /* 50 */
	height: 3.125em; /* 50 */
	text-align: left;
	background-color: transparent;
	position: relative;
	padding: 8px 2px 2px 2px;
	box-sizing: border-box;
	text-decoration: none;
	text-align: left;
}
#nav > a span {
	color: #FFFFFF;
	font-size: 1.8em;
	font-weight: bold;
	text-decoration: none;
	margin: 0px 0px 3px 35px;
	padding: 0px 0px 0px 0px;
}
#nav > a:before {  
	content: "";
	position: absolute;
	font-size: 2.2em;
	top: 0.25em;
	width: 0.8em;
	height: 0.10em;
	background: #FFFFFF;
	box-shadow: 
    0 0.25em 0 0 #FFFFFF,
    0 0.5em 0 0 #FFFFFF;
	margin-left: 7px;
	margin-top: 6px;
}
#nav > a:after { top: 60%; }
#nav:not( :target ) > a:first-of-type,
#nav:target > a:last-of-type { display: block; }

/* first level */
#nav > ul {
	height: auto;
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	background-color: #FFFFFF;
	text-align: left;
	padding: 0px 0px 0px 0px;
	box-sizing: border-box;
	z-index: 1001;
}
#nav:target > ul {
	display: block;
	padding: 0px;
	text-align: left;
}
#nav > ul > li { 
	width: 100%; 
	float: none; 
	padding: 10px 10px 10px 10px; 
	border-top: 1px solid #FFFFFF; 
	margin: 0px 0px 0px 0px; 
	box-sizing: border-box;
	text-align: left;
	font-size: 0.9em;
	height: auto;
	background-color: #236D64;
}
#nav > ul > li > a {
	height: auto;
	text-align: left; /* 20 (24) */
}
#nav > ul > li:not( :last-child ) > a { 
	border-right: none;
}

/* second level */
#nav li ul {
	width: 100%;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	box-sizing: border-box;
	font-size: 1.0em;
	line-height: 0.8em;
}
#nav li ul {
	background-color: #236D64;
	position: static;
	font-size: 1.0em;
	padding: 0px;
	margin: 14px 0px 0px 0px;
}
a.menuLink:link, a.menuLink:active, a.menuLink:visited {
	background: #236D64;
	color: #FFFFFF;
	text-decoration: none;
	font-size: 1.8em;
	line-height: 1.0em;
	font-style: normal;
	font-weight: bold;
	text-transform: uppercase;
	font-family: "Calibri", "Trebuchet MS", Arial, Helvetica, sans-serif;
	padding: 0px;
	border-top-right-radius: 0px;	
	border-top-left-radius: 0px;
	width: 100%;
	display: inline;
	text-align: left;
	box-sizing: border-box;
	height: auto;
}
a.menuLink:hover {
	background: #236D64;
	text-decoration: underline;
	font-style: normal;
}

a.menuLinkPad:link, a.menuLinkPad:active, a.menuLinkPad:visited {
	background: #236D64;
	color: #FFFFFF;
	text-decoration: none;
	font-size: 1.8em;
	line-height: 1.0em;
	font-style: normal;
	font-weight: bold;
	text-transform: uppercase;
	font-family: "Calibri", "Trebuchet MS", Arial, Helvetica, sans-serif;
	padding: 0px;
	border-top-right-radius: 0px;	
	border-top-left-radius: 0px;
	width: 100%;
	display: inline;
	text-align: left;
	box-sizing: border-box;
	height: auto;
}
a.menuLinkPad:hover {
	background: #236D64;
	text-decoration: underline;
	font-style: normal;
}
.mainContent {
	margin-top: 235px;	
}
.mainContent .anchorLink {
  display: block;
  height: 235px; /*same height as header*/
  margin-top: -235px; /*same height as header*/
  visibility: hidden;
}
}

@media screen and (max-width:900px) {
footer .footerContent .footerContact {
	display: inline-block;
	width: 49%;
	margin: 30px 0px 0px 0px;
}
footer .footerContent .footerLogos {
	display: block;
	width: 100%;
}
}

@media screen and (max-width:820px) {
.mainContent .leftBox {
	width: 100%;
	display: block;
	margin-bottom: 20px;
}
.mainContent .padder {
	display: none;
}
.mainContent .rightBox {
	width: 100%;
	display: block;
}
}
@media screen and (max-width:765px) {
.mainContent {
	margin-top: 215px;	
}	
}
@media screen and (max-width:660px) {
.mainContent {
	margin-top: 200px;	
}
.mainContent .homeLeft {
	display: block;
	width: 100%;
	vertical-align: top;
	padding: 0px 0px 0px 0px;
	box-sizing: border-box;
	margin-bottom: 30px;
}
.mainContent .homeRight {
	display: block;
	width: 100%;	
	vertical-align: top;
	padding: 0px 0px 0px 0px;
	box-sizing: border-box;
}	
}
@media screen and (max-width:640px) {
header .headerContent .headerSubTitle {
	display: none;
}
footer .footerContent .footerContact {
	display: block;
	width: 100%;
	margin: 20px 0px 0px 0px;
}
.mainContent {
	margin-top: 160px;	
}
.mainContent .leftBox {
	font-size: 0.8em;
}
.mainContent .rightBox {
	font-size: 0.8em;
}
.mainContent .contactLeft {
	display: block;
	width: 100%;	
	padding-right:0px;
}
.mainContent .contactRight {
	display: block;
	width: 100%;	
	margin-top: 30px;
}
.mainContent .anchorLink {
  display: block;
  height: 160px; /*same height as header*/
  margin-top: -160px; /*same height as header*/
  visibility: hidden;
}
}
@media screen and (max-width:530px) {
.mainContent {
	margin-top: 140px;	
}
.mainContent .anchorLink {
  display: block;
  height: 140px; /*same height as header*/
  margin-top: -140px; /*same height as header*/
  visibility: hidden;
}
}
@media screen and (max-width:500px) {
.mainContent .leftImage {
	display: block;
	float: none;
	clear: both;
	margin: 0px 30px 30px 0px;
	border: 1px solid #335E59;
	width: 100%;
	max-width: 280px;	
}
}
@media screen and (max-width:400px) {
h1 {
	font-size: 3.0em;
}
header .headerContent {	
	padding: 10px 10px 20px 10px;
	margin-bottom: 20px;
}
header .headerContent .headerLogoLarge {
	display: none;
}
header .headerContent .headerLogoMedium {
	display: none;
}
header .headerContent .headerLogoSmall {
	display: block;
	margin: 0px auto 0px auto;
	width: 100%;
	max-width: 289px;
}
.mainContent .leftImage {
	float: none;
	margin: 0px 0px 20px 0px;
	border: 1px solid #335E59;
	max-width: 260px;
	width: 100%;	
}
footer .footerContent img {
	max-width: 80px;
	padding: 0px 5px 10px 5px;	
}
.mainContent {
	margin-top: 120px;	
}
.mainContent .anchorLink {
  display: block;
  height: 115px; /*same height as header*/
  margin-top: -115px; /*same height as header*/
  visibility: hidden;
}	
}