@charset "UTF-8";
/**
 * Main
 *
 * Description: This file includes the files needed for the project. (only include what you actually need).
 * Read more: http://sass-guidelin.es/#the-7-1-pattern
 * -----------------------------------------------------------------------------
 */
/**
 * Variables
 *
 * @version: 1.0
 * Description: Contains Sass variables
 *
 */
/**
 * Table of Contents: 
 *
 * 1.0 - Colors
 * 2.0 - Typography
 * 3.0 - Responsivness and sizes
 * 4.0 - Other
 * -----------------------------------------------------------------------------
 */
/**
 * 1.0 - Colors
 * -----------------------------------------------------------------------------
 */
/**
 * 2.0 - Typography
 * -----------------------------------------------------------------------------
 */
/**
 * 3.0 - Responsivness and sizes
 * -----------------------------------------------------------------------------
 */
/**
 * 4.0 - Other
 * -----------------------------------------------------------------------------
 */
/**
 * Functions
 *
 * @version: 1.0
 * Description: Contains Sass functions
 *
 */
/**
 * Table of Contents:
 *
 * 1.0 - PX to EM
 * 2.0 - Tint
 * 3.0 - Shade
 * -----------------------------------------------------------------------------
 */
/**
 * 1.0 - PX to EM
 *
 * Description: Converts px-values to em-values.
 * -----------------------------------------------------------------------------
 */
/**
 * 2.0 - Tint
 *
 * Description: Slightly lighten a color
 * Read more: http://sass-guidelin.es/#lightening-and-darkening-colors
 * -----------------------------------------------------------------------------
 */
/**
 * 3.0 - Shade
 *
 * Description: Slightly darken a color
 * Read more: http://sass-guidelin.es/#lightening-and-darkening-colors
 * -----------------------------------------------------------------------------
 */
/**
 * Mixins
 *
 * @version: 1.0
 * Description: Contains Sass mixins
 *
 */
/**
 * Table of Contents:
 *
 * 1.0 - Clearfix
 * 2.0 - Border Radius
 * 3.0 - Transition
 * 4.0 - Box sizing
 * 5.0 - Gradients
 * 6.0 - Opacity
 * 7.0 - Box shadows
 * 8.0 - Reset list
 * 9.0 - Link color
 * 10.0 - Arrow
 * 11.0 - Font Awesome
 * 12.0 - List with separator
 * 13.0 - Add extensions
 * 14.0 - Greyscale
 * 15.0 - RemoveGreyscale
 * -----------------------------------------------------------------------------
 */
/**
 * 1.0 - Clearfix
 *
 * Description: For clearing floats
 * -----------------------------------------------------------------------------
 */
/**
 * 2.0 - Border Radius
 *
 * Description: Creates border-radius with browser prefix.
 * -----------------------------------------------------------------------------
 */
/**
 * 3.0 - Transition
 *
 * Description: Creates transition with browser prefix.
 * -----------------------------------------------------------------------------
 */
/**
 * 4.0 - Box sizing
 *
 * Description: Sets box-sizing with browser prefix.
 * -----------------------------------------------------------------------------
 */
/**
 * 5.0 - Gradient-vertical
 *
 * Description: Creates gradient-vertical with browser prefix.
 * -----------------------------------------------------------------------------
 */
/**
 * 6.0 - Opacity
 *
 * Description: Sets opacity with IE fallback.
 * -----------------------------------------------------------------------------
 */
/**
 * 7.0 - Box shadows
 *
 * Description: Creates box-shadow with browser prefix.
 * -----------------------------------------------------------------------------
 */
/**
 * 8.0 - Reset list
 *
 * Description: Reset the styles of a list
 * -----------------------------------------------------------------------------
 */
/**
 * 9.0 - Link color
 *
 * Description: Sets a color for a link, with hover and active.
 * -----------------------------------------------------------------------------
 */
/**
 * 10.0 - Arrow
 *
 * Description: Creates an arrow on a element.
 * -----------------------------------------------------------------------------
 */
/**
 * 11.0 - Font Awesome
 *
 * Description: Sets Font aswesome font for an element
 * -----------------------------------------------------------------------------
 */
/**
 * 12.0 - List with separator
 *
 * Description: Creates seperators for each list-element.
 * -----------------------------------------------------------------------------
 */
/**
 * 13.0 - Add extensions
 *
 * Description: Adds fontawesome icons to links based on the filetyper they are linking to.
 * -----------------------------------------------------------------------------
 */
/**
 * 14.0 - Greyscale
 *
 * Description: Converts an image to greyscale.
 * -----------------------------------------------------------------------------
 */
/**
 * 15.0 - RemoveGreyscale
 *
 * Description: Removes the greyscale from an image.
 * -----------------------------------------------------------------------------
 */
/**
 * 15.0 - vertical align
 *
 * Description: Make div align vertically 
 * -----------------------------------------------------------------------------
 */
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 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 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

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

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio, canvas, progress, video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

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

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden], template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent; }

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

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

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

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

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

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

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0; }

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

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

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

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button, input, optgroup, select, textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button, select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button, html input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled], html input[disabled] {
  cursor: default; }

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

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

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (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 and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

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

td, th {
  padding: 0; }

/* Start: Recommended Isotope styles */
/**** Isotope Filtering ****/
.isotope-item {
  z-index: 2; }

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1; }

/**** Isotope CSS3 transitions ****/
.isotope, .isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s; }

.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width; }

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -ms-transition-property: -ms-transform, opacity;
  -o-transition-property: -o-transform, opacity;
  transition-property: transform, opacity; }

/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition, .isotope.no-transition .isotope-item, .isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s; }

/* End: Recommended Isotope styles */
/*!
 *  Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.eot?v=4.3.0');
  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.3.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;
  transform: translate(0, 0); }

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -15%; }

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

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

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

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

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

.fa-ul, .icon-list {
  padding-left: 0;
  margin-left: 2.14286em;
  list-style-type: none; }
  .fa-ul > li, .icon-list > 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: .2em .25em .15em;
  border: solid .08em #eee;
  border-radius: .1em; }

.pull-right {
  float: right; }

.pull-left {
  float: left; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-inverse {
  color: #fff; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap, .fancybox-skin, .fancybox-outer, .fancybox-inner, .fancybox-image, .fancybox-wrap iframe, .fancybox-wrap object, .fancybox-nav, .fancybox-nav span, .fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top; }

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020; }

.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px; }

.fancybox-opened {
  z-index: 8030; }

.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); }

.fancybox-outer, .fancybox-inner {
  position: relative; }

.fancybox-inner {
  overflow: hidden; }

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch; }

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap; }

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%; }

.fancybox-image {
  max-width: 100%;
  max-height: 100%; }

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
  background-image: url('../images/fancybox/fancybox_sprite.png'); }

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060; }

#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url('../images/fancybox/fancybox_loading.gif') center center no-repeat; }

.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040; }

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url('../images/fancybox/blank.gif');
  /* helps IE */
  -webkit-tap-highlight-color: transparent;
  z-index: 8040; }

.fancybox-prev {
  left: 0; }

.fancybox-next {
  right: 0; }

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden; }

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px; }

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px; }

.fancybox-nav:hover span {
  visibility: visible; }

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important; }

/* Overlay helper */
.fancybox-lock {
  overflow: hidden !important;
  width: auto; }

.fancybox-lock body {
  overflow: hidden !important; }

.fancybox-lock-test {
  overflow-y: hidden !important; }

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url('../images/fancybox/fancybox_overlay.png'); }

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0; }

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll; }

/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050; }

.fancybox-opened .fancybox-title {
  visibility: visible; }

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center; }

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap; }

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff; }

.fancybox-title-inside-wrap {
  padding-top: 10px; }

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8); }

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url('../images/fancybox/fancybox_sprite@2x.png');
    background-size: 44px 152px;
    /*The size of the normal image, half the size of the hi-res image*/ }
  #fancybox-loading div {
    background-image: url('../images/fancybox/fancybox_loading@2x.gif');
    background-size: 24px 24px;
    /*The size of the normal image, half the size of the hi-res image*/ } }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/* Slider */
.imagegallery {
  position: relative;
  min-height: 300px;
  margin-bottom: 30px; }
  .imagegallery .imagegallery-loader {
    color: #666;
    width: 100%;
    text-align: center;
    height: 300px;
    line-height: 300px;
    vertical-align: middle;
    background-color: #ebebeb; }

.slider-item {
  display: none; }
  .slider-item:first-child {
    display: block; }
  .slick-initialized .slider-item {
    display: block; }
  .slider-item .description {
    display: block;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    background: url(../images/transparent_bkg.png) repeat left top;
    text-align: left; }
  .slider-item .description p {
    color: #fff;
    font-size: 0.857em;
    line-height: 1.25em;
    padding: 10px 15px;
    margin: 0;
    font-size: 0.8em; }
  .slider-item:hover .description {
    display: none; }

.slider-nav {
  height: 50px;
  overflow: hidden;
  margin-left: 43px;
  margin-right: 43px;
  margin-bottom: 30px; }
  .slider-nav img {
    height: 50px;
    margin-right: 13px;
    padding-bottom: 2px;
    display: block;
    float: left; }
  .slider-nav.slick-initialized {
    overflow: visible; }
  .slider-nav .slick-current {
    border-bottom: 3px solid #e30613; }

.slick-loading .slick-list {
  background: #fff "../images/slick/ajax-loader.gif" center center no-repeat; }

.slider-for.slick-initialized {
  margin-bottom: 30px; }
.slider-for .slider-item {
  background-color: #ebebeb;
  width: 100%;
  text-align: center; }
.slider-for img {
  max-height: 500px;
  margin: 0 auto; }

.slick-prev, .slick-next {
  position: absolute;
  left: -43px; }
  .slick-prev:before, .slick-next:before {
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
    font-size: 30px;
    color: #010101;
    content: "\f104";
    display: block; }

.slick-next {
  left: auto;
  right: -43px; }
  .slick-next:before {
    content: "\f105"; }

/* Icons */
@font-face {
  font-family: "slick";
  src: url("../fonts/slick.eot");
  src: url("../fonts/slick.eot?#iefix") format("embedded-opentype"), url("../fonts/slick.woff") format("woff"), url("../fonts/slick.ttf") format("truetype"), url("../fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal; }

/* Arrows */
.slick-prev, .slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: #E30613;
  top: 50%;
  margin-top: -6px;
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
    opacity: 0.25; }

/*.slick-prev:before, .slick-next:before {
    font-family: $slick-font-family;
    font-size: 20px;
    line-height: 1;
    color: $slick-arrow-color;
    opacity: $slick-opacity-default;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}*/
/*
.slick-prev {
    left: -25px;
    [dir="rtl"] & {
        left: auto;
        right: -25px;
    }
    &:before {
        content: $slick-prev-character;
        [dir="rtl"] & {
            content: $slick-next-character;
        }
    }
}

.slick-next {
    right: -25px;
    [dir="rtl"] & {
        left: -25px;
        right: auto;
    }
    &:before {
        content: $slick-next-character;
        [dir="rtl"] & {
            content: $slick-prev-character;
        }
    }
}
*/
/* Dots */
.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: -45px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 1; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "•";
        width: 20px;
        height: 20px;
        font-family: "slick";
        font-size: 6px;
        line-height: 20px;
        text-align: center;
        color: black;
        opacity: 0.25;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: black;
      opacity: 0.75; }

/*!
Chosen, a Select Box Enhancer for jQuery and Prototype
by Patrick Filler for Harvest, http://getharvest.com

Version 1.2.0
Full source at https://github.com/harvesthq/chosen
Copyright (c) 2011-2014 Harvest http://getharvest.com

MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
This file is generated by `grunt build`, do not edit it by hand.
*/
/* @group Base */
.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  zoom: 1;
  *display: inline;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.chosen-container * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  left: -9999px;
  z-index: 1010;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15); }

.chosen-container.chosen-with-drop .chosen-drop {
  left: 0; }

.chosen-container a {
  cursor: pointer; }

/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 8px;
  height: 25px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: #fff;
  background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #ffffff), color-stop(50%, #f6f6f6), color-stop(52%, #eeeeee), color-stop(100%, #f4f4f4));
  background: -webkit-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  background: -moz-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  background: -o-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  background: linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  background-clip: padding-box;
  box-shadow: 0 0 3px white inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  line-height: 24px; }

.chosen-container-single .chosen-default {
  color: #999; }

.chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap; }

.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px; }

.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  background: url('../images/chosen-sprite.png') -42px 1px no-repeat;
  font-size: 1px; }

.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px; }

.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px; }

.chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 18px;
  height: 100%; }

.chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
  background: url('../images/chosen-sprite.png') no-repeat 0px 2px; }

.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap; }

.chosen-container-single .chosen-search input[type="text"] {
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #aaa;
  background: white url('../images/chosen-sprite.png') no-repeat 100% -20px;
  background: url('../images/chosen-sprite.png') no-repeat 100% -20px;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0; }

.chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box; }

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  left: -9999px; }

/* @end */
/* @group Results */
.chosen-container .chosen-results {
  color: #444;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch; }

.chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  word-wrap: break-word;
  -webkit-touch-callout: none; }

.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer; }

.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default; }

.chosen-container .chosen-results li.highlighted {
  background-color: #3875d7;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
  background-image: -webkit-linear-gradient(#3875d7 20%, #2a62bc 90%);
  background-image: -moz-linear-gradient(#3875d7 20%, #2a62bc 90%);
  background-image: -o-linear-gradient(#3875d7 20%, #2a62bc 90%);
  background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
  color: #fff; }

.chosen-container .chosen-results li.no-results {
  color: #777;
  display: list-item;
  background: #f4f4f4; }

.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: bold;
  cursor: default; }

.chosen-container .chosen-results li.group-option {
  padding-left: 15px; }

.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline; }

/* @end */
/* @group Multi Chosen */
.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0 5px;
  width: 100%;
  height: auto !important;
  height: 1%;
  border: 1px solid #aaa;
  background-color: #fff;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
  background-image: -webkit-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background-image: -moz-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background-image: -o-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background-image: linear-gradient(#eeeeee 1%, #ffffff 15%);
  cursor: text; }

.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none; }

.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap; }

.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  margin: 1px 0;
  padding: 0;
  height: 25px;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none;
  color: #999;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0; }

.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 5px 3px 0;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  max-width: 100%;
  border-radius: 3px;
  background-color: #eeeeee;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
  background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-size: 100% 19px;
  background-repeat: repeat-x;
  background-clip: padding-box;
  box-shadow: 0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 13px;
  cursor: default; }

.chosen-container-multi .chosen-choices li.search-choice span {
  word-wrap: break-word; }

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  background: url('../images/chosen-sprite.png') -42px 1px no-repeat;
  font-size: 1px; }

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px; }

.chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
  background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  color: #666; }

.chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4; }

.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px; }

.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0; }

.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default; }

/* @end */
/* @group Active  */
.chosen-container-active .chosen-single {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }

.chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #aaa;
  -moz-border-radius-bottomright: 0;
  border-bottom-right-radius: 0;
  -moz-border-radius-bottomleft: 0;
  border-bottom-left-radius: 0;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #eeeeee), color-stop(80%, #ffffff));
  background-image: -webkit-linear-gradient(#eeeeee 20%, #ffffff 80%);
  background-image: -moz-linear-gradient(#eeeeee 20%, #ffffff 80%);
  background-image: -o-linear-gradient(#eeeeee 20%, #ffffff 80%);
  background-image: linear-gradient(#eeeeee 20%, #ffffff 80%);
  box-shadow: 0 1px 0 #fff inset; }

.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
  background: transparent; }

.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 2px; }

.chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }

.chosen-container-active .chosen-choices li.search-field input[type="text"] {
  color: #222 !important; }

/* @end */
/* @group Disabled Support */
.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default; }

.chosen-disabled .chosen-single {
  cursor: default; }

.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default; }

/* @end */
/* @group Right to Left */
.chosen-rtl {
  text-align: right; }

.chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0; }

.chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl; }

.chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px; }

.chosen-rtl .chosen-single div {
  right: auto;
  left: 3px; }

.chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px; }

.chosen-rtl .chosen-choices li {
  float: right; }

.chosen-rtl .chosen-choices li.search-field input[type="text"] {
  direction: rtl; }

.chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px; }

.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px; }

.chosen-rtl.chosen-container-single-nosearch .chosen-search, .chosen-rtl .chosen-drop {
  left: 9999px; }

.chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0; }

.chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0; }

.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: none; }

.chosen-rtl .chosen-search input[type="text"] {
  padding: 4px 5px 4px 20px;
  background: white url('../images/chosen-sprite.png') no-repeat -30px -20px;
  background: url('../images/chosen-sprite.png') no-repeat -30px -20px;
  direction: rtl; }

.chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px 2px; }

.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px 2px; }

/* @end */
/* @group Retina compatibility */
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 144dpi) {
  .chosen-rtl .chosen-search input[type="text"], .chosen-container-single .chosen-single abbr, .chosen-container-single .chosen-single div b, .chosen-container-single .chosen-search input[type="text"], .chosen-container-multi .chosen-choices .search-choice .search-choice-close, .chosen-container .chosen-results-scroll-down span, .chosen-container .chosen-results-scroll-up span {
    background-image: url('../images/chosen-sprite@2x.png') !important;
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important; } }

/* @end */
/**
 * Base
 *
 * Description: Contains some base styling for some common html-elements. 
 * -----------------------------------------------------------------------------
 */
body, html {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  background-color: #ebebeb; }

#top {
  min-height: 100%;
  margin-bottom: -3em; }
  #top:after {
    height: 3em;
    content: "";
    display: block; }

#pages {
  position: relative;
  margin-bottom: 40px; }

article {
  margin-bottom: 2em; }

.clear {
  clear: both; }

@media (max-width: 767px) {
  #pages {
    margin: 0 3% 40px; } }

/**
 * Table of Contents:
 *
 * 1.0 - Form
 * 2.0 Checkboxes and radios
 * 3.0 Styled select
 * 4.0 Chosen
 * -----------------------------------------------------------------------------
 */
/**
 * 1.0 Form
 *
 * -----------------------------------------------------------------------------
 */
input[type="text"], input[type="password"], input[type="color"], input[type="date"], input [type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], input[type="week"] {
  border: none;
  background-color: #ebebeb;
  font-size: 0.8em;
  height: 2.4375em;
  line-height: 2.4375em;
  width: 100%;
  box-sizing: border-box;
  padding: 0 1.0625em; }

input[type="radio"], input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal; }

label {
  display: inline-block; }

button {
  font-size: 0.8em;
  height: 2.4375em;
  line-height: 2.4375em;
  background-color: whitesmoke;
  border: 1px solid #dedede;
  padding: 0 6px; }

.btn, .button {
  font-weight: 800;
  font-size: 0.8em;
  text-align: center;
  background-color: #e30613;
  border: 0;
  padding: 0.625em 0.9375em;
  display: inline-block;
  -webkit-transition: background-color 0.2s ease-in;
  -moz-transition: background-color 0.2s ease-in;
  -o-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in; }
  .btn:hover, .button:hover {
    background-color: #cc0511; }

.btn-alert {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  text-transform: uppercase;
  width: 100%;
  margin-bottom: 20px; }
  .btn-alert:hover {
    text-decoration: none;
    color: #fff; }

.btn-takeaction {
  margin-top: -2.35em;
  margin-left: auto;
  margin-right: auto;
  height: 10em;
  width: 10em;
  border-radius: 10em; }
  .btn-takeaction p {
    font-size: 0.875em;
    margin-bottom: 0.71429em; }
    .btn-takeaction p strong {
      font-size: 1.28571em;
      line-height: 1.3; }
  .btn-takeaction .fa {
    font-size: 3.125em;
    padding-bottom: 0.2em;
    padding-top: 0.4em; }
  @media (max-width: 767px) {
    .btn-takeaction {
      margin-top: 0; } }

html.lt-ie8 .btn, html.lt-ie8 .button {
  zoom: 1;
  display: block; }

/**
 * 2.0 Checkboxes and radios
 *
 * -----------------------------------------------------------------------------
 */
.radio, .checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.2em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  .radio label, .checkbox label {
    min-height: 1em;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer; }

.radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9; }

.radio + .radio, .checkbox + .checkbox {
  margin-top: -5px; }

.radio-inline, .checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer; }

.radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px; }

input[type="radio"][disabled], input[type="radio"].disabled, fieldset[disabled] input[type="radio"], input[type="checkbox"][disabled], input[type="checkbox"].disabled, fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed; }

.radio-inline.disabled, fieldset[disabled] .radio-inline, .checkbox-inline.disabled, fieldset[disabled] .checkbox-inline {
  cursor: not-allowed; }

.radio.disabled label, fieldset[disabled] .radio label, .checkbox.disabled label, fieldset[disabled] .checkbox label {
  cursor: not-allowed; }

/**
 * 3.0 Styled select
 *
 * -----------------------------------------------------------------------------
 */
.select select {
  height: 2.9375em;
  vertical-align: top;
  width: 100%;
  padding-left: 1em;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  text-indent: 0.01px;
  text-overflow: '';
  background-color: transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  .select select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000; }

.select select::-ms-expand {
  display: none; }

.select {
  font-size: 0.8em;
  position: relative;
  background: #ebebeb;
  display: inline-block;
  height: 2.9375em;
  line-height: 2.9375em;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.select:after {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #000000;
  content: " ";
  display: block;
  height: 0;
  margin-top: -3px;
  position: absolute;
  right: 12px;
  top: 50%;
  width: 0; }

/**
 * 4.0 Chosen
 *
 * -----------------------------------------------------------------------------
 */
html.js select.chosen {
  visibility: hidden;
  height: 1.25em; }
  html.js select.chosen.chosen-disabled {
    visibility: visible; }

html.js .chosen-large select.chosen {
  height: 2.55em; }

.chosen-container-multi .chosen-choices {
  background-color: #ebebeb;
  min-height: 40px;
  border: 0px;
  background-image: none; }

.chosen-container input {
  min-height: 40px; }

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  top: 6px; }

.chosen-container-multi .chosen-choices li.search-choice {
  border-radius: 0px;
  background-color: #fff;
  background-image: none;
  margin: 8px 8px 8px 8px;
  padding: 5px 20px 0px 5px;
  height: 25px;
  border: 0; }

.chosen-large .chosen-container {
  font-size: 0.9em;
  width: 100% !important; }
.chosen-large .chosen-container-multi .chosen-choices {
  border: 1px solid #cecece; }
  .chosen-large .chosen-container-multi .chosen-choices li.search-field {
    min-width: 170px; }
    .chosen-large .chosen-container-multi .chosen-choices li.search-field input[type="text"] {
      padding: 0.22222em 0.55556em 0;
      height: 2.66667em;
      min-width: 170px; }
  .chosen-large .chosen-container-multi .chosen-choices li.search-choice {
    position: relative;
    padding: 0.66667em 1.72222em 0.66667em 0.61111em;
    height: 1.94444em; }
    .chosen-large .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
      top: 12px;
      right: 6px; }

/**
 * Typography
 *
 * Description: Contains styling for typography.
 * -----------------------------------------------------------------------------
 */
/**
 * Table of Contents:
 *
 * 1.0 - Webfonts
 * 2.0 - Classes
 * 3.0 - Base settings
 * 4.0 - Headings
 * 5.0 - Paragraphs
 * 6.0 - Links
 * 7.0 - Tables
 * 8.0 - Lists
 * 9.0 - Figure & figcaption
 * 10.0 - Other elements (hr)
 * -----------------------------------------------------------------------------
 */
/**
 * 1.0 - Webfonts
 * -----------------------------------------------------------------------------
 */
/*@font-face {
	font-family: 'Raleway';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/raleway-webfont.eot');
	src: local('Raleway'), url('../fonts/raleway-webfont.eot?#iefix') format('embedded-opentype'), url(../fonts/Raleway.woff) format('woff'), url(../fonts/Raleway.svg#Raleway) format('svg'), url(../fonts/Raleway.woff2) format('woff2'), url(../fonts/Raleway.ttf) format('truetype');
}*/
/**
 * 2.0 - Base settings
 * -----------------------------------------------------------------------------
 */
body {
  font-family: 'Raleway', sans-serif;
  font-size: 125%;
  line-height: 1.3em;
  color: #010101;
  word-wrap: break-word; }

img {
  border: 0 none;
  height: auto;
  max-width: 100%;
  vertical-align: middle; }
  img.top-image {
    margin-bottom: 0.85em; }

.rte, .mceContentBody, .related-object {
  padding-bottom: 0.3em;
  *zoom: 1; }
  .rte:before, .rte:after, .mceContentBody:before, .mceContentBody:after, .related-object:before, .related-object:after {
    display: table;
    content: "";
    line-height: 0; }
  .rte:after, .mceContentBody:after, .related-object:after {
    clear: both; }
  .rte img, .mceContentBody img, .related-object img {
    margin-bottom: 1em; }

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

