html, body {
    margin:0;
    padding:0;
    background-color: #F0EAD6;
    font-family: Arial, Helvetica, sans-serif;
}

hr { color: darkblue; }

h1 {
font-family: arial, sans-serif;
font-weight: normal;
font-style: italic;
margin-top: 3px;
margin-bottom: 1px;
color: darkblue;
/*background-color: silver;*/
background-color: grey;
font-size: 40px;
}

h2 {
font-family: arial, sans-serif;
font-weight: normal;
margin-top: 0px;
margin-bottom: 1px;
margin-left: 5px;
margin-right:  5px;
color: darkblue;
font-size: 25px;
line-height: 1.6;
}

h3 {
font-family: arial, sans-serif;
font-weight: normal;
margin-top: 0px;
margin-bottom: 1px;
margin-left: 5px;
margin-right:  5px;
color: darkblue;
font-size: 18px;
line-height: 1.6;
}

p.bodyline {
   line-height: 1.8;
  }

ul {margin:auto;}
ol {margin:auto;}
li { line-height: 1.8;  margin-left: -10px; margin-right: 25px; }

/* https://www.w3schools.com/howto/howto_css_dropdown.asp */

/* Dropdown Button */
.dropbtn {
  background-color: #F0EAD6;
  color: black;
  padding: 6px;
  font-size: 16px;
  border: none;
}

/* 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: grey;
  min-width: 300px;
  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 on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
/*.dropdown:hover .dropbtn {background-color: #3e8e41;}*/
.dropdown:hover .dropbtn {background-color: grey;}