/*------------------------------------*\
    STYLE.CSS
\*------------------------------------*/
/**
 *
 * sass --watch style.scss:style.min.css --style compressed
 *
 * Here we pull in some variables, include the inuit.css framework, then add our
 * project-specific components afterwards.
 */
/**
 * Setup
 */
/*------------------------------------*\
    VARS.SCSS
\*------------------------------------*/
/**
 * Any variables you find set in inuit.css’ `_vars.scss` that you do not wish to
 * keep, simply redefine here. This means that if inuit.css, for example, sets
 * your `$base-font-size` at 16px and you wish it to be 14px, simply redeclare
 * that variable in this file. inuit.css ignores its own variables in favour of
 * using your own, so you can completely modify how inuit.css works without ever
 * having to alter the framework itself.
 */
/*------------------------------------*\
    $OBJECTS-AND-ABSTRACTIONS
\*------------------------------------*/
/**
 * All of inuit.css’ objects and abstractions are initially turned off by
 * default. This means that you start any project with as little as possible,
 * and introducing objects and abstractions is as simple as switching the
 * following variables to `true`.
 */
/*------------------------------------*\
    $OVERRIDES
\*------------------------------------*/
/**
 * Place any variables that should override inuit.css’ defaults here.
 */
/*------------------------------------*\
    $CUSTOM
\*------------------------------------*/
/**
 * Place any of your own variables that sit on top of inuit.css here.
 */
/*------------------------------------*\
    INUIT.CSS
\*------------------------------------*/
/*!*
 *
 * inuitcss.com -- @inuitcss -- @csswizardry
 *
 */
/**
 * inuit.css acts as a base stylesheet which you should extend with your own
 * theme stylesheet.
 *
 * inuit.css aims to do the heavy lifting; sorting objects and abstractions,
 * design patterns and fiddly bits of CSS, whilst leaving as much design as
 * possible to you. inuit.css is the scaffolding to your decorator.
 *
 * This stylesheet is heavily documented and contains lots of comments, please
 * take care to read and refer to them as you build. For further support please
 * tweet at @inuitcss.
 *
 * Owing to the amount of comments please only ever use minified CSS in
 * production. This file is purely a dev document.
 *
 * The table of contents below maps to section titles of the same name, to jump
 * to any section simply run a find for $[SECTION-TITLE].
 *
 * Most objects and abstractions come with a chunk of markup that you should be
 * able to paste into any view to quickly see how the CSS works in conjunction
 * with the correct HTML.
 *
 * inuit.css is written to this standard: github.com/csswizardry/CSS-Guidelines
 *
 * LICENSE
 *
 * Copyright 2013 Harry Roberts
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * Thank you for choosing inuit.css. May your web fonts render perfectly.
 */
/*------------------------------------*\
    $CONTENTS
\*------------------------------------*/
/**
 * CONTENTS............You’re reading it!
 * WARNING.............Here be dragons!
 * IMPORTS.............Begin importing the sections below
 *
 * MIXINS..............Super-simple Sass stuff
 * NORMALIZE...........normalize.css
 * RESET...............Set some defaults
 * CLEARFIX............
 * SHARED..............Shared declarations
 *
 * MAIN................High-level elements like `html`, `body`, etc.
 * HEADINGS............Double-stranded heading hierarchy
 * PARAGRAPHS..........
 * SMALLPRINT..........Smaller text elements like `small`
 * QUOTES..............
 * CODE................
 * LISTS...............
 * IMAGES..............
 * TABLES..............
 * FORMS...............
 *
 * GRIDS...............Fluid, proportional and nestable grids
 * FLEXBOX.............Crudely emulate flexbox
 * COLUMNS.............CSS3 columns
 * NAV.................A simple abstraction to put a list in horizontal nav mode
 * OPTIONS.............Grouped nav items
 * PAGINATION..........Very stripped back, basic paginator
 * BREADCRUMB..........Simple breadcrumb trail object
 * MEDIA...............Media object
 * MARGINALIA..........Simple marginalia content
 * ISLAND..............Boxed off content
 * BLOCK-LIST..........Blocky lists of content
 * MATRIX..............Gridded lists
 * SPLIT...............A simple split-in-two object
 * THIS-OR-THIS........Options object
 * LINK-COMPLEX........
 * FLYOUT..............Flyout-on-hover object
 * ARROWS..............CSS arrows
 * SPRITE..............Generic spriting element
 * ICON-TEXT...........Icon and text couplings
 * BEAUTONS............Use the beautons micro library
 * LOZENGES............Basic lozenge styles
 * RULES...............Horizontal rules
 * STATS...............Simple stats object
 * GREYBOX.............Wireframing styles
 *
 * WIDTHS..............Width classes for use alongside the grid system etc.
 * PUSH................Push classes for manipulating grids
 * PULL................Pull classes for manipulating grids
 * BRAND...............Helper class to apply brand treatment to elements
 * HELPER..............A series of helper classes to use arbitrarily
 * DEBUG...............Enable to add visual flags for debugging purposes
 */
/*------------------------------------*\
    $WARNING
\*------------------------------------*/
/*
 * inuit.css, being an OO framework, works in keeping with the open/closed
 * principle. The variables you set previously are now being used throughout
 * inuit.css to style everything we need for a base. Any custom styles SHOULD
 * NOT be added or modified in inuit.css directly, but added via your theme
 * stylesheet as per the open/closed principle:
 *
 * csswizardry.com/2012/06/the-open-closed-principle-applied-to-css
 *
 * Try not to edit any CSS beyond this point; if you find you need to do so
 * it is a failing of the framework so please tweet at @inuitcss.
 */
/*------------------------------------*\
    $IMPORTS
\*------------------------------------*/
/**
 * Generic utility styles etc.
 */
/*------------------------------------*\
    $DEFAULTS
\*------------------------------------*/
/**
 * inuit.css’ default variables. Redefine these in your `_vars.scss` file (found
 * in the inuit.css-web-template) to override them.
 */
/*------------------------------------*\
    $DEBUG
\*------------------------------------*/
/**
 * Debug mode will visually highlight any potential markup/accessibility quirks
 * in the browser. Set to `true` or `false`.
 */
/*------------------------------------*\
    $BORDER-BOX
\*------------------------------------*/
/**
 * Do you want all elements to adopt `box-sizing:border-box;` as per
 * paulirish.com/2012/box-sizing-border-box-ftw ?
 */
/*------------------------------------*\
    $BASE
\*------------------------------------*/
/**
 * Base stuff
 */
/**
 * Base font-family.
 */
/**
 * Default colour for objects’ borders etc.
 */
/*------------------------------------*\
    $RESPONSIVE
\*------------------------------------*/
/**
 * Responsiveness?
 */
/**
 * Responsiveness for widescreen/high resolution desktop monitors and beyond?
 * Note: `$responsive` variable above must be set to true before enabling this.
 */
/**
 * Responsive push and pull produce a LOT of code, only turn them on if you
 * definitely need them.
 */
/**
 * Note: `$push` variable above must be set to true before enabling these.
 */
/**
 * Note: `$pull` variable above must be set to true before enabling these.
 */
/**
 * Tell inuit.css when breakpoints start.
 */
/*------------------------------------*\
    $FONT-SIZES
\*------------------------------------*/
/**
 * Font-sizes (in pixels). Refer to relevant sections for their implementations.
 */
/*------------------------------------*\
    $QUOTES
\*------------------------------------*/
/**
 * English quote marks?
 */
/**
 * If you want English quotes then please do not edit these; they’re only here
 * because Sass needs them.
 */
/**
 * If you need non-English quotes, please alter the following values accordingly:
 */
/*------------------------------------*\
    $BRAND
\*------------------------------------*/
/**
 * Brand stuff
 */
/**
 * How big would you like round corners to be by default?
 */
/*------------------------------------*\
    $OBJECTS AND ABSTRACTIONS
\*------------------------------------*/
/**
 * Which objects and abstractions would you like to use?
 */
/*------------------------------------*\
    $FRAMEWORK
\*------------------------------------*/
/**
 * inuit.css will work these next ones out for use within the framework.
 *
 * Assign our `$base-line-height` to a new spacing var for more transparency.
 */
/*------------------------------------*\
    $MIXINS
\*------------------------------------*/
/**
 * Create a fully formed type style (sizing and vertical rhythm) by passing in a
 * single value, e.g.:
 *
   `@include font-size(10px);`
 *
 * Thanks to @redclov3r for the `line-height` Sass:
 * twitter.com/redclov3r/status/250301539321798657
 */
/**
 * Style any number of headings in one fell swoop, e.g.:
 *
   .foo{
       @include headings(1, 3){
           color:#BADA55;
       }
    }
 *
 * With thanks to @lar_zzz, @paranoida, @rowanmanning and ultimately
 * @thierrylemoulec for refining and improving my initial mixin.
 */
/**
 * Create vendor-prefixed CSS in one go, e.g.
 *
   `@include vendor(border-radius, 4px);`
 *
 */
/**
 * Create CSS keyframe animations for all vendors in one go, e.g.:
 *
   .foo{
       @include vendor(animation, shrink 3s);
   }

   @include keyframe(shrink){
       from{
           font-size:5em;
       }
   }
 *
 * Courtesy of @integralist: twitter.com/integralist/status/260484115315437569
 */
/**
 * Force overly long spans of text to truncate, e.g.:
 *
   `@include truncate(100%);`
 *
 * Where `$truncation-boundary` is a united measurement.
 */
/**
 * CSS arrows!!! But... before you read on, you might want to grab a coffee...
 *
 * This mixin creates a CSS arrow on a given element. We can have the arrow
 * appear in one of 12 locations, thus:
 *
 *       01    02    03
 *    +------------------+
 * 12 |                  | 04
 *    |                  |
 * 11 |                  | 05
 *    |                  |
 * 10 |                  | 06
 *    +------------------+
 *       09    08    07
 *
 * You pass this position in along with a desired arrow color and optional
 * border color, for example:
 *
 * `@include arrow(top, left, red)`
 *
 * for just a single, red arrow, or:
 *
 * `@include arrow(bottom, center, red, black)`
 *
 * which will create a red triangle with a black border which sits at the bottom
 * center of the element. Call the mixin thus:
 *
   .foo{
       background-color:#BADA55;
       border:1px solid #ACE;
       @include arrow(top, left, #BADA55, #ACE);
   }
 *
 */
/**
 * Media query mixin.
 *
 * It’s not great practice to define solid breakpoints up-front, preferring to
 * modify your design when it needs it, rather than assuming you’ll want a
 * change at ‘mobile’. However, as inuit.css is required to take a hands off
 * approach to design decisions, this is the closest we can get to baked-in
 * responsiveness. It’s flexible enough to allow you to set your own breakpoints
 * but solid enough to be frameworkified.
 *
 * We define some broad breakpoints in our vars file that are picked up here
 * for use in a simple media query mixin. Our options are:
 *
 * palm
 * lap
 * lap-and-up
 * portable
 * desk
 * desk-wide
 *
 * Not using a media query will, naturally, serve styles to all devices.
 *
 * `@include media-query(palm){ [styles here] }`
 *
 * We work out your end points for you:
 */
/*! normalize.css v2.1.0 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Correct `block` display not defined in IE 8/9.
 */
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block; }

/*
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio, canvas, video {
  display: inline-block; }

/*
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/*
 * Address styling not present in IE 8/9.
 */
[hidden] {
  display: none; }

/* ==========================================================================
   Base
   ========================================================================== */
/*
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */ }

/*
 * Remove default margin.
 */
body {
  margin: 0; }

/* ==========================================================================
   Links
   ========================================================================== */
/*
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted; }

/*
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active, a:hover {
  outline: 0; }

/* ==========================================================================
   Typography
   ========================================================================== */
/*
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/*
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/*
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b, strong {
  font-weight: bold; }

/*
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic; }

/*
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/*
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/*
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code, kbd, pre, samp {
  font-family: monospace, serif;
  font-size: 1em; }

/*
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap; }

/*
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

/*
 * 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
   ========================================================================== */
/*
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0; }

/*
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden; }

/* ==========================================================================
   Figures
   ========================================================================== */
/*
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0; }

/* ==========================================================================
   Forms
   ========================================================================== */
/*
 * 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.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/*
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button, input, select, textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */ }

/*
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button, input {
  line-height: normal; }

/*
 * 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 Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
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.
 */
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; }

/*
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 */
input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/*
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/*
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/*
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/*
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */ }

/* ==========================================================================
   Tables
   ========================================================================== */
/*
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

/*------------------------------------*\
    $RESET
\*------------------------------------*/
/**
 * A more considered reset; more of a restart...
 * As per: csswizardry.com/2011/10/reset-restarted
 */
/**
    * Let’s make the box model all nice, shall we...?
    */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; }

/**
 * The usual...
 */
h1, h2, h3, h4, h5, h6, p, blockquote, pre, dl, dd, ol, ul, form, fieldset, legend, table, th, td, caption, hr {
  margin: 0;
  padding: 0; }

