body{
    background-color: lightskyblue;
    font-family: Verdana, sans-serif;
    color:#303030;
    line-height: 160%
}

h1,h2,h3,h4,h5,h6{
    font-family: Georgia, serif;
}

h1 a{
    text-decoration: none;
    color: #303030;
}

img{
    width: 100%;
    height: auto;
}

.wrapper {
    width: 75%;
    margin: 10px auto;
    padding: 5px 30px;
}

.header{
    margin:auto;
    text-align: center;
    font-size: 138%;
    line-height: 80%;
}

/* Navbar container */
.navbar{
    width: 102%;
    overflow: hidden;
    background-color: #003366;
    font-family: Arial;
    margin: 0px -8px;
    text-align: center;
}

/* Links inside the navbar */
.navbar a {
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    line-height: 100%;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px; 
  height: 44px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  line-height: 100%;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #006699;
}

/* Add a color to the active/current link */
.navbar a.current {
  background-color: #000033;
  color: white;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: aliceblue;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: lightsteelblue;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.all-content{
    width: 100%;
}

#main-content{
    width: 65%;
    float: left;
    margin-right: 5%;
}

#main-content a{
    text-decoration: underline;
    color: navy;
    font-size: 16px;
}

#secondary-content{
    width: 30%;
    float: left;
    line-height: 30px;
}

#secondary-content h3{
    border-bottom: solid 2px steelblue;
}

#secondary-content ul{
    list-style-type: none;
    text-align: left;
}

#secondary-content a{
    color: navy;
    margin: 0px 0px 0px -40px;
    font-size: 14px;
}

.footer{
    width: 102%;
    padding: 20px;
    text-align: center;
    color: aliceblue;
    background-color: #003366;
    margin-left: -8px;
    clear: both;
}

.footer a{
    color: aliceblue;
    font-size: 18px;
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: lightgrey;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

#email-list{
    line-height: 40px;
}

#email-list ul{
    list-style-type: square;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #ddd;
}

th, td {
  text-align: left;
  padding: 16px;
}

tr:nth-child(odd) {
  background-color: white;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

#rules ul{
    list-style-type: disc;
}

.navbar .icon{
    display: none;
}

@media screen and (max-width: 600px){
    .header{
        margin:auto;
        text-align: center;
        font-size: 120%;
        line-height: 100%;
    }
    
    .wrapper{
        width: 100%;
    }
    
    #main-content{
        width: 100%;
        float: left;       
    }
    
    #secondary-content{
        width: 100%;
        float: left;
    }
    
    #backtotop{
        display: none;
    }
  
}

@media screen and (max-width: 600px) {
  .navbar a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .navbar a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .navbar.responsive {position: relative;}
  .navbar.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .navbar.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .navbar.responsive .dropdown {float: none;}
  .navbar.responsive .dropdown-content {position: relative;}
  .navbar.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}
    