
/* Splash */

.splash {
  position: relative;
  height: 100%;
  background: #2E5FAB;
}
.splash-wrapper {
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 100%;
}
.splash-wrapper-inner {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 20px;
}
.splash h1 {
  position: relative;
  margin: 0;
  padding: 0;
  color: #fff;
  font-weight: 500;
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: 10px;
}
.splash h2 {
  position: relative;
  margin: 10px 0 0 0;
  padding: 0;
  color: #46DB9D;
  font-weight: 300;
  font-size: 28px;
}
.splash-meta {
  color: #fff;
  font-weight: 400;
  margin: 40px 0 20px 0;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.splash-actions {
  text-align: center;
}
.splash .btn,
.splash .btn:focus,
.splash .btn:hover,
.splash .btn:active,
.splash .btn:visited {
  font-size: 16px;
  height: 50px;
  padding-left: 0;
  padding-right: 0;
  width: 180px;
  margin-right: 20px;
  line-height: 46px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  border: 2px solid #15B06F;
  background: transparent;
  color: #46DB9D;
  -webkit-border-radius: 0px;
  border-radius: 0px;
}
.splash .btn:first-child,
.splash .btn:first-child:focus,
.splash .btn:first-child:hover,
.splash .btn:first-child:active,
.splash .btn:first-child:visited {
  margin-left: 20px;
}
.splash .btn:focus,
.splash .btn:hover,
.splash .btn:active {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
@media (max-width: 768px) {
  .splash-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
  .splash h1 {
    font-size: 32px;
  }
  .splash h2 {
    font-size: 22px;
  }
  .splash .btn,
  .splash .btn:focus,
  .splash .btn:hover,
  .splash .btn:active,
  .splash .btn:visited,
  .splash .btn:first-child,
  .splash .btn:first-child:focus,
  .splash .btn:first-child:hover,
  .splash .btn:first-child:active,
  .splash .btn:first-child:visited {
    display: block;
    width: 100%;
    margin: 0 0 15px 0;
  }
}

/* Header */

.header {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #2E5FAB;
  color: #fff;
  padding: 0 15px;
  font-size: 16px;
  z-index: 2;
  zoom: 1;
}
.header:before,
.header:after {
  content: "";
  display: table;
}
.header:after {
  clear: both;
}
.header-logo {
  display: block;
  float: left;
  width: 300px;
  height: 50px;
  line-height: 50px;
  padding: 0 30px;
  margin: 0 30px 0 -15px;
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.header-logo a,
.header-logo a:hover {
  color: #fff;
  text-decoration: none;
}
.header-title {
  display: block;
  float: left;
  height: 50px;
  line-height: 50px;
  color: #fff;
}
.header-links {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
}
.header-links a {
  display: block;
  float: left;
  padding: 0 15px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #46DB9D;
  -webkit-transition: color 0.2s ease-out, border-color 0.2s ease-out, background-color 0.2s ease-out;
  -moz-transition: color 0.2s ease-out, border-color 0.2s ease-out, background-color 0.2s ease-out;
  -ms-transition: color 0.2s ease-out, border-color 0.2s ease-out, background-color 0.2s ease-out;
  -o-transition: color 0.2s ease-out, border-color 0.2s ease-out, background-color 0.2s ease-out;
  transition: color 0.2s ease-out, border-color 0.2s ease-out, background-color 0.2s ease-out;
}
.header-links a .fa {
  margin-right: 7px;
}
.header-links a:hover {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 959px) {
  .header-links a {
    font-size: 24px;
  }
  .header-links a .fa {
    margin-right: 0px;
  }
  .header-links a span {
    display: none;
  }
}
@media (max-width: 767px) {
  .header {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    width: auto;
    height: auto;
  }
  .header-logo {
    width: auto;
    margin: 0 -15px;
    padding: 0 15px;
    float: none;
    width: auto;
  }
  .header-title {
    float: none;
    height: 40px;
    line-height: 40px;
    margin: 0 -15px;
    padding: 0 15px;
    background-color: rgba(0,0,0,0.15);
  }
}

/* Content root */

.content-root {
  position: relative;
  padding-left: 300px;
  padding-top: 50px;
  min-height: 100%;
}
.content-root.no-menu {
  padding-left: 0px;
}
@media (max-width: 767px) {
  .content-root {
    padding-left: 0;
    padding-top: 0;
  }
}

/* Menubar */

.menubar {
  position: fixed;
  left: 0;
  top: 50px;
  bottom: 0;
  width: 300px;
  border-right: solid 1px #d5d5d5;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.menubar::-webkit-scrollbar {
  width: 15px;
  height: 15px;
}
.menubar::-webkit-scrollbar-thumb {
  background: #ddd;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  border: solid 4px #fff;
}
.menubar:hover::-webkit-scrollbar-thumb {
  background: #999;
  -webkit-box-shadow: inset 2px 2px 3px rgba(0,0,0,0.2);
  box-shadow: inset 2px 2px 3px rgba(0,0,0,0.2);
}
.menu {
  padding: 30px;
}
.menu a {
  position: relative;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.menu a,
.menu a:visited {
  color: #888888;
}
.menu a.level-1 {
  margin-top: 10px;
  font-weight: 500;
  color: #505050;
}
.menu a.level-1:first-child {
  margin-top: 0px;
}
.menu a.level-1,
.menu a.level-1:visited {
  color: #505050;
  font-size: 16px;
}
.menu a.level-2,
.menu a.level-2:visited {
  font-weight: normal;
  font-size: 0.95em;
  padding-left: 10px;
  line-height: 1.8;
}
.menu a:hover {
  color: #3875CA !important;
  text-decoration: none !important;
}
@media (min-width: 768px) {
  .menu a.scrollspy-active,
  .menu a.scrollspy-active:visited,
  .menu a.scrollspy-active:hover {
    color: #2E5FA3 !important;
  }
}
@media (max-width: 767px) {
  .menubar {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    width: auto;
    border-right: 0;
    border-bottom: 1px solid #d5d5d5;
    overflow-y: visible;
  }
}

/* Content */

.content {
  padding: 0 30px 30px 30px;
  zoom: 1;
  max-width: 752px;
}
.content:before,
.content:after {
  content: "";
  display: table;
}
.content:after {
  clear: both;
}

/* Content - Generic spacing */

.content p,
.content ul,
.content ol,
.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6,
.content pre,
.content blockquote {
  padding: 10px 0;
  margin: 0;
}

/* Content - Headings */

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  font-weight: 500;
}
.content h1,
.content h2,
.content h3 {
  padding-bottom: 0;
}
.content h1 + p,
.content h2 + p,
.content h3 + p,
.content h1 ul,
.content h2 ul,
.content h3 ul,
.content h1 ol,
.content h2 ol,
.content h3 ol {
  padding-top: 10px;
}
.content h1,
.content h2 {
  letter-spacing: 1px;
  font-weight: 300;
  font-size: 1.8em;
}
.content h3 {
  font-size: 1.2em;
}
.content h1,
.content h2,
.content h3 {
  padding-top: 30px;
  margin-top: 30px;
}
.content h1:first-child,
.content h2:first-child {
  margin-top: 0px;
}
.content h1:before,
.content h2:before,
.content h3:before {
  display: block;
  content: " ";
  background: #d5d5d5;
  height: 1px;
  position: relative;
  top: -30px;
  margin: 0 -30px;
  width: auto;
}
.content h1:first-child:before,
.content h2:first-child:before {
  display: none;
}
.content h4,
.content h5 {
  border-bottom: solid 1px rgba(0,0,0,0.07);
  color: #9090aa;
  padding-top: 30px;
  padding-bottom: 10px;
}

/* Content - Lists */

.content ul > li {
  list-style-type: disc;
}
.content ol > li {
  list-style-type: decimal;
}
.content ul,
.content ol {
  margin-left: 20px;
}
.content ul > li {
  list-style-type: none;
  position: relative;
}
.content ul > li:before {
  content: '';
  display: block;
  position: absolute;
  left: -17px;
  top: 9px;
  width: 5px;
  height: 5px;
  background: #fff;
  border: solid 1px #9090aa;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.content li > :first-child {
  padding-top: 0;
}

/* Content - Tables */

.content table {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 0;
  border-collapse: collapse;
  clear: both;
}
.content table tr {
  border-top: 1px solid #ccc;
  background-color: #fff;
  margin: 0;
  padding: 0;
}
.content table tr :nth-child(2n) {
  background-color: #f8f8f8;
}
.content table tr th {
  text-align: auto;
  font-weight: 500;
  border: 1px solid #ccc;
  margin: 0;
  padding: 6px 13px;
}
.content table tr td {
  text-align: auto;
  border: 1px solid #ccc;
  margin: 0;
  padding: 6px 13px;
}
.content table tr th :first-child,
.content table tr td :first-child {
  margin-top: 0;
}
.content table tr th :last-child,
.content table tr td :last-child {
  margin-bottom: 0;
}

/* Content - Blockquotes */

.content blockquote {
  color: #9090aa;
  text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}
.content blockquote :first-child {
  padding-top: 0;
}
.content blockquote :last-child {
  padding-bottom: 0;
}

/* Content - Bold */

.content strong,
.content b {
  font-weight: 500;
}

/* Content - Italic */

.content i,
.content em {
  font-style: italic;
  color: #9090aa;
}

/* Content - Code */

.content pre,
.content code {
  font-family: "Droid Sans Mono", monospace;
}
.content code {
  border: 1px solid #bbb;
  color: #4A5562;
  padding: 1px 5px;
  border-radius: 2px;
  font-size: 13px;
}
.content pre > code {
  display: block;
  font-size: 14px;
  padding: 10px;
  background: #f3f6fb;
  color: #333;
  border: solid 1px #d5d5d5;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.content pre > code::-webkit-scrollbar {
  width: 15px;
  height: 15px;
}
.content pre > code::-webkit-scrollbar-thumb {
  background: #ddd;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  border: solid 4px #f3f6fb;
}
.content pre > code:hover::-webkit-scrollbar-thumb {
  background: #999;
  -webkit-box-shadow: inset 2px 2px 3px rgba(0,0,0,0.2);
  box-shadow: inset 2px 2px 3px rgba(0,0,0,0.2);
}
.content code .hljs-string,
.content code .hljs-number {
  color: #5A7BE0;
}
.content code .hljs-init {}
.content code .hljs-keyword {
  color: #E05A5A;
}
.content code .hljs-comment,
.content code .hljs-comment .hljs-string,
.content code .hljs-comment .hljs-number,
.content code .hljs-comment .hljs-keyword,
.content code .hljs-comment .hljs-init {
  color: #999;
}
@media (max-width: 1180px) {
  .content pre > code {
    background: #f3f6fb;
    border: solid 1px #e7eaee;
    border-top: solid 1px #dbdde2;
    border-left: solid 1px #e2e5e9;
    display: block;
    padding: 10px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    overflow: auto;
  }
  .content pre > code {
    -webkit-overflow-scrolling: touch;
  }
  .content pre > code::-webkit-scrollbar {
    width: 15px;
    height: 15px;
  }
  .content pre > code::-webkit-scrollbar-thumb {
    background: #ddd;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    border: solid 4px #f3f6fb;
  }
  .content pre > code:hover::-webkit-scrollbar-thumb {
    background: #999;
    -webkit-box-shadow: inset 2px 2px 3px rgba(0,0,0,0.2);
    box-shadow: inset 2px 2px 3px rgba(0,0,0,0.2);
  }
}