/**
 * This is the baseline stylesheet for all variations of flair.
 * Import this file first before any components.
 */
/* ==========================================================================
 Normalize.scss settings
 ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
 ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *  `em` units.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }
/**
 * Remove default margin.
 */
body {
  margin: 0; }
/* HTML5 display definitions
 ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }
/**
 * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio, canvas, progress, video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }
/**
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }
/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden], template {
  display: none; }
/* Links
 ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent; }
/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active, a:hover {
  outline: 0; }
/* Text-level semantics
 ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }
/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b, strong {
  font-weight: bold; }
/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }
/**
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }
/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }
/* Embedded content
 ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
  border: 0; }
/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }
/* Grouping content
 ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0; }
/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }
/**
 * Address odd `em`-unit font size rendering in all browsers.
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em; }
/* Forms
 ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *  Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Improves appearance and consistency in all browsers.
 */
button, input, optgroup, select, textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }
/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button, select {
  text-transform: none; }
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *  and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *  `input` and others.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *  Known issue: inner spacing remains in IE 6.
 */
button, html input[type="button"], input[type="reset"], input[type="submit"] {
  /* 1 */
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }
/**
 * Re-set default cursor for disabled elements.
 */
button[disabled], html input[disabled] {
  cursor: default; }
/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0; }
/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }
/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 *  Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }
/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto; }
/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */ }
/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Corrects text not wrapping in Firefox 3.
 * 4. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }
/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }
/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }
/* Tables
 ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td, th {
  padding: 0; }

@font-face {
  font-family: "Ubuntu Condensed";
  src: url("../Asset/vendor/flair/Font/ubuntu-c-webfont.eot");
  src: url("../Asset/vendor/flair/Font/ubuntu-c-webfont.eot?#iefix") format("embedded-opentype"), url("../Asset/vendor/flair/Font/ubuntu-c-webfont.woff2") format("woff2"), url("../Asset/vendor/flair/Font/ubuntu-c-webfont.woff") format("woff"), url("../Asset/vendor/flair/Font/ubuntu-c-webfont.ttf") format("truetype");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: "Ubuntu";
  src: url("../Asset/vendor/flair/Font/ubuntu-l-webfont.eot");
  src: url("../Asset/vendor/flair/Font/ubuntu-l-webfont.eot?#iefix") format("embedded-opentype"), url("../Asset/vendor/flair/Font/ubuntu-l-webfont.woff2") format("woff2"), url("../Asset/vendor/flair/Font/ubuntu-l-webfont.woff") format("woff"), url("../Asset/vendor/flair/Font/ubuntu-l-webfont.ttf") format("truetype");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: "Ubuntu";
  src: url("../Asset/vendor/flair/Font/ubuntu-li-webfont.eot");
  src: url("../Asset/vendor/flair/Font/ubuntu-li-webfont.eot?#iefix") format("embedded-opentype"), url("../Asset/vendor/flair/Font/ubuntu-li-webfont.woff2") format("woff2"), url("../Asset/vendor/flair/Font/ubuntu-li-webfont.woff") format("woff"), url("../Asset/vendor/flair/Font/ubuntu-li-webfont.ttf") format("truetype");
  font-weight: 300;
  font-style: italic; }

@font-face {
  font-family: "Ubuntu";
  src: url("../Asset/vendor/flair/Font/ubuntu-r-webfont.eot");
  src: url("../Asset/vendor/flair/Font/ubuntu-r-webfont.eot?#iefix") format("embedded-opentype"), url("../Asset/vendor/flair/Font/ubuntu-r-webfont.woff2") format("woff2"), url("../Asset/vendor/flair/Font/ubuntu-r-webfont.woff") format("woff"), url("../Asset/vendor/flair/Font/ubuntu-r-webfont.ttf") format("truetype");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: "Ubuntu";
  src: url("../Asset/vendor/flair/Font/ubuntu-ri-webfont.eot");
  src: url("../Asset/vendor/flair/Font/ubuntu-ri-webfont.eot?#iefix") format("embedded-opentype"), url("../Asset/vendor/flair/Font/ubuntu-ri-webfont.woff2") format("woff2"), url("../Asset/vendor/flair/Font/ubuntu-ri-webfont.woff") format("woff"), url("../Asset/vendor/flair/Font/ubuntu-ri-webfont.ttf") format("truetype");
  font-weight: 400;
  font-style: italic; }

@font-face {
  font-family: "Ubuntu";
  src: url("../Asset/vendor/flair/Font/ubuntu-b-webfont.eot");
  src: url("../Asset/vendor/flair/Font/ubuntu-b-webfont.eot?#iefix") format("embedded-opentype"), url("../Asset/vendor/flair/Font/ubuntu-b-webfont.woff2") format("woff2"), url("../Asset/vendor/flair/Font/ubuntu-b-webfont.woff") format("woff"), url("../Asset/vendor/flair/Font/ubuntu-b-webfont.ttf") format("truetype");
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: "Ubuntu";
  src: url("../Asset/vendor/flair/Font/ubuntu-bi-webfont.eot");
  src: url("../Asset/vendor/flair/Font/ubuntu-bi-webfont.eot?#iefix") format("embedded-opentype"), url("../Asset/vendor/flair/Font/ubuntu-bi-webfont.woff2") format("woff2"), url("../Asset/vendor/flair/Font/ubuntu-bi-webfont.woff") format("woff"), url("../Asset/vendor/flair/Font/ubuntu-bi-webfont.ttf") format("truetype");
  font-weight: 700;
  font-style: italic; }

@font-face {
  font-family: "Ubuntu Mono";
  src: url("../Asset/vendor/flair/Font/ubuntu-mono-webfont.eot");
  src: url("../Asset/vendor/flair/Font/ubuntu-mono-webfont.eot?#iefix") format("embedded-opentype"), url("../Asset/vendor/flair/Font/ubuntu-mono-webfont.woff2") format("woff2"), url("../Asset/vendor/flair/Font/ubuntu-mono-webfont.woff") format("woff"), url("../Asset/vendor/flair/Font/ubuntu-mono-webfont.ttf") format("truetype");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: "Ubuntu Mono";
  src: url("../Asset/vendor/flair/Font/ubuntu-monoi-webfont.eot");
  src: url("../Asset/vendor/flair/Font/ubuntu-monoi-webfont.eot?#iefix") format("embedded-opentype"), url("../Asset/vendor/flair/Font/ubuntu-monoi-webfont.woff2") format("woff2"), url("../Asset/vendor/flair/Font/ubuntu-monoi-webfont.woff") format("woff"), url("../Asset/vendor/flair/Font/ubuntu-monoi-webfont.ttf") format("truetype");
  font-weight: 400;
  font-style: italic; }

@font-face {
  font-family: "Ubuntu Mono";
  src: url("../Asset/vendor/flair/Font/ubuntu-monob-webfont.eot");
  src: url("../Asset/vendor/flair/Font/ubuntu-monob-webfont.eot?#iefix") format("embedded-opentype"), url("../Asset/vendor/flair/Font/ubuntu-monob-webfont.woff2") format("woff2"), url("../Asset/vendor/flair/Font/ubuntu-monob-webfont.woff") format("woff"), url("../Asset/vendor/flair/Font/ubuntu-monob-webfont.ttf") format("truetype");
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: "Ubuntu Mono";
  src: url("../Asset/vendor/flair/Font/ubuntu-monobi-webfont.eot");
  src: url("../Asset/vendor/flair/Font/ubuntu-monobi-webfont.eot?#iefix") format("embedded-opentype"), url("../Asset/vendor/flair/Font/ubuntu-monobi-webfont.woff2") format("woff2"), url("../Asset/vendor/flair/Font/ubuntu-monobi-webfont.woff") format("woff"), url("../Asset/vendor/flair/Font/ubuntu-monobi-webfont.ttf") format("truetype");
  font-weight: 700;
  font-style: italic; }
/**
 Below is the much tidier representation of this file in Sass 3.3 style.
 leafo's sassphp is not yet compatible with 3.3 features.
 $flair-font-client-prefix: "" !default;
 $font-name-base: $flair-font-client-prefix + ubuntu;
 $font-name-list: (
 "Ubuntu Condensed": (
 "variation-map": (
 "c": (400, normal),
 )
 ),
 "Ubuntu": (
 "variation-map": (
 "l": (300, normal),
 "li": (300, italic),
 "r": (400, normal),
 "ri": (400, italic),
 "b": (700, normal),
 "bi": (700, italic),
 )
 ),
 "Ubuntu Mono": (
 "variation-map": (
 "mono": (400, normal),
 "monoi": (400, italic),
 "monob": (700, normal),
 "monobi": (700, italic),
 )
 ),
 );
 @each $font-name in map-keys($font-name-list) {
 $map: map-get($font-name-list, $font-name);
 @each $variation in map-get($map, "variation-map") {
 @font-face {
 font-family: $font-name;
 $url: $font-name-base
 + "-"
 + nth($variation, 1)
 + "-webfont";
 src: url($url + ".eot");
 src: url($url + ".eot?#iefix")
 format('embedded-opentype'),
 url($url + ".woff2") format("woff2"),
 url($url + ".woff") format("woff"),
 url($url + ".ttf") format("truetype");
 $detail: nth($variation, 2);
 font-weight: nth($detail, 1);
 font-style: nth($detail, 2);
 }
 }
 }
 **/
html {
  font-size: 16px; }

.grid {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.05) 1px, transparent 2px, transparent), linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 1px, transparent 2px, transparent), linear-gradient(90deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.05) 1px, transparent 2px, transparent);
  background-size: 1.5rem 1.5rem, 6rem 6rem, 1.5rem 1.5rem;
  background-position: 0 0; }

