/* MENU_SELECTOR*/
/* Style the navbar */
#navbar {
  overflow: hidden;
  background-color: #333;
  z-index: 2;
  width:auto;
  position: fixed;
}


#navbar a {
  font-size: 0.9em;
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  text-decoration: none;
  padding: 0.5em;
}



/* 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%
}

/* 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: 05px;
}

.page .page-header a:hover {
    background-color: #1A5276;
}

html:not(.ios):not([data-x-mode="true"]) .redbox:after{
	background: #E23B40;
}

html:not(.ios):not([data-x-mode="true"]) .bluebox1:after{
	background: #42B9DF;
}

html:not(.ios):not([data-x-mode="true"]) .bluebox2:after{
	background: #383B8F;
}

@media (min-width: 1200px){
  #navbar a {
    font-size: 0.9em;
  }
}


@media (max-width: 816px){
  #navbar a {
    font-size: 0.8em;
  }
}