.fill-space {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.fill-space-noshrink {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
.vertical-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
}
.horizontal-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}
.horizontal-layout-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
.children-centre {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.children-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.children-scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.children-space-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.font-fixed-width {
  font-family: monospace;
}
.font-small {
  font-size: 80%;
}
html {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
}
@media (min-width: 450px) {
  html {
    min-height: 100%;
  }
}
body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  font-family: arial, sans-serif;
  background-color: #424249;
  color: #ffffff;
}
.content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
}
.content header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 5px;
  background-color: #eeeeee;
}
.content .app-container {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
}
.content .dialog-container {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.content .scroll-container {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.content footer {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #bbbbbb;
  margin-top: 10px;
}
.content footer p {
  padding: 0 5px;
  text-align: center;
}
.content footer p a {
  color: #bbbbbb;
}
.dialog {
  background-color: white;
  color: black;
  margin-bottom: 10px;
  max-width: 800px;
}
@media (min-width: 450px) {
  .dialog {
    min-width: 450px;
  }
}
@media (max-width: 450px) {
  .dialog {
    width: 100%;
  }
}
.dialog .banner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #1565C0;
  padding: 10px;
}
.dialog .banner .title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-left: 10px;
  font-weight: bold;
  color: white;
}
.dialog .dialog-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  padding: 20px 40px;
}
.dialog .dialog-content .headline {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.4em;
}
.dialog .dialog-content .sub-headline {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.2em;
}
.dialog .dialog-content .byline {
  margin-bottom: 20px;
}
.dialog .dialog-content .message {
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  padding: 20px;
  font-size: larger;
  margin-bottom: 20px;
}
.dialog .dialog-content .content {
  border: 1px solid #bbbbbb;
  padding: 10px;
  margin-bottom: 20px;
}
.dialog .dialog-content form .help-block.warning {
  color: #8a6d3b;
}
.dialog .dialog-content form span.help-block {
  margin: 0 0 0 0;
}
.dialog .dialog-content form div.help-block {
  margin: 0 0 10px 0;
}
.dialog .dialog-content form .submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
}
.dialog .dialog-content form .submit button {
  margin-bottom: 10px;
}
.dialog .dialog-content form .validation-summary-valid {
  display: none;
}
.dialog .dialog-content form .validation-summary-errors {
  margin-top: 10px;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ebccd1;
}
.dialog .dialog-content form .validation-summary-errors ul {
  margin: 0;
  padding: 0;
}
.dialog .dialog-content form .validation-summary-errors ul li {
  list-style: none;
}
.fine-print {
  color: #bbbbbb;
  text-align: center;
  margin: 5px;
}
body {
  counter-reset: sectioncounter;
}
.document {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-item-align: center;
      align-self: center;
  max-width: 800px;
  font-family: sans-serif;
}
.document section {
  counter-reset: pcounter;
}
.document section h3:before {
  content: counter(sectioncounter) ".\A0\A0";
  counter-increment: sectioncounter;
  font-weight: bold;
}
.document section > p:before {
  content: counter(sectioncounter) "." counter(pcounter) ".\A0\A0";
  counter-increment: pcounter;
  font-weight: bold;
}
.document section > p {
  padding-left: 2em;
}
.document section > ol {
  padding-top: 5px;
  padding-left: 5em;
  list-style-type: lower-alpha;
}
#embed-code,
#short-code,
.code {
  font-size: 0.8em;
  padding: 10px;
  margin-bottom: 5px;
}
.example {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  background-color: white;
}
.example > iframe {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
.unknown.alert {
  margin: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.content header {
  padding: 0;
}
.content header > * {
  margin: 5px;
}

/*# sourceMappingURL=site.css.map*/