

#stickynavbar {
  overflow: hidden;
  background-color: #333;
}

#stickynavbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

#stickynavbar a:hover {
  background-color: #ddd;
  color: black;
}

#stickynavbar a.active {
  background-color: #04AA6D;
  color: white;
}

.content {
  padding: 16px;
}

.sticky {
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 999;
}

.sticky + .content {
  padding-top: 60px;

}


