/************* GENERAL SITE STYLES **************** */

body {
	width : 100%;
	height : 100%;
	font-family: 'Arial', sans-serif;
	color : #000;
	line-height : 1.6em;
	font-size : 16px;
	background-color: #e6e5e5;
}

#container {
	max-width: 75rem;
	margin-left: auto;
	margin-right: auto;
	background-color: #fff;
	margin-top: 20px;
}

#skip a {
	padding:6px;
	position: absolute;
	top:-140px;
	left:0px;
	color:#000;
	background: #fff;
	border-right:1px solid white;
	border-bottom:1px solid white;
	border-bottom-right-radius:8px;
	background:transparent;
	-webkit-transition: top 1s ease-out, background 1s linear;
	transition: top 1s ease-out, background 1s linear;
	z-index: 100;
}

#skip a:focus {
	position:absolute;
	left:0px;
	top:0px;
	background:#fff;
	outline:0;
	-webkit-transition: top .1s ease-in, background .5s linear;
	transition: top .1s ease-in, background .5s linear;
}

.skip a {
	position:absolute;
	left:-10000px;
	top:auto;
	width:1px;
	height:1px;
	overflow:hidden;
	color: #000;
	background: #fff;
}

.skip a:focus {
	position:relative;
	left:0px;
	top:0px;
}

/***************** HEADER **************** */

header {
	margin: 0 1rem;
}

.header-container {
	position : relative;
	padding-top : 30px;
	padding-bottom : 15px;
	text-align: center;
}

.header-logo {
	margin: 10px auto;
	display: block;
	position : relative;
	order : 1;
	width: 100%;
	max-width: 460px;
}

header a {
	color: #0b3d7a;
}

i.fas.fa-home {
	font-size: 1.3rem;
	transition: 1s all;
}

a.home-icon:hover > i, a.home-icon:focus > i {
	transform: scale(.8);
}

@media screen and (min-width: 48em) {
	.header-container {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.header-search-container {
	margin-left: auto;
	text-align: right;
	margin-top: -20px;
}

.header-logo {
	margin: -19px 58% -6px .3%;
}


}

/***************** NAVIGATION **************** */

#main-menu-state {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
	overflow: hidden;
	clip: rect(1px,1px,1px,1px);
}

.main-menu-btn {
	position: relative;
	display: block;
	padding: 0.815em 40px;
	height: 24px;
	overflow: hidden;
	line-height: 26px;
	text-align: center;
	cursor: pointer;
	color: #fff;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

.main-menu-btn-icon, .main-menu-btn-icon:before, .main-menu-btn-icon:after {
	position: absolute;
	top: 50%;
	left: 15px;
	height: 2px;
	width: 24px;
	background: #fff;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.main-menu-btn-text {
	position: absolute;
	top: -99999px;
}

.main-menu-btn-icon:before {
	content: '';
	top: -7px;
	left: 0;
}

.main-menu-btn-icon:after {
	content: '';
	top: 7px;
	left: 0;
}

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon {
	height: 0;
	background: transparent;
}

.main-menu-btn-icon:before {
	content: '';
	top: -7px;
	left: 0;
}

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:before {
	top: 0;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:after {
	top: 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

#main-menu-state:not(:checked) ~ #site-navigation {
	display: none;
}

#main-menu-state:checked ~ #site-navigation {
	display: block;
}

/* Make sub indicators align to the left of the item */

.sub-arrow {
	position: absolute;
	top: 50%;
	margin-top: -17px;
	left: auto;
	right: 4px;
	width: 34px;
	height: 34px;
	overflow: hidden;
	font: bold 16px/34px monospace !important;
	text-align: center;
	text-shadow: none;
	background: rgba(0, 0, 0, 0.1);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
}

/* Hide sub indicator + when item is expanded - we enable the item link when it's expanded */

a.highlighted span.sub-arrow:before {
	display: block;
	content:'-';
}

nav#menu {
	background-color: #0b3d7a;
}

nav ul li ul {
	display : block;
	text-indent : 15px;
}

nav.nav ul {
	border-top: 1px solid #fff;
}

nav.nav li a {
	display : block;
	padding: .5rem 0.8rem;
	color : #fff;
	text-decoration : none;
	font-family: 'Lato', sans-serif;
	font-weight : 400;
}

