/**
 *  sans-serif
 */

@font-face {
    font-family: 'LatoLight';
    src: url('./lato/Lato-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'LatoLight';
    src: url('./lato/Lato-Black.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'LatoLight';
    src: url('./lato/Lato-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'LatoLight';
    src: url('./lato/Lato-BlackItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

/**
 *  monospace
 */
@font-face {
    font-family: 'Liberation';
    src: url('./liberation/LiberationMono-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Liberation';
    src: url('./liberation/LiberationMono-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Liberation';
    src: url('./liberation/LiberationMono-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Liberation';
    src: url('./liberation/LiberationMono-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}




html {
  color: #333;
  font-family: "LatoLight", sans-serif;
  font-size: 16px;
  margin: 0;
}

body {
  margin: 0;
  color: #333;
}

.clearfix {
  clear: both;
}

div {
  box-sizing: border-box;
}

.hidden {
  display: none;
  ddd-opacity: 0.2;
}

.sidebar {
  background: #334;
  box-shadow: 5px 0px 10px 0 #aaa;
  font-size: 16px;
  overflow: auto;
  padding-top: 200px;
  padding-bottom: 70px;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 260px;
}

.sidebar .header {
  background: #2535a0;
  box-shadow: 0px 5px 15px 0px #115;
  color: #fff;
  height: 180px;
  left: 0;
  text-align: center;
  top: 0;
  position: fixed;
  width: 260px;
}

.sidebar .header .logo {
  margin-top: 30px;
}

.sidebar a {
  text-decoration: none;
}

.sidebar .header a.logo {
  color: #fff;
  display: inline-block;
  opacity: 0.5;
  padding: 10px 20px;
  transition: opacity 0.2s linear;
}

.sidebar .header a.logo:hover {
  opacity: 1;
}

.sidebar .header .logo .image {
  background: url(./logo.svg) center no-repeat;
  height: 40px;
  width: 100%;
}

.sidebar .header .logo .name {
  font-size: 125%;
  font-weight: bold;
}

.sidebar .header .show-toc {
  display: none;
}

.sidebar .search input {
    border: 0;
    border-radius: 15px;
    color: #008;
    font-size: 25px;
    line-height: 30px;
    margin: 0;
    opacity: 0.4;
    outline: none;
    padding-left: 30px;
    padding-right: 10px;
    transition: opacity 0.3s linear;
    width: 80%;
}

.sidebar .search input:focus {
    opacity: 1;
}

.sidebar .search:hover input {
    opacity: 1;
    transition: opacity 0.3s linear 0.3s;
}

.sidebar .search-icon {
    color: #004;
    font-weight: bold;
    font-size: 27px;
    position: absolute;
    left: 26px;
    top: 6px;
    transform: rotate(-45deg);
}

.sidebar .alt-link {
  background: #2535a0;
  bottom: 0;
  box-shadow: 0px -5px 15px 0px #115;
  color: #fff;
  line-height: 50px;
  position: fixed;
  text-align: center;
  width: 260px;
}

.sidebar .alt-link a {
  color: #fff;
  opacity: 0.5;
  transition: opacity 0.2s linear;
}

.sidebar .alt-link a:hover {
  opacity: 1;
}

.sidebar .toc {
  font-size: 14px;
}

.sidebar .toc div.title {
  margin: 15px 0;
  padding-left: 20px;
}

.sidebar .toc div.title a {
  color: #666;
  font-size: 110%;
  font-weight: bold;
}

.sidebar .toc div.title a:hover {
  color: #779;
}

.sidebar .toc div {
  padding-top: 6px;
  padding-bottom: 6px;
  white-space: nowrap;
}

.sidebar .toc div.sub:before {
  content: "\21B3\00a0";
  font-size: 80%;
}

.sidebar .toc div.depth-0 {
  padding-left: 20px;
}

.sidebar .toc div.depth-1 {
  padding-left: 30px;
}

.sidebar .toc div.depth-2 {
  padding-left: 40px;
}

.sidebar .toc div.depth-3 {
  padding-left: 50px;
}

.sidebar .toc div.depth-4 {
  padding-left: 60px;
}

.sidebar .toc div.depth-5 {
  padding-left: 70px;
}

.sidebar .toc div a {
  color: #fff;
}

.sidebar .toc div a:hover {
  color: #aac;
}

.sidebar .toc div.current {
  font-weight: bold;
}

.sidebar .toc div.highlight a {
  color: #444;
}

.sidebar .toc div.sub {
  font-size: 90%;
  font-style: italic;
  dddopacity: 0.8;
}

.sidebar .toc div.depth-0.highlight {
  background: #fff;
  font-weight: bold;
}

.sidebar .toc div.depth-1.highlight {
  background: #ddd;
}

.sidebar .toc div.depth-1.dedent {
  border-bottom: 1px solid #bbb;
}

.sidebar .toc div.depth-1.highlight.selected {
  background: #bbb;
  border-top: 2px solid #999;
}

.sidebar .toc div.depth-2.highlight {
  background: #bbb;
}

.sidebar .toc div.depth-2.dedent {
  border-bottom: 1px solid #999;
}

.sidebar .toc div.depth-2.highlight.selected {
  background: #999;
  border-top: 2px solid #666;
}

.sidebar .toc div.depth-3.highlight {
  background: #999;
}

.sidebar .toc div.depth-3.dedent {
  border-bottom: 1px solid #777;
}

.sidebar .toc div.depth-3.highlight.selected {
  background: #777;
}

.sidebar .toc div.depth-4.highlight {
  background: #777;
}

.sidebar .toc div.depth-4.dedent {
  border-bottom: 1px solid #555;
}


.breadcrumbs {
  font-style: italic;
}

.breadcrumbs .symbol {
  font-weight: bold;
  padding-left: 7px;
  padding-right: 7px;
}

.content {
  padding: 40px 0 50px;
  margin-left: 310px;
  width: 760px;
}

span.highlight {
    background: #fe0;  
}

.footer {
  margin: 40px 0 0;
}

.footer .nav {
  border-top: 1px solid #aaa;
  padding: 15px 0;
  position: relative;
}

.footer .nav .previous {
  display: inline-block;
  float: left;
}

.footer .nav .next {
  display: inline-block;
  float: right;
}

.footer .nav .arrow {
  background: #449;
  border-radius: 17px;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  height: 34px;
  line-height: 34px;
  opacity: 0.7;
  text-align: center;
  transition: opacity 0.2s linear;
  width: 34px;
}

.footer .nav a:hover {
  color: #000;
}

.footer .nav a:hover .arrow {
  opacity: 1;
}

.footer .nav .previous .arrow {
    margin-right: 15px;
}

.footer .nav .next .arrow {
    margin-left: 15px;
}

.footer .copyright {
  border-top: 1px solid #aaa;
  font-size: 85%;
  text-align: center;
  padding-top: 25px;
}

.content .title-section {
  border-top: 1px solid #aaa;
  color: #000;
  font-size: 175%;
  font-weight: bold;
  margin: 30px 0 20px;
  padding: 30px 0 0 0;
  position: relative;
}

.single-page .content .title-section {
  border-top: 3px solid #000;
}

.content .title-subsection {
  border-top: 2px solid #444;
  color: #444;
  font-size: 150%;
  font-weight: bold;
  margin: 20px 0 20px;
  padding: 20px 0 0 0;
  position: relative;
}

.content .title-export {
  border-top: 2px solid #444;
  color: #444;
  font-size: 150%;
  font-weight: bold;
  margin: 20px 0 20px;
  padding: 20px 0 0 0;
  position: relative;
}

.content .title-export .type {
  opacity: 0.5;
}

.supers {
  color: #777;
  font-style: italic;
  font-size: 16px;
  padding-left: 50px;
  margin: -10px 0 20px;
  text-indent: -50px;
}

.super {
  font-family: "Liberation", monospace;
  padding-left: 5px;
  padding-right: 5px;
}

.category {
  color: #fff;
  font-family: "Liberation", monospace;
  margin-left: 15px;
  padding: 1px 5px 0px 5px;
  font-size: 12px;
  vertical-align: top;
}

.category.readonly {
  background: #336;
  border: 1px solid #008;
}

.category.abstract {
  background: #366;
  border: 1px solid #088;
}

.content .header {
  border-bottom: 1px solid #ccc;
  color: #444;
  font-size: 90%;
  font-weight: bold;
  margin: 30px 0 16px;
  padding-bottom: 7px;
}

.content .title-heading {
  border-bottom: 1px solid #ccc;
  color: #444;
  font-size: 90%;
  font-weight: bold;
  margin: 30px 0 16px;
  padding-bottom: 7px;
}

.content .title-code {
  color: #888;
  font-size: 95%;
  font-style: italic;
  text-align: right;
  margin: 20px 0 -15px;
}

.code-block {
    background: #f8f8ff;
    border: 2px solid #88a;
    color: #000;
    margin: 20px 0 30px 30px;
    padding: 15px 20px;
    font-family: "Liberation", monospace;
    line-height: 21px;
    font-size: 17px;
    white-space: pre;
    overflow: scroll;
}

.code-block .code-comment {
    color: #000;
    opacity: 0.5;
}

.code-block .code-error {
    color: #000;
    opacity: 0.5;
}

.code-block .code-result {
    color: #00a;
    font-style: italic;
    opacity: 0.7;
}

.code-block .code-error {
    color: #a00;
    font-style: italic;
    opacity: 0.7;
}

.signature {
  padding-left: 50px;
  text-indent: -50px;
  margin: 20px 0 10px;
  position: relative;
}

.signature .parent {
  color: #777;
  font-style: italic;
}

.signature .name {
  font-weight: bold;
}

.signature .param {
  font-style: italic;
  font-family: "Liberation", monospace;
  ddd-white-space: nowrap;
}

.signature .returns {
  font-style: italic;
  font-family: "Liberation", monospace;
  ddd-white-space: nowrap;
}

.symbol.open-paren {
  margin-left: 4px;
  margin-right: 7px;
}

.symbol.close-paren {
  margin-left: 7px;
  margin-right: 4px;
}

.symbol.comma {
  margin-right: 8px;
}

.symbol.dot {
  margin-left: 4px;
  margin-right: 4px;
}

.symbol.arrow {
  dddfont-weight: bold;
  margin-left: 10px;
  margin-right: 10px;
}

.docs {
  margin: 10px 0 30px;
}

.docs a {
  font-weight: bold;
}

.docs.indent {
  padding: 0px 0 0 30px;
}

p:first-child {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

p {
  margin: 16px 0;
  line-height: 24px;
}

.docs li {
  margin: 7px 0;
}

.content .toc {
  line-height: 25px;
}

.content .toc .style-normal {
}

.content .toc .style-code {
  font-family: "Liberation", monospace;
  dddfont-size: 100%;
}

.content .toc .style-italic {
  font-style: italic;
}

.docs .style-bold {
  font-weight: bold;
}

.docs .style-code {
  color: #a44;
  font-family: "Liberation", monospace;
  padding-left: 3px;
  padding-right: 3px;
}

.docs .style-italic {
  font-style: italic;
}

.signature .param-name {
  color: #c4c;
}

.docs .style-param {
  dddbackground: #eef;
  dddborder: 1px solid #cce;
  dddborder-bottom: 2px dashed #aaf;
  color: #c4c;
  font-family: "Liberation", monospace;
  padding-left: 4px;
  padding-right: 4px;
  letter-spacing: 0.1ex;
}

.docs .style-underline {
  text-decoration: underline;
}

a.link {
  transition: opacity 0.3s linear;
  position: absolute;
  vertical-align: middle;
}

a.link.anchor {
  background: url(./link.svg) center no-repeat;
  display: inline-block;
  opacity: 0.0;
  dddheight: 100%;
  transform: translate(-100%, 0) scale(0.75);
}

.title-section a.link.anchor {
  dddheight: 27px;
  width: 35px;
}

.title-subsection a.link.anchor {
  dddheight: 24px;
  width: 35px;
}

.title-export a.link.anchor {
  dddheight: 24px;
  width: 35px;
}

.header a.link.anchor {
  dddheight: 16px;
  width: 30px;
}

.signature a.link.anchor {
  dddheight: 16px;
  width: 30px;
}

.show-links:hover a.link.source {
  opacity: 1;
}

.show-links:hover a.link.anchor {
  opacity: 0.4;
}

a.link.source {
  font-size: 16px;
  font-family: "Liberation", monospace;
  font-weight: normal;
  right: 0px;
  opacity: 0.5;
  padding-left: 15px;
  transform: translateX(100%);
  text-align: right;
  text-indent: 0;
}

.content a {
  background-color: #fff;
  color: #44e;
  outline: none;
  text-decoration: none;
}

.content a.link-lit:hover {
  background-color: #ddf;
}

.content a:visited {
}

.missing-link {
  background-color: #933;
  color: #fff;
  font-weight: bold;
  padding-left: 4px;
  padding-right: 4px;
}

.style-link.external a::after {
  color: #44e;
  content: "\25E5\a0";
  dddfont-family: "Liberation", monospace;
  font-weight: bold;
  font-size: 50%;
  vertical-align: top;
}

.style-link.external:hover a::after {
  color: #008;
  ddd-content: "\25F9\a0";
}

@media only screen and (max-width: 1000px) {
  html {
    font-size: 24px;
  }

  .sidebar {
    box-shadow: 0px 5px 15px 0px #115;
    ddd-box-shadow: none;
    display: block;
    bottom: none;
    height: 105px;
    left: 0;
    padding-top: 105px;
    padding-bottom: 0px;
    position: fixed;
    top: 0;
    transition: height 0.2s linear;
    right: 0;
    width: 100%;
    z-index: 100;
  }

  body.show-toc .sidebar {
    padding-bottom: 30px;
  }

  body.show-toc .sidebar {
    position: fixed;
    height: 100%;
  }

  .sidebar .header {
    ddd-box-shadow: none;
    height: 105px;
    position: fixed;
    width: 100%;
  }

  .sidebar .header a.logo {
    margin-top: 22px;
    margin-bottom: 10px;
    padding: 0;
    position: absolute;
    left: 20px;
    width: 140px;
  }

  .sidebar .header .logo .image {
    background: url(./logo.svg) left no-repeat;
    height: 60px;
    width: 140px;
  }

  .sidebar .logo .name {
    display: none;
  }

  .sidebar .logo .version {
    display: none;
  }

  .sidebar .header .show-toc {
    display: block;
    position: absolute;
    top: 15px;
    right: 10px;
    width: 10px;
    height: 10px;
  }

  .sidebar .header .show-toc .icon-close {
    background: url(./close.svg) center no-repeat;
    height: 100px;
    opacity: 0.0;
    position: absolute;
    pointer-events: none;
    right: 45px;
    top: -7px;
    transition: opacity 0.2s linear;
    width: 50px;
  }

  body.show-toc .sidebar .header .show-toc .icon-close {
    opacity: 0.5;
    pointer-events: auto;
  }

  .sidebar .header .show-toc .icon-menu {
    background: url(./menu.svg) center no-repeat;
    height: 100px;
    opacity: 0.5;
    position: absolute;
    right: 30px;
    top: -7px;
    transition: opacity 0.2s linear;
    width: 80px;
  }

  body.show-toc .sidebar .header .show-toc .icon-menu {
    opacity: 0;
    pointer-events: none;
  }


  .sidebar .search {
    display: none;
  }

  .sidebar .toc {
    font-size: 36px;
  }

  .sidebar .alt-link {
    display: none;
  }

  .content {
    padding: 140px 80px 50px 80px;
    margin-left: 0px;
    width: 100%;
  }

  body.show-toc .content {
    overflow: hidden;
    pointer-events: none;
    position: fixed;
  }

  a.link.anchor {
    opacity: 0;
    pointer-events: none;
  }

  a.link.source {
    font-size: 16px;
    transform: translate(0, -10px);
    opacity: 0;
    pointer-events: none;
  }

  .tapped a.link.anchor {
    opacity: 0.7;
    pointer-events: auto;
  }

  .tapped a.link.source {
    opacity: 0.7;
    pointer-events: auto;
  }
}