.related-object {
  font-size: 0.8em;
  line-height: 1.375em;
  margin-bottom: 1.1875em;
  *zoom: 1; }
  .related-object:before, .related-object:after {
    display: table;
    content: "";
    line-height: 0; }
  .related-object:after {
    clear: both; }
  .related-object, .related-object a {
    color: #282828; }

/**
 * 3.0 - Classes
 * -----------------------------------------------------------------------------
 */
.center {
  text-align: center; }

.strong {
  font-weight: 700; }

.no-text-transform {
  text-transform: none; }

.bg-danger {
  background-color: #f2dede;
  padding: 15px; }
  .bg-danger .fa {
    color: #d61111; }

/**
 * 4.0 - Headings
 * -----------------------------------------------------------------------------
 */
h1, h2, h3, h4, h5, h6, .h-h1, .h-headline, .h-subheadline, .h-byline, .h-heavy, .h-byline-blue, .h-byline-orange {
  font-family: 'Raleway', sans-serif;
  margin: 0;
  font-weight: 800;
  font-style: normal;
  line-height: 1.3em;
  text-rendering: optimizelegibility;
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0; }
  h1 a, h1 a:hover, h2 a, h2 a:hover, h3 a, h3 a:hover, h4 a, h4 a:hover, h5 a, h5 a:hover, h6 a, h6 a:hover, .h-h1 a, .h-h1 a:hover, .h-headline a, .h-headline a:hover, .h-subheadline a, .h-subheadline a:hover, .h-byline a, .h-byline a:hover, .h-heavy a, .h-heavy a:hover, .h-byline-blue a, .h-byline-blue a:hover, .h-byline-orange a, .h-byline-orange a:hover {
    color: #010101; }

h1, .h-h1 {
  font-size: 3em;
  line-height: 1.06667em;
  margin-bottom: 0.61667em; }
  @media (max-width: 767px) {
    h1, .h-h1 {
      font-size: 1.6em; } }
  h1.small, .h-h1.small {
    font-size: 1.75em;
    margin-bottom: 0.94286em;
    font-weight: 700; }

h2, .h-headline {
  font-size: 1.3em;
  line-height: 1.23077em;
  margin-bottom: 0.38462em; }
  .rte h2, .rte .h-headline {
    font-size: 1.3em; }
  h2.small, .h-headline.small {
    font-size: 1.2em;
    line-height: 1.16667em; }

h3, .h-subheadline {
  font-size: 1em;
  line-height: 1.2em;
  margin-bottom: 0.4em; }

h4, h5, h6, .h-byline {
  font-size: 1em; }

.label, p.label, .rte .label {
  font-weight: 800;
  margin-bottom: 0; }

/**
 * 5.0 - Paragraphs and blockquote
 * -----------------------------------------------------------------------------
 */
p {
  margin: 0 0 1em;
  line-height: 1.2em; }
  .rte p {
    font-size: 0.9em;
    line-height: 1.44444em;
    margin: 0 0 1.11111em; }

p.preamble, blockquote {
  font-style: italic;
  font-size: 0.9em;
  line-height: 1.61111em;
  margin-bottom: 0.22222em; }
  @media (max-width: 767px) {
    p.preamble, blockquote {
      font-size: 0.8em; } }

.preamble p {
  line-height: 1.4em; }

blockquote {
  margin-bottom: 1.72222em; }

p.preamble + .rte {
  margin-top: 1.55em; }

blockquote {
  margin-left: 0.68421em;
  padding-left: 1.31579em;
  border-left: 4px solid #e30613; }

/**
 * 6.0 - Links
 * -----------------------------------------------------------------------------
 */
a {
  color: #5a6b84;
  text-decoration: none;
  /*
	Use this if you want all externa links to have an fontawesome "external"-icon.

	&[href^="http"]:after {
		content: " " + $fa-var-external-link;
		@include fontAwesome();
	}
	&.no-external:after {
		display: none;
	}
	*/ }
  a:hover {
    color: #080a0d;
    text-decoration: underline; }
  a:active {
    color: #12151a;
    text-decoration: underline; }
  a.text-color {
    color: #010101 !important; }
  .rte a {
    text-decoration: underline; }

/**
 * 7.0 - Tables
 * -----------------------------------------------------------------------------
 */
table {
  margin-bottom: 20px;
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed; }
  .rte table, .mceContentBody table {
    font-size: 0.8em;
    line-height: 1.3125em; }

table.noborder th, table.noborder td {
  border: 0;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  background-color: transparent; }
table.noborder th:first-child, table.noborder td:first-child {
  padding-left: 0; }

th, td {
  text-align: left;
  vertical-align: top;
  padding: 0.6em 1em 0.4em;
  border-bottom: 1px solid #ccc; }
  th p, td p {
    margin: 0; }

th {
  background-color: #eee;
  padding: 0.7em 1em 0.3em; }

td[class^="l-size"], td[class*=" l-size"], th[class^="l-size"], th[class*=" l-size"] {
  float: none; }

/**
 * 8.0 - Lists
 * -----------------------------------------------------------------------------
 */
.rte ul, .rte ol {
  margin-bottom: 20px; }
  .rte ul li, .rte ol li {
    font-size: 0.9em;
    line-height: 1.33333em;
    margin-bottom: 0.22222em; }
    .rte ul li p, .rte ol li p {
      margin-bottom: 0; }

/**
 * 9.0 - Figure & figcaption
 * -----------------------------------------------------------------------------
 */
figure {
  margin: 0; }

figcaption {
  font-size: 0.65em;
  line-height: 1.53846em;
  padding-top: 0.55em; }

/**
 * 10.0 - Other elements (hr)
 * -----------------------------------------------------------------------------
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 2em 0 0.95em;
  padding: 0; }
  hr.thick {
    border-top: 4px solid #ccc; }

.preamble {
  font-weight: 800;
  font-size: 1em;
  line-height: 1.4em; }

p.date {
  float: left;
  color: #e30613;
  margin: 0 10px 0 0; }

/**
 * Block
 *
 * Description: Contains styles for the blocks.
 *
 */
/**
 * Table of Contents:
 *
 * 1.0 - Base
 *   1.1 - Base responsive
 * 2.0 - Base block content
 * 3.0 - Block colors
 * 4.0 - Event block
 * 5.0 - Take action block
 * 6.0 - Youtube block
 * 7.0 - Twitter block
 * 8.0 - GS Corner block
 * 9.0 - Instagram block
 * 10.0 - Newsletter form block
 * 11.0 - Image block
 * 12.0 - Event list block
 * 13.0 - News archive block
 * 14.0 - Social Media
 * 15.0 - Iframe
 * 16.0 - Count down
 * -----------------------------------------------------------------------------
 */
/**
 * 1.0 - Base
 *
 * Description: Set up base styles
 * -----------------------------------------------------------------------------
 */
.is-isotope {
  padding: 0 0; }
  .is-isotope .block {
    position: relative;
    *zoom: 1;
    opacity: 0;
    filter: alpha(opacity=0);
    float: left;
    vertical-align: top;
    margin: 0;
    width: 249px;
    box-sizing: border-box;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    display: block;
    background-color: #fff; }
    .is-isotope .block:before, .is-isotope .block:after {
      display: table;
      content: "";
      line-height: 0; }
    .is-isotope .block:after {
      clear: both; }
    .is-isotope .block.block-link:hover {
      background: #f9f9f9; }
    .is-isotope .block * {
      box-sizing: border-box; }
    .is-isotope .block img {
      width: 100%; }
  .is-isotope a.block:hover {
    text-decoration: none; }

.block {
  color: #010101; }
  .no-js .block {
    float: none;
    display: inline-block;
    margin: 0 10px 10px 0; }
  .isotope-initiated .block {
    opacity: 1;
    filter: alpha(opacity=100); }
  .block.block-large {
    width: 771px; }
  .block.block-medium {
    width: 510px; }
  .block.is-loading:before, .block.is-loading:after {
    display: block;
    content: " ";
    position: absolute; }
  .block.is-loading:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
    -webkit-box-shadow: inset 0 0 10px #010101;
    -moz-box-shadow: inset 0 0 10px #010101;
    box-shadow: inset 0 0 10px #010101; }
  .no-js .block {
    opacity: 1;
    filter: alpha(opacity=100); }

/**
 * 1.1 - Base responsive
 *
 * Description: Set up base styles for mobiles
 * -----------------------------------------------------------------------------
 */
@media (max-width: 1024px) {
  .is-isotope {
    margin-left: auto;
    margin-right: auto;
    width: 771px; } }

@media (max-width: 1023px) {
  .is-isotope {
    width: 530px; }
  .block.block-medium, .block.block-large, .is-isotope .block.block-medium, .is-isotope .block.block-large {
    width: 510px; } }

@media (max-width: 767px) {
  .is-isotope {
    width: 100%; }
  .block {
    width: 100% !important; } }

/**
 * 2.0 - Base block content
 *
 * Description: Set up base styles for content in blocks.
 * -----------------------------------------------------------------------------
 */
.block .block-bottom-icon, .is-isotope .block-bottom-icon {
  position: absolute;
  color: #fff;
  font-size: 1.5em;
  bottom: 0;
  right: 0;
  border-left: 2px solid #ebebeb;
  border-top: 2px solid #ebebeb;
  padding: 0.33333em 0.36667em 0.3em 0.43333em; }
.block .block-header, .is-isotope .block-header {
  font-size: 1.2em;
  font-weight: 800;
  line-height: 1.36em;
  border-bottom: 1px solid #e5e5e5;
  margin: 1em 20px 0.58333em;
  padding-bottom: 0.70833em; }
.block .block-img, .is-isotope .block-img {
  padding-bottom: 2px; }
.block .block-hidden-image, .is-isotope .block-hidden-image {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in; }
  .block .block-hidden-image.is-hidden, .is-isotope .block-hidden-image.is-hidden {
    display: block;
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0); }
.block .block-body, .is-isotope .block-body {
  padding: 20px; }
  .block .block-body p, .is-isotope .block-body p {
    font-size: 0.9em;
    line-height: 1.44444em; }
  .block .block-body h2, .is-isotope .block-body h2 {
    margin-bottom: 0.84615em; }
  .block .block-body .fa-youtube-play, .is-isotope .block-body .fa-youtube-play {
    font-size: 1.1em;
    color: #e30613;
    margin-right: 5px; }
.block.block-small p, .is-isotope.block-small p {
  font-size: 0.8em;
  line-height: 1.625em; }
.block.block-small h2, .is-isotope.block-small h2 {
  font-size: 1.1em;
  margin-bottom: 1em; }
.block .block-corner-image, .is-isotope .block-corner-image {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 5; }
.block.block-text-large h2, .is-isotope.block-text-large h2 {
  font-size: 2.3em;
  line-height: 1.08696em;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 0.65217em;
  margin-bottom: 0.58696em; }
.block.block-text-large.block-blue h2, .is-isotope.block-text-large.block-blue h2 {
  border-color: rgba(255, 255, 255, 0.3); }

/**
 * 3.0 - Block colors
 *
 * Description: Colors for blocks.
 * -----------------------------------------------------------------------------
 */
.block.block-red, .is-isotope .block.block-red {
  background: #e30613;
  color: #fff; }
  .block.block-red:hover, .is-isotope .block.block-red:hover {
    background: #cc0511; }
.block.block-blue, .is-isotope .block.block-blue {
  background: #5a6b84;
  color: #fff; }
  .block.block-blue:hover, .is-isotope .block.block-blue:hover {
    background: #516076; }
  .block.block-blue .block-body .fa-youtube-play, .is-isotope .block.block-blue .block-body .fa-youtube-play {
    color: #fff; }
.block.block-gold, .is-isotope .block.block-gold {
  background: #dcb95f; }
  .block.block-gold.block-link:hover, .is-isotope .block.block-gold.block-link:hover {
    background: #c6a655; }
.block.block-purple, .is-isotope .block.block-purple {
  background: #b61e83;
  color: #fff; }
.block.block-purple-dark, .is-isotope .block.block-purple-dark {
  background: #6b3e4d;
  color: #fff; }
  .block.block-purple-dark.block-link:hover, .is-isotope .block.block-purple-dark.block-link:hover {
    background: #653a49; }
.block.block-black, .is-isotope .block.block-black {
  background: #282828;
  color: #fff; }
  .block.block-black .block-header, .is-isotope .block.block-black .block-header {
    border-color: #696969; }
  .block.block-black.block-link:hover, .is-isotope .block.block-black.block-link:hover {
    background: #1c1c1c; }

/**
 * 4.0 - Event block
 *
 * Description: Block for events.
 * -----------------------------------------------------------------------------
 */
.block-event, .is-isotope .block-event {
  text-align: center; }
  .block-event .block-body h2, .is-isotope .block-event .block-body h2 {
    font-size: 0.9em;
    line-height: 1.44444em;
    font-weight: 600;
    margin-bottom: 1.11111em; }
  .block-event .block-body .block-event-location, .is-isotope .block-event .block-body .block-event-location {
    margin-bottom: 1.11111em; }
  .block-event .block-body .block-event-month, .is-isotope .block-event .block-body .block-event-month {
    text-transform: uppercase;
    margin-bottom: 0.94444em; }
  .block-event .block-body .block-event-date, .is-isotope .block-event .block-body .block-event-date {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    color: #fff;
    font-size: 3.5em;
    line-height: 0.92857em;
    margin-bottom: 0.02857em; }

/**
 * 5.0 - Take action block
 *
 * Description: Block for take actions.
 * -----------------------------------------------------------------------------
 */
.block-takeaction, .is-isotope .block-takeaction {
  text-align: center; }
  .block-takeaction .fa, .is-isotope .block-takeaction .fa {
    font-size: 2em;
    padding-bottom: 0.625em; }

/**
 * 6.0 - Youtube block
 *
 * Description: Block for Youtube.
 * -----------------------------------------------------------------------------
 */
.block-youtube .fa, .is-isotope .block-youtube .fa {
  position: absolute;
  color: #fff; }
  .block-youtube .fa.fa-circle-thin, .is-isotope .block-youtube .fa.fa-circle-thin {
    font-size: 5em;
    width: 100%;
    text-align: center;
    top: 50%;
    left: 0;
    margin-top: -0.5em; }
  .block-youtube .fa.fa-play, .is-isotope .block-youtube .fa.fa-play {
    font-size: 2em;
    width: 100%;
    text-align: center;
    top: 50%;
    left: 0;
    margin-top: -0.5em;
    padding-left: 0.15em; }
.block-youtube .block-youtube-overlay, .is-isotope .block-youtube .block-youtube-overlay {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #010101;
  opacity: 0.35;
  filter: alpha(opacity=35);
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in; }
.block-youtube:hover .block-youtube-overlay, .is-isotope .block-youtube:hover .block-youtube-overlay {
  opacity: 0;
  filter: alpha(opacity=0); }

/**
 * 7.0 - Twitter block
 *
 * Description: Block for Twitter.
 * -----------------------------------------------------------------------------
 */
.block-twitter, .is-isotope .block-twitter {
  background-color: #2ca8d2;
  color: #fff; }
  .block-twitter a, .is-isotope .block-twitter a {
    color: #fff; }
  .block-twitter .block-body, .is-isotope .block-twitter .block-body {
    padding-bottom: 3.3em; }
    .block-twitter .block-body .user, .is-isotope .block-twitter .block-body .user {
      position: absolute;
      bottom: 9px;
      margin-bottom: 5px;
      line-height: 1em;
      max-width: 61%;
      font-size: 0.7em;
      word-wrap: break-word; }

.block-twitter-feed {
  min-height: 200px; }
  .block-twitter-feed .fa-spinner {
    font-size: 1.2em;
    color: #fff;
    margin-top: 88px; }
  .block-twitter-feed.is-fetching {
    background-color: #80cbe4; }

/**
 * 8.0 - Campaign & GS Corner block
 *
 * Description: Block for campaigns & GS Corner.
 * -----------------------------------------------------------------------------
 */
.block-campaign, .block-gs-corner, .is-isotope .block-campaign, .is-isotope .block-gs-corner {
  overflow: hidden;
  min-height: 492px; }
  .block-campaign.block-text-large h2, .block-gs-corner.block-text-large h2, .is-isotope .block-campaign.block-text-large h2, .is-isotope .block-gs-corner.block-text-large h2 {
    border-bottom: 0;
    color: #fff;
    margin-bottom: 0; }
  .block-campaign .block-body, .block-gs-corner .block-body, .is-isotope .block-campaign .block-body, .is-isotope .block-gs-corner .block-body {
    position: relative;
    width: 507px;
    z-index: 10; }
  .block-campaign img, .block-gs-corner img, .is-isotope .block-campaign img, .is-isotope .block-gs-corner img {
    width: auto; }
  @media (max-width: 1024px) {
    .block-campaign .block-corner-image, .block-gs-corner .block-corner-image, .is-isotope .block-campaign .block-corner-image, .is-isotope .block-gs-corner .block-corner-image {
      display: none; }
    .block-campaign .block-body, .block-gs-corner .block-body, .is-isotope .block-campaign .block-body, .is-isotope .block-gs-corner .block-body {
      width: 100%; } }

.block-campaign .block-header, .is-isotope .block-campaign .block-header {
  border-color: #987883; }

.block-gs-corner.block-medium {
  min-height: 351px; }
  .block-gs-corner.block-medium .block-header {
    font-size: 0.9em;
    line-height: 1.44444em; }
  .block-gs-corner.block-medium .block-body {
    width: 420px; }

/**
 * 9.0 - Instagram block
 *
 * Description: Block for instagram.
 * -----------------------------------------------------------------------------
 */
.block-instragram, .is-isotope .block-instragram {
  min-height: 200px;
  text-align: center;
  background-color: #d8d8d8; }
  .block-instragram .fa-spinner, .is-isotope .block-instragram .fa-spinner {
    font-size: 1.2em;
    color: #fff;
    margin-top: 88px; }
  .block-instragram .block-bottom-icon, .is-isotope .block-instragram .block-bottom-icon {
    background-color: rgba(0, 0, 0, 0.08); }
  .block-instragram:hover, .is-isotope .block-instragram:hover {
    background-color: #d8d8d8; }

/**
 * 10.0 - Newsletter form block
 *
 * Description: Block for instagram.
 * -----------------------------------------------------------------------------
 */
.block-newsletter .block-body h2, .is-isotope .block-newsletter .block-body h2 {
  font-size: 0.9em;
  text-align: center;
  margin-bottom: 1.38889em; }
.block-newsletter .logo-negative, .is-isotope .block-newsletter .logo-negative {
  width: 100%;
  text-align: center;
  margin-bottom: 1.5em; }
  .block-newsletter .logo-negative img, .is-isotope .block-newsletter .logo-negative img {
    width: 97px;
    height: 85px; }
.block-newsletter input[type="text"], .block-newsletter input[type="email"], .is-isotope .block-newsletter input[type="text"], .is-isotope .block-newsletter input[type="email"] {
  background-color: #ebebeb;
  border: 0;
  color: #010101;
  font-size: 0.8em;
  margin-bottom: 0.75em; }
  .block-newsletter input[type="text"]:focus, .block-newsletter input[type="email"]:focus, .is-isotope .block-newsletter input[type="text"]:focus, .is-isotope .block-newsletter input[type="email"]:focus {
    background-color: #fff; }
.block-newsletter .button, .is-isotope .block-newsletter .button {
  width: 100%;
  margin-bottom: 20px; }
.block-newsletter .interestgroup_field, .is-isotope .block-newsletter .interestgroup_field {
  padding-left: 20px;
  margin-top: 0; }

.no-svg .logo-negative {
  background: url("../images/logo_negative.png") no-repeat center center;
  width: 100%;
  height: 85px; }
  .no-svg .logo-negative img {
    display: none !important; }

/**
 * 11.0 - Image block
 *
 * Description: Block for images.
 * -----------------------------------------------------------------------------
 */
.block-image .block-body, .is-isotope .block-image .block-body {
  min-height: 106px; }
  .block-image .block-body h2, .is-isotope .block-image .block-body h2 {
    margin-bottom: 0; }

/**
 * 12.0 - Event list block
 *
 * Description: Block for list of events.
 * -----------------------------------------------------------------------------
 */
.block-eventlist {
  text-align: center; }
  .block-eventlist .header {
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
    background-color: #cc9d3e;
    padding: 0.6em 0 0.35em;
    margin: 0; }
  .block-eventlist .eventslist {
    position: relative; }
    .block-eventlist .eventslist .slick-arrow {
      position: relative;
      top: auto;
      left: auto;
      right: auto;
      margin-top: 0;
      width: 100%; }
  .block-eventlist .event-item {
    display: block;
    margin-bottom: 0.05em;
    padding: 7px 20px; }
  .block-eventlist a.event-item {
    background-color: #dcb95f;
    color: #010101;
    -webkit-transition: background-color 0.2s ease-in;
    -moz-transition: background-color 0.2s ease-in;
    -o-transition: background-color 0.2s ease-in;
    transition: background-color 0.2s ease-in; }
    .block-eventlist a.event-item:hover {
      text-decoration: none;
      background-color: #cc9d3e; }
    .block-eventlist a.event-item .readmore-label {
      font-size: 0.7em;
      font-weight: 400;
      color: #fff;
      margin: 5px 0 0 0; }
  .block-eventlist .vertical-slider-track-holder {
    margin: 0.25em 0 0.4em 0; }
  .block-eventlist h2 {
    font-size: 0.9em;
    line-height: 1.22222em;
    margin: 0;
    font-weight: 600; }
  .block-eventlist .block-event-date {
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.15em; }
  .block-eventlist .block-event-location {
    margin-bottom: 0; }
  .block-eventlist .readmore {
    display: block;
    font-size: 0.75em;
    color: #fff;
    background-color: #cc9d3e;
    padding: 0.2em 0;
    -webkit-transition: background-color 0.2s ease-in;
    -moz-transition: background-color 0.2s ease-in;
    -o-transition: background-color 0.2s ease-in;
    transition: background-color 0.2s ease-in; }
    .block-eventlist .readmore:hover {
      text-decoration: none;
      background-color: #be8623; }
  .block-eventlist .fa-spinner {
    font-size: 1.2em;
    color: #fff;
    padding: 3.5em 0; }
  .block-eventlist.is-fetching {
    background-color: #eedeb3; }

/**
 * 13.0 - News archive block
 *
 * Description: Block for link to news archive.
 * -----------------------------------------------------------------------------
 */
.block-news-archive, .is-isotope .block-news-archive {
  position: relative; }
  .block-news-archive p, .is-isotope .block-news-archive p {
    font-size: 1.3em;
    line-height: 1.23077em;
    font-weight: 800;
    margin-bottom: 0; }
    .block-news-archive p span, .is-isotope .block-news-archive p span {
      color: #e30613; }
  .block-news-archive .icon, .is-isotope .block-news-archive .icon {
    position: absolute;
    top: 35%;
    right: 13px;
    font-size: 1.5em;
    line-height: normal;
    color: #e30613; }
  .block-news-archive.block-small .icon, .is-isotope .block-news-archive.block-small .icon {
    top: auto;
    bottom: 20px; }
  .block-news-archive.block-medium .block-body, .is-isotope .block-news-archive.block-medium .block-body {
    width: 437px; }
    @media (max-width: 767px) {
      .block-news-archive.block-medium .block-body, .is-isotope .block-news-archive.block-medium .block-body {
        width: auto; } }
  .block-news-archive.block-large .block-body, .is-isotope .block-news-archive.block-large .block-body {
    width: 669px; }
    @media (max-width: 1023px) {
      .block-news-archive.block-large .block-body, .is-isotope .block-news-archive.block-large .block-body {
        width: 437px; } }
    @media (max-width: 767px) {
      .block-news-archive.block-large .block-body, .is-isotope .block-news-archive.block-large .block-body {
        width: auto; } }

/**
 * 14.0 - Social Media
 *
 * Description: Block for link to social media.
 * -----------------------------------------------------------------------------
 */
.block-social-media, .is-isotope .block-social-media {
  background-color: #0080c6; }
  .block-social-media .block-header, .is-isotope .block-social-media .block-header {
    border-bottom: none;
    padding-bottom: 0;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    margin-top: 0.7em; }
  .block-social-media .block-body, .is-isotope .block-social-media .block-body {
    padding: 0;
    *zoom: 1; }
    .block-social-media .block-body:before, .block-social-media .block-body:after, .is-isotope .block-social-media .block-body:before, .is-isotope .block-social-media .block-body:after {
      display: table;
      content: "";
      line-height: 0; }
    .block-social-media .block-body:after, .is-isotope .block-social-media .block-body:after {
      clear: both; }
    .block-social-media .block-body > ul, .is-isotope .block-social-media .block-body > ul {
      margin: 0;
      padding: 0;
      list-style-type: none; }
      .block-social-media .block-body > ul > li, .is-isotope .block-social-media .block-body > ul > li {
        float: left;
        list-style-type: none;
        width: 50%; }
        .block-social-media .block-body > ul > li:nth-child(odd) > a, .is-isotope .block-social-media .block-body > ul > li:nth-child(odd) > a {
          margin-right: 1px; }
        .block-social-media .block-body > ul > li:nth-child(5) > a, .block-social-media .block-body > ul > li:nth-child(6) > a, .is-isotope .block-social-media .block-body > ul > li:nth-child(5) > a, .is-isotope .block-social-media .block-body > ul > li:nth-child(6) > a {
          margin-bottom: 0; }
        .block-social-media .block-body > ul > li > a, .is-isotope .block-social-media .block-body > ul > li > a {
          display: block;
          min-height: 91px;
          text-align: center;
          font-size: 0.9em;
          line-height: 1.22222em;
          font-weight: 800;
          color: #fff;
          background-color: #00598a;
          margin-bottom: 1px;
          padding: 0.83333em;
          -webkit-transition: background-color 0.25s ease;
          -moz-transition: background-color 0.25s ease;
          -o-transition: background-color 0.25s ease;
          transition: background-color 0.25s ease; }
          .block-social-media .block-body > ul > li > a:hover, .is-isotope .block-social-media .block-body > ul > li > a:hover {
            background-color: #00334f;
            text-decoration: none; }
          .block-social-media .block-body > ul > li > a .icon, .is-isotope .block-social-media .block-body > ul > li > a .icon {
            font-size: 1.66667em;
            line-height: 1.33333em; }

/**
 * 15.0 - Iframe
 *
 * Description: Block for an iframe.
 * -----------------------------------------------------------------------------
 */
.block-iframe iframe {
  width: 100%; }

/**
 * 16.0 - Count down
 *
 * Description: Block for a count down.
 * -----------------------------------------------------------------------------
 */
.count-downer {
  margin-bottom: 0.75em; }

/* jQuery Countdown styles 2.0.0. */
.countdown-rtl {
  direction: rtl; }

.countdown-holding span {
  color: #010101; }

.countdown-row {
  clear: both;
  width: 100%;
  padding: 0px 2px;
  text-align: center; }

.countdown-show1 .countdown-section {
  width: 98%; }

.countdown-show2 .countdown-section {
  width: 48%; }

.countdown-show3 .countdown-section {
  width: 32.5%; }

.countdown-show4 .countdown-section {
  width: 24.5%; }

.countdown-show5 .countdown-section {
  width: 19.5%; }

.countdown-show6 .countdown-section {
  width: 16.25%; }

.countdown-show7 .countdown-section {
  width: 14%; }

.countdown-section {
  display: block;
  float: left;
  font-size: 75%;
  text-align: center; }

.countdown-amount {
  font-size: 200%; }

.countdown-period {
  display: block; }

.countdown-descr {
  display: block;
  width: 100%; }

/**
 * Flag
 *
 * @version: 1.0
 * Description: Works like the Media component, but can vertically align stuff too.
 *
 */
.flag {
  display: table;
  width: 100%;
  margin-bottom: 20px; }

.flag .img, .flag .bd {
  display: table-cell;
  vertical-align: middle; }

.flag-top .img, .flag-top .bd {
  vertical-align: top; }

.flag-bottom .img, .flag-bottom .bd {
  vertical-align: bottom; }

.flag .img {
  padding-right: 10px; }
  .flag .img > img {
    display: block;
    max-width: none; }

.flag-flipped .img {
  padding-right: 0;
  padding-left: 10px; }

.flag .bd {
  width: 100%; }
  .flag .bd p {
    margin-bottom: 0; }

/**
 * Media
 *
 * @version: 1.0
 * Read more: http://www.stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code/
 *
 */
.media, .body {
  overflow: hidden; }

.media .img {
  float: left;
  margin-right: 1em; }

.media .img img {
  display: block; }

.media .img-flipped {
  float: right;
  margin-left: 1em;
  margin-right: inherit; }

/**
 * Spinner
 *
 * @see: http://tobiasahlin.com/spinkit/
 *
 */
.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -9px 0 0 -35px;
  width: 70px;
  text-align: center;
  z-index: 12;
  font-size: 26px; }

.spinner > div {
  width: 18px;
  height: 18px;
  margin: 0 2px;
  font-size: 26px;
  background-color: #fff;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  animation: bouncedelay 1.4s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s; }

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s; }

@-webkit-keyframes bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0); }

  40% {
    -webkit-transform: scale(1); } }

@keyframes bouncedelay {
  0%, 80%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0); }

  40% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

/**
 * Subject
 *
 * Description: A component to use as a header on other page elements.
 *
 */
/**
 * Google translate
 *
 * Description: Contains styling for the Google translate link. 
 * -----------------------------------------------------------------------------
 */
/**
 * Table of Contents:
 *
 * 1.0 - Base
 *   1.1 - Responsive
 * -----------------------------------------------------------------------------
 */
/**
 * 1.0 - Base
 * -----------------------------------------------------------------------------
 */
#google-translate {
  float: right;
  font-size: 0.8em; }
  #google-translate > .link {
    color: #010101;
    position: relative; }
    #google-translate > .link:hover {
      text-decoration: none; }
    #google-translate > .link .is-visible-hover {
      display: none; }
    #google-translate > .link.is-expanded .is-visible-hover {
      display: inline-block; }
    #google-translate > .link.is-expanded .is-hidden-hover {
      display: none; }
  #google-translate .dropdown {
    min-width: 300px; }
  @media (max-width: 1140px) {
    #google-translate > .link .text {
      display: none; } }

/**
 * 1.1 - Responsive
 * -----------------------------------------------------------------------------
 */
@media (max-width: 767px) {
  #google-translate {
    display: inline;
    float: none;
    position: static; }
    #google-translate > .link {
      font-size: 1.75em;
      display: inline-block;
      color: #fff;
      padding: 0.28571em 0.35714em; }
      #google-translate > .link .caret {
        display: none !important; }
      #google-translate > .link.is-expanded {
        color: #e30613; }
    #google-translate .dropdown {
      position: absolute;
      top: 44px;
      left: 0;
      width: 100%;
      background-color: #fff;
      z-index: 10;
      border: 0;
      padding: 0.5em;
      -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
      -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
      box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box; } }

/**
 * Language switcher
 *
 * Description: Contains styling for language switchers. 
 * -----------------------------------------------------------------------------
 */
/**
 * Table of Contents:
 *
 * 1.0 - Language switcher
 *   1.1 - Language switcher Responsive
 * 2.0 - Page translations
 * -----------------------------------------------------------------------------
 */
/**
 * 1.0 - Language switcher
 * -----------------------------------------------------------------------------
 */
.language-switcher {
  float: right;
  font-size: 0.8em;
  list-style-type: none;
  margin: 0 4.125em 0 0;
  padding: 0; }
  .language-switcher > li {
    display: inline-block;
    *zoom: 1;
    text-transform: uppercase;
    padding: 0 0 0 15px; }
    .language-switcher > li > a {
      color: #010101; }
      .language-switcher > li > a .icon {
        vertical-align: baseline;
        line-height: 0.6em;
        color: #999; }
    .language-switcher > li > a:hover {
      text-decoration: none;
      color: #e30613; }
      .language-switcher > li > a:hover .icon {
        color: #e30613; }
    .language-switcher > li:first-child {
      padding-left: 0; }
    .language-switcher > li.active > a {
      font-weight: 600; }
      .language-switcher > li.active > a .icon {
        color: #e30613; }
  @media (max-width: 1140px) {
    .language-switcher li a .icon {
      display: none; }
    .language-switcher li.active a .icon {
      display: inline-block; } }

/**
 * 1.1 - Language switcher Responsive
 * -----------------------------------------------------------------------------
 */
@media (max-width: 767px) {
  .language-switcher {
    display: none;
    position: absolute;
    top: 44px;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 10;
    padding: 0.5em;
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
  .language-switcher-link.is-visible-small {
    display: inline-block !important;
    color: #fff;
    font-size: 1.4em;
    padding: 0.28571em 0.35714em; }
    .language-switcher-link.is-visible-small.is-expanded {
      color: #e30613; } }

/**
 * 2.0 - Page translations
 * -----------------------------------------------------------------------------
 */
.page-translations ul {
  list-style-type: none;
  padding: 0;
  margin: 0 0 20px 0; }
  .page-translations ul > li {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.8em;
    line-height: 1.625em; }
    .page-translations ul > li.active {
      font-weight: 800; }
    .page-translations ul > li.description {
      text-transform: none; }
      .page-translations ul > li.description ~ li:before {
        content: '|';
        padding: 0 5px 0 0; }
      .page-translations ul > li.description + li:before {
        content: "";
        padding: 0; }

html.lt-ie9 .page-translations ul {
  *zoom: 1; }
  html.lt-ie9 .page-translations ul:before, html.lt-ie9 .page-translations ul:after {
    display: table;
    content: "";
    line-height: 0; }
  html.lt-ie9 .page-translations ul:after {
    clear: both; }
  html.lt-ie9 .page-translations ul > li {
    display: block;
    float: left;
    padding: 0 5px 0 0; }

/**
 * Favourites nav
 *
 * Description: Contains styling for the favourites dropdown.
 * -----------------------------------------------------------------------------
 */
/**
 * Table of Contents:
 *
 * 1.0 - Base
 *   1.1 - Responsive
 * -----------------------------------------------------------------------------
 */
/**
 * 1.0 - Base
 * -----------------------------------------------------------------------------
 */
#favourites-nav {
  float: left;
  width: 175px;
  font-size: 0.8em;
  margin-top: -0.6em; }
  #favourites-nav > ul {
    list-style: none;
    margin: 0;
    padding: 0; }
  #favourites-nav > ul > li {
    position: static;
    border: 1px solid #fff;
    border-bottom: 0; }
    #favourites-nav > ul > li .favourites-text {
      padding: 0.7em 0.8em 0.2em;
      position: relative;
      margin: 0;
      line-height: 1.3em;
      background-color: #fff;
      font-weight: 600; }
      #favourites-nav > ul > li .favourites-text .icon {
        color: #e30613; }
    #favourites-nav > ul > li .info {
      padding: 0.625em 0;
      margin-right: 1.5625em;
      display: block; }
    #favourites-nav > ul > li .is-visible-hover {
      display: none; }
    #favourites-nav > ul > li:hover {
      border-color: #e5e5e5; }
      #favourites-nav > ul > li:hover .favourites-text {
        border: 0;
        z-index: 101; }
      #favourites-nav > ul > li:hover .is-visible-hover {
        display: inline-block; }
      #favourites-nav > ul > li:hover .is-hidden-hover {
        display: none; }
  #favourites-nav .dropdown {
    max-height: 400px;
    overflow: auto; }
  @media (max-width: 1140px) {
    #favourites-nav {
      width: 150px; }
      #favourites-nav > ul > li .favourites-text .text {
        font-size: 0.8125em; } }
  @media (max-width: 1024px) {
    #favourites-nav {
      width: 120px; }
      #favourites-nav > ul > li .favourites-text .text {
        display: none; } }

/**
 * 1.1 - Responsive
 * -----------------------------------------------------------------------------
 */
@media (max-width: 767px) {
  #favourites-nav {
    float: none;
    width: auto;
    display: inline;
    margin: 0;
    padding: 0;
    position: static; }
    #favourites-nav > ul, #favourites-nav > ul > li {
      display: inline;
      border: 0; }
    #favourites-nav > ul > li {
      position: static; }
      #favourites-nav > ul > li:hover {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none; }
        #favourites-nav > ul > li:hover .dropdown {
          display: none; }
      #favourites-nav > ul > li .favourites-text {
        display: inline;
        padding: 0;
        background-color: transparent; }
        #favourites-nav > ul > li .favourites-text .text, #favourites-nav > ul > li .favourites-text .caret {
          display: none; }
        #favourites-nav > ul > li .favourites-text .icon {
          color: #fff; }
      #favourites-nav > ul > li .favourites-link {
        font-size: 1.75em;
        display: inline-block !important;
        padding: 0.28571em 0.35714em; }
        #favourites-nav > ul > li .favourites-link > .icon {
          color: #fff; }
        #favourites-nav > ul > li .favourites-link.is-expanded > .icon {
          color: #e30613; }
      #favourites-nav > ul > li .dropdown {
        width: 100%;
        max-height: 1000px;
        position: absolute;
        top: 44px;
        left: 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box; } }

.favorites-form-container {
  padding: 30px;
  display: block; }
  .favorites-form-container .title-favorites-form {
    margin-bottom: 15px; }
  .favorites-form-container .save-favorites-form {
    margin-top: 15px;
    font-size: 0.7em;
    padding: 0 10px 0 10px;
    width: inherit;
    font-weight: 100;
    float: left; }
  .favorites-form-container .gotoBtn {
    padding: 0 10px 0 10px;
    width: inherit; }

/**
 * Favourites nav
 *
 * Description: Contains styling for the favourites dropdown.
 * -----------------------------------------------------------------------------
 */
/**
 * Table of Contents:
 *
 * 1.0 - Dropdown
 *   1.1 - Dropdown responsive
 * 2.0 - Dropdown nav
 * -----------------------------------------------------------------------------
 */
/**
 * 1.0 - Dropdown
 * -----------------------------------------------------------------------------
 */
.has-dropdown {
  position: relative;
  display: block;
  border: 1px solid #fff;
  border-bottom: 0; }
  .has-dropdown:hover {
    border-color: #e5e5e5;
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2); }
    .has-dropdown:hover > .dropdown {
      display: block; }

.dropdown {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  left: 0;
  width: 140%;
  z-index: 100000;
  border: 1px solid #e5e5e5;
  background-color: #fff;
  margin-top: -1px;
  padding: 0.1em 0.9em;
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  .dropdown#social-media-widget {
    padding-top: 0.5em;
    padding-bottom: 0.3em;
    width: 100%;
    min-width: 180px; }
  .dropdown > li {
    position: relative;
    font-size: 0.8em;
    line-height: 1.375em;
    font-weight: 600;
    border-top: 1px solid #e5e5e5; }
    .dropdown > li:first-child {
      border-top: 0; }
      .dropdown > li:first-child a {
        padding-top: 0.75em; }
    .dropdown > li a.link {
      display: block;
      color: #666;
      padding: 0.625em 0;
      margin-right: 1.5625em; }
    .dropdown > li a.remove {
      position: absolute;
      right: -10px;
      top: -1px;
      padding: 0.625em;
      color: #999; }
      .dropdown > li a.remove:hover {
        color: #e30613; }
  .dropdown.dropdown-large {
    padding: 0.75em;
    max-height: 500px;
    overflow: auto;
    top: 100%;
    width: 100%; }
    .dropdown.dropdown-large.dropdown-right {
      left: auto;
      right: 0; }
    .dropdown.dropdown-large > li {
      display: block;
      padding: 0.2em 0.2em;
      border-bottom: 1px solid #e5e5e5; }
      .dropdown.dropdown-large > li a {
        text-decoration: none;
        color: #010101; }
      .dropdown.dropdown-large > li a:hover {
        color: #e30613; }

/**
 * 1.1 - Dropdown responsive
 * -----------------------------------------------------------------------------
 */
@media (max-width: 767px) {
  .has-dropdown:hover {
    border: 0; } }

/**
 * 2.0 - Dropdown nav
 * -----------------------------------------------------------------------------
 */
.dropdown-nav {
  position: relative; }
  .dropdown-nav .subject {
    cursor: pointer;
    *zoom: 1; }
    .dropdown-nav .subject:before, .dropdown-nav .subject:after {
      display: table;
      content: "";
      line-height: 0; }
    .dropdown-nav .subject:after {
      clear: both; }
    .dropdown-nav .subject .caret {
      float: right; }
  .dropdown-nav ul.dropdown {
    list-style-type: none; }
  .dropdown-nav.open > .dropdown {
    display: block; }

.primary-search {
  position: absolute;
  right: 20px;
  top: 20px; }

.search-result-embedded {
  border-top: 1px solid #e5e5e5;
  padding-top: 40px;
  margin-top: -1em; }

.search-form, .search-result-embedded {
  position: relative; }
  .search-form button.inline-search, .search-result-embedded button.inline-search {
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
    border: none; }
  .search-form .search-top, .search-result-embedded .search-top {
    padding-bottom: 3.7em; }
  .search-form .no-results, .search-result-embedded .no-results {
    margin-top: -1.5em;
    font-weight: 600; }
  .search-form.search-form-lg input.query.query-lg, .search-result-embedded.search-form-lg input.query.query-lg {
    font-size: 1em;
    line-height: 1em;
    height: 2.85em;
    padding-left: 2.55em; }
  .search-form.search-form-lg button.inline-search, .search-result-embedded.search-form-lg button.inline-search {
    padding: 0 13px 0 19px;
    height: 57px;
    line-height: 57px; }
  .search-form.search-form-result input.query.query-lg, .search-result-embedded.search-form-result input.query.query-lg {
    font-size: 0.8em;
    line-height: 1em;
    height: 2.9375em;
    padding-left: 2.5625em; }
  .search-form.search-form-result button, .search-result-embedded.search-form-result button {
    padding: 0 13px 0 19px;
    height: 47px;
    line-height: 47px; }
  .search-form .sort-options, .search-form .index-options, .search-result-embedded .sort-options, .search-result-embedded .index-options {
    font-size: 0.8em;
    padding-top: 1.5em;
    margin-bottom: 0.1875em;
    vertical-align: middle; }
    .search-form .sort-options strong, .search-form .index-options strong, .search-result-embedded .sort-options strong, .search-result-embedded .index-options strong {
      vertical-align: middle;
      display: inline-block;
      font-weight: 600;
      padding-right: 0.6875em; }
  .search-form .save-search, .search-result-embedded .save-search {
    font-size: 0.9em;
    line-height: 1em;
    vertical-align: baseline;
    border-bottom: 1px solid #e5e5e5;
    margin-top: -1.61111em;
    padding-bottom: 0.61111em;
    margin-bottom: 1em; }
    .search-form .save-search p, .search-result-embedded .save-search p {
      margin-bottom: 0;
      line-height: 1em; }
    .search-form .save-search a, .search-result-embedded .save-search a {
      color: #010101; }
    .search-form .save-search .fa, .search-result-embedded .save-search .fa {
      color: #e30613; }
    .search-form .save-search strong, .search-result-embedded .save-search strong {
      font-weight: 800;
      padding-right: 0.77778em; }
    .search-form .save-search .social-media-widget-container, .search-result-embedded .save-search .social-media-widget-container {
      padding-right: 1.11111em; }
  .search-form .num-results, .search-result-embedded .num-results {
    font-size: 0.9em; }
  .search-form .result-holder, .search-result-embedded .result-holder {
    margin-bottom: 1em; }
  .search-form .list-item, .search-result-embedded .list-item {
    padding-bottom: 1.15em; }
    .search-form .list-item h2, .search-result-embedded .list-item h2 {
      margin-bottom: 0.26923em; }
    .search-form .list-item p, .search-result-embedded .list-item p {
      font-size: 0.9em;
      line-height: 1.44444em; }
    .search-form .list-item a, .search-result-embedded .list-item a {
      color: #010101; }
  .search-form .filter-toggle, .search-result-embedded .filter-toggle {
    position: relative;
    display: block;
    padding: 0.85em 0.85em 0.75em;
    color: #010101;
    font-weight: 800;
    background-color: #ebebeb;
    text-transform: capitalize; }
    .search-form .filter-toggle:hover, .search-result-embedded .filter-toggle:hover {
      text-decoration: none;
      background-color: #d8d8d8; }
    .search-form .filter-toggle:after, .search-result-embedded .filter-toggle:after {
      font-family: FontAwesome;
      font-weight: normal;
      font-style: normal;
      text-decoration: inherit;
      -webkit-font-smoothing: antialiased;
      content: "\f107";
      position: absolute;
      top: 0.9em;
      right: 0.85em; }
    .search-form .filter-toggle.is-collapsed:after, .search-result-embedded .filter-toggle.is-collapsed:after {
      content: "\f106"; }
  .search-form .filter-group-holder, .search-result-embedded .filter-group-holder {
    margin-bottom: 1.38889em; }
  .search-form .form-filters-group, .search-result-embedded .form-filters-group {
    border: 0;
    padding: 0;
    font-size: 0.9em; }
  .search-form .sri-filter, .search-result-embedded .sri-filter {
    width: 100%; }
  .search-form .block-search-info, .search-result-embedded .block-search-info {
    margin-bottom: 2.5em;
    font-size: 0.8em;
    line-height: 1.375em; }
    .search-form .block-search-info img, .search-result-embedded .block-search-info img {
      margin-bottom: 0.9375em; }
    .search-form .block-search-info p.h-headline, .search-result-embedded .block-search-info p.h-headline {
      font-size: 1.375em;
      line-height: 1.18182em; }
    .search-form .block-search-info p, .search-result-embedded .block-search-info p {
      line-height: 1.375em; }
    .search-form .block-search-info a.readmore, .search-result-embedded .block-search-info a.readmore {
      font-weight: 800;
      color: #010101; }

.archive-logo {
  float: left;
  width: 41px;
  height: 35px;
  background: url(../images/icem_logo_small.png) no-repeat left top;
  padding-right: 0.4em;
  margin-top: 0.4em; }

.archive-logo.imf {
  background: url(../images/imf_logo_small.png) no-repeat left top; }

.r-iframe, .embedded-video .player {
  position: relative;
  padding-bottom: 75%;
  padding-top: 0;
  height: 0;
  overflow: hidden; }
  .r-iframe iframe, .embedded-video .player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.embedded-video .player {
  padding-bottom: 56.25%; }

.inline-image {
  float: left;
  padding: 0.4em 1.25em 0 0; }
  .inline-image img {
    margin-bottom: 0.3em; }
  .inline-image p.description {
    font-size: 0.7em;
    line-height: 1.21429em; }

.terms-holder {
  margin-top: -10px; }
  .terms-holder.related-object {
    margin-bottom: 3em; }

ul.term-list {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0; }
  ul.term-list li {
    display: inline;
    margin: 0;
    padding: 0; }
    ul.term-list li a {
      background-color: #282828;
      color: #fff;
      font-size: 0.8em;
      line-height: 1.25em;
      height: 1.25em;
      float: left;
      display: inline-block;
      *zoom: 1;
      padding: 0.4375em 1.0625em;
      margin: 10px 10px 0 0; }
      ul.term-list li a:hover {
        text-decoration: none;
        background-color: #4e4e4e; }

.icon-list {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 1em; }
  .icon-list > li {
    margin-bottom: 10px; }
  .icon-list.icon-list-inline {
    margin-left: 0; }
    .icon-list.icon-list-inline .fa {
      display: inline-block; }

.interactive-object {
  text-align: center;
  margin-bottom: 30px; }
  .interactive-object .icon {
    color: #e30613;
    font-size: 1.6em;
    line-height: 0.8125em;
    margin: 0 0 0.3125em 0; }
  .interactive-object p {
    font-size: 0.9em;
    line-height: 1em; }
  .interactive-object .text {
    font-size: 0.9em;
    line-height: 1em;
    display: block; }
  .interactive-object .dropdown {
    padding-top: 0.5em;
    padding-bottom: 0.5em; }

.affiliate_nav {
  background: url(../images/affiliate_bkg.png) no-repeat right top #010101;
  min-height: 320px;
  position: relative;
  color: #fff;
  margin: 0 auto;
  max-width: 1082px; }
  .affiliate_nav #affiliate_nav {
    padding: 1.65em 1.35em; }
  .affiliate_nav h1 {
    color: #fff;
    margin-bottom: 15px; }
  .affiliate_nav .rte {
    width: 320px; }
    .affiliate_nav .rte p {
      font-size: 0.9em;
      line-height: 1.44444em;
      margin-bottom: 0; }
    @media (max-width: 767px) {
      .affiliate_nav .rte {
        width: 100%; } }
  .affiliate_nav select, .affiliate_nav .chosen-container {
    width: 275px; }
    .affiliate_nav select .chzn-drop li, .affiliate_nav .chosen-container .chzn-drop li {
      color: #010101; }
    @media (max-width: 767px) {
      .affiliate_nav select, .affiliate_nav .chosen-container {
        width: 100%; } }
  .affiliate_nav p.info {
    position: absolute;
    left: 27px;
    bottom: 0px;
    font-size: 0.6em; }
    .affiliate_nav p.info a {
      color: #fff;
      text-decoration: underline !important; }
  .affiliate_nav + .views_panes {
    background-color: #fff;
    padding: 2.25em 0 0;
    margin: 0 auto;
    max-width: 1082px;
    font-size: 0.8em; }
    .affiliate_nav + .views_panes a {
      color: #010101; }
  @media (max-width: 767px) {
    .affiliate_nav {
      background: #010101; }
      .affiliate_nav + .views_panes {
        display: none; } }

.view-affiliate-countries {
  padding: 0 50px; }

.views-view-grid {
  width: 100%; }
  .views-view-grid.cols-4 td {
    width: 25%;
    border: none;
    padding: 0; }
    .views-view-grid.cols-4 td .views-field {
      padding: 0 0 12px 7px; }
  .views-view-grid a {
    font-size: 1.1em;
    line-height: 1.18182em; }

.view-affiliate-list h2.list-header {
  font-size: 0.9em;
  padding-bottom: 0.72222em;
  margin-bottom: 0.61111em;
  text-transform: uppercase;
  color: #e30613;
  background: url(../images/horizontal-border.gif) repeat-x left bottom; }

#block-system-main .content ul.inline-nav {
  margin-bottom: 16px;
  padding-left: 0;
  margin-top: -16px;
  list-style: none;
  font-size: 0.8em; }
  #block-system-main .content ul.inline-nav .arrow {
    color: #ccc; }
  #block-system-main .content ul.inline-nav a {
    color: #e30613; }

.node-affiliate {
  margin-bottom: 1em; }

.node-affiliate h3 {
  max-width: 500px;
  margin-bottom: 11px; }

.node-affiliate p {
  margin-bottom: 0.5em; }

.node-affiliate p.label {
  font-weight: bold;
  margin-bottom: 0; }

.node-affiliate .col {
  width: 45%;
  padding-right: 5%;
  float: left; }

.node-region-page .image {
  margin-bottom: 0.5em; }
.node-region-page .image img {
  width: 100%; }
.node-region-page .rte {
  font-size: 0.8em; }
.node-region-page .rte ul, .node-region-page .rte ol {
  padding-left: 1em; }
.node-region-page .inner-header {
  margin-bottom: 0.5em; }

/**
 * Iframe
 *
 * Description: Contains styles for iframes.
 *
 */
/**
 * Table of Contents:
 *
 * 1.0 - Base
 * -----------------------------------------------------------------------------
 */
/**
 * 1.0 - Base
 *
 * Description: Set up base styles
 * -----------------------------------------------------------------------------
 */
iframe {
  border: 0; }
  iframe.fullHeight {
    width: 100%; }

/**
 * Switch
 *
 * Description: Contains styles for a toggle switch.
 *
 */
/**
 * Table of Contents:
 *
 * 1.0 - Variables
 * 2.0 - Common
 * 3.0 - Switch 1 - round
 * -----------------------------------------------------------------------------
 */
/**
 * 1.0 - Variables
 *
 * -----------------------------------------------------------------------------
 */
/**
 * 2.0 - Common
 *
 * -----------------------------------------------------------------------------
 */
.cmn-toggle {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden; }

.cmn-toggle + label {
  display: block;
  position: relative;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

/**
 * 3.0 - Switch 1 - round
 *
 * -----------------------------------------------------------------------------
 */
input.cmn-toggle-round + label {
  padding: 2px;
  width: 30px;
  height: 15px;
  background-color: #dddddd;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px; }

input.cmn-toggle-round + label:before, input.cmn-toggle-round + label:after {
  display: block;
  position: absolute;
  top: 1px;
  left: 1px;
  bottom: 1px;
  content: ""; }

input.cmn-toggle-round + label:before {
  right: 1px;
  background-color: #f1f1f1;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  -webkit-transition: background 0.4s;
  -moz-transition: background 0.4s;
  -o-transition: background 0.4s;
  transition: background 0.4s; }

input.cmn-toggle-round + label:after {
  width: 17px;
  background-color: #fff;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  -webkit-transition: margin 0.4s;
  -moz-transition: margin 0.4s;
  -o-transition: margin 0.4s;
  transition: margin 0.4s; }

input.cmn-toggle-round:checked + label:before {
  background-color: #8ce196; }

input.cmn-toggle-round:checked + label:after {
  margin-left: 15px; }

/**
 * Liveupdatebar
 *
 * Description: Contains styles for the liveupdatebar.
 *
 */
/**
 * Table of Contents:
 *
 * 1.0 - Base
 * -----------------------------------------------------------------------------
 */
/**
 * 1.0 - Base
 *
 * -----------------------------------------------------------------------------
 */
.liveupdatebar {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 200;
  font-size: 0.9em;
  background-color: #fff;
  border-top: 4px solid #e30613;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.3s ease-in;
  -moz-transition: height 0.3s ease-in;
  -o-transition: height 0.3s ease-in;
  transition: height 0.3s ease-in; }
  .liveupdatebar.is-active {
    -webkit-transition: height 0.3s ease-in;
    -moz-transition: height 0.3s ease-in;
    -o-transition: height 0.3s ease-in;
    transition: height 0.3s ease-in;
    height: auto; }
  .liveupdatebar .inner {
    padding: 1.44444em 0.55556em 0.27778em; }
  .liveupdatebar.affix-bottom {
    position: absolute;
    bottom: auto; }
  .liveupdatebar .close {
    position: absolute;
    right: 1.11111em;
    top: 0.55556em;
    color: #010101; }
  .liveupdatebar p {
    float: left;
    font-weight: 800;
    line-height: 1.44444em; }
    .liveupdatebar p.thin {
      position: relative;
      font-weight: 400;
      float: right;
      padding-top: 0.22222em; }
    .liveupdatebar p strong {
      font-size: 1.55556em;
      line-height: 0.92857em;
      font-weight: 800;
      padding-right: 0.28571em;
      color: #010101; }
    .liveupdatebar p a {
      color: #e30613; }
  .liveupdatebar .switch {
    display: inline-block;
    float: right;
    margin: 0.44444em 0 0 0.55556em; }
  @media (max-width: 1060px) {
    .liveupdatebar p {
      margin-bottom: 10px; }
    .liveupdatebar p {
      float: none; }
    .liveupdatebar p.thin {
      float: left;
      padding-top: 0; }
    .liveupdatebar .switch {
      float: left;
      margin: 0.22222em 0.55556em 0 0; } }
  @media (max-width: 767px) {
    .liveupdatebar p strong {
      display: block; } }

/**
 * Block
 *
 * Description: Contains styles for Affix plugin.
 *
 */
/**
 * Table of Contents:
 *
 * 1.0 - Base
 * -----------------------------------------------------------------------------
 */
/**
 * 1.0 - Base
 *
 * -----------------------------------------------------------------------------
 */
.affix {
  position: fixed; }
  .affix.affix-bottom {
    position: absolute !important; }

/**
 * Area of interest
 *
 * Description: Contains styles for the area of interest component.
 *
 */
/**
 * Table of Contents:
 *
 * 1.0 - Base
 * -----------------------------------------------------------------------------
 */
/**
 * 1.0 - Base
 *
 * -----------------------------------------------------------------------------
 */
.area-of-interest-outer-container {
  display: block;
  height: 120px;
  max-width: 1555px;
  margin-bottom: 10px; }
  @media (max-width: 767px) {
    .area-of-interest-outer-container {
      margin-left: -3%;
      margin-right: -3%; } }

.area-of-interest-inner-container {
  display: block;
  position: relative;
  background-color: #fff;
  height: 120px; }

.area-of-interest-inner-container .slick-slider {
  height: 120px;
  padding-left: 60px;
  padding-right: 60px; }
  @media (max-width: 690px) {
    .area-of-interest-inner-container .slick-slider {
      padding-left: 0px;
      padding-right: 0px; } }

.area-of-interest-inner-container .slick-prev, .area-of-interest-inner-container .slick-next {
  left: 20px;
  position: absolute;
  opacity: 0.5;
  top: 57px; }
  @media (max-width: 690px) {
    .area-of-interest-inner-container .slick-prev, .area-of-interest-inner-container .slick-next {
      display: none !important; } }
.area-of-interest-inner-container .slick-next {
  left: auto;
  right: 20px; }

.area-of-interest-inner-container .spinner > div {
  background-color: #ebebeb; }

.area-of-interest-content {
  display: block;
  height: 120px;
  width: 380px;
  position: relative; }
  @media (max-width: 690px) {
    .area-of-interest-content {
      width: 300px; } }

.area-of-interest-content:focus {
  outline: none; }

.area-of-interest-content a {
  color: #e30613; }

.area-of-interest-content a:focus {
  outline: none; }

.area-of-interest-content .text-area-container {
  margin-top: 10px;
  margin-left: 25px;
  margin-right: 25px;
  display: inline-block;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.area-of-interest-inner-container .text-area-container p {
  font-size: 0.8em; }

.area-of-interest-inner-container .right-line {
  background-color: #ebebeb;
  width: 3px;
  height: 70px;
  position: absolute;
  right: 0px;
  top: 25px; }

.area-of-interest-hidden {
  position: absolute;
  width: 3px;
  height: 120px;
  right: 60px;
  top: 0px;
  z-index: 100;
  background-color: #fff; }
  @media (max-width: 690px) {
    .area-of-interest-hidden {
      right: 0px; } }

.area-of-interst-content-fancybox {
  display: block;
  padding: 30px; }
  .area-of-interst-content-fancybox .switch {
    float: right;
    margin-top: 40px; }
  .area-of-interst-content-fancybox .thin {
    font-size: 0.7em;
    float: right;
    margin-top: 40px;
    margin-right: 5px;
    max-width: 230px; }

.title-area-of-interest-fancybox {
  font-size: 2em; }

.text-area-of-interest-fancybox {
  font-size: 0.8em; }

.select-area-of-interest-fancybox {
  font-size: 0.8em; }

.select-title {
  font-size: 0.8em;
  margin-top: 20px;
  margin-bottom: 2px; }

.save-area-of-interest {
  margin-top: 30px;
  font-size: 0.7em;
  padding: 0 8px 0 8px;
  min-width: 100%;
  font-weight: 100; }

.area-of-interest-outer-container .slick-list:after {
  position: absolute;
  right: 0;
  top: 0;
  content: ' ';
  display: block;
  height: 100%;
  width: 100px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background-repeat: repeat-y; }

/**
 * Page loader
 *
 * Description: Contains styles for the page-loader.
 *
 */
/**
 * Table of Contents:
 *
 * 1.0 - Base
 * -----------------------------------------------------------------------------
 */
/**
 * 1.0 - Base
 *
 * -----------------------------------------------------------------------------
 */
body.is-loading #pages:before {
  content: ' ';
  display: block;
  position: absolute;
  top: -0.5em;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 1em;
  padding-bottom: 1.5em;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 200; }
body.is-loading #pageLoader {
  position: fixed;
  z-index: 250; }

.no-js body.is-loading #pages:before, .no-js body.is-loading #pageLoader {
  display: none; }

/**
 * Block
 *
 * Description: Contains styles for the blocks.
 *
 */
/**
 * Table of Contents:
 *
 * 1.0 - Base
 * -----------------------------------------------------------------------------
 */
/**
 * 1.0 - Base
 *
 * Description: Set up base styles
 * -----------------------------------------------------------------------------
 */
.pagination {
  border-top: 1px solid #e5e5e5; }
  .pagination ul {
    list-style: none;
    padding: 0; }
    .pagination ul li {
      display: inline;
      padding-right: 1.5em; }
      .pagination ul li a {
        color: #e30613; }
      .pagination ul li.is-active a {
        color: #010101;
        font-weight: 800; }
      @media (max-width: 1017px) {
        .pagination ul li {
          font-size: 0.9em;
          padding-right: 1.11111em; } }

/** All events calender **/
.custom_title {
  margin: 2.5em 2.5em 0; }

.page-all-events {
  margin: 0 2.5em; }
  .page-all-events .event-date {
    float: left;
    margin-right: 3%;
    width: 19%; }
    .page-all-events .event-date h3 {
      color: #e30613;
      font-weight: normal;
      padding-top: 0;
      text-align: right; }
      .page-all-events .event-date h3 a {
        color: #e30613; }
  .page-all-events .event-list {
    float: left;
    width: 78%; }
    .page-all-events .event-list > .inner {
      border-left: 3px solid #cacaca;
      padding-left: 3%; }
  .page-all-events .event-group .event-list .event-separator {
    border-bottom: 1px dotted #cbcbcb;
    height: 1px;
    margin: 17px 0 17px 4.4%; }
  .page-all-events .event-group:last-child .event-list .event-separator {
    border-bottom: none;
    margin-top: 0; }
  .page-all-events .node-event {
    margin-bottom: 12px; }
    .page-all-events .node-event p.date {
      background-color: transparent;
      white-space: nowrap;
      color: #282828; }
    .page-all-events .node-event.node-calendar p.date {
      padding: 0;
      margin-top: 0;
      text-align: left;
      width: 10%; }
    .page-all-events .node-event.node-calendar.link p.date {
      background-color: transparent;
      color: #e30613; }
    .page-all-events .node-event .text-holder {
      width: 81%;
      float: left;
      padding-left: 5%; }
      .page-all-events .node-event .text-holder p {
        margin-bottom: 0;
        font-weight: bold; }
        .page-all-events .node-event .text-holder p.location {
          font-weight: normal;
          font-style: italic; }
  .page-all-events .view-content {
    margin-top: 35px; }
  .page-all-events .all-events-timeline .all-events-time-line-item {
    float: left;
    padding: 7px 0.875em;
    border-right: 1px solid #cacaca; }
    .page-all-events .all-events-timeline .all-events-time-line-item .year {
      font-weight: bold;
      margin-bottom: 0.3em; }
    .page-all-events .all-events-timeline .all-events-time-line-item:first-child {
      padding-left: 0; }
    .page-all-events .all-events-timeline .all-events-time-line-item:last-child {
      padding-right: 0;
      border-right: none; }
    .page-all-events .all-events-timeline .all-events-time-line-item .month-nav {
      padding: 0;
      margin: 0;
      list-style: none; }
      .page-all-events .all-events-timeline .all-events-time-line-item .month-nav li {
        float: left;
        padding-left: 0.857em; }
        .page-all-events .all-events-timeline .all-events-time-line-item .month-nav li:first-child {
          padding-left: 0; }
        .page-all-events .all-events-timeline .all-events-time-line-item .month-nav li a {
          color: #666;
          font-size: 0.928em; }
    @media (max-width: 1084px) {
      .page-all-events .all-events-timeline .all-events-time-line-item {
        font-size: 0.9em; } }
    @media (max-width: 987px) {
      .page-all-events .all-events-timeline .all-events-time-line-item {
        font-size: 0.85em; } }
    @media (max-width: 940px) {
      .page-all-events .all-events-timeline .all-events-time-line-item {
        font-size: 0.8em; } }
    @media (max-width: 891px) {
      .page-all-events .all-events-timeline .all-events-time-line-item {
        font-size: 0.75em; } }
    @media (max-width: 843px) {
      .page-all-events .all-events-timeline .all-events-time-line-item {
        font-size: 0.7em; } }
    @media (max-width: 794px) {
      .page-all-events .all-events-timeline .all-events-time-line-item {
        font-size: 0.65em; } }
    @media (max-width: 767px) {
      .page-all-events .all-events-timeline .all-events-time-line-item {
        float: none;
        font-size: 1em;
        border-right: none;
        padding-right: 0;
        padding-left: 0; } }
  @media (max-width: 767px) {
    .page-all-events .event-date {
      float: none;
      width: auto; }
      .page-all-events .event-date h3 {
        margin-bottom: 12px;
        text-align: left; }
    .page-all-events .event-list {
      float: none;
      width: auto; }
      .page-all-events .event-list > .inner {
        padding-left: 3%; }
    .page-all-events .node-event.node-calendar p.date {
      width: 15%; }
    .page-all-events .node-event .text-holder {
      padding-left: 0; } }

.at4-follow-outer, .at4-follow-outer * {
  display: none !important; }

.at-share-close-control, .at-share-close-control.at4-hide-content {
  visibility: visible !important;
  opacity: 1 !important; }

.browsehappy {
  background: #2B4141;
  font-family: Helvetica,Arial,sans-serif;
  padding: 12px 0;
  text-align: center;
  width: 100%;
  color: #EFEFEF;
  font-size: 16px; }

.browsehappy p {
  color: #EFEFEF !important;
  text-align: center;
  font-size: 13px;
  line-height: 19.5px; }

.browsehappy a {
  color: #EFEFEF !important;
  text-decoration: underline !important; }
  .browsehappy a:hover {
    text-decoration: none !important; }

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #fff;
  z-index: 100031;
  overflow: auto; }

.not-found-container .page-logo {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
  width: 180px; }
.not-found-container .not-found-image {
  width: 100%;
  height: 100%; }
.not-found-container .image-container {
  max-width: 1030px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2em; }
.not-found-container .error-text-style {
  font-size: 2.7em;
  font-weight: 800;
  line-height: 1.3em; }
.not-found-container .file-not-find-text-style {
  font-size: 2.7em;
  font-weight: 100;
  line-height: 1.3em;
  color: #A2A2A2; }
.not-found-container .btn-alert {
  width: auto;
  padding-left: 30px;
  padding-right: 30px;
  margin-top: 60px;
  margin-bottom: 60px; }
.not-found-container .info-not-found {
  line-height: 1.3em;
  font-weight: 300;
  font-size: 0.75em; }
  .not-found-container .info-not-found a {
    color: #e30613; }
.not-found-container hr {
  margin-top: 0px;
  width: 750px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  color: #d8d8d8;
  border: 0;
  height: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
.not-found-container p {
  margin-bottom: 0px; }
@media (max-width: 767px) {
  .not-found-container hr {
    width: 100%; }
  .not-found-container .error-text-style {
    font-size: 1.3em; }
  .not-found-container .file-not-find-text-style {
    font-size: 1.3em; } }

.take-over-container {
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -0.5em;
  margin-bottom: -2em;
  padding-top: 2.75em;
  padding-bottom: 2.8em;
  min-height: 42.5em; }
  .take-over-container .take-over-section {
    max-width: 41.05em; }
  .take-over-container .take-over-article {
    background-color: transparent !important;
    padding: 0 !important; }
    .take-over-container .take-over-article .page-column {
      background: url("../images/take_over/textbox-middle.png") left top repeat-y transparent;
      padding: 0 60px;
      color: #fff;
      width: auto;
      float: none; }
      .take-over-container .take-over-article .page-column a {
        color: #fff; }
    .take-over-container .take-over-article:before {
      background: url("../images/take_over/textbox-top.png") left top no-repeat transparent;
      content: ".";
      height: 93px;
      width: 100%; }
    .take-over-container .take-over-article:after {
      background: url("../images/take_over/textbox-bottom.png") left top no-repeat transparent;
      content: ".";
      height: 110px;
      width: 100%; }

@media (max-width: 767px) {
  .take-over-container {
    margin-left: -3%;
    margin-right: -3%; }
    .take-over-container .take-over-article .page-column {
      background-color: #a71c18;
      background-image: -webkit-linear-gradient(left, #a71c18, #e30716);
      background-image: -moz-linear-gradient(right, #a71c18, #e30716);
      background-image: -o-linear-gradient(right, #a71c18, #e30716);
      background-image: linear-gradient(to right, #a71c18, #e30716);
      background-image: -webkit-gradient(linear, 0 0, 100% 0, from(#a71c18), to(#e30716));
      border: 10px solid #ffffff;
      -webkit-border-radius: 20px;
      -mox-border-radius: 20px;
      border-radius: 20px;
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a71c18', endColorstr='#e30716');
      margin-left: 3%;
      margin-right: 3%;
      padding: 1.5em 0.75em; }
    .take-over-container .take-over-article:before, .take-over-container .take-over-article:after {
      display: none; } }

/*
body.take-over {
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 0 0;
  padding: 0;
}

.take-over #header {
  margin-top: 0;
}

.take-over .container {
  padding: 65px 0;
}

.take-over #page {
  background-color: transparent;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  color: #ffffff;
  font-family: Arial, Verdana, sans-serif;
  margin: 0 auto;
  max-width: 821px;
  padding: 0;
  width: 100%;
}

.take-over .page-top {
  background: url("../images/take_over/textbox-top.png") left top no-repeat transparent;
  content: ".";
  height: 93px;
  width: 100%;
}
.take-over .page-middle {
  background: url("../images/take_over/textbox-middle.png") left top repeat-y transparent;
  padding: 0 60px;
}
.take-over .page-bottom {
  background: url("../images/take_over/textbox-bottom.png") left top no-repeat transparent;
  content: ".";
  height: 110px;
  width: 100%;
}

h1 {
  color: #ffffff;
  font-size: 3.375em;
  font-weight: bold;
  line-height: 1.037;
  margin-top: 0;
}

p {
  font-size: 1.375em;
  line-height: 1.27;
}

body.take-over .node-take-over a {
	color: #fff;
}

.navigation-wrapper {
  background-color: #ffffff;
  min-width: 100%;
  width: 100%;
}
.navigation-wrapper .inner {
  margin: 0 auto;
  padding: 5px 25px 0;
  width: 960px;
}

@media screen and (min-width: 767px) {
  .take-over .container {
    background-image: none !important;
  }
}

@media screen and (max-width: 1068px) {
  .navigation-wrapper .inner {
    margin: 0 2%;
    padding-left: 2.6041667%;
    padding-right: 2.6041667%;
    width: 90.7916666%;
  }
}

@media screen and (max-width: 824px) {
  .take-over .page-top,
  .take-over .page-bottom {
    background-image: none;
    display: none;
  }
  
  .take-over .page-middle {
    background-color: #a71c18;
    background-image: -webkit-linear-gradient(left, #a71c18, #e30716);
    background-image: -moz-linear-gradient(right, #a71c18, #e30716);
    background-image: -o-linear-gradient(right, #a71c18, #e30716);
    background-image: linear-gradient(to right, #a71c18, #e30716);
    background-image: -webkit-gradient(linear, 0 0, 100% 0, from(#a71c18), to(#e30716));
    border: 10px solid #ffffff;
    -webkit-border-radius: 20px;
       -mox-border-radius: 20px;
            border-radius: 20px;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a71c18', endColorstr='#e30716');
    margin-left: 4%;
    margin-right: 4%;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 1.875em;
    line-height: 1.13;
  }
  
  p {
    font-size: 1em;
    line-height: 1.1875;
  }
  
  .take-over .page-middle {
    padding: 50px 30px;
  }
  
  .take-over #page {
    margin-bottom: 35px;
    margin-top: 35px;
  }
}*/
/**
 * Vertical slide
 *
 * @version: 1.0
 * Description: Slide things vertically
 *
 */
.vertical-slider .vertical-slider-track-holder {
  position: relative;
  overflow: hidden; }
  .vertical-slider .vertical-slider-track-holder .vertical-slider-track {
    position: relative;
    top: 0; }
.vertical-slider .vertical-slider-arrow {
  display: block;
  color: #fff;
  background-color: #be8623;
  -webkit-transition: background-color 0.2s ease-in;
  -moz-transition: background-color 0.2s ease-in;
  -o-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in; }
  .vertical-slider .vertical-slider-arrow:hover {
    text-decoration: none;
    background-color: #ab781f; }
  .vertical-slider .vertical-slider-arrow.is-inactive {
    opacity: 0.3;
    cursor: default; }

/**
 * States
 *
 * Description: Common classes used for layout/display/states
 * -----------------------------------------------------------------------------
 */
.is-hidden {
  display: none !important;
  visibility: hidden; }

html.js .is-hidden-js, html.js .is-visible-nojs {
  display: none; }

html.no-js .is-visible-js {
  display: none; }

html.no-js .is-visible-nojs {
  display: block !important;
  visibility: visible; }

html.no-js .is-hidden-nojs {
  display: none !important; }

.is-visible-print {
  display: none; }

.is-visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.is-visuallyhidden.is-focusable:active, .is-visuallyhidden.is-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

@media (min-width: 1025px) {
  .is-hidden-large {
    display: none !important; }
  .is-visible-medium, .is-visible-small {
    display: none !important; } }

@media (min-width: 768px) and (max-width: 1024px) {
  .is-hidden-medium, .is-visible-small {
    display: none !important; }
  .is-visible-medium {
    display: block !important; } }

@media (min-width: 0px) and (max-width: 767px) {
  .is-hidden-small {
    display: none !important; }
  .is-visible-small {
    display: block !important; } }

.is-visible-loading, .is-loading .is-hidden-loading {
  display: none; }

.is-loading .is-visible-loading {
  display: inherit; }

/**
 * Grid
 *
 * Description: Contains the grid-system.
 * Read more: http://oocss.org/grids_docs.html
 * -----------------------------------------------------------------------------
 */
/**
 * Table of Contents:
 *
 * 1.0 - Layout base
 * 2.0 - Layout classes
 * 3.0 - Styles classes
 * 4.0 - Inline-unit
 * 5.0 - The grid system
 * 6.0 - Internet explorer 7 and lower
 * -----------------------------------------------------------------------------
 */
/**
 * 1.0 - Layout base
 * -----------------------------------------------------------------------------
 */
.layout-section {
  *zoom: 1;
  margin-bottom: 20px; }
  .layout-section:before, .layout-section:after {
    display: table;
    content: "";
    line-height: 0; }
  .layout-section:after {
    clear: both; }

.layout-section-constrained {
  *zoom: 1;
  width: 96%;
  max-width: 1447px;
  margin-left: auto;
  margin-right: auto; }
  .layout-section-constrained:before, .layout-section-constrained:after {
    display: table;
    content: "";
    line-height: 0; }
  .layout-section-constrained:after {
    clear: both; }

.layout-row {
  *zoom: 1; }
  .layout-row:before, .layout-row:after {
    display: table;
    content: "";
    line-height: 0; }
  .layout-row:after {
    clear: both; }

.layout-unit-container {
  margin-left: -10px;
  margin-right: -10px; }
  @media (max-width: 1024px) {
    .layout-unit-container {
      margin-left: 0;
      margin-right: 0; } }

/**
 * 2.0 - Layout classes
 * -----------------------------------------------------------------------------
 */
.clearfix {
  *zoom: 1; }
  .clearfix:before, .clearfix:after {
    display: table;
    content: "";
    line-height: 0; }
  .clearfix:after {
    clear: both; }

.layout-left {
  float: left; }

.layout-right {
  float: right; }

.layout-inline, .layout-stacked {
  padding: 0; }

.layout-inline > * {
  display: inline-block;
  vertical-align: top; }

.layout-stacked > * {
  display: block; }

.margin-bottom {
  margin-bottom: 20px; }

.margin-top {
  margin-top: 20px; }

.margin-left {
  margin-left: 10px; }

.margin-right {
  margin-right: 10px; }

.no-margin-bottom {
  margin-bottom: 0; }

/**
 * 4.0 - Inline-unit
 * -----------------------------------------------------------------------------
 */
.layout-inline-unit {
  overflow: hidden;
  word-spacing: -0.36em; }

.layout-inline-unit > [class^="layout-size"], .layout-inline-unit > [class*=" layout-size"], .layout-inline-unit > [class^="layout-medium-size"], .layout-inline-unit > [class*=" layout-medium-size"], .layout-inline-unit > [class^="layout-small-size"], .layout-inline-unit > [class*=" layout-small-size"] {
  float: none;
  display: inline-block;
  vertical-align: top; }

.layout-inline-unit > * {
  word-spacing: normal; }

.layout-inline-unit > .layout-size1of1 {
  width: 100%; }

/**
 * 5.0 - The grid system
 * -----------------------------------------------------------------------------
 */
[class^="layout-size"], [class*=" layout-size"], [class^="layout-medium-size"], [class*=" layout-medium-size"], [class^="layout-small-size"], [class*=" layout-small-size"] {
  float: left;
  position: relative; }

.layout-size1of1 {
  float: none; }

.layout-size1of2 {
  width: 50%; }

.layout-size1of3 {
  width: 33.33333%; }

.layout-size2of3 {
  width: 66.66666%; }

.layout-size1of4, #block-system-main .content .sidebar {
  width: 25%; }

.layout-size3of4, #block-system-main .content .content-main-holder {
  width: 75%; }

.layout-size1of5 {
  width: 20%; }

.layout-size2of5 {
  width: 40%; }

.layout-size3of5 {
  width: 60%; }

.layout-size4of5 {
  width: 80%; }

.layout-pull1of5 {
  margin-left: 20%; }

@media (min-width: 768px) and (max-width: 1024px) {
  .layout-medium-size1of1 {
    float: none;
    width: 100%; }
  .layout-medium-size1of2 {
    width: 50%; }
  .layout-medium-size1of3 {
    width: 33.33333%; }
  .layout-medium-size2of3 {
    width: 66.66666%; }
  .layout-medium-size1of4 {
    width: 25%; }
  .layout-medium-size3of4 {
    width: 75%; }
  .layout-medium-size1of5 {
    width: 20%; }
  .layout-medium-size2of5 {
    width: 40%; }
  .layout-medium-size3of5 {
    width: 60%; }
  .layout-medium-size4of5 {
    width: 80%; } }

@media (max-width: 767px) {
  .layout-small-size1of1 {
    float: none;
    width: 100%; }
  .layout-small-size1of2 {
    width: 50%; }
  .layout-small-size1of3 {
    width: 33.33333%; }
  .layout-small-size2of3 {
    width: 66.66666%; }
  .layout-small-size1of4 {
    width: 25%; }
  .layout-small-size3of4 {
    width: 75%; }
  .layout-small-size1of5 {
    width: 20%; }
  .layout-small-size2of5 {
    width: 40%; }
  .layout-small-size3of5 {
    width: 60%; }
  .layout-small-size4of5 {
    width: 80%; }
  [class^="layout-size"], [class*=" layout-size"] {
    float: none;
    position: relative;
    width: 100%; }
  [class^="layout-small-"], [class*=" layout-small-"] {
    float: left;
    width: inherit; }
  .layout-section-constrained {
    width: 100%; } }

/**
 * 6.0 - Internet explorer 7 and lower
 * -----------------------------------------------------------------------------
 */
html.lt-ie8 [class^="layout-size"], html.lt-ie8 [class*=" layout-size"], html.lt-ie8 [class^="layout-medium-size"], html.lt-ie8 [class*=" layout-medium-size"], html.lt-ie8 [class^="layout-small-size"], html.lt-ie8 [class*=" layout-small-size"] {
  margin-left: -1px; }
html.lt-ie8 .layout-inline-unit > [class^="layout-size"], html.lt-ie8 .layout-inline-unit > [class*=" layout-size"], html.lt-ie8 .layout-inline-unit > [class^="layout-medium-size"], html.lt-ie8 .layout-inline-unit > [class*=" layout-medium-size"], html.lt-ie8 .layout-inline-unit > [class^="layout-small-size"], html.lt-ie8 .layout-inline-unit > [class*=" layout-small-size"] {
  display: inline;
  zoom: 1; }
html.lt-ie8 .l-content {
  zoom: 1; }
html.lt-ie8 .l-inline > * {
  zoom: 1;
  display: inline; }

/**
 * Page
 *
 * Description: Contains styling for the page-container. 
 * -----------------------------------------------------------------------------
 */
.page {
  margin: 0 auto;
  box-sizing: border-box;
  position: relative; }
  .page .media-container {
    margin-bottom: 1.75em; }
    .page .media-container ul {
      padding: 0;
      margin: 0;
      list-style-type: none; }
  .page .header-with-boarder {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 38px; }
  .page.page-other {
    max-width: 1082px;
    background-color: #fff;
    padding: 0; }
  .page.page-standard {
    max-width: 1082px;
    background-color: #fff;
    padding: 1.65em 2.5em; }
  .page.page-block {
    max-width: 1575px;
    padding-left: 10px;
    padding-right: 10px; }
  .page .page-slider-nav.is-hidden {
    display: none; }
  .page .page-slider-nav > a {
    position: absolute;
    height: 112px;
    top: 200px;
    background-color: #fff;
    color: #a9a9a9;
    padding: 4px 25px 4px 3px;
    width: 57px;
    *zoom: 1; }
    .page .page-slider-nav > a:before, .page .page-slider-nav > a:after {
      display: table;
      content: "";
      line-height: 0; }
    .page .page-slider-nav > a:after {
      clear: both; }
    .page .page-slider-nav > a .label {
      display: block;
      font-weight: 400;
      padding-bottom: 6px; }
    .page .page-slider-nav > a:hover {
      color: #010101;
      width: 410px;
      text-decoration: none;
      background-color: #fff;
      -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.35);
      -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.35);
      box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.35); }
      .page .page-slider-nav > a:hover .page-slider-nav-tooltip {
        display: block; }
    .page .page-slider-nav > a.page-slider-nav-prev {
      left: -57px; }
      .page .page-slider-nav > a.page-slider-nav-prev.is-hidden {
        display: none; }
      .page .page-slider-nav > a.page-slider-nav-prev .page-slider-nav-arrow {
        text-align: left;
        margin-left: 20px;
        margin-right: 0; }
    .page .page-slider-nav > a.page-slider-nav-next {
      right: -57px; }
      .page .page-slider-nav > a.page-slider-nav-next.is-hidden {
        display: none; }
      .page .page-slider-nav > a.page-slider-nav-next .page-slider-nav-arrow {
        text-align: right; }
    .page .page-slider-nav > a .page-slider-nav-arrow {
      font-size: 4em;
      line-height: 120px;
      margin-top: -5px; }
    .page .page-slider-nav > a .page-slider-nav-tooltip {
      font-size: 0.8em;
      line-height: 1.25em;
      padding: 20px;
      display: none; }
      .page .page-slider-nav > a .page-slider-nav-tooltip p {
        margin-bottom: 0; }
    .page .page-slider-nav > a.media .img {
      margin-right: 20px; }
    .page .page-slider-nav > a.media .img-flipped {
      margin-left: 20px; }
  @media (max-width: 1210px) {
    .page .page-slider-nav > a {
      background-color: transparent; }
      .page .page-slider-nav > a.page-slider-nav-prev {
        left: 0px;
        padding-left: 0; }
      .page .page-slider-nav > a.page-slider-nav-next {
        right: 0px;
        padding-right: 0; } }
  @media (max-width: 1024px) {
    .page.page-standard {
      padding-left: 1.5em;
      padding-right: 1.5em; } }
  @media (max-width: 767px) {
    .page .page-slider-nav {
      display: none !important; }
    .page.page-standard {
      padding-left: 1em;
      padding-right: 1em; }
    .page.page-block {
      padding-left: 0;
      padding-right: 0; }
    .page .page-slider-nav > a {
      background-color: transparent; }
      .page .page-slider-nav > a.page-slider-nav-prev {
        left: 0px;
        padding-right: 0;
        padding-left: 0.25em; }
      .page .page-slider-nav > a.page-slider-nav-next {
        right: 0px;
        padding-right: 0.25em;
        padding-left: 0; }
      .page .page-slider-nav > a:hover {
        background-color: #fff; } }

.page-standard .layout-size3of4 > .inner, .page-standard #block-system-main .content .content-main-holder > .inner, #block-system-main .content .page-standard .content-main-holder > .inner {
  padding-right: 1em; }
  @media (max-width: 1024px) {
    .page-standard .layout-size3of4 > .inner, .page-standard #block-system-main .content .content-main-holder > .inner, #block-system-main .content .page-standard .content-main-holder > .inner {
      padding-right: 0.75em; } }
  @media (max-width: 767px) {
    .page-standard .layout-size3of4 > .inner, .page-standard #block-system-main .content .content-main-holder > .inner, #block-system-main .content .page-standard .content-main-holder > .inner {
      padding: 0 0 1em 0; } }
.page-standard .layout-size1of4 > .inner, .page-standard #block-system-main .content .sidebar > .inner, #block-system-main .content .page-standard .sidebar > .inner {
  padding-left: 1em; }
  @media (max-width: 1024px) {
    .page-standard .layout-size1of4 > .inner, .page-standard #block-system-main .content .sidebar > .inner, #block-system-main .content .page-standard .sidebar > .inner {
      padding-left: 0.75em; } }
  @media (max-width: 767px) {
    .page-standard .layout-size1of4 > .inner, .page-standard #block-system-main .content .sidebar > .inner, #block-system-main .content .page-standard .sidebar > .inner {
      padding: 0; } }

#page-content-sidebar {
  padding-top: 47px; }
  #page-content-sidebar .inner {
    padding-left: 1em; }
    @media (max-width: 1024px) {
      #page-content-sidebar .inner {
        padding-left: 0.75em; } }

/**
 * Header
 *
 * Description:Contains styling for the page-header. 
 * -----------------------------------------------------------------------------
 */
/**
 * Table of Contents:
 *
 * 1.0 - Base
 *   1.1 - No svg logo
 * 2.0 - Responsive
 * -----------------------------------------------------------------------------
 */
/**
 * 1.0 - Base
 * -----------------------------------------------------------------------------
 */
#page-header {
  position: relative;
  background-color: #fff;
  margin-bottom: 10px;
  padding: 0 40px 1.5em; }
  #page-header .header-logo {
    float: left;
    width: 20.58%; }
  #page-header .header-menu {
    float: left;
    width: 79.42%; }
  #page-header .search-form {
    width: 36.5%;
    float: right; }
    #page-header .search-form button {
      font-size: 1em; }
  #page-header .service-nav {
    width: 100%;
    border-bottom: 3px solid #ebebeb;
    margin-bottom: 2.25em;
    padding: 0.55em 0 0.2em; }
    #page-header .service-nav .search-toggle {
      float: right; }
  #page-header .page-logo {
    margin: 1.5em 2.5em 0 0;
    border-right: 1px solid #e5e5e5;
    padding-right: 3.25em; }
    #page-header .page-logo img {
      width: 100%; }
    @media (max-width: 1140px) {
      #page-header .page-logo {
        margin-right: 1.25em;
        padding-right: 2em; } }

/**
 * 1.1 - No svg logo
 * -----------------------------------------------------------------------------
 */
.no-svg .page-logo {
  background: url("../images/logo.png") no-repeat left center;
  width: 182px;
  height: 173px; }
  .no-svg .page-logo img {
    display: none !important; }
  @media (max-width: 767px) {
    .no-svg .page-logo {
      background: url("../images/logo-small.png") no-repeat left center; } }

/**
 * 2.0 - Responsive
 * -----------------------------------------------------------------------------
 */
@media (max-width: 1024px) {
  #page-header .service-nav {
    position: relative;
    padding-right: 2.5em;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
  #page-header .search-toggle {
    position: absolute;
    right: 0;
    top: 0.3em;
    display: inline-block !important;
    color: #010101;
    font-size: 0.8em;
    padding: 0.28571em 0.35714em; }
    #page-header .search-toggle.is-expanded {
      color: #e30613; }
  #page-header .search-form {
    display: none;
    float: none;
    position: absolute;
    top: 44px;
    right: 40px;
    background-color: #fff;
    z-index: 10;
    padding: 0.5em;
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    #page-header .search-form button {
      top: 0.35714em;
      left: 0.35714em; } }

@media (max-width: 767px) {
  #page-header {
    padding: 2.2em 0 0 0; }
    #page-header > .layout-section-constrained {
      width: 100%; }
      #page-header > .layout-section-constrained > .header-logo .img, #page-header > .layout-section-constrained > .header-logo .body {
        float: none; }
      #page-header > .layout-section-constrained > .header-logo .img {
        position: relative;
        margin-top: 44px; }
    #page-header .page-logo {
      margin: 0;
      border: 0;
      margin: 0.65em 0.5em;
      width: 114px;
      height: 109px; }
      #page-header .page-logo img {
        width: 114px;
        height: 109px; }
    #page-header .service-nav {
      position: absolute;
      top: 0;
      left: 0;
      height: 44px;
      background-color: #888;
      border: 0;
      margin: 0;
      padding: 0; }
    #page-header .search-toggle {
      top: 0px;
      display: inline-block !important;
      color: #fff;
      font-size: 1.4em;
      padding: 0.28571em 0.35714em; }
      #page-header .search-toggle.is-expanded {
        color: #e30613; }
    #page-header .search-form {
      display: none;
      width: 100%;
      float: none;
      position: absolute;
      top: 44px;
      left: 0;
      right: auto;
      background-color: #fff;
      z-index: 10;
      padding: 0.5em;
      -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
      -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
      box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box; }
      #page-header .search-form button {
        top: 0.35714em;
        left: 0.35714em; } }

/**
 * Header
 *
 * Description: Contains styling for the page-footer. 
 * -----------------------------------------------------------------------------
 */
#page-footer {
  background-color: #010101;
  padding: 23px 14px 3px;
  height: 3em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 101; }
  #page-footer p {
    font-size: 0.8em;
    float: left;
    padding-right: 40px;
    color: #b6b6b6; }
    #page-footer p a {
      color: #fff;
      text-decoration: underline; }
    #page-footer p.right {
      float: right;
      padding-right: 0; }
  @media (max-width: 767px) {
    #page-footer {
      height: auto; }
      #page-footer p, #page-footer p.right {
        float: none; } }

/**
 * Nav
 *
 * Description: Contains styling for the navigations. 
 * -----------------------------------------------------------------------------
 */
/**
 * Table of Contents: 
 *
 * 1.0 - Primary nav
 *   1.1 - Primary nav responsive
 * 2.0 - Dropdown nav
 * -----------------------------------------------------------------------------
 */
/**
 * 1.0 - Primary nav
 * -----------------------------------------------------------------------------
 */
.primary-nav {
  width: 63.5%;
  max-width: 530px;
  float: left;
  margin-top: -0.45em;
  background-color: #fff; }
  .primary-nav > ul {
    margin: 0 7% 0 0;
    list-style-type: none;
    list-style-image: none;
    float: left;
    padding: 0;
    width: 43%; }
    .primary-nav > ul li {
      list-style: none;
      display: block;
      padding: 0.2em 0.2em;
      border-bottom: 1px solid #e5e5e5; }
      .primary-nav > ul li a {
        text-decoration: none;
        color: #010101; }
        .primary-nav > ul li a.is-active {
          color: #e30613; }
      .primary-nav > ul li a:hover {
        color: #e30613; }
      .primary-nav > ul li.has-dropdown {
        position: relative; }
        .primary-nav > ul li.has-dropdown:after {
          position: absolute;
          font-size: 0.9em;
          top: 0.22222em;
          right: 0.33333em;
          font-family: FontAwesome;
          font-weight: normal;
          font-style: normal;
          text-decoration: inherit;
          -webkit-font-smoothing: antialiased;
          content: "\f107";
          color: #b6b6b6; }
        .primary-nav > ul li.has-dropdown:hover {
          -webkit-box-shadow: none;
          -moz-box-shadow: none;
          box-shadow: none;
          border: 1px solid #fff;
          border-bottom: 1px solid #e5e5e5;
          font-weight: 600; }
          .primary-nav > ul li.has-dropdown:hover:after {
            content: "\f106"; }
  .primary-nav ul.dropdown {
    border: 0;
    border-bottom: 3px solid #e30613;
    margin-left: -1.25em;
    width: 100%;
    padding-left: 1.25em;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box; }
    .primary-nav ul.dropdown ul {
      list-style: none;
      margin: -0.2em 0 0 0;
      padding: 0; }
    .primary-nav ul.dropdown li {
      font-weight: 200;
      margin: 0;
      border: 0;
      padding: 0; }
    .primary-nav ul.dropdown li a {
      display: block;
      padding: 0.375em 0.25em;
      line-height: 1.375em; }
    .primary-nav ul.dropdown li li a {
      padding: 0.25em 0.25em 0.25em 1.25em; }
    .primary-nav ul.dropdown li li li a {
      padding-left: 2.5em; }
    .primary-nav ul.dropdown li li li li a {
      padding-left: 3.75em; }
    .primary-nav ul.dropdown > li:last-child > a {
      border-bottom: 0; }
  @media (max-width: 1140px) {
    .primary-nav {
      font-size: 0.8em; } }

/**
 * 1.1 - Primary nav responsive
 * -----------------------------------------------------------------------------
 */
@media (max-width: 1024px) {
  .primary-nav {
    width: 100%; } }

@media (max-width: 767px) {
  .primary-nav {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 0.5em 3%;
    margin-top: 0;
    border-top: 5px solid #ebebeb;
    display: none;
    position: absolute;
    top: 11.5em;
    left: 0;
    z-index: 100;
    float: none;
    max-width: 100%;
    border-bottom: 3px solid #e30613; }
    .primary-nav ul {
      float: none;
      width: 100%; }
      .primary-nav ul:last-child > li:last-child {
        border: 0; }
    .primary-nav ul li {
      display: block;
      padding-bottom: 0.5em; }
      .primary-nav ul li a {
        display: block; }
    .primary-nav ul.dropdown {
      display: block;
      position: relative;
      width: 100%;
      top: auto;
      left: auto;
      margin-top: 0;
      border: 0;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box; }
  .menu-toggle {
    font-size: 1.9em;
    color: #e30613;
    position: absolute;
    bottom: 0.18421em;
    right: 3%; }
    .menu-toggle.is-expanded {
      color: #010101; } }

/**
 * Sidebar
 *
 * Description: Contains styling for the sidebars.
 * -----------------------------------------------------------------------------
 */
/**
 * Drupal
 *
 * Description: Fixing content loaded direct from Drupal.
 * -----------------------------------------------------------------------------
 */
#block-system-main .content {
  width: 100%;
  max-width: 1082px;
  background-color: #fff;
  margin: 0 auto; }
  #block-system-main .content .content-main-holder {
    float: left; }
    #block-system-main .content .content-main-holder .inner {
      padding: 1.65em 1em 0 3.5em; }
    @media (max-width: 767px) {
      #block-system-main .content .content-main-holder {
        float: none;
        width: 100%; }
        #block-system-main .content .content-main-holder .inner {
          padding-left: 1em;
          padding-right: 1em; } }
  #block-system-main .content .sidebar {
    float: left; }
    #block-system-main .content .sidebar > div {
      padding: 1.65em 3.5em 0 1em; }
    @media (max-width: 767px) {
      #block-system-main .content .sidebar {
        display: none; } }

@media print {
  /**
 * Print
 *
 * Description: Contains styling for print. 
 * Read more: https://html5boilerplate.com/
 * -----------------------------------------------------------------------------
 */
  *, *:before, *:after {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster:	http://www.sanbeiji.com/archives/953 */
    box-shadow: none !important;
    text-shadow: none !important; }
  a, a:visited {
    text-decoration: underline; }
  /*
* Don't show links that are fragment identifiers,
* or use the `javascript:` pseudo protocol
*/
  a[href^="#"]:after, a[href^="javascript:"]:after {
    content: ""; }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  /*
* Printing Tables:
* http://css-discuss.incutio.com/wiki/Printing_Tables
*/
  thead {
    display: table-header-group; }
  tr, img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  h1 {
    font-size: 2.25em !important;
    line-height: 1.06667em !important;
    margin-bottom: 0.66667em !important; }
  p, h2, h3 {
    orphans: 3;
    widows: 3; }
  h2, h3 {
    page-break-after: avoid; }
  .is-visible-print {
    display: block; }
  .is-isotope .block {
    border: 1px solid #666; }
  #page-header, #liveupdatebar, #pageLoader, #page-content-sidebar, .slider-nav, .page-translations, .list-filters, .at4-share-outer, .is-hidden-print {
    display: none !important; }
  #page-content-main, .list-search-result {
    width: 100% !important; }
  .slick-list {
    height: auto !important; }
    .slick-list .slick-track {
      width: 100% !important; }
      .slick-list .slick-track img {
        width: 50% !important;
        left: auto !important;
        top: auto !important;
        width: 45% !important;
        opacity: 1 !important;
        margin-right: 5%; }
  input, .select {
    border: 1px solid #666 !important; } }
