/* Add a black background color to the top navigation */
.topnav {
	position: fixed;
    z-index: 9999;
    top: 0;
    width: 100%;
    color: white;
    font-family: Helvetica;
    background: #8A4B20;
    background: -moz-linear-gradient(-45deg, #D47430 0%, #965B4C 100%);
    background: -webkit-linear-gradient(-45deg, #D47430 0%, #965B4C 100%);
    background: linear-gradient(135deg, #D47430 0%, #965B4C 100%);
            border-bottom: 2px solid #D47430;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: right;
  color: #f2f2f2;
  text-align: center;
  padding: 12px 18px 14px;
  text-decoration: none;
  font-size: 11px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #4CAF50;
  color: white;
}