@charset "utf-8";
 /* Add a black background color to the top navigation */
.topnav {
	overflow: hidden;
	color: #FFFFFF;
	background-color: #006666
}

/* Style the links inside the navigation bar */
.topnav a {
	float: left;
	display: block;
	color: #FFFFFF;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
	font-family: Tahoma, Geneva, sans-serif;
	font-weight: bold;
}

/* Change the color of links on hover */
.topnav a:hover {
	background-color: #006666;
	color: #FFFFFF;
	text-decoration: underline;
	font-family: Tahoma, Geneva, sans-serif;
	font-weight: bold;
}

/* Add an active class to highlight the current page */
.active {
	background-color: #006666;
	color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
    display: none;
} 

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

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