
	/* Style the navigation menu */
.topnav {
  overflow: hidden;
  background-color: transparent;
  color: black;
  position: absolute;    padding: 2em 2em 1.4em 2em; z-index: 1000;
  
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
  display: none;
    background-color: #edf0ef;

}

/* Style navigation menu links */
.topnav a {
    background-color: transparent;

  color: #666;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 1.4em;
  display: block;
}

/* Style the hamburger menu */
.topnav a.icon {
  background: transparent;
  display: block;
  position: absolute;
  left:0;
  top: 0;
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
  background-color: transparent;
  color: black;
}

/* Style the active link (or home/logo) */
.active {
  background-color: #edf0ef;
  color: white;
}
	