html {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 300;
}
body{
  padding: 25px;
  background-color: #008080;
}
table{
  background-color: #FFF;
}
.banner{
  text-align: center;
  font-size: xx-large;
  color: #FFFFFF;
  font-weight: bold;
  margin: 16px 0px 16px 0px;
}

/**** Navigation Structure ****/
nav {
  float: right;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  float: left;
  position: relative;
}
nav ul li a {
  display: block;
  padding: 0 10px;
  line-height: 70px;
  background: #fa9708;
  color: #000000;
  text-decoration: none;
}
nav ul li a:hover {
  background: #FEBA01;
  color: #000000;
}
nav ul li a:not(:only-child):after {
  padding-left: 4px;
  content: "\25BC";
}
nav ul li ul li {
  min-width: 170px;
}
nav ul li ul li a {
  padding: 15px;
  line-height: 20px;
  z-index: 1;
}
.nav-dropdown {
  display: none;
  position: absolute;
  z-index: 1;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.20);
}
.nav-mobile {
  display: none;
  position: absolute;
  top: 18px;
  right: 13px;
  background: #FA9708;
  height: 70px;
  width: 70px;
}
#nav-toggle {
  position: absolute;
  left: 18px;
  top: 22px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 5px;
  width: 35px;
  background: #000000;
  position: absolute;
  display: block;
  content: "";
  -webkit-transition: all 300ms ease-in-out 0ms;
  -moz-transition: all 300ms ease-in-out 0ms;
  -o-transition: all 300ms ease-in-out 0ms;
  transition: all 300ms ease-in-out 0ms;
}
#nav-toggle span:before {
  top: -10px;
}
#nav-toggle span:after {
  bottom: -10px;
}
#nav-toggle.active span {
  background-color: transparent;
}
#nav-toggle.active span:before {
  -webkit-transform: translateY(10px) rotate(45deg);
  -moz-transform: translateY(10px) rotate(45deg);
  -ms-transform: translateY(10px) rotate(45deg);
  -o-transform: translateY(10px) rotate(45deg);
  transform: translateY(10px) rotate(45deg);
}
#nav-toggle.active span:after {
  -webkit-transform: translateY(-10px) rotate(-45deg);
  -moz-transform: translateY(-10px) rotate(-45deg);
  -ms-transform: translateY(-10px) rotate(-45deg);
  -o-transform: translateY(-10px) rotate(-45deg);
  transform: translateY(-10px) rotate(-45deg);
}
@media only screen and (max-width: 999px) {
  body{
    padding: 10px 5px;
  }
  .nav-mobile {
    display: block;
  }
  nav {
    width: 100%;
    padding: 70px 0 15px;
  }
  nav ul {
    display: none;
  }
  nav ul li {
    float: none;
  }
  nav ul li a {
    padding: 15px;
    line-height: 20px;
  }
  nav ul li ul li a {
    padding-left: 30px;
  }
  .nav-dropdown {
    position: static;
  }
}
@media screen and (min-width: 1000px) {
  .nav-list {
    display: block !important;
  }
}
.navigation {
  height: 70px;
  background: #FA9708;
}
.nav-container {
  max-width: 800px;
  margin: 0 auto;
  font-size: 15px;
  font-size: 0.9375rem;
}
.brand {
  position: absolute;
  padding-left: 10px;
  float: left;
  line-height: 70px;
  text-transform: uppercase;
  font-size: 1.4em;
}
.brand img {
  border: none;
  vertical-align: middle;
  height: 64px;
  width: 60px;
}
.brand a,
.brand a:visited {
  color: #000000;
  text-decoration: none;
}
