@charset "UTF-8";
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.topnav {
	overflow: hidden;
	background-color: #000;
	position: fixed; /* Make it stick/fixed */
	top: 0; /* Position the navbar at the top of the page */
	width: auto;
	z-index: 1;
}

.topnav a {
	float: left;
	display: block;
	color: #FFFFFF;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 1.1em;
}

.topnav a:hover {
	background-color: #b60000;
	color: rgba(255,255,255,1);
}

.active {
	background-color: #999999;
	color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 700px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
	float: right;
	display: block;
	background-color: #666666;
	width: auto;
  }
}

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