.dropdown {
  display: inline-block;
  position: relative;
}
.dropdown-content {
  display: none;
  position: absolute;
  width: 100%;
  overflow: auto;
  box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.4);
  font-family: "Arial";
  font-size:1em;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown-content a {
  display: block;
  color: #000000;
  padding: 5px;
  text-decoration: none;
}
.dropdown-content a:hover {
  color: #ffffff;
  background-color: #000088;
}
   
.dropdownMem {
  display: inline-block;
  position: relative;
}
.dropdownMem-content {
  display: none;
  position: absolute;
  width: 100%;
  overflow: auto;
  box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.4);
  font-family: "Arial";
  font-size:12px;
  background-color: #E4EFFC;
}
.dropdownMem:hover .dropdownMem-content {
  display: block;
}
.dropdownMem-content a {
  display: block;
  color: #000000;
  padding: 5px;
  text-decoration: none;
}
.dropdownMem-content a:hover {
  color: #ffffff;
  background-color: #000088;
}