/*  
---------------------------------
Vertical Menu (small screens)
---------------------------------
*/

/* Style the menu button */
.mv_dropbtn {
  background-image: none;
  background-color: #f5f5f5;
  font-size: 16px;
  color: #777;
  text-align: center;
  padding: 18px 14px 18px 14px;
  text-decoration: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  display:none;
  margin: 0 4px 0 0;
  height: 100%;
  text-transform: uppercase;
}

/* Change color on hover */
.mv_dropbtn:hover, .mv_dropbtn:focus {
  background-color: #fff;
  color: #222;
}

/* Define dropdown list position */
.mv_dropdown {
  position: relative;
  display: inline-block;
}

/* Style the dropdown list */
.mv_dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  right: 0;
  z-index: 2;
}

/* Style the dropdown item */
.mv_dropdown-content a {
  display: block;
  font-size: 14px;
  color: #777;
  text-align: center;
  padding: 20px 20px;
  text-decoration: none;
  border-left: 1px solid #aaa;
  border-top: 1px solid #aaa;;
  border-bottom: 1px solid #aaa;;
  width: 100%;
  height:100%;
  margin:0 0 0 0;
  text-transform: uppercase;
  z-index: 2;
}

/* Change color on hover */
.mv_dropdown a:hover {
  background-color: #fff;
  color: #222;
  border-top: 4px solid rgb(177,211,74);
  text-decoration: none;
}

/* Show the dropdown list */
.mv_show {
  display: block;
}

/*  
---------------------------------
Horizontal Menu (big screens)
---------------------------------
*/

/* Style the top navigation bar */
.mh_navbar {
  overflow: hidden;
  background-color: #f5f5f5; 
  height:68px;  
}

/* Style the navigation bar links */
.mh_navbar a {
  float: left;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  border-left: 1px solid #aaa;
  border-top: 4px solid #f5f5f5;
  text-align: center;
  padding: 23px 16px;
  text-decoration: none;
  height:inherit; 
  text-transform: uppercase;
  letter-spacing: -1px;
}
/* Right-aligned link */
.mh_navbar a.right {
  float: right;
}

/* Left-aligned link */
.mh_navbar a.left {
  float: left;
}

/* Dropdown style */
.mh_dropdown {
  float: left;
  overflow: hidden;
}

.mh_dropdown .mh_dropbtn {
  background-image:none;
  font-size: 16px;  
  border: none;
  outline: none;
  color: rgba(0, 0, 0, 0.6);
  padding: 14px 16px;
  border-left: 1px solid #aaa;
  border-top: 4px solid #f5f5f5;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  height:68px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.mh_navbar a:hover, .mh_dropdown:hover .mh_dropbtn {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.6);
  border-top: 4px solid rgb(177,211,74);
  text-decoration: none;
}

.mh_dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 2;
}

.mh_dropdown-content a {
  float: none;
  background-color: #fff;
  color: rgba(0, 0, 0, 0.6);
  border-left: 1px solid #eee;
  border-top: 1px solid #eee;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.mh_dropdown-content a:hover {
  background-color: #f5f5f5; 
  border-left: 1px solid #eee;
  border-top: 1px solid #eee;
}

.mh_dropdown:hover .mh_dropdown-content {
  display: block;
  border-left: 1px solid #eee;
  border-top: 1px solid #eee;
}

@media screen and (max-width: 720px) {
  .mh_navbar {
    display:none;
  }
  .mv_dropbtn {
    display:block;
  }
}