<!--
.style10 {	color: #000000;
	font-weight: bold;
}
-->

#navbar {
    display: flex;
    background-color: darkolivegreen;
    z-index: 999;
    width: 706px;
  }
  
  #navbar a {
    flex: none;
    color: #f2f2f2;
    text-align: left;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  #navbar a:hover {
    background-color: goldenrod;
    color: black;
  }
  
  #navbar a.active {
    background-color: darkgoldenrod;
    color: white;
  }
  
  .content {
    padding: 16px;
  }
  
  .sticky {
    position: fixed;
    top: 0;
    width: 705px;
  }
  
  .sticky + .content {
    padding-top: 60px;
  }


  .dropdown {
    display: inline-block;
  }
  
  .dropbtn {
  cursor: pointer;
  font-size: 17px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  display: inline-block;
  /*margin: 0;*/
  }
  
 /*.dropdown:hover .dropbtn, .dropbtn:focus {
    background-color: goldenrod;
  }*/
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: darkolivegreen;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown-content a:hover {
    background-color: goldenrod;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }