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

/* The navigation menu */
.navbar {
overflow: hidden;
font-family: Verdana, Geneva, sans-serif;
}

/* Navigation links */
.navbar a {
  float: left;
  font-size: 14px;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  color: #8c7373;
}

/* The subnavigation menu */
.subnav {
  float: left;
  overflow: hidden;
}

/* Subnav button */
.subnav .subnavbtn {
  font-size: 14px;
  border: none;
  outline: none;
  color: #8c7373;
  padding: 14px 16px;
  background-color: white;
  font-family: inherit;
  margin: 0;
  text-transform: uppercase;
}

/* Add a red background color to navigation links on hover */
.navbar a:hover, .subnav:hover .subnavbtn {
  background-color:#58b15d;
  color: white;
}

/* Style the subnav content - positioned absolute */
.subnav-content {
  display: none;
position: absolute;
  background-color: #58b15d;
  width:auto;
  z-index: 1;
}

/* Style the subnav links */
.subnav-content a {
  float: left;
  color: white;
  text-decoration: none;
}

/* Add a grey background color on hover */
.subnav-content a:hover {
  background-color: #eee;
  color: black;
}

/* When you move the mouse over the subnav container, open the subnav content */
.subnav:hover .subnav-content {
  display: block;
}


.subnavR {
  float: right;
  overflow: hidden;
}
