/* CSS not necessary for menu to function, just for aesthetics*/
#menu {
  list-style: none;
  padding: 0;
  margin: 0;
  li {
    display: block;

    /* border-right: 1px solid #fff; */
    border: 2px solid blue;
    border-radius: 10px;
    background: #e7e7e7;
    color: #3b3b3b;
    text-decoration: none;
    padding: 0 1px;
    float: left;
    padding-left: 0;
    position: relative;
    line-height: 1em; /* was 4.5 em */
    width: 6.2em; /* Was 10em */
    text-align: center;
    &:hover {
      background-color: lightblue;
      color: #fff;
    }
    ul {
      position: absolute;
    }
    a {
      top: 0em;
      padding-top: 10px;
      padding-bottom: 10px;
      color: #3b3b3b;
      text-decoration: none;
      &:hover {
        color: #fff;
      }
    }
  }
  ul {
    /* border-top: 1px solid #fff; */
    list-style: none;
    padding: 0;
    margin-top: 0.6em;
    margin-left: 0.7em;
    li {
      ul {
        margin-top: -20px; /* Was -73px    */
        margin-left: 94px; /*<--  THIS ONE -  Was 170px    */
        /* width: 15em;  */
      }
    }
  }
  #drop-down {
    display: none;
  }
}
.maintitle {
  color: white;
  text-align: left;
  padding-left: 10px;
}