@charset "UTF-8";
/*! normalize.css v4.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block; }

audio, canvas, progress, video {
  display: inline-block; }

audio:not([controls]) {
  display: none;
  height: 0; }

progress {
  vertical-align: baseline; }

template, [hidden] {
  display: none; }

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects; }

a:active, a:hover {
  outline-width: 0; }

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted; }

b, strong {
  font-weight: inherit; }

b, strong {
  font-weight: bolder; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

mark {
  background-color: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

img {
  border-style: none; }

svg:not(:root) {
  overflow: hidden; }

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em; }

figure {
  margin: 1em 40px; }

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible; }

button, input, select, textarea {
  font: inherit;
  margin: 0; }

optgroup {
  font-weight: bold; }

button, input {
  overflow: visible; }

button, select {
  text-transform: none; }

button, html [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button; }

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal; }

textarea {
  overflow: auto; }

[type="checkbox"], [type="radio"] {
  box-sizing: border-box;
  padding: 0; }

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto; }

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px; }

[type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54; }

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit; }

/*# sourceMappingURL=_normalize.scss.map */
/*
 * Gridism
 * A simple, responsive, and handy CSS grid by @cobyism
 * https://github.com/cobyism/gridism
 */
/* Preserve some sanity */
.grid,
.unit {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/* Set up some rules to govern the grid */
.grid {
  display: block;
  clear: both; }

.grid .unit {
  float: left;
  width: 100%;
  padding: 10px; }

/* This ensures the outer gutters are equal to the (doubled) inner gutters. */
.grid .unit:first-child {
  padding-left: 20px; }

.grid .unit:last-child {
  padding-right: 20px; }

/* Let people nuke the gutters/padding completely in a couple of ways */
.no-gutters .unit,
.unit.no-gutters {
  padding: 0 !important; }

/* Wrapping at a maximum width is optional */
.wrap .grid,
.grid.wrap {
  max-width: 1180px;
  margin: 0 auto; }

.grid.jumbo {
  max-width: 100%;
  background-color: #eff6fb; }

/* Width classes also have shorthand versions numbered as fractions
 * For example: for a grid unit 1/3 (one third) of the parent width,
 * simply apply class="w-1-3" to the element. */
.grid .whole, .grid .w-1-1 {
  width: 100%; }

.grid .half, .grid .w-1-2 {
  width: 50%; }

.grid .one-third, .grid .w-1-3 {
  width: 33.3332%; }

.grid .two-thirds, .grid .w-2-3 {
  width: 66.6665%; }

.grid .one-quarter,
.grid .one-fourth, .grid .w-1-4 {
  width: 25%; }

.grid .three-quarters,
.grid .three-fourths, .grid .w-3-4 {
  width: 75%; }

.grid .one-fifth, .grid .w-1-5 {
  width: 20%; }

.grid .two-fifths, .grid .w-2-5 {
  width: 40%; }

.grid .three-fifths, .grid .w-3-5 {
  width: 60%; }

.grid .four-fifths, .grid .w-4-5 {
  width: 80%; }

.grid .golden-small, .grid .w-g-s {
  width: 38.2716%; }

/* Golden section: smaller piece */
.grid .golden-large, .grid .w-g-l {
  width: 61.7283%; }

/* Golden section: larger piece */
/* Clearfix after every .grid */
.grid {
  *zoom: 1; }

.grid:before, .grid:after {
  display: table;
  content: "";
  line-height: 0; }

.grid:after {
  clear: both; }

/* Utility classes */
.align-center {
  text-align: center; }

.align-left {
  text-align: left; }

.align-right {
  text-align: right; }

.pull-left {
  float: left; }

.pull-right {
  float: right; }

/* A property for a better rendering of images in units: in
   this way bigger pictures are just resized if the unit
   becomes smaller */
.unit img {
  max-width: 100%; }

/* Responsive Stuff */
@media screen and (max-width: 700px) {
  /* Stack anything that isn’t full-width on smaller screens
     and doesn't provide the no-stacking-on-mobiles class */
  .grid:not(.no-stacking-on-mobiles) > .unit {
    width: 100% !important;
    padding-left: 20px;
    padding-right: 20px; }

  .unit .grid .unit {
    padding-left: 0px;
    padding-right: 0px; }

  /* Sometimes, you just want to be different on small screens */
  .center-on-mobiles {
    text-align: center !important; }

  .hide-on-mobiles {
    display: none !important; } }
/* Expand the wrap a bit further on larger screens */
@media screen and (min-width: 1180px) {
  .wider .grid,
  .grid.wider {
    max-width: 1180px;
    margin: 0 auto; } }
/**
 * Syntax highlighting styles
 */
.highlight .c {
  color: #998;
  font-style: italic; }
.highlight .err {
  color: #a61717; }
.highlight .k {
  font-weight: bold; }
.highlight .o {
  font-weight: bold; }
.highlight .cm {
  color: #998;
  font-style: italic; }
.highlight .cp {
  color: #999;
  font-weight: bold; }
.highlight .c1 {
  color: #998;
  font-style: italic; }
.highlight .cs {
  color: #999;
  font-weight: bold;
  font-style: italic; }
.highlight .gd {
  color: #000; }
.highlight .gd .x {
  color: #000; }
.highlight .ge {
  font-style: italic; }
.highlight .gr {
  color: #a00; }
.highlight .gh {
  color: #999; }
.highlight .gi {
  color: #000; }
.highlight .gi .x {
  color: #000; }
.highlight .go {
  color: #888; }
.highlight .gp {
  color: #555; }
.highlight .gs {
  font-weight: bold; }
.highlight .gu {
  color: #aaa; }
.highlight .gt {
  color: #a00; }
.highlight .kc {
  font-weight: bold; }
.highlight .kd {
  font-weight: bold; }
.highlight .kp {
  font-weight: bold; }
.highlight .kr {
  font-weight: bold; }
.highlight .kt {
  color: #458;
  font-weight: bold; }
.highlight .m {
  color: #099; }
.highlight .s {
  color: #3344ee; }
.highlight .nd {
  color: #008080; }
.highlight .na {
  color: #008080; }
.highlight .nb {
  color: #0086B3; }
.highlight .nc {
  color: #458;
  font-weight: bold; }
.highlight .no {
  color: #008080; }
.highlight .ni {
  color: #800080; }
.highlight .ne {
  color: #3344ee;
  font-weight: bold; }
.highlight .nf {
  color: #3344ee;
  font-weight: bold; }
.highlight .nn {
  color: #555; }
.highlight .nt {
  color: #000080; }
.highlight .nv {
  color: #008080; }
.highlight .ow {
  font-weight: bold; }
.highlight .w {
  color: #bbb; }
.highlight .mf {
  color: #099; }
.highlight .mh {
  color: #099; }
.highlight .mi {
  color: #099; }
.highlight .mo {
  color: #099; }
.highlight .sb {
  color: #3344ee; }
.highlight .sc {
  color: #3344ee; }
.highlight .sd {
  color: #3344ee; }
.highlight .s2 {
  color: #3344ee; }
.highlight .se {
  color: #3344ee; }
.highlight .sh {
  color: #3344ee; }
.highlight .si {
  color: #3344ee; }
.highlight .sx {
  color: #3344ee; }
.highlight .sr {
  color: #009926; }
.highlight .s1 {
  color: #3344ee; }
.highlight .ss {
  color: #990073; }
.highlight .bp {
  color: #999; }
.highlight .vc {
  color: #008080; }
.highlight .vg {
  color: #008080; }
.highlight .vi {
  color: #008080; }
.highlight .il {
  color: #099; }

/*!
 *  Font Awesome 4.4.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/fontawesome-webfont.eot?v=4.4.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.4.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.4.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.4.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.4.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.4.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal; }
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.fa-home:before {
  content: "\f015"; }

.fa-help:before {
  content: "\f059"; }

.fa-link:before {
  content: "\f0c1"; }

.fa-pencil:before {
  content: "\f040"; }

.fa-text-o:before {
  content: "\f0f6"; }

.fa-update:before {
  content: "\f044"; }

.fa-add:before {
  content: "\f196"; }

.fa-fix:before {
  content: "\f046"; }

.fa-download:before {
  content: "\f019"; }

.fa-github:before {
  content: "\f09b"; }

.fa-connect {
  color: #0096D6; }

.fa-connect:before {
  content: "\f20e"; }

.fa-verify {
  color: #008080; }

.fa-verify:before {
  content: "\f058"; }

.fa-endpoints {
  color: #cd5c5c; }

.fa-endpoints:before {
  content: "\f021"; }

.fa-soap {
  color: #262f8d; }

.fa-soap:before {
  content: "\f0ee"; }

.fa-main-cli {
  color: #3e034b; }

.fa-main-cli:before {
  content: "\f120"; }

.fa-binary {
  color: #262f8d; }

.fa-binary:before {
  content: "\f02a"; }

.fa-mail {
  color: #72638f; }

.fa-mail:before {
  content: "\f0e0"; }

.fa-ftp {
  color: #b6600b; }

.fa-ftp:before {
  content: "\f07c"; }

.fa-database {
  color: #576173; }

.fa-database:before {
  content: "\f1c0"; }

.fa-globe {
  color: #2e5cbe; }

.fa-globe:before {
  content: "\f0ac"; }

.fa-run {
  color: #06A453; }

.fa-run:before {
  content: "\f144"; }

.fa-code:before {
  content: "\f121"; }

/* Base */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

body {
  font: 300 21px Lato, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #000;
  background-color: #fff;
  border-top: 3px solid #0096D6;
  -webkit-box-shadow: inset 0 3px 30px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 3px 30px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 3px 30px rgba(0, 0, 0, 0.3);
  -webkit-font-feature-settings: "kern" 1;
  -moz-font-feature-settings: "kern" 1;
  -o-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  font-kerning: normal; }

hr {
  margin: 0 0 20px 0;
  border: 0;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #ffffff; }

.clear {
  display: block; }

.clear:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
  color: #333;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-color: #f5f5f5;
  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  border: 1px solid #bbbbbb;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  border-bottom-color: #a2a2a2;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); }
  .btn:hover {
    color: #333;
    text-decoration: none;
    background: #e6e6e6 0 -15px;
    -webkit-transition: background-position 0.1s linear;
    -moz-transition: background-position 0.1s linear;
    -o-transition: background-position 0.1s linear;
    transition: background-position 0.1s linear; }

.jumbo .btn {
  border-radius: 6px 6px 6px 6px;
  font-size: 20px;
  font-weight: bold;
  padding: 11px 50px; }

.btn-release {
  color: #fff;
  min-width: 14em;
  margin-bottom: 3px;
  border-color: #33abde;
  background: #33abde;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.2); }
  .btn-release:hover {
    color: #fff;
    border-color: #eff6fb;
    background-color: #0096D6; }
  .btn-release i {
    color: #fff; }

.btn-primary {
  color: #fff;
  border-color: #0096D6;
  background: #0096D6; }
  .btn-primary:hover {
    color: #fff;
    border-color: #33abde;
    background-color: #33abde; }

/* Sections */
header,
section,
footer {
  float: left;
  width: 100%;
  clear: both; }

.grid.jumbo {
  background-color: #0096D6;
  color: #fff;
  margin-bottom: 30px; }

section.features {
  background-color: #eff6fb;
  padding-top: 30px; }

h2 img {
  width: 28px;
  vertical-align: text-bottom; }

/* Header */
header h1,
header nav {
  display: inline-block; }

nav ul {
  padding: 0;
  margin: 0; }
nav li {
  display: inline-block; }
nav img {
  float: left;
  margin-right: 6px; }
nav span.brand {
  color: #fff;
  margin-right: 20px; }

.main-nav {
  margin-top: 35px;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #0096D6;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px; }
  .main-nav li {
    vertical-align: middle; }
    .main-nav li a {
      color: #fff;
      font-size: 14px;
      display: block;
      padding: 10px 15px 10px;
      text-shadow: none;
      text-transform: uppercase;
      -webkit-transition: all 0.25s;
      -moz-transition: all 0.25s;
      -o-transition: all 0.25s;
      transition: all 0.25s; }
      .main-nav li a:hover {
        background-color: rgba(255, 255, 255, 0.2); }
    .main-nav li.current a {
      background-color: rgba(255, 255, 255, 0.2); }

.mobile-nav ul {
  overflow: hidden;
  width: 100%;
  display: table; }
.mobile-nav img {
  margin-left: 10px; }
.mobile-nav a {
  float: left;
  width: 100%;
  background-color: #0096D6;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  padding: 5px; }
.mobile-nav li {
  display: table-cell;
  width: 20%;
  padding: 8px 2px; }
.mobile-nav .current a {
  background-color: #33abde; }

/*
 * This code is courtesy Ben Balter, modified by Christoph Deppisch for citrusframework.org
 * http://ben.balter.com/2014/03/13/pages-anchor-links/
 */
.header-link {
  position: relative;
  left: 0.5em;
  opacity: 0;
  font-size: 0.8em;
  -webkit-transition: opacity 0.2s ease-in-out 0.1s;
  -moz-transition: opacity 0.2s ease-in-out 0.1s;
  -o-transition: opacity 0.2s ease-in-out 0.1s;
  transition: opacity 0.2s ease-in-out 0.1s; }

h2:hover .header-link,
h3:hover .header-link,
h4:hover .header-link,
h5:hover .header-link,
h6:hover .header-link {
  opacity: 1; }

@media (max-width: 1180px) {
  .main-nav {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px; } }
@media (max-width: 768px) {
  .main-nav .show-on-mobiles {
    display: inline; }
  .main-nav .hide-on-mobiles {
    display: none; }

  .main-nav ul {
    text-align: right; }

  nav img {
    margin-right: 15px; }

  .unit.one-third {
    min-height: 180px; } }
/* Footer */
footer {
  background-color: #212121;
  font-size: 16px;
  padding-bottom: 5px;
  color: #c0c0c0; }
  footer a {
    color: #fff; }
  footer .align-right p {
    display: inline-block; }
  footer img {
    display: inline-block;
    position: relative;
    top: 8px;
    margin-left: 5px;
    padding: 1px; }
  footer .unit.one-third:hover {
    background-color: #212121; }

@media (max-width: 700px) {
  footer .one-third p {
    margin-bottom: 0; }
  footer .two-thirds p {
    margin-top: -20px; }

  .unit .grid .unit {
    min-height: 180px; } }
/* Intro */
.intro .unit {
  padding: 10px 0 40px; }
.intro .one-third p {
  padding-right: 1em; }
.intro p.first {
  font-size: 2.75em;
  font-weight: bold;
  line-height: 1em;
  margin-top: 35px;
  margin-bottom: 0px; }

.unit.one-third {
  min-height: 275px;
  padding: 20px 0px 15px 20px;
  cursor: default; }

.unit.one-third:hover {
  background-color: #eff6fb;
  cursor: default; }

@media (min-width: 569px) {
  .intro p.first {
    font-size: 4.2em; } }
/* Quickstart */
.quickstart {
  background-color: #3F1F1F;
  color: #fff;
  margin: 60px 0;
  -webkit-box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.4);
  box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.4); }
  .quickstart .content {
    padding: 0; }
  .quickstart h3 {
    font-size: 24px;
    line-height: 24px;
    margin-top: 20px; }
  .quickstart .code {
    font-size: 12px;
    display: block;
    margin: 0 0 -30px; }

@media (min-width: 768px) {
  .quickstart .code {
    font-size: 18px;
    margin: -30px 0;
    float: right; }
  .quickstart h3 {
    margin: 50px 0 0;
    text-align: center; } }
/* Code */
.quickstart .code {
  display: block;
  padding: 0;
  font-family: Menlo, Consolas, "Courier New", Courier, "Liberation Mono", monospace;
  line-height: 1.3em; }
  .quickstart .code .title {
    display: block;
    text-align: center;
    margin: 0 20px;
    padding: 5px 0;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    font: 400 16px/24px 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #444;
    background-color: #f7f7f7;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y3ZjdmNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjclIiBzdG9wLWNvbG9yPSIjY2ZjZmNmIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2FhYWFhYSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), color-stop(7%, #cfcfcf), to(#aaaaaa));
    background-image: -webkit-linear-gradient(top, #f7f7f7 0%, #cfcfcf 7%, #aaaaaa 100%);
    background-image: -moz-linear-gradient(top, #f7f7f7 0%, #cfcfcf 7%, #aaaaaa 100%);
    background-image: -o-linear-gradient(top, #f7f7f7 0%, #cfcfcf 7%, #aaaaaa 100%);
    background-image: linear-gradient(top, #f7f7f7 0%, #cfcfcf 7%, #aaaaaa 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#aaaaaa',GradientType=0 );
    border-bottom: 1px solid #111; }
  .quickstart .code .shell {
    padding: 20px;
    text-shadow: none;
    margin: 0 20px;
    background-color: #171717;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3); }
  .quickstart .code .line {
    display: block;
    margin: 0;
    padding: 0; }
    .quickstart .code .line span {
      display: inline-block; }
  .quickstart .code .path {
    color: #87ceeb;
    -webkit-user-select: none;
    /* Chrome all / Safari all */
    -moz-user-select: none;
    /* Firefox all */
    -ms-user-select: none;
    /* IE 10+ */
    -o-user-select: none;
    user-select: none; }
  .quickstart .code .prompt {
    color: #cd5c5c;
    -webkit-user-select: none;
    /* Chrome all / Safari all */
    -moz-user-select: none;
    /* Firefox all */
    -ms-user-select: none;
    /* IE 10+ */
    -o-user-select: none;
    user-select: none; }
  .quickstart .code .command {
    color: #f0e68c; }
  .quickstart .code .output {
    color: #888; }

/* Article - Used for both docs and news */
article {
  background-color: #fff;
  border: 1px solid #0096D6;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding: 20px;
  margin: 0 10px;
  font-size: 16px; }

@media (max-width: 480px) {
  article ul {
    padding-left: 20px; } }
@media (max-width: 700px) {
  article {
    margin: 0; } }
@media (min-width: 768px) {
  article {
    padding: 40px 40px 30px;
    font-size: 21px; } }
/* Right-side nav - used by both docs and news */
aside {
  padding-top: 30px; }
  aside h4 {
    background-color: #fcc300;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 10px 10px 30px;
    margin-left: -30px;
    display: inline-block;
    min-width: 15em; }
  aside ul {
    padding-left: 0; }
    aside ul:first-child {
      margin-top: 0; }
  aside li {
    list-style-type: none; }
    aside li a {
      font-size: 16px;
      position: relative; }
    aside li.current a:before {
      content: "";
      border-color: transparent transparent transparent #0096D6;
      border-style: solid;
      border-width: 10px;
      width: 0;
      height: 0;
      position: absolute;
      top: 0;
      left: -30px; }

/* Documentation */
.docs .content {
  padding: 0; }

.improve {
  padding-top: 25px;
  font-size: 16px; }
  .improve a {
    color: #999; }

.docs-nav-mobile select {
  color: #000;
  width: 100%; }

/* Samples */
.samples .content {
  padding: 0; }

.samples-nav-mobile select {
  color: #000;
  width: 100%; }

/* News */
article h2:first-child {
  margin-top: 0; }

.post-category,
.post-meta {
  display: inline-block;
  vertical-align: middle;
  font-size: .8em; }

.post-category {
  display: inline-block;
  color: #fff;
  margin-left: -30px;
  padding: 6px 10px 8px;
  padding-left: 50px;
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  border-radius: 0 5px 5px 0;
  position: relative;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  background-color: #33abde;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzllMjgxMiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM2ZjBkMGQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#33abde), to(#0096D6));
  background-image: -webkit-linear-gradient(top, #33abde 0%, #0096D6 100%);
  background-image: -moz-linear-gradient(top, #33abde 0%, #0096D6 100%);
  background-image: -o-linear-gradient(top, #33abde 0%, #0096D6 100%);
  background-image: linear-gradient(to bottom, #33abde 0%, #0096D6 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33abde', endColorstr='#0096D6',GradientType=0 ); }
  .post-category:before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    border-color: transparent #0096D6 #0096D6 transparent;
    border-style: solid;
    border-width: 5px;
    width: 0;
    height: 0; }

.post-content img {
  max-width: 100%; }

.label {
  float: left;
  text-transform: uppercase;
  font-weight: 700; }

@media (max-width: 700px) {
  .post-category {
    padding-left: 30px; } }
@media (min-width: 768px) {
  .post-category {
    margin-left: -50px; } }
.avatar {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  display: inline-block;
  vertical-align: middle; }

.post-meta {
  padding: 5px 0;
  color: #c0c0c0;
  font-weight: 600; }

.post-date,
.post-author {
  margin-left: 10px; }

.news article + article {
  margin-top: -10px;
  -webkit-border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
  border-top: 1px solid #555;
  -webkit-box-shadow: 0 -1px 0 #2f2f2f;
  -moz-box-shadow: 0 -1px 0 #2f2f2f;
  box-shadow: 0 -1px 0 #2f2f2f; }

/* Code Highlighting */
pre,
code {
  white-space: pre;
  display: inline-block;
  margin: 0;
  font: 14px/1.8em Menlo, Consolas, "Courier New", Courier, "Liberation Mono", monospace;
  padding: 0 0.5em; }

@media (min-width: 768px) {
  pre, code {
    font-size: 16px; } }
.highlight,
p > pre,
p > code,
p > nobr > code,
li > code,
li > pre,
h5 > code,
.note > code {
  max-width: 100%;
  overflow-x: auto;
  vertical-align: middle;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px; }

.note code {
  background-color: #333;
  background-color: rgba(0, 0, 0, 0.2);
  margin-left: 2.5px;
  margin-right: 2.5px;
  font-size: 0.8em; }

.highlighter-rouge {
  border: 1px solid #DDDDDD;
  border-radius: 5px;
  margin: 0 0; }

.highlight {
  background-color: #FAFAFA;
  margin: 0 0;
  padding: 3px 0;
  width: 100%;
  overflow: auto; }

/* HTML Elements */
h1, h2, h3, h4, h5, h6 {
  margin: 0; }

a {
  color: #3b73af;
  text-decoration: none;
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s; }
  a:hover {
    color: #fcc300; }

a.prominent {
  display: block;
  margin-top: 8px; }

strong {
  font-weight: 700; }

p {
  line-height: 1.5em; }

.left {
  float: left; }

.right {
  float: right; }

.align-right {
  text-align: right; }

.align-left {
  text-align: left; }

.align-center {
  text-align: center; }

/* Article HTML */
article {
  min-height: 900px; }
  article h2, article h3, article h4, article h5, article h6 {
    margin: 1em 0; }
  article h4 {
    color: #fff; }
  article ul li p {
    margin: 0; }
  article ul li blockquote {
    margin: 10px 0; }
  article ul li,
  article ol li {
    line-height: 1.5em;
    margin-bottom: 0.5em; }

h5, h6 {
  font-size: 1em;
  font-style: italic; }

blockquote {
  border-left: 2px solid #777;
  padding-left: 20px;
  font-style: italic;
  font-size: 18px;
  font-weight: 500; }

/* Tables */
table {
  width: 100%;
  background-color: #f9f9f9;
  margin: .5em 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px; }

thead {
  -webkit-border-top-left-radius: 5px;
  -moz-border-radius-topleft: 5px;
  border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topright: 5px;
  border-top-right-radius: 5px;
  color: #fff;
  background-color: #33abde;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzNhM2EzYSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMxZTFlMWUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#33abde), to(#0096D6));
  background-image: -webkit-linear-gradient(top, #33abde 0%, #0096D6 100%);
  background-image: -moz-linear-gradient(top, #33abde 0%, #0096D6 100%);
  background-image: -o-linear-gradient(top, #33abde 0%, #0096D6 100%);
  background-image: linear-gradient(to bottom, #33abde 0%, #0096D6 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3a3a3a', endColorstr='#0096D6',GradientType=0 ); }
  thead th {
    position: relative; }
    thead th:first-child {
      -webkit-border-top-left-radius: 5px;
      -moz-border-radius-topleft: 5px;
      border-top-left-radius: 5px; }
    thead th:last-child {
      -webkit-border-top-right-radius: 5px;
      -moz-border-radius-topright: 5px;
      border-top-right-radius: 5px; }

td {
  padding: .5em .75em; }

td p {
  margin: 0; }

th {
  text-transform: uppercase;
  font-size: 16px;
  padding: .5em .75em; }

tbody td {
  border-top: 1px solid #747474;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1affffff', endColorstr='#00ffffff',GradientType=0 ); }
  tbody td p {
    font-size: 16px; }
    tbody td p code {
      font-size: 14px; }

code.option,
th .option,
code.filter,
th .filter {
  color: #50B600; }

code.flag,
th .flag,
code.output,
th .output {
  color: #049DCE; }

code.option,
code.flag,
code.filter,
code.output {
  margin-bottom: 2px; }

/* Responsive tables */
@media (max-width: 768px) {
  .mobile-side-scroller {
    overflow-x: scroll;
    margin: 0 -40px;
    padding: 0 10px; } }
.show-on-mobiles {
  display: none; }

@media screen and (max-width: 700px) {
  .show-on-mobiles {
    display: block !important; }

  a .show-on-mobiles {
    display: inline !important; } }
/* Helper class taken from Bootstrap.
   Hides an element to all devices except screen readers.
*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }
