/* Style the navbar */
#navbar {
  overflow: hidden;
}

/* Navbar links */
#navbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "OpenSans-Bold";
}

#navbar a.active {
  color: #ee4136 !important;
}

/* Page content */
.content {
  padding: 16px;
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 101;
  box-shadow: 0 0 3px #b5b5b5;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .banner {
  padding-top: 60px;
}