/**
 * Give a help cursor to elements that give extra info on `:hover`.
 */
abbr[title], dfn[title] {
  cursor: help; }

/**
 * Remove underlines from potentially troublesome elements.
 */
u, ins {
  text-decoration: none; }

/**
 * Apply faux underline via `border-bottom`.
 */
ins {
  border-bottom: 1px solid; }

/**
 * So that `alt` text is visually offset if images don’t load.
 */
img {
  font-style: italic; }

/**
 * Give form elements some cursor interactions...
 */
label, input, textarea, button, select, option {
  cursor: pointer; }

.text-input:active, .text-input:focus, textarea:active, textarea:focus {
  cursor: text;
  outline: none; }

/*------------------------------------*\
    $CLEARFIX
\*------------------------------------*/
/**
 * Micro clearfix, as per: css-101.org/articles/clearfix/latest-new-clearfix-so-far.php
 * Extend the clearfix class with Sass to avoid the `.cf` class appearing over
 * and over in your markup.
 */
.cf:after, .grid:after, .ui-main-nav:after, .ui-footer .siluette-footer > .width-container > ul:after, .ui-gen-list:after, .ui-gen-list-v2 .ui-gen-list-item:after, .ui-gen-article-v2:after, .ui-root-main .ui-language-select:after {
  content: "";
  display: table;
  clear: both; }

/*------------------------------------*\
    $SHARED
\*------------------------------------*/
/**
 * Where `margin-bottom` is concerned, this value will be the same as the
 * base line-height. This allows us to keep a consistent vertical rhythm.
 * As per: csswizardry.com/2012/06/single-direction-margin-declarations
 */
/**
 * Base elements
 */
.form-fields > li {
  margin-bottom: 20px;
  margin-bottom: 1.66667rem; }
  .islet .form-fields > li {
    margin-bottom: 10px;
    margin-bottom: 0.83333rem; }

/**
 * Doubled up `margin-bottom` helper class.
 */
.landmark {
  margin-bottom: 40px;
  margin-bottom: 3.33333rem; }

/**
 * `hr` elements only take up a few pixels, so we need to give them special
 * treatment regarding vertical rhythm.
 */
hr {
  margin-bottom: 18px;
  margin-bottom: 1.5rem; }

/**
 * Where `margin-left` is concerned we want to try and indent certain elements
 * by a consistent amount. Define that amount once, here.
 */
ul, ol, dd {
  margin-left: 40px;
  margin-left: 3.33333rem; }

/**
 * Base styles; unclassed HTML elements etc.
 */
/*------------------------------------*\
    $MAIN
\*------------------------------------*/
html {
  font: 0.75em/1.33333 "Open Sans";
  overflow-y: scroll;
  min-height: 100%; }

/*------------------------------------*\
    $HEADINGS
\*------------------------------------*/
/**
 * As per: csswizardry.com/2012/02/pragmatic-practical-font-sizing-in-css
 *
 * When we define a heading we also define a corresponding class to go with it.
 * This allows us to apply, say, `class=alpha` to a `h3`; a double-stranded
 * heading hierarchy.
 */
h1, .alpha {
  font-size: 36px;
  font-size: 3rem;
  line-height: 1.33333; }

h2, .beta {
  font-size: 30px;
  font-size: 2.5rem;
  line-height: 1.06667; }

h3, .gamma {
  font-size: 24px;
  font-size: 2rem;
  line-height: 1.33333; }

h4, .delta {
  font-size: 20px;
  font-size: 1.66667rem;
  line-height: 1.6; }

h5, .epsilon {
  font-size: 16px;
  font-size: 1.33333rem;
  line-height: 1; }

h6, .zeta {
  font-size: 14px;
  font-size: 1.16667rem;
  line-height: 1.14286; }

/**
 * Heading groups and generic any-heading class.
 * To target any heading of any level simply apply a class of `.hN`, e.g.:
 *
   <hgroup>
       <h1 class=hN>inuit.css</h1>
       <h2 class=hN>Best. Framework. Ever!</h2>
   </hgroup>
 *
 */
hgroup .hN {
  margin-bottom: 0; }

/**
 * A series of classes for setting massive type; for use in heroes, mastheads,
 * promos, etc.
 */
.giga {
  font-size: 96px;
  font-size: 8rem;
  line-height: 1; }

.mega {
  font-size: 72px;
  font-size: 6rem;
  line-height: 1.11111; }

.kilo {
  font-size: 48px;
  font-size: 4rem;
  line-height: 1; }

/*------------------------------------*\
    $PARAGRAPHS
\*------------------------------------*/
/**
 * The `.lede` class is used to make the introductory text (usually a paragraph)
 * of a document slightly larger.
 */
.lede, .lead {
  font-size: 13.5px;
  font-size: 1.125rem;
  line-height: 1.18519; }

/*------------------------------------*\
    $SMALLPRINT
\*------------------------------------*/
/**
 * A series of classes for setting tiny type; for use in smallprint etc.
 */
.smallprint, .milli {
  font-size: 12px;
  font-size: 1rem;
  line-height: 1.33333; }

.micro {
  font-size: 10px;
  font-size: 0.83333rem;
  line-height: 1.6; }

/*------------------------------------*\
    $QUOTES
\*------------------------------------*/
/**
 * If English quotes are set in `_vars.scss`, define them here.
 */
/**
 * Big up @boblet: html5doctor.com/blockquote-q-cite
 */
/**
 * Inline quotes.
 */
q {
  quotes: "\2018" "\2019" "\201C" "\201D"; }
  q:before {
    content: "\2018";
    content: open-quote; }
  q:after {
    content: "\2019";
    content: close-quote; }
  q q:before {
    content: "\201C";
    content: open-quote; }
  q q:after {
    content: "\201D";
    content: close-quote; }

blockquote {
  quotes: "\201C" "\201D"; }
  blockquote p:before {
    content: "\201C";
    content: open-quote; }
  blockquote p:after {
    content: "";
    content: no-close-quote; }
  blockquote p:last-of-type:after {
    content: "\201D";
    content: close-quote; }
  blockquote q:before {
    content: "\2018";
    content: open-quote; }
  blockquote q:after {
    content: "\2019";
    content: close-quote; }

/**
 *
   <blockquote>
       <p>Insanity: doing the same thing over and over again and expecting
       different results.</p>
       <b class=source>Albert Einstein</b>
   </blockquote>
 *
 */
blockquote {
  /**
     * .4em is roughly equal to the width of the opening “ that we wish to hang.
     */
  text-indent: -0.41em; }
  blockquote p:last-of-type {
    margin-bottom: 0; }

.source {
  display: block;
  text-indent: 0; }
  .source:before {
    content: "\2014"; }

/*------------------------------------*\
    $CODE
\*------------------------------------*/
/**
 * Use an explicit font stack to ensure browsers render correct `line-height`.
 */
pre {
  overflow: auto; }

pre mark {
  background: none;
  border-bottom: 1px solid;
  color: inherit; }

/**
 * Add comments to your code examples, e.g.:
 *
   <code>&lt;/div&gt;<span class=code-comment>&lt;!-- /wrapper --&gt;</span></code>
 *
 */
.code-comment {
  /**
     * Override this setting in your theme stylesheet
     */
  opacity: 0.75;
  filter: alpha(opacity=75); }

/**
 * You can add line numbers to your code examples but be warned, it requires
 * some pretty funky looking markup, e.g.:
 *
   <ol class=line-numbers>
       <li><code>.nav{</code></li>
       <li><code>    list-style:none;</code></li>
       <li><code>    margin-left:0;</code></li>
       <li><code>}</code></li>
       <li><code>    .nav > li,</code></li>
       <li><code>        .nav > li > a{</code></li>
       <li><code>            display:inline-block;</code></li>
       <li><code>           *display:inline-block;</code></li>
       <li><code>            zoom:1;</code></li>
       <li><code>        }</code></li>
   </ol>
 *
 * 1. Make the list look like code.
 * 2. Give the list flush numbers with a leading zero.
 * 3. Make sure lines of code don’t wrap.
 * 4. Give the code form by forcing the `code` to honour white-space.
 */
.line-numbers {
  font-family: monospace, serif;
  /* [1] */
  list-style: decimal-leading-zero inside;
  /* [2] */
  white-space: nowrap;
  /* [3] */
  overflow: auto;
  /* [3] */
  margin-left: 0; }

.line-numbers code {
  white-space: pre;
  /* [4] */ }

/*------------------------------------*\
    $IMAGES
\*------------------------------------*/
/**
 * Demo: jsfiddle.net/inuitcss/yMtur
 */
/**
 * Fluid images.
 */
img {
  max-width: 100%; }

/**
 * Non-fluid images if you specify `width` and/or `height` attributes.
 */
img[width], img[height] {
  max-width: none; }

/**
 * Rounded images.
 */
.img--round {
  border-radius: 4px; }

/**
 * Image placement variations.
 */
.img--right {
  float: right;
  margin-bottom: 20px;
  margin-left: 20px; }

.img--left {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px; }

.img--center {
  display: block;
  margin-right: auto;
  margin-bottom: 20px;
  margin-left: auto; }

/**
 * Keep your images on your baseline.
 *
 * Please note, these will not work too nicely with fluid images and will
 * distort when resized below a certain width. Use with caution.
 */
.img--short {
  height: 100px; }

.img--medium {
  height: 200px; }

.img--tall {
  height: 300px; }

/**
 * Images in `figure` elements.
 */
figure > img {
  display: block; }

/*------------------------------------*\
    $LISTS
\*------------------------------------*/
/**
 * Remove vertical spacing from nested lists.
 */
li > ul, li > ol {
  margin-bottom: 0; }

/**
 * Have a numbered `ul` without the semantics implied by using an `ol`.
 */
/*ul*/
.numbered-list {
  list-style-type: decimal; }

/*------------------------------------*\
    $TABLES
\*------------------------------------*/
/**
 * We have a lot at our disposal for making very complex table constructs, e.g.:
 *
   <table class="table--bordered  table--striped  table--data">
       <colgroup>
           <col class=t10>
           <col class=t10>
           <col class=t10>
           <col>
       </colgroup>
       <thead>
           <tr>
               <th colspan=3>Foo</th>
               <th>Bar</th>
           </tr>
           <tr>
               <th>Lorem</th>
               <th>Ipsum</th>
               <th class=numerical>Dolor</th>
               <th>Sit</th>
           </tr>
       </thead>
       <tbody>
           <tr>
               <th rowspan=3>Sit</th>
               <td>Dolor</td>
               <td class=numerical>03.788</td>
               <td>Lorem</td>
           </tr>
           <tr>
               <td>Dolor</td>
               <td class=numerical>32.210</td>
               <td>Lorem</td>
           </tr>
           <tr>
               <td>Dolor</td>
               <td class=numerical>47.797</td>
               <td>Lorem</td>
           </tr>
           <tr>
               <th rowspan=2>Sit</th>
               <td>Dolor</td>
               <td class=numerical>09.640</td>
               <td>Lorem</td>
           </tr>
           <tr>
               <td>Dolor</td>
               <td class=numerical>12.117</td>
               <td>Lorem</td>
           </tr>
       </tbody>
   </table>
 *
 */
table {
  width: 100%; }

th, td {
  padding: 5px;
  text-align: left; }
  @media screen and (min-width: 480px) {
    th, td {
      padding: 10px; } }

/**
 * Cell alignments
 */
[colspan] {
  text-align: center; }

[colspan="1"] {
  text-align: left; }

[rowspan] {
  vertical-align: middle; }

[rowspan="1"] {
  vertical-align: top; }

.numerical {
  text-align: right; }

/**
 * In the HTML above we see several `col` elements with classes whose numbers
 * represent a percentage width for that column. We leave one column free of a
 * class so that column can soak up the effects of any accidental breakage in
 * the table.
 */
.t5 {
  width: 5%; }

.t10 {
  width: 10%; }

.t12 {
  width: 12.5%; }

/* 1/8 */
.t15 {
  width: 15%; }

.t20 {
  width: 20%; }

.t25 {
  width: 25%; }

/* 1/4 */
.t30 {
  width: 30%; }

.t33 {
  width: 33.333%; }

/* 1/3 */
.t35 {
  width: 35%; }

.t37 {
  width: 37.5%; }

/* 3/8 */
.t40 {
  width: 40%; }

.t45 {
  width: 45%; }

.t50 {
  width: 50%; }

/* 1/2 */
.t55 {
  width: 55%; }

.t60 {
  width: 60%; }

.t62 {
  width: 62.5%; }

/* 5/8 */
.t65 {
  width: 65%; }

.t66 {
  width: 66.666%; }

/* 2/3 */
.t70 {
  width: 70%; }

.t75 {
  width: 75%; }

/* 3/4*/
.t80 {
  width: 80%; }

.t85 {
  width: 85%; }

.t87 {
  width: 87.5%; }

/* 7/8 */
.t90 {
  width: 90%; }

.t95 {
  width: 95%; }

