@charset "UTF-8";
/* ==========================================================================
   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"] {
  -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 Awesome 4.4.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("../fonts/fontawesome-webfont.eot?v=4.4.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.4.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.4.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.4.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.4.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.4.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal; }

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* 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: .1em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

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

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

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right; }

.pull-left {
  float: left; }

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

.fa.pull-right {
  margin-left: .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);
  transform: rotate(90deg); }

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

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

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

.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-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 {
  -webkit-filter: none;
  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: ""; }

.fa-music:before {
  content: ""; }

.fa-search:before {
  content: ""; }

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

.fa-heart:before {
  content: ""; }

.fa-star:before {
  content: ""; }

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

.fa-user:before {
  content: ""; }

.fa-film:before {
  content: ""; }

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

.fa-th:before {
  content: ""; }

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

.fa-check:before {
  content: ""; }

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

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

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

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

.fa-signal:before {
  content: ""; }

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

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

.fa-home:before {
  content: ""; }

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

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

.fa-road:before {
  content: ""; }

.fa-download:before {
  content: ""; }

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

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

.fa-inbox:before {
  content: ""; }

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

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

.fa-refresh:before {
  content: ""; }

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

.fa-lock:before {
  content: ""; }

.fa-flag:before {
  content: ""; }

.fa-headphones:before {
  content: ""; }

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

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

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

.fa-qrcode:before {
  content: ""; }

.fa-barcode:before {
  content: ""; }

.fa-tag:before {
  content: ""; }

.fa-tags:before {
  content: ""; }

.fa-book:before {
  content: ""; }

.fa-bookmark:before {
  content: ""; }

.fa-print:before {
  content: ""; }

.fa-camera:before {
  content: ""; }

.fa-font:before {
  content: ""; }

.fa-bold:before {
  content: ""; }

.fa-italic:before {
  content: ""; }

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

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

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

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

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

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

.fa-list:before {
  content: ""; }

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

.fa-indent:before {
  content: ""; }

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

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

.fa-pencil:before {
  content: ""; }

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

.fa-adjust:before {
  content: ""; }

.fa-tint:before {
  content: ""; }

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

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

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

.fa-arrows:before {
  content: ""; }

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

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

.fa-backward:before {
  content: ""; }

.fa-play:before {
  content: ""; }

.fa-pause:before {
  content: ""; }

.fa-stop:before {
  content: ""; }

.fa-forward:before {
  content: ""; }

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

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

.fa-eject:before {
  content: ""; }

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

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

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

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

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

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

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

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

.fa-crosshairs:before {
  content: ""; }

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

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

.fa-ban:before {
  content: ""; }

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

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

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

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

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

.fa-expand:before {
  content: ""; }

.fa-compress:before {
  content: ""; }

.fa-plus:before {
  content: ""; }

.fa-minus:before {
  content: ""; }

.fa-asterisk:before {
  content: ""; }

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

.fa-gift:before {
  content: ""; }

.fa-leaf:before {
  content: ""; }

.fa-fire:before {
  content: ""; }

.fa-eye:before {
  content: ""; }

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

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

.fa-plane:before {
  content: ""; }

.fa-calendar:before {
  content: ""; }

.fa-random:before {
  content: ""; }

.fa-comment:before {
  content: ""; }

.fa-magnet:before {
  content: ""; }

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

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

.fa-retweet:before {
  content: ""; }

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

.fa-folder:before {
  content: ""; }

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

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

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

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

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

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

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

.fa-key:before {
  content: ""; }

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

.fa-comments:before {
  content: ""; }

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

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

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

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

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

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

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

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

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

.fa-trophy:before {
  content: ""; }

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

.fa-upload:before {
  content: ""; }

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

.fa-phone:before {
  content: ""; }

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

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

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

.fa-twitter:before {
  content: ""; }

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

.fa-github:before {
  content: ""; }

.fa-unlock:before {
  content: ""; }

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

.fa-feed:before,
.fa-rss:before {
  content: ""; }

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

.fa-bullhorn:before {
  content: ""; }

.fa-bell:before {
  content: ""; }

.fa-certificate:before {
  content: ""; }

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

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

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

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

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

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

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

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

.fa-globe:before {
  content: ""; }

.fa-wrench:before {
  content: ""; }

.fa-tasks:before {
  content: ""; }

.fa-filter:before {
  content: ""; }

.fa-briefcase:before {
  content: ""; }

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

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

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

.fa-cloud:before {
  content: ""; }

.fa-flask:before {
  content: ""; }

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

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

.fa-paperclip:before {
  content: ""; }

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

.fa-square:before {
  content: ""; }

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

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

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

.fa-strikethrough:before {
  content: ""; }

.fa-underline:before {
  content: ""; }

.fa-table:before {
  content: ""; }

.fa-magic:before {
  content: ""; }

.fa-truck:before {
  content: ""; }

.fa-pinterest:before {
  content: ""; }

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

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

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

.fa-money:before {
  content: ""; }

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

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

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

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

.fa-columns:before {
  content: ""; }

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

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

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

.fa-envelope:before {
  content: ""; }

.fa-linkedin:before {
  content: ""; }

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

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

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

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

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

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

.fa-sitemap:before {
  content: ""; }

.fa-umbrella:before {
  content: ""; }

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

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

.fa-exchange:before {
  content: ""; }

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

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

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

.fa-stethoscope:before {
  content: ""; }

.fa-suitcase:before {
  content: ""; }

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

.fa-coffee:before {
  content: ""; }

.fa-cutlery:before {
  content: ""; }

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

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

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

.fa-ambulance:before {
  content: ""; }

.fa-medkit:before {
  content: ""; }

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

.fa-beer:before {
  content: ""; }

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

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

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

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

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

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

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

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

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

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

.fa-desktop:before {
  content: ""; }

.fa-laptop:before {
  content: ""; }

.fa-tablet:before {
  content: ""; }

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

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

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

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

.fa-spinner:before {
  content: ""; }

.fa-circle:before {
  content: ""; }

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

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

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

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

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

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

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

.fa-gamepad:before {
  content: ""; }

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

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

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

.fa-terminal:before {
  content: ""; }

.fa-code:before {
  content: ""; }

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

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

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

.fa-crop:before {
  content: ""; }

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

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

.fa-question:before {
  content: ""; }

.fa-info:before {
  content: ""; }

.fa-exclamation:before {
  content: ""; }

.fa-superscript:before {
  content: ""; }

.fa-subscript:before {
  content: ""; }

.fa-eraser:before {
  content: ""; }

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

.fa-microphone:before {
  content: ""; }

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

.fa-shield:before {
  content: ""; }

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

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

.fa-rocket:before {
  content: ""; }

.fa-maxcdn:before {
  content: ""; }

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

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

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

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

.fa-html5:before {
  content: ""; }

.fa-css3:before {
  content: ""; }

.fa-anchor:before {
  content: ""; }

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

.fa-bullseye:before {
  content: ""; }

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

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

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

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

.fa-ticket:before {
  content: ""; }

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

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

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

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

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

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

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

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

.fa-compass:before {
  content: ""; }

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

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

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

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

.fa-gbp:before {
  content: ""; }

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

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

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

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

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

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

.fa-file:before {
  content: ""; }

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

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

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

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

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

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

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

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

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

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

.fa-youtube:before {
  content: ""; }

.fa-xing:before {
  content: ""; }

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

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

.fa-dropbox:before {
  content: ""; }

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

.fa-instagram:before {
  content: ""; }

.fa-flickr:before {
  content: ""; }

.fa-adn:before {
  content: ""; }

.fa-bitbucket:before {
  content: ""; }

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

.fa-tumblr:before {
  content: ""; }

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

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

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

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

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

.fa-apple:before {
  content: ""; }

.fa-windows:before {
  content: ""; }

.fa-android:before {
  content: ""; }

.fa-linux:before {
  content: ""; }

.fa-dribbble:before {
  content: ""; }

.fa-skype:before {
  content: ""; }

.fa-foursquare:before {
  content: ""; }

.fa-trello:before {
  content: ""; }

.fa-female:before {
  content: ""; }

.fa-male:before {
  content: ""; }

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

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

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

.fa-archive:before {
  content: ""; }

.fa-bug:before {
  content: ""; }

.fa-vk:before {
  content: ""; }

.fa-weibo:before {
  content: ""; }

.fa-renren:before {
  content: ""; }

.fa-pagelines:before {
  content: ""; }

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

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

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

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

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

.fa-wheelchair:before {
  content: ""; }

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

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

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

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

.fa-slack:before {
  content: ""; }

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

.fa-wordpress:before {
  content: ""; }

.fa-openid:before {
  content: ""; }

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

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

.fa-yahoo:before {
  content: ""; }

.fa-google:before {
  content: ""; }

.fa-reddit:before {
  content: ""; }

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

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

.fa-stumbleupon:before {
  content: ""; }

.fa-delicious:before {
  content: ""; }

.fa-digg:before {
  content: ""; }

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

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

.fa-drupal:before {
  content: ""; }

.fa-joomla:before {
  content: ""; }

.fa-language:before {
  content: ""; }

.fa-fax:before {
  content: ""; }

.fa-building:before {
  content: ""; }

.fa-child:before {
  content: ""; }

.fa-paw:before {
  content: ""; }

.fa-spoon:before {
  content: ""; }

.fa-cube:before {
  content: ""; }

.fa-cubes:before {
  content: ""; }

.fa-behance:before {
  content: ""; }

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

.fa-steam:before {
  content: ""; }

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

.fa-recycle:before {
  content: ""; }

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

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

.fa-tree:before {
  content: ""; }

.fa-spotify:before {
  content: ""; }

.fa-deviantart:before {
  content: ""; }

.fa-soundcloud:before {
  content: ""; }

.fa-database:before {
  content: ""; }

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

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

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

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

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

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

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

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

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

.fa-vine:before {
  content: ""; }

.fa-codepen:before {
  content: ""; }

.fa-jsfiddle:before {
  content: ""; }

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

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

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

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

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

.fa-git:before {
  content: ""; }

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: ""; }

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

.fa-qq:before {
  content: ""; }

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

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

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

.fa-history:before {
  content: ""; }

.fa-circle-thin:before {
  content: ""; }

.fa-header:before {
  content: ""; }

.fa-paragraph:before {
  content: ""; }

.fa-sliders:before {
  content: ""; }

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

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

.fa-bomb:before {
  content: ""; }

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

.fa-tty:before {
  content: ""; }

.fa-binoculars:before {
  content: ""; }

.fa-plug:before {
  content: ""; }

.fa-slideshare:before {
  content: ""; }

.fa-twitch:before {
  content: ""; }

.fa-yelp:before {
  content: ""; }

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

.fa-wifi:before {
  content: ""; }

.fa-calculator:before {
  content: ""; }

.fa-paypal:before {
  content: ""; }

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

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

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

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

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

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

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

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

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

.fa-trash:before {
  content: ""; }

.fa-copyright:before {
  content: ""; }

.fa-at:before {
  content: ""; }

.fa-eyedropper:before {
  content: ""; }

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

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

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

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

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

.fa-lastfm:before {
  content: ""; }

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

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

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

.fa-bicycle:before {
  content: ""; }

.fa-bus:before {
  content: ""; }

.fa-ioxhost:before {
  content: ""; }

.fa-angellist:before {
  content: ""; }

.fa-cc:before {
  content: ""; }

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

.fa-meanpath:before {
  content: ""; }

.fa-buysellads:before {
  content: ""; }

.fa-connectdevelop:before {
  content: ""; }

.fa-dashcube:before {
  content: ""; }

.fa-forumbee:before {
  content: ""; }

.fa-leanpub:before {
  content: ""; }

.fa-sellsy:before {
  content: ""; }

.fa-shirtsinbulk:before {
  content: ""; }

.fa-simplybuilt:before {
  content: ""; }

.fa-skyatlas:before {
  content: ""; }

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

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

.fa-diamond:before {
  content: ""; }

.fa-ship:before {
  content: ""; }

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

.fa-motorcycle:before {
  content: ""; }

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

.fa-heartbeat:before {
  content: ""; }

.fa-venus:before {
  content: ""; }

.fa-mars:before {
  content: ""; }

.fa-mercury:before {
  content: ""; }

.fa-intersex:before,
.fa-transgender:before {
  content: ""; }

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

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

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

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

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

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

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

.fa-neuter:before {
  content: ""; }

.fa-genderless:before {
  content: ""; }

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

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

.fa-whatsapp:before {
  content: ""; }

.fa-server:before {
  content: ""; }

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

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

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

.fa-viacoin:before {
  content: ""; }

.fa-train:before {
  content: ""; }

.fa-subway:before {
  content: ""; }

.fa-medium:before {
  content: ""; }

.fa-yc:before,
.fa-y-combinator:before {
  content: ""; }

.fa-optin-monster:before {
  content: ""; }

.fa-opencart:before {
  content: ""; }

.fa-expeditedssl:before {
  content: ""; }

.fa-battery-4:before,
.fa-battery-full:before {
  content: ""; }

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: ""; }

.fa-battery-2:before,
.fa-battery-half:before {
  content: ""; }

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: ""; }

.fa-battery-0:before,
.fa-battery-empty:before {
  content: ""; }

.fa-mouse-pointer:before {
  content: ""; }

.fa-i-cursor:before {
  content: ""; }

.fa-object-group:before {
  content: ""; }

.fa-object-ungroup:before {
  content: ""; }

.fa-sticky-note:before {
  content: ""; }

.fa-sticky-note-o:before {
  content: ""; }

.fa-cc-jcb:before {
  content: ""; }

.fa-cc-diners-club:before {
  content: ""; }

.fa-clone:before {
  content: ""; }

.fa-balance-scale:before {
  content: ""; }

.fa-hourglass-o:before {
  content: ""; }

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: ""; }

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: ""; }

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: ""; }

.fa-hourglass:before {
  content: ""; }

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: ""; }

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: ""; }

.fa-hand-scissors-o:before {
  content: ""; }

.fa-hand-lizard-o:before {
  content: ""; }

.fa-hand-spock-o:before {
  content: ""; }

.fa-hand-pointer-o:before {
  content: ""; }

.fa-hand-peace-o:before {
  content: ""; }

.fa-trademark:before {
  content: ""; }

.fa-registered:before {
  content: ""; }

.fa-creative-commons:before {
  content: ""; }

.fa-gg:before {
  content: ""; }

.fa-gg-circle:before {
  content: ""; }

.fa-tripadvisor:before {
  content: ""; }

.fa-odnoklassniki:before {
  content: ""; }

.fa-odnoklassniki-square:before {
  content: ""; }

.fa-get-pocket:before {
  content: ""; }

.fa-wikipedia-w:before {
  content: ""; }

.fa-safari:before {
  content: ""; }

.fa-chrome:before {
  content: ""; }

.fa-firefox:before {
  content: ""; }

.fa-opera:before {
  content: ""; }

.fa-internet-explorer:before {
  content: ""; }

.fa-tv:before,
.fa-television:before {
  content: ""; }

.fa-contao:before {
  content: ""; }

.fa-500px:before {
  content: ""; }

.fa-amazon:before {
  content: ""; }

.fa-calendar-plus-o:before {
  content: ""; }

.fa-calendar-minus-o:before {
  content: ""; }

.fa-calendar-times-o:before {
  content: ""; }

.fa-calendar-check-o:before {
  content: ""; }

.fa-industry:before {
  content: ""; }

.fa-map-pin:before {
  content: ""; }

.fa-map-signs:before {
  content: ""; }

.fa-map-o:before {
  content: ""; }

.fa-map:before {
  content: ""; }

.fa-commenting:before {
  content: ""; }

.fa-commenting-o:before {
  content: ""; }

.fa-houzz:before {
  content: ""; }

.fa-vimeo:before {
  content: ""; }

.fa-black-tie:before {
  content: ""; }

.fa-fonticons:before {
  content: ""; }

html {
  font-family: HelveticaNeueW01-55Roma, Helvetica Neue, Helvetica, Lucida Grande, Arial, sans-serif;
  box-sizing: border-box;
  font-size: 62.5%;
  font-weight: normal;
  height: 100%; }

* {
  box-sizing: inherit;
  -webkit-overflow-scrolling: touch; }
  *:before, *:after {
    box-sizing: inherit; }

::-ms-clear {
  display: none; }

:focus {
  border: none;
  outline: none; }

::-moz-selection {
  background: #ecf6f8; }

::selection {
  background: #ecf6f8; }

body {
  background-color: #eee;
  height: 100%;
  line-height: 1.3;
  overflow: hidden;
  overflow-y: scroll;
  padding: 60px 0 0 0; }

img {
  height: 100%;
  width: 100%; }

a {
  color: inherit;
  text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: HelveticaNeueW01-65Medi, Helvetica Neue, Helvetica, Lucida Grande, Arial, sans-serif;
  letter-spacing: 0;
  text-rendering: optimizeLegibility; }

small {
  font-size: 80%; }

p {
  font-family: HelveticaNeueW01-55Roma, Helvetica Neue, Helvetica, Lucida Grande, Arial, sans-serif;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word; }

form > p {
  white-space: normal; }

.error {
  font-size: 11px;
  font-size: 1.1rem;
  color: #44a7b7;
  display: block; }

.wrapper {
  position: relative; }

.accent {
  color: #459FAB !important; }

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

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

.avatar {
  border-radius: 50%;
  width: 48px; }

.live .content-container {
  overflow: auto; }

.content-container {
  box-sizing: border-box;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden; }
  .content-container:after {
    content: " ";
    display: block;
    clear: both; }

.content-wrapper {
  box-sizing: border-box;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 980px;
  margin: 0 auto; }
  .content-wrapper:after {
    content: " ";
    display: block;
    clear: both; }

.static-container {
  background: solid #eee;
  border: 4px solid #eee;
  color: #fff;
  margin-bottom: 20px;
  margin-top: 45px;
  padding: 20px; }
  .static-container h2 {
    font-size: 18px;
    font-size: 1.8rem;
    color: #fff;
    margin: 0; }
  .static-container p {
    font-size: 14px;
    font-size: 1.4rem;
    color: #fff; }
    .static-container p a {
      color: inherit;
      text-decoration: underline; }
  .static-container__footer {
    font-size: 12px;
    font-size: 1.2rem;
    padding-top: 10px; }

.footer__list {
  list-style-type: none;
  margin: 0;
  margin-top: 20px;
  padding: 0; }

.footer__list-item {
  display: inline-block;
  margin-right: 5px; }
  .footer__list-item:last-of-type {
    margin-right: 0; }
  .footer__list-item a {
    color: inherit; }

.static-page {
  overflow: auto; }
  .static-page p {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 20px; }
    .static-page p:last-of-type {
      margin-bottom: 0; }

.static-wrapper {
  max-width: 940px;
  margin: 0 auto; }

.static-header {
  background: transparent url("../images/general-modal-header.jpg") 0 0 repeat-x;
  height: 160px;
  margin-top: -1px; }
  .static-header__headline {
    font-family: HelveticaNeueW01-65Medi, Helvetica Neue, Helvetica, Lucida Grande, Arial, sans-serif;
    font-size: 32px;
    font-size: 3.2rem;
    color: #fff;
    margin: 0;
    padding: 38px 0 7px 0;
    text-align: center;
    text-transform: uppercase; }
    @media (max-width: 639px) {
      .static-header__headline {
        font-size: 28px;
        font-size: 2.8rem;
        padding: 24px 0 7px 0; } }
  .static-header__sub-headline {
    font-family: HelveticaNeueW01-55Roma, Helvetica Neue, Helvetica, Lucida Grande, Arial, sans-serif;
    font-size: 20px;
    font-size: 2rem;
    color: #fff;
    margin: 0;
    padding: 0;
    text-align: center; }
    @media (max-width: 639px) {
      .static-header__sub-headline {
        font-size: 18px;
        font-size: 1.8rem; } }

.content-block {
  box-sizing: border-box;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  margin-bottom: 15px;
  padding: 50px; }
  .content-block:after {
    content: " ";
    display: block;
    clear: both; }
  .content-block a {
    color: #4099A8;
    text-decoration: underline; }
  .content-block__headline {
    font-size: 32px;
    font-size: 3.2rem;
    color: #000;
    margin-bottom: 20px;
    margin-top: 0; }
  .content-block__sub-headline {
    font-size: 24px;
    font-size: 2.4rem;
    color: #000;
    margin-bottom: 20px;
    margin-top: 0; }
  .content-block__list {
    font-size: 16px;
    font-size: 1.6rem;
    padding-left: 18px; }
    .content-block__list li {
      margin-bottom: 10px; }
  .content-block__figure {
    float: right; }
    @media (max-width: 639px) {
      .content-block__figure {
        display: none; } }
  .content-block__text--submit {
    float: left;
    max-width: 45%; }
    @media (max-width: 767px) {
      .content-block__text--submit {
        max-width: 35%; } }
    @media (max-width: 639px) {
      .content-block__text--submit {
        max-width: 100%; } }

.static-navigation {
  text-align: center; }
  .static-navigation__list {
    list-style-type: none;
    padding: 0; }
  .static-navigation__item {
    display: inline-block;
    padding: 15px 30px; }
    .static-navigation__item:first-of-type {
      padding-left: 0; }
    .static-navigation__item:last-of-type {
      padding-right: 0; }
    @media (max-width: 767px) {
      .static-navigation__item {
        padding: 15px; } }
    @media (max-width: 639px) {
      .static-navigation__item {
        padding: 10px 8px; } }
    @media (max-width: 479px) {
      .static-navigation__item {
        display: block;
        padding: 10px; } }
    .static-navigation__item a {
      font-size: 14px;
      font-size: 1.4rem;
      font-family: HelveticaNeueW01-65Medi, Helvetica Neue, Helvetica, Lucida Grande, Arial, sans-serif;
      color: #999;
      text-transform: uppercase; }
    .static-navigation__item--selected {
      display: inline-block;
      padding: 15px 30px; }
      .static-navigation__item--selected a {
        font-family: HelveticaNeueW01-65Medi, Helvetica Neue, Helvetica, Lucida Grande, Arial, sans-serif;
        font-size: 14px;
        font-size: 1.4rem;
        color: #44a7b7;
        text-transform: uppercase; }
      .static-navigation__item--selected:first-of-type {
        padding-left: 0; }
      @media (max-width: 767px) {
        .static-navigation__item--selected {
          padding: 15px; } }
      @media (max-width: 639px) {
        .static-navigation__item--selected {
          padding: 10px 8px; } }
      @media (max-width: 479px) {
        .static-navigation__item--selected {
          display: block;
          padding: 10px; } }

.contribution {
  box-sizing: border-box;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 45px; }
  .contribution:after {
    content: " ";
    display: block;
    clear: both; }
  .contribution__image {
    height: 150px;
    overflow: hidden;
    width: 270px; }
    .contribution__image img {
      height: auto;
      padding: 0 40px 0 0;
      width: 270px; }
  .contribution__content {
    box-sizing: border-box;
    width: 75%;
    float: right; }
  .contribution__tag {
    font-size: 18px;
    font-size: 1.8rem;
    display: block;
    margin: 0 0 -23px 0;
    text-transform: uppercase; }
  .contribution__headline {
    font-size: 30px;
    font-size: 3rem;
    font-family: HelveticaNeueW01-55Roma, Helvetica Neue, Helvetica, Lucida Grande, Arial, sans-serif; }
  .contribution__page-headline {
    font-size: 14px;
    font-size: 1.4rem;
    font-family: HelveticaNeueW01-45Ligh, Helvetica Neue, Helvetica, Lucida Grande, Arial, sans-serif;
    color: #999;
    letter-spacing: 1px;
    margin: 10px 0 20px 0;
    text-transform: uppercase; }

.error__scrape {
  background: #ccc;
  padding: 10px; }

.error__container {
  box-sizing: border-box;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin: 0 auto;
  width: 980px; }
  .error__container:after {
    content: " ";
    display: block;
    clear: both; }
  .error__container p {
    font-size: 18px;
    font-size: 1.8rem;
    color: #333;
    float: left; }
    .error__container p.dismiss {
      font-size: 12px;
      font-size: 1.2rem;
      float: right;
      line-height: 24px;
      text-transform: uppercase; }
      .error__container p.dismiss a {
        text-decoration: underline; }

.profile-block {
  background: #fff;
  border-radius: 5px;
  padding: 15px;
  text-align: center; }
  .profile-block__avatar {
    border-radius: 50%;
    height: 90px;
    width: 90px; }
  .profile-block__username {
    font-size: 14px;
    font-size: 1.4rem; }

.contributors__list {
  box-sizing: border-box;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  list-style-type: none;
  margin: 0 auto;
  padding: 0; }
  .contributors__list:after {
    content: " ";
    display: block;
    clear: both; }

.contributors__item {
  font-size: 14px;
  font-size: 1.4rem;
  display: inline-block;
  width: 144px; }

.contributors__avatar {
  border-radius: 40px;
  height: 80px;
  width: 80px; }

.newsroom-bar {
  font-size: 18px;
  font-size: 1.8rem;
  background: #fff;
  color: #999;
  margin: 0 auto;
  padding: 15px 17px;
  text-align: center;
  width: 100%; }
  @media (max-width: 640px) {
    .newsroom-bar {
      font-size: 15px;
      font-size: 1.5rem;
      padding: 10px 15px; } }
  .newsroom-bar a {
    color: #44a7b7; }

.message-bar {
  font-size: 18px;
  font-size: 1.8rem;
  background: #f8f8f8;
  color: #444;
  line-height: 1.8;
  margin: 0 auto;
  padding: 25px 0;
  position: fixed;
  top: 60px;
  width: 100%;
  z-index: 136; }
  .message-bar__content {
    margin: 0 auto;
    max-width: 980px; }
  .message-bar__dismiss {
    font-size: 18px;
    font-size: 1.8rem;
    color: #ccc;
    line-height: 1.8;
    position: absolute;
    right: 15px;
    top: 25px; }
    @media (max-width: 479px) {
      .message-bar__dismiss {
        top: 2px; } }
  .message-bar__messages {
    padding: 0 75px; }
    @media (max-width: 479px) {
      .message-bar__messages {
        padding: 0 10px; } }
  .message-bar__links {
    font-style: italic;
    text-decoration: underline; }

.hover {
  bottom: -55px;
  position: absolute;
  left: -54px; }
  .hover__title {
    font-size: 14px;
    font-size: 1.4rem;
    background: #4099A8;
    border-radius: 4px;
    color: #fff;
    margin: 0;
    padding: 10px 0;
    width: 140px;
    text-align: center;
    text-transform: none !important; }
  .hover__caret {
    font-size: 35px;
    font-size: 3.5rem;
    color: #4099A8;
    display: block;
    line-height: 0.3;
    padding: 0;
    text-align: center; }
  .hover--invert {
    top: -228px;
    left: -58px;
    position: absolute;
    width: 155px;
    z-index: 300; }
    .hover--invert__caret {
      font-size: 35px;
      font-size: 3.5rem;
      color: #fff;
      display: block;
      line-height: 0.3;
      padding: 0;
      text-align: center; }

.share-links {
  position: relative; }
  .share-links__list {
    list-style-type: none;
    padding: 0;
    position: relative; }
    @media (max-width: 768px) {
      .share-links__list {
        float: right;
        text-align: right; } }
  .share-links__item {
    font-size: 26px;
    font-size: 2.6rem;
    color: #333;
    float: left;
    padding-right: 5px; }
    .share-links__item.facebook {
      color: #3B5998; }
    .share-links__item.twitter {
      color: #019FE9; }
    .share-links__item.reddit {
      color: #44a7b7; }
    .share-links__item.link {
      color: #44a7b7; }
    @media (max-width: 480px) {
      .share-links__item {
        font-size: 20px;
        font-size: 2rem; } }

.navigation-main {
  position: absolute;
  right: 15px; }

.navigation__avatar {
  position: relative;
  top: 2px; }
  .navigation__avatar img {
    border-radius: 15px;
    height: 30px;
    width: 30px; }

.navigation__item {
  display: inline-block;
  margin: 0;
  padding: 0;
  position: relative;
  vertical-align: middle; }
  .navigation__item a {
    display: block; }
  .navigation__item:last-of-type {
    margin: 0 0 0 10px;
    padding: 0; }

.navigation__list {
  list-style-type: none;
  margin: 0;
  padding: 10px 0; }

.navigation__plus {
  font-size: 26px;
  font-size: 2.6rem; }

.navigation__list-ul {
  font-size: 26px;
  font-size: 2.6rem; }

.navigation__times {
  font-size: 30px;
  font-size: 3rem; }

body li.editor,
body li.add-new,
body li.reader {
  display: none; }

body.reader .sidebar__icon {
  display: inline-block; }

body.reader li.reader {
  display: inline-block; }

body.editor .sidebar__icon {
  display: none; }

body.editor li.editor {
  display: inline-block; }

body.add-new .sidebar__icon {
  display: none; }

body.add-new li.add-new {
  display: inline-block; }

body.user-profile .sidebar__icon {
  display: none; }

body.user-profile li.reader {
  display: inline-block; }

.dropdown {
  bottom: -55px;
  position: absolute;
  right: -10px; }
  .dropdown__list {
    background: #fff;
    border-radius: 4px;
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 140px; }
  .dropdown__item {
    font-size: 14px;
    font-size: 1.4rem;
    text-align: center; }
    .dropdown__item a {
      color: #44a7b7;
      display: block;
      padding: 10px 0; }
  .dropdown__caret {
    font-size: 35px;
    font-size: 3.5rem;
    color: #fff;
    display: block;
    line-height: 0.3;
    padding: 0 15px 0 0;
    text-align: right; }

.char-count--title {
  font-size: 16px;
  font-size: 1.6rem;
  color: #fff;
  text-align: right;
  width: 50%; }
  @media (max-width: 480px) {
    .char-count--title {
      color: #444; } }

.char-count--headline {
  font-size: 16px;
  font-size: 1.6rem;
  color: #fff;
  text-align: right;
  width: 100%; }
  @media (max-width: 480px) {
    .char-count--headline {
      color: #444; } }

.char-count--summary {
  font-size: 16px;
  font-size: 1.6rem;
  color: #444;
  text-align: right;
  width: 100%; }

.masthead {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 135; }
  .masthead__container {
    box-sizing: border-box;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
    font-size: 1.5rem;
    height: 60px;
    max-width: 1600px;
    z-index: 106; }
    .masthead__container:after {
      content: " ";
      display: block;
      clear: both; }
  .masthead__wrapper {
    background: #44a7b7;
    width: 100%; }

@media (max-width: 980px) {
  .reader .logo {
    margin-left: 50px; } }

@media (max-width: 640px) {
  .reader .logo {
    margin-left: 50px; } }

.logo {
  box-sizing: border-box;
  width: 100%;
  float: left;
  height: 60px;
  padding: 16px 0;
  text-align: center;
  vertical-align: middle; }
  @media (max-width: 980px) {
    .logo {
      padding: 16px 15px;
      text-align: left; } }
  .logo a {
    background: transparent url(../images/logo-inline.svg) 50% 3px no-repeat;
    background-size: contain;
    display: inline-block;
    max-height: 60px;
    min-height: 100%;
    vertical-align: middle;
    width: 290px; }
    @media (max-width: 1160px) {
      .logo a {
        background: transparent url(../images/logo-no-tagline.svg) 50% 0 no-repeat;
        background-size: contain;
        display: inline-block;
        max-height: 60px;
        min-height: 100%;
        vertical-align: middle;
        width: 290px; } }
    @media (max-width: 980px) {
      .logo a {
        background: transparent url(../images/logo-no-tagline.svg) 0px 0 no-repeat;
        background-size: contain;
        display: inline-block;
        max-height: 60px;
        min-height: 100%;
        vertical-align: middle;
        width: 290px; } }
    @media (max-width: 640px) {
      .logo a {
        background: transparent url(../images/logo-icon.svg) 0px 0 no-repeat;
        background-size: contain;
        display: inline-block;
        max-height: 60px;
        min-height: 100%;
        vertical-align: middle;
        width: 290px; } }

/**
 * The publish changes button is too large
 * so we need to move the logo over to
 * the right when we go into edit or
 * add-new mode so that nothing
 * overlaps
 */
.editor .logo, .add-new .logo {
  padding: 16px 15px;
  text-align: left; }
  .editor .logo a, .add-new .logo a {
    background-size: contain;
    display: inline-block;
    max-height: 60px;
    min-height: 100%;
    vertical-align: middle;
    width: 290px; }

.mediabox {
  box-sizing: border-box;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto; }
  .mediabox:after {
    content: " ";
    display: block;
    clear: both; }
  .mediabox__header {
    box-sizing: border-box;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    font-size: 1.6rem;
    box-sizing: border-box;
    width: 100%;
    float: left;
    margin-bottom: 2em; }
    .mediabox__header:after {
      content: " ";
      display: block;
      clear: both; }
  .mediabox__avatar {
    box-sizing: border-box;
    width: 12.5%;
    float: left;
    height: 48px;
    width: 48px; }
    .mediabox__avatar img {
      border-radius: 50%; }
  .mediabox__userinfo {
    box-sizing: border-box;
    width: 50%;
    float: left;
    padding: 13px 0 0 13px; }
  .mediabox__username {
    padding: 0 10px 0 0;
    display: inline-block; }
  .mediabox__provider {
    display: inline-block; }
  .mediabox__timespan {
    box-sizing: border-box;
    width: 25%;
    float: right;
    color: #abb4b5;
    padding: 13px 0 0 0;
    text-align: right; }
  .mediabox__video-container {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    float: left;
    width: 100%; }
  .mediabox__player {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%; }
  .mediabox__content {
    box-sizing: border-box;
    width: 100%;
    float: left;
    margin: 15px 0; }
  .mediabox__title {
    font-size: 24px;
    font-size: 2.4rem;
    margin: 0 0 20px 0; }
  .mediabox__see-more {
    font-size: 14px;
    font-size: 1.4rem;
    color: #A3A3A3;
    margin: 0 0 10px 0; }
  .mediabox__description {
    font-size: 18px;
    font-size: 1.8rem;
    margin: 10px 0; }
  .mediabox--preview {
    box-sizing: border-box;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto; }
    .mediabox--preview:after {
      content: " ";
      display: block;
      clear: both; }
    .mediabox--preview__header {
      box-sizing: border-box;
      max-width: 100%;
      margin-left: auto;
      margin-right: auto;
      font-size: 16px;
      font-size: 1.6rem;
      box-sizing: border-box;
      width: 100%;
      float: left;
      margin-bottom: 2em; }
      .mediabox--preview__header:after {
        content: " ";
        display: block;
        clear: both; }
    .mediabox--preview__avatar {
      box-sizing: border-box;
      width: 12.5%;
      float: left;
      height: 48px;
      width: 48px; }
      .mediabox--preview__avatar img {
        border-radius: 50%; }
    .mediabox--preview__userinfo {
      box-sizing: border-box;
      width: 50%;
      float: left;
      padding: 13px 0 0 13px; }
    .mediabox--preview__username {
      padding: 0 10px 0 0;
      display: inline-block; }
    .mediabox--preview__provider {
      display: inline-block; }
    .mediabox--preview__timespan {
      box-sizing: border-box;
      width: 25%;
      float: right;
      color: #abb4b5;
      padding: 13px 0 0 0;
      text-align: right; }
    .mediabox--preview__video-container {
      height: 0;
      overflow: hidden;
      padding-bottom: 56.25%;
      position: relative;
      float: left;
      width: 100%; }
    .mediabox--preview__player {
      height: 100%;
      left: 0;
      position: absolute;
      top: 0;
      width: 100%; }
    .mediabox--preview__content {
      box-sizing: border-box;
      width: 100%;
      float: left;
      margin: 15px 0; }
    .mediabox--preview__title {
      font-size: 24px;
      font-size: 2.4rem;
      margin: 0 0 20px 0; }
    .mediabox--preview__see-more {
      font-size: 14px;
      font-size: 1.4rem;
      color: #A3A3A3;
      margin: 0 0 10px 0; }
    .mediabox--preview__description {
      font-size: 18px;
      font-size: 1.8rem;
      margin: 10px 0; }

.preview-box {
  box-sizing: border-box;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border-top: 3px solid #ddd;
  margin-bottom: 1em;
  margin: -36px auto 30px auto;
  max-width: 980px; }
  .preview-box:after {
    content: " ";
    display: block;
    clear: both; }
  .preview-box__profile {
    padding: 20px; }
  .preview-box__image {
    overflow: hidden;
    position: relative;
    height: 536px;
    margin: 0 0 0 20px;
    width: 96%; }
  .preview-box__buttons {
    background: #fff;
    border-bottom: 3px solid #ddd;
    border-top: 3px solid #ddd;
    max-width: 980px;
    padding: 15px 20px 18px; }
    .preview-box__buttons:last-of-type {
      border: none; }
  .preview-box__gallery {
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: relative; }
  .preview-box__gallery-item {
    display: block;
    position: relative;
    float: left;
    vertical-align: middle; }
  .preview-box__content {
    padding: 20px 20px 0 20px; }
    .preview-box__content-title {
      font-size: 16px;
      font-size: 1.6rem;
      padding: 0 20px;
      margin: 0; }
    .preview-box__content-url {
      font-size: 12px;
      font-size: 1.2rem; }
      .preview-box__content-url a {
        color: #999; }
    .preview-box__content-description {
      font-size: 20px;
      font-size: 2rem;
      margin: 10px 0; }
  .preview-box__gallery-metadata {
    font-size: 24px;
    font-size: 2.4rem;
    background: rgba(0, 0, 0, 0.8);
    bottom: 0;
    color: #fff;
    padding: 0 20px;
    position: absolute;
    text-align: center;
    width: 100%; }

.sidebar {
  background: #4099A8;
  height: 100%;
  margin-left: -250px;
  margin-top: -117px;
  position: fixed;
  overflow-y: scroll;
  width: 250px;
  z-index: 141; }
  .sidebar__background {
    background: transparent;
    bottom: 0;
    display: none;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 135; }
  .sidebar__backdrop {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    height: 145px;
    width: 100%;
    z-index: 101; }
  .sidebar__icon {
    box-sizing: border-box;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    position: absolute;
    padding-left: 15px; }
    .sidebar__icon:after {
      content: " ";
      display: block;
      clear: both; }
    .sidebar__icon--inside {
      box-sizing: border-box;
      max-width: 100%;
      margin-left: auto;
      margin-right: auto;
      color: #fff;
      position: absolute;
      right: 15px; }
      .sidebar__icon--inside:after {
        content: " ";
        display: block;
        clear: both; }
  .sidebar__hamburger {
    font-size: 23px;
    font-size: 2.3rem;
    padding-top: 17px;
    float: left;
    display: block; }
  .sidebar__content {
    background: transparent url(../images/default-feature.png) 0 0 no-repeat; }
  .sidebar__caret {
    font-size: 15px;
    font-size: 1.5rem;
    padding-top: 22px;
    display: block;
    float: left;
    padding-left: 3px; }
    .sidebar__caret--swap {
      font-size: 15px;
      font-size: 1.5rem;
      padding-top: 22px;
      display: block;
      float: left;
      padding-right: 3px; }
  .sidebar__story-list {
    list-style-type: none;
    margin: 60px 0 0 0;
    padding: 0; }
  .sidebar__story-item {
    position: relative;
    cursor: pointer; }
    .sidebar__story-item.currently-active .sidebar__textblock {
      z-index: 116; }
    .sidebar__story-item:hover .sidebar__textblock {
      z-index: 116; }
  .sidebar__image-container {
    overflow: hidden;
    height: 145px;
    position: relative; }
  .sidebar__textblock {
    position: absolute;
    width: 100%; }
  .sidebar__tag-wrapper {
    margin: auto 10px; }
  .sidebar__story-tag {
    font-family: HelveticaNeueW01-65Medi, Helvetica Neue, Helvetica, Lucida Grande, Arial, sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    background: #4099A8;
    border-radius: 2px;
    color: #fff;
    display: inline-block;
    margin: 10px auto;
    padding: 5px 15px;
    text-transform: uppercase; }
  .sidebar__headline {
    font-family: HelveticaNeueW01-67MdCn_692710, Helvetica Neue, Helvetica, Lucida Grande, Arial, sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    color: #fff;
    letter-spacing: 1px;
    margin: 0 10px; }

.profile {
  box-sizing: border-box;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin: 40px 0; }
  .profile:after {
    content: " ";
    display: block;
    clear: both; }
  .profile__image {
    box-sizing: border-box;
    width: 50%;
    float: left;
    padding: 0 20px 0 0;
    text-align: right; }
    @media (max-width: 639px) {
      .profile__image {
        box-sizing: border-box;
        width: 100%;
        float: left;
        padding: 0;
        text-align: center; } }
    .profile__image img {
      border-radius: 50%;
      max-width: 115px; }
  .profile__info {
    box-sizing: border-box;
    width: 50%;
    float: right;
    padding: 0 0 0 20px; }
    @media (max-width: 639px) {
      .profile__info {
        padding: 0;
        text-align: center; } }
    .profile__info h2 {
      font-family: HelveticaNeueW01-55Roma, Helvetica Neue, Helvetica, Lucida Grande, Arial, sans-serif;
      font-size: 24px;
      font-size: 2.4rem;
      color: #000; }
      @media (max-width: 639px) {
        .profile__info h2 {
          font-size: 18px;
          font-size: 1.8rem; } }
      .profile__info h2 a {
        color: inherit; }
        @media (max-width: 639px) {
          .profile__info h2 a {
            font-size: 16px;
            font-size: 1.6rem; } }
    @media (max-width: 639px) {
      .profile__info {
        box-sizing: border-box;
        width: 100%;
        float: left;
        text-align: center; } }
  .profile__stats {
    list-style-type: none;
    padding: 0; }
  .profile__stats-item {
    font-family: HelveticaNeueW01-45Ligh, Helvetica Neue, Helvetica, Lucida Grande, Arial, sans-serif;
    font-size: 15px;
    font-size: 1.5rem;
    display: inline-block;
    margin-right: 15px;
    text-transform: uppercase; }
    .profile__stats-item:last-of-type {
      margin-right: 0; }
    @media (max-width: 479px) {
      .profile__stats-item {
        display: block;
        text-align: center;
        margin: 0;
        padding: 0 0 10px 0; } }
    .profile__stats-item--count {
      font-family: HelveticaNeueW01-65Medi, Helvetica Neue, Helvetica, Lucida Grande, Arial, sans-serif;
      font-size: 15px;
      font-size: 1.5rem;
      background: #fff;
      border-radius: 4px;
      color: get-stack(boston-blue);
      margin: 3px 0;
      padding: 3px 10px;
      text-align: center; }
      @media (max-width: 479px) {
        .profile__stats-item--count {
          margin: 10px auto;
          width: 30%; } }

.order__list {
  font-size: 18px;
  font-size: 1.8rem;
  list-style-type: none;
  margin: 0 0 80px 0;
  padding: 0; }

.order__item {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: -webkit-grab;
  cursor: grab;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.order__tag {
  font-family: HelveticaNeueW01-55Roma, Helvetica Neue, Helvetica, Lucida Grande, Arial, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  background: #4aa7b7;
  border: none;
  border-radius: 4px;
  color: #fff !important;
  display: inline-block;
  left: 19px;
  margin: 10px;
  padding: 8px 24px;
  text-transform: uppercase;
  width: auto; }

.order__handle {
  font-size: 23px;
  font-size: 2.3rem;
  color: #838383;
  display: block; }

.sortable-ghost {
  opacity: 0.4; }

.feature {
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 50%;
  width: 980px;
  z-index: 130; }
  @media (max-width: 980px) {
    .feature {
      padding: 0 30px;
      top: 30%;
      width: 100%; } }
  @media (max-width: 640px) {
    .feature {
      top: 20%;
      padding: 0 15px; } }
  @media (max-width: 480px) {
    .feature {
      position: relative; } }
  .feature__gradient {
    background: rgba(0, 0, 0, 0.2);
    bottom: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 110; }
  .feature__image-container {
    align-items: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    max-height: 700px;
    overflow: hidden;
    position: relative;
    z-index: 110; }
  .feature__tag-wrapper {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .feature__image {
    position: relative; }
  .feature__tag {
    font-family: HelveticaNeueW01-65Medi, Helvetica Neue, Helvetica, Lucida Grande, Arial, sans-serif;
    font-size: 24px;
    font-size: 2.4rem;
    background: #4099A8;
    border-radius: 2px;
    color: #fff;
    display: inline-block;
    margin: 0 0 10px 0;
    padding: 10px 30px;
    text-transform: uppercase;
    transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1); }
    @media (max-width: 980px) {
      .feature__tag {
        font-size: 20px;
        font-size: 2rem; } }
    @media (max-width: 640px) {
      .feature__tag {
        font-size: 18px;
        font-size: 1.8rem; } }
    @media (max-width: 480px) {
      .feature__tag {
        position: absolute;
        top: -80px; } }
    .feature__tag:hover {
      background: #327783; }
  .feature__text {
    font-family: HelveticaNeueW01-67MdCn_692710, Helvetica Neue, Helvetica, Lucida Grande, Arial, sans-serif;
    font-size: 60px;
    font-size: 6rem;
    color: #fff;
    letter-spacing: 1px;
    margin: 0; }
    @media (max-width: 980px) {
      .feature__text {
        font-size: 50px;
        font-size: 5rem;
        line-height: 1.1; } }
    @media (max-width: 640px) {
      .feature__text {
        font-size: 40px;
        font-size: 4rem;
        line-height: 1;
        letter-spacing: 0px; } }
    @media (max-width: 480px) {
      .feature__text {
        font-size: 30px;
        font-size: 3rem;
        color: #444;
        line-height: 1.2;
        padding: 15px 0; } }
  .feature--edit {
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 50%;
    width: 980px;
    z-index: 130;
    bottom: 20px;
    top: 20px; }
    @media (max-width: 980px) {
      .feature--edit {
        padding: 0 30px;
        top: 30%;
        width: 100%; } }
    @media (max-width: 640px) {
      .feature--edit {
        top: 20%;
        padding: 0 15px; } }
    @media (max-width: 480px) {
      .feature--edit {
        position: relative; } }
    @media (max-width: 980px) {
      .feature--edit {
        margin-right: 15px;
        top: 20px; } }
    @media (max-width: 640px) {
      .feature--edit {
        top: 20px; } }
    @media (max-width: 480px) {
      .feature--edit {
        margin: 0;
        top: 0; } }
    .feature--edit__hide-story {
      float: right; }
    .feature--edit__image-edit-container {
      height: 40px;
      margin: 20px 0px 20px 0px; }
    .feature--edit__image-edit {
      font-size: 22px;
      font-size: 2.2rem;
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid #fff;
      color: #fff;
      float: right;
      height: 40px;
      margin: 0 auto;
      padding: 0px 0px 0px 10px;
      width: 93%; }
      @media (max-width: 480px) {
        .feature--edit__image-edit {
          border: 1px solid #444;
          color: #444;
          display: block;
          float: left;
          padding: 0;
          margin: 0 0 15px 0;
          width: 100%; } }
    .feature--edit__close-image-edit {
      color: #fff;
      position: absolute;
      right: 8px;
      top: 30px; }
      @media (max-width: 480px) {
        .feature--edit__close-image-edit {
          color: #444;
          float: left;
          top: 5px;
          right: 15px; } }
    .feature--edit__photo-icon {
      font-size: 32px;
      font-size: 3.2rem;
      color: #fff;
      padding: 5px 0px 0px 10px;
      width: 7%; }
      @media (max-width: 480px) {
        .feature--edit__photo-icon {
          color: #444;
          display: block;
          padding: 0 0 10px 0; } }
    .feature--edit__tag-container {
      position: absolute;
      top: 50%;
      width: 100%; }
      @media (max-width: 980px) {
        .feature--edit__tag-container {
          top: 30%;
          width: 93%; } }
      @media (max-width: 480px) {
        .feature--edit__tag-container {
          position: initial;
          width: 100%; } }
    .feature--edit__tag--edit {
      font-family: HelveticaNeueW01-65Medi, Helvetica Neue, Helvetica, Lucida Grande, Arial, sans-serif;
      font-size: 24px;
      font-size: 2.4rem;
      background: #4099A8;
      border-radius: 2px;
      color: #fff;
      display: inline-block;
      margin: 0 0 10px 0;
      padding: 10px 30px;
      text-transform: uppercase;
      background: rgba(64, 153, 168, 0.2);
      border: 1px solid rgba(64, 153, 168, 0.8);
      border-radius: 0;
      left: 0;
      max-width: 50%;
      padding: 10px;
      right: 0;
      width: 50%; }
      @media (max-width: 980px) {
        .feature--edit__tag--edit {
          font-size: 20px;
          font-size: 2rem; } }
      @media (max-width: 640px) {
        .feature--edit__tag--edit {
          font-size: 18px;
          font-size: 1.8rem; } }
      @media (max-width: 480px) {
        .feature--edit__tag--edit {
          position: absolute;
          top: -80px; } }
      @media (max-width: 480px) {
        .feature--edit__tag--edit {
          position: initial; } }
    .feature--edit__text--edit {
      font-family: HelveticaNeueW01-67MdCn_692710, Helvetica Neue, Helvetica, Lucida Grande, Arial, sans-serif;
      font-size: 60px;
      font-size: 6rem;
      color: #fff;
      letter-spacing: 1px;
      margin: 0;
      color: #fff;
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid #fff;
      height: 176px;
      left: 0;
      margin: 0 auto;
      padding: 10px;
      right: 0;
      width: 100%; }
      @media (max-width: 980px) {
        .feature--edit__text--edit {
          font-size: 50px;
          font-size: 5rem;
          line-height: 1.1; } }
      @media (max-width: 640px) {
        .feature--edit__text--edit {
          font-size: 40px;
          font-size: 4rem;
          line-height: 1;
          letter-spacing: 0px; } }
      @media (max-width: 480px) {
        .feature--edit__text--edit {
          font-size: 30px;
          font-size: 3rem;
          color: #444;
          line-height: 1.2;
          padding: 15px 0; } }
      @media (max-width: 640px) {
        .feature--edit__text--edit {
          max-height: 110px;
          padding: 5px; } }
      @media (max-width: 480px) {
        .feature--edit__text--edit {
          border: 1px solid #444;
          border-radius: 4px; } }

.digest__container {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: #459FAB;
  color: #fff;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 980px;
  padding: 25px 30px; }
  @media (max-width: 980px) {
    .digest__container {
      padding: 25px 5px; } }
  @media (max-width: 480px) {
    .digest__container {
      padding: 25px 30px; } }

.digest__form {
  -webkit-flex-grow: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2; }
  @media (max-width: 980px) {
    .digest__form {
      text-align: center; } }

.digest__text {
  font-size: 16px;
  font-size: 1.6rem;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  line-height: 1.6;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1; }
  @media (max-width: 980px) {
    .digest__text {
      padding-bottom: 10px;
      text-align: center; } }

.digest__input-email {
  font-size: 16px;
  font-size: 1.6rem;
  background: #4CC0D2;
  border: 0;
  color: #fff;
  line-height: 1.6;
  margin: 0 30px 0 0;
  padding: 5px;
  width: 340px; }
  .digest__input-email::-webkit-input-placeholder {
    color: #fff; }
  .digest__input-email::-moz-placeholder {
    color: #fff; }
  .digest__input-email:-ms-input-placeholder {
    color: #fff; }
  .digest__input-email:-moz-placeholder {
    color: #fff; }
  @media (max-width: 980px) {
    .digest__input-email {
      margin: 0 15px 0 0;
      width: 300px; } }
  @media (max-width: 480px) {
    .digest__input-email {
      margin: 0 0 10px 0;
      width: 100%; } }

.digest__input-button-join {
  font-family: HelveticaNeueW01-55Roma, Helvetica Neue, Helvetica, Lucida Grande, Arial, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  background: #4CC0D2;
  border: 0;
  border-radius: 6px;
  color: #fff;
  line-height: 1.6;
  margin: 0 10px 0 0;
  padding: 5px 20px;
  text-transform: uppercase; }
  @media (max-width: 480px) {
    .digest__input-button-join {
      float: left; } }

.digest__input-button-dismiss {
  font-size: 16px;
  font-size: 1.6rem;
  background: #4CC0D2;
  border: 0;
  border-radius: 50%;
  color: #459FAB;
  display: inline-block;
  line-height: 1.6;
  margin: 0;
  padding: 5px 10px;
  text-transform: uppercase; }
  @media (max-width: 480px) {
    .digest__input-button-dismiss {
      float: right; } }

.live .site__footer, .user-profile .site__footer {
  display: none; }

.site__footer {
  margin: 60px 0; }

.footer__wrapper {
  margin: 0 auto;
  max-width: 1600px;
  text-align: center; }

.footer__message {
  font-family: HelveticaNeueW01-45Ligh, Helvetica Neue, Helvetica, Lucida Grande, Arial, sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
  background: #459FAB;
  color: #fff;
  padding: 10px 0;
  text-align: center; }

.byline {
  background-color: #fff;
  padding: 15px 0; }
  .byline--live {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 0 15px 10px 15px; }
  @media (max-width: 980px) {
    .byline {
      padding: 15px 10px; } }
  @media (max-width: 480px) {
    .byline {
      margin: 0 -15px 0 -15px; } }
  .byline__content-container {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: 0 auto;
    max-width: 980px; }
    @media (max-width: 980px) {
      .byline__content-container {
        -webkit-align-items: baseline;
        -ms-flex-align: baseline;
        align-items: baseline; } }
  .byline__contributors-container {
    box-sizing: border-box;
    width: 50%;
    float: left;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start; }
    @media (max-width: 768px) {
      .byline__contributors-container {
        display: block; } }
  .byline__share-container {
    box-sizing: border-box;
    width: 50%;
    float: right;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end; }
    @media (max-width: 768px) {
      .byline__share-container {
        display: block;
        text-align: right; } }
  .byline__text {
    font-size: 18px;
    font-size: 1.8rem;
    color: #999;
    line-height: 1.5;
    padding-right: 10px; }
    @media (max-width: 980px) {
      .byline__text {
        font-size: 15px;
        font-size: 1.5rem;
        padding-left: 20px; } }
    @media (max-width: 640px) {
      .byline__text {
        font-size: 15px;
        font-size: 1.5rem;
        padding-left: 5px; } }
  .byline__list {
    box-sizing: border-box;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    margin: 0;
    list-style-type: none; }
    .byline__list:after {
      content: " ";
      display: block;
      clear: both; }
  .byline__item {
    display: block;
    float: left;
    padding: 0 3px;
    position: relative; }
  .byline__avatar {
    border-radius: 50%;
    height: 32px;
    width: 32px; }
    @media (max-width: 980px) {
      .byline__avatar {
        height: 28px;
        width: 28px; } }

.flexme {
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important; }

.modal {
  background: #f8f8f8;
  border-radius: 4px;
  position: fixed;
  display: none;
  width: 40%;
  z-index: 200;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap; }
  @media (max-width: 979px) {
    .modal {
      width: 48%; } }
  @media (max-width: 767px) {
    .modal {
      width: 100%;
      height: 100%; } }
  @media (max-width: 639px) {
    .modal {
      top: 0px;
      width: 100%; } }
  .modal__background {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    display: none;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 190; }
  .modal__masthead {
    padding: 20px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0; }
    .modal__masthead h2 {
      font-family: HelveticaNeueW01-55Roma, Helvetica Neue, Helvetica, Lucida Grande, Arial, sans-serif;
      font-size: 32px;
      font-size: 3.2rem;
      color: #838383;
      margin: 0;
      padding: 0; }
    .modal__masthead h3 {
      font-family: HelveticaNeueW01-55Roma, Helvetica Neue, Helvetica, Lucida Grande, Arial, sans-serif;
      font-size: 14px;
      font-size: 1.4rem;
      color: #b5b5b5;
      margin: 0;
      padding: 0; }
  .modal__closer {
    font-size: 25px;
    font-size: 2.5rem;
    color: #ccc;
    position: absolute;
    top: 0;
    right: 9px; }
  .modal__content {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-height: 480px;
    overflow: auto;
    padding: 0 20px 10px 20px; }
    @media (max-width: 767px) {
      .modal__content {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none; } }
    .modal__content--large {
      font-size: 18px;
      font-size: 1.8rem;
      -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
      flex-grow: 1;
      max-height: 480px;
      overflow: auto;
      padding: 0 20px 10px 20px; }
      @media (max-width: 767px) {
        .modal__content--large {
          -webkit-touch-callout: none;
          -webkit-user-select: none;
          -moz-user-select: none;
          -ms-user-select: none;
          user-select: none; } }
  .modal__footer {
    background: #f8f8f8;
    border-top: 1px solid #838383;
    padding: 20px;
    text-align: right;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0; }
    @media (max-width: 767px) {
      .modal__footer {
        text-align: center; } }
    .modal__footer--no-border {
      background: #f8f8f8;
      padding: 20px;
      text-align: right;
      -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
      flex-shrink: 0; }
      @media (max-width: 767px) {
        .modal__footer--no-border {
          text-align: center; } }
  .modal--login__content {
    padding: 20px;
    text-align: center; }

.story__header {
  box-sizing: border-box;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 980px;
  margin: 0 auto; }
  .story__header:after {
    content: " ";
    display: block;
    clear: both; }

.story__list {
  list-style-type: none;
  margin: 0 0 8em 0;
  padding: 0; }

.story__item {
  background: #fff;
  border-radius: 4px;
  padding: 20px 30px;
  position: relative;
  margin: 20px auto 30px;
  max-width: 980px; }
  @media (max-width: 640px) {
    .story__item {
      padding: 10px 15px; } }
  .story__item--feature {
    position: relative; }
  .story__item--preview {
    background: rgba(68, 167, 183, 0.3);
    padding: 20px 0; }
    .story__item--preview__item {
      background: #fff;
      border-radius: 4px;
      padding: 20px 30px;
      position: relative;
      margin: 20px auto 30px;
      max-width: 980px; }

.story__headline {
  font-size: 30px;
  font-size: 3rem;
  margin: 20px auto 10px;
  max-width: 980px; }

.story__subheadline {
  font-size: 30px;
  font-size: 3rem;
  margin: 1em auto 0 auto;
  width: 980px; }
  @media (max-width: 980px) {
    .story__subheadline {
      font-size: 22px;
      font-size: 2.2rem;
      margin: 1em 0 0 30px; } }
  @media (max-width: 640px) {
    .story__subheadline {
      margin: 1em 0 0 0;
      padding: 0 15px; } }

.story__summary {
  background: #fff;
  border-radius: 4px;
  padding: 20px 30px;
  position: relative;
  margin: 20px auto 30px;
  max-width: 980px;
  font-size: 20px;
  font-size: 2rem;
  min-height: 150px; }
  @media (max-width: 640px) {
    .story__summary {
      padding: 10px 15px; } }

.story__new {
  background: #fff;
  border-radius: 4px;
  padding: 20px 30px;
  position: relative;
  margin: 20px auto 30px;
  max-width: 980px; }

.story__input {
  font-size: 20px;
  font-size: 2rem;
  border: none;
  height: 50px;
  margin-bottom: 1em;
  width: 100%; }

.story__hide-button {
  font-size: 30px;
  font-size: 3rem;
  display: inline-block;
  position: absolute;
  right: -50px;
  top: -5px; }
  @media (max-width: 1024px) {
    .story__hide-button {
      right: 3px;
      top: -5px; } }

.story__image-container {
  position: relative; }

.story__image--edit {
  position: absolute;
  top: 38px;
  width: 99%; }

.label {
  font-size: 16px;
  font-size: 1.6rem; }
  .label--full {
    font-size: 16px;
    font-size: 1.6rem;
    display: block;
    margin: 10px 0; }
  .label--inline {
    font-size: 16px;
    font-size: 1.6rem;
    display: inline-block; }

.button {
  font-family: HelveticaNeueW01-55Roma, Helvetica Neue, Helvetica, Lucida Grande, Arial, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  background: #4099A8;
  border: none;
  border-radius: 4px;
  color: #fff !important;
  display: inline-block;
  margin: 0;
  padding: 10px 24px;
  transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
  text-transform: uppercase;
  width: auto; }
  @media (max-width: 767px) {
    .button {
      padding: 10px 15px; } }
  @media (max-width: 640px) {
    .button {
      padding: 10px 6px; } }
  .button:hover {
    background: #327783; }
  .button__standout {
    font-size: 22px;
    font-size: 2.2rem;
    display: block;
    float: right;
    margin-top: -3px;
    margin-left: 12px; }
  .button--secondary {
    font-family: HelveticaNeueW01-55Roma, Helvetica Neue, Helvetica, Lucida Grande, Arial, sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    background: #ffb64e;
    border: none;
    border-radius: 4px;
    color: #fff !important;
    display: inline-block;
    margin: 0;
    padding: 10px 24px;
    transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
    text-transform: uppercase;
    width: auto;
    background: #ffb64e;
    color: #fff; }
    @media (max-width: 767px) {
      .button--secondary {
        padding: 10px 15px; } }
    @media (max-width: 640px) {
      .button--secondary {
        padding: 10px 6px; } }
    .button--secondary:hover {
      background: #ffa11b; }
  .button--publish-changes {
    font-family: HelveticaNeueW01-55Roma, Helvetica Neue, Helvetica, Lucida Grande, Arial, sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    background: #ffb64e;
    border: none;
    border-radius: 4px;
    color: #fff !important;
    display: inline-block;
    margin: 0;
    padding: 10px 24px;
    transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
    text-transform: uppercase;
    width: auto;
    background: #ffb64e;
    color: #fff;
    padding: 10px; }
    @media (max-width: 767px) {
      .button--publish-changes {
        padding: 10px 15px; } }
    @media (max-width: 640px) {
      .button--publish-changes {
        padding: 10px 6px; } }
    .button--publish-changes:hover {
      background: #ffa11b; }
    .button--publish-changes--iconic {
      font-size: 22px;
      font-size: 2.2rem;
      background: transparent;
      color: #ffb64e; }
  .button--edit {
    font-family: HelveticaNeueW01-55Roma, Helvetica Neue, Helvetica, Lucida Grande, Arial, sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    background: #ccc;
    border: none;
    border-radius: 4px;
    color: #fff !important;
    display: inline-block;
    margin: 0;
    padding: 10px 24px;
    transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
    text-transform: uppercase;
    width: auto;
    background: #ccc;
    color: #fff; }
    @media (max-width: 767px) {
      .button--edit {
        padding: 10px 15px; } }
    @media (max-width: 640px) {
      .button--edit {
        padding: 10px 6px; } }
    .button--edit:hover {
      background: #b3b3b3; }
  .button--large {
    font-family: HelveticaNeueW01-55Roma, Helvetica Neue, Helvetica, Lucida Grande, Arial, sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    background: #4aa7b7;
    border: none;
    border-radius: 4px;
    color: #fff !important;
    display: inline-block;
    margin: 0;
    padding: 10px 24px;
    transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
    text-transform: uppercase;
    width: auto;
    font-size: 20px;
    font-size: 2rem;
    padding: 12px 24px; }
    @media (max-width: 767px) {
      .button--large {
        padding: 10px 15px; } }
    @media (max-width: 640px) {
      .button--large {
        padding: 10px 6px; } }
    .button--large:hover {
      background: #3b8693; }
  .button--iconic {
    font-family: HelveticaNeueW01-55Roma, Helvetica Neue, Helvetica, Lucida Grande, Arial, sans-serif;
    font-size: 22px;
    font-size: 2.2rem;
    background: transparent;
    border: none;
    color: #fff !important;
    display: inline-block;
    margin: 0;
    padding: 5px;
    text-transform: uppercase;
    width: auto; }

.input__textarea {
  border: 1px solid #A3A3A3;
  border-radius: 4px;
  padding: 10px;
  min-height: 150px;
  width: 100%; }

.input__text {
  border: 1px solid #A3A3A3;
  border-radius: 4px;
  padding: 10px;
  font-size: 16px;
  font-size: 1.6rem; }
  .input__text--small {
    border: 1px solid #A3A3A3;
    border-radius: 4px;
    padding: 10px;
    font-size: 14px;
    font-size: 1.4rem;
    padding: 8px 20px; }
  .input__text--full {
    border: 1px solid #A3A3A3;
    border-radius: 4px;
    padding: 10px;
    font-size: 16px;
    font-size: 1.6rem;
    width: 100%; }

.input__number {
  border: 1px solid #A3A3A3;
  border-radius: 4px;
  padding: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  max-width: 75px; }

.input__link-content {
  border: 1px solid #A3A3A3;
  border-radius: 4px;
  padding: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  border: 2px solid #44a7b7;
  width: 100%; }

.input__add-new-item {
  border: 1px solid #A3A3A3;
  border-radius: 4px;
  padding: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 8px 8px 10px 8px;
  width: 100%; }

.input__add-new-item-error {
  border: 1px solid #A3A3A3;
  border-radius: 4px;
  padding: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 8px 8px 10px 8px;
  margin: 10px 0;
  min-height: 40px;
  width: 100%; }

/**
 * There's a cleaner way to do this for sure
 * so I'm going to come back to this at
 * some point in the near future but
 * not gonna worry about it today
 */
@media (min-width: 321px) {
  .view--to--tiny {
    display: block; } }

@media (max-width: 320px) {
  .view--to--tiny {
    display: none !important; } }

@media (min-width: 481px) {
  .view--to--small-tiny {
    display: block; } }

@media (max-width: 480px) {
  .view--to--small-tiny {
    display: none !important; } }

@media (min-width: 641px) {
  .view--to--small {
    display: block; } }

@media (max-width: 640px) {
  .view--to--small {
    display: none !important; } }

@media (min-width: 769px) {
  .view--to--medium-small {
    display: block; } }

@media (max-width: 768px) {
  .view--to--medium-small {
    display: none !important; } }

@media (min-width: 981px) {
  .view--to--medium {
    display: block; } }

@media (max-width: 980px) {
  .view--to--medium {
    display: none !important; } }

@media (min-width: 1025px) {
  .view--to--large {
    display: block; } }

@media (max-width: 1024px) {
  .view--to--large {
    display: none !important; } }

@media (min-width: 1161px) {
  .view--to--xlarge {
    display: block; } }

@media (max-width: 1160px) {
  .view--to--xlarge {
    display: none !important; } }

@media (min-width: 1281px) {
  .view--to--xxlarge {
    display: block; } }

@media (max-width: 1280px) {
  .view--to--xxlarge {
    display: none !important; } }

@media (min-width: 321px) {
  .view--from--tiny {
    display: none !important; } }

@media (max-width: 320px) {
  .view--from--tiny {
    display: block; } }

@media (min-width: 481px) {
  .view--from--small-tiny {
    display: none !important; } }

@media (max-width: 480px) {
  .view--from--small-tiny {
    display: block; } }

@media (min-width: 641px) {
  .view--from--small {
    display: none !important; } }

@media (max-width: 640px) {
  .view--from--small {
    display: block; } }

@media (min-width: 769px) {
  .view--from--medium-small {
    display: none !important; } }

@media (max-width: 768px) {
  .view--from--medium-small {
    display: block; } }

@media (min-width: 981px) {
  .view--from--medium {
    display: none !important; } }

@media (max-width: 980px) {
  .view--from--medium {
    display: block; } }

@media (min-width: 1025px) {
  .view--from--large {
    display: none !important; } }

@media (max-width: 1024px) {
  .view--from--large {
    display: block; } }

@media (min-width: 1161px) {
  .view--from--xlarge {
    display: none !important; } }

@media (max-width: 1160px) {
  .view--from--xlarge {
    display: block; } }

@media (min-width: 1281px) {
  .view--from--xxlarge {
    display: none !important; } }

@media (max-width: 1280px) {
  .view--from--xxlarge {
    display: block; } }

.live__title {
  float: left;
  text-transform: uppercase; }
  @media (max-width: 980px) {
    .live__title {
      padding: 0 0 0 20px; } }
  @media (max-width: 480px) {
    .live__title {
      display: block;
      text-align: center;
      width: 100%; } }

.live__stream-block {
  box-sizing: border-box;
  width: 61.25%;
  float: left;
  margin-left: 0.625%;
  margin-right: 0.625%; }
  @media (max-width: 640px) {
    .live__stream-block {
      box-sizing: border-box;
      width: 98.75%;
      float: left;
      margin-left: 0.625%;
      margin-right: 0.625%; } }

.live__slack-wrapper {
  height: 400px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  width: 350px; }

.live__slack-frame {
  height: 400px;
  left: 0;
  max-width: 350px;
  position: absolute;
  top: -100px; }

.live__video-stream {
  background: #fff;
  padding: 10px 15px; }
  .live__video-stream iframe {
    border: 0; }

.live__connect {
  box-sizing: border-box;
  width: 100%;
  float: left;
  background: #fff;
  height: 300px;
  padding: 33px 15px 0 15px;
  text-align: center; }
  @media (max-width: 640px) {
    .live__connect {
      display: none; } }

.live__video-title {
  font-size: 18px;
  font-size: 1.8rem;
  padding: 5px 0 0 0; }

.live__tweets {
  box-sizing: border-box;
  width: 36.25%;
  float: right;
  margin-left: 0.625%;
  margin-right: 0.625%;
  background: #fff;
  padding: 10px 15px;
  text-align: center; }
  @media (max-width: 640px) {
    .live__tweets {
      box-sizing: border-box;
      width: 98.75%;
      float: left;
      margin-left: 0.625%;
      margin-right: 0.625%;
      margin-top: 14px; } }

/*# sourceMappingURL=maps/main.css.map */
