@charset "UTF-8";
/* CSS Document */

/*
Navy - 10-65-106, #0a416a
Light Blue Nav - rgb(238, 245, 252) , #eef5fc
Medium Blue - rgb(206, 68, 86) , #469bdb
Orange -  rgb(241, 109, 26 , )#f16d1a
*/
* {
	margin: 0;
	padding: 0;
	border: none;
}
body {
	all: unset;
	text-align: center;
	font: normal 16px/22px 'Arial', 'Helvetica', sans-serif;
    color: #444;
	background-color: #f5f9fc;
}
p {
	margin: 10px 0;
}
a {
	color: #f16d1a;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
	color: #469bdb;
}
/* MAKE A LINK APPEAR LIKE A BUTTON */
/* Make a link appear like a button */
a.button_link {
	color: #FFF;
	font-size: 1.2em;
	padding: 10px;  /* Wild card styles to zero out values */
	margin-top: 40px;
	background-color: #469bdb;
    border: solid 3px #0061b3;
	width: 300px;
	cursor: pointer;
	text-transform: uppercase;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	display: block;
}
a.button_link:hover {
    background-color: #f16d1a;
    border-color: #b14400;
}
h1 {
	margin: 10px 0;
	font-size: 2em;
	line-height: 1em;
}
h2, h3 {
	margin: 10px 0;
}
.navy-text {
	color: rgb(10,65,106);
	color: #0a416a;
}
h3.navy-text {
	margin-top: 40px;	
}
h1.navy-text {
    margin: 10px 0 !important;
}
.navy-bkg {
	background-color: rgb(10,65,106);
	background-color: #0a416a;
	color: #fff;
}
.light-blue {
	background-color: #e1ebf6;
	color: #0a416a;
}
.light-blue-text {
	color: rgb(238, 245, 252);
	color: #eef5fc;
}
.light-blue-menu {
	background-color: #e1ebf6;
	color: #0a416a;
	padding: 12px;
}
.light-blue-menu:hover {
	background-color: #0a416a;
	color: #e1ebf6;
}
.orange {
	color: rgb(241,109,26);
	color: #f16d1a;
}
.brown {
	color: rgb(190 100 44);
}
.vert-line-left {
	border-left: 2px solid #CCC;
}
.mtop20 {
    margin-top: 20px;
}
.mleft20 {
    margin-left: 20px;
}
header {
	background-color: #0d426a;
	color: #fff;
	padding: 20px;
}
#header-logo {
	width: 70%;
	max-width: 400px;
}
p.date {
	position: absolute;
	right: 12%;
	margin-top: -10px;
	/*background-color: red;*/
}
nav#menu {
	display: grid;
	grid-template-columns: auto auto auto auto auto auto auto;
	background-color: #e1ebf6;
	background-color: hotpink;
	position: relative;
	z-index: 50;
}
nav#menu a {
	text-decoration: none;
}
nav#menu a:hover {
}
.level-1 {
}
.level-2 {
}
.intro-holder {
	padding: 0px 20px 20px 20px;
}
/*ONLY TO BE A POSITIONING ELEMENT FOR ABSOLUTELY POSITIONED DIV THAT NEEDS TO OVERLAY CONTENT BELOW*/
.secondaryREL {
position: relative;
width: 100%;
}
#subscription-secondary, #advertisements-secondary {
position: absolute;
width: 100%;
display: none;
}
.content-holder {
	width: 80%;
	text-align: center;
	margin: auto;
	background-color: white;
}
div.grid-container {
	width: 100%;
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 0;
/*    background-color: #2196F3;*/
    padding: 0;
}
section#left70 {
	margin-top: 30px;
	padding: 0 40px 20px 40px;
/*	background-color: green;*/
	text-align: left;
}
.article {
padding: 20px 0px;
}
section#right30 {
	margin-top: 30px;
	padding: 0px;
/*	background-color: tan;*/
	text-align: left;
}
footer {
	padding: 10px 0;
}
div.centered_button_container {
    text-align: center;
    margin: auto;
}
@media only screen and (max-width: 1080px) {
.content-holder {
	width: 92%;
	}
}

@media only screen and (max-width: 864px) {
nav#menu {
	grid-template-columns: auto auto auto auto;
	}
.content-holder {
	width: 100%;
	}
div.grid-container {
    grid-template-columns: 100%;
	}
section#right30 {
	text-align: center;
	}
}


