#header {
         /* Provide scrollbars if needed and fix the header dimensions */
         overflow: auto;
         overflow-x: hidden;
         position: absolute;
         width: 100%;
         height: 10px;
         }

#main {
       /* Provide scrollbars if needed, position below header, and derive height from top/bottom */
      overflow: auto;
	   overflow-x: hidden;  
	   overflow-y: scroll; 
	   position: fixed;
       width: 70%;
       top: 40px;
       bottom: 0;
            }

body {
  font-family: sans-serif;
  margin: 4px;
  padding: 0;
}

section + section {
  margin-top: 4px;
}

h2 {
  font-size: 1.25em;
}

h2, p {
  margin: 0;
}

@media (min-width: 600px) {
  svg{
    width: 100%;
	float: left;
  }

  aside {
    width: 28%;
	float: right;
  }
}
.TopLeftLinks {
	display: none;  
/*	stroke: #005695; */
	font-size: 24px; 
	text-decoration: underline;
}

 /* Style the buttons that are used to open and close the accordion panel */
.accordion {
    cursor: pointer;
    padding: 12px;
    width: 50%;
    border-radius:16px;
/*    border: black;   */
    outline: black;   
    text-align: left;
    transition: 0.4s;
    display: inline-block;
    font-size: 16px;
    color: white;
    background-color: #0033A0;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
/*    box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);  */

.active, .accordion:hover, .accordion:focus {
    background-color: #005695;  
}

/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 0 12px;
    background-color: white;
    display: none;
    overflow: hidden;
} 

  footer {
    clear: both;
    padding: 4px;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
  }
/* ==================================== */
/* Button (inside div class="dropdown") */
.button {
    background-color: inherit;
    color: black;
    outline: black;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.button:hover, .button:focus {
    background-color: #0033A0;
}
/* ==================================== */
/* Input */

.input {
    background-color: inherit;
    color: black;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}
.input:hover, .input:focus {
    background-color: #005695;
}

/* =========================================================================== */
 /* Dropdown Button */
.dropbtn {
    background-color: #0033A0;
    color: white;
    padding: 16px;
    font-size: 16px;
    outline: black;
/*    border: none;   */
    cursor: pointer;
    border-radius:16px;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
    background-color: #005695;
}

/* ==================================== */
/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 260px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;} 