/* Custom page CSS
-------------------------------------------------- */
/* Not required for template or sticky footer method. */



body {
  font-family: Noto Sans, Calibri, sans-serif; 
  font-size: 11pt; 
  background-color: whitesmoke;
  
  padding: 0%;
  margin: 0%;
}

a {
  font-family: Noto Sans, Calibri, sans-serif; 
  color: rgb(#011a27); 
  text-decoration: none;
}

p{
  text-align: justify;
}
.orange {
  color: #e47b10;
}

.darkblue{
  color: #011a27; 
}

.lightblue{
  color: #82bdff; 
}

header {
  font-family: Noto Sans, Calibri, sans-serif; 
  font-size: 11pt; 
  margin-bottom: 3px;
  text-align: center;
  box-shadow: 0 3px 0 0 #82bdff;
  
}


header img#Logo{
  height: auto;
  width: 225px;
 
}




nav {
  
  text-align: center;
  display: inline;
  margin-left: 0%;
  width: 100%;
 
}


/*nav #ul {
  width: 100%;
  list-style: none;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  margin: 0%;
  padding: 0%;
} */

nav ul{
  margin: 0%;
  margin-bottom: 3px;
  padding: 1%;
  background-color: #011a27;
  box-shadow: 0 3px 0 0 #82bdff;
}

.nav li {
  
  
  margin: 0;
  padding: 0;
  padding-bottom: 10pt;
  font-size: 1.5em;  
}

div.nav a
{
    text-decoration: none;
    /*font-size: 16px;*/
    
    color: whitesmoke;
    position: relative;
    z-index: 0;
    cursor: pointer;
}


div.nav a:before, div.nav a:after
{
    position: absolute;
    left: 0px;
    width: 100%;
    height: 2px;
    background: #e47b10;;
    content: "";
    opacity: 0;
    transition: all 0.3s;
}

div.nav a:before
{
    top: 0px;
    transform: translateY(10px);
}

div.nav a:after
{
    bottom: 0px;
    transform: translateY(-10px);
}

div.nav a:hover:before, div.nav a:hover:after
{
    opacity: 1;
    transform: translateY(0px);
}

div.nav li.active a{
  
  color:#82bdff;
  font-weight: bold;
}

div.nav a:active{
  background-color:#011a27;
  color:#e47b10;
  padding: 5pt;
}



main{
  background-color: rgba(192, 192, 192, 0.2);
  font-size: 12pt; 
  padding: 15pt;
  margin: 0%;
  text-align: center;
  overflow-y: scroll;
  scroll-behavior: smooth;
}
main li {
  list-style: none;
  text-decoration: none;
  text-align: left;
  
}
main li a {
  display: block;
}

article{
  display: block;
  margin-left: 5%; 
  margin-right: 5%; 
}

footer {
  background-color: #011a27ff; 
  font-family: Noto Sans, Calibri, sans-serif; 
  font-size: 11pt; 
  color: whitesmoke;
  text-align: center;
  padding-bottom: 70%;
  /* position: fixed;
  padding-top: .6em;
  padding-bottom: .6em;
  bottom: 0;
  left: 0;
  right: 0;*/
}

footer .content{
  padding-top: 1%;
  padding-bottom: 1%;
}

footer .footer_note{
  font-size: 8pt;
  color: #82bdffff;
  width: 100%;
  padding-bottom: 1%;
  
  
}

footer .current_date{
  text-align: center;
  
  margin: 0pt;
  width: 100%;
  display: inline-block;
  
}




@media (min-width: 680px) {
  
  header img#Logo{
    height: auto;
    width: 450px;
  }
  
  nav ul {	
    flex-direction: row;  
        
  }
  .nav li {
    font-size: 1.3em;
    display: inline;
    margin-right: 2%;
    margin-top: 5pt;
    margin-bottom: 5pt;
  }  

 
  article{
    margin-left: 15%; 
    margin-right: 15%; 
  }
  
  
}

@media (min-width: 1280px) {
  header img#Logo{
    height: auto;
    width: 450px;
  }

  article{
    margin-left: 20%; 
    margin-right: 20%; 
  
  }
}

@media (min-width: 1580px) {
  header img#Logo{
    height: auto;
    width: 450px;
  }

  article{
    margin-left: 35%; 
    margin-right: 35%; 
  }
  
  
}

@media (min-width: 2500px) {
  header img#Logo{
    height: auto;
    width: 450px;
  }
  article{
    margin-left: 40%; 
    margin-right: 40%; 
  }
  
  
}