
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #0088CE;
}

ul li {
  float: left;
}

ul li a {
  display: block;
  color: white;
  text-align: center;
  padding: 5px 10px;
  margin-bottom: 0;
  text-decoration: none;
  font-size:12pt;
  background-color: #0088CE;
}

ul li a:hover {
  background-color: #89CE00;
}

ul li a:active {
  background-color: #89CE00;
}


/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Add a dark grey background color to menu links on hover */
.dropdown:hover {
  background-color: #89CE00;
}

/* Dropdown button */
.dropbtn {
  border: none;
  outline: none;
  color: white;
  padding: 5px 10px;
  background-color: #0088CE;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}



/* Dropdown content (hidden by default) */
.dropdown-content {
    font-size: 12pt;
    color: white;
    display: none;
    position: absolute;
    background-color: #89CE00;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    opacity: 0.6;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: white;
  padding: 5px 10px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #89CE00;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

