@charset "UTF-8";
body {
  font-family: sans-serif;
  background: #F0F0F0;
  color: #727779;
  font-size: 16px;
  margin: 0px;
  padding: 0px; }
  body.nice_fonts {
    font-family: "range"; }
  body.show_lightbox {
    overflow: hidden; }
    body.show_lightbox .shroud {
      display: block; }

a {
  color: #f05a7f;
  text-decoration: none; }
  a:hover {
    color: #f27191; }

.nav {
  width: 200px;
  position: fixed;
  z-index: 1;
  top: 0px;
  left: 0px;
  bottom: 0;
  color: white;
  background: #2B2B2B; }
  .nav a {
    color: #e0e0e0; }
    .nav a:hover {
      color: #fafafa; }
  .nav .logo {
    text-align: center;
    margin: 20px 0 10px 0; }
  .nav h1 {
    display: none; }
  .nav ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    margin-top: 24px;
    margin-left: 24px; }
  .nav .primary_nav li {
    line-height: 26px;
    font-size: 15px; }
  .nav .primary_nav a {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #7A7A7A;
    position: relative;
    padding-left: 0; }
    .nav .primary_nav a:hover, .nav .primary_nav a.active {
      padding-left: 20px;
      color: white; }
      .nav .primary_nav a:hover:before, .nav .primary_nav a.active:before {
        color: #E6E4E4;
        left: 0; }
    .nav .primary_nav a:before {
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      transition: all 0.3s ease;
      content: "»";
      color: rgba(230, 228, 228, 0);
      position: absolute;
      left: -20px; }
  .nav .sharing {
    text-align: left;
    font-size: 0;
    margin-left: 24px;
    margin-top: 24px; }
    .nav .sharing img {
      width: 20px;
      height: 19px;
      display: inline-block;
      margin-right: 10px; }
  .nav .sub_nav {
    color: #7A7A7A; }
    .nav .sub_nav li {
      line-height: 24px;
      font-size: 13px; }
  .nav .nav_bottom {
    font-size: 13px;
    color: #7A7A7A;
    position: absolute;
    bottom: 20px;
    left: 24px;
    right: 24px;
    line-height: 18px; }

.main {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: white;
  width: 800px;
  overflow: hidden;
  margin-left: 200px;
  padding: 0 100px 16px 100px;
  opacity: 1; }
  .main.obscured {
    margin-left: 133px;
    opacity: 0.6; }
  .main .message {
    color: #f05a7f;
    margin: 0px;
    font-size: 20px;
    text-align: center;
    margin: 30px 20px 0 20px;
    padding: 0 90px 20px 90px;
    line-height: 1.5;
    border-bottom: 1px solid #F0F0F0; }
  .main h2, .main h3, .main h4 {
    color: #595d5f;
    margin: 10px 0px; }
  .main ul {
    margin: 20px 0px; }
  .main li {
    margin-bottom: 5px; }
  .main p, .main h2, .main h3 {
    margin: 26px 0; }
  .main p, .main ul {
    line-height: 26px; }
  .main p > code, .main li > code {
    display: inline-block;
    background: #F0F0F0;
    color: #666a6c;
    font-family: "range_mono";
    border-radius: 9px;
    padding: 1px 8px; }
  .main pre {
    background: #3C3C3C;
    color: white;
    border-radius: 4px;
    font-family: "range_mono";
    padding: 40px 45px;
    font-size: 14px;
    line-height: 20px;
    overflow: auto; }
    .main pre code {
      font-family: "range_mono"; }
  .main .scroll_spacer {
    height: 300px; }

.footer {
  font-size: 13px;
  margin-bottom: 8px;
  color: #8c9092; }
  .footer a {
    color: #595d5f; }
    .footer a:hover {
      color: #414344; }

.code_container {
  position: relative; }
  .code_container .see_lua_btn {
    position: absolute;
    top: 12px;
    right: 12px; }
    .code_container .see_lua_btn:active {
      top: 14px; }

.shroud {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: fixed;
  display: none;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: rgba(0, 0, 0, 0);
  padding: 40px 0;
  z-index: 3;
  overflow: auto; }
  .animate_lightbox .shroud {
    background: rgba(0, 0, 0, 0.5); }

.lightbox {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 760px;
  margin-left: 220px;
  overflow: hidden;
  position: relative;
  color: white;
  background: rgba(60, 60, 60, 0.95);
  border-radius: 4px;
  top: 20px;
  opacity: 0; }
  .animate_lightbox .lightbox {
    opacity: 1;
    top: 0; }
  .lightbox .close_btn {
    font-size: 22px;
    position: absolute;
    right: 12px;
    top: 16px;
    cursor: pointer;
    color: #9e9e9e; }
    .lightbox .close_btn:hover {
      color: #b1b1b1; }
  .lightbox h2 {
    background: #383838;
    padding: 15px 25px;
    margin: 0; }
  .lightbox .lb_code_column {
    font-size: 14px;
    font-family: "range_mono";
    padding: 20px 25px;
    margin: 0;
    font-size: 14px;
    line-height: 20px; }

/* builtins */
.nb {
  color: #F69385; }

/* strings */
.s, .s1, .s2, .se {
  color: #F1BF8E; }

/* proper names, self */
.nc, .vc, .bp {
  color: #99CBCA; }

/* true, false, nil */
.kc {
  color: #B3EFE5; }

/* function lit, braces, parens  */
.nf, .kt {
  color: #B0D89C; }

/* operators */
.o, .si {
  color: #F277A1; }

.nv {
  color: #F277A1; }

/* keywords */
.k, .kd {
  color: #BB84B4; }

.c1, .c2 {
  color: #929292; }

.m, .mi, .mf, .mh {
  color: #9D8FF2; }

.rainbow_btn_wrap {
  position: relative;
  display: inline-block;
  height: 36px;
  line-height: 38px;
  padding: 0 20px;
  border-radius: 2px;
  background: #f0f0f0;
  box-shadow: 0 4px 0 #d9d9d8; }
  .rainbow_btn_wrap:active {
    background: #e3e3e3;
    box-shadow: 0 2px 0 #cccccb;
    top: 2px; }

.rainbow_btn {
  display: block;
  font-size: 14px; }
  .enable_rainbow .rainbow_btn {
    background-image: -webkit-linear-gradient(bottom, #f05a7f 0%, #f05a7f 30%, rgba(255, 0, 0, 0) 70%, rgba(255, 0, 0, 0) 100%), -webkit-linear-gradient(left, #f277a1, #f58a7e, #f1bf8e, #b0d89c, #99cbca, #8d99cd, #bb84b4, #f277a1);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -ms-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    -ms-text-fill-color: transparent;
    text-fill-color: transparent;
    -webkit-animation: rainbow 30s linear infinite;
    -moz-animation: rainbow 30s linear infinite;
    -ms-animation: rainbow 30s linear infinite;
    animation: rainbow 30s linear infinite;
    background-position: 0 -12px;
    color: white;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    .enable_rainbow .rainbow_btn:hover {
      background-position: 0 12px; }

@-webkit-keyframes rainbow {
  0% {
    background-position-x: 0; }
  25% {
    background-position-x: 25em; }
  50% {
    background-position-x: 50em; }
  75% {
    background-position-x: 75em; }
  100% {
    background-position-x: 99em; } }

@font-face {
  font-family: 'range_mono';
  src: url("fonts/range-mono-medium-webfont.eot");
  src: url("fonts/range-mono-medium-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/range-mono-medium-webfont.woff") format("woff"), url("fonts/range-mono-medium-webfont.ttf") format("truetype"), url("fonts/range-mono-medium-webfont.svg#range_monomedium") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'range';
  src: url("fonts/range-regular-webfont.eot");
  src: url("fonts/range-regular-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/range-regular-webfont.woff") format("woff"), url("fonts/range-regular-webfont.ttf") format("truetype"), url("fonts/range-regular-webfont.svg#rangeregular") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'range';
  src: url("fonts/range-semibold-webfont.eot");
  src: url("fonts/range-semibold-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/range-semibold-webfont.woff") format("woff"), url("fonts/range-semibold-webfont.ttf") format("truetype"), url("fonts/range-semibold-webfont.svg#rangesemibold") format("svg");
  font-weight: bold;
  font-style: normal; }
