/*Pallet
Dark Blue: #203864
light Blue: #64A0FF


*/

h1, h2, h3, h4, h5, h6 {
    font-family: sans-serif;
}
body {
    max-width: 80%;
    margin: auto;
    
}
header{
    min-width: 400px;
    /*background-color:lightblue;*/
}
nav {
     position: relative;
    top:0px;
    min-width: 400px;
    /*background-color: darkblue;*/
}
nav a{
    float:left;
    padding: 10px 0px;
    text-decoration: none;
    /*background-color: darkblue;*/
    min-width: 25%;
    
}
nav a:link , nav a:visited {
    color:white;
    font-family: sans-serif;
    font-size: 1.1em;
    text-align: center;
    background-color: #203864;
}
nav a:hover {
    background-color: #64A0FF;
}

.main {
    /*padding-top: 150px;*/
    position: relative;   
    
}
article {
    clear: both;
    margin: 0px;
    padding: 0px;
}
.subNav {
    background-color: #203864;
    color:white;
}
.subNav ul {
    list-style: none;
    padding: 5px;
}
.subNav li {
    padding: 3px;
}
.subNav a:link, .subNav a:visited {
    color:white;
    font-family: sans-serif;
    font-size: 1em;
    text-align: center;
    padding: 3px 3px;
    text-decoration: none;
}
.subNav a:hover {
    color: lightgray;
}

article section {
    /*position:relative;*/
    float: left;
    max-width: 70%;
    padding: 0px 10px;
}
article section.wide {
    max-width: 100%;
    padding: 0px;
}
article h1 {
    color:black;
    font-size: 1.5em;
    clear:both;
}
article h2 a {
    color:#203864;
    text-decoration-color: lightgray;
    font-size: .9em;
}
article h2 img {
    opacity: 1.0;
}
article h2 img:hover {
    opacity: 0.75;
}
.float {
    float:left;
    padding: 5px 20px;
}
article p {
    color:black;
    font-size: 1em;
    font-family: calibri, sans-serif;
    text-align: justify;
}
footer {
    text-align:center;
    position: relative;

    margin: 0px;
    clear:both; 
    background-color: #203864;
    
}
footer h2 {
    color:white;
    font-size: .9em;
    text-decoration: underline;
    line-height: 0px
}
footer p {
    line-height: 0px
}
footer a:link, footer a:visited {
    color: white;
    font-size: .9em;
    text-decoration: none;
    font-family: calibri, sans-serif;
}
footer a:hover {
    color:lightgray;
}
footer section {
    float: left;
    margin: 10px;
    min-width: 15%
}

footer #copyright {
    clear: both;
    text-align: center;
    color:gray;
    
}

.dropbtn {
    /*background-color: #4CAF50;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer; */
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    /*--leftpos: left;*/
    /*display: inline-block;*/
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position:absolute;
    z-index: 1;
    float:left;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 10px 10px;
    text-decoration: none;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #64A0FF}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display:flex;
    position:absolute;
    
    top:40px;
    /*left: 0px;*/
    width:65%;
    /*left: var(--leftpos);*/
}

