.navbar-inverse {background: #0f3e5c; border-color: #fff}
.navbar-inverse .navbar-brand,
.navbar-inverse .navbar-nav>li>a {color: #fff}
.navbar-inverse .navbar-nav>.active>a,
.navbar-inverse .navbar-nav>.active>a:hover {background: #ea6051}
.conteudo {padding: 60px 0}

/* Janky fix for preventing navbar from overlapping */
h1[id] {
	padding-top: 80px;
	margin-top: -45px;
}

/*
 * Side navigation
 *
 * Scrollspy and affixed enhanced navigation to highlight sections and secondary
 * sections of docs content.
 */

/* By default it's not affixed in mobile views, so undo that */
.menu-lateral.affix {
  position: static;
}

/* First level of nav */
.menu-lateral {
  margin-top: 30px;
  margin-bottom: 30px;
  padding-top:    10px;
  padding-bottom: 10px;
  background-color: #0f3e5c;
  border-radius: 5px;
}

/* All levels of nav */
.menu-lateral .nav > li > a {
  display: block;
  color: #fff;
  padding: 5px 20px;
}
.menu-lateral .nav > li > a:hover,
.menu-lateral .nav > li > a:focus {
  text-decoration: none;
  background-color: #000;
  border-right: 1px solid #ea6051;
}
.menu-lateral .nav > .active > a,
.menu-lateral .nav > .active:hover > a,
.menu-lateral .nav > .active:focus > a {
  font-weight: bold;
  color: #fff;
  background-color: transparent;
  border-right: 1px solid #ea6051;
}

/* Nav: second level (shown on .active) */
.menu-lateral .nav .nav {
  display: none; /* Hide by default, but at >768px, show it */
  margin-bottom: 8px;
}
.menu-lateral .nav .nav > li > a {
  padding-top:    3px;
  padding-bottom: 3px;
  padding-left: 30px;
  font-size: 90%;
}

/* Show and affix the side nav when space allows it */
@media (min-width: 992px) {
  .menu-lateral .nav > .active > ul {
    display: block;
  }
  /* Widen the fixed sidebar */
  .menu-lateral.affix,
  .menu-lateral.affix-bottom {
    width: 213px;
  }
  .menu-lateral.affix {
    position: fixed; /* Undo the static from mobile first approach */
    top: 80px;
  }
  .menu-lateral.affix-bottom {
    position: absolute; /* Undo the static from mobile first approach */
  }
  .menu-lateral.affix-bottom .menu-lateral,
  .menu-lateral.affix .menu-lateral {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  /* Widen the fixed sidebar again */
  .menu-lateral.affix-bottom,
  .menu-lateral.affix {
    width: 263px;
  }
}