/* Add a black background color to the top navigation */
.menu-main {
	width: 100%;
  	display: block;
  	margin-left: auto;
  	margin-right: auto;
  	height: auto;
}

/* Style the links inside the navigation bar */
.menu-main a {
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
} 
 
 
/* Add an active class to highlight the current page */
.active-entry {
  background-color: #e2e2e2;
  border-radius: 5px, 5px, 5px, 5px;
}

/* Hide the link that should open and close the topnav on small screens */
.menu-main .icon {
  display: none;
}

/* Add a dark background on topnav links and the dropdown button on hover */
.menu-main a:hover {
  color: #ed0d46;
}

/* Style the subnav content - positioned absolute */
.menu-sub {
  float: left;
  overflow: inherit;
  position: relative;
  left: 0;
  background-color: #f0f2f3;
  width: 100%;
  z-index: 1;
  display: block;
}

/* Style the subnav links */
.menu-sub a {
  float: left;
  color: black;
  text-decoration: none;
}

/* Add a grey background color on hover */
.menu-sub a:hover {
  color: #ed0d46;
}

@media screen and (max-width: 600px) {
.menu-main {
	display: none;
}
	
}