/* Add a black background color to the top navigation */

#menunav {
	background-color:#111117;
	z-index:1000;
	/*padding-top:1px;
	padding-bottom:10px;*/	    border-bottom: 2px solid red;		color: #ffffff;
}.menunav {
  overflow: hidden;
	text-align: center;
}
/* Style the links inside the navigation bar */
.menunav a {
	display: inline-block;
	color: #FFF;
	font-weight:700;
	text-align: center;
	text-decoration: none;
	font-size: 14px;
	transition: all 300ms ease;
	margin-top: 0;
	margin-right: 2px;
	margin-bottom: 0;
	margin-left: 2px;
	padding-top: 10px;
	padding-right: 25px;
	padding-bottom: 14px;
	padding-left: 25px;
	text-transform: uppercase;
}

/* Change the color of links on hover */
.menunav a:hover {
	color: #FF6801;
}

/* Add an active class to highlight the current page */
.menunav a.active {
	color: #FF6801;
	border-top: solid 4px #FF6801;	border-bottom: solid 4px #FF6801;
}

/* Hide the link that should open and close the menunav on small screens */
.menunav .icon {
  display: none;
}
/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the menunav (.icon) */
@media screen and (max-width: 600px) {
  .menunav a:not(:first-child) {display: none;}
  .menunav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the menunav with JavaScript when the user clicks on the icon. This class makes the menunav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .menunav.responsive {position: relative;}
  .menunav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .menunav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}
