/* .dl adjusts fond size in Drop Down Menu listing */
.dl {
	FONT-WEIGHT: 300; FONT-SIZE: 11pt; COLOR: #000000; FONT-FAMILY: verdana,helvetica,arial; TEXT-DECORATION: none
}
.MenuRegular {
	FONT-WEIGHT: 300; font-size: 10pt; COLOR: #000000; FONT-FAMILY: verdana,helvetica,arial; TEXT-DECORATION: none
}

/* Style The Dropdown Button */
.dropbtn {
  background-color: #ceffcf;
  color: blue;
  margin: 2px;
  padding: 4px;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #dbf8dc;
  min-width: 300px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown, adjust text color */
.dropdown-content a {
  color: #000000;
  padding: 0px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #d3e1d3}

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

/* Hide the dropdown menu on click */
.dropdown:onclick .dropdown-content {  display: none;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: #d3e1d3;
}