/* Style the navigation menu */

.topnav {
  width: 100%;
  margin: 0px auto;
  padding-top: 0px;
  overflow: hidden;
  background-color: #330066;
  position: fixed;
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #hhLinks {
  display: none;
}

/* Style navigation menu links */
.topnav a {
	font-family: Arial, sans-serif;
	font-size: 16px;
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}


.topnav a.hoofd {
	background: #9999cc;
}
.topnav a.sub{
	padding-left: 40px;
}

/* Style the hamburger menu */
.topnav a.icon {
  margin-top: 0px;
  background: black;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
  background-color: #9999cc;
  color: #fff;
}

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

