@charset "utf-8";
/* CSS Document */*
header {
    padding: 0px 10px;
	overflow: hidden;
	background-color: darkgray;
	color: black;
	font-size: 0.8em;
	text-align: center;
}
footer {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: black;
	color: white;
	font-size: 0.6em;
	text-align: center;
	clear: left;
}
.topnav {
  overflow: hidden;
  background-color: lightgray;
  }
.topnav a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 12px 14px;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
}

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

.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

.topnav .icon {
  display: none;
}
.topnav input[type=text] {
  float: right;
  padding: 6px;
  margin-top: 8px;
  margin-right: 16px;
  border: none;
  font-size: 14px;
}
@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 {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}