/**
 * Bordered tables
 */
.table--bordered th, .table--bordered td {
  border: 1px solid #ccc; }
  .table--bordered th:empty, .table--bordered td:empty {
    border: none; }
.table--bordered thead tr:last-child th {
  border-bottom-width: 2px; }
.table--bordered tbody tr th:last-of-type {
  border-right-width: 2px; }

/**
 * Striped tables
 */
.table--striped tbody tr:nth-of-type(odd) {
  background-color: #ffc;
  /* Override this color in your theme stylesheet */ }

/**
 * Data table
 */
.table--data {
  font: 12px/1.5 sans-serif; }

/*------------------------------------*\
    $FORMS
\*------------------------------------*/
/**
 *
 * Demo: jsfiddle.net/inuitcss/MhHHU
 *
 */
fieldset {
  padding: 20px; }

/**
 * Text inputs
 *
 * Instead of a `[type]` selector for each kind of form input, we just use a
 * class to target any/every one, e.g.:
   <input type=text class=text-input>
   <input type=email class=text-input>
   <input type=password class=text-input>
 *
 */
/**
 * Group sets of form fields in a list, e.g.:
 *
   <ul class=form-fields>
       <li>
           <label />
           <input />
       </li>
       <li>
           <label />
           <select />
       </li>
       <li>
           <label />
           <input />
       </li>
   </ul>
 *
 */
.form-fields {
  list-style: none;
  margin: 0; }

.form-fields > li:last-child {
  margin-bottom: 0; }

/**
 * Labels
 *
 * Define a `.label` class as well as a `label` element. This means we can apply
 * label-like styling to meta-labels for groups of options where a `label`
 * element is not suitable, e.g.:
 *
   <li>
       <span class=label>Select an option below:</span>
       <ul class="multi-list  four-cols">
           <li>
               <input /> <label />
           </li>
           <li>
               <input /> <label />
           </li>
           <li>
               <input /> <label />
           </li>
           <li>
               <input /> <label />
           </li>
       </ul>
   </li>
 *
 */
label, .label {
  display: block; }

/**
     * Extra help text in `label`s, e.g.:
     *
       <label>Card number <small class=additional>No spaces</small></label>
     *
     */
.additional {
  display: block;
  font-weight: normal; }

/*
 * Groups of checkboxes and radios, e.g.:
 *
   <li>
       <ul class=check-list>
           <li>
               <input /> <label />
           </li>
           <li>
               <input /> <label />
           </li>
       </ul>
   </li>
 *
 */
.check-list {
  list-style: none;
  margin: 0; }

/*
     * Labels in check-lists
     */
.check-label, .check-list label, .check-list .label {
  display: inline-block; }

/**
 * Spoken forms are for forms that read like spoken word, e.g.:
 *
   <li class=spoken-form>
       Hello, my <label for=spoken-name>name</label> is
       <input type=text class=text-input id=spoken-name>. My home
       <label for=country>country</label> is
       <select id=country>
           <option>UK</option>
           <option>US</option>
           <option>Other</option>
       </select>
   </li>
 *
 */
.spoken-form label {
  display: inline-block;
  font: inherit; }

/**
 * Extra help text displayed after a field when that field is in focus, e.g.:
 *
   <label for=email>Email:</label>
   <input type=email class=text-input id=email>
   <small class=extra-help>.edu emails only</small>
 *
 * We leave the help text in the document flow and merely set it to
 * `visibility:hidden;`. This means that it won’t interfere with anything once
 * it reappears.
 *
 */
/*small*/
.extra-help {
  display: inline-block;
  visibility: hidden; }

.text-input:active + .extra-help, .text-input:focus + .extra-help {
  visibility: visible; }

/**
 * Objects and abstractions
 */
/*------------------------------------*\
    $GRIDS
\*------------------------------------*/
/**
 * Fluid and nestable grid system, e.g.:
 *
   <div class="grid">

       <div class="grid__item  one-third">
           <p>One third grid</p>
       </div><!--

    --><div class="grid__item  two-thirds">
           <p>Two thirds grid</p>
       </div><!--

    --><div class="grid__item  one-half">
           <p>One half grid</p>
       </div><!--

    --><div class="grid__item  one-quarter">
           <p>One quarter grid</p>
       </div><!--

    --><div class="grid__item  one-quarter">
           <p>One quarter grid</p>
       </div>

   </div>
 *
 * Demo: jsfiddle.net/inuitcss/CLYUC
 *
 */
/**
 * Grid wrapper
 */
.grid {
  margin-left: -20px;
  list-style: none;
  margin-bottom: 0; }

/**
     * Very infrequently occuring grid wrappers as children of grid wrappers.
     */
.grid > .grid {
  margin-left: 0; }

/**
     * Grid
     */
.grid__item {
  display: inline-block;
  width: 100%;
  padding-left: 20px;
  vertical-align: top;
  float: left; }

/**
 * Style trumps; helper and brand classes
 */
/*------------------------------------*\
    $WIDTHS
\*------------------------------------*/
/**
 * Sizes in human readable format. These are used in conjunction with other
 * objects and abstractions found in inuit.css, most commonly the grid system
 * and faux flexbox.
 *
 * We have a mixin to generate our widths and their breakpoint-specific
 * variations.
 */
/**
    * Whole
    */
.one-whole {
  width: 100%; }

/**
    * Halves
    */
.one-half, .two-quarters, .three-sixths, .four-eighths, .five-tenths, .six-twelfths {
  width: 50%; }

/**
    * Thirds
    */
.one-third, .two-sixths, .four-twelfths {
  width: 33.333%; }

.two-thirds, .four-sixths, .eight-twelfths {
  width: 66.666%; }

/**
    * Quarters
    */
.one-quarter, .two-eighths, .three-twelfths {
  width: 25%; }

.three-quarters, .six-eighths, .nine-twelfths {
  width: 75%; }

/**
    * Fifths
    */
.one-fifth, .two-tenths {
  width: 20%; }

.two-fifths, .four-tenths {
  width: 40%; }

.three-fifths, .six-tenths {
  width: 60%; }

.four-fifths, .eight-tenths {
  width: 80%; }

/**
    * Sixths
    */
.one-sixth, .two-twelfths {
  width: 16.666%; }

.five-sixths, .ten-twelfths {
  width: 83.333%; }

/**
    * Eighths
    */
.one-eighth {
  width: 12.5%; }

.three-eighths {
  width: 37.5%; }

.five-eighths {
  width: 62.5%; }

.seven-eighths {
  width: 87.5%; }

/**
    * Tenths
    */
.one-tenth {
  width: 10%; }

.three-tenths {
  width: 30%; }

.seven-tenths {
  width: 70%; }

.nine-tenths {
  width: 90%; }

/**
    * Twelfths
    */
.one-twelfth {
  width: 8.333%; }

.five-twelfths {
  width: 41.666%; }

.seven-twelfths {
  width: 58.333%; }

.eleven-twelfths {
  width: 91.666%; }

/**
 * If you have set `$responsive` to ‘true’ in `_vars.scss` then you now have
 * access to these classes. You can define at which breakpoint you’d like an
 * element to be a certain size, e.g.:
 *
 * `<div class="g  one-quarter  lap-one-half  palm-one-whole"> ... </div>`
 *
 * This would create a `div` that, at ‘desktop’ sizes, takes up a quarter of the
 * horizontal space, a half of that space at ‘tablet’ sizes, and goes full width
 * at ‘mobile’ sizes.
 *
 * Demo: jsfiddle.net/inuitcss/WS4Ge
 *
 */
@media only screen and (max-width: 480px) {
  /**
    * Whole
    */
  /**
    * Halves
    */
  /**
    * Thirds
    */
  /**
    * Quarters
    */
  /**
    * Fifths
    */
  /**
    * Sixths
    */
  /**
    * Eighths
    */
  /**
    * Tenths
    */
  /**
    * Twelfths
    */
  .palm-one-whole {
    width: 100%; }
  .palm-one-half, .palm-two-quarters, .palm-three-sixths, .palm-four-eighths, .palm-five-tenths, .palm-six-twelfths {
    width: 50%; }
  .palm-one-third, .palm-two-sixths, .palm-four-twelfths {
    width: 33.333%; }
  .palm-two-thirds, .palm-four-sixths, .palm-eight-twelfths {
    width: 66.666%; }
  .palm-one-quarter, .palm-two-eighths, .palm-three-twelfths {
    width: 25%; }
  .palm-three-quarters, .palm-six-eighths, .palm-nine-twelfths {
    width: 75%; }
  .palm-one-fifth, .palm-two-tenths {
    width: 20%; }
  .palm-two-fifths, .palm-four-tenths {
    width: 40%; }
  .palm-three-fifths, .palm-six-tenths {
    width: 60%; }
  .palm-four-fifths, .palm-eight-tenths {
    width: 80%; }
  .palm-one-sixth, .palm-two-twelfths {
    width: 16.666%; }
  .palm-five-sixths, .palm-ten-twelfths {
    width: 83.333%; }
  .palm-one-eighth {
    width: 12.5%; }
  .palm-three-eighths {
    width: 37.5%; }
  .palm-five-eighths {
    width: 62.5%; }
  .palm-seven-eighths {
    width: 87.5%; }
  .palm-one-tenth {
    width: 10%; }
  .palm-three-tenths {
    width: 30%; }
  .palm-seven-tenths {
    width: 70%; }
  .palm-nine-tenths {
    width: 90%; }
  .palm-one-twelfth {
    width: 8.333%; }
  .palm-five-twelfths {
    width: 41.666%; }
  .palm-seven-twelfths {
    width: 58.333%; }
  .palm-eleven-twelfths {
    width: 91.666%; } }

@media only screen and (min-width: 481px) and (max-width: 1023px) {
  /**
    * Whole
    */
  /**
    * Halves
    */
  /**
    * Thirds
    */
  /**
    * Quarters
    */
  /**
    * Fifths
    */
  /**
    * Sixths
    */
  /**
    * Eighths
    */
  /**
    * Tenths
    */
  /**
    * Twelfths
    */
  .lap-one-whole {
    width: 100%; }
  .lap-one-half, .lap-two-quarters, .lap-three-sixths, .lap-four-eighths, .lap-five-tenths, .lap-six-twelfths {
    width: 50%; }
  .lap-one-third, .lap-two-sixths, .lap-four-twelfths {
    width: 33.333%; }
  .lap-two-thirds, .lap-four-sixths, .lap-eight-twelfths {
    width: 66.666%; }
  .lap-one-quarter, .lap-two-eighths, .lap-three-twelfths {
    width: 25%; }
  .lap-three-quarters, .lap-six-eighths, .lap-nine-twelfths {
    width: 75%; }
  .lap-one-fifth, .lap-two-tenths {
    width: 20%; }
  .lap-two-fifths, .lap-four-tenths {
    width: 40%; }
  .lap-three-fifths, .lap-six-tenths {
    width: 60%; }
  .lap-four-fifths, .lap-eight-tenths {
    width: 80%; }
  .lap-one-sixth, .lap-two-twelfths {
    width: 16.666%; }
  .lap-five-sixths, .lap-ten-twelfths {
    width: 83.333%; }
  .lap-one-eighth {
    width: 12.5%; }
  .lap-three-eighths {
    width: 37.5%; }
  .lap-five-eighths {
    width: 62.5%; }
  .lap-seven-eighths {
    width: 87.5%; }
  .lap-one-tenth {
    width: 10%; }
  .lap-three-tenths {
    width: 30%; }
  .lap-seven-tenths {
    width: 70%; }
  .lap-nine-tenths {
    width: 90%; }
  .lap-one-twelfth {
    width: 8.333%; }
  .lap-five-twelfths {
    width: 41.666%; }
  .lap-seven-twelfths {
    width: 58.333%; }
  .lap-eleven-twelfths {
    width: 91.666%; } }

@media only screen and (min-width: 481px) {
  /**
    * Whole
    */
  /**
    * Halves
    */
  /**
    * Thirds
    */
  /**
    * Quarters
    */
  /**
    * Fifths
    */
  /**
    * Sixths
    */
  /**
    * Eighths
    */
  /**
    * Tenths
    */
  /**
    * Twelfths
    */
  .lap-and-up-one-whole {
    width: 100%; }
  .lap-and-up-one-half, .lap-and-up-two-quarters, .lap-and-up-three-sixths, .lap-and-up-four-eighths, .lap-and-up-five-tenths, .lap-and-up-six-twelfths {
    width: 50%; }
  .lap-and-up-one-third, .lap-and-up-two-sixths, .lap-and-up-four-twelfths {
    width: 33.333%; }
  .lap-and-up-two-thirds, .lap-and-up-four-sixths, .lap-and-up-eight-twelfths {
    width: 66.666%; }
  .lap-and-up-one-quarter, .lap-and-up-two-eighths, .lap-and-up-three-twelfths {
    width: 25%; }
  .lap-and-up-three-quarters, .lap-and-up-six-eighths, .lap-and-up-nine-twelfths {
    width: 75%; }
  .lap-and-up-one-fifth, .lap-and-up-two-tenths {
    width: 20%; }
  .lap-and-up-two-fifths, .lap-and-up-four-tenths {
    width: 40%; }
  .lap-and-up-three-fifths, .lap-and-up-six-tenths {
    width: 60%; }
  .lap-and-up-four-fifths, .lap-and-up-eight-tenths {
    width: 80%; }
  .lap-and-up-one-sixth, .lap-and-up-two-twelfths {
    width: 16.666%; }
  .lap-and-up-five-sixths, .lap-and-up-ten-twelfths {
    width: 83.333%; }
  .lap-and-up-one-eighth {
    width: 12.5%; }
  .lap-and-up-three-eighths {
    width: 37.5%; }
  .lap-and-up-five-eighths {
    width: 62.5%; }
  .lap-and-up-seven-eighths {
    width: 87.5%; }
  .lap-and-up-one-tenth {
    width: 10%; }
  .lap-and-up-three-tenths {
    width: 30%; }
  .lap-and-up-seven-tenths {
    width: 70%; }
  .lap-and-up-nine-tenths {
    width: 90%; }
  .lap-and-up-one-twelfth {
    width: 8.333%; }
  .lap-and-up-five-twelfths {
    width: 41.666%; }
  .lap-and-up-seven-twelfths {
    width: 58.333%; }
  .lap-and-up-eleven-twelfths {
    width: 91.666%; } }

@media only screen and (max-width: 1023px) {
  /**
    * Whole
    */
  /**
    * Halves
    */
  /**
    * Thirds
    */
  /**
    * Quarters
    */
  /**
    * Fifths
    */
  /**
    * Sixths
    */
  /**
    * Eighths
    */
  /**
    * Tenths
    */
  /**
    * Twelfths
    */
  .portable-one-whole {
    width: 100%; }
  .portable-one-half, .portable-two-quarters, .portable-three-sixths, .portable-four-eighths, .portable-five-tenths, .portable-six-twelfths {
    width: 50%; }
  .portable-one-third, .portable-two-sixths, .portable-four-twelfths {
    width: 33.333%; }
  .portable-two-thirds, .portable-four-sixths, .portable-eight-twelfths {
    width: 66.666%; }
  .portable-one-quarter, .portable-two-eighths, .portable-three-twelfths {
    width: 25%; }
  .portable-three-quarters, .portable-six-eighths, .portable-nine-twelfths {
    width: 75%; }
  .portable-one-fifth, .portable-two-tenths {
    width: 20%; }
  .portable-two-fifths, .portable-four-tenths {
    width: 40%; }
  .portable-three-fifths, .portable-six-tenths {
    width: 60%; }
  .portable-four-fifths, .portable-eight-tenths {
    width: 80%; }
  .portable-one-sixth, .portable-two-twelfths {
    width: 16.666%; }
  .portable-five-sixths, .portable-ten-twelfths {
    width: 83.333%; }
  .portable-one-eighth {
    width: 12.5%; }
  .portable-three-eighths {
    width: 37.5%; }
  .portable-five-eighths {
    width: 62.5%; }
  .portable-seven-eighths {
    width: 87.5%; }
  .portable-one-tenth {
    width: 10%; }
  .portable-three-tenths {
    width: 30%; }
  .portable-seven-tenths {
    width: 70%; }
  .portable-nine-tenths {
    width: 90%; }
  .portable-one-twelfth {
    width: 8.333%; }
  .portable-five-twelfths {
    width: 41.666%; }
  .portable-seven-twelfths {
    width: 58.333%; }
  .portable-eleven-twelfths {
    width: 91.666%; } }

@media only screen and (min-width: 1024px) {
  /**
    * Whole
    */
  /**
    * Halves
    */
  /**
    * Thirds
    */
  /**
    * Quarters
    */
  /**
    * Fifths
    */
  /**
    * Sixths
    */
  /**
    * Eighths
    */
  /**
    * Tenths
    */
  /**
    * Twelfths
    */
  .desk-one-whole {
    width: 100%; }
  .desk-one-half, .desk-two-quarters, .desk-three-sixths, .desk-four-eighths, .desk-five-tenths, .desk-six-twelfths {
    width: 50%; }
  .desk-one-third, .desk-two-sixths, .desk-four-twelfths {
    width: 33.333%; }
  .desk-two-thirds, .desk-four-sixths, .desk-eight-twelfths {
    width: 66.666%; }
  .desk-one-quarter, .desk-two-eighths, .desk-three-twelfths {
    width: 25%; }
  .desk-three-quarters, .desk-six-eighths, .desk-nine-twelfths {
    width: 75%; }
  .desk-one-fifth, .desk-two-tenths {
    width: 20%; }
  .desk-two-fifths, .desk-four-tenths {
    width: 40%; }
  .desk-three-fifths, .desk-six-tenths {
    width: 60%; }
  .desk-four-fifths, .desk-eight-tenths {
    width: 80%; }
  .desk-one-sixth, .desk-two-twelfths {
    width: 16.666%; }
  .desk-five-sixths, .desk-ten-twelfths {
    width: 83.333%; }
  .desk-one-eighth {
    width: 12.5%; }
  .desk-three-eighths {
    width: 37.5%; }
  .desk-five-eighths {
    width: 62.5%; }
  .desk-seven-eighths {
    width: 87.5%; }
  .desk-one-tenth {
    width: 10%; }
  .desk-three-tenths {
    width: 30%; }
  .desk-seven-tenths {
    width: 70%; }
  .desk-nine-tenths {
    width: 90%; }
  .desk-one-twelfth {
    width: 8.333%; }
  .desk-five-twelfths {
    width: 41.666%; }
  .desk-seven-twelfths {
    width: 58.333%; }
  .desk-eleven-twelfths {
    width: 91.666%; } }

/**
 * If you have set the additional `$responsive-extra` variable to ‘true’ in
 * `_vars.scss` then you now have access to the following class available to
 * accomodate much larger screen resolutions.
 */
/* endif */
/*------------------------------------*\
    $PUSH
\*------------------------------------*/
/**
 * Push classes, to move grid items over to the right by certain amounts.
 */
/*------------------------------------*\
    $PULL
\*------------------------------------*/
/**
 * Pull classes, to move grid items over to the right by certain amounts.
 */
/*------------------------------------*\
    $BRAND
\*------------------------------------*/
/**
 * `.brand` is a quick and simple way to apply your brand face and/or color to
 * any element using a handy helper class.
 */
.brand {
  font-family: "Open Sans!important";
  color: #e74c3c!important; }

.brand-face {
  font-family: "Open Sans!important"; }

.brand-color, .brand-colour {
  color: #e74c3c!important; }

/*------------------------------------*\
    $HELPER
\*------------------------------------*/
/**
 * A series of helper classes to use arbitrarily. Only use a helper class if an
 * element/component doesn’t already have a class to which you could apply this
 * styling, e.g. if you need to float `.main-nav` left then add `float:left;` to
 * that ruleset as opposed to adding the `.float--left` class to the markup.
 *
 * A lot of these classes carry `!important` as you will always want them to win
 * out over other selectors.
 */
/**
 * Add/remove floats
 */
.float--right {
  float: right !important; }

.float--left {
  float: left !important; }

.float--none {
  float: none !important; }

/**
 * Text alignment
 */
.text--left {
  text-align: left !important; }

.text--center, .ui-footer.sv {
  text-align: center !important; }

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

/**
 * Font weights
 */
.weight--light {
  font-weight: 300 !important; }

.weight--normal {
  font-weight: 400 !important; }

.weight--semibold {
  font-weight: 600 !important; }

/**
 * Add/remove margins
 */
.push {
  margin: 20px !important; }

.push--top {
  margin-top: 20px !important; }

.push--right {
  margin-right: 20px !important; }

.push--bottom {
  margin-bottom: 20px !important; }

.push--left {
  margin-left: 20px !important; }

.push--ends {
  margin-top: 20px !important;
  margin-bottom: 20px !important; }

.push--sides {
  margin-right: 20px !important;
  margin-left: 20px !important; }

.push-half {
  margin: 10px !important; }

.push-half--top {
  margin-top: 10px !important; }

.push-half--right {
  margin-right: 10px !important; }

.push-half--bottom {
  margin-bottom: 10px !important; }

.push-half--left {
  margin-left: 10px !important; }

.push-half--ends {
  margin-top: 10px !important;
  margin-bottom: 10px !important; }

.push-half--sides {
  margin-right: 10px !important;
  margin-left: 10px !important; }

.flush {
  margin: 0 !important; }

.flush--top {
  margin-top: 0 !important; }

.flush--right {
  margin-right: 0 !important; }

.flush--bottom {
  margin-bottom: 0 !important; }

.flush--left {
  margin-left: 0 !important; }

.flush--ends {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

.flush--sides {
  margin-right: 0 !important;
  margin-left: 0 !important; }

/**
 * Add/remove paddings
 */
.soft {
  padding: 20px !important; }

.soft--top {
  padding-top: 20px !important; }

.soft--right {
  padding-right: 20px !important; }

.soft--bottom {
  padding-bottom: 20px !important; }

.soft--left {
  padding-left: 20px !important; }

.soft--ends {
  padding-top: 20px !important;
  padding-bottom: 20px !important; }

.soft--sides {
  padding-right: 20px !important;
  padding-left: 20px !important; }

.soft-half {
  padding: 10px !important; }

.soft-half--top {
  padding-top: 10px !important; }

.soft-half--right {
  padding-right: 10px !important; }

.soft-half--bottom {
  padding-bottom: 10px !important; }

.soft-half--left {
  padding-left: 10px !important; }

.soft-half--ends {
  padding-top: 10px !important;
  padding-bottom: 10px !important; }

.soft-half--sides {
  padding-right: 10px !important;
  padding-left: 10px !important; }

.hard {
  padding: 0 !important; }

.hard--top {
  padding-top: 0 !important; }

.hard--right {
  padding-right: 0 !important; }

.hard--bottom {
  padding-bottom: 0 !important; }

.hard--left {
  padding-left: 0 !important; }

.hard--ends {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

.hard--sides {
  padding-right: 0 !important;
  padding-left: 0 !important; }

/**
 * Pull items full width of `.island` parents.
 */
.full-bleed {
  margin-right: -20px !important;
  margin-left: -20px !important; }
  .islet .full-bleed {
    margin-right: -10px !important;
    margin-left: -10px !important; }

/**
 * Add a help cursor to any element that gives the user extra information on
 * `:hover`.
 */
.informative {
  cursor: help !important; }

/**
 * Mute an object by reducing its opacity.
 */
.muted {
  opacity: 0.5 !important;
  filter: alpha(opacity=50) !important; }

/**
 * Align items to the right where they imply progression/movement forward, e.g.:
 *
   <p class=proceed><a href=#>Read more...</a></p>
 *
 */
.proceed {
  text-align: right !important; }

/**
 * Add a right-angled quote to links that imply movement, e.g.:
 *
   <a href=# class=go>Read more</a>
 *
 */
.go:after {
  content: "\00A0" "\00BB" !important; }

/**
 * Apply capital case to an element (usually a `strong`).
 */
.caps {
  text-transform: uppercase !important; }

/**
 * Hide content off-screen without resorting to `display:none;`, also provide
 * breakpoint specific hidden elements.
 */
.accessibility, .visuallyhidden {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important; }

@media only screen and (max-width: 480px) {
  .accessibility--palm, .visuallyhidden--palm {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; } }

@media only screen and (min-width: 481px) and (max-width: 1023px) {
  .accessibility--lap, .visuallyhidden--lap {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; } }

@media only screen and (min-width: 481px) {
  .accessibility--lap-and-up, .visuallyhidden--lap-and-up {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; } }

@media only screen and (max-width: 1023px) {
  .accessibility--portable, .visuallyhidden--portable {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; } }

@media only screen and (min-width: 1024px) {
  .accessibility--desk, .visuallyhidden--desk {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; } }

@media only screen and (min-width: 1200px) {
  .accessibility--desk-wide, .visuallyhidden--desk-wide {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; } }

/* endif */
/**
 * Font-Awesome setup
 */
/*!
 *  Font Awesome 4.2.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/font-awesome/fontawesome-webfont.eot?v=4.2.0');
  src: url('../fonts/font-awesome/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'), url('../fonts/font-awesome/fontawesome-webfont.woff?v=4.2.0') format('woff'), url('../fonts/font-awesome/fontawesome-webfont.ttf?v=4.2.0') format('truetype'), url('../fonts/font-awesome/fontawesome-webfont.svg?v=4.2.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: 0.1em; }

.pull-right {
  float: right; }

.pull-left {
  float: left; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-inverse {
  color: #fff; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * She’s all yours, cap’n... Begin importing your stuff here.
 *
 * Well thank you sir!
 */
@media only screen and (max-width: 480px) {
  .push--top--palm--none {
    margin: 0px !important; }  
  .push--palm {
    margin: 20px !important; }
  .push--top--palm {
    margin-top: 20px !important; }
  .push--right--palm {
    margin-right: 20px !important; }
  .push--bottom--palm {
    margin-bottom: 20px !important; }
  .push--left--palm {
    margin-left: 20px !important; }
  .push--ends--palm {
    margin-top: 20px !important;
    margin-bottom: 20px !important; }
  .push--sides--palm {
    margin-right: 20px !important;
    margin-left: 20px !important; } }

@media only screen and (min-width: 481px) and (max-width: 1023px) {
  .push--top--lap--none {
    margin: 0px !important; }
  .push--lap {
    margin: 20px !important; }
  .push--top--lap {
    margin-top: 20px !important; }
  .push--right--lap {
    margin-right: 20px !important; }
  .push--bottom--lap {
    margin-bottom: 20px !important; }
  .push--left--lap {
    margin-left: 20px !important; }
  .push--ends--lap {
    margin-top: 20px !important;
    margin-bottom: 20px !important; }
  .push--sides--lap {
    margin-right: 20px !important;
    margin-left: 20px !important; } }

.ui-header {
  position: relative;
  overflow: hidden;
  padding: 10px 10px 0 10px; }
  .ui-header .ui-header-logotype img {
    margin: 28px 0 10px 0;
    max-width: 300px; }
  .ui-header #ui-header-siluette {
    position: absolute;
    bottom: 0;
    right: 10px; }
    .ui-header #ui-header-siluette > img {
      border: none; }
  .ui-header #lang-switcher {
    position: absolute;
    right: 8px;
    top: 8px;
    width: 25px; }

@media only screen and (max-width: 480px) {
  .ui-header {
    padding: 5px 0 0 0; }
    .ui-header .ui-header-logotype img {
      margin: 20px 0 0 10px;
      max-width: 200px; }
    .ui-header #ui-header-siluette {
      right: -55%; } }

@media only screen and (min-width: 481px) and (max-width: 1023px) {
  .ui-header #ui-header-siluette {
    right: -10%; } }