nav.nav li a:hover, nav.nav li a:focus {
	text-decoration: underline;
}

@media screen and (min-width: 54em) {
	/****** Desktop Nav ******* */

.main-menu-btn {
	position: absolute;
	top: -99999px;
}

#main-menu-state:not(:checked) ~ #site-navigation {
	display: block;
}

.sub-arrow {
	display: none;
}

nav.nav ul {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

nav.nav ul ul {
	display: none;
}

nav.nav li {
	margin: auto;
}

nav.nav ul ul {
	position : absolute;
	width : 14rem;
	text-indent : 0;
	background-color: #0b3d7a;
}

nav.nav ul ul li {
	border-bottom: 1px solid #224f87;
}

nav.nav ul ul li a {
	padding: 7px 10px;
	margin: 0;
	font-size : 1em;
}


}

@media screen and (min-width: 75em) {
	nav.nav li a {
	padding: 4px 10px 3px;
	font-size: 1.2rem;
	margin: 5px;
}


}

/**************** SLIDESHOW & HEADER PHOTOS *************** */

.slideshow, .subpage-header-photo {
	display : none;
}

@media screen and (min-width: 48em) {
	.subpage-header-photo {
	position: relative;
	display: inline-block;
	border: 5px solid white;
	margin-bottom: -7px;
	background-color: #ffffff;
}

.slideshow img, .subpage-header-photo img {
	width : 100%;
}


}

/***************** MAIN BODY **************** */

p, .newsBody {
	margin: 15px 15px 10px 15px;
}

a {
	color: #0b3d7a;
}

a:hover, a:focus {
	text-decoration : none;
}

ul {
	margin: 5px 10px 5px 0;
}

.sidebar-content img, .main-content img {
	display : none;
}

img.show-mobile {
	display: block;
}

.button {
	margin: 15px 20px;
}

.button a {
	font-family: 'Lato', sans-serif;
	color: #0b3d7a;
	font-size: 1.25rem;
	text-decoration: none;
	border: 1px solid #0b3d7a;
	display: block;
	text-align: center;
	padding: 10px;
}

.button a:after {
	content: '\f0a9';
	font-family: 'Font Awesome 5 Free';
	font-weight: 700;
	padding-left: 4px;
	font-size: 1rem;
}

.button:hover a, .button a:focus {
	text-decoration: none;
	background-color: #0b3d7a;
	color: #fff;
}

.main-content, .sidebar-content {
	margin: 0 0 20px 0;
}

.signature {
	font-size : 1.7em;
	display : block;
	font-family: 'Yellowtail', cursive;
	margin: 10px 0 0 15px;
	font-weight: 700;
	color: #0b3d7a;
}

.collapsible-title {
	margin: 20px 15px;
	font-family: 'Lato', sans-serif;
	font-size: 18px;
}

.collapsible-title:after {
	content: '\f054';
	font-family: 'Font Awesome 5 Free';
	color: #0b3d7a;
	font-weight: 900;
	font-size: 1.2em;
	line-height: 1;
	margin-left: 10px;
	margin-top: 0px;
}

.collapsible-title:hover::after, .collapsible-title:focus::after {
	content: '\f078';
}

/*** SIDEBAR SUBMENUS ** */

.sidebar-menu ul {
	padding: 0;
	margin: 1rem;
}

.sidebar-menu li {
	list-style: none;
	border-bottom: 1px dotted #908f8f;
	padding: 2px 10px;
}

.sidebar-menu a {
	text-decoration: none;
	color: #000;
}

.sidebar-menu a:hover, a:focus {
	text-decoration: underline;
}

.gray-divider {
	width: 95%;
	height: 2px;
	background-color: #c9c8c8;
	margin: auto;
}

