@charset "utf-8";
/* CSS Document */

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

#main-menu-navbar{padding: 16px 0;}

/* Navbar links */
#navbar__ a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  text-decoration: none;
}

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

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

/* 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 + .content {padding-top: 60px;}