@charset "utf-8";
/* CSS Document */

.topnav {
  overflow: hidden;
  background-color: #414141;
  width: 100%;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;	
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  font-family: "Source Sans Pro";
  letter-spacing: 1px;
  text-align: center;
  width: 17%;
}

.topnav a:hover {
  background-color: #0480CA;
  color: #000000;
}

.topnav .icon {
  display: none;
}

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

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