@charset "UTF-8";
/* CSS Document */

.navbar {
  overflow: hidden;
  background-color: transparent; 
}

.navbar a {
  float: none;
  font-size: 14px;
  color: white;
  text-align: center;
  padding: 7px 8px;
  text-decoration: none;
  display: inline-block;
}

.subnav {
  float: none;
  overflow: hidden;
  display: inline-block;
}

.subnav .subnavbtn {
  font-size: 14px;  
  border: none;
  outline: none;
  color: white;
  padding: 7px 8px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .subnav:hover .subnavbtn {
  background-color: #197e4d;
}

.subnav-content {
  display: none;
  position: absolute;
  left: 0;
  background-color: #197e4d;
  width: 100%;
  z-index: 1;
}

.subnav-content a {
  float: none;
  color: white;
  text-decoration: none;
  display: inline-block;
}

.subnav-content a:hover {
  background-color: #4CE99D;
  color: whitesmoke;
	-moz-border-radius: 0 5px 5px 0; 
	-webkit-border-radius: 0 5px 5px 0; 
	-khtml-border-radius: 0 5px 5px 0;
	border-radius: 0 5px 5px 0;
    background: linear-gradient(to right,  rgb(25,126,77) 6%,rgb(76,233,157) 100%);
}

.subnav:hover .subnav-content {
  display: block;
}
