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

/*https://www.w3schools.com/howto/howto_js_dropdown_menunav.asp*/

/* Fixed menunav, full height */
.menunav {
  height: 100%;
  background-color: #FFF;
  border-right: 1px solid #000000;	
	
  /*font-size: 18px;
  line-height: 25px;*/
  padding-top: 5px;

}

/* Style the menunav links and the dropdown button */
.menunav a, .dropdown-btn {
  padding: 6px 8px 6px 16px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-weight:normal;
  text-decoration: none;
  font-size: 14px;
  line-height: 25px;
  color: #000;
  display: block;
  border: none;
  background: none;
  width: 90%;
  text-align: left;
  cursor: pointer;
  outline: none;
}

/* On mouse-over */
.menunav a:hover, .dropdown-btn:hover {
  color: #00008B;
  text-decoration:underline;
}

/* Add an active class to the active dropdown button */
.active {
  background-color:#CCCCCC;
  color:#000066;
}

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
  display: none;
  background-color: #FFF;
  padding-left: 8px;
}

/* Optional: Style the caret down icon */
.fa-caret-down {
  float: right;
  padding-right: 8px;
}

/* Some media queries for responsiveness */
@media screen and (max-height: 450px) {
  .menunav {padding-top: 15px;}
  .menunav a {font-size: 18px;}
}