.ui-main-nav {
  list-style: none;
  margin: 0 0 1px 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px; }
  .ui-main-nav .ui-nav-item {
    float: left;
    width: 25%;
    height: 50px;
    background: #333;
    text-transform: uppercase;
    border-right: 1px solid #FFF;
    text-align: center; }
    .ui-main-nav .ui-nav-item a, .ui-main-nav .ui-nav-item strong {
      line-height: 50px;
      display: block;
      color: #FFF;
      text-decoration: none;
      cursor: pointer; }
    .ui-main-nav .ui-nav-item:last-child {
      border-right: none; }
    .ui-main-nav .ui-nav-item:hover {
      background: #000; }
  .ui-main-nav .ui-nav-active {
    background: #3397DA; }
    .ui-main-nav .ui-nav-active:hover {
      background: #3397DA; }
    .ui-main-nav .ui-nav-active a {
      cursor: default; }
  .ui-main-nav .ui-active-item {
    background: #000; }
  .ui-main-nav .active-nav {
    background: #E74C3C; }
    .ui-main-nav .active-nav:hover {
      background: #E74C3C; }

.ui-subnav-container {
  position: relative; }
  .ui-subnav-container > .ui-sub-nav {
    display: none;
    position: absolute;
    width: 25%;
    margin: 0;
    z-index: 1;
    padding: 0 1px 0 0; }
    .ui-subnav-container > .ui-sub-nav > .ui-nav-item {
      width: 100%;
      background: #000;
      border-right: none;
      border-top: 1px solid #FFF; }
      .ui-subnav-container > .ui-sub-nav > .ui-nav-item:hover {
        background: #222; }
      .ui-subnav-container > .ui-sub-nav > .ui-nav-item:first-child, .ui-subnav-container > .ui-sub-nav > .ui-nav-item:only-child {
        border-top: none; }
    .ui-subnav-container > .ui-sub-nav:nth-child(2) {
      margin: 0 0 0 25%; }
    .ui-subnav-container > .ui-sub-nav:nth-child(3) {
      margin: 0 0 0 50%; }
    .ui-subnav-container > .ui-sub-nav:nth-child(4) {
      margin: 0 0 0 75%; }
  .ui-subnav-container > .ui-subnav-active {
    display: block; }

@media only screen and (max-width: 1023px) {
  .ui-main-nav {
    margin: 0;
    font-size: 10px; }
  .ui-subnav-container {
    margin: 0; }
    .ui-subnav-container > .ui-sub-nav {
      width: 100%;
      padding: 0; }
      .ui-subnav-container > .ui-sub-nav > .ui-nav-item {
        padding: 0 0 0 20px;
        text-align: left; }
      .ui-subnav-container > .ui-sub-nav:nth-child(2), .ui-subnav-container > .ui-sub-nav:nth-child(3), .ui-subnav-container > .ui-sub-nav:nth-child(4) {
        margin: 0 0 0 0; } }

.ui-footer {
  margin: 50px 0 0 0;
  background: #F7F7F7;
  border-top: 1px solid #C7C8CA;
  height: 318px; }
  .ui-footer p {
    color: #FFF;
    line-height: 50px;
    text-transform: uppercase; }
  .ui-footer .footer-links {
    padding: 50px 0 50px 0;
    text-align: center; }
    .ui-footer .footer-links strong {
      font-size: 28px;
      color: #414042;
      font-weight: bold;
      text-transform: uppercase;
      display: block;
      text-align: center; }
    .ui-footer .footer-links ul {
      list-style: none; }
    .ui-footer .footer-links li {
      text-align: center; }
      .ui-footer .footer-links li > a {
        font-size: 11px;
        font-weight: bold;
        text-transform: uppercase;
        color: #414042;
        text-decoration: none; }
    .ui-footer .footer-links .copyright {
      margin: -10px 0 0 0;
      background: #000; }
    .ui-footer .footer-links .link-collection {
      display: inline-block;
      width: 18%;
      border-right: 1px solid #C7C8CA; }
      .ui-footer .footer-links .link-collection:last-child {
        border-right: none; }
  .ui-footer .siluette-footer {
    margin: 80px 0 0 0;
    background: #333; }
    .ui-footer .siluette-footer > .width-container {
      position: relative;
      text-align: center; }
      .ui-footer .siluette-footer > .width-container > #ui-footer-siluette {
        position: absolute;
        bottom: 100%;
        right: 0;
        width: 100%; }
        .ui-footer .siluette-footer > .width-container > #ui-footer-siluette > img {
          border: none; }
      .ui-footer .siluette-footer > .width-container > ul {
        list-style: none;
        padding: 20px 0 20px 0;
        color: #FFF; }
        .ui-footer .siluette-footer > .width-container > ul > li {
          display: inline;
          text-transform: uppercase; }
          .ui-footer .siluette-footer > .width-container > ul > li span {
            font-weight: bold; }
          .ui-footer .siluette-footer > .width-container > ul > li a {
            color: #FFF;
            text-decoration: none; }
          .ui-footer .siluette-footer > .width-container > ul > li:after {
            content: "\00a0/\00a0"; }
          .ui-footer .siluette-footer > .width-container > ul > li:last-child:after {
            content: none; }

.ui-footer.sv {
  margin: 60px 0 0 0;
  background: #333;
  height: 50px;
  position: relative; }
  .ui-footer.sv p {
    color: #FFF;
    line-height: 50px;
    text-transform: uppercase; }
  .ui-footer.sv #ui-footer-siluette {
    width: 500px;
    position: absolute;
    right: 0;
    top: -65px; }
    .ui-footer.sv #ui-footer-siluette > img {
      border: none; }

@media only screen and (min-width: 481px) and (max-width: 1023px) {
  .ui-footer .footer-links .link-collection {
    width: 24%; } }

@media only screen and (max-width: 480px) {
  .ui-footer {
    height: 361px; }
    .ui-footer .footer-links {
      padding: 30px 0 50px 0; }
      .ui-footer .footer-links .link-collection {
        float: left;
        width: 50%; }
        .ui-footer .footer-links .link-collection:nth-child(-n+2) {
          border-bottom: 1px solid #C7C8CA;
          padding: 0 0 20px 0; }
        .ui-footer .footer-links .link-collection:nth-child(n+3) {
          padding: 20px 0 0 0; }
    .ui-footer .siluette-footer {
      margin: 20px 0 0 0; }
  .ui-footer.sv #ui-footer-siluette {
    width: 100%;
    top: -45px; } }

.site-push {
  min-height: 100%;
  margin-bottom: -341px; }
  .site-push:after {
    height: 341px;
    display: block;
    content: ""; }

.site-push.sv {
  margin-bottom: -75px; }
  .site-push.sv:after {
    height: 75px; }

@media only screen and (max-width: 480px) {
  .site-push {
    margin-bottom: -384px; }
    .site-push:after {
      height: 384px;
      display: block;
      content: ""; }
  .site-push.sv {
    margin-bottom: -95px; }
    .site-push.sv:after {
      height: 95px; } }

.ui-gen-list {
  font-weight: 300; }
  .ui-gen-list .ui-gen-list-item {
    padding: 10px 0;
    background: #FFF;
    border: 1px solid #EDEDED;
    margin: 0 0 10px 0; }
    .ui-gen-list .ui-gen-list-item:last-child {
      margin: 0 0 20px 0; }
    .ui-gen-list .ui-gen-list-item h3 {
      font-size: 36px;
      line-height: 30px;
      font-weight: 300;
      text-overflow: clip;
      text-transform: uppercase;
      margin: 0 0 10px 0; }
    .ui-gen-list .ui-gen-list-item .address-details {
      text-transform: uppercase;
      font-size: 11px;
      line-height: 17px; }
      .ui-gen-list .ui-gen-list-item .address-details > span {
        display: block; }
    .ui-gen-list .ui-gen-list-item p {
      margin: 10px 0 0 0; }

.ui-gen-list-v2 {
  list-style: none; }
  .ui-gen-list-v2 .ui-gen-list-item {
    border-bottom: 1px solid #C7C8CA;
    padding: 40px 0 40px 0;
    font-size: 12px; }
    .ui-gen-list-v2 .ui-gen-list-item:last-child, .ui-gen-list-v2 .ui-gen-list-item:only-child {
      border-bottom: none; }
    .ui-gen-list-v2 .ui-gen-list-item h3 {
      font-size: 30px;
      line-height: 30px;
      font-weight: 300;
      text-overflow: clip;
      text-transform: uppercase;
      margin: 0 0 10px 0; }
    .ui-gen-list-v2 .ui-gen-list-item .go {
      text-decoration: none;
      text-transform: uppercase;
      margin: 10px 0 0 0;
      display: inline-block;
      font-weight: bold; }
      .ui-gen-list-v2 .ui-gen-list-item .go:hover {
        text-decoration: underline; }
    .ui-gen-list-v2 .ui-gen-list-item .ui-gen-image {
      margin: 0 20px 0 0; }

.ui-gen-widget-list {
  list-style: none;
  border: 1px solid #C7C8CA; }
  .ui-gen-widget-list > li {
    padding: 10px 0 10px 15px;
    text-transform: uppercase;
    background: #FFF;
    border-bottom: 1px solid #C7C8CA;
    font-size: 11px;
    font-weight: bold; }
    .ui-gen-widget-list > li > a {
      color: #414042;
      text-decoration: none; }
    .ui-gen-widget-list > li:last-child {
      border-bottom: none; }
  .ui-gen-widget-list .ui-gen-widget-active {
    background: #e74c3c;
    color: #FFF; }

@media only screen and (max-width: 480px) {
  .ui-gen-list .ui-gen-list-item h3 {
    font-size: 24px; }
  .ui-gen-list-v2 .ui-gen-list-item > .grid__item {
    padding-left: 0; }
  .ui-gen-list-v2 .ui-gen-list-item .ui-gen-image {
    margin: 0 10px 10px 0; }
  .ui-gen-list-v2 .ui-gen-list-item .body {
    float: left; }
  .ui-gen-list-v2 .ui-gen-list-item h3 {
    margin: 0;
    font-size: 24px; } }

.ui-gen-single {
  margin: 30px 0 0 0; }
  .ui-gen-single .preamble {
    margin: 10px 0 10px 0; }
  .ui-gen-single .body {
    padding: 0 15px 0 0; }
    .ui-gen-single .body > br {
      line-height: 2em; }
  .ui-gen-single .facts {
    font-weight: bold;
    padding: 5px 0 10px 15px;
    border-left: 1px solid #e74c3c;
    list-style-position: inside; }
    .ui-gen-single .facts > h3 {
      font-size: 20px; }
    .ui-gen-single .facts > ul > li {
      padding: 0 0 10px 0;
      float: left; }
      .ui-gen-single .facts > ul > li:last-child, .ui-gen-single .facts > ul > li:only-child {
        padding: 0; }

.ui-gen-article {
  padding: 10px 10px 10px 10px;
  background: #FFF;
  border: 1px solid #C7C8CA; }
  .ui-gen-article .preamble {
    font-weight: bold; }
  .ui-gen-article .body {
    margin: 10px 0 0 0; }
    .ui-gen-article .body strong {
      display: block;
      font-weight: bold;
      text-transform: uppercase;
      margin: 0 0 2px 0; }

.ui-gen-article-v2 {
  padding: 30px 0 30px 0; }
  .ui-gen-article-v2 .preamble {
    margin: 0 0 10px 0; }
  .ui-gen-article-v2 .body strong {
    display: block; }

@media only screen and (max-width: 1023px) {
  .ui-gen-single .facts {
    padding: 10px 0 10px 0;
    margin: 10px 0 15px 0;
    border-left: none;
    border-top: 1px solid #e74c3c;
    border-bottom: 1px solid #e74c3c; }
    .ui-gen-single .facts > ul > li {
      padding: 0 10px 10px 10px; }
  .ui-gen-article-v2 {
    padding: 25px 0 15px 0; } }

@media only screen and (max-width: 480px) {
  .ui-gen-single .facts > ul > li {
    padding: 0 0 10px 10px; }
    .ui-gen-single .facts > ul > li:last-child, .ui-gen-single .facts > ul > li:only-child {
      padding: 0 0 0 10px; }
  .ui-gen-article-v2 {
    padding: 10px 0 15px 0; }
    .ui-gen-article-v2 > .grid__item {
      padding-left: 0; }
    .ui-gen-article-v2 .preamble {
      margin: 10px 0 10px 0; } }

.root-push {
  background: #333; }

.root-body {
  max-width: 100%; }

.ui-root-main {
  padding: 100px 0 0 0;
  background: #F7F7F7; }
  .ui-root-main #ui-root-logotype {
    max-width: 300px;
    margin: 0 auto; }
  .ui-root-main .ui-language-select {
    width: 100%;
    max-width: 190px;
    margin: 20px auto 30px auto;
    list-style: none; }
    .ui-root-main .ui-language-select li {
      float: left; }
      .ui-root-main .ui-language-select li:first-child {
        margin: 0 15px 0 0; }
      .ui-root-main .ui-language-select li:last-child {
        margin: 0 0 0 15px; }
      .ui-root-main .ui-language-select li img {
        height: 50px;
        border: 1px solid #414042; }

.ui-top10 .ui-top10-heading {
  color: #FFF;
  border-radius: 10px 10px 0 0;
  padding: 10px 10px 10px 10px;
  font-weight: bold;
  font-size: 24px;
  line-height: 24px;
  text-transform: uppercase;
  text-align: center;
  background-color: #C0392B;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#E74C3C), to(#C0392B));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #E74C3C, #C0392B);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #E74C3C, #C0392B);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #E74C3C, #C0392B);
  /* IE10 */
  background-image: -o-linear-gradient(top, #E74C3C, #C0392B);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #E74C3C, #C0392B);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#E74C3C', EndColorStr='#C0392B'); }
.ui-top10 ul {
  border: 1px solid #C7C8CA;
  list-style: none; }
  .ui-top10 ul > li {
    padding: 10px 0 10px 10px;
    border-bottom: 1px solid #C7C8CA;
    font-weight: 400;
    font-size: 15px; }
    .ui-top10 ul > li:last-child, .ui-top10 ul > li:only-child {
      border-bottom: none; }
    .ui-top10 ul > li > span {
      color: #C0392B;
      display: inline-block;
      font-weight: bold;
      margin: 0 3px 0 0; }
    .ui-top10 ul > li > a {
      text-transform: uppercase; }


.event-place img {
  height: 15px;
  width: 15px;
}

.event-place {
  font-size: 20px;
  text-align: right;
}
@media only screen  and (max-width: 480px) {
  .event-place {
    
    text-align: left;
  }
}

.event-body {

}

.event-body .fb-icon {
  width: 40px;
  height: 40px;
  float: left;
  margin-right: 10px;
}
.event-body .fb-owner {
  height: 40px;
  float: left;
  line-height: 20px;
}

.event-body .fb-owner a {
    color: #3b5998;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.event-body .fb-owner span.info {
  font-size: 12px;
  color: #9197a3;
  font-weight: normal;
}

.event-facts .day-month-year {

  border-left:5px solid #ff0000;
  padding-left: 10px;
  
}
.event-facts .day {
  font-size: 35px;
  line-height: 35px;
  font-weight: bold;
}
.event-facts .month-day {
  margin-top: 3px;
  margin-left: 5px;
}
.event-facts .year-month {
  font-size: 15px;
  font-weight: bold;
  line-height: 16px;
  display: block;
}
.event-facts .day-text {
    font-size: 12px;
}
.event-list-date .date {
      font-size: 25px;
    border-left: 4px solid #f00;
    padding-left: 10px;

}
.event-list-date .border {
    padding-bottom: 10px;
    border-bottom: 1px solid #aaa;  
}

.event-adlist {

}
.event-adlist figure {
  height: 80px;
  
  background-position: center;
  background-size: cover !important;
}  
.event-adlist .info {
  white-space: nowrap;
  padding-left: 10px;
}
.event-adlist .info .title {
    font-size: 25px;
    text-transform: uppercase;  
    overflow-x: hidden;
    text-overflow: ellipsis;
}

@media only screen and (max-width: 480px) {
  .event-adlist .info .title {
      font-size: 16px;
      text-transform: uppercase;  
  }  
  .event-list-date .date {
        font-size: 15px;
      border-left: 4px solid #f00;
      padding-left: 10px;

  }  
}

.event-adlist .info .location {
  font-size: 15px;
  background: url(/assets/img/location.png) no-repeat;
  background-size: 15px;
  padding-left: 20px;
  display: block;
  background-position-y: 3px;  
    overflow-x: hidden;
    text-overflow: ellipsis;  
}



/**
* Table-helpers
**/
.display-table {
  display: table;
  border-collapse: collapse; }

.display-tablerow {
  display: table-row; }

.display-tablecell {
  display: table-cell; }

.valign-middle {
  vertical-align: middle; }

.nounderline {
  text-decoration: none;
}
.hotel-list-wrapper .display-tablerow {
    border-bottom: 10px solid #fff;
    background: #fcfcfc;  

}
h2.selected-hotels {
    font-weight: normal;
    /* border-bottom: 2px solid #faa; */
    border-bottom: 1px solid #E74C3C;
    padding-bottom: 5px;
    margin-bottom: 5px;
    font-size: 24px;
    text-transform: uppercase;
}  
}
.hotel-go-body {
  max-width: 500px;
  font-size: 14px;
  margin: 100px auto 0 auto; }
  .hotel-go-body .white {
    border-radius: 10px;
    padding: 40px; }
  .hotel-go-body .logo img {
    max-height: 40px;
    text-align: center; }
  .hotel-go-body .arrow {
    font-size: 20px;
    text-align: center;
    color: #aaa;
    white-space: nowrap; }
  .hotel-go-body .chosen {
    font-size: 12px;
    font-weight: bold; }
  .hotel-go-body .go-direct {
    background-color: #4b981b;
    font-size: 12px;
    color: white;
    width: 100%;
    margin-top: 10px;
    font-weight: 400;
    padding: 9px;
    border-radius: 0px; }

.hotel-go-main {
  padding: 0 10px 0 10px; }
  .hotel-go-main a {
    text-decoration: none; }

.hotel-tips-body {
  background-color: #224178;
  color: #fff;
  border: 0;
  font-size: 12pt;
  text-decoration: none;
  font-weight: 200;
  word-wrap: break-word;
  padding: 10px;
  margin-top: -5px; }
  .hotel-tips-body h5 {
    line-height: 26px;
    font-size: 22px;
    font-weight: normal; }
  .hotel-tips-body .all-hotels {
    color: #fff;
    background: #ffbb39;
    text-decoration: none;
    padding: 5px 10px;
    float: right;
    /* margin-right: -20px; */
    /* margin-bottom: -20px; */
    margin-top: 10px;
    /* width: 50%; */
    border-radius: 5px; }
  .hotel-tips-body .hotel {
    background: #fff;
    color: #000;
    /* border-radius: 3px; */
    padding: 5px;
    margin-top: 7px;
    font-weight: bold;
    font-size: 11px;
    text-transform: uppercase;
    white-space: nowrap; }
    .hotel-tips-body .hotel img {
      height: 120px;
      width: 100%; }
    .hotel-tips-body .hotel .name {
      font-weight: normal;
      overflow: hidden;
      text-overflow: ellipsis; }
    .hotel-tips-body .hotel .price {
      text-align: right;
      font-size: 15px;
      color: #000;
      font-weight: 400;
      vertical-align: middle;
      font-weight: normal;
      text-transform: none; }
      .hotel-tips-body .hotel .price span {
        font-weight: 600; }

.hotels .hotels-lunch {
  font-weight: 700; }
  .hotels .hotels-lunch .hotels-lunch-day {
    background-color: #f5f5f5;
    padding: 15px 0 15px 0;
    border-right: 1px solid #fff;
    cursor: pointer; }
    .hotels .hotels-lunch .hotels-lunch-day:hover {
      background-color: #e5e5e5; }
  .hotels .hotels-lunch .hotels-lunch-day-active {
    background-color: #DA4453;
    padding: 15px 0 15px 0;
    color: #fff;
    border-right: 1px solid #fff;
    position: relative; }
    .hotels .hotels-lunch .hotels-lunch-day-active:after {
      top: 100%;
      left: 50%;
      border: solid transparent;
      content: " ";
      height: 0;
      width: 0;
      position: absolute;
      pointer-events: none;
      border-color: rgba(218, 68, 83, 0);
      border-top-color: #DA4453;
      border-width: 8px;
      margin-left: -8px; }
  .hotels .hotels-lunch .hotels-lunch-day-inactive {
    background-color: #f5f5f5;
    padding: 15px 0 15px 0;
    color: #999;
    border-right: 1px solid #fff; }
.hotels .hotel_small_header_container {
  border-bottom: 2px solid #DA4453; }
  .hotels .hotel_small_header_container .hotel_small_header {
    background-color: #DA4453;
    color: #fff;
    text-transform: uppercase;
    padding: 3px 5px 1px 5px;
    display: inline-block; }
.hotels .hotel_small_header_container_hotel {
  border-bottom: 2px solid #333; }
  .hotels .hotel_small_header_container_hotel .hotel_small_header_hotel {
    background-color: #333;
    color: #fff;
    text-transform: uppercase;
    padding: 3px 5px 1px 5px;
    display: inline-block; }
.hotels .hotel-description {
  font-size: 14px; }
  .hotels .hotel-description .chain {
    width: 150px;
    height: 150px;
    float: right;
    border: 1px solid #eee;
    margin-left: 10px;
    margin-bottom: 10px; }
.hotels .hotel-description p {
  margin-bottom: 10px; }
.hotels .hotel-small-list {
  list-style: none;
  margin-bottom: 10px; }
  .hotels .hotel-small-list li {
    border-bottom: 1px solid #e5e5e5;
    padding: 5px 10px 5px 5px;
    text-transform: uppercase;
    font-weight: 700; }
    .hotels .hotel-small-list li:last-child {
      border-bottom: 0; }
    .hotels .hotel-small-list li:hover {
      background-color: #f5f5f5; }
  .hotels .hotel-small-list .menu-download {
    float: right;
    background-color: #3F9F3F;
    padding: 8px 8px;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 10px; }

.hotels-show-more {
  width: 100%;
  padding: 10px;
  background-color: #37BC9B;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  display: block; }

.hotels-top-headline {
  font-weight: 500;
  font-size: 34px;
  line-height: 40px; }

.restautants-top-image {
  width: 90px;
  display: block;
  padding-right: 10px; }

.hotels-lunch-item {
  display: none; }

.hotels-lunch-item-active .hotels-lunch-item-list {
  list-style: none;
  margin-top: 15px; }
  .hotels-lunch-item-active .hotels-lunch-item-list li {
    padding: 5px 10px 5px 5px;
    text-transform: uppercase;
    font-weight: 700; }
    .hotels-lunch-item-active .hotels-lunch-item-list li span {
      color: #DA4453; }

.hotel-loading-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 50;
  opacity: 0; }

.hotel-loading-wrapper {
  position: absolute;
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 52px;
  z-index: 51;
  margin-left: calc(50% - 50px);
  margin-top: 50px;
  padding: 18px 8px;
  border: 5px solid #000; }
  .hotel-loading-wrapper .hotel-loading {
    font-size: 0px;
    padding: 20px 10px 10px 10px; }

.hotel-room-list {
  border-bottom: 1px solid #efefef; }
  .hotel-room-list .hotel-room-list-iconwrap {
    width: 140px;
    min-width: 60px; }
    .hotel-room-list .hotel-room-list-iconwrap img {
      max-height: 100px;
      width: 100%; }
    .hotel-room-list .hotel-room-list-iconwrap .hotel-list-icon-on {
      font-size: 14px;
      padding-left: 10px;
      color: #3bafda; }
    .hotel-room-list .hotel-room-list-iconwrap .hotel-list-icon-off {
      font-size: 14px;
      padding-left: 10px;
      color: #eee;
      display: none; }
  .hotel-room-list .hotel-room-list-textwrap {
    min-width: 134px;
    padding: 10px;
    padding-right: 0; }
    .hotel-room-list .hotel-room-list-textwrap .room-name {
      font-size: 16px;
      font-weight: 0; }
    .hotel-room-list .hotel-room-list-textwrap .room-description {
      font-size: 11px; }
      .hotel-room-list .hotel-room-list-textwrap .room-description .facilities {
        display: none; }
      .hotel-room-list .hotel-room-list-textwrap .room-description .policies {
        display: none; }
    .hotel-room-list .hotel-room-list-textwrap .only-left {
      background: #E01717;
      padding: 2px 10px;
      color: #fff;
      border-radius: 5px;
      float: right;
      margin-left: 8px; }
  .hotel-room-list .hotel-room-list-pricewrap {
    min-width: 160px; }
    .hotel-room-list .hotel-room-list-pricewrap .price {
      font-size: 19px;
      font-weight: normal;
      line-height: 18px; }
    .hotel-room-list .hotel-room-list-pricewrap .not-available {
      font-size: 12px;
      color: #aaa; }
      .hotel-room-list .hotel-room-list-pricewrap .not-available a {
        text-decoration: underline !important; }
    .hotel-room-list .hotel-room-list-pricewrap .price-from-text {
      text-transform: uppercase;
      font-size: 10px; }
    .hotel-room-list .hotel-room-list-pricewrap .high-price {
      color: #E84646;
      text-decoration: line-through; }
    .hotel-room-list .hotel-room-list-pricewrap a {
      text-decoration: none; }
    .hotel-room-list .hotel-room-list-pricewrap .offer-go {
      background-color: #4B981B;
      padding: 9px;
      font-size: 12px;
      color: #fff;
      border-radius: 0;
      width: 100%;
      /* text-transform: uppercase; */
      /* bottom: 0; */
      /* position: relative; */
      margin-top: 10px;
      font-weight: 400; }

.hotel-list .fa-star {
  font-size: 14px;
  color: #F3D14B; }
.hotel-list .icon-star:before {
  margin-left: 0;
  margin-right: 0; }
.hotel-list .hotel-list-imagewrap {
  width: 150px;
  /*padding: 10px;
    border-left: 4px solid #da4453;*/ }
  .hotel-list .hotel-list-imagewrap a {
    position: relative;
    display: block; }
  .hotel-list .hotel-list-imagewrap .chain {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 0; }
.hotel-list .hotel-list-image {
  width: 140px;
  display: block;
  height: 100px; }
.hotel-list .hotel-list-iconwrap {
  width: 140px;
  min-width: 60px; }
  .hotel-list .hotel-list-iconwrap .hotel-list-icon-on {
    font-size: 14px;
    padding-left: 10px;
    color: #3bafda; }
  .hotel-list .hotel-list-iconwrap .hotel-list-icon-off {
    font-size: 14px;
    padding-left: 10px;
    color: #eee;
    display: none; }
.hotel-list .hotel-list-textwrap {
  min-width: 134px;
  padding: 10px;
  padding-right: 10px; }
  .hotel-list .hotel-list-textwrap .hotel-list-name {
    font-size: 21px;
    text-transform: uppercase;
    font-weight: 0; }
    .hotel-list .hotel-list-textwrap .hotel-list-name .hotel-list-distance {
      color: #aaa; }
  .hotel-list .hotel-list-textwrap .only-left {
    background: #E01717;
    padding: 2px 10px;
    color: #fff;
    border-radius: 5px;
    float: right;
    margin-left: 8px; }
.hotel-list .hotel-list-pricewrap {
  min-width: 165px;
  border-left: 1px solid #eee; }
  .hotel-list .hotel-list-pricewrap .offer-go {
    background-color: #4B981B;
    padding: 9px;
    font-size: 11px;
    color: #fff;
    border-radius: 0;
    width: 100%;
    /* text-transform: uppercase; */
    /* bottom: 0; */
    /* position: relative; */
    margin-top: 10px;
    font-weight: 400; }
  .hotel-list .hotel-list-pricewrap .price-button {
    font-size: 19px;
    font-weight: normal;
    line-height: 18px; }
  .hotel-list .hotel-list-pricewrap .not-available {
    font-size: 12px;
    color: #aaa; }
    .hotel-list .hotel-list-pricewrap .not-available a {
      text-decoration: underline !important;
      color: #4B981B;
      font-weight: 400; }
  .hotel-list .hotel-list-pricewrap .price-from-text {
    text-transform: uppercase;
    font-size: 10px; }
  .hotel-list .hotel-list-pricewrap .high-price {
    color: #E84646;
    text-decoration: line-through;
    display: none; }
  .hotel-list .hotel-list-pricewrap a {
    text-decoration: none; }

.hotel-search-wrapper {
  position: relative; }
  .hotel-search-wrapper .hotel-search-icon {
    position: absolute;
    right: 0;
    top: 5%;
    font-size: 25px;
    color: #999; }
  .hotel-search-wrapper #activity-search {
    padding: 10px;
    border: 1px solid #666;
    background-color: #fff;
    width: 100%; }

@media only screen and (max-width: 480px) {
  .hotel-tips-body {
    padding: 10px 10px 10px 0; }
  .hotel-room-list-iconwrap {
    display: block; }
  .hotel-room-list {
    display: block; }
  .hotel-room-list .hotel-room-list-textwrap {
    padding-left: 0; }
  .hotel-room-list .hotel-room-list-iconwrap img {
    max-height: 200px;
    width: 100%;
    margin-top: 10px; }
  .hotel-room-list .hotel-room-list-textwrap .room-name {
    font-size: 12px;
    font-weight: 0; }
  .hotel-room-list .hotel-room-list-iconwrap {
    width: 100%;
    min-width: 60px; }
  .hotel-list-wrapper .display-tablerow {
    display: block; }
  .hotel-list-imagewrap {
    display: block; }
  .hotels-category-list li {
    padding-left: 10px; }
  .hotel-list .hotel-list-image {
    width: 100%;
    height: 180px !important; }
  .hotel-list-imagewrap {
    padding: 0px !important;
    width: 100% !important; }
  .hotel-list .hotel-list-imagewrap .chain {
    right: 0; }
  .hotels-top-headline {
    font-weight: 100;
    font-size: 20px;
    line-height: 20px; }
  .restautants-top-image {
    width: 50px;
    display: block;
    padding-right: 10px; }
  .hotel-list .hotel-list-textwrap {
    padding-top: 0;
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px; }
    .hotel-list .hotel-list-textwrap .points {
      display: inline-block;
      margin: 5px 0; }
    .hotel-list .hotel-list-textwrap .hotel-list-name {
      font-size: 16px;
      font-weight: 700; }
    .hotel-list .hotel-list-textwrap .hotel-list-address {
      display: block; }
    .hotel-list .hotel-list-textwrap .hotel-list-dot {
      display: none; }
    .hotel-list .hotel-list-textwrap .hotel-list-phone {
      display: block; } }

.cooperation-with {
  float: right;
  font-size: 10px;
  font-weight: normal;
  text-transform: none; }
  .cooperation-with .with-booking {
    width: 80px;
    vertical-align: middle;
    margin-left: 5px; }

.hotel-header {
  padding: 10px;
  background-color: #ffbb39;
  color: #003580;
  position: relative; }
  .hotel-header .booking-info {
    line-height: 16px;
    font-size: 13px;
    margin-top: 5px;
    font-weight: bold;
    color: #FFFFFF;
    float: right;
    padding: 11px;
    background-color: #224178;
    border-radius: 12px; }
  .hotel-header .basta-pris-garanti {
    position: absolute;
    right: 9px;
    top: -30px;
    z-index: 10;
    width: 100px; }
  .hotel-header .show-all {
    color: #fff; }
  .hotel-header .bubble {
    position: relative;
    width: 220px;
    height: 60px;
    padding: 9px 12px;
    font-size: 12px;
    line-height: 13px;
    background: #FFFFFF;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: #7F7F7F solid 2px;
    float: right;
    color: #000;
    text-transform: none; }
  .hotel-header .bubble:after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 11px 16px 0;
    border-color: #FFFFFF transparent;
    display: block;
    width: 0;
    z-index: 1;
    bottom: -11px;
    left: 29px; }
  .hotel-header .bubble:before {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 12px 17px 0;
    border-color: #7F7F7F transparent;
    display: block;
    width: 0;
    z-index: 0;
    bottom: -14px;
    left: 28px; }

.hotel-header .hotel-select {
  background-color: #fff;
  padding: 5px;
  color: #000;
  font-size: 16px;
  border-radius: 5px; }
  .hotel-header .hotel-select input[type=text] {
    padding: 5px;
    border: none;
    width: 100%; }
  .hotel-header .hotel-select .hotel-searchresult {
    display: none;
    padding: 10px;
    border-bottom: 5px solid #0896FF;
    right: 5%;
    z-index: 11;
    position: absolute;
    background-color: #fff;
    font-size: 14px;
    left: 0%; }
    .hotel-header .hotel-select .hotel-searchresult .subnav-search-header {
      padding: 5px;
      background-color: #0896FF;
      font-size: 14px;
      font-weight: 500;
      color: #fff; }
    .hotel-header .hotel-select .hotel-searchresult ul {
      list-style: none;
      width: 100%; }
      .hotel-header .hotel-select .hotel-searchresult ul li {
        display: block;
        padding: 4px 10px 4px 10px; }
        .hotel-header .hotel-select .hotel-searchresult ul li a {
          text-transform: uppercase;
          font-size: 16px;
          font-weight: 500;
          text-decoration: none;
          line-height: 14px; }
          .hotel-header .hotel-select .hotel-searchresult ul li a .subnav-search-event {
            font-size: 14px;
            display: block; }
          .hotel-header .hotel-select .hotel-searchresult ul li a .subnav-search-amount {
            font-size: 10px;
            color: #a5a5a5; }
          .hotel-header .hotel-select .hotel-searchresult ul li a .subnav-search-subcity {
            font-size: 10px;
            color: #a5a5a5; }
          .hotel-header .hotel-select .hotel-searchresult ul li a:hover {
            text-decoration: underline; }

.hotel-search-parent {
  position: relative; }

.hotel-select-guests {
  padding: 8px !important; }

.hotel-select p {
  font-size: 12px;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px; }

.hotel-select select {
  padding: 5px 0px;
  width: 100%;
  border: none;
  box-shadow: none;
  background: transparent;
  background-image: none;
  /* -webkit-appearance: none;*/ }

.hotel-sort-select {
  float: right;
  width: 150px;
  background-color: #fff;
  padding: 5px;
  color: #000;
  font-size: 12px;
  border-radius: 5px; }
  .hotel-sort-select select {
    padding: 5px 0px;
    width: 100%;
    border: none;
    box-shadow: none;
    background: transparent;
    background-image: none;
    /* -webkit-appearance: none;*/ }

.hotel-submit {
  background: #0896ff;
  border: 0;
  border-radius: 5px;
  width: 100%;
  color: #fff;
  text-transform: uppercase;
  padding: 9px;
  font-size: 20px; }

.hotel-search {
  border: 0; }

.hotel-search::-webkit-input-placeholder {
  color: black; }

.hotel-search:-moz-placeholder {
  /* Firefox 18- */
  color: black; }

.hotel-search::-moz-placeholder {
  /* Firefox 19+ */
  color: black; }

.hotel-search:-ms-input-placeholder {
  color: black; }

.hotel-search:placeholder {
  color: black; }

.hotel-select p a {
  font-size: 10px;
  color: #DF8A6F; }

.select-style select:focus {
  outline: none; }

.hotels-category-list {
  font-size: 14px;
  text-transform: uppercase;
  list-style: none; }

.hotels-category-list a {
  text-decoration: none; }

.hotels-category-list li {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px; }

.hotels-category-list li:last-child {
  border-bottom: 0; }

.hotels-category-list li span {
  font-size: 14px;
  color: #888;
  text-transform: uppercase; }

.hotels-category-list li span.count {
  font-size: 12px;
  color: #aaa;
  text-transform: none; }

.ll-skin-nigran {
  font-size: 90%; }

.ll-skin-nigran .ui-widget {
  font-family: "Helvetica Neue", "Trebuchet MS", Tahoma, Verdana, Arial, sans-serif;
  background: #29a2d9;
  border: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  box-shadow: 0 1px 3px #252525; }

.ll-skin-nigran .ui-datepicker {
  padding: 0; }

.ll-skin-nigran .ui-datepicker-header {
  border: none;
  border-bottom: 1px solid #2d97cb;
  background: transparent;
  font-weight: normal;
  font-size: 11px;
  text-transform: uppercase; }

.ll-skin-nigran .ui-datepicker-header .ui-state-hover {
  background: transparent;
  border-color: transparent;
  cursor: pointer;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0; }

.ll-skin-nigran .ui-datepicker .ui-datepicker-title {
  margin-top: 1.5em;
  margin-bottom: 1em; }

.ll-skin-nigran .ui-datepicker .ui-datepicker-prev-hover, .ll-skin-nigran .ui-datepicker .ui-datepicker-next-hover, .ll-skin-nigran .ui-datepicker .ui-datepicker-next, .ll-skin-nigran .ui-datepicker .ui-datepicker-prev {
  top: 1.7em;
  border: none; }

.ll-skin-nigran .ui-datepicker .ui-datepicker-prev-hover {
  left: 2px; }

.ll-skin-nigran .ui-datepicker .ui-datepicker-next-hover {
  right: 2px; }

.ll-skin-nigran .ui-datepicker .ui-datepicker-next span, .ll-skin-nigran .ui-datepicker .ui-datepicker-prev span {
  background-image: url(/assets/img/ui-icons_ffffff_256x240.png);
  background-position: -32px -32px;
  margin-top: 0;
  top: 0;
  font-weight: normal; }

.ll-skin-nigran .ui-datepicker .ui-datepicker-prev span {
  background-position: -96px -32px; }

.ll-skin-nigran .ui-datepicker .ui-datepicker-prev-hover span {
  background-position: -96px -48px; }

.ll-skin-nigran .ui-datepicker .ui-datepicker-next-hover span {
  background-position: -32px -48px; }

.ll-skin-nigran .ui-datepicker table {
  margin: 0; }

.ll-skin-nigran .ui-datepicker th {
  padding: 3em 0;
  color: #9fd9f1;
  font-size: 8px;
  font-weight: normal;
  text-shadow: 0 0 2px #45c4f8;
  text-transform: uppercase;
  border: none;
  border-top: 1px solid #3fabdc; }

.ll-skin-nigran .ui-datepicker td {
  border: none;
  padding: 0; }

.ll-skin-nigran td .ui-state-default {
  background: transparent;
  border: none;
  text-align: center;
  padding: 1em 0;
  margin: 0;
  font-weight: normal;
  color: #efefef;
  font-size: 12px; }

.ll-skin-nigran td .ui-state-active, .ll-skin-nigran td .ui-state-hover {
  background: #1b7fb0;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px; }

@media only screen and (min-width: 481px) and (max-width: 1023px) {
  .hotels-top-headline {
    font-weight: 100;
    font-size: 26px;
    line-height: 26px; }
  .restautants-top-image {
    width: 60px;
    display: block;
    padding-right: 10px; } }



.tours-adlist {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #aaa;
}

.tours-adlist .details {
    margin-top: 10px;
    color: #fff;
    font-weight: bold;
    border: 0 none;
    font-size: 16px;
    line-height: 1.45;
    text-align: left;
    background-color: #e36f22;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgi…pZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
    background-size: 100%;
    background-image: -webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e88328),color-stop(100%,#dd591b));
    background-image: -moz-linear-gradient(#e88328,#dd591b);
    background-image: -webkit-linear-gradient(#e88328,#dd591b);
    background-image: linear-gradient(#e88328,#dd591b);
    -moz-border-radius: 23px;
    -webkit-border-radius: 23px;
    border-radius: 23px;
    display: block;
    cursor: pointer;
    text-transform: uppercase;
    padding: 10px 18px;  

}
.tours-adlist .price_sub {
  font-size: 12px;
  font-weight: normal;

}
.tours-adlist .price {
  font-size: 25px;
  margin-top: 10px;
  text-align: right;
  font-weight: 500;
  margin-left: 5px;
}
.tours-adlist .duration {
  white-space: normal;
}
.tours-adlist .rating {
  margin: 2px 0;
}
.tours-adlist .producttext {
  white-space: normal;
  font-size: 12px;
  line-height: 20px;  
}
.tours-adlist .duration {
  color: #777;  
}
.tours-adlist figure {
  height: 130px;
  
  background-position: center;
  background-size: cover !important;
}  
.tours-adlist .info {
  white-space: normal;
  padding-left: 10px;
}
.tours-adlist .info .title {
    font-size: 20px;
    text-transform: uppercase;  
    overflow-x: hidden;
    text-overflow: ellipsis;
    font-weight: 400;
}

@media only screen and (max-width: 480px) {
  .tours-adlist .info {
    padding-left: 0;
    margin-top: 10px;
    white-space: normal;
  }
  .tours-adlist .info .title {
      font-size: 16px;
      text-transform: uppercase;  
  }  
  .tours-list-date .date {
        font-size: 15px;
      border-left: 4px solid #f00;
      padding-left: 10px;

  }  
  .tours-adlist .price {
    clear: both;
  }
}

.tours-adlist .info .location {
  font-size: 15px;
  background: url(/assets/img/location.png) no-repeat;
  background-size: 15px;
  padding-left: 20px;
  display: block;
  background-position-y: 3px;  
    overflow-x: hidden;
    text-overflow: ellipsis;  
}








.event-adbox {
  position: relative; }
  .event-adbox figure {
    height: 160px;
    width: 100%;
    background-position: center;
    background-size: cover !important;
  }
  .event-adbox a {
    text-decoration: none; }
  .event-adbox .ui-adbox-heading {
    color: #FFF;
    border-radius: 10px 10px 0 0;
    padding: 10px 10px 10px 10px;
    font-weight: bold;
    font-size: 24px;
    line-height: 24px;
    text-transform: uppercase;
    text-align: center;
    background-color: #1A272F;
    /* Fallback Color */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#414042), to(#1A272F));
    /* Saf4+, Chrome */
    background-image: -webkit-linear-gradient(top, #414042, #1A272F);
    /* Chrome 10+, Saf5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(top, #414042, #1A272F);
    /* FF3.6 */
    background-image: -ms-linear-gradient(top, #414042, #1A272F);
    /* IE10 */
    background-image: -o-linear-gradient(top, #414042, #1A272F);
    /* Opera 11.10+ */
    background-image: linear-gradient(top, #414042, #1A272F);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#414042', EndColorStr='#1A272F'); }
  .event-adbox .info {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #666;
    background: rgba(0, 0, 0, 0.6);
    color: #FFF;
    text-transform: uppercase;
    font-size: 12px;
    padding: 10px 10px 10px 10px;
    font-weight: bold;
    text-align: center; }

.ui-adbox {
  position: relative; }
  .ui-adbox a {
    text-decoration: none; }
  .ui-adbox .ui-adbox-heading {
    color: #FFF;
    border-radius: 10px 10px 0 0;
    padding: 10px 10px 10px 10px;
    font-weight: bold;
    font-size: 24px;
    line-height: 24px;
    text-transform: uppercase;
    text-align: center;
    background-color: #C0392B;
    /* Fallback Color */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#E74C3C), to(#C0392B));
    /* Saf4+, Chrome */
    background-image: -webkit-linear-gradient(top, #E74C3C, #C0392B);
    /* Chrome 10+, Saf5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(top, #E74C3C, #C0392B);
    /* FF3.6 */
    background-image: -ms-linear-gradient(top, #E74C3C, #C0392B);
    /* IE10 */
    background-image: -o-linear-gradient(top, #E74C3C, #C0392B);
    /* Opera 11.10+ */
    background-image: linear-gradient(top, #E74C3C, #C0392B);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#E74C3C', EndColorStr='#C0392B'); }
  .ui-adbox .info {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #666;
    background: rgba(0, 0, 0, 0.6);
    color: #FFF;
    text-transform: uppercase;
    font-size: 12px;
    padding: 10px 10px 10px 10px;
    font-weight: bold;
    text-align: center; }

.airport-adbox {
  border: 1px solid #C7C8CA;
  border-radius: 10px 10px 10px 10px; }
  .airport-adbox a {
    text-decoration: none; }
  .airport-adbox img {
    vertical-align: middle;
    border-radius: 10px 0 0 10px; }
  .airport-adbox p {
    text-transform: uppercase;
    font-size: 22px;
    line-height: 22px;
    text-align: center;
    margin: 0 0 0 20px;
    display: inline; }
    .airport-adbox p strong {
      color: #C0392B;
      font-weight: bold; }

.checklist ul {
  background: #F1F2F2;
  border: 1px solid #E6E7E8;
  list-style: none;
  padding: 10px 0 10px 20px; }
  .checklist ul li {
    padding: 3px 0 3px 0;
    text-transform: uppercase; }
    .checklist ul li .fa {
      margin: 0 4px 0 0;
      color: #C0392B; }

@media only screen and (max-width: 1023px) {
  .airport-adbox p {
    font-size: 24px;
    line-height: 24px;
    margin: 0 0 0 20px;
    font-weight: bold; }
    .airport-adbox p > span {
      display: none; }
  .checklist ul {
    padding: 5px 0 5px 5px; } }

@media only screen and (max-width: 480px) {
  .airport-adbox p {
    font-size: 18px;
    line-height: 18px;
    margin: 0 0 0 5px; } }

.ui-ads-main {
  margin: 50px 0 0 0;
  text-align: center;
  width: 100%; }

.cph-adsense {
  width: 728px;
  height: 90px; }

@media only screen and (max-width: 1023px) {
  .ui-ads-main {
    width: 100%; }
  .cph-adsense {
    width: 320px;
    height: 100px; } }

html {
  height: 100%;
  background: #FFF; }

body {
  width: 100%;
  height: 100%;
  font-weight: 300; }

.width-container {
  margin: 0 auto;
  max-width: 1024px; }

figure > img {
  border: 1px solid #C7C8CA;
  width: 100%; }

ul, ol {
  margin: 0; }

a {
  color: #000; }

a.go:after {
  content: " »"; }

.pop-ad figure > img {
  border: none; }

.grid__item.no__push {
  margin-left: -10px; }

.grid__item.no__padd {
  padding-left: 0; }
.grid-m {
  margin-left: -20px !important;
}
#introduction header {
  background: #F3F3F3;
  padding: 10px 0 10px 10px;
  margin: 0 0 10px 0; }
#introduction section {
  margin: 20px 0 0 0; }
#introduction i.fa {
  font-size: 24px;
  line-height: 24px;
  color: #BBB;
  margin: 0 5px 0 0; }
#introduction h3, #introduction h4 {
  color: #C75533;
  font-size: 24px;
  line-height: 24px;
  font-weight: normal;
  display: inline-block; }
#introduction section p {
  font-size: 13px;
  line-height: 20px;
  font-weight: 400; }
#introduction section p + p {
  margin: 20px 0 0 0; }
#introduction #boroughs strong {
  color: #C75533;
  text-transform: uppercase;
  display: block;
  font-size: 14px; }

.ui-home .preamble {
  font-size: 19px;
  line-height: 22px;
  font-weight: 500;
  color: #666;
  margin: 0 0 20px 0; }
.ui-home .body {
  font-size: 13px;
  line-height: 20px; }

.ui-main .ui-welcome > h1 {
  margin: 0 auto;
  text-align: center; }
.ui-main .ui-welcome > p {
  margin: 0 auto;
  text-align: center; }

.ui-airport-iframe {
  padding: 30px 0 30px 0; }

.light-header, .bold-header {
  font-size: 38px;
  font-weight: 300;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  color: #e74c3c; }

.bold-header {
  font-weight: 700; }

.preamble {
  font-weight: 700;
  font-size: 14px;
  line-height: 18px; }

.body {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px; }
  .body strong {
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase; }

.page-heading {
  color: #414042;
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  margin: 20px 0 0 0;
  border-bottom: 1px solid #E74C3C; }

.page-preamble {
  margin: 10px 0 10px 0;
  font-weight: bold;
  font-size: 14px;
  line-height: 18px; }

.go-button {
  display: inline-block;
  height: 35px;
  line-height: 35px;
  background: #e74c3c;
  color: #FFF;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0 10px;
  border-radius: 4px;
  margin: 10px 0 0 0; }
  .go-button:after {
    content: " »"; }

.cph-adsense {
  width: 728px;
  height: 90px; }

@media only screen and (min-width: 1023px) {
  /* UGLY FIX */
  #main .grid .three-quarters {
    width: 69%;
    /*float: right !important;*/
  }
  #main .grid .one-quarter {
   width: 31%; 
   /*float: left !important;*/
  }  
}
@media only screen and (min-width: 1150px) {
  .right-ads {
    float: right;
    width: 300px;
    margin-left: 10px;
    margin-top: 8px;
  }
  .main-width-container {
    float: left;
  }
  .site-wrapper {
    width: 1354px;
    margin: 0 auto;
    padding: 0 10px;
  }
}
@media only screen and (max-width: 1149px) {
  .right-ads {
    display: none;
  }
}

@media only screen and (max-width: 1023px) {
  .ui-main {
    padding: 0 10px 0 0; }
  .grid {
    margin-left: -10px; }
  #home-splash {
    padding-top: 10px; } }

@media only screen and (max-width: 480px) {
  .ui-main .right {
    margin: 10px 0 0 0; }
  .cph-adsense {
    width: 320px;
    height: 100px; } }
