/*Needed for navigation menu */
body {
  margin: 0;
}

.topnav {
  overflow: hidden;
  /*background-color: #03ADE1;*/
  background-color: #2B2E53;
  text-align: center;
  z-index: 6;	
}

.topnav a {
  display: inline-block;
	margin-right: -4px;  /* inline-block gap fix */
  color: #fff;
  text-align: center;
  padding: 10px 12px;
  text-decoration: none;
  font-size: 15px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

.topnav a:hover {
  background-color: #3D4076;
  color: white;
}

.active {
  /*background-color: #0098C7;*/
  background-color: #3D4076;
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
    .topnav.responsive .icon {
    position: fixed;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}	