@media screen and (min-width: 48em) {
	
main {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.banner-subpages, .sidebar-content img {
	display : block;
}

.main-content {
	width : 62%;
	margin: 15px 2%;
	order : 2;
}

.sidebar-content {
	width : 32%;
	margin: 0 0 0 2%;
	order : 1;
	background-color: #e6e5e5;
}

.sidebar-content img {
	margin: 20px auto;
	width: 90%;
	max-width: 267px;
	outline: 5px solid #0b3d7a;
	outline-offset: -8px;
}

.two-columns {
    column-count: 2;
}


}

@media screen and (min-width: 63em) {
	.main-content {
	width : 70.5%;
}

.sidebar-content {
	width : 23.5%;
}


}

/************* HTAGS FOR TITLES **************** */

h1 {
	font-size : 2.1875rem;
	font-family: 'Lato', sans-serif;
	color : #0b3d7a;
	display : block;
	font-weight : 400;
	padding: 10px 10px 10px 15px;
	margin: 9px 0;
	line-height : 1.1;
}

h2, .newstitle {
	font-size : 1.65rem;
	line-height : 1.1;
	font-family: 'Lato', sans-serif;
	color : #0b3d7a;
	font-weight : 400;
	padding: 10px 15px 10px 5px;
	margin: 0 0 0 10px;
}

h2.subcategory {
	font-size: 1.2rem;
}

h3, .sidebar-top {
	font-size: 1.6rem;
	line-height : 1.2;
	font-family: 'Lato', sans-serif;
	color : #fff;
	background-color : #0b3d7a;
	text-align : left;
	font-weight : 400;
	padding: 16px 15px;
	position: relative;
}

.sidebar-top {
	margin-top: 1.5rem;
	min-height: 29px;
}

h3:before, h3:after, .sidebar-top:before, .sidebar-top:after {
	content:'';
	height: 1px;
	width: 100%;
	position: absolute;
	background-color: #0b3d7a;
	left: 0;
	top: -4px;
}

h3:after, .sidebar-top:after {
	top: auto;
	bottom: -4px;
}

h4 {
	font-size: 1.3rem;
	line-height: 1.2em;
	font-family: 'Lato', sans-serif;
	color: #0b3d7a;
	padding: 10px 0 5px 0;
	margin: 15px;
	font-weight: 400;
}

@media screen and (min-width: 48em) {
	h3 {
	text-align : center;
}


}

/***************** FOOTER **************** */

footer {
	font-family: 'Lato', sans-serif;
	font-size: .875rem;
	line-height: 1.4;
	margin-left: auto;
	margin-right: auto;
	max-width: 75rem;
	background-color: #0b3d7a;
	color: #fff;
	position : relative;
	text-align: center;
}

footer a {
	color : #fff;
}

footer a:hover, footer a:focus {
	text-decoration: none;
}

.footer-container {
	padding: 20px 15px;
}

#copyright {
	font-size : .875rem;
	line-height : 1.1;
	font-family: 'Lato', sans-serif;
	color : #0b3d7a;
	background-color: #e6e5e5;
	display : block;
	padding: 10px;
	text-align : Center;
}

/******************* SEARCH********************** */

.search {
	margin-top: 10px;
}

.search_container {
	margin: 0 20px;
}

#form_search .form-field {
	display: flex;
}

#form_search .form-field label {
	color: transparent;
	width: 0;
}

input#sitesearch {
	margin: 0;
	padding-left: 10px;
	width: 10.3125rem;
}

input#btnSubmit {
	margin: 0 0 0 10px;
	border: 0;
	padding: 4px;
	border: 1px solid #0b3d7a;
	color: #0b3d7a;
	border-radius: 5px;
	background: #e6e5e5;
	font-size: .875rem;
}

input#btnSubmit:hover {
	color: #1b1c48;
	background-color: #fff;
	outline: 1px solid;
}

.header-search-container a {
	text-decoration: none;
}

.header-search-container a:hover, .header-search-container a:focus {
	text-decoration: underline;
}

.search_item_title {
	font-size: 1.2rem;
}

.search_item {
	padding: 15px 0;
	border-bottom: 1px solid #ddd;
}

label.hidden.sr-only {
	height: auto;
	position: relative;
	display: block;
	width: auto;
}

form {
	margin: 0 15px;
}

button[type="submit"] {
	margin: 10px 0;
}

/**************** A to Z Selector **************** */

.AtoZSelector {
	display: flex;
	margin: 15px;
	flex-wrap: wrap;
}

.AtoZLetter:after {
	content: '|';
	margin: 5px;
}

.AtoZLetter:last-child:after {
	content: '';
}

