  /* myOakton Navigation CSS */

.topnav {
  overflow: hidden;
  background-color: #0a5a54;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: left;
  padding: 4px 6px;
  text-decoration: none;
  font-size: 1.1em;
}

.active {
  background-color: #0a5a54;
  color: white;
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
  min-width: 85px;
}

.dropdown .dropbtn {
  font-size: 1.2em;    
  border: none;
  outline: none;
  color: white;
  padding: 4px 12px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  text-align: left;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 6px 8px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #efab00;
  color: white;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.button {
  background-color: #012545;
  border: none;
  border-radius: 8px;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  margin: 4px 2px;
  cursor: pointer;
}


.active {
  background-color: #fff;
}

.topnav { 
background-color: #012545;
}

.topnav .dropdown:hover .dropbtn {
  background-color: #6F93B0;  // same as light blue frame
  // background-color: #3A4459;  // same charcoal as left navigation mouse over
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #6F93B0;
}

}
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {
	float: none;
	width: calc(100% /1);
  }