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

.topnav {
  overflow: hidden;
    float: right;
    margin-bottom: 0;
    padding-bottom: 0;
  /*background-color: #333;*/
}

.topnav a {
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
    font-weight:normal;
	font-size: 14px;
	letter-spacing:1px;
  float: left;
  display: block;
  color: #f2f2f2;
    color: #666;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #4CAF50;
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
    nav {
        float: none;
    width: 80%;
        margin-left: auto;
        margin-right: auto;
}
    .topnav {
  overflow: hidden;
    float: none;
  background-color: #ccc;
        margin-left: auto;
        margin-right: auto;
}
  .topnav a:not(:first-child) {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: left;
  }
    .topnav.responsive a:hover {
  background-color: #ddd;
  color: black;
}
}

