body {
  padding: 0;
  margin: 0 auto;
  font-family: "Helvetica Neue", "Helvetica", "Arial", "sans-serif";
  font-size: 12pt;
  color: #800000;
  text-align: left;
}

h1 {
  font-family: inherit;
  color: #800000;
  font-weight: bold;
  font-size: 16pt;
  text-align: left;
}

h2 {
  font-family: inherit;
  color: #800000; 
  font-weight: bold;
  text-align: left;
  font-size: 14pt;
}

h3 { 
  font-family: inherit;
  color: #800000;
  font-weight: bold;
  text-align: left;
  font-size: 12pt;
}

h4 { 
  font-family: inherit;
  color: #800000;
  font-size: 8pt;
}


p {
  font-family: inherit;
  font-size: 12pt;
  text-align: left;
  color: #800000;
}

.legal {
  color: white;
  text-align: center;
}

a,
a:link,
a:visited,
a:hover,
a:active {
  color: #01025F;
  font-weight: normal;
  text-decoration: none;
  border: 0;
  margin: 0;
  padding: 0;
}

ul {
     list-style-type: circle;
     padding-left: 20px;
     }

label {
  display: block;
  width: 175px;
  margin-bottom: 5px;
  text-align: right;
}

br {
	clear: left;
   }

.sidenav {
  position: absolute;
  top: 208px;
  width: 140px;
  margin: 3px 1px 1px 1px;
  padding-left: 0;
}

.sidenavButton {
  width: 140px;
  margin: auto;
  padding: 0;
}

.pagespecificcontent {
  position: absolute;
  left: 182px;
  top: 5px;
  width: 765px;
  margin: auto;
}

.mainidea {
  max-width: 1100px;
  text-align: left;
  width: 95%;
}

.footer {
  background-color: maroon;
  padding-left: 50px;
}






/* Navigation Bar Container */
.top-nav {
  background: #800000;
  border: 5px solid black;
  padding: 0;
  max-width: 1090px;
  z-index: 9999;
}

/* Main Menu */
.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.menu > li {
  position: relative;
}

.menu > li > a {
  display: block;
  padding: 15px 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
}

/* Neon Hover Effect */
.menu > li > a:hover {
  background: #222;
  color: Grey;
  text-shadow: 0 0 8px Grey;
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  background: #222;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 230px;
  top: 100%;
  left: 0;
  text-align: left;
  border: 1px solid #333;
}

.dropdown-menu li a {
  display: block;
  padding-left: 12px;
  padding-bottom: 9px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.dropdown-menu li a:hover {
  background: #333;
  color: Grey;
  text-shadow: 0 0 8px Grey;
}

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