body {
  position: relative; /* For scrollyspy */
  padding-top: 20px; /* Account for fixed navbar */
  border-top: 8px solid #005893;
}

a {
	color: #005893;
}

/* custom background color*/
.table tbody tr.orange > td {background-color: #FADFC2;}

.doc-header {
	padding:30px 15px 40px;
	color: #fff;
	background-color: #222;
}
.doc-footer {
	padding:20px 15px 20px;
	margin-top: 30px;
	color: #999;
	font-size: 12px;
}
.doc-footer a {
	color: #666;
	text-decoration: underline;
}

/*
 * 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 */
.doc-sidebar.affix {
  position: static;
}

/* First level of nav */
.doc-sidenav {
  margin-top: 26px;
  background-color: #eee;
}

/* All levels of nav */
.doc-sidebar .nav > li > a {
  display: block;
  color: #555;
  padding: 5px 20px;
  border-bottom: 1px solid #fff;
}
.doc-sidebar .nav > li > a:hover,
.doc-sidebar .nav > li > a:focus {
  text-decoration: none;
  color: #005893;
}
.doc-sidebar .nav > .active > a,
.doc-sidebar .nav > .active:hover > a,
.doc-sidebar .nav > .active:focus > a {
  color: #005893;
  background-color: #eee;
}

/* Nav: second level (shown on .active) */
.doc-sidebar .nav .nav {
  display: none; /* Hide by default, but at >768px, show it */
  margin-bottom: 8px;
}
.doc-sidebar .nav .nav > li > a {
  padding-top:    3px;
  padding-bottom: 3px;
  padding-left: 30px;
  font-size: 90%;
}
@media (max-width: 991px) {
	.doc-sidenav {
	  margin-top: 0;
	}
}
/* Show and affix the side nav when space allows it */
@media (min-width: 992px) {
  .doc-sidebar .nav > .active > ul {
    display: block;
  }
  /* Widen the fixed sidebar */
  .doc-sidebar.affix,
  .doc-sidebar.affix-bottom {
    width: 213px;
  }
  .doc-sidebar.affix {
    position: fixed; /* Undo the static from mobile first approach */
    top: 30px;
  }
  .doc-sidebar.affix-bottom {
    position: absolute; /* Undo the static from mobile first approach */
  }
  .doc-sidebar.affix-bottom .doc-sidenav,
  .doc-sidebar.affix .doc-sidenav {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  /* Widen the fixed sidebar again */
  .doc-sidebar.affix-bottom,
  .doc-sidebar.affix {
    width: 263px;
  }
}