/* Add a black background color to the top navigation */
.topnav {
  background-color: #fff;
  overflow: hidden;
  border-bottom:solid 2px #ddd;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: #222;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
text-decoration:underline dotted;
color:#cd3d27;
}

/* Add an active class to highlight the current page */
.topnav a.active {
  background-color: #cd3d27;
  color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
} 