a {
  color: #0d0df2;
  text-decoration: none; }
  a:hover {
    text-decoration: underline; }
  a:active {
    background: #ddd; }

body {
  font-family: "Ubuntu", sans-serif;
  font-weight: lighter;
  color: #555;
  min-width: 320px;
  overflow-y: scroll; }

body > main h1, body > main > article h1, body > main h2, body > main > article h2, body > main h3, body > main > article h3, body > main h4, body > main > article h4, body > main h5, body > main > article h5, body > main h6, body > main > article h6 {
  color: #888;
  margin: 0 1rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.5em; }
  body > main h1, body > main > article h1 {
    font-family: "Ubuntu Condensed";
    font-weight: normal;
    font-size: 2em; }
  body > main h2, body > main > article h2, body > main h3, body > main > article h3, body > main h4, body > main > article h4, body > main h5, body > main > article h5, body > main h6, body > main > article h6 {
    font-family: "Ubuntu";
    font-weight: lighter; }
  body > main h2, body > main > article h2 {
    font-size: 1.62em; }
  body > main h3, body > main > article h3 {
    font-size: 1.31em; }
  body > main h4, body > main > article h4 {
    font-size: 1.06em; }
  body > main h5, body > main > article h5 {
    font-size: 1.06em; }
  body > main h6, body > main > article h6 {
    font-size: 1.06em; }
  body > main p, body > main > article p, body > main ul, body > main > article ul, body > main ol, body > main > article ol {
    margin: 0 1rem;
    margin-bottom: 1.5em;
    line-height: 1.5em;
    max-width: 42em; }
  body > main > article > blockquote {
    font-size: 1.5em;
    padding: 0.5rem;
    margin-left: 0.5rem;
    border-left: 4px solid #aaa;
    background: #eee;
    max-width: 21em; }
  body > main > article > blockquote > * {
    margin: 0 0.5rem; }
  body > main > article > blockquote > cite {
    font-size: 0.5em; }

@media (min-width: 930px) {
    body > main > blockquote, body > main > article > blockquote, body > main > article > header > blockquote, body > main > article .content > blockquote, body > main > h1, body > main > article > h1, body > main > article > header > h1, body > main > article .content > h1, body > main > h2, body > main > article > h2, body > main > article > header > h2, body > main > article .content > h2, body > main > h3, body > main > article > h3, body > main > article > header > h3, body > main > article .content > h3, body > main > h4, body > main > article > h4, body > main > article > header > h4, body > main > article .content > h4, body > main > h5, body > main > article > h5, body > main > article > header > h5, body > main > article .content > h5, body > main > h6, body > main > article > h6, body > main > article > header > h6, body > main > article .content > h6, body > main > p, body > main > article > p, body > main > article > header > p, body > main > article .content > p, body > main > form, body > main > article > form, body > main > article > header > form, body > main > article .content > form, body > main > ul, body > main > article > ul, body > main > article > header > ul, body > main > article .content > ul, body > main > ol, body > main > article > ol, body > main > article > header > ol, body > main > article .content > ol {
      margin-left: 0; }
      body > main > blockquote h1, body > main > article > blockquote h1, body > main > article > header > blockquote h1, body > main > article .content > blockquote h1, body > main > h1 h1, body > main > article > h1 h1, body > main > article > header > h1 h1, body > main > article .content > h1 h1, body > main > h2 h1, body > main > article > h2 h1, body > main > article > header > h2 h1, body > main > article .content > h2 h1, body > main > h3 h1, body > main > article > h3 h1, body > main > article > header > h3 h1, body > main > article .content > h3 h1, body > main > h4 h1, body > main > article > h4 h1, body > main > article > header > h4 h1, body > main > article .content > h4 h1, body > main > h5 h1, body > main > article > h5 h1, body > main > article > header > h5 h1, body > main > article .content > h5 h1, body > main > h6 h1, body > main > article > h6 h1, body > main > article > header > h6 h1, body > main > article .content > h6 h1, body > main > p h1, body > main > article > p h1, body > main > article > header > p h1, body > main > article .content > p h1, body > main > form h1, body > main > article > form h1, body > main > article > header > form h1, body > main > article .content > form h1, body > main > ul h1, body > main > article > ul h1, body > main > article > header > ul h1, body > main > article .content > ul h1, body > main > ol h1, body > main > article > ol h1, body > main > article > header > ol h1, body > main > article .content > ol h1, body > main > blockquote h2, body > main > article > blockquote h2, body > main > article > header > blockquote h2, body > main > article .content > blockquote h2, body > main > h1 h2, body > main > article > h1 h2, body > main > article > header > h1 h2, body > main > article .content > h1 h2, body > main > h2 h2, body > main > article > h2 h2, body > main > article > header > h2 h2, body > main > article .content > h2 h2, body > main > h3 h2, body > main > article > h3 h2, body > main > article > header > h3 h2, body > main > article .content > h3 h2, body > main > h4 h2, body > main > article > h4 h2, body > main > article > header > h4 h2, body > main > article .content > h4 h2, body > main > h5 h2, body > main > article > h5 h2, body > main > article > header > h5 h2, body > main > article .content > h5 h2, body > main > h6 h2, body > main > article > h6 h2, body > main > article > header > h6 h2, body > main > article .content > h6 h2, body > main > p h2, body > main > article > p h2, body > main > article > header > p h2, body > main > article .content > p h2, body > main > form h2, body > main > article > form h2, body > main > article > header > form h2, body > main > article .content > form h2, body > main > ul h2, body > main > article > ul h2, body > main > article > header > ul h2, body > main > article .content > ul h2, body > main > ol h2, body > main > article > ol h2, body > main > article > header > ol h2, body > main > article .content > ol h2, body > main > blockquote h3, body > main > article > blockquote h3, body > main > article > header > blockquote h3, body > main > article .content > blockquote h3, body > main > h1 h3, body > main > article > h1 h3, body > main > article > header > h1 h3, body > main > article .content > h1 h3, body > main > h2 h3, body > main > article > h2 h3, body > main > article > header > h2 h3, body > main > article .content > h2 h3, body > main > h3 h3, body > main > article > h3 h3, body > main > article > header > h3 h3, body > main > article .content > h3 h3, body > main > h4 h3, body > main > article > h4 h3, body > main > article > header > h4 h3, body > main > article .content > h4 h3, body > main > h5 h3, body > main > article > h5 h3, body > main > article > header > h5 h3, body > main > article .content > h5 h3, body > main > h6 h3, body > main > article > h6 h3, body > main > article > header > h6 h3, body > main > article .content > h6 h3, body > main > p h3, body > main > article > p h3, body > main > article > header > p h3, body > main > article .content > p h3, body > main > form h3, body > main > article > form h3, body > main > article > header > form h3, body > main > article .content > form h3, body > main > ul h3, body > main > article > ul h3, body > main > article > header > ul h3, body > main > article .content > ul h3, body > main > ol h3, body > main > article > ol h3, body > main > article > header > ol h3, body > main > article .content > ol h3, body > main > blockquote h4, body > main > article > blockquote h4, body > main > article > header > blockquote h4, body > main > article .content > blockquote h4, body > main > h1 h4, body > main > article > h1 h4, body > main > article > header > h1 h4, body > main > article .content > h1 h4, body > main > h2 h4, body > main > article > h2 h4, body > main > article > header > h2 h4, body > main > article .content > h2 h4, body > main > h3 h4, body > main > article > h3 h4, body > main > article > header > h3 h4, body > main > article .content > h3 h4, body > main > h4 h4, body > main > article > h4 h4, body > main > article > header > h4 h4, body > main > article .content > h4 h4, body > main > h5 h4, body > main > article > h5 h4, body > main > article > header > h5 h4, body > main > article .content > h5 h4, body > main > h6 h4, body > main > article > h6 h4, body > main > article > header > h6 h4, body > main > article .content > h6 h4, body > main > p h4, body > main > article > p h4, body > main > article > header > p h4, body > main > article .content > p h4, body > main > form h4, body > main > article > form h4, body > main > article > header > form h4, body > main > article .content > form h4, body > main > ul h4, body > main > article > ul h4, body > main > article > header > ul h4, body > main > article .content > ul h4, body > main > ol h4, body > main > article > ol h4, body > main > article > header > ol h4, body > main > article .content > ol h4, body > main > blockquote h5, body > main > article > blockquote h5, body > main > article > header > blockquote h5, body > main > article .content > blockquote h5, body > main > h1 h5, body > main > article > h1 h5, body > main > article > header > h1 h5, body > main > article .content > h1 h5, body > main > h2 h5, body > main > article > h2 h5, body > main > article > header > h2 h5, body > main > article .content > h2 h5, body > main > h3 h5, body > main > article > h3 h5, body > main > article > header > h3 h5, body > main > article .content > h3 h5, body > main > h4 h5, body > main > article > h4 h5, body > main > article > header > h4 h5, body > main > article .content > h4 h5, body > main > h5 h5, body > main > article > h5 h5, body > main > article > header > h5 h5, body > main > article .content > h5 h5, body > main > h6 h5, body > main > article > h6 h5, body > main > article > header > h6 h5, body > main > article .content > h6 h5, body > main > p h5, body > main > article > p h5, body > main > article > header > p h5, body > main > article .content > p h5, body > main > form h5, body > main > article > form h5, body > main > article > header > form h5, body > main > article .content > form h5, body > main > ul h5, body > main > article > ul h5, body > main > article > header > ul h5, body > main > article .content > ul h5, body > main > ol h5, body > main > article > ol h5, body > main > article > header > ol h5, body > main > article .content > ol h5, body > main > blockquote h6, body > main > article > blockquote h6, body > main > article > header > blockquote h6, body > main > article .content > blockquote h6, body > main > h1 h6, body > main > article > h1 h6, body > main > article > header > h1 h6, body > main > article .content > h1 h6, body > main > h2 h6, body > main > article > h2 h6, body > main > article > header > h2 h6, body > main > article .content > h2 h6, body > main > h3 h6, body > main > article > h3 h6, body > main > article > header > h3 h6, body > main > article .content > h3 h6, body > main > h4 h6, body > main > article > h4 h6, body > main > article > header > h4 h6, body > main > article .content > h4 h6, body > main > h5 h6, body > main > article > h5 h6, body > main > article > header > h5 h6, body > main > article .content > h5 h6, body > main > h6 h6, body > main > article > h6 h6, body > main > article > header > h6 h6, body > main > article .content > h6 h6, body > main > p h6, body > main > article > p h6, body > main > article > header > p h6, body > main > article .content > p h6, body > main > form h6, body > main > article > form h6, body > main > article > header > form h6, body > main > article .content > form h6, body > main > ul h6, body > main > article > ul h6, body > main > article > header > ul h6, body > main > article .content > ul h6, body > main > ol h6, body > main > article > ol h6, body > main > article > header > ol h6, body > main > article .content > ol h6, body > main > blockquote p, body > main > article > blockquote p, body > main > article > header > blockquote p, body > main > article .content > blockquote p, body > main > h1 p, body > main > article > h1 p, body > main > article > header > h1 p, body > main > article .content > h1 p, body > main > h2 p, body > main > article > h2 p, body > main > article > header > h2 p, body > main > article .content > h2 p, body > main > h3 p, body > main > article > h3 p, body > main > article > header > h3 p, body > main > article .content > h3 p, body > main > h4 p, body > main > article > h4 p, body > main > article > header > h4 p, body > main > article .content > h4 p, body > main > h5 p, body > main > article > h5 p, body > main > article > header > h5 p, body > main > article .content > h5 p, body > main > h6 p, body > main > article > h6 p, body > main > article > header > h6 p, body > main > article .content > h6 p, body > main > p p, body > main > article > p p, body > main > article > header > p p, body > main > article .content > p p, body > main > form p, body > main > article > form p, body > main > article > header > form p, body > main > article .content > form p, body > main > ul p, body > main > article > ul p, body > main > article > header > ul p, body > main > article .content > ul p, body > main > ol p, body > main > article > ol p, body > main > article > header > ol p, body > main > article .content > ol p {
        margin-left: 0;
        margin-right: 0; }
      body > main > header > *, body > main > article > header > *, body > main > article > header > header > *, body > main > article .content > header > * {
        margin-left: 0; } }
  @media (min-width: 930px) and (min-width: 1024px) {
      html {
        font-size: 20px; } }

button, .btn, body#uri--site > main > menu li a, body#uri--field > main .alarm .toggle:not(:checked) ~ h2 label:first-of-type {
  font-size: 1rem;
  display: block;
  margin: 0 auto;
  padding: 1em 2em;
  border: 2px solid transparent;
  font-family: "Ubuntu Condensed", sans-serif;
  border-radius: 0.5em;
  opacity: 0.95;
  outline: none;
  background: #ddd;
  min-width: 8em;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer; }
  button.positive, .btn.positive, body#uri--site > main > menu li a.positive, body#uri--field > main .alarm .toggle:not(:checked) ~ h2 label:first-of-type.positive {
    background: #38973e;
    color: white; }
  button.negative, .btn.negative, body#uri--site > main > menu li a.negative, body#uri--field > main .alarm .toggle:not(:checked) ~ h2 label:first-of-type.negative {
    background: #ba2121;
    color: white; }
  button.small, button.link, button.btn.link, body#uri--site > main > menu li button.link, body#uri--field > main .alarm .toggle:not(:checked) ~ h2 button:first-of-type.link, .btn.small, body#uri--site > main > menu li a.small, body#uri--site > main > menu li a.link, body#uri--site > main > menu li a.btn.link, body#uri--site > main > menu li body#uri--site > main > menu li a.link, body#uri--site > main > menu li body#uri--field > main .alarm .toggle:not(:checked) ~ h2 a:first-of-type.link, body#uri--field > main .alarm .toggle:not(:checked) ~ h2 body#uri--site > main > menu li a:first-of-type.link, body#uri--field > main .alarm .toggle:not(:checked) ~ h2 label:first-of-type.small, body#uri--field > main .alarm .toggle:not(:checked) ~ h2 label.link:first-of-type, body#uri--field > main .alarm .toggle:not(:checked) ~ h2 label.btn.link:first-of-type, body#uri--field > main .alarm .toggle:not(:checked) ~ h2 body#uri--site > main > menu li label.link:first-of-type, body#uri--site > main > menu li body#uri--field > main .alarm .toggle:not(:checked) ~ h2 label.link:first-of-type, body#uri--field > main .alarm .toggle:not(:checked) ~ h2 body#uri--field > main .alarm .toggle:not(:checked) ~ h2 label:first-of-type.link:first-of-type, button.link.btn, .btn.link.btn {
    padding: 0.5em 1em;
    min-width: 5em; }
  button.link, .btn.link, body#uri--site > main > menu li a.link, body#uri--field > main .alarm .toggle:not(:checked) ~ h2 label:first-of-type.link {
    background: transparent;
    text-decoration: underline; }
  button.link.positive, .btn.link.positive, body#uri--site > main > menu li a.link.positive, body#uri--field > main .alarm .toggle:not(:checked) ~ h2 label:first-of-type.link.positive {
    color: #38973e; }
  button.link.negative, .btn.link.negative, body#uri--site > main > menu li a.link.negative, body#uri--field > main .alarm .toggle:not(:checked) ~ h2 label:first-of-type.link.negative {
    color: #ba2121; }
  button:not(:last-child), .btn:not(:last-child), body#uri--site > main > menu li a:not(:last-child), body#uri--field > main .alarm .toggle:not(:checked) ~ h2 label:first-of-type:not(:last-child) {
    margin-bottom: 0.5em; }
  button:hover, .btn:hover, body#uri--site > main > menu li a:hover, body#uri--field > main .alarm .toggle:not(:checked) ~ h2 label:first-of-type:hover, button:focus, .btn:focus, body#uri--site > main > menu li a:focus, body#uri--field > main .alarm .toggle:not(:checked) ~ h2 label:first-of-type:focus {
    border-color: #aaa; }
  button:active, .btn:active, body#uri--site > main > menu li a:active, body#uri--field > main .alarm .toggle:not(:checked) ~ h2 label:first-of-type:active {
    background: #aaa; }
  button.primary, .btn.primary, body#uri--site > main > menu li a.primary, body#uri--field > main .alarm .toggle:not(:checked) ~ h2 label:first-of-type.primary {
    color: white;
    background: #0d0df2; }
  button.primary:hover, .btn.primary:hover, body#uri--site > main > menu li a.primary:hover, body#uri--field > main .alarm .toggle:not(:checked) ~ h2 label:first-of-type.primary:hover, button.primary:focus, .btn.primary:focus, body#uri--site > main > menu li a.primary:focus, body#uri--field > main .alarm .toggle:not(:checked) ~ h2 label:first-of-type.primary:focus {
    border-color: #0d0df2; }
  button.primary:active, .btn.primary:active, body#uri--site > main > menu li a.primary:active, body#uri--field > main .alarm .toggle:not(:checked) ~ h2 label:first-of-type.primary:active {
    background: #0d0df2; }
  button.cta, .btn.cta, body#uri--site > main > menu li a.cta, body#uri--field > main .alarm .toggle:not(:checked) ~ h2 label:first-of-type.cta, button.action, .btn.action, body#uri--site > main > menu li a.action, body#uri--field > main .alarm .toggle:not(:checked) ~ h2 label:first-of-type.action {
    background: #cbb594;
    color: white; }

form {
  margin: 0 0.5rem;
  margin-bottom: 1rem; }
  form label {
    display: block;
    margin-bottom: 1em; }
  form label > span {
    display: block; }
  form input:not([type]), form [type='text'], form [type='password'], form [type='number'], form [type='tel'], form [type='email'], form [type='date'], form select, form textarea {
    box-sizing: border-box;
    width: 100%;
    padding: 0.5rem;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none; }
  form input:not([type]):hover, form [type='text']:hover, form [type='password']:hover, form [type='number']:hover, form [type='tel']:hover, form [type='email']:hover, form [type='date']:hover, form select:hover, form textarea:hover {
    border-bottom-color: #344a6b; }
  form input:not([type]):focus, form [type='text']:focus, form [type='password']:focus, form [type='number']:focus, form [type='tel']:focus, form [type='email']:focus, form [type='date']:focus, form select:focus, form textarea:focus {
    border-bottom-color: #344a6b;
    box-shadow: inset 0 -1px 0 #344a6b; }
  form input:not([type]):active, form [type='text']:active, form [type='password']:active, form [type='number']:active, form [type='tel']:active, form [type='email']:active, form [type='date']:active, form select:active, form textarea:active {
    background: #ddd; }
  form textarea {
    min-height: 5em;
    resize: none; }
  form label [type='checkbox'], form label [type='radio'] {
    display: none; }
    form label [type='checkbox']:checked + span::after, form label [type='radio']:checked + span::after {
      opacity: 1; }
    form label [type='checkbox'] + span, form label [type='radio'] + span {
      position: relative;
      padding-left: 1.5em; }
      form label [type='checkbox'] + span:hover::before, form label [type='radio'] + span:hover::before {
        opacity: 1; }
      form label [type='checkbox'] + span:active::before, form label [type='radio'] + span:active::before {
        background: #ddd; }
      form label [type='checkbox'] + span::before, form label [type='radio'] + span::before {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 1em;
        height: 1em;
        border: 2px solid #555;
        opacity: 0.5; }
  form label [type='checkbox'] + span::after {
    content: "";
    display: block;
    position: absolute;
    left: 0.25em;
    top: 0.2em;
    width: 0.4em;
    height: 0.075em;
    border: 3px solid #344a6b;
    border-top-color: transparent;
    border-right-color: transparent;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0; }
  form label [type='radio'] + span::before {
    border-radius: 1em; }
    form label [type='radio'] + span::after {
      content: "";
      display: block;
      position: absolute;
      left: 0.25em;
      top: 0.25em;
      width: 0;
      height: 0;
      border: 0.375em solid #344a6b;
      border-radius: 1em;
      opacity: 0; }

@media (min-width: 930px) {
    button, a.btn, body#uri--site > main > menu li a, body#uri--field > main .alarm .toggle:not(:checked) ~ h2 a:first-of-type {
      display: inline-block;
      margin: 0; }
    form {
      max-width: 40em; } }
  @media (min-width: 930px) and (min-width: 640px) {
      form label [type='checkbox'] + span::after {
        content: "";
        display: block;
        position: absolute;
        left: 0.225em;
        top: 0.2em;
        width: 0.4em;
        height: 0.075em;
        border: 4px solid #0d0df2;
        border-top-color: transparent;
        border-right-color: transparent;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0; } }

body > header #logo {
  display: inline-block;
  margin: 0 auto;
  font-size: 1.5rem;
  text-align: center;
  font-weight: normal; }
  body > header #logo a {
    position: relative;
    display: inline-block;
    margin: 1rem;
    margin-right: 0;
    padding-left: 2em;
    height: 2em;
    line-height: 2em;
    text-decoration: none;
    color: black;
    text-align: left; }
  body > header #logo a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2em;
    height: 2em;
    background: #aaa; }
  body > header #logo a span:first-of-type {
    padding-left: 0.75rem; }

@media (min-width: 930px) {
    body > header #logo {
      position: relative;
      font-size: 2rem;
      z-index: 100;
      text-align: left; }
      body > header #logo a {
        position: relative;
        z-index: 100; }
        body > header #logo a::before {
          position: fixed;
          z-index: 100;
          top: 0;
          left: 0;
          margin: 1rem; } }

body > header > nav ul {
  margin: 0 0.5rem;
  padding: 0;
  border-radius: 0.5em;
  overflow: hidden;
  list-style-type: none; }
  body > header > nav ul li {
    float: left;
    width: 50%;
    box-sizing: border-box;
    font-size: 0.8em;
    font-weight: bold;
    border-bottom: 1px solid white;
    text-align: center; }
    body > header > nav ul li.selected a {
      background: #0d0df2; }
    body > header > nav ul li:nth-of-type(odd) {
      border-right: 1px solid white; }
    body > header > nav ul li a {
      display: block;
      padding: 0.5em;
      background: #aaa;
      color: #fff; }
    body > header > nav ul li a:active {
      background: #ababab;
      color: #0d0df2; }

@media (min-width: 930px) {
    body > header > nav {
      position: absolute;
      top: 0;
      right: 0; }
      body > header > nav ul {
        border-radius: 0; }
        body > header > nav ul li {
          width: auto;
          font-size: 0.9em;
          height: 6rem;
          font-family: "Ubuntu Condensed";
          font-weight: normal;
          border: none; }
          body > header > nav ul li:nth-of-type(odd), body > header > nav ul li:nth-of-type(even) {
            border-right: none; }
          body > header > nav ul li:last-of-type {
            border-right: none; }
          body > header > nav ul li.selected a {
            background: #344a6b; }
          body > header > nav ul li a {
            box-sizing: border-box;
            height: 100%;
            background: transparent;
            color: #555;
            line-height: 6rem;
            padding: 0 0.5em; }
            body > header > nav ul li a:hover {
              color: #0d0df2;
              text-decoration: underline; }
            body > header > nav ul li a:active {
              background: transparent; } }

body > footer {
  background: #eee; }
  body > footer > h1, body > footer > h2, body > footer > h3, body > footer > h4, body > footer > h5, body > footer > h6, body > footer > p, body > footer > form, body > footer > blockquote, body > footer > ul, body > footer > ol, body > footer > dd, body > footer > dl, body > footer > dt {
    margin: 1rem; }


/*!
 *  Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('/Asset/vendor/font-awesome-sass/Font/fonts/font-awesome/fontawesome-webfont.eot');
  src: url('/Asset/vendor/font-awesome-sass/Font/fonts/font-awesome/fontawesome-webfont.eot?#iefix') format('embedded-opentype'), url('/Asset/vendor/font-awesome-sass/Font/fonts/font-awesome/fontawesome-webfont.woff2') format('woff2'), url('/Asset/vendor/font-awesome-sass/Font/fonts/font-awesome/fontawesome-webfont.woff') format('woff'), url('/Asset/vendor/font-awesome-sass/Font/fonts/font-awesome/fontawesome-webfont.ttf') format('truetype'), url('/Asset/vendor/font-awesome-sass/Font/fonts/font-awesome/fontawesome-webfont.svg#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;
  transform: translate(0, 0); }
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -15%; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-fw {
  width: 1.28571em;
  text-align: center; }

.fa-ul {
  padding-left: 0;
  margin-left: 2.14286em;
  list-style-type: none; }

.fa-ul > li {
  position: relative; }

.fa-li {
  position: absolute;
  left: -2.14286em;
  width: 2.14286em;
  top: 0.14286em;
  text-align: center; }

.fa-li.fa-lg {
  left: -1.85714em; }

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em; }

.pull-right {
  float: right; }

.pull-left {
  float: left; }

.fa.pull-left {
  margin-right: 0.3em; }

.fa.pull-right {
  margin-left: 0.3em; }

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear; }

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8); }

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg); }

.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); }

.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg); }

.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1); }

.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1); }

:root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical {
  filter: none; }

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle; }

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #fff; }
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
 readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000"; }

.fa-music:before {
  content: "\f001"; }

.fa-search:before {
  content: "\f002"; }

.fa-envelope-o:before {
  content: "\f003"; }

.fa-heart:before {
  content: "\f004"; }

.fa-star:before {
  content: "\f005"; }

.fa-star-o:before {
  content: "\f006"; }

.fa-user:before {
  content: "\f007"; }

.fa-film:before {
  content: "\f008"; }

.fa-th-large:before {
  content: "\f009"; }

.fa-th:before {
  content: "\f00a"; }

.fa-th-list:before {
  content: "\f00b"; }

.fa-check:before {
  content: "\f00c"; }

.fa-remove:before, .fa-close:before, .fa-times:before {
  content: "\f00d"; }

.fa-search-plus:before {
  content: "\f00e"; }

.fa-search-minus:before {
  content: "\f010"; }

.fa-power-off:before {
  content: "\f011"; }

.fa-signal:before {
  content: "\f012"; }

.fa-gear:before, .fa-cog:before {
  content: "\f013"; }

.fa-trash-o:before {
  content: "\f014"; }

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

.fa-file-o:before {
  content: "\f016"; }

.fa-clock-o:before {
  content: "\f017"; }

.fa-road:before {
  content: "\f018"; }

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

.fa-arrow-circle-o-down:before {
  content: "\f01a"; }

.fa-arrow-circle-o-up:before {
  content: "\f01b"; }

.fa-inbox:before {
  content: "\f01c"; }

.fa-play-circle-o:before {
  content: "\f01d"; }

.fa-rotate-right:before, .fa-repeat:before {
  content: "\f01e"; }

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

.fa-list-alt:before {
  content: "\f022"; }

.fa-lock:before {
  content: "\f023"; }

.fa-flag:before {
  content: "\f024"; }

.fa-headphones:before {
  content: "\f025"; }

.fa-volume-off:before {
  content: "\f026"; }

.fa-volume-down:before {
  content: "\f027"; }

.fa-volume-up:before {
  content: "\f028"; }

.fa-qrcode:before {
  content: "\f029"; }

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

.fa-tag:before {
  content: "\f02b"; }

.fa-tags:before {
  content: "\f02c"; }

.fa-book:before {
  content: "\f02d"; }

.fa-bookmark:before {
  content: "\f02e"; }

.fa-print:before {
  content: "\f02f"; }

.fa-camera:before {
  content: "\f030"; }

.fa-font:before {
  content: "\f031"; }

.fa-bold:before {
  content: "\f032"; }

.fa-italic:before {
  content: "\f033"; }

.fa-text-height:before {
  content: "\f034"; }

.fa-text-width:before {
  content: "\f035"; }

.fa-align-left:before {
  content: "\f036"; }

.fa-align-center:before {
  content: "\f037"; }

.fa-align-right:before {
  content: "\f038"; }

.fa-align-justify:before {
  content: "\f039"; }

.fa-list:before {
  content: "\f03a"; }

.fa-dedent:before, .fa-outdent:before {
  content: "\f03b"; }

.fa-indent:before {
  content: "\f03c"; }

.fa-video-camera:before {
  content: "\f03d"; }

.fa-photo:before, .fa-image:before, .fa-picture-o:before {
  content: "\f03e"; }

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

.fa-map-marker:before {
  content: "\f041"; }

.fa-adjust:before {
  content: "\f042"; }

.fa-tint:before {
  content: "\f043"; }

.fa-edit:before, .fa-pencil-square-o:before {
  content: "\f044"; }

.fa-share-square-o:before {
  content: "\f045"; }

.fa-check-square-o:before {
  content: "\f046"; }

.fa-arrows:before {
  content: "\f047"; }

.fa-step-backward:before {
  content: "\f048"; }

.fa-fast-backward:before {
  content: "\f049"; }

.fa-backward:before {
  content: "\f04a"; }

.fa-play:before {
  content: "\f04b"; }

.fa-pause:before {
  content: "\f04c"; }

.fa-stop:before {
  content: "\f04d"; }

.fa-forward:before {
  content: "\f04e"; }

.fa-fast-forward:before {
  content: "\f050"; }

.fa-step-forward:before {
  content: "\f051"; }

.fa-eject:before {
  content: "\f052"; }

.fa-chevron-left:before {
  content: "\f053"; }

.fa-chevron-right:before {
  content: "\f054"; }

.fa-plus-circle:before {
  content: "\f055"; }

.fa-minus-circle:before {
  content: "\f056"; }

.fa-times-circle:before {
  content: "\f057"; }

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

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

.fa-info-circle:before {
  content: "\f05a"; }

.fa-crosshairs:before {
  content: "\f05b"; }

.fa-times-circle-o:before {
  content: "\f05c"; }

.fa-check-circle-o:before {
  content: "\f05d"; }

.fa-ban:before {
  content: "\f05e"; }

.fa-arrow-left:before {
  content: "\f060"; }

.fa-arrow-right:before {
  content: "\f061"; }

.fa-arrow-up:before {
  content: "\f062"; }

.fa-arrow-down:before {
  content: "\f063"; }

.fa-mail-forward:before, .fa-share:before {
  content: "\f064"; }

.fa-expand:before {
  content: "\f065"; }

.fa-compress:before {
  content: "\f066"; }

.fa-plus:before {
  content: "\f067"; }

.fa-minus:before {
  content: "\f068"; }

.fa-asterisk:before {
  content: "\f069"; }

.fa-exclamation-circle:before {
  content: "\f06a"; }

.fa-gift:before {
  content: "\f06b"; }

.fa-leaf:before {
  content: "\f06c"; }

.fa-fire:before {
  content: "\f06d"; }

.fa-eye:before {
  content: "\f06e"; }

.fa-eye-slash:before {
  content: "\f070"; }

.fa-warning:before, .fa-exclamation-triangle:before {
  content: "\f071"; }

.fa-plane:before {
  content: "\f072"; }

.fa-calendar:before {
  content: "\f073"; }

.fa-random:before {
  content: "\f074"; }

.fa-comment:before {
  content: "\f075"; }

.fa-magnet:before {
  content: "\f076"; }

.fa-chevron-up:before {
  content: "\f077"; }

.fa-chevron-down:before {
  content: "\f078"; }

.fa-retweet:before {
  content: "\f079"; }

.fa-shopping-cart:before {
  content: "\f07a"; }

.fa-folder:before {
  content: "\f07b"; }

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

.fa-arrows-v:before {
  content: "\f07d"; }

.fa-arrows-h:before {
  content: "\f07e"; }

.fa-bar-chart-o:before, .fa-bar-chart:before {
  content: "\f080"; }

.fa-twitter-square:before {
  content: "\f081"; }

.fa-facebook-square:before {
  content: "\f082"; }

.fa-camera-retro:before {
  content: "\f083"; }

.fa-key:before {
  content: "\f084"; }

.fa-gears:before, .fa-cogs:before {
  content: "\f085"; }

.fa-comments:before {
  content: "\f086"; }

.fa-thumbs-o-up:before {
  content: "\f087"; }

.fa-thumbs-o-down:before {
  content: "\f088"; }

.fa-star-half:before {
  content: "\f089"; }

.fa-heart-o:before {
  content: "\f08a"; }

.fa-sign-out:before {
  content: "\f08b"; }

.fa-linkedin-square:before {
  content: "\f08c"; }

.fa-thumb-tack:before {
  content: "\f08d"; }

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

.fa-sign-in:before {
  content: "\f090"; }

.fa-trophy:before {
  content: "\f091"; }

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

.fa-upload:before {
  content: "\f093"; }

.fa-lemon-o:before {
  content: "\f094"; }

.fa-phone:before {
  content: "\f095"; }

.fa-square-o:before {
  content: "\f096"; }

.fa-bookmark-o:before {
  content: "\f097"; }

.fa-phone-square:before {
  content: "\f098"; }

.fa-twitter:before {
  content: "\f099"; }

.fa-facebook-f:before, .fa-facebook:before {
  content: "\f09a"; }

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

.fa-unlock:before {
  content: "\f09c"; }

.fa-credit-card:before {
  content: "\f09d"; }

.fa-rss:before {
  content: "\f09e"; }

.fa-hdd-o:before {
  content: "\f0a0"; }

.fa-bullhorn:before {
  content: "\f0a1"; }

.fa-bell:before {
  content: "\f0f3"; }

.fa-certificate:before {
  content: "\f0a3"; }

.fa-hand-o-right:before {
  content: "\f0a4"; }

.fa-hand-o-left:before {
  content: "\f0a5"; }

.fa-hand-o-up:before {
  content: "\f0a6"; }

.fa-hand-o-down:before {
  content: "\f0a7"; }

.fa-arrow-circle-left:before {
  content: "\f0a8"; }

.fa-arrow-circle-right:before {
  content: "\f0a9"; }

.fa-arrow-circle-up:before {
  content: "\f0aa"; }

.fa-arrow-circle-down:before {
  content: "\f0ab"; }

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

.fa-wrench:before {
  content: "\f0ad"; }

.fa-tasks:before {
  content: "\f0ae"; }

.fa-filter:before {
  content: "\f0b0"; }

.fa-briefcase:before {
  content: "\f0b1"; }

.fa-arrows-alt:before {
  content: "\f0b2"; }

.fa-group:before, .fa-users:before {
  content: "\f0c0"; }

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

.fa-cloud:before {
  content: "\f0c2"; }

.fa-flask:before {
  content: "\f0c3"; }

.fa-cut:before, .fa-scissors:before {
  content: "\f0c4"; }

.fa-copy:before, .fa-files-o:before {
  content: "\f0c5"; }

.fa-paperclip:before {
  content: "\f0c6"; }

.fa-save:before, .fa-floppy-o:before {
  content: "\f0c7"; }

.fa-square:before {
  content: "\f0c8"; }

.fa-navicon:before, .fa-reorder:before, .fa-bars:before {
  content: "\f0c9"; }

.fa-list-ul:before {
  content: "\f0ca"; }

.fa-list-ol:before {
  content: "\f0cb"; }

.fa-strikethrough:before {
  content: "\f0cc"; }

.fa-underline:before {
  content: "\f0cd"; }

.fa-table:before {
  content: "\f0ce"; }

.fa-magic:before {
  content: "\f0d0"; }

.fa-truck:before {
  content: "\f0d1"; }

.fa-pinterest:before {
  content: "\f0d2"; }

.fa-pinterest-square:before {
  content: "\f0d3"; }

.fa-google-plus-square:before {
  content: "\f0d4"; }

.fa-google-plus:before {
  content: "\f0d5"; }

.fa-money:before {
  content: "\f0d6"; }

.fa-caret-down:before {
  content: "\f0d7"; }

.fa-caret-up:before {
  content: "\f0d8"; }

.fa-caret-left:before {
  content: "\f0d9"; }

.fa-caret-right:before {
  content: "\f0da"; }

.fa-columns:before {
  content: "\f0db"; }

.fa-unsorted:before, .fa-sort:before {
  content: "\f0dc"; }

.fa-sort-down:before, .fa-sort-desc:before {
  content: "\f0dd"; }

.fa-sort-up:before, .fa-sort-asc:before {
  content: "\f0de"; }

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

.fa-linkedin:before {
  content: "\f0e1"; }

.fa-rotate-left:before, .fa-undo:before {
  content: "\f0e2"; }

.fa-legal:before, .fa-gavel:before {
  content: "\f0e3"; }

.fa-dashboard:before, .fa-tachometer:before {
  content: "\f0e4"; }

.fa-comment-o:before {
  content: "\f0e5"; }

.fa-comments-o:before {
  content: "\f0e6"; }

.fa-flash:before, .fa-bolt:before {
  content: "\f0e7"; }

.fa-sitemap:before {
  content: "\f0e8"; }

.fa-umbrella:before {
  content: "\f0e9"; }

.fa-paste:before, .fa-clipboard:before {
  content: "\f0ea"; }

.fa-lightbulb-o:before {
  content: "\f0eb"; }

.fa-exchange:before {
  content: "\f0ec"; }

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

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

.fa-user-md:before {
  content: "\f0f0"; }

.fa-stethoscope:before {
  content: "\f0f1"; }

.fa-suitcase:before {
  content: "\f0f2"; }

.fa-bell-o:before {
  content: "\f0a2"; }

.fa-coffee:before {
  content: "\f0f4"; }

.fa-cutlery:before {
  content: "\f0f5"; }

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

.fa-building-o:before {
  content: "\f0f7"; }

.fa-hospital-o:before {
  content: "\f0f8"; }

.fa-ambulance:before {
  content: "\f0f9"; }

.fa-medkit:before {
  content: "\f0fa"; }

.fa-fighter-jet:before {
  content: "\f0fb"; }

.fa-beer:before {
  content: "\f0fc"; }

.fa-h-square:before {
  content: "\f0fd"; }

.fa-plus-square:before {
  content: "\f0fe"; }

.fa-angle-double-left:before {
  content: "\f100"; }

.fa-angle-double-right:before {
  content: "\f101"; }

.fa-angle-double-up:before {
  content: "\f102"; }

.fa-angle-double-down:before {
  content: "\f103"; }

.fa-angle-left:before {
  content: "\f104"; }

.fa-angle-right:before {
  content: "\f105"; }

.fa-angle-up:before {
  content: "\f106"; }

.fa-angle-down:before {
  content: "\f107"; }

.fa-desktop:before {
  content: "\f108"; }

.fa-laptop:before {
  content: "\f109"; }

.fa-tablet:before {
  content: "\f10a"; }

.fa-mobile-phone:before, .fa-mobile:before {
  content: "\f10b"; }

.fa-circle-o:before {
  content: "\f10c"; }

.fa-quote-left:before {
  content: "\f10d"; }

.fa-quote-right:before {
  content: "\f10e"; }

.fa-spinner:before {
  content: "\f110"; }

.fa-circle:before {
  content: "\f111"; }

.fa-mail-reply:before, .fa-reply:before {
  content: "\f112"; }

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

.fa-folder-o:before {
  content: "\f114"; }

.fa-folder-open-o:before {
  content: "\f115"; }

.fa-smile-o:before {
  content: "\f118"; }

.fa-frown-o:before {
  content: "\f119"; }

.fa-meh-o:before {
  content: "\f11a"; }

.fa-gamepad:before {
  content: "\f11b"; }

.fa-keyboard-o:before {
  content: "\f11c"; }

.fa-flag-o:before {
  content: "\f11d"; }

.fa-flag-checkered:before {
  content: "\f11e"; }

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

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

.fa-mail-reply-all:before, .fa-reply-all:before {
  content: "\f122"; }

.fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before {
  content: "\f123"; }

.fa-location-arrow:before {
  content: "\f124"; }

.fa-crop:before {
  content: "\f125"; }

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

.fa-unlink:before, .fa-chain-broken:before {
  content: "\f127"; }

.fa-question:before {
  content: "\f128"; }

.fa-info:before {
  content: "\f129"; }

.fa-exclamation:before {
  content: "\f12a"; }

.fa-superscript:before {
  content: "\f12b"; }

.fa-subscript:before {
  content: "\f12c"; }

.fa-eraser:before {
  content: "\f12d"; }

.fa-puzzle-piece:before {
  content: "\f12e"; }

.fa-microphone:before {
  content: "\f130"; }

.fa-microphone-slash:before {
  content: "\f131"; }

.fa-shield:before {
  content: "\f132"; }

.fa-calendar-o:before {
  content: "\f133"; }

.fa-fire-extinguisher:before {
  content: "\f134"; }

.fa-rocket:before {
  content: "\f135"; }

.fa-maxcdn:before {
  content: "\f136"; }

.fa-chevron-circle-left:before {
  content: "\f137"; }

.fa-chevron-circle-right:before {
  content: "\f138"; }

.fa-chevron-circle-up:before {
  content: "\f139"; }

.fa-chevron-circle-down:before {
  content: "\f13a"; }

.fa-html5:before {
  content: "\f13b"; }

.fa-css3:before {
  content: "\f13c"; }

.fa-anchor:before {
  content: "\f13d"; }

.fa-unlock-alt:before {
  content: "\f13e"; }

.fa-bullseye:before {
  content: "\f140"; }

.fa-ellipsis-h:before {
  content: "\f141"; }

.fa-ellipsis-v:before {
  content: "\f142"; }

.fa-rss-square:before {
  content: "\f143"; }

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

.fa-ticket:before {
  content: "\f145"; }

.fa-minus-square:before {
  content: "\f146"; }

.fa-minus-square-o:before {
  content: "\f147"; }

.fa-level-up:before {
  content: "\f148"; }

.fa-level-down:before {
  content: "\f149"; }

.fa-check-square:before {
  content: "\f14a"; }

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

.fa-external-link-square:before {
  content: "\f14c"; }

.fa-share-square:before {
  content: "\f14d"; }

.fa-compass:before {
  content: "\f14e"; }

.fa-toggle-down:before, .fa-caret-square-o-down:before {
  content: "\f150"; }

.fa-toggle-up:before, .fa-caret-square-o-up:before {
  content: "\f151"; }

.fa-toggle-right:before, .fa-caret-square-o-right:before {
  content: "\f152"; }

.fa-euro:before, .fa-eur:before {
  content: "\f153"; }

.fa-gbp:before {
  content: "\f154"; }

.fa-dollar:before, .fa-usd:before {
  content: "\f155"; }

.fa-rupee:before, .fa-inr:before {
  content: "\f156"; }

.fa-cny:before, .fa-rmb:before, .fa-yen:before, .fa-jpy:before {
  content: "\f157"; }

.fa-ruble:before, .fa-rouble:before, .fa-rub:before {
  content: "\f158"; }

.fa-won:before, .fa-krw:before {
  content: "\f159"; }

.fa-bitcoin:before, .fa-btc:before {
  content: "\f15a"; }

.fa-file:before {
  content: "\f15b"; }

.fa-file-text:before {
  content: "\f15c"; }

.fa-sort-alpha-asc:before {
  content: "\f15d"; }

.fa-sort-alpha-desc:before {
  content: "\f15e"; }

.fa-sort-amount-asc:before {
  content: "\f160"; }

.fa-sort-amount-desc:before {
  content: "\f161"; }

.fa-sort-numeric-asc:before {
  content: "\f162"; }

.fa-sort-numeric-desc:before {
  content: "\f163"; }

.fa-thumbs-up:before {
  content: "\f164"; }

.fa-thumbs-down:before {
  content: "\f165"; }

.fa-youtube-square:before {
  content: "\f166"; }

.fa-youtube:before {
  content: "\f167"; }

.fa-xing:before {
  content: "\f168"; }

.fa-xing-square:before {
  content: "\f169"; }

.fa-youtube-play:before {
  content: "\f16a"; }

.fa-dropbox:before {
  content: "\f16b"; }

.fa-stack-overflow:before {
  content: "\f16c"; }

.fa-instagram:before {
  content: "\f16d"; }

.fa-flickr:before {
  content: "\f16e"; }

.fa-adn:before {
  content: "\f170"; }

.fa-bitbucket:before {
  content: "\f171"; }

.fa-bitbucket-square:before {
  content: "\f172"; }

.fa-tumblr:before {
  content: "\f173"; }

.fa-tumblr-square:before {
  content: "\f174"; }

.fa-long-arrow-down:before {
  content: "\f175"; }

.fa-long-arrow-up:before {
  content: "\f176"; }

.fa-long-arrow-left:before {
  content: "\f177"; }

.fa-long-arrow-right:before {
  content: "\f178"; }

.fa-apple:before {
  content: "\f179"; }

.fa-windows:before {
  content: "\f17a"; }

.fa-android:before {
  content: "\f17b"; }

.fa-linux:before {
  content: "\f17c"; }

.fa-dribbble:before {
  content: "\f17d"; }

.fa-skype:before {
  content: "\f17e"; }

.fa-foursquare:before {
  content: "\f180"; }

.fa-trello:before {
  content: "\f181"; }

.fa-female:before {
  content: "\f182"; }

.fa-male:before {
  content: "\f183"; }

.fa-gittip:before, .fa-gratipay:before {
  content: "\f184"; }

.fa-sun-o:before {
  content: "\f185"; }

.fa-moon-o:before {
  content: "\f186"; }

.fa-archive:before {
  content: "\f187"; }

.fa-bug:before {
  content: "\f188"; }

.fa-vk:before {
  content: "\f189"; }

.fa-weibo:before {
  content: "\f18a"; }

.fa-renren:before {
  content: "\f18b"; }

.fa-pagelines:before {
  content: "\f18c"; }

.fa-stack-exchange:before {
  content: "\f18d"; }

.fa-arrow-circle-o-right:before {
  content: "\f18e"; }

.fa-arrow-circle-o-left:before {
  content: "\f190"; }

.fa-toggle-left:before, .fa-caret-square-o-left:before {
  content: "\f191"; }

.fa-dot-circle-o:before {
  content: "\f192"; }

.fa-wheelchair:before {
  content: "\f193"; }

.fa-vimeo-square:before {
  content: "\f194"; }

.fa-turkish-lira:before, .fa-try:before {
  content: "\f195"; }

.fa-plus-square-o:before {
  content: "\f196"; }

.fa-space-shuttle:before {
  content: "\f197"; }

.fa-slack:before {
  content: "\f198"; }

.fa-envelope-square:before {
  content: "\f199"; }

.fa-wordpress:before {
  content: "\f19a"; }

.fa-openid:before {
  content: "\f19b"; }

.fa-institution:before, .fa-bank:before, .fa-university:before {
  content: "\f19c"; }

.fa-mortar-board:before, .fa-graduation-cap:before {
  content: "\f19d"; }

.fa-yahoo:before {
  content: "\f19e"; }

.fa-google:before {
  content: "\f1a0"; }

.fa-reddit:before {
  content: "\f1a1"; }

.fa-reddit-square:before {
  content: "\f1a2"; }

.fa-stumbleupon-circle:before {
  content: "\f1a3"; }

.fa-stumbleupon:before {
  content: "\f1a4"; }

.fa-delicious:before {
  content: "\f1a5"; }

.fa-digg:before {
  content: "\f1a6"; }

.fa-pied-piper:before {
  content: "\f1a7"; }

.fa-pied-piper-alt:before {
  content: "\f1a8"; }

.fa-drupal:before {
  content: "\f1a9"; }

.fa-joomla:before {
  content: "\f1aa"; }

.fa-language:before {
  content: "\f1ab"; }

.fa-fax:before {
  content: "\f1ac"; }

.fa-building:before {
  content: "\f1ad"; }

.fa-child:before {
  content: "\f1ae"; }

.fa-paw:before {
  content: "\f1b0"; }

.fa-spoon:before {
  content: "\f1b1"; }

.fa-cube:before {
  content: "\f1b2"; }

.fa-cubes:before {
  content: "\f1b3"; }

.fa-behance:before {
  content: "\f1b4"; }

.fa-behance-square:before {
  content: "\f1b5"; }

.fa-steam:before {
  content: "\f1b6"; }

.fa-steam-square:before {
  content: "\f1b7"; }

.fa-recycle:before {
  content: "\f1b8"; }

.fa-automobile:before, .fa-car:before {
  content: "\f1b9"; }

.fa-cab:before, .fa-taxi:before {
  content: "\f1ba"; }

.fa-tree:before {
  content: "\f1bb"; }

.fa-spotify:before {
  content: "\f1bc"; }

.fa-deviantart:before {
  content: "\f1bd"; }

.fa-soundcloud:before {
  content: "\f1be"; }

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

.fa-file-pdf-o:before {
  content: "\f1c1"; }

.fa-file-word-o:before {
  content: "\f1c2"; }

.fa-file-excel-o:before {
  content: "\f1c3"; }

.fa-file-powerpoint-o:before {
  content: "\f1c4"; }

.fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before {
  content: "\f1c5"; }

.fa-file-zip-o:before, .fa-file-archive-o:before {
  content: "\f1c6"; }

.fa-file-sound-o:before, .fa-file-audio-o:before {
  content: "\f1c7"; }

.fa-file-movie-o:before, .fa-file-video-o:before {
  content: "\f1c8"; }

.fa-file-code-o:before {
  content: "\f1c9"; }

.fa-vine:before {
  content: "\f1ca"; }

.fa-codepen:before {
  content: "\f1cb"; }

.fa-jsfiddle:before {
  content: "\f1cc"; }

.fa-life-bouy:before, .fa-life-buoy:before, .fa-life-saver:before, .fa-support:before, .fa-life-ring:before {
  content: "\f1cd"; }

.fa-circle-o-notch:before {
  content: "\f1ce"; }

.fa-ra:before, .fa-rebel:before {
  content: "\f1d0"; }

.fa-ge:before, .fa-empire:before {
  content: "\f1d1"; }

.fa-git-square:before {
  content: "\f1d2"; }

.fa-git:before {
  content: "\f1d3"; }

.fa-hacker-news:before {
  content: "\f1d4"; }

.fa-tencent-weibo:before {
  content: "\f1d5"; }

.fa-qq:before {
  content: "\f1d6"; }

.fa-wechat:before, .fa-weixin:before {
  content: "\f1d7"; }

.fa-send:before, .fa-paper-plane:before {
  content: "\f1d8"; }

.fa-send-o:before, .fa-paper-plane-o:before {
  content: "\f1d9"; }

.fa-history:before {
  content: "\f1da"; }

.fa-genderless:before, .fa-circle-thin:before {
  content: "\f1db"; }

.fa-header:before {
  content: "\f1dc"; }

.fa-paragraph:before {
  content: "\f1dd"; }

.fa-sliders:before {
  content: "\f1de"; }

.fa-share-alt:before {
  content: "\f1e0"; }

.fa-share-alt-square:before {
  content: "\f1e1"; }

.fa-bomb:before {
  content: "\f1e2"; }

.fa-soccer-ball-o:before, .fa-futbol-o:before {
  content: "\f1e3"; }

.fa-tty:before {
  content: "\f1e4"; }

.fa-binoculars:before {
  content: "\f1e5"; }

.fa-plug:before {
  content: "\f1e6"; }

.fa-slideshare:before {
  content: "\f1e7"; }

.fa-twitch:before {
  content: "\f1e8"; }

.fa-yelp:before {
  content: "\f1e9"; }

.fa-newspaper-o:before {
  content: "\f1ea"; }

.fa-wifi:before {
  content: "\f1eb"; }

.fa-calculator:before {
  content: "\f1ec"; }

.fa-paypal:before {
  content: "\f1ed"; }

.fa-google-wallet:before {
  content: "\f1ee"; }

.fa-cc-visa:before {
  content: "\f1f0"; }

.fa-cc-mastercard:before {
  content: "\f1f1"; }

.fa-cc-discover:before {
  content: "\f1f2"; }

.fa-cc-amex:before {
  content: "\f1f3"; }

.fa-cc-paypal:before {
  content: "\f1f4"; }

.fa-cc-stripe:before {
  content: "\f1f5"; }

.fa-bell-slash:before {
  content: "\f1f6"; }

.fa-bell-slash-o:before {
  content: "\f1f7"; }

.fa-trash:before {
  content: "\f1f8"; }

.fa-copyright:before {
  content: "\f1f9"; }

.fa-at:before {
  content: "\f1fa"; }

.fa-eyedropper:before {
  content: "\f1fb"; }

.fa-paint-brush:before {
  content: "\f1fc"; }

.fa-birthday-cake:before {
  content: "\f1fd"; }

.fa-area-chart:before {
  content: "\f1fe"; }

.fa-pie-chart:before {
  content: "\f200"; }

.fa-line-chart:before {
  content: "\f201"; }

.fa-lastfm:before {
  content: "\f202"; }

.fa-lastfm-square:before {
  content: "\f203"; }

.fa-toggle-off:before {
  content: "\f204"; }

.fa-toggle-on:before {
  content: "\f205"; }

.fa-bicycle:before {
  content: "\f206"; }

.fa-bus:before {
  content: "\f207"; }

.fa-ioxhost:before {
  content: "\f208"; }

.fa-angellist:before {
  content: "\f209"; }

.fa-cc:before {
  content: "\f20a"; }

.fa-shekel:before, .fa-sheqel:before, .fa-ils:before {
  content: "\f20b"; }

.fa-meanpath:before {
  content: "\f20c"; }

.fa-buysellads:before {
  content: "\f20d"; }

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

.fa-dashcube:before {
  content: "\f210"; }

.fa-forumbee:before {
  content: "\f211"; }

.fa-leanpub:before {
  content: "\f212"; }

.fa-sellsy:before {
  content: "\f213"; }

.fa-shirtsinbulk:before {
  content: "\f214"; }

.fa-simplybuilt:before {
  content: "\f215"; }

.fa-skyatlas:before {
  content: "\f216"; }

.fa-cart-plus:before {
  content: "\f217"; }

.fa-cart-arrow-down:before {
  content: "\f218"; }

.fa-diamond:before {
  content: "\f219"; }

.fa-ship:before {
  content: "\f21a"; }

.fa-user-secret:before {
  content: "\f21b"; }

.fa-motorcycle:before {
  content: "\f21c"; }

.fa-street-view:before {
  content: "\f21d"; }

.fa-heartbeat:before {
  content: "\f21e"; }

.fa-venus:before {
  content: "\f221"; }

.fa-mars:before {
  content: "\f222"; }

.fa-mercury:before {
  content: "\f223"; }

.fa-transgender:before {
  content: "\f224"; }

.fa-transgender-alt:before {
  content: "\f225"; }

.fa-venus-double:before {
  content: "\f226"; }

.fa-mars-double:before {
  content: "\f227"; }

.fa-venus-mars:before {
  content: "\f228"; }

.fa-mars-stroke:before {
  content: "\f229"; }

.fa-mars-stroke-v:before {
  content: "\f22a"; }

.fa-mars-stroke-h:before {
  content: "\f22b"; }

.fa-neuter:before {
  content: "\f22c"; }

.fa-facebook-official:before {
  content: "\f230"; }

.fa-pinterest-p:before {
  content: "\f231"; }

.fa-whatsapp:before {
  content: "\f232"; }

.fa-server:before {
  content: "\f233"; }

.fa-user-plus:before {
  content: "\f234"; }

.fa-user-times:before {
  content: "\f235"; }

.fa-hotel:before, .fa-bed:before {
  content: "\f236"; }

.fa-viacoin:before {
  content: "\f237"; }

.fa-train:before {
  content: "\f238"; }

.fa-subway:before {
  content: "\f239"; }

.fa-medium:before {
  content: "\f23a"; }

body > main {
  margin-top: -2rem;
  margin-left: 0; }

@media (min-width: 1024px) {
    body > main {
      margin-top: -1rem;
      margin-left: 13rem; } }

body > header.app {
  min-height: 4rem; }

body > header.app #logo {
  font-size: 1rem; }
  body > header.app #logo a::before {
    position: absolute;
    margin: 0;
    background: url("/Asset/logo.svg");
    background-size: auto 100%;
    background-repeat: no-repeat; }
  @media (min-width: 1024px) {
    body > header.app #logo {
      position: fixed;
      top: 0;
      left: 0; } }

body > header > menu {
  background: #3c3b37;
  margin: 0;
  margin-bottom: 4rem;
  padding: 0;
  padding-bottom: 4rem;
  list-style-type: none; }

body > header > menu li {
  position: relative; }
  body > header > menu li a {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: white; }
  body > header > menu li a:focus, body > header > menu li a:active {
    background: rgba(255, 255, 255, 0.2); }
  body > header > menu li.section-end {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
  body > header > menu li.dead-warning::before, body > header > menu li.dead-dead::before {
    position: absolute;
    content: "";
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    margin-left: 0.25rem;
    margin-top: 0.7rem;
    background: white;
    border-radius: 0.5rem; }
  body > header > menu li.dead-warning::before {
    background: orange; }
  body > header > menu li.dead-dead::before {
    background: red; }
  body > header > menu li.vpn::after {
    position: absolute;
    content: "V";
    right: 0.5rem;
    top: 0.6rem;
    width: 0.75rem;
    height: 0.75rem;
    line-height: 0.75rem;
    text-align: center;
    font-size: 10px;
    background-color: white;
    border-radius: 100%;
    opacity: 0.75;
    font-weight: bold; }
  body > header > menu li.vpn.vpn-connected::after {
    background-color: lime; }
  body > header > menu li.vpn.vpn-disconnected::after {
    background-color: red; }
  body > header > menu li.disabled {
    opacity: 0.5;
    order: 10; }
  body > header > menu li ~ .disabled {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2); }

@media (min-width: 1024px) {
    body > header > menu {
      position: fixed;
      top: 4rem;
      bottom: 0;
      overflow-y: auto;
      margin-bottom: 0;
      left: 0;
      width: 12rem;
      font-size: 0.75rem; } }

#toggle-menu {
  display: none; }

#toggle-menu ~ menu {
  display: none; }
  @media (min-width: 1024px) {
    #toggle-menu ~ menu {
      display: flex;
      flex-direction: column; } }

#toggle-menu ~ label {
  display: block;
  top: 0;
  right: 0;
  margin: 0.5rem 0;
  padding: 1rem;
  position: absolute;
  cursor: pointer; }
  #toggle-menu ~ label:hover {
    text-decoration: underline; }
  #toggle-menu ~ label:focus, #toggle-menu ~ label:active {
    background: #aaa; }
  #toggle-menu ~ label:focus::after, #toggle-menu ~ label:active::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.2); }
  @media (min-width: 1024px) {
    #toggle-menu ~ label {
      display: none; } }

#toggle-menu:checked ~ menu {
  display: flex;
  flex-direction: column; }

#toggle-menu:checked ~ label {
  background: #3c3b37;
  color: white; }

.card, #totals > div, body#uri--overview #siteList > li, body#uri--lb-overview #siteList > li, body#uri--site > main #fieldList li {
  list-style-type: none;
  background: white;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2); }

#toggle-totals {
  display: none; }

#toggle-totals + h1 {
  overflow: hidden; }
  @media (min-width: 930px) {
    #toggle-totals + h1::before {
      content: "Production"; } }
  #toggle-totals + h1 > label {
    float: right;
    box-sizing: border-box;
    border: 1px solid #aaa;
    padding: 0 1rem;
    font-family: "Ubuntu", sans-serif;
    font-size: 1rem;
    cursor: pointer; }
  #toggle-totals + h1 > label::before {
    content: "Hide"; }
  #toggle-totals + h1 > label:hover {
    text-decoration: underline; }
  #toggle-totals + h1 > label:active, #toggle-totals + h1 > label:focus {
    background: rgba(0, 0, 0, 0.2); }
  @media (min-width: 930px) {
      #toggle-totals + h1 > label {
        display: none; } }

#toggle-totals:checked + h1 > label::before {
  content: "Show"; }
  @media (max-width: 930px) {
    #toggle-totals:checked ~ #totals {
      display: none; } }

#totals {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: 0;
  padding: 0.5rem 0;
  padding-left: 0.5rem;
  margin-top: -1rem;
  margin-left: -0.5rem; }

#totals > div {
  position: relative;
  flex-grow: 1;
  min-width: 320px;
  max-width: 640px;
  margin-right: 1rem; }
  #totals > div .gauge, #totals > div .chart, #totals > div .output {
    height: 10rem;
    margin: 0; }
  #totals > div .gauge, #totals > div .output {
    display: inline-block;
    width: 49%;
    vertical-align: top; }
  #totals > div .output {
    position: relative;
    text-align: center;
    margin: 0; }
  #totals > div .output .value {
    line-height: 8rem;
    font-size: 4rem; }
  #totals > div .output .unit {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    font-size: 2rem; }

.toggle-messagelog {
  display: none; }

@media (max-width: 1260px) {
    .toggle-messagelog ~ .messagelog {
      display: none; }
    .toggle-messagelog:checked ~ .messagelog {
      display: block; } }

.messagelog {
  padding: 0;
  overflow-y: scroll; }

.messagelog > ul {
  max-height: 10rem;
  padding: 0; }
  .messagelog > ul > li {
    display: block;
    font-size: 0.8rem; }
  .messagelog > ul > li .nickname {
    display: block;
    float: left;
    font-size: 0.75rem;
    width: 2em;
    height: 2em;
    text-align: center;
    margin-right: 0.5rem;
    background: #eee; }
  .messagelog > ul > li time {
    display: block;
    font-size: 0.5rem;
    line-height: 0.5rem; }
  .messagelog > ul > li .message {
    margin-left: 2rem;
    font-size: 0.75rem; }
  .messagelog > ul > li:last-of-type form {
    display: flex;
    margin: 0; }
    .messagelog > ul > li:last-of-type form input {
      flex: 1; }
    .messagelog > ul > li:last-of-type form button {
      padding: 0;
      width: auto;
      min-width: 0;
      margin: 0; }

@media (min-width: 1260px) {
    .messagelog {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 100%;
      width: 16rem; } }

.adminList {
  margin: 0;
  padding: 0;
  list-style-type: none; }

.adminList > li {
  position: relative; }
  .adminList > li form {
    margin-left: 0; }
  .adminList > li label {
    margin: 0;
    padding: 0;
    padding-left: 0.5rem; }
  .adminList > li input, .adminList > li select {
    width: 60%; }
  .adminList > li menu {
    position: absolute;
    bottom: 0;
    left: 60%;
    list-style-type: none;
    margin: 0;
    padding: 1rem;
    padding-bottom: 0; }
  .adminList > li menu > li > button {
    visibility: hidden; }
    .adminList > li menu > li > button:focus, .adminList > li menu > li > button:active {
      visibility: visible; }
  .adminList > li:hover menu > li > button {
    visibility: visible; }
  .adminList > li input:hover ~ menu > li > button, .adminList > li input:focus ~ menu > li > button, .adminList > li input:active ~ menu > li > button {
    visibility: visible; }

#authList li:last-of-type menu button:last-of-type {
  display: none; }
  #authList li:not(:last-of-type) menu button:first-of-type {
    display: none; }

label.toggle-help {
  color: transparent;
  cursor: pointer; }

label.toggle-help:hover::after {
  color: black; }

label.toggle-help::after {
  content: "\f059";
  font-family: "FontAwesome", fantasy;
  color: #aaa;
  font-size: 1rem; }

input.toggle-help {
  display: none; }

input.toggle-help + .help {
  display: none; }

input.toggle-help:checked + .help {
  display: block; }

.help {
  background: #eee;
  padding: 1rem; }

.help p {
  font-size: 1rem;
  margin: 0;
  margin-bottom: 0.5rem; }
  .help p:last-of-type {
    margin-bottom: 0; }

h1.breadcrumb a {
  color: #aaa; }
  h1.breadcrumb a:first-of-type ~ *::before {
    content: "\f054";
    font-family: "FontAwesome", fantasy;
    font-weight: lighter;
    padding-right: 0.2em; }

input[name=toggle] {
  display: none; }

input[name=toggle] + .toggle-panel > *:not(.toggle-panel-controls) {
  display: none; }
  input[name=toggle] + .toggle-panel label[for^=toggle] {
    cursor: pointer; }
  input[name=toggle] + .toggle-panel label[for^=toggle]::before {
    content: "▸"; }

input[name=toggle]:checked + .toggle-panel > * {
  display: block; }
  input[name=toggle]:checked + .toggle-panel label[for^=toggle]::before {
    content: "▾" !important; }

body#uri--overview #siteList, body#uri--lb-overview #siteList {
  padding: 0;
  margin-left: 0;
  margin-top: 2rem; }
  body#uri--overview #siteList > li, body#uri--lb-overview #siteList > li {
    position: relative;
    min-width: 320px;
    max-width: 640px;
    margin-bottom: 2rem; }
  body#uri--overview #siteList > li[data-status=stale] .output time, body#uri--lb-overview #siteList > li[data-status=stale] .output time {
    background: red;
    color: white !important; }
  body#uri--overview #siteList > li[data-status=warning] .output time, body#uri--lb-overview #siteList > li[data-status=warning] .output time {
    background: #ffa; }
  body#uri--overview #siteList > li > header h1, body#uri--lb-overview #siteList > li > header h1 {
    margin: 0;
    padding: 0.5rem 1rem;
    font-family: "Ubuntu", sans-serif;
    font-size: 1.5em; }
    body#uri--overview #siteList > li > header h1 a, body#uri--lb-overview #siteList > li > header h1 a {
      color: #555; }
    body#uri--overview #siteList > li > header label, body#uri--lb-overview #siteList > li > header label {
      position: absolute;
      top: 0;
      right: 0;
      width: 1rem;
      height: 1rem;
      padding: 0.5rem;
      margin: 0.5rem 1rem;
      text-align: center;
      cursor: pointer;
      color: #aaa; }
    @media (min-width: 1260px) {
        body#uri--overview #siteList > li > header label, body#uri--lb-overview #siteList > li > header label {
          display: none; } }
    body#uri--overview #siteList > li > header label:hover, body#uri--lb-overview #siteList > li > header label:hover {
      color: #a9a9a9; }
    body#uri--overview #siteList > li > header label span, body#uri--lb-overview #siteList > li > header label span {
      position: absolute;
      display: block;
      text-align: center;
      top: 0;
      left: 0;
      right: 0;
      font-size: 0.8rem;
      font-weight: bold;
      z-index: 1;
      color: white; }
    body#uri--overview #siteList > li > header label::before, body#uri--lb-overview #siteList > li > header label::before {
      position: absolute;
      top: 0;
      left: 0;
      font-size: 2rem;
      font-family: "FontAwesome", fantasy;
      content: "\f075"; }
  body#uri--overview #siteList > li > ul, body#uri--lb-overview #siteList > li > ul {
    list-style-type: none; }
  body#uri--overview #siteList > li .output, body#uri--lb-overview #siteList > li .output {
    display: flex; }
    body#uri--overview #siteList > li .output.hide .history, body#uri--lb-overview #siteList > li .output.hide .history, body#uri--overview #siteList > li .output.hide .current, body#uri--lb-overview #siteList > li .output.hide .current {
      display: none; }
    body#uri--overview #siteList > li .output.hide + .fieldList, body#uri--lb-overview #siteList > li .output.hide + .fieldList {
      margin-top: 1rem; }
    body#uri--overview #siteList > li .output .history, body#uri--lb-overview #siteList > li .output .history {
      flex: 1;
      border-bottom: 2px solid #eee;
      height: 128px; }
    body#uri--overview #siteList > li .output .current, body#uri--lb-overview #siteList > li .output .current {
      width: 10rem;
      text-align: center;
      line-height: 128px;
      font-size: 3rem; }
    body#uri--overview #siteList > li .output time, body#uri--lb-overview #siteList > li .output time {
      position: absolute;
      display: block;
      right: 0;
      width: 10rem;
      text-align: center;
      color: #38973e;
      animation: flash 1s 1; }
  body#uri--overview #siteList > li .fieldList, body#uri--lb-overview #siteList > li .fieldList {
    padding: 0;
    margin: 0; }
    body#uri--overview #siteList > li .fieldList li, body#uri--lb-overview #siteList > li .fieldList li {
      display: flex;
      font-size: 1rem; }
    @media (min-width: 960px) {
        body#uri--overview #siteList > li .fieldList li, body#uri--lb-overview #siteList > li .fieldList li {
          font-size: 1.25rem; } }
    body#uri--overview #siteList > li .fieldList li:nth-of-type(even), body#uri--lb-overview #siteList > li .fieldList li:nth-of-type(even) {
      background: #f4f4f4; }
    body#uri--overview #siteList > li .fieldList li h1, body#uri--lb-overview #siteList > li .fieldList li h1, body#uri--overview #siteList > li .fieldList li p, body#uri--lb-overview #siteList > li .fieldList li p {
      flex: 1;
      padding: 1em 0.5em;
      margin: 0;
      line-height: 1em;
      font-family: "Ubuntu", sans-serif;
      font-weight: lighter;
      font-size: 0.75rem; }
    body#uri--overview #siteList > li .fieldList li h1, body#uri--lb-overview #siteList > li .fieldList li h1 {
      padding-left: 1rem; }
      body#uri--overview #siteList > li .fieldList li h1 a, body#uri--lb-overview #siteList > li .fieldList li h1 a {
        color: #555; }
    body#uri--overview #siteList > li .fieldList li .chart, body#uri--lb-overview #siteList > li .fieldList li .chart {
      width: 10rem;
      background: rgba(255, 255, 255, 0.5); }

@keyframes flash {
  from {
    background: rgba(255, 255, 0, 0.5); } }

body#uri--site > main .chart {
  background: #eee;
  height: 20rem; }
  body#uri--site > main > menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    list-style-type: none; }
  @media (min-width: 480px) {
      body#uri--site > main > menu {
        justify-content: flex-start; } }
  body#uri--site > main > menu li {
    float: left;
    margin-right: 1rem;
    margin-bottom: 1rem; }
    body#uri--site > main > menu li a {
      color: #555; }
    body#uri--site > main > menu li.cctv {
      position: relative; }
    body#uri--site > main > menu li.cctv .preview {
      display: none;
      position: absolute;
      top: -9rem;
      width: 16rem;
      height: 9rem;
      background-color: black; }
      body#uri--site > main > menu li.cctv .preview img {
        width: 100%;
        height: 100%;
        object-fit: contain; }
    body#uri--site > main > menu li.cctv:hover .preview {
      display: block; }
  body#uri--site > main > menu ~ * {
    clear: both; }
  body#uri--site > main #settings, body#uri--site > main #logbox-settings {
    display: none;
    background: #eee;
    padding: 0;
    overflow: hidden; }
  body#uri--site > main #settings:target, body#uri--site > main #logbox-settings:target {
    display: block; }
  body#uri--site > main #settings .btn.remote, body#uri--site > main #settings > menu li a.remote, body#uri--site > main > menu li #settings a.remote, body#uri--site > main #settings body#uri--field > main .alarm .toggle:not(:checked) ~ h2 label:first-of-type.remote, body#uri--field > main .alarm .toggle:not(:checked) ~ h2 body#uri--site > main #settings label:first-of-type.remote, body#uri--site > main #logbox-settings .btn.remote, body#uri--site > main #logbox-settings > menu li a.remote, body#uri--site > main > menu li #logbox-settings a.remote, body#uri--site > main #logbox-settings body#uri--field > main .alarm .toggle:not(:checked) ~ h2 label:first-of-type.remote, body#uri--field > main .alarm .toggle:not(:checked) ~ h2 body#uri--site > main #logbox-settings label:first-of-type.remote, body#uri--site > main #settings .btn.logbox-settings, body#uri--site > main #settings > menu li a.logbox-settings, body#uri--site > main > menu li #settings a.logbox-settings, body#uri--site > main #settings body#uri--field > main .alarm .toggle:not(:checked) ~ h2 label:first-of-type.logbox-settings, body#uri--field > main .alarm .toggle:not(:checked) ~ h2 body#uri--site > main #settings label:first-of-type.logbox-settings, body#uri--site > main #logbox-settings .btn.logbox-settings, body#uri--site > main #logbox-settings > menu li a.logbox-settings, body#uri--site > main > menu li #logbox-settings a.logbox-settings, body#uri--site > main #logbox-settings body#uri--field > main .alarm .toggle:not(:checked) ~ h2 label:first-of-type.logbox-settings, body#uri--field > main .alarm .toggle:not(:checked) ~ h2 body#uri--site > main #logbox-settings label:first-of-type.logbox-settings {
    display: none; }
    body#uri--site > main #settings .btn.remote.show, body#uri--site > main #settings > menu li a.remote.show, body#uri--site > main > menu li #settings a.remote.show, body#uri--site > main #settings body#uri--field > main .alarm .toggle:not(:checked) ~ h2 label:first-of-type.remote.show, body#uri--field > main .alarm .toggle:not(:checked) ~ h2 body#uri--site > main #settings label:first-of-type.remote.show, body#uri--site > main #logbox-settings .btn.remote.show, body#uri--site > main #logbox-settings > menu li a.remote.show, body#uri--site > main > menu li #logbox-settings a.remote.show, body#uri--site > main #logbox-settings body#uri--field > main .alarm .toggle:not(:checked) ~ h2 label:first-of-type.remote.show, body#uri--field > main .alarm .toggle:not(:checked) ~ h2 body#uri--site > main #logbox-settings label:first-of-type.remote.show, body#uri--site > main #settings .btn.logbox-settings.show, body#uri--site > main #settings > menu li a.logbox-settings.show, body#uri--site > main > menu li #settings a.logbox-settings.show, body#uri--site > main #settings body#uri--field > main .alarm .toggle:not(:checked) ~ h2 label:first-of-type.logbox-settings.show, body#uri--field > main .alarm .toggle:not(:checked) ~ h2 body#uri--site > main #settings label:first-of-type.logbox-settings.show, body#uri--site > main #logbox-settings .btn.logbox-settings.show, body#uri--site > main #logbox-settings > menu li a.logbox-settings.show, body#uri--site > main > menu li #logbox-settings a.logbox-settings.show, body#uri--site > main #logbox-settings body#uri--field > main .alarm .toggle:not(:checked) ~ h2 label:first-of-type.logbox-settings.show, body#uri--field > main .alarm .toggle:not(:checked) ~ h2 body#uri--site > main #logbox-settings label:first-of-type.logbox-settings.show {
      display: inline-block; }
  body#uri--site > main > form {
    max-width: 100%; }
  body#uri--site > main > form > button {
    margin-left: 0; }
  body#uri--site > main #fieldList {
    display: flex;
    flex-wrap: wrap;
    margin: 1rem 0;
    padding: 0;
    list-style-type: none;
    max-width: 100%; }
  body#uri--site > main #fieldList li {
    position: relative;
    width: 20rem;
    box-sizing: border-box;
    margin-right: 1rem;
    margin-bottom: 1rem;
    padding: 1rem; }
    body#uri--site > main #fieldList li.old {
      border-top: 4px solid red;
      order: 2; }
    body#uri--site > main #fieldList li.old::after {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      text-align: center;
      z-index: 10;
      color: red; }
    body#uri--site > main #fieldList li.old[data-mins]::after {
      content: attr(data-mins) " minutes ago"; }
    body#uri--site > main #fieldList li.old[data-hours]::after {
      content: attr(data-hours) " hours ago"; }
    body#uri--site > main #fieldList li.old[data-days]::after {
      content: attr(data-days) " days ago"; }
    body#uri--site > main #fieldList li.old[data-months]::after {
      content: attr(data-months) " months ago"; }
    body#uri--site > main #fieldList li.old[data-years]::after {
      content: attr(data-years) " years ago"; }
    body#uri--site > main #fieldList li.old[data-years] {
      display: none; }
    body#uri--site > main #fieldList li.old * {
      opacity: 0.5; }
    body#uri--site > main #fieldList li h1 {
      margin: 0;
      font-size: 1.5rem;
      font-family: "Ubuntu", sans-serif;
      font-weight: lighter; }
    body#uri--site > main #fieldList li h1 a {
      display: block;
      color: #555;
      text-decoration: none; }
      body#uri--site > main #fieldList li h1 a::after {
        content: "\f0a9";
        font-family: "FontAwesome", fantasy;
        float: right; }
    body#uri--site > main #fieldList li h2 {
      font-size: 1rem;
      margin: 0;
      padding: 1rem 0; }
    body#uri--site > main #fieldList li h2 span {
      font-weight: bold; }
    body#uri--site > main #fieldList li label {
      display: flex;
      margin-bottom: 0;
      clear: both; }
    body#uri--site > main #fieldList li label.oneLine span {
      display: block;
      width: 20%;
      padding: 0.5rem;
      padding-left: 0;
      text-align: right; }
      body#uri--site > main #fieldList li label.oneLine input, body#uri--site > main #fieldList li label.oneLine select {
        width: 100%;
        background: white; }
  body#uri--site > main .finance-chart {
    position: relative;
    padding-top: 3rem; }
  body#uri--site > main .finance-chart::before, body#uri--site > main .finance-chart::after {
    position: absolute;
    top: 0;
    padding: 0.5rem;
    font-size: 1rem;
    color: #888; }
  body#uri--site > main .finance-chart::before {
    content: "Total: " attr(data-kwh-total) " kWh";
    left: 0; }
  body#uri--site > main .finance-chart::after {
    content: "Total: £" attr(data-pounds-total);
    right: 0; }
  body#uri--site > main .finance-chart > form {
    margin: 0 auto; }
    body#uri--site > main .finance-chart > form select {
      width: 49%; }

body#uri--field > main .chart {
  background: #eee;
  height: 20rem; }
  body#uri--field > main .alarm .help {
    margin-bottom: 1rem; }
  body#uri--field > main .alarm .toggle {
    display: none; }
    body#uri--field > main .alarm .toggle ~ div {
      display: none; }
    body#uri--field > main .alarm .toggle:not(:checked) ~ h2 label:first-of-type {
      display: inline-block; }
      body#uri--field > main .alarm .toggle:not(:checked) ~ h2 .toggle-help {
        display: none; }
    body#uri--field > main .alarm .toggle:checked ~ div {
      display: block;
      margin-bottom: 6rem; }
    body#uri--field > main .alarm .toggle:checked ~ h2 .toggle-help {
      display: inline-block; }
  body#uri--field > main .data .dateRange form button {
    margin-left: 0; }
  body#uri--field > main .data .csv form button {
    margin-left: 0; }
  body#uri--field > main .data .tableHeader table td, body#uri--field > main .data .tableData table td, body#uri--field > main .data .tableHeader table th, body#uri--field > main .data .tableData table th {
    width: 6rem;
    padding: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.2); }
  body#uri--field > main .data .tableData {
    position: relative;
    display: inline-block;
    max-height: 60vh;
    overflow-y: scroll;
    margin-bottom: 10rem; }
    body#uri--field > main .data .tableData .zebraDay {
      border-top: 4px solid black; }
    body#uri--field > main .data .tableData .zebraHour {
      background: #eef; }
    body#uri--field > main .data .tableData .alert {
      font-weight: bold;
      color: red; }

body#uri--field details {
  padding: 4rem 0; }
  body#uri--field details summary:hover {
    text-decoration: underline;
    cursor: pointer; }

@keyframes spin {
  to {
    transform: rotate(1turn); } }

body#uri--adjustment .loading {
  position: relative; }
  body#uri--adjustment .loading::before {
    content: "Loading...";
    display: block;
    position: absolute;
    text-align: center;
    font-size: 3rem;
    line-height: 6rem;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8); }
  body#uri--adjustment .loading::after {
    content: "";
    display: block;
    position: absolute;
    left: calc(50% - 2.5rem);
    top: 50%;
    width: 5rem;
    height: 5rem;
    border: 2px solid blue;
    border-radius: 5rem;
    border-top-color: transparent;
    animation: spin 1s infinite linear; }

body#uri--adjustment > main .data .dateRange form button {
  display: inline-block;
  margin-left: 0; }
  body#uri--adjustment > main .data .dateRange form button[value=adjust] {
    float: right;
    background: #c83232;
    color: white; }
  body#uri--adjustment > main .data .tableHeader table td, body#uri--adjustment > main .data .tableData table td, body#uri--adjustment > main .data .tableHeader table th, body#uri--adjustment > main .data .tableData table th {
    width: 6rem;
    padding: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.2); }
  body#uri--adjustment > main .data .tableData {
    position: relative;
    display: inline-block;
    max-height: 60vh;
    overflow-y: scroll;
    margin-bottom: 10rem; }
  body#uri--adjustment > main .data .tableData .zebraDay {
    border-top: 4px solid black; }
  body#uri--adjustment > main .data .tableData .zebraHour {
    background: #eef; }
  body#uri--adjustment > main .data .tableData .alert {
    font-weight: bold;
    color: red; }

body#uri--reporting form > div {
  margin-bottom: 1em; }
  body#uri--reporting form ul {
    list-style-type: none;
    padding-left: 0;
    margin-left: 0; }
  body#uri--reporting form input.toggle {
    display: none; }
  body#uri--reporting form input.toggle:checked + label span::after {
    opacity: 1; }
  body#uri--reporting form input.toggle + label span {
    position: relative;
    padding-left: 1.5em; }
  body#uri--reporting form input.toggle + label span::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 1em;
    height: 1em;
    border: 2px solid #555;
    opacity: 0.5;
    border-radius: 1em; }
  body#uri--reporting form input.toggle + label span::after {
    content: "";
    display: block;
    position: absolute;
    left: 0.25em;
    top: 0.25em;
    width: 0;
    height: 0;
    border: 0.375em solid #344a6b;
    border-radius: 1em;
    opacity: 0; }
  body#uri--reporting form input.toggle[value="off"]:checked ~ .date, body#uri--reporting form input.toggle[value="off"]:checked ~ .day, body#uri--reporting form input.toggle[value="off"]:checked ~ .hour {
    display: none; }
  body#uri--reporting form input.toggle[value="monthly"]:checked ~ .day {
    display: none; }
  body#uri--reporting form input.toggle[value="weekly"]:checked ~ .date {
    display: none; }
  body#uri--reporting form input.toggle[value="daily"]:checked ~ .date, body#uri--reporting form input.toggle[value="daily"]:checked ~ .day {
    display: none; }

body.dir--wrapper > h1 {
  margin: 0;
  padding: 0;
  padding-left: 1rem;
  font-weight: normal; }
  @media (min-width: 1024px) {
    body.dir--wrapper > h1 {
      margin-left: 12rem; } }

body.dir--wrapper > div {
  padding: 1rem; }
  @media (min-width: 1024px) {
    body.dir--wrapper > div {
      margin-left: 12rem; } }

body.dir--kiosk > header {
  display: none; }

body#uri--kiosk_belper {
  height: 100vh;
  background-image: url("/Asset/kiosk/belper/belper-bg.jpg");
  background-size: 100%;
  background-position-x: 50%;
  background-position-y: 50%;
  background-repeat: no-repeat;
  overflow: hidden; }

body#uri--kiosk_belper main {
  margin: 0;
  text-align: center; }
  body#uri--kiosk_belper main p.date {
    position: absolute;
    top: 0;
    left: 0; }
  body#uri--kiosk_belper main p.date::before {
    content: "Last updated: "; }
  body#uri--kiosk_belper main h1 {
    text-align: center; }
  body#uri--kiosk_belper main .gauge {
    display: block;
    float: left;
    width: 30%; }
  body#uri--kiosk_belper main .gauge#gauge-turbine1 {
    margin-left: 20%; }
  body#uri--kiosk_belper main .gauge#gauge-turbine2 {
    margin-right: 20%; }
  body#uri--kiosk_belper main dl {
    display: inline-block;
    margin: 0 auto;
    margin-top: 4rem;
    background: rgba(255, 255, 255, 0.75);
    overflow: hidden;
    text-align: left; }
  body#uri--kiosk_belper main dl dt {
    font-weight: bold;
    float: left;
    padding: 0.5rem;
    clear: both;
    width: 24rem; }
  body#uri--kiosk_belper main dl dd {
    float: left;
    margin: 0;
    padding: 0.5rem; }

body#uri--kiosk_belper > footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.75); }
  body#uri--kiosk_belper > footer > div {
    display: block;
    float: left;
    width: 50%; }
  body#uri--kiosk_belper > footer > div img {
    float: left;
    margin: 1rem;
    width: 4rem; }
  body#uri--kiosk_belper > footer > div h2, body#uri--kiosk_belper > footer > div h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: normal; }
  body#uri--kiosk_belper > footer > div h2 {
    margin-top: 1rem;
    font-size: 1.5rem; }
  body#uri--kiosk_belper > footer > aside {
    float: right;
    padding-top: 1rem;
    margin-right: 2rem; }
  body#uri--kiosk_belper > footer > aside p {
    margin: 0;
    font-size: 0.8rem; }
  body#uri--kiosk_belper > footer > aside h4 {
    margin: 0;
    font-size: 0.8rem;
    font-weight: normal;
    margin-top: 0.5rem; }

body#uri--totals header menu {
  display: none; }

body#uri--totals main {
  margin: 0; }
  body#uri--totals main #total-performance {
    margin-left: 1rem;
    width: 100%;
    max-width: 100%; }
  body#uri--totals main #total-performance .chart {
    height: 24rem; }

body#uri--totals ul#siteList {
  display: flex;
  align-items: stretch;
  align-content: stretch;
  list-style-type: none;
  margin: 0 1rem;
  padding: 0;
  max-width: 100%; }
  body#uri--totals ul#siteList > li {
    flex-grow: 1;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.6rem; }
  body#uri--totals ul#siteList > li > span {
    display: block; }
  body#uri--totals ul#siteList > li ul, body#uri--totals ul#siteList > li section {
    display: none; }

body#uri--vnc .back {
  color: #aaa; }

body#uri--vnc-bmp {
  background: #282828; }

body#uri--vnc-bmp > header {
  display: none; }

body#uri--vnc-bmp > form {
  display: flex;
  max-width: 100%;
  margin-top: 4rem;
  justify-content: center; }
  body#uri--vnc-bmp > form input[type='image'] {
    cursor: crosshair; }

body#uri--vnc-html > header {
  display: none; }

body#uri--vpn #onlineList {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  list-style-type: none;
  padding: 0; }
  @media (min-width: 1260px) {
    body#uri--vpn #onlineList {
      columns: 4; } }
  body#uri--vpn #onlineList li {
    box-sizing: border-box;
    border-left: 4px solid transparent;
    margin-bottom: 1rem;
    padding: 0.5rem;
    width: 50%; }
  @media (min-width: 930px) {
      body#uri--vpn #onlineList li {
        width: 33%; } }
  @media (min-width: 960px) {
      body#uri--vpn #onlineList li {
        width: 25%; } }
  @media (min-width: 1260px) {
      body#uri--vpn #onlineList li {
        width: 20%; } }
  body#uri--vpn #onlineList li.status-connected {
    border-left-color: green; }
  body#uri--vpn #onlineList li h3 {
    margin: 0; }

body#uri--pdf {
  max-width: 960px; }

body#uri--pdf > header {
  display: none; }

body#uri--pdf pdf-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; }
  body#uri--pdf pdf-top .details h1, body#uri--pdf pdf-top .details h2, body#uri--pdf pdf-top .details h3 {
    margin: 0;
    font-size: 1.25rem;
    text-align: right; }

body#uri--pdf pdf-table {
  display: block;
  padding-top: 4rem; }
  body#uri--pdf pdf-table table {
    width: 100%;
    border-spacing: 2px;
    border-collapse: separate; }
  body#uri--pdf pdf-table table tr {
    background: #eee;
    print-color-adjust: exact; }
  body#uri--pdf pdf-table table tr:nth-of-type(odd) {
    background: #dedede; }
  body#uri--pdf pdf-table table tr td {
    padding: 0.5rem; }
  body#uri--pdf pdf-table table tr td:first-of-type {
    width: 75%; }
  body#uri--pdf pdf-table table tr td.average-power::after {
    content: " kW"; }
  body#uri--pdf pdf-table table tr td.monthly-energy::after {
    content: " kWh"; }
  body#uri--pdf pdf-table table tr td.total-energy::after {
    content: " kWh"; }

body#uri--pdf pdf-graph {
  display: block; }
  body#uri--pdf pdf-graph .chart {
    print-color-adjust: exact;
    background: white; }
  body#uri--pdf pdf-graph .chart * {
    print-color-adjust: exact; }

body::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #344a6b; }

.hidden {
  display: none; }

a {
  color: black; }
