@charset "UTF-8";
/******************************************************************

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.
******************************************************************/
/*! normalize.css v3.0.1 | 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;
  overflow-x: hidden;
  }

/* 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,
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: 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 {
  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 */
  /* 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; }

/* Wordpress styles
   ========================================================================== */
/**
 * Add float left to .
 */
/******************************************************************

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of Sass' great features:
Mixins & Constants. I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

******************************************************************/
/*********************
TOOLS
*********************/
.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*********************
TYPOGRAPHY
*********************/
/* 	To embed your own fonts, use this syntax
	and place your fonts inside the
	library/fonts folder. For more information
	on embedding fonts, go to:
	http://www.fontsquirrel.com/
	Be sure to remove the comment brackets.
*/
/*	@font-face {
    	font-family: 'Font Name';
    	src: url('library/fonts/font-name.eot');
    	src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
    	font-weight: normal;
    	font-style: normal;
	}
*/
/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic; }

/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
CLEARFIX
*********************/
.carousel li {
  list-style: none; }

@font-face {
  font-family: 'RobotoRegular';
  src: url("fonts/roboto/roboto_regular_macroman/Roboto-Regular-webfont.eot");
  src: url("fonts/roboto/roboto_regular_macroman/Roboto-Regular-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/roboto/roboto_regular_macroman/Roboto-Regular-webfont.woff") format("woff"), url("fonts/roboto/roboto_regular_macroman/Roboto-Regular-webfont.ttf") format("truetype"), url("fonts/roboto/roboto_regular_macroman/Roboto-Regular-webfont.svg#robotoregular") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'RobotoBold';
  src: url("fonts/roboto/roboto_bold_macroman/Roboto-Bold-webfont.eot");
  src: url("fonts/roboto/roboto_bold_macroman/Roboto-Bold-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/roboto/roboto_bold_macroman/Roboto-Bold-webfont.woff") format("woff"), url("fonts/roboto/roboto_bold_macroman/Roboto-Bold-webfont.ttf") format("truetype"), url("fonts/roboto/roboto_bold_macroman/Roboto-Bold-webfont.svg#robotobold") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'RobotoMedium';
  src: url("fonts/roboto/roboto_medium_macroman/Roboto-Medium-webfont.eot");
  src: url("fonts/roboto/roboto_medium_macroman/Roboto-Medium-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/roboto/roboto_medium_macroman/Roboto-Medium-webfont.woff") format("woff"), url("fonts/roboto/roboto_medium_macroman/Roboto-Medium-webfont.ttf") format("truetype"), url("fonts/roboto/roboto_medium_macroman/Roboto-Medium-webfont.svg#robotobold") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'RobotoThin';
  src: url("fonts/roboto/roboto_thin_macroman/Roboto-Thin-webfont.eot");
  src: url("fonts/roboto/roboto_thin_macroman/Roboto-Thin-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/roboto/roboto_thin_macroman/Roboto-Thin-webfont.woff") format("woff"), url("fonts/roboto/roboto_thin_macroman/Roboto-Thin-webfont.ttf") format("truetype"), url("fonts/roboto/roboto_thin_macroman/Roboto-Thin-webfont.svg#robotobold") format("svg");
  font-weight: normal;
  font-style: normal; }

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

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

meta.foundation-version {
  font-family: "/{{VERSION}}/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #222;
  padding: 0;
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto; }

a:hover {
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

meta.foundation-version {
  font-family: "/{{VERSION}}/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:48em)/";
  width: 48em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:60em)/";
  width: 60em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #505050;
  padding: 0;
  margin: 0;
  font-family: Arial;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto; }

a:hover {
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

meta.foundation-version {
  font-family: "/{{VERSION}}/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:48em)/";
  width: 48em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:60em)/";
  width: 60em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #505050;
  padding: 0;
  margin: 0;
  font-family: Arial;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto; }

a:hover {
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

.accordion {
  margin-bottom: 0; }
  .accordion:before, .accordion:after {
    content: " ";
    display: table; }
  .accordion:after {
    clear: both; }
  .accordion .accordion-navigation, .accordion dd {
    display: block;
    margin-bottom: 0 !important; }
    .accordion .accordion-navigation.active > a, .accordion dd.active > a {
      background: #e8e8e8; }
    .accordion .accordion-navigation > a, .accordion dd > a {
      background: #EFEFEF;
      color: #222222;
      padding: 1rem;
      display: block;
      font-family: Arial;
      font-size: 1rem; }
      .accordion .accordion-navigation > a:hover, .accordion dd > a:hover {
        background: #e3e3e3; }
    .accordion .accordion-navigation > .content, .accordion dd > .content {
      display: none;
      padding: 0.9375rem; }
      .accordion .accordion-navigation > .content.active, .accordion dd > .content.active {
        display: block;
        background: #FFFFFF; }

meta.foundation-version {
  font-family: "/{{VERSION}}/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:48em)/";
  width: 48em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:60em)/";
  width: 60em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #505050;
  padding: 0;
  margin: 0;
  font-family: Arial;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto; }

a:hover {
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

[class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }
  [class*="block-grid-"]:before, [class*="block-grid-"]:after {
    content: " ";
    display: table; }
  [class*="block-grid-"]:after {
    clear: both; }
  [class*="block-grid-"] > li {
    display: block;
    height: auto;
    float: left;
    padding: 0 0.625rem 1.25rem; }

@media only screen {
  .small-block-grid-1 > li {
    width: 100%;
    list-style: none; }
    .small-block-grid-1 > li:nth-of-type(1n) {
      clear: none; }
    .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }
  .small-block-grid-2 > li {
    width: 50%;
    list-style: none; }
    .small-block-grid-2 > li:nth-of-type(1n) {
      clear: none; }
    .small-block-grid-2 > li:nth-of-type(2n+1) {
      clear: both; }
  .small-block-grid-3 > li {
    width: 33.33333%;
    list-style: none; }
    .small-block-grid-3 > li:nth-of-type(1n) {
      clear: none; }
    .small-block-grid-3 > li:nth-of-type(3n+1) {
      clear: both; }
  .small-block-grid-4 > li {
    width: 25%;
    list-style: none; }
    .small-block-grid-4 > li:nth-of-type(1n) {
      clear: none; }
    .small-block-grid-4 > li:nth-of-type(4n+1) {
      clear: both; }
  .small-block-grid-5 > li {
    width: 20%;
    list-style: none; }
    .small-block-grid-5 > li:nth-of-type(1n) {
      clear: none; }
    .small-block-grid-5 > li:nth-of-type(5n+1) {
      clear: both; }
  .small-block-grid-6 > li {
    width: 16.66667%;
    list-style: none; }
    .small-block-grid-6 > li:nth-of-type(1n) {
      clear: none; }
    .small-block-grid-6 > li:nth-of-type(6n+1) {
      clear: both; }
  .small-block-grid-7 > li {
    width: 14.28571%;
    list-style: none; }
    .small-block-grid-7 > li:nth-of-type(1n) {
      clear: none; }
    .small-block-grid-7 > li:nth-of-type(7n+1) {
      clear: both; }
  .small-block-grid-8 > li {
    width: 12.5%;
    list-style: none; }
    .small-block-grid-8 > li:nth-of-type(1n) {
      clear: none; }
    .small-block-grid-8 > li:nth-of-type(8n+1) {
      clear: both; }
  .small-block-grid-9 > li {
    width: 11.11111%;
    list-style: none; }
    .small-block-grid-9 > li:nth-of-type(1n) {
      clear: none; }
    .small-block-grid-9 > li:nth-of-type(9n+1) {
      clear: both; }
  .small-block-grid-10 > li {
    width: 10%;
    list-style: none; }
    .small-block-grid-10 > li:nth-of-type(1n) {
      clear: none; }
    .small-block-grid-10 > li:nth-of-type(10n+1) {
      clear: both; }
  .small-block-grid-11 > li {
    width: 9.09091%;
    list-style: none; }
    .small-block-grid-11 > li:nth-of-type(1n) {
      clear: none; }
    .small-block-grid-11 > li:nth-of-type(11n+1) {
      clear: both; }
  .small-block-grid-12 > li {
    width: 8.33333%;
    list-style: none; }
    .small-block-grid-12 > li:nth-of-type(1n) {
      clear: none; }
    .small-block-grid-12 > li:nth-of-type(12n+1) {
      clear: both; } }

@media only screen and (min-width: 48em) {
  .medium-block-grid-1 > li {
    width: 100%;
    list-style: none; }
    .medium-block-grid-1 > li:nth-of-type(1n) {
      clear: none; }
    .medium-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }
  .medium-block-grid-2 > li {
    width: 50%;
    list-style: none; }
    .medium-block-grid-2 > li:nth-of-type(1n) {
      clear: none; }
    .medium-block-grid-2 > li:nth-of-type(2n+1) {
      clear: both; }
  .medium-block-grid-3 > li {
    width: 33.33333%;
    list-style: none; }
    .medium-block-grid-3 > li:nth-of-type(1n) {
      clear: none; }
    .medium-block-grid-3 > li:nth-of-type(3n+1) {
      clear: both; }
  .medium-block-grid-4 > li {
    width: 25%;
    list-style: none; }
    .medium-block-grid-4 > li:nth-of-type(1n) {
      clear: none; }
    .medium-block-grid-4 > li:nth-of-type(4n+1) {
      clear: both; }
  .medium-block-grid-5 > li {
    width: 20%;
    list-style: none; }
    .medium-block-grid-5 > li:nth-of-type(1n) {
      clear: none; }
    .medium-block-grid-5 > li:nth-of-type(5n+1) {
      clear: both; }
  .medium-block-grid-6 > li {
    width: 16.66667%;
    list-style: none; }
    .medium-block-grid-6 > li:nth-of-type(1n) {
      clear: none; }
    .medium-block-grid-6 > li:nth-of-type(6n+1) {
      clear: both; }
  .medium-block-grid-7 > li {
    width: 14.28571%;
    list-style: none; }
    .medium-block-grid-7 > li:nth-of-type(1n) {
      clear: none; }
    .medium-block-grid-7 > li:nth-of-type(7n+1) {
      clear: both; }
  .medium-block-grid-8 > li {
    width: 12.5%;
    list-style: none; }
    .medium-block-grid-8 > li:nth-of-type(1n) {
      clear: none; }
    .medium-block-grid-8 > li:nth-of-type(8n+1) {
      clear: both; }
  .medium-block-grid-9 > li {
    width: 11.11111%;
    list-style: none; }
    .medium-block-grid-9 > li:nth-of-type(1n) {
      clear: none; }
    .medium-block-grid-9 > li:nth-of-type(9n+1) {
      clear: both; }
  .medium-block-grid-10 > li {
    width: 10%;
    list-style: none; }
    .medium-block-grid-10 > li:nth-of-type(1n) {
      clear: none; }
    .medium-block-grid-10 > li:nth-of-type(10n+1) {
      clear: both; }
  .medium-block-grid-11 > li {
    width: 9.09091%;
    list-style: none; }
    .medium-block-grid-11 > li:nth-of-type(1n) {
      clear: none; }
    .medium-block-grid-11 > li:nth-of-type(11n+1) {
      clear: both; }
  .medium-block-grid-12 > li {
    width: 8.33333%;
    list-style: none; }
    .medium-block-grid-12 > li:nth-of-type(1n) {
      clear: none; }
    .medium-block-grid-12 > li:nth-of-type(12n+1) {
      clear: both; } }

@media only screen and (min-width: 60em) {
  .large-block-grid-1 > li {
    width: 100%;
    list-style: none; }
    .large-block-grid-1 > li:nth-of-type(1n) {
      clear: none; }
    .large-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }
  .large-block-grid-2 > li {
    width: 50%;
    list-style: none; }
    .large-block-grid-2 > li:nth-of-type(1n) {
      clear: none; }
    .large-block-grid-2 > li:nth-of-type(2n+1) {
      clear: both; }
  .large-block-grid-3 > li {
    width: 33.33333%;
    list-style: none; }
    .large-block-grid-3 > li:nth-of-type(1n) {
      clear: none; }
    .large-block-grid-3 > li:nth-of-type(3n+1) {
      clear: both; }
  .large-block-grid-4 > li {
    width: 25%;
    list-style: none; }
    .large-block-grid-4 > li:nth-of-type(1n) {
      clear: none; }
    .large-block-grid-4 > li:nth-of-type(4n+1) {
      clear: both; }
  .large-block-grid-5 > li {
    width: 20%;
    list-style: none; }
    .large-block-grid-5 > li:nth-of-type(1n) {
      clear: none; }
    .large-block-grid-5 > li:nth-of-type(5n+1) {
      clear: both; }
  .large-block-grid-6 > li {
    width: 16.66667%;
    list-style: none; }
    .large-block-grid-6 > li:nth-of-type(1n) {
      clear: none; }
    .large-block-grid-6 > li:nth-of-type(6n+1) {
      clear: both; }
  .large-block-grid-7 > li {
    width: 14.28571%;
    list-style: none; }
    .large-block-grid-7 > li:nth-of-type(1n) {
      clear: none; }
    .large-block-grid-7 > li:nth-of-type(7n+1) {
      clear: both; }
  .large-block-grid-8 > li {
    width: 12.5%;
    list-style: none; }
    .large-block-grid-8 > li:nth-of-type(1n) {
      clear: none; }
    .large-block-grid-8 > li:nth-of-type(8n+1) {
      clear: both; }
  .large-block-grid-9 > li {
    width: 11.11111%;
    list-style: none; }
    .large-block-grid-9 > li:nth-of-type(1n) {
      clear: none; }
    .large-block-grid-9 > li:nth-of-type(9n+1) {
      clear: both; }
  .large-block-grid-10 > li {
    width: 10%;
    list-style: none; }
    .large-block-grid-10 > li:nth-of-type(1n) {
      clear: none; }
    .large-block-grid-10 > li:nth-of-type(10n+1) {
      clear: both; }
  .large-block-grid-11 > li {
    width: 9.09091%;
    list-style: none; }
    .large-block-grid-11 > li:nth-of-type(1n) {
      clear: none; }
    .large-block-grid-11 > li:nth-of-type(11n+1) {
      clear: both; }
  .large-block-grid-12 > li {
    width: 8.33333%;
    list-style: none; }
    .large-block-grid-12 > li:nth-of-type(1n) {
      clear: none; }
    .large-block-grid-12 > li:nth-of-type(12n+1) {
      clear: both; } }

meta.foundation-version {
  font-family: "/{{VERSION}}/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:48em)/";
  width: 48em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:60em)/";
  width: 60em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #505050;
  padding: 0;
  margin: 0;
  font-family: Arial;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto; }

a:hover {
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

meta.foundation-version {
  font-family: "/{{VERSION}}/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:48em)/";
  width: 48em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:60em)/";
  width: 60em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #505050;
  padding: 0;
  margin: 0;
  font-family: Arial;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto; }

a:hover {
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

button, .button {
  border-style: solid;
  border-width: 0px;
  cursor: pointer;
  font-family: Arial;
  font-weight: normal;
  line-height: normal;
  margin: 0 0 1.25rem;
  position: relative;
  text-decoration: none;
  text-align: center;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  display: inline-block;
  padding-top: 1rem;
  padding-right: 2rem;
  padding-bottom: 1.0625rem;
  padding-left: 2rem;
  font-size: 1rem;
  background-color: #2c4457;
  border-color: #233646;
  color: #FFFFFF;
  transition: background-color 300ms ease-out; }
  button:hover, button:focus, .button:hover, .button:focus {
    background-color: #233646; }
  button:hover, button:focus, .button:hover, .button:focus {
    color: #FFFFFF; }
  button.secondary, .button.secondary {
    background-color: #6f798c;
    border-color: #596170;
    color: #FFFFFF; }
    button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
      background-color: #596170; }
    button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
      color: #FFFFFF; }
  button.success, .button.success {
    background-color: #43AC6A;
    border-color: #368a55;
    color: #FFFFFF; }
    button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
      background-color: #368a55; }
    button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
      color: #FFFFFF; }
  button.alert, .button.alert {
    background-color: #f04124;
    border-color: #cf2a0e;
    color: #FFFFFF; }
    button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
      background-color: #cf2a0e; }
    button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
      color: #FFFFFF; }
  button.warning, .button.warning {
    background-color: #f08a24;
    border-color: #cf6e0e;
    color: #FFFFFF; }
    button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
      background-color: #cf6e0e; }
    button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
      color: #FFFFFF; }
  button.info, .button.info {
    background-color: #a0d3e8;
    border-color: #61b6d9;
    color: #333333; }
    button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
      background-color: #61b6d9; }
    button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
      color: #FFFFFF; }
  button.large, .button.large {
    padding-top: 1.125rem;
    padding-right: 2.25rem;
    padding-bottom: 1.1875rem;
    padding-left: 2.25rem;
    font-size: 1.25rem; }
  button.small, .button.small {
    padding-top: 0.875rem;
    padding-right: 1.75rem;
    padding-bottom: 0.9375rem;
    padding-left: 1.75rem;
    font-size: 0.8125rem; }
  button.tiny, .button.tiny {
    padding-top: 0.625rem;
    padding-right: 1.25rem;
    padding-bottom: 0.6875rem;
    padding-left: 1.25rem;
    font-size: 0.6875rem; }
  button.expand, .button.expand {
    padding-right: 0;
    padding-left: 0;
    width: 100%; }
  button.left-align, .button.left-align {
    text-align: left;
    text-indent: 0.75rem; }
  button.right-align, .button.right-align {
    text-align: right;
    padding-right: 0.75rem; }
  button.radius, .button.radius {
    border-radius: 3px; }
  button.round, .button.round {
    border-radius: 1000px; }
  button.disabled, button[disabled], .button.disabled, .button[disabled] {
    background-color: #2c4457;
    border-color: #233646;
    color: #FFFFFF;
    cursor: default;
    opacity: 0.7;
    box-shadow: none; }
    button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
      background-color: #233646; }
    button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
      color: #FFFFFF; }
    button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
      background-color: #2c4457; }
    button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary {
      background-color: #6f798c;
      border-color: #596170;
      color: #FFFFFF;
      cursor: default;
      opacity: 0.7;
      box-shadow: none; }
      button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
        background-color: #596170; }
      button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
        color: #FFFFFF; }
      button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
        background-color: #6f798c; }
    button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success {
      background-color: #43AC6A;
      border-color: #368a55;
      color: #FFFFFF;
      cursor: default;
      opacity: 0.7;
      box-shadow: none; }
      button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
        background-color: #368a55; }
      button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
        color: #FFFFFF; }
      button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
        background-color: #43AC6A; }
    button.disabled.alert, button[disabled].alert, .button.disabled.alert, .button[disabled].alert {
      background-color: #f04124;
      border-color: #cf2a0e;
      color: #FFFFFF;
      cursor: default;
      opacity: 0.7;
      box-shadow: none; }
      button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
        background-color: #cf2a0e; }
      button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
        color: #FFFFFF; }
      button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
        background-color: #f04124; }
    button.disabled.warning, button[disabled].warning, .button.disabled.warning, .button[disabled].warning {
      background-color: #f08a24;
      border-color: #cf6e0e;
      color: #FFFFFF;
      cursor: default;
      opacity: 0.7;
      box-shadow: none; }
      button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
        background-color: #cf6e0e; }
      button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
        color: #FFFFFF; }
      button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
        background-color: #f08a24; }
    button.disabled.info, button[disabled].info, .button.disabled.info, .button[disabled].info {
      background-color: #a0d3e8;
      border-color: #61b6d9;
      color: #333333;
      cursor: default;
      opacity: 0.7;
      box-shadow: none; }
      button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
        background-color: #61b6d9; }
      button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
        color: #FFFFFF; }
      button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
        background-color: #a0d3e8; }

button::-moz-focus-inner {
  border: 0;
  padding: 0; }

@media only screen and (min-width: 48em) {
  button, .button {
    display: inline-block; } }

.button-group {
  list-style: none;
  margin: 0;
  left: 0; }
  .button-group:before, .button-group:after {
    content: " ";
    display: table; }
  .button-group:after {
    clear: both; }
  .button-group > li {
    margin: 0 -2px;
    display: inline-block; }
    .button-group > li > button, .button-group > li .button {
      border-left: 1px solid;
      border-color: rgba(255, 255, 255, 0.5); }
    .button-group > li:first-child button, .button-group > li:first-child .button {
      border-left: 0; }
  .button-group.stack > li {
    margin: 0 -2px;
    display: inline-block;
    display: block;
    margin: 0;
    float: none; }
    .button-group.stack > li > button, .button-group.stack > li .button {
      border-left: 1px solid;
      border-color: rgba(255, 255, 255, 0.5); }
    .button-group.stack > li:first-child button, .button-group.stack > li:first-child .button {
      border-left: 0; }
    .button-group.stack > li > button, .button-group.stack > li .button {
      border-top: 1px solid;
      border-color: rgba(255, 255, 255, 0.5);
      border-left-width: 0px;
      margin: 0;
      display: block; }
    .button-group.stack > li:first-child button, .button-group.stack > li:first-child .button {
      border-top: 0; }
  .button-group.stack-for-small > li {
    margin: 0 -2px;
    display: inline-block; }
    .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
      border-left: 1px solid;
      border-color: rgba(255, 255, 255, 0.5); }
    .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
      border-left: 0; }
    @media only screen and (max-width: 66em) {
      .button-group.stack-for-small > li {
        margin: 0 -2px;
        display: inline-block;
        display: block;
        margin: 0; }
        .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
          border-left: 1px solid;
          border-color: rgba(255, 255, 255, 0.5); }
        .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
          border-left: 0; }
        .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
          border-top: 1px solid;
          border-color: rgba(255, 255, 255, 0.5);
          border-left-width: 0px;
          margin: 0;
          display: block; }
        .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
          border-top: 0; } }
  .button-group.radius > * {
    margin: 0 -2px;
    display: inline-block; }
    .button-group.radius > * > button, .button-group.radius > * .button {
      border-left: 1px solid;
      border-color: rgba(255, 255, 255, 0.5); }
    .button-group.radius > *:first-child button, .button-group.radius > *:first-child .button {
      border-left: 0; }
    .button-group.radius > *,
    .button-group.radius > * > a,
    .button-group.radius > * > button,
    .button-group.radius > * > .button {
      border-radius: 0; }
    .button-group.radius > *:first-child,
    .button-group.radius > *:first-child > a,
    .button-group.radius > *:first-child > button,
    .button-group.radius > *:first-child > .button {
      -webkit-border-bottom-left-radius: 3px;
      -webkit-border-top-left-radius: 3px;
      border-bottom-left-radius: 3px;
      border-top-left-radius: 3px; }
    .button-group.radius > *:last-child,
    .button-group.radius > *:last-child > a,
    .button-group.radius > *:last-child > button,
    .button-group.radius > *:last-child > .button {
      -webkit-border-bottom-right-radius: 3px;
      -webkit-border-top-right-radius: 3px;
      border-bottom-right-radius: 3px;
      border-top-right-radius: 3px; }
  .button-group.radius.stack > * {
    margin: 0 -2px;
    display: inline-block;
    display: block;
    margin: 0; }
    .button-group.radius.stack > * > button, .button-group.radius.stack > * .button {
      border-left: 1px solid;
      border-color: rgba(255, 255, 255, 0.5); }
    .button-group.radius.stack > *:first-child button, .button-group.radius.stack > *:first-child .button {
      border-left: 0; }
    .button-group.radius.stack > * > button, .button-group.radius.stack > * .button {
      border-top: 1px solid;
      border-color: rgba(255, 255, 255, 0.5);
      border-left-width: 0px;
      margin: 0;
      display: block; }
    .button-group.radius.stack > *:first-child button, .button-group.radius.stack > *:first-child .button {
      border-top: 0; }
    .button-group.radius.stack > *,
    .button-group.radius.stack > * > a,
    .button-group.radius.stack > * > button,
    .button-group.radius.stack > * > .button {
      border-radius: 0; }
    .button-group.radius.stack > *:first-child,
    .button-group.radius.stack > *:first-child > a,
    .button-group.radius.stack > *:first-child > button,
    .button-group.radius.stack > *:first-child > .button {
      -webkit-top-left-radius: 3px;
      -webkit-top-right-radius: 3px;
      border-top-left-radius: 3px;
      border-top-right-radius: 3px; }
    .button-group.radius.stack > *:last-child,
    .button-group.radius.stack > *:last-child > a,
    .button-group.radius.stack > *:last-child > button,
    .button-group.radius.stack > *:last-child > .button {
      -webkit-bottom-left-radius: 3px;
      -webkit-bottom-right-radius: 3px;
      border-bottom-left-radius: 3px;
      border-bottom-right-radius: 3px; }
  @media only screen and (min-width: 48em) {
    .button-group.radius.stack-for-small > * {
      margin: 0 -2px;
      display: inline-block; }
      .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
        border-left: 1px solid;
        border-color: rgba(255, 255, 255, 0.5); }
      .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
        border-left: 0; }
      .button-group.radius.stack-for-small > *,
      .button-group.radius.stack-for-small > * > a,
      .button-group.radius.stack-for-small > * > button,
      .button-group.radius.stack-for-small > * > .button {
        border-radius: 0; }
      .button-group.radius.stack-for-small > *:first-child,
      .button-group.radius.stack-for-small > *:first-child > a,
      .button-group.radius.stack-for-small > *:first-child > button,
      .button-group.radius.stack-for-small > *:first-child > .button {
        -webkit-border-bottom-left-radius: 3px;
        -webkit-border-top-left-radius: 3px;
        border-bottom-left-radius: 3px;
        border-top-left-radius: 3px; }
      .button-group.radius.stack-for-small > *:last-child,
      .button-group.radius.stack-for-small > *:last-child > a,
      .button-group.radius.stack-for-small > *:last-child > button,
      .button-group.radius.stack-for-small > *:last-child > .button {
        -webkit-border-bottom-right-radius: 3px;
        -webkit-border-top-right-radius: 3px;
        border-bottom-right-radius: 3px;
        border-top-right-radius: 3px; } }
  @media only screen and (max-width: 66em) {
    .button-group.radius.stack-for-small > * {
      margin: 0 -2px;
      display: inline-block;
      display: block;
      margin: 0; }
      .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
        border-left: 1px solid;
        border-color: rgba(255, 255, 255, 0.5); }
      .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
        border-left: 0; }
      .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
        border-top: 1px solid;
        border-color: rgba(255, 255, 255, 0.5);
        border-left-width: 0px;
        margin: 0;
        display: block; }
      .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
        border-top: 0; }
      .button-group.radius.stack-for-small > *,
      .button-group.radius.stack-for-small > * > a,
      .button-group.radius.stack-for-small > * > button,
      .button-group.radius.stack-for-small > * > .button {
        border-radius: 0; }
      .button-group.radius.stack-for-small > *:first-child,
      .button-group.radius.stack-for-small > *:first-child > a,
      .button-group.radius.stack-for-small > *:first-child > button,
      .button-group.radius.stack-for-small > *:first-child > .button {
        -webkit-top-left-radius: 3px;
        -webkit-top-right-radius: 3px;
        border-top-left-radius: 3px;
        border-top-right-radius: 3px; }
      .button-group.radius.stack-for-small > *:last-child,
      .button-group.radius.stack-for-small > *:last-child > a,
      .button-group.radius.stack-for-small > *:last-child > button,
      .button-group.radius.stack-for-small > *:last-child > .button {
        -webkit-bottom-left-radius: 3px;
        -webkit-bottom-right-radius: 3px;
        border-bottom-left-radius: 3px;
        border-bottom-right-radius: 3px; } }
  .button-group.round > * {
    margin: 0 -2px;
    display: inline-block; }
    .button-group.round > * > button, .button-group.round > * .button {
      border-left: 1px solid;
      border-color: rgba(255, 255, 255, 0.5); }
    .button-group.round > *:first-child button, .button-group.round > *:first-child .button {
      border-left: 0; }
    .button-group.round > *,
    .button-group.round > * > a,
    .button-group.round > * > button,
    .button-group.round > * > .button {
      border-radius: 0; }
    .button-group.round > *:first-child,
    .button-group.round > *:first-child > a,
    .button-group.round > *:first-child > button,
    .button-group.round > *:first-child > .button {
      -webkit-border-bottom-left-radius: 1000px;
      -webkit-border-top-left-radius: 1000px;
      border-bottom-left-radius: 1000px;
      border-top-left-radius: 1000px; }
    .button-group.round > *:last-child,
    .button-group.round > *:last-child > a,
    .button-group.round > *:last-child > button,
    .button-group.round > *:last-child > .button {
      -webkit-border-bottom-right-radius: 1000px;
      -webkit-border-top-right-radius: 1000px;
      border-bottom-right-radius: 1000px;
      border-top-right-radius: 1000px; }
  .button-group.round.stack > * {
    margin: 0 -2px;
    display: inline-block;
    display: block;
    margin: 0; }
    .button-group.round.stack > * > button, .button-group.round.stack > * .button {
      border-left: 1px solid;
      border-color: rgba(255, 255, 255, 0.5); }
    .button-group.round.stack > *:first-child button, .button-group.round.stack > *:first-child .button {
      border-left: 0; }
    .button-group.round.stack > * > button, .button-group.round.stack > * .button {
      border-top: 1px solid;
      border-color: rgba(255, 255, 255, 0.5);
      border-left-width: 0px;
      margin: 0;
      display: block; }
    .button-group.round.stack > *:first-child button, .button-group.round.stack > *:first-child .button {
      border-top: 0; }
    .button-group.round.stack > *,
    .button-group.round.stack > * > a,
    .button-group.round.stack > * > button,
    .button-group.round.stack > * > .button {
      border-radius: 0; }
    .button-group.round.stack > *:first-child,
    .button-group.round.stack > *:first-child > a,
    .button-group.round.stack > *:first-child > button,
    .button-group.round.stack > *:first-child > .button {
      -webkit-top-left-radius: 1rem;
      -webkit-top-right-radius: 1rem;
      border-top-left-radius: 1rem;
      border-top-right-radius: 1rem; }
    .button-group.round.stack > *:last-child,
    .button-group.round.stack > *:last-child > a,
    .button-group.round.stack > *:last-child > button,
    .button-group.round.stack > *:last-child > .button {
      -webkit-bottom-left-radius: 1rem;
      -webkit-bottom-right-radius: 1rem;
      border-bottom-left-radius: 1rem;
      border-bottom-right-radius: 1rem; }
  @media only screen and (min-width: 48em) {
    .button-group.round.stack-for-small > * {
      margin: 0 -2px;
      display: inline-block; }
      .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
        border-left: 1px solid;
        border-color: rgba(255, 255, 255, 0.5); }
      .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
        border-left: 0; }
      .button-group.round.stack-for-small > *,
      .button-group.round.stack-for-small > * > a,
      .button-group.round.stack-for-small > * > button,
      .button-group.round.stack-for-small > * > .button {
        border-radius: 0; }
      .button-group.round.stack-for-small > *:first-child,
      .button-group.round.stack-for-small > *:first-child > a,
      .button-group.round.stack-for-small > *:first-child > button,
      .button-group.round.stack-for-small > *:first-child > .button {
        -webkit-border-bottom-left-radius: 1000px;
        -webkit-border-top-left-radius: 1000px;
        border-bottom-left-radius: 1000px;
        border-top-left-radius: 1000px; }
      .button-group.round.stack-for-small > *:last-child,
      .button-group.round.stack-for-small > *:last-child > a,
      .button-group.round.stack-for-small > *:last-child > button,
      .button-group.round.stack-for-small > *:last-child > .button {
        -webkit-border-bottom-right-radius: 1000px;
        -webkit-border-top-right-radius: 1000px;
        border-bottom-right-radius: 1000px;
        border-top-right-radius: 1000px; } }
  @media only screen and (max-width: 66em) {
    .button-group.round.stack-for-small > * {
      margin: 0 -2px;
      display: inline-block;
      display: block;
      margin: 0; }
      .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
        border-left: 1px solid;
        border-color: rgba(255, 255, 255, 0.5); }
      .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
        border-left: 0; }
      .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
        border-top: 1px solid;
        border-color: rgba(255, 255, 255, 0.5);
        border-left-width: 0px;
        margin: 0;
        display: block; }
      .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
        border-top: 0; }
      .button-group.round.stack-for-small > *,
      .button-group.round.stack-for-small > * > a,
      .button-group.round.stack-for-small > * > button,
      .button-group.round.stack-for-small > * > .button {
        border-radius: 0; }
      .button-group.round.stack-for-small > *:first-child,
      .button-group.round.stack-for-small > *:first-child > a,
      .button-group.round.stack-for-small > *:first-child > button,
      .button-group.round.stack-for-small > *:first-child > .button {
        -webkit-top-left-radius: 1rem;
        -webkit-top-right-radius: 1rem;
        border-top-left-radius: 1rem;
        border-top-right-radius: 1rem; }
      .button-group.round.stack-for-small > *:last-child,
      .button-group.round.stack-for-small > *:last-child > a,
      .button-group.round.stack-for-small > *:last-child > button,
      .button-group.round.stack-for-small > *:last-child > .button {
        -webkit-bottom-left-radius: 1rem;
        -webkit-bottom-right-radius: 1rem;
        border-bottom-left-radius: 1rem;
        border-bottom-right-radius: 1rem; } }
  .button-group.even-2 li {
    margin: 0 -2px;
    display: inline-block;
    width: 50%; }
    .button-group.even-2 li > button, .button-group.even-2 li .button {
      border-left: 1px solid;
      border-color: rgba(255, 255, 255, 0.5); }
    .button-group.even-2 li:first-child button, .button-group.even-2 li:first-child .button {
      border-left: 0; }
    .button-group.even-2 li button, .button-group.even-2 li .button {
      width: 100%; }
  .button-group.even-3 li {
    margin: 0 -2px;
    display: inline-block;
    width: 33.33333%; }
    .button-group.even-3 li > button, .button-group.even-3 li .button {
      border-left: 1px solid;
      border-color: rgba(255, 255, 255, 0.5); }
    .button-group.even-3 li:first-child button, .button-group.even-3 li:first-child .button {
      border-left: 0; }
    .button-group.even-3 li button, .button-group.even-3 li .button {
      width: 100%; }
  .button-group.even-4 li {
    margin: 0 -2px;
    display: inline-block;
    width: 25%; }
    .button-group.even-4 li > button, .button-group.even-4 li .button {
      border-left: 1px solid;
      border-color: rgba(255, 255, 255, 0.5); }
    .button-group.even-4 li:first-child button, .button-group.even-4 li:first-child .button {
      border-left: 0; }
    .button-group.even-4 li button, .button-group.even-4 li .button {
      width: 100%; }
  .button-group.even-5 li {
    margin: 0 -2px;
    display: inline-block;
    width: 20%; }
    .button-group.even-5 li > button, .button-group.even-5 li .button {
      border-left: 1px solid;
      border-color: rgba(255, 255, 255, 0.5); }
    .button-group.even-5 li:first-child button, .button-group.even-5 li:first-child .button {
      border-left: 0; }
    .button-group.even-5 li button, .button-group.even-5 li .button {
      width: 100%; }
  .button-group.even-6 li {
    margin: 0 -2px;
    display: inline-block;
    width: 16.66667%; }
    .button-group.even-6 li > button, .button-group.even-6 li .button {
      border-left: 1px solid;
      border-color: rgba(255, 255, 255, 0.5); }
    .button-group.even-6 li:first-child button, .button-group.even-6 li:first-child .button {
      border-left: 0; }
    .button-group.even-6 li button, .button-group.even-6 li .button {
      width: 100%; }
  .button-group.even-7 li {
    margin: 0 -2px;
    display: inline-block;
    width: 14.28571%; }
    .button-group.even-7 li > button, .button-group.even-7 li .button {
      border-left: 1px solid;
      border-color: rgba(255, 255, 255, 0.5); }
    .button-group.even-7 li:first-child button, .button-group.even-7 li:first-child .button {
      border-left: 0; }
    .button-group.even-7 li button, .button-group.even-7 li .button {
      width: 100%; }
  .button-group.even-8 li {
    margin: 0 -2px;
    display: inline-block;
    width: 12.5%; }
    .button-group.even-8 li > button, .button-group.even-8 li .button {
      border-left: 1px solid;
      border-color: rgba(255, 255, 255, 0.5); }
    .button-group.even-8 li:first-child button, .button-group.even-8 li:first-child .button {
      border-left: 0; }
    .button-group.even-8 li button, .button-group.even-8 li .button {
      width: 100%; }

.button-bar:before, .button-bar:after {
  content: " ";
  display: table; }

.button-bar:after {
  clear: both; }

.button-bar .button-group {
  float: left;
  margin-right: 0.625rem; }
  .button-bar .button-group div {
    overflow: hidden; }

meta.foundation-version {
  font-family: "/{{VERSION}}/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:48em)/";
  width: 48em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:60em)/";
  width: 60em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #505050;
  padding: 0;
  margin: 0;
  font-family: Arial;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto; }

a:hover {
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

button, .button {
  border-style: solid;
  border-width: 0px;
  cursor: pointer;
  font-family: Arial;
  font-weight: normal;
  line-height: normal;
  margin: 0 0 1.25rem;
  position: relative;
  text-decoration: none;
  text-align: center;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  display: inline-block;
  padding-top: 1rem;
  padding-right: 2rem;
  padding-bottom: 1.0625rem;
  padding-left: 2rem;
  font-size: 1rem;
  background-color: #2c4457;
  border-color: #233646;
  color: #FFFFFF;
  transition: background-color 300ms ease-out; }
  button:hover, button:focus, .button:hover, .button:focus {
    background-color: #233646; }
  button:hover, button:focus, .button:hover, .button:focus {
    color: #FFFFFF; }
  button.secondary, .button.secondary {
    background-color: #6f798c;
    border-color: #596170;
    color: #FFFFFF; }
    button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
      background-color: #596170; }
    button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
      color: #FFFFFF; }
  button.success, .button.success {
    background-color: #43AC6A;
    border-color: #368a55;
    color: #FFFFFF; }
    button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
      background-color: #368a55; }
    button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
      color: #FFFFFF; }
  button.alert, .button.alert {
    background-color: #f04124;
    border-color: #cf2a0e;
    color: #FFFFFF; }
    button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
      background-color: #cf2a0e; }
    button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
      color: #FFFFFF; }
  button.warning, .button.warning {
    background-color: #f08a24;
    border-color: #cf6e0e;
    color: #FFFFFF; }
    button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
      background-color: #cf6e0e; }
    button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
      color: #FFFFFF; }
  button.info, .button.info {
    background-color: #a0d3e8;
    border-color: #61b6d9;
    color: #333333; }
    button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
      background-color: #61b6d9; }
    button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
      color: #FFFFFF; }
  button.large, .button.large {
    padding-top: 1.125rem;
    padding-right: 2.25rem;
    padding-bottom: 1.1875rem;
    padding-left: 2.25rem;
    font-size: 1.25rem; }
  button.small, .button.small {
    padding-top: 0.875rem;
    padding-right: 1.75rem;
    padding-bottom: 0.9375rem;
    padding-left: 1.75rem;
    font-size: 0.8125rem; }
  button.tiny, .button.tiny {
    padding-top: 0.625rem;
    padding-right: 1.25rem;
    padding-bottom: 0.6875rem;
    padding-left: 1.25rem;
    font-size: 0.6875rem; }
  button.expand, .button.expand {
    padding-right: 0;
    padding-left: 0;
    width: 100%; }
  button.left-align, .button.left-align {
    text-align: left;
    text-indent: 0.75rem; }
  button.right-align, .button.right-align {
    text-align: right;
    padding-right: 0.75rem; }
  button.radius, .button.radius {
    border-radius: 3px; }
  button.round, .button.round {
    border-radius: 1000px; }
  button.disabled, button[disabled], .button.disabled, .button[disabled] {
    background-color: #2c4457;
    border-color: #233646;
    color: #FFFFFF;
    cursor: default;
    opacity: 0.7;
    box-shadow: none; }
    button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
      background-color: #233646; }
    button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
      color: #FFFFFF; }
    button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
      background-color: #2c4457; }
    button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary {
      background-color: #6f798c;
      border-color: #596170;
      color: #FFFFFF;
      cursor: default;
      opacity: 0.7;
      box-shadow: none; }
      button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
        background-color: #596170; }
      button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
        color: #FFFFFF; }
      button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
        background-color: #6f798c; }
    button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success {
      background-color: #43AC6A;
      border-color: #368a55;
      color: #FFFFFF;
      cursor: default;
      opacity: 0.7;
      box-shadow: none; }
      button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
        background-color: #368a55; }
      button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
        color: #FFFFFF; }
      button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
        background-color: #43AC6A; }
    button.disabled.alert, button[disabled].alert, .button.disabled.alert, .button[disabled].alert {
      background-color: #f04124;
      border-color: #cf2a0e;
      color: #FFFFFF;
      cursor: default;
      opacity: 0.7;
      box-shadow: none; }
      button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
        background-color: #cf2a0e; }
      button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
        color: #FFFFFF; }
      button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
        background-color: #f04124; }
    button.disabled.warning, button[disabled].warning, .button.disabled.warning, .button[disabled].warning {
      background-color: #f08a24;
      border-color: #cf6e0e;
      color: #FFFFFF;
      cursor: default;
      opacity: 0.7;
      box-shadow: none; }
      button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
        background-color: #cf6e0e; }
      button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
        color: #FFFFFF; }
      button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
        background-color: #f08a24; }
    button.disabled.info, button[disabled].info, .button.disabled.info, .button[disabled].info {
      background-color: #a0d3e8;
      border-color: #61b6d9;
      color: #333333;
      cursor: default;
      opacity: 0.7;
      box-shadow: none; }
      button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
        background-color: #61b6d9; }
      button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
        color: #FFFFFF; }
      button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
        background-color: #a0d3e8; }

button::-moz-focus-inner {
  border: 0;
  padding: 0; }

@media only screen and (min-width: 48em) {
  button, .button {
    display: inline-block; } }

meta.foundation-version {
  font-family: "/{{VERSION}}/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:48em)/";
  width: 48em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:60em)/";
  width: 60em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #505050;
  padding: 0;
  margin: 0;
  font-family: Arial;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto; }

a:hover {
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

/* Clearing Styles */
.clearing-thumbs, [data-clearing] {
  margin-bottom: 0;
  margin-left: 0;
  list-style: none; }
  .clearing-thumbs:before, .clearing-thumbs:after, [data-clearing]:before, [data-clearing]:after {
    content: " ";
    display: table; }
  .clearing-thumbs:after, [data-clearing]:after {
    clear: both; }
  .clearing-thumbs li, [data-clearing] li {
    float: left;
    margin-right: 10px; }
  .clearing-thumbs[class*="block-grid-"] li, [data-clearing][class*="block-grid-"] li {
    margin-right: 0; }

.clearing-blackout {
  background: #333333;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 998; }
  .clearing-blackout .clearing-close {
    display: block; }

.clearing-container {
  position: relative;
  z-index: 998;
  height: 100%;
  overflow: hidden;
  margin: 0; }

.clearing-touch-label {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #AAAAAA;
  font-size: 0.6em; }

.visible-img {
  height: 95%;
  position: relative; }
  .visible-img img {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -50%;
    max-height: 100%;
    max-width: 100%; }

.clearing-caption {
  color: #CCCCCC;
  font-size: 0.875em;
  line-height: 1.3;
  margin-bottom: 0;
  text-align: center;
  bottom: 0;
  background: #333333;
  width: 100%;
  padding: 10px 30px 20px;
  position: absolute;
  left: 0; }

.clearing-close {
  z-index: 999;
  padding-left: 20px;
  padding-top: 10px;
  font-size: 30px;
  line-height: 1;
  color: #CCCCCC;
  display: none; }
  .clearing-close:hover, .clearing-close:focus {
    color: #CCCCCC; }

.clearing-assembled .clearing-container {
  height: 100%; }
  .clearing-assembled .clearing-container .carousel > ul {
    display: none; }

.clearing-feature li {
  display: none; }
  .clearing-feature li.clearing-featured-img {
    display: block; }

@media only screen and (min-width: 48em) {
  .clearing-main-prev,
  .clearing-main-next {
    position: absolute;
    height: 100%;
    width: 40px;
    top: 0; }
    .clearing-main-prev > span,
    .clearing-main-next > span {
      position: absolute;
      top: 50%;
      display: block;
      width: 0;
      height: 0;
      border: solid 12px; }
      .clearing-main-prev > span:hover,
      .clearing-main-next > span:hover {
        opacity: 0.8; }
  .clearing-main-prev {
    left: 0; }
    .clearing-main-prev > span {
      left: 5px;
      border-color: transparent;
      border-right-color: #CCCCCC; }
  .clearing-main-next {
    right: 0; }
    .clearing-main-next > span {
      border-color: transparent;
      border-left-color: #CCCCCC; }
  .clearing-main-prev.disabled,
  .clearing-main-next.disabled {
    opacity: 0.3; }
  .clearing-assembled .clearing-container .carousel {
    background: rgba(51, 51, 51, 0.8);
    height: 120px;
    margin-top: 10px;
    text-align: center; }
    .clearing-assembled .clearing-container .carousel > ul {
      display: inline-block;
      z-index: 999;
      height: 100%;
      position: relative;
      float: none; }
      .clearing-assembled .clearing-container .carousel > ul li {
        display: block;
        width: 120px;
        min-height: inherit;
        float: left;
        overflow: hidden;
        margin-right: 0;
        padding: 0;
        position: relative;
        cursor: pointer;
        opacity: 0.4;
        clear: none; }
        .clearing-assembled .clearing-container .carousel > ul li.fix-height img {
          height: 100%;
          max-width: none; }
        .clearing-assembled .clearing-container .carousel > ul li a.th {
          border: none;
          box-shadow: none;
          display: block; }
        .clearing-assembled .clearing-container .carousel > ul li img {
          cursor: pointer !important;
          width: 100% !important; }
        .clearing-assembled .clearing-container .carousel > ul li.visible {
          opacity: 1; }
        .clearing-assembled .clearing-container .carousel > ul li:hover {
          opacity: 0.8; }
  .clearing-assembled .clearing-container .visible-img {
    background: #333333;
    overflow: hidden;
    height: 85%; }
  .clearing-close {
    position: absolute;
    top: 10px;
    right: 20px;
    padding-left: 0;
    padding-top: 0; } }

meta.foundation-version {
  font-family: "/{{VERSION}}/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:48em)/";
  width: 48em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:60em)/";
  width: 60em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #505050;
  padding: 0;
  margin: 0;
  font-family: Arial;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto; }

a:hover {
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

/* Foundation Dropdowns */
.f-dropdown {
  position: absolute;
  left: -9999px;
  list-style: none;
  margin-left: 0;
  outline: none;
  width: 100%;
  max-height: none;
  height: auto;
  background: #FFFFFF;
  border: solid 1px #cccccc;
  font-size: 0.875rem;
  z-index: 89;
  margin-top: 2px;
  max-width: 200px; }
  .f-dropdown > *:first-child {
    margin-top: 0; }
  .f-dropdown > *:last-child {
    margin-bottom: 0; }
  .f-dropdown:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    border-color: transparent transparent #FFFFFF transparent;
    border-bottom-style: solid;
    position: absolute;
    top: -12px;
    left: 10px;
    z-index: 89; }
  .f-dropdown:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 7px;
    border-color: transparent transparent #cccccc transparent;
    border-bottom-style: solid;
    position: absolute;
    top: -14px;
    left: 9px;
    z-index: 88; }
  .f-dropdown.right:before {
    left: auto;
    right: 10px; }
  .f-dropdown.right:after {
    left: auto;
    right: 9px; }
  .f-dropdown.drop-right {
    position: absolute;
    left: -9999px;
    list-style: none;
    margin-left: 0;
    outline: none;
    width: 100%;
    max-height: none;
    height: auto;
    background: #FFFFFF;
    border: solid 1px #cccccc;
    font-size: 0.875rem;
    z-index: 89;
    margin-top: 0;
    margin-left: 2px;
    max-width: 200px; }
    .f-dropdown.drop-right > *:first-child {
      margin-top: 0; }
    .f-dropdown.drop-right > *:last-child {
      margin-bottom: 0; }
    .f-dropdown.drop-right:before {
      content: "";
      display: block;
      width: 0;
      height: 0;
      border: inset 6px;
      border-color: transparent #FFFFFF transparent transparent;
      border-right-style: solid;
      position: absolute;
      top: 10px;
      left: -12px;
      z-index: 89; }
    .f-dropdown.drop-right:after {
      content: "";
      display: block;
      width: 0;
      height: 0;
      border: inset 7px;
      border-color: transparent #cccccc transparent transparent;
      border-right-style: solid;
      position: absolute;
      top: 9px;
      left: -14px;
      z-index: 88; }
  .f-dropdown.drop-left {
    position: absolute;
    left: -9999px;
    list-style: none;
    margin-left: 0;
    outline: none;
    width: 100%;
    max-height: none;
    height: auto;
    background: #FFFFFF;
    border: solid 1px #cccccc;
    font-size: 0.875rem;
    z-index: 89;
    margin-top: 0;
    margin-left: -2px;
    max-width: 200px; }
    .f-dropdown.drop-left > *:first-child {
      margin-top: 0; }
    .f-dropdown.drop-left > *:last-child {
      margin-bottom: 0; }
    .f-dropdown.drop-left:before {
      content: "";
      display: block;
      width: 0;
      height: 0;
      border: inset 6px;
      border-color: transparent transparent transparent #FFFFFF;
      border-left-style: solid;
      position: absolute;
      top: 10px;
      right: -12px;
      left: auto;
      z-index: 89; }
    .f-dropdown.drop-left:after {
      content: "";
      display: block;
      width: 0;
      height: 0;
      border: inset 7px;
      border-color: transparent transparent transparent #cccccc;
      border-left-style: solid;
      position: absolute;
      top: 9px;
      right: -14px;
      left: auto;
      z-index: 88; }
  .f-dropdown.drop-top {
    position: absolute;
    left: -9999px;
    list-style: none;
    margin-left: 0;
    outline: none;
    width: 100%;
    max-height: none;
    height: auto;
    background: #FFFFFF;
    border: solid 1px #cccccc;
    font-size: 0.875rem;
    z-index: 89;
    margin-top: -2px;
    margin-left: 0;
    max-width: 200px; }
    .f-dropdown.drop-top > *:first-child {
      margin-top: 0; }
    .f-dropdown.drop-top > *:last-child {
      margin-bottom: 0; }
    .f-dropdown.drop-top:before {
      content: "";
      display: block;
      width: 0;
      height: 0;
      border: inset 6px;
      border-color: #FFFFFF transparent transparent transparent;
      border-top-style: solid;
      position: absolute;
      top: auto;
      bottom: -12px;
      left: 10px;
      right: auto;
      z-index: 89; }
    .f-dropdown.drop-top:after {
      content: "";
      display: block;
      width: 0;
      height: 0;
      border: inset 7px;
      border-color: #cccccc transparent transparent transparent;
      border-top-style: solid;
      position: absolute;
      top: auto;
      bottom: -14px;
      left: 9px;
      right: auto;
      z-index: 88; }
  .f-dropdown li {
    font-size: 0.875rem;
    cursor: pointer;
    line-height: 1.125rem;
    margin: 0; }
    .f-dropdown li:hover, .f-dropdown li:focus {
      background: #EEEEEE; }
    .f-dropdown li.radius {
      border-radius: 3px; }
    .f-dropdown li a {
      display: block;
      padding: 0.5rem;
      color: #555555; }
  .f-dropdown.content {
    position: absolute;
    left: -9999px;
    list-style: none;
    margin-left: 0;
    outline: none;
    padding: 1.25rem;
    width: 100%;
    height: auto;
    max-height: none;
    background: #FFFFFF;
    border: solid 1px #cccccc;
    font-size: 0.875rem;
    z-index: 89;
    max-width: 200px; }
    .f-dropdown.content > *:first-child {
      margin-top: 0; }
    .f-dropdown.content > *:last-child {
      margin-bottom: 0; }
  .f-dropdown.tiny {
    max-width: 200px; }
  .f-dropdown.small {
    max-width: 300px; }
  .f-dropdown.medium {
    max-width: 500px; }
  .f-dropdown.large {
    max-width: 800px; }
  .f-dropdown.mega {
    width: 100% !important;
    max-width: 100% !important; }
    .f-dropdown.mega.open {
      left: 0 !important; }

meta.foundation-version {
  font-family: "/{{VERSION}}/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:48em)/";
  width: 48em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:60em)/";
  width: 60em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #505050;
  padding: 0;
  margin: 0;
  font-family: Arial;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto; }

a:hover {
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

.dropdown.button, button.dropdown {
  position: relative;
  outline: none;
  padding-right: 3.5625rem; }
  .dropdown.button::after, button.dropdown::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    display: block;
    border-style: solid;
    border-color: #FFFFFF transparent transparent transparent;
    top: 50%; }
  .dropdown.button::after, button.dropdown::after {
    border-width: 0.375rem;
    right: 1.40625rem;
    margin-top: -0.15625rem; }
  .dropdown.button::after, button.dropdown::after {
    border-color: #FFFFFF transparent transparent transparent; }
  .dropdown.button.tiny, button.dropdown.tiny {
    padding-right: 2.625rem; }
    .dropdown.button.tiny:after, button.dropdown.tiny:after {
      border-width: 0.375rem;
      right: 1.125rem;
      margin-top: -0.125rem; }
    .dropdown.button.tiny::after, button.dropdown.tiny::after {
      border-color: #FFFFFF transparent transparent transparent; }
  .dropdown.button.small, button.dropdown.small {
    padding-right: 3.0625rem; }
    .dropdown.button.small::after, button.dropdown.small::after {
      border-width: 0.4375rem;
      right: 1.3125rem;
      margin-top: -0.15625rem; }
    .dropdown.button.small::after, button.dropdown.small::after {
      border-color: #FFFFFF transparent transparent transparent; }
  .dropdown.button.large, button.dropdown.large {
    padding-right: 3.625rem; }
    .dropdown.button.large::after, button.dropdown.large::after {
      border-width: 0.3125rem;
      right: 1.71875rem;
      margin-top: -0.15625rem; }
    .dropdown.button.large::after, button.dropdown.large::after {
      border-color: #FFFFFF transparent transparent transparent; }
  .dropdown.button.secondary:after, button.dropdown.secondary:after {
    border-color: #333333 transparent transparent transparent; }

meta.foundation-version {
  font-family: "/{{VERSION}}/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:48em)/";
  width: 48em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:60em)/";
  width: 60em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #505050;
  padding: 0;
  margin: 0;
  font-family: Arial;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto; }

a:hover {
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

.flex-video {
  position: relative;
  padding-top: 1.5625rem;
  padding-bottom: 67.5%;
  height: 0;
  margin-bottom: 1rem;
  overflow: hidden; }
  .flex-video.widescreen {
    padding-bottom: 56.34%; }
  .flex-video.vimeo {
    padding-top: 0; }
  .flex-video iframe,
  .flex-video object,
  .flex-video embed,
  .flex-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

meta.foundation-version {
  font-family: "/{{VERSION}}/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:48em)/";
  width: 48em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:60em)/";
  width: 60em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #505050;
  padding: 0;
  margin: 0;
  font-family: Arial;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto; }

a:hover {
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

meta.foundation-version {
  font-family: "/{{VERSION}}/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:48em)/";
  width: 48em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:60em)/";
  width: 60em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #505050;
  padding: 0;
  margin: 0;
  font-family: Arial;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto; }

a:hover {
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

button, .button {
  border-style: solid;
  border-width: 0px;
  cursor: pointer;
  font-family: Arial;
  font-weight: normal;
  line-height: normal;
  margin: 0 0 1.25rem;
  position: relative;
  text-decoration: none;
  text-align: center;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  display: inline-block;
  padding-top: 1rem;
  padding-right: 2rem;
  padding-bottom: 1.0625rem;
  padding-left: 2rem;
  font-size: 1rem;
  background-color: #2c4457;
  border-color: #233646;
  color: #FFFFFF;
  transition: background-color 300ms ease-out; }
  button:hover, button:focus, .button:hover, .button:focus {
    background-color: #233646; }
  button:hover, button:focus, .button:hover, .button:focus {
    color: #FFFFFF; }
  button.secondary, .button.secondary {
    background-color: #6f798c;
    border-color: #596170;
    color: #FFFFFF; }
    button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
      background-color: #596170; }
    button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
      color: #FFFFFF; }
  button.success, .button.success {
    background-color: #43AC6A;
    border-color: #368a55;
    color: #FFFFFF; }
    button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
      background-color: #368a55; }
    button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
      color: #FFFFFF; }
  button.alert, .button.alert {
    background-color: #f04124;
    border-color: #cf2a0e;
    color: #FFFFFF; }
    button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
      background-color: #cf2a0e; }
    button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
      color: #FFFFFF; }
  button.warning, .button.warning {
    background-color: #f08a24;
    border-color: #cf6e0e;
    color: #FFFFFF; }
    button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
      background-color: #cf6e0e; }
    button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
      color: #FFFFFF; }
  button.info, .button.info {
    background-color: #a0d3e8;
    border-color: #61b6d9;
    color: #333333; }
    button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
      background-color: #61b6d9; }
    button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
      color: #FFFFFF; }
  button.large, .button.large {
    padding-top: 1.125rem;
    padding-right: 2.25rem;
    padding-bottom: 1.1875rem;
    padding-left: 2.25rem;
    font-size: 1.25rem; }
  button.small, .button.small {
    padding-top: 0.875rem;
    padding-right: 1.75rem;
    padding-bottom: 0.9375rem;
    padding-left: 1.75rem;
    font-size: 0.8125rem; }
  button.tiny, .button.tiny {
    padding-top: 0.625rem;
    padding-right: 1.25rem;
    padding-bottom: 0.6875rem;
    padding-left: 1.25rem;
    font-size: 0.6875rem; }
  button.expand, .button.expand {
    padding-right: 0;
    padding-left: 0;
    width: 100%; }
  button.left-align, .button.left-align {
    text-align: left;
    text-indent: 0.75rem; }
  button.right-align, .button.right-align {
    text-align: right;
    padding-right: 0.75rem; }
  button.radius, .button.radius {
    border-radius: 3px; }
  button.round, .button.round {
    border-radius: 1000px; }
  button.disabled, button[disabled], .button.disabled, .button[disabled] {
    background-color: #2c4457;
    border-color: #233646;
    color: #FFFFFF;
    cursor: default;
    opacity: 0.7;
    box-shadow: none; }
    button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
      background-color: #233646; }
    button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
      color: #FFFFFF; }
    button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
      background-color: #2c4457; }
    button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary {
      background-color: #6f798c;
      border-color: #596170;
      color: #FFFFFF;
      cursor: default;
      opacity: 0.7;
      box-shadow: none; }
      button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
        background-color: #596170; }
      button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
        color: #FFFFFF; }
      button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
        background-color: #6f798c; }
    button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success {
      background-color: #43AC6A;
      border-color: #368a55;
      color: #FFFFFF;
      cursor: default;
      opacity: 0.7;
      box-shadow: none; }
      button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
        background-color: #368a55; }
      button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
        color: #FFFFFF; }
      button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
        background-color: #43AC6A; }
    button.disabled.alert, button[disabled].alert, .button.disabled.alert, .button[disabled].alert {
      background-color: #f04124;
      border-color: #cf2a0e;
      color: #FFFFFF;
      cursor: default;
      opacity: 0.7;
      box-shadow: none; }
      button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
        background-color: #cf2a0e; }
      button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
        color: #FFFFFF; }
      button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
        background-color: #f04124; }
    button.disabled.warning, button[disabled].warning, .button.disabled.warning, .button[disabled].warning {
      background-color: #f08a24;
      border-color: #cf6e0e;
      color: #FFFFFF;
      cursor: default;
      opacity: 0.7;
      box-shadow: none; }
      button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
        background-color: #cf6e0e; }
      button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
        color: #FFFFFF; }
      button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
        background-color: #f08a24; }
    button.disabled.info, button[disabled].info, .button.disabled.info, .button[disabled].info {
      background-color: #a0d3e8;
      border-color: #61b6d9;
      color: #333333;
      cursor: default;
      opacity: 0.7;
      box-shadow: none; }
      button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
        background-color: #61b6d9; }
      button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
        color: #FFFFFF; }
      button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
        background-color: #a0d3e8; }

button::-moz-focus-inner {
  border: 0;
  padding: 0; }

@media only screen and (min-width: 48em) {
  button, .button {
    display: inline-block; } }

/* Standard Forms */
form {
  margin: 0 0 1rem; }

/* Using forms within rows, we need to set some defaults */
form .row .row {
  margin: 0 -0.5rem; }
  form .row .row .column,
  form .row .row .columns {
    padding: 0 0.5rem; }
  form .row .row.collapse {
    margin: 0; }
    form .row .row.collapse .column,
    form .row .row.collapse .columns {
      padding: 0; }
    form .row .row.collapse input {
      -webkit-border-bottom-right-radius: 0;
      -webkit-border-top-right-radius: 0;
      border-bottom-right-radius: 0;
      border-top-right-radius: 0; }

form .row input.column,
form .row input.columns,
form .row textarea.column,
form .row textarea.columns {
  padding-left: 0.5rem; }

/* Label Styles */
label {
  font-size: 0.875rem;
  color: #4d4d4d;
  cursor: pointer;
  display: block;
  font-weight: normal;
  line-height: 1.5;
  margin-bottom: 0;
  /* Styles for required inputs */ }
  label.right {
    float: none !important;
    text-align: right; }
  label.inline {
    margin: 0 0 1rem 0;
    padding: 0.5625rem 0; }
  label small {
    text-transform: capitalize;
    color: #676767; }

/* Attach elements to the beginning or end of an input */
.prefix,
.postfix {
  display: block;
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  border-style: solid;
  border-width: 1px;
  overflow: hidden;
  font-size: 0.875rem;
  height: 2.3125rem;
  line-height: 2.3125rem; }

/* Adjust padding, alignment and radius if pre/post element is a button */
.postfix.button {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  line-height: 2.125rem;
  border: none; }

.prefix.button {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  line-height: 2.125rem;
  border: none; }

.prefix.button.radius {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px; }

.postfix.button.radius {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px; }

.prefix.button.round {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 1000px;
  -webkit-border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border-top-left-radius: 1000px; }

.postfix.button.round {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 1000px;
  -webkit-border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  border-top-right-radius: 1000px; }

/* Separate prefix and postfix styles when on span or label so buttons keep their own */
span.prefix, label.prefix {
  background: #f2f2f2;
  border-right: none;
  color: #333333;
  border-color: #cccccc; }

span.postfix, label.postfix {
  background: #f2f2f2;
  border-left: none;
  color: #333333;
  border-color: #cccccc; }

/* We use this to get basic styling on all basic form elements */
input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="color"],
textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  background-color: #FFFFFF;
  font-family: inherit;
  border-style: solid;
  border-width: 1px;
  border-color: #cccccc;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.75);
  display: block;
  font-size: 0.875rem;
  margin: 0 0 1rem 0;
  padding: 0.5rem;
  height: 2.3125rem;
  width: 100%;
  box-sizing: border-box;
  transition: box-shadow 0.45s, border-color 0.45s ease-in-out; }
  input[type="text"]:focus,
  input[type="password"]:focus,
  input[type="date"]:focus,
  input[type="datetime"]:focus,
  input[type="datetime-local"]:focus,
  input[type="month"]:focus,
  input[type="week"]:focus,
  input[type="email"]:focus,
  input[type="number"]:focus,
  input[type="search"]:focus,
  input[type="tel"]:focus,
  input[type="time"]:focus,
  input[type="url"]:focus,
  input[type="color"]:focus,
  textarea:focus {
    box-shadow: 0 0 5px #999999;
    border-color: #999999; }
  input[type="text"]:focus,
  input[type="password"]:focus,
  input[type="date"]:focus,
  input[type="datetime"]:focus,
  input[type="datetime-local"]:focus,
  input[type="month"]:focus,
  input[type="week"]:focus,
  input[type="email"]:focus,
  input[type="number"]:focus,
  input[type="search"]:focus,
  input[type="tel"]:focus,
  input[type="time"]:focus,
  input[type="url"]:focus,
  input[type="color"]:focus,
  textarea:focus {
    background: #fafafa;
    border-color: #999999;
    outline: none; }
  input[type="text"]:disabled,
  input[type="password"]:disabled,
  input[type="date"]:disabled,
  input[type="datetime"]:disabled,
  input[type="datetime-local"]:disabled,
  input[type="month"]:disabled,
  input[type="week"]:disabled,
  input[type="email"]:disabled,
  input[type="number"]:disabled,
  input[type="search"]:disabled,
  input[type="tel"]:disabled,
  input[type="time"]:disabled,
  input[type="url"]:disabled,
  input[type="color"]:disabled,
  textarea:disabled {
    background-color: #DDDDDD;
    cursor: default; }
  input[type="text"][disabled], input[type="text"][readonly],
  fieldset[disabled] input[type="text"],
  input[type="password"][disabled],
  input[type="password"][readonly],
  fieldset[disabled]
  input[type="password"],
  input[type="date"][disabled],
  input[type="date"][readonly],
  fieldset[disabled]
  input[type="date"],
  input[type="datetime"][disabled],
  input[type="datetime"][readonly],
  fieldset[disabled]
  input[type="datetime"],
  input[type="datetime-local"][disabled],
  input[type="datetime-local"][readonly],
  fieldset[disabled]
  input[type="datetime-local"],
  input[type="month"][disabled],
  input[type="month"][readonly],
  fieldset[disabled]
  input[type="month"],
  input[type="week"][disabled],
  input[type="week"][readonly],
  fieldset[disabled]
  input[type="week"],
  input[type="email"][disabled],
  input[type="email"][readonly],
  fieldset[disabled]
  input[type="email"],
  input[type="number"][disabled],
  input[type="number"][readonly],
  fieldset[disabled]
  input[type="number"],
  input[type="search"][disabled],
  input[type="search"][readonly],
  fieldset[disabled]
  input[type="search"],
  input[type="tel"][disabled],
  input[type="tel"][readonly],
  fieldset[disabled]
  input[type="tel"],
  input[type="time"][disabled],
  input[type="time"][readonly],
  fieldset[disabled]
  input[type="time"],
  input[type="url"][disabled],
  input[type="url"][readonly],
  fieldset[disabled]
  input[type="url"],
  input[type="color"][disabled],
  input[type="color"][readonly],
  fieldset[disabled]
  input[type="color"],
  textarea[disabled],
  textarea[readonly],
  fieldset[disabled]
  textarea {
    background-color: #DDDDDD;
    cursor: default; }
  input[type="text"].radius,
  input[type="password"].radius,
  input[type="date"].radius,
  input[type="datetime"].radius,
  input[type="datetime-local"].radius,
  input[type="month"].radius,
  input[type="week"].radius,
  input[type="email"].radius,
  input[type="number"].radius,
  input[type="search"].radius,
  input[type="tel"].radius,
  input[type="time"].radius,
  input[type="url"].radius,
  input[type="color"].radius,
  textarea.radius {
    border-radius: 3px; }

form .row .prefix-radius.row.collapse input,
form .row .prefix-radius.row.collapse textarea,
form .row .prefix-radius.row.collapse select {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px; }

form .row .prefix-radius.row.collapse .prefix {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px; }

form .row .postfix-radius.row.collapse input,
form .row .postfix-radius.row.collapse textarea,
form .row .postfix-radius.row.collapse select {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px; }

form .row .postfix-radius.row.collapse .postfix {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px; }

form .row .prefix-round.row.collapse input,
form .row .prefix-round.row.collapse textarea,
form .row .prefix-round.row.collapse select {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 1000px;
  -webkit-border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  border-top-right-radius: 1000px; }

form .row .prefix-round.row.collapse .prefix {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 1000px;
  -webkit-border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border-top-left-radius: 1000px; }

form .row .postfix-round.row.collapse input,
form .row .postfix-round.row.collapse textarea,
form .row .postfix-round.row.collapse select {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 1000px;
  -webkit-border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border-top-left-radius: 1000px; }

form .row .postfix-round.row.collapse .postfix {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 1000px;
  -webkit-border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  border-top-right-radius: 1000px; }

input[type="submit"] {
  -webkit-appearance: none;
  -webkit-border-radius: 0px; }

/* Respect enforced amount of rows for textarea */
textarea[rows] {
  height: auto; }

/* Not allow resize out of parent */
textarea {
  max-width: 100%; }

/* Add height value for select elements to match text input height */
select {
  -webkit-appearance: none !important;
  -webkit-border-radius: 0px;
  background-color: #FAFAFA;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+);
  background-position: 100% center;
  background-repeat: no-repeat;
  border-style: solid;
  border-width: 1px;
  border-color: #cccccc;
  padding: 0.5rem;
  font-size: 0.875rem;
  font-family: Arial;
  color: rgba(0, 0, 0, 0.75);
  line-height: normal;
  border-radius: 0;
  height: 2.3125rem; }
  select::-ms-expand {
    display: none; }
  select.radius {
    border-radius: 3px; }
  select:hover {
    background-color: #f3f3f3;
    border-color: #999999; }
  select:disabled {
    background-color: #DDDDDD;
    cursor: default; }

/* Adjust margin for form elements below */
input[type="file"],
input[type="checkbox"],
input[type="radio"],
select {
  margin: 0 0 1rem 0; }

input[type="checkbox"] + label,
input[type="radio"] + label {
  display: inline-block;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
  vertical-align: baseline; }

/* Normalize file input width */
input[type="file"] {
  width: 100%; }

/* HTML5 Number spinners settings */
/* We add basic fieldset styling */
fieldset {
  border: 1px solid #DDDDDD;
  padding: 1.25rem;
  margin: 1.125rem 0; }
  fieldset legend {
    font-weight: bold;
    background: #FFFFFF;
    padding: 0 0.1875rem;
    margin: 0;
    margin-left: -0.1875rem; }

/* Error Handling */
[data-abide] .error small.error, [data-abide] .error span.error, [data-abide] span.error, [data-abide] small.error {
  display: block;
  padding: 0.375rem 0.5625rem 0.5625rem;
  margin-top: -1px;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: normal;
  font-style: italic;
  background: #f04124;
  color: #FFFFFF; }

[data-abide] span.error, [data-abide] small.error {
  display: none; }

span.error, small.error {
  display: block;
  padding: 0.375rem 0.5625rem 0.5625rem;
  margin-top: -1px;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: normal;
  font-style: italic;
  background: #f04124;
  color: #FFFFFF; }

.error input,
.error textarea,
.error select {
  margin-bottom: 0; }

.error input[type="checkbox"],
.error input[type="radio"] {
  margin-bottom: 1rem; }

.error label,
.error label.error {
  color: #f04124; }

.error small.error {
  display: block;
  padding: 0.375rem 0.5625rem 0.5625rem;
  margin-top: -1px;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: normal;
  font-style: italic;
  background: #f04124;
  color: #FFFFFF; }

.error > label > small {
  color: #676767;
  background: transparent;
  padding: 0;
  text-transform: capitalize;
  font-style: normal;
  font-size: 60%;
  margin: 0;
  display: inline; }

.error span.error-message {
  display: block; }

input.error,
textarea.error,
select.error {
  margin-bottom: 0; }

label.error {
  color: #f04124; }

meta.foundation-version {
  font-family: "/{{VERSION}}/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:48em)/";
  width: 48em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:60em)/";
  width: 60em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #505050;
  padding: 0;
  margin: 0;
  font-family: Arial;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto; }

a:hover {
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

.icon-bar {
  width: 100%;
  font-size: 0;
  display: inline-block;
  background: #333333; }
  .icon-bar > * {
    text-align: center;
    font-size: 1rem;
    width: 25%;
    margin: 0 auto;
    display: block;
    padding: 1.25rem;
    float: left; }
    .icon-bar > * i, .icon-bar > * img {
      display: block;
      margin: 0 auto; }
      .icon-bar > * i + label, .icon-bar > * img + label {
        margin-top: .0625rem; }
    .icon-bar > * i {
      font-size: 1.875rem;
      vertical-align: middle; }
    .icon-bar > * img {
      width: 1.875rem;
      height: 1.875rem; }
  .icon-bar.label-right > * i, .icon-bar.label-right > * img {
    margin: 0 .0625rem 0 0;
    display: inline-block; }
    .icon-bar.label-right > * i + label, .icon-bar.label-right > * img + label {
      margin-top: 0; }
  .icon-bar.label-right > * label {
    display: inline-block; }
  .icon-bar.vertical.label-right > * {
    text-align: left; }
  .icon-bar.vertical, .icon-bar.small-vertical {
    height: 100%;
    width: auto; }
    .icon-bar.vertical .item, .icon-bar.small-vertical .item {
      width: auto;
      margin: auto;
      float: none; }
  @media only screen and (min-width: 48em) {
    .icon-bar.medium-vertical {
      height: 100%;
      width: auto; }
      .icon-bar.medium-vertical .item {
        width: auto;
        margin: auto;
        float: none; } }
  @media only screen and (min-width: 60em) {
    .icon-bar.large-vertical {
      height: 100%;
      width: auto; }
      .icon-bar.large-vertical .item {
        width: auto;
        margin: auto;
        float: none; } }
  .icon-bar > * {
    font-size: 1rem;
    padding: 1.25rem; }
    .icon-bar > * i + label, .icon-bar > * img + label {
      margin-top: .0625rem; }
    .icon-bar > * i {
      font-size: 1.875rem; }
    .icon-bar > * img {
      width: 1.875rem;
      height: 1.875rem; }
  .icon-bar > *:hover {
    background: #2c4457; }
  .icon-bar > * label {
    color: #FFFFFF; }
  .icon-bar > * i {
    color: #FFFFFF; }

.icon-bar.two-up .item {
  width: 50%; }

.icon-bar.two-up.vertical .item, .icon-bar.two-up.small-vertical .item {
  width: auto; }

@media only screen and (min-width: 48em) {
  .icon-bar.two-up.medium-vertical .item {
    width: auto; } }

@media only screen and (min-width: 60em) {
  .icon-bar.two-up.large-vertical .item {
    width: auto; } }

.icon-bar.three-up .item {
  width: 33.3333%; }

.icon-bar.three-up.vertical .item, .icon-bar.three-up.small-vertical .item {
  width: auto; }

@media only screen and (min-width: 48em) {
  .icon-bar.three-up.medium-vertical .item {
    width: auto; } }

@media only screen and (min-width: 60em) {
  .icon-bar.three-up.large-vertical .item {
    width: auto; } }

.icon-bar.four-up .item {
  width: 25%; }

.icon-bar.four-up.vertical .item, .icon-bar.four-up.small-vertical .item {
  width: auto; }

@media only screen and (min-width: 48em) {
  .icon-bar.four-up.medium-vertical .item {
    width: auto; } }

@media only screen and (min-width: 60em) {
  .icon-bar.four-up.large-vertical .item {
    width: auto; } }

.icon-bar.five-up .item {
  width: 20%; }

.icon-bar.five-up.vertical .item, .icon-bar.five-up.small-vertical .item {
  width: auto; }

@media only screen and (min-width: 48em) {
  .icon-bar.five-up.medium-vertical .item {
    width: auto; } }

@media only screen and (min-width: 60em) {
  .icon-bar.five-up.large-vertical .item {
    width: auto; } }

.icon-bar.six-up .item {
  width: 16.66667%; }

.icon-bar.six-up.vertical .item, .icon-bar.six-up.small-vertical .item {
  width: auto; }

@media only screen and (min-width: 48em) {
  .icon-bar.six-up.medium-vertical .item {
    width: auto; } }

@media only screen and (min-width: 60em) {
  .icon-bar.six-up.large-vertical .item {
    width: auto; } }

meta.foundation-version {
  font-family: "/{{VERSION}}/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:48em)/";
  width: 48em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:60em)/";
  width: 60em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #505050;
  padding: 0;
  margin: 0;
  font-family: Arial;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto; }

a:hover {
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

.inline-list {
  margin: 0 auto 1.0625rem auto;
  margin-left: -1.375rem;
  margin-right: 0;
  padding: 0;
  list-style: none;
  overflow: hidden; }
  .inline-list > li {
    list-style: none;
    float: left;
    margin-left: 1.375rem;
    display: block; }
    .inline-list > li > * {
      display: block; }

meta.foundation-version {
  font-family: "/{{VERSION}}/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:48em)/";
  width: 48em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:60em)/";
  width: 60em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #505050;
  padding: 0;
  margin: 0;
  font-family: Arial;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto; }

a:hover {
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

.keystroke,
kbd {
  background-color: #ededed;
  border-color: #dddddd;
  color: #222222;
  border-style: solid;
  border-width: 1px;
  margin: 0;
  font-family: "Consolas", "Menlo", "Courier", monospace;
  font-size: inherit;
  padding: 0.125rem 0.25rem 0;
  border-radius: 3px; }

meta.foundation-version {
  font-family: "/{{VERSION}}/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:48em)/";
  width: 48em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:60em)/";
  width: 60em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #505050;
  padding: 0;
  margin: 0;
  font-family: Arial;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto; }

a:hover {
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg); } }

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

/* Orbit Graceful Loading */
.slideshow-wrapper {
  position: relative; }
  .slideshow-wrapper ul {
    list-style-type: none;
    margin: 0; }
    .slideshow-wrapper ul li,
    .slideshow-wrapper ul li .orbit-caption {
      display: none; }
    .slideshow-wrapper ul li:first-child {
      display: block; }
  .slideshow-wrapper .orbit-container {
    background-color: transparent; }
    .slideshow-wrapper .orbit-container li {
      display: block; }
      .slideshow-wrapper .orbit-container li .orbit-caption {
        display: block; }
    .slideshow-wrapper .orbit-container .orbit-bullets li {
      display: inline-block; }
  .slideshow-wrapper .preloader {
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px;
    border: solid 3px;
    border-color: #555555 #FFFFFF;
    border-radius: 1000px;
    -webkit-animation-name: rotate;
            animation-name: rotate;
    -webkit-animation-duration: 1.5s;
            animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear; }

.orbit-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  background: none; }
  .orbit-container .orbit-slides-container {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    -webkit-transform: translateZ(0); }
    .orbit-container .orbit-slides-container img {
      display: block;
      max-width: 100%; }
    .orbit-container .orbit-slides-container > * {
      position: absolute;
      top: 0;
      width: 100%;
      margin-left: 100%; }
      .orbit-container .orbit-slides-container > *:first-child {
        margin-left: 0%; }
      .orbit-container .orbit-slides-container > * .orbit-caption {
        position: absolute;
        bottom: 0;
        background-color: rgba(51, 51, 51, 0.8);
        color: #FFFFFF;
        width: 100%;
        padding: 0.625rem 0.875rem;
        font-size: 0.875rem; }
  .orbit-container .orbit-slide-number {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 12px;
    color: #fff;
    background: transparent;
    z-index: 10; }
    .orbit-container .orbit-slide-number span {
      font-weight: 700;
      padding: 0.3125rem; }
  .orbit-container .orbit-timer {
    position: absolute;
    top: 12px;
    right: 10px;
    height: 6px;
    width: 100px;
    z-index: 10; }
    .orbit-container .orbit-timer > span {
      display: none;
      position: absolute;
      top: 0px;
      right: 0;
      width: 11px;
      height: 14px;
      border: solid 4px #FFFFFF;
      border-top: none;
      border-bottom: none; }
    .orbit-container .orbit-timer.paused > span {
      right: -4px;
      top: 0px;
      width: 11px;
      height: 14px;
      border: inset 8px;
      border-left-style: solid;
      border-color: transparent;
      border-left-color: #FFFFFF; }
      .orbit-container .orbit-timer.paused > span.dark {
        border-left-color: #333333; }
  .orbit-container:hover .orbit-timer > span {
    display: block; }
  .orbit-container .orbit-prev,
  .orbit-container .orbit-next {
    position: absolute;
    top: 45%;
    margin-top: -25px;
    width: 36px;
    height: 60px;
    line-height: 50px;
    color: white;
    background-color: transparent;
    text-indent: -9999px !important;
    z-index: 10; }
    .orbit-container .orbit-prev:hover,
    .orbit-container .orbit-next:hover {
      background-color: rgba(0, 0, 0, 0.3); }
    .orbit-container .orbit-prev > span,
    .orbit-container .orbit-next > span {
      position: absolute;
      top: 50%;
      margin-top: -10px;
      display: block;
      width: 0;
      height: 0;
      border: inset 10px; }
  .orbit-container .orbit-prev {
    left: 0; }
    .orbit-container .orbit-prev > span {
      border-right-style: solid;
      border-color: transparent;
      border-right-color: #FFFFFF; }
    .orbit-container .orbit-prev:hover > span {
      border-right-color: #FFFFFF; }
  .orbit-container .orbit-next {
    right: 0; }
    .orbit-container .orbit-next > span {
      border-color: transparent;
      border-left-style: solid;
      border-left-color: #FFFFFF;
      left: 50%;
      margin-left: -4px; }
    .orbit-container .orbit-next:hover > span {
      border-left-color: #FFFFFF; }

.orbit-bullets-container {
  text-align: center; }

.orbit-bullets {
  margin: 0 auto 30px auto;
  overflow: hidden;
  position: relative;
  top: 10px;
  float: none;
  text-align: center;
  display: block; }
  .orbit-bullets li {
    cursor: pointer;
    display: inline-block;
    width: 0.5625rem;
    height: 0.5625rem;
    background: #CCCCCC;
    float: none;
    margin-right: 6px;
    border-radius: 1000px; }
    .orbit-bullets li.active {
      background: #999999; }
    .orbit-bullets li:last-child {
      margin-right: 0; }

.touch .orbit-container .orbit-prev,
.touch .orbit-container .orbit-next {
  display: none; }

.touch .orbit-bullets {
  display: none; }

@media only screen and (min-width: 48em) {
  .touch .orbit-container .orbit-prev,
  .touch .orbit-container .orbit-next {
    display: inherit; }
  .touch .orbit-bullets {
    display: block; } }

@media only screen and (max-width: 66em) {
  .orbit-stack-on-small .orbit-slides-container {
    height: auto !important; }
  .orbit-stack-on-small .orbit-slides-container > * {
    position: relative;
    margin: 0% !important;
    opacity: 1 !important; }
  .orbit-stack-on-small .orbit-slide-number {
    display: none; }
  .orbit-timer {
    display: none; }
  .orbit-next, .orbit-prev {
    display: none; }
  .orbit-bullets {
    display: none; } }

meta.foundation-version {
  font-family: "/{{VERSION}}/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:48em)/";
  width: 48em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:60em)/";
  width: 60em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #505050;
  padding: 0;
  margin: 0;
  font-family: Arial;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto; }

a:hover {
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

ul.pagination {
  display: block;
  min-height: 1.5rem;
  margin-left: -0.3125rem; }
  ul.pagination li {
    height: 1.5rem;
    color: #222222;
    font-size: 0.875rem;
    margin-left: 0.3125rem; }
    ul.pagination li a, ul.pagination li button {
      display: block;
      padding: 0.0625rem 0.625rem 0.0625rem;
      color: #999999;
      background: none;
      border-radius: 3px;
      font-weight: normal;
      font-size: 1em;
      line-height: inherit;
      transition: background-color 300ms ease-out; }
    ul.pagination li:hover a,
    ul.pagination li a:focus,
    ul.pagination li:hover button,
    ul.pagination li button:focus {
      background: #e6e6e6; }
    ul.pagination li.unavailable a, ul.pagination li.unavailable button {
      cursor: default;
      color: #999999; }
    ul.pagination li.unavailable:hover a,
    ul.pagination li.unavailable a:focus,
    ul.pagination li.unavailable:hover button,
    ul.pagination li.unavailable button:focus {
      background: transparent; }
    ul.pagination li.current a, ul.pagination li.current button {
      background: #2c4457;
      color: #FFFFFF;
      font-weight: bold;
      cursor: default; }
      ul.pagination li.current a:hover, ul.pagination li.current a:focus, ul.pagination li.current button:hover, ul.pagination li.current button:focus {
        background: #2c4457; }
  ul.pagination li {
    float: left;
    display: block; }

/* Pagination centred wrapper */
.pagination-centered {
  text-align: center; }
  .pagination-centered ul.pagination li {
    float: none;
    display: inline-block; }

meta.foundation-version {
  font-family: "/{{VERSION}}/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:48em)/";
  width: 48em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:60em)/";
  width: 60em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #505050;
  padding: 0;
  margin: 0;
  font-family: Arial;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto; }

a:hover {
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

.side-nav {
  display: block;
  margin: 0;
  padding: 0.875rem 0;
  list-style-type: none;
  list-style-position: outside;
  font-family: Arial; }
  .side-nav li {
    margin: 0 0 0.4375rem 0;
    font-size: 0.875rem;
    font-weight: normal; }
    .side-nav li a:not(.button) {
      display: block;
      color: #2c4457;
      margin: 0;
      padding: 0.4375rem 0.875rem; }
      .side-nav li a:not(.button):hover, .side-nav li a:not(.button):focus {
        background: rgba(0, 0, 0, 0.025);
        color: #527fa3; }
    .side-nav li.active > a:first-child:not(.button) {
      color: #527fa3;
      font-weight: normal;
      font-family: Arial; }
    .side-nav li.divider {
      border-top: 1px solid;
      height: 0;
      padding: 0;
      list-style: none;
      border-top-color: white; }
    .side-nav li.heading {
      color: #2c4457;
      font-size: 0.875rem;
      font-weight: bold;
      text-transform: uppercase; }

meta.foundation-version {
  font-family: "/{{VERSION}}/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:48em)/";
  width: 48em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:60em)/";
  width: 60em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #505050;
  padding: 0;
  margin: 0;
  font-family: Arial;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto; }

a:hover {
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

.sub-nav {
  display: block;
  width: auto;
  overflow: hidden;
  margin-bottom: 0;
  padding-top: 0; }
  .sub-nav dt {
    text-transform: uppercase; }
  .sub-nav dt,
  .sub-nav dd,
  .sub-nav li {
    float: left;
    display: inline;
    margin-left: 1rem;
    margin-bottom: 0;
    font-family: Arial;
    font-weight: normal;
    font-size: 0.8125rem;
    color: #6f798c;
    margin-left: 0; }
    .sub-nav dt a,
    .sub-nav dd a,
    .sub-nav li a {
      text-decoration: none;
      color: #6f798c;
      padding: 0.1875rem 1rem; }
      .sub-nav dt a:hover,
      .sub-nav dd a:hover,
      .sub-nav li a:hover {
        color: #535b69; }
    .sub-nav dt.active a,
    .sub-nav dd.active a,
    .sub-nav li.active a {
      border-radius: 0;
      font-weight: bold;
      background: transparent;
      padding: 0;
      cursor: default;
      color: #bd814d; }
      .sub-nav dt.active a:hover,
      .sub-nav dd.active a:hover,
      .sub-nav li.active a:hover {
        background: transparent; }
    .sub-nav dt:before,
    .sub-nav dd:before,
    .sub-nav li:before {
      content: "|";
      margin: 0 0.625rem; }
    .sub-nav dt:first-child:before,
    .sub-nav dd:first-child:before,
    .sub-nav li:first-child:before {
      content: "";
      margin: 0; }

meta.foundation-version {
  font-family: "/{{VERSION}}/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:48em)/";
  width: 48em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:60em)/";
  width: 60em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #505050;
  padding: 0;
  margin: 0;
  font-family: Arial;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto; }

a:hover {
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

table {
  background: transparent;
  margin-bottom: 1.25rem;
  border: none 1px #DDDDDD;
  table-layout: auto; }
  table caption {
    background: transparent;
    color: #222222;
    font-size: 1rem;
    font-weight: bold; }
  table thead {
    background: transparent; }
    table thead tr th,
    table thead tr td {
      padding: 0.5rem 0.625rem 0.625rem;
      font-size: 0.875rem;
      font-weight: bold;
      color: #222222; }
  table tfoot {
    background: transparent; }
    table tfoot tr th,
    table tfoot tr td {
      padding: 0.5rem 0.625rem 0.625rem;
      font-size: 0.875rem;
      font-weight: bold;
      color: #222222; }
  table tr th,
  table tr td {
    padding: 0.3125rem 0.3125rem;
    font-size: 0.875rem;
    color: #222222;
    text-align: left; }
  table tr.even, table tr.alt, table tr:nth-of-type(even) {
    background: transparent; }
  table thead tr th,
  table tfoot tr th,
  table tfoot tr td,
  table tbody tr th,
  table tbody tr td,
  table tr td {
    display: table-cell;
    line-height: 1.125rem; }

meta.foundation-version {
  font-family: "/{{VERSION}}/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:48em)/";
  width: 48em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:60em)/";
  width: 60em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #505050;
  padding: 0;
  margin: 0;
  font-family: Arial;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto; }

a:hover {
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

meta.foundation-version {
  font-family: "/{{VERSION}}/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:48em)/";
  width: 48em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:60em)/";
  width: 60em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #505050;
  padding: 0;
  margin: 0;
  font-family: Arial;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto; }

a:hover {
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

.tabs {
  margin-bottom: 0 !important;
  margin-left: 0; }
  .tabs:before, .tabs:after {
    content: " ";
    display: table; }
  .tabs:after {
    clear: both; }
  .tabs dd, .tabs .tab-title {
    position: relative;
    margin-bottom: 0 !important;
    list-style: none;
    float: left; }
    .tabs dd > a, .tabs .tab-title > a {
      outline: none;
      display: block;
      background-color: transparent;
      color: #222;
      padding: 1rem 2rem;
      font-family: Arial;
      font-size: 1rem; }
      .tabs dd > a:hover, .tabs .tab-title > a:hover {
        background-color: transparent; }
    .tabs dd.active a, .tabs .tab-title.active a {
      background-color: transparent;
      color: #222; }
  .tabs.radius dd:first-child a, .tabs.radius .tab:first-child a {
    -webkit-border-bottom-left-radius: 3px;
    -webkit-border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px; }
  .tabs.radius dd:last-child a, .tabs.radius .tab:last-child a {
    -webkit-border-bottom-right-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px; }
  .tabs.vertical dd, .tabs.vertical .tab-title {
    position: inherit;
    float: none;
    display: block;
    top: auto; }

.tabs-content {
  margin-bottom: 1rem;
  width: 100%; }
  .tabs-content:before, .tabs-content:after {
    content: " ";
    display: table; }
  .tabs-content:after {
    clear: both; }
  .tabs-content > .content {
    display: none;
    float: left;
    padding: 0.9375rem 0;
    width: 100%; }
    .tabs-content > .content.active {
      display: block;
      float: none; }
    .tabs-content > .content.contained {
      padding: 0.9375rem; }
  .tabs-content.vertical {
    display: block; }
    .tabs-content.vertical > .content {
      padding: 0 0.9375rem; }

@media only screen and (min-width: 48em) {
  .tabs.vertical {
    width: 20%;
    max-width: 20%;
    float: left;
    margin: 0 0 1.25rem; }
  .tabs-content.vertical {
    width: 80%;
    max-width: 80%;
    float: left;
    margin-left: -1px;
    padding-left: 1rem; } }

.no-js .tabs-content > .content {
  display: block;
  float: none; }

meta.foundation-version {
  font-family: "/{{VERSION}}/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:48em)/";
  width: 48em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:60em)/";
  width: 60em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #505050;
  padding: 0;
  margin: 0;
  font-family: Arial;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto; }

a:hover {
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

/* Image Thumbnails */
.th {
  line-height: 0;
  display: inline-block;
  border: solid 4px #FFFFFF;
  max-width: 100%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
  transition: all 200ms ease-out; }
  .th:hover, .th:focus {
    box-shadow: 0 0 6px 1px rgba(44, 68, 87, 0.5); }
  .th.radius {
    border-radius: 3px; }

meta.foundation-version {
  font-family: "/{{VERSION}}/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:48em)/";
  width: 48em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:60em)/";
  width: 60em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #505050;
  padding: 0;
  margin: 0;
  font-family: Arial;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto; }

a:hover {
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

meta.foundation-version {
  font-family: "/{{VERSION}}/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:48em)/";
  width: 48em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:60em)/";
  width: 60em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #505050;
  padding: 0;
  margin: 0;
  font-family: Arial;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto; }

a:hover {
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

meta.foundation-version {
  font-family: "/{{VERSION}}/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:48em)/";
  width: 48em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:60em)/";
  width: 60em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #505050;
  padding: 0;
  margin: 0;
  font-family: Arial;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto; }

a:hover {
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

button, .button {
  border-style: solid;
  border-width: 0px;
  cursor: pointer;
  font-family: Arial;
  font-weight: normal;
  line-height: normal;
  margin: 0 0 1.25rem;
  position: relative;
  text-decoration: none;
  text-align: center;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  display: inline-block;
  padding-top: 1rem;
  padding-right: 2rem;
  padding-bottom: 1.0625rem;
  padding-left: 2rem;
  font-size: 1rem;
  background-color: #2c4457;
  border-color: #233646;
  color: #FFFFFF;
  transition: background-color 300ms ease-out; }
  button:hover, button:focus, .button:hover, .button:focus {
    background-color: #233646; }
  button:hover, button:focus, .button:hover, .button:focus {
    color: #FFFFFF; }
  button.secondary, .button.secondary {
    background-color: #6f798c;
    border-color: #596170;
    color: #FFFFFF; }
    button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
      background-color: #596170; }
    button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
      color: #FFFFFF; }
  button.success, .button.success {
    background-color: #43AC6A;
    border-color: #368a55;
    color: #FFFFFF; }
    button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
      background-color: #368a55; }
    button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
      color: #FFFFFF; }
  button.alert, .button.alert {
    background-color: #f04124;
    border-color: #cf2a0e;
    color: #FFFFFF; }
    button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
      background-color: #cf2a0e; }
    button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
      color: #FFFFFF; }
  button.warning, .button.warning {
    background-color: #f08a24;
    border-color: #cf6e0e;
    color: #FFFFFF; }
    button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
      background-color: #cf6e0e; }
    button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
      color: #FFFFFF; }
  button.info, .button.info {
    background-color: #a0d3e8;
    border-color: #61b6d9;
    color: #333333; }
    button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
      background-color: #61b6d9; }
    button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
      color: #FFFFFF; }
  button.large, .button.large {
    padding-top: 1.125rem;
    padding-right: 2.25rem;
    padding-bottom: 1.1875rem;
    padding-left: 2.25rem;
    font-size: 1.25rem; }
  button.small, .button.small {
    padding-top: 0.875rem;
    padding-right: 1.75rem;
    padding-bottom: 0.9375rem;
    padding-left: 1.75rem;
    font-size: 0.8125rem; }
  button.tiny, .button.tiny {
    padding-top: 0.625rem;
    padding-right: 1.25rem;
    padding-bottom: 0.6875rem;
    padding-left: 1.25rem;
    font-size: 0.6875rem; }
  button.expand, .button.expand {
    padding-right: 0;
    padding-left: 0;
    width: 100%; }
  button.left-align, .button.left-align {
    text-align: left;
    text-indent: 0.75rem; }
  button.right-align, .button.right-align {
    text-align: right;
    padding-right: 0.75rem; }
  button.radius, .button.radius {
    border-radius: 3px; }
  button.round, .button.round {
    border-radius: 1000px; }
  button.disabled, button[disabled], .button.disabled, .button[disabled] {
    background-color: #2c4457;
    border-color: #233646;
    color: #FFFFFF;
    cursor: default;
    opacity: 0.7;
    box-shadow: none; }
    button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
      background-color: #233646; }
    button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
      color: #FFFFFF; }
    button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
      background-color: #2c4457; }
    button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary {
      background-color: #6f798c;
      border-color: #596170;
      color: #FFFFFF;
      cursor: default;
      opacity: 0.7;
      box-shadow: none; }
      button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
        background-color: #596170; }
      button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
        color: #FFFFFF; }
      button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
        background-color: #6f798c; }
    button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success {
      background-color: #43AC6A;
      border-color: #368a55;
      color: #FFFFFF;
      cursor: default;
      opacity: 0.7;
      box-shadow: none; }
      button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
        background-color: #368a55; }
      button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
        color: #FFFFFF; }
      button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
        background-color: #43AC6A; }
    button.disabled.alert, button[disabled].alert, .button.disabled.alert, .button[disabled].alert {
      background-color: #f04124;
      border-color: #cf2a0e;
      color: #FFFFFF;
      cursor: default;
      opacity: 0.7;
      box-shadow: none; }
      button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
        background-color: #cf2a0e; }
      button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
        color: #FFFFFF; }
      button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
        background-color: #f04124; }
    button.disabled.warning, button[disabled].warning, .button.disabled.warning, .button[disabled].warning {
      background-color: #f08a24;
      border-color: #cf6e0e;
      color: #FFFFFF;
      cursor: default;
      opacity: 0.7;
      box-shadow: none; }
      button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
        background-color: #cf6e0e; }
      button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
        color: #FFFFFF; }
      button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
        background-color: #f08a24; }
    button.disabled.info, button[disabled].info, .button.disabled.info, .button[disabled].info {
      background-color: #a0d3e8;
      border-color: #61b6d9;
      color: #333333;
      cursor: default;
      opacity: 0.7;
      box-shadow: none; }
      button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
        background-color: #61b6d9; }
      button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
        color: #FFFFFF; }
      button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
        background-color: #a0d3e8; }

button::-moz-focus-inner {
  border: 0;
  padding: 0; }

@media only screen and (min-width: 48em) {
  button, .button {
    display: inline-block; } }

meta.foundation-version {
  font-family: "/{{VERSION}}/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:48em)/";
  width: 48em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:60em)/";
  width: 60em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #505050;
  padding: 0;
  margin: 0;
  font-family: Arial;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto; }

a:hover {
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

meta.foundation-version {
  font-family: "/{{VERSION}}/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:48em)/";
  width: 48em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:60em)/";
  width: 60em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #505050;
  padding: 0;
  margin: 0;
  font-family: Arial;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto; }

a:hover {
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

button, .button {
  border-style: solid;
  border-width: 0px;
  cursor: pointer;
  font-family: Arial;
  font-weight: normal;
  line-height: normal;
  margin: 0 0 1.25rem;
  position: relative;
  text-decoration: none;
  text-align: center;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  display: inline-block;
  padding-top: 1rem;
  padding-right: 2rem;
  padding-bottom: 1.0625rem;
  padding-left: 2rem;
  font-size: 1rem;
  background-color: #2c4457;
  border-color: #233646;
  color: #FFFFFF;
  transition: background-color 300ms ease-out; }
  button:hover, button:focus, .button:hover, .button:focus {
    background-color: #233646; }
  button:hover, button:focus, .button:hover, .button:focus {
    color: #FFFFFF; }
  button.secondary, .button.secondary {
    background-color: #6f798c;
    border-color: #596170;
    color: #FFFFFF; }
    button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
      background-color: #596170; }
    button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
      color: #FFFFFF; }
  button.success, .button.success {
    background-color: #43AC6A;
    border-color: #368a55;
    color: #FFFFFF; }
    button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
      background-color: #368a55; }
    button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
      color: #FFFFFF; }
  button.alert, .button.alert {
    background-color: #f04124;
    border-color: #cf2a0e;
    color: #FFFFFF; }
    button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
      background-color: #cf2a0e; }
    button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
      color: #FFFFFF; }
  button.warning, .button.warning {
    background-color: #f08a24;
    border-color: #cf6e0e;
    color: #FFFFFF; }
    button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
      background-color: #cf6e0e; }
    button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
      color: #FFFFFF; }
  button.info, .button.info {
    background-color: #a0d3e8;
    border-color: #61b6d9;
    color: #333333; }
    button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
      background-color: #61b6d9; }
    button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
      color: #FFFFFF; }
  button.large, .button.large {
    padding-top: 1.125rem;
    padding-right: 2.25rem;
    padding-bottom: 1.1875rem;
    padding-left: 2.25rem;
    font-size: 1.25rem; }
  button.small, .button.small {
    padding-top: 0.875rem;
    padding-right: 1.75rem;
    padding-bottom: 0.9375rem;
    padding-left: 1.75rem;
    font-size: 0.8125rem; }
  button.tiny, .button.tiny {
    padding-top: 0.625rem;
    padding-right: 1.25rem;
    padding-bottom: 0.6875rem;
    padding-left: 1.25rem;
    font-size: 0.6875rem; }
  button.expand, .button.expand {
    padding-right: 0;
    padding-left: 0;
    width: 100%; }
  button.left-align, .button.left-align {
    text-align: left;
    text-indent: 0.75rem; }
  button.right-align, .button.right-align {
    text-align: right;
    padding-right: 0.75rem; }
  button.radius, .button.radius {
    border-radius: 3px; }
  button.round, .button.round {
    border-radius: 1000px; }
  button.disabled, button[disabled], .button.disabled, .button[disabled] {
    background-color: #2c4457;
    border-color: #233646;
    color: #FFFFFF;
    cursor: default;
    opacity: 0.7;
    box-shadow: none; }
    button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
      background-color: #233646; }
    button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
      color: #FFFFFF; }
    button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
      background-color: #2c4457; }
    button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary {
      background-color: #6f798c;
      border-color: #596170;
      color: #FFFFFF;
      cursor: default;
      opacity: 0.7;
      box-shadow: none; }
      button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
        background-color: #596170; }
      button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
        color: #FFFFFF; }
      button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
        background-color: #6f798c; }
    button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success {
      background-color: #43AC6A;
      border-color: #368a55;
      color: #FFFFFF;
      cursor: default;
      opacity: 0.7;
      box-shadow: none; }
      button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
        background-color: #368a55; }
      button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
        color: #FFFFFF; }
      button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
        background-color: #43AC6A; }
    button.disabled.alert, button[disabled].alert, .button.disabled.alert, .button[disabled].alert {
      background-color: #f04124;
      border-color: #cf2a0e;
      color: #FFFFFF;
      cursor: default;
      opacity: 0.7;
      box-shadow: none; }
      button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
        background-color: #cf2a0e; }
      button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
        color: #FFFFFF; }
      button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
        background-color: #f04124; }
    button.disabled.warning, button[disabled].warning, .button.disabled.warning, .button[disabled].warning {
      background-color: #f08a24;
      border-color: #cf6e0e;
      color: #FFFFFF;
      cursor: default;
      opacity: 0.7;
      box-shadow: none; }
      button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
        background-color: #cf6e0e; }
      button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
        color: #FFFFFF; }
      button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
        background-color: #f08a24; }
    button.disabled.info, button[disabled].info, .button.disabled.info, .button[disabled].info {
      background-color: #a0d3e8;
      border-color: #61b6d9;
      color: #333333;
      cursor: default;
      opacity: 0.7;
      box-shadow: none; }
      button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
        background-color: #61b6d9; }
      button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
        color: #FFFFFF; }
      button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
        background-color: #a0d3e8; }

button::-moz-focus-inner {
  border: 0;
  padding: 0; }

@media only screen and (min-width: 48em) {
  button, .button {
    display: inline-block; } }

/* Standard Forms */
form {
  margin: 0 0 1rem; }

/* Using forms within rows, we need to set some defaults */
form .row .row {
  margin: 0 -0.5rem; }
  form .row .row .column,
  form .row .row .columns {
    padding: 0 0.5rem; }
  form .row .row.collapse {
    margin: 0; }
    form .row .row.collapse .column,
    form .row .row.collapse .columns {
      padding: 0; }
    form .row .row.collapse input {
      -webkit-border-bottom-right-radius: 0;
      -webkit-border-top-right-radius: 0;
      border-bottom-right-radius: 0;
      border-top-right-radius: 0; }

form .row input.column,
form .row input.columns,
form .row textarea.column,
form .row textarea.columns {
  padding-left: 0.5rem; }

/* Label Styles */
label {
  font-size: 0.875rem;
  color: #4d4d4d;
  cursor: pointer;
  display: block;
  font-weight: normal;
  line-height: 1.5;
  margin-bottom: 0;
  /* Styles for required inputs */ }
  label.right {
    float: none !important;
    text-align: right; }
  label.inline {
    margin: 0 0 1rem 0;
    padding: 0.5625rem 0; }
  label small {
    text-transform: capitalize;
    color: #676767; }

/* Attach elements to the beginning or end of an input */
.prefix,
.postfix {
  display: block;
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  border-style: solid;
  border-width: 1px;
  overflow: hidden;
  font-size: 0.875rem;
  height: 2.3125rem;
  line-height: 2.3125rem; }

/* Adjust padding, alignment and radius if pre/post element is a button */
.postfix.button {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  line-height: 2.125rem;
  border: none; }

.prefix.button {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  line-height: 2.125rem;
  border: none; }

.prefix.button.radius {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px; }

.postfix.button.radius {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px; }

.prefix.button.round {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 1000px;
  -webkit-border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border-top-left-radius: 1000px; }

.postfix.button.round {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 1000px;
  -webkit-border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  border-top-right-radius: 1000px; }

/* Separate prefix and postfix styles when on span or label so buttons keep their own */
span.prefix, label.prefix {
  background: #f2f2f2;
  border-right: none;
  color: #333333;
  border-color: #cccccc; }

span.postfix, label.postfix {
  background: #f2f2f2;
  border-left: none;
  color: #333333;
  border-color: #cccccc; }

/* We use this to get basic styling on all basic form elements */
input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="color"],
textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  background-color: #FFFFFF;
  font-family: inherit;
  border-style: solid;
  border-width: 1px;
  border-color: #cccccc;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.75);
  display: block;
  font-size: 0.875rem;
  margin: 0 0 1rem 0;
  padding: 0.5rem;
  height: 2.3125rem;
  width: 100%;
  box-sizing: border-box;
  transition: box-shadow 0.45s, border-color 0.45s ease-in-out; }
  input[type="text"]:focus,
  input[type="password"]:focus,
  input[type="date"]:focus,
  input[type="datetime"]:focus,
  input[type="datetime-local"]:focus,
  input[type="month"]:focus,
  input[type="week"]:focus,
  input[type="email"]:focus,
  input[type="number"]:focus,
  input[type="search"]:focus,
  input[type="tel"]:focus,
  input[type="time"]:focus,
  input[type="url"]:focus,
  input[type="color"]:focus,
  textarea:focus {
    box-shadow: 0 0 5px #999999;
    border-color: #999999; }
  input[type="text"]:focus,
  input[type="password"]:focus,
  input[type="date"]:focus,
  input[type="datetime"]:focus,
  input[type="datetime-local"]:focus,
  input[type="month"]:focus,
  input[type="week"]:focus,
  input[type="email"]:focus,
  input[type="number"]:focus,
  input[type="search"]:focus,
  input[type="tel"]:focus,
  input[type="time"]:focus,
  input[type="url"]:focus,
  input[type="color"]:focus,
  textarea:focus {
    background: #fafafa;
    border-color: #999999;
    outline: none; }
  input[type="text"]:disabled,
  input[type="password"]:disabled,
  input[type="date"]:disabled,
  input[type="datetime"]:disabled,
  input[type="datetime-local"]:disabled,
  input[type="month"]:disabled,
  input[type="week"]:disabled,
  input[type="email"]:disabled,
  input[type="number"]:disabled,
  input[type="search"]:disabled,
  input[type="tel"]:disabled,
  input[type="time"]:disabled,
  input[type="url"]:disabled,
  input[type="color"]:disabled,
  textarea:disabled {
    background-color: #DDDDDD;
    cursor: default; }
  input[type="text"][disabled], input[type="text"][readonly],
  fieldset[disabled] input[type="text"],
  input[type="password"][disabled],
  input[type="password"][readonly],
  fieldset[disabled]
  input[type="password"],
  input[type="date"][disabled],
  input[type="date"][readonly],
  fieldset[disabled]
  input[type="date"],
  input[type="datetime"][disabled],
  input[type="datetime"][readonly],
  fieldset[disabled]
  input[type="datetime"],
  input[type="datetime-local"][disabled],
  input[type="datetime-local"][readonly],
  fieldset[disabled]
  input[type="datetime-local"],
  input[type="month"][disabled],
  input[type="month"][readonly],
  fieldset[disabled]
  input[type="month"],
  input[type="week"][disabled],
  input[type="week"][readonly],
  fieldset[disabled]
  input[type="week"],
  input[type="email"][disabled],
  input[type="email"][readonly],
  fieldset[disabled]
  input[type="email"],
  input[type="number"][disabled],
  input[type="number"][readonly],
  fieldset[disabled]
  input[type="number"],
  input[type="search"][disabled],
  input[type="search"][readonly],
  fieldset[disabled]
  input[type="search"],
  input[type="tel"][disabled],
  input[type="tel"][readonly],
  fieldset[disabled]
  input[type="tel"],
  input[type="time"][disabled],
  input[type="time"][readonly],
  fieldset[disabled]
  input[type="time"],
  input[type="url"][disabled],
  input[type="url"][readonly],
  fieldset[disabled]
  input[type="url"],
  input[type="color"][disabled],
  input[type="color"][readonly],
  fieldset[disabled]
  input[type="color"],
  textarea[disabled],
  textarea[readonly],
  fieldset[disabled]
  textarea {
    background-color: #DDDDDD;
    cursor: default; }
  input[type="text"].radius,
  input[type="password"].radius,
  input[type="date"].radius,
  input[type="datetime"].radius,
  input[type="datetime-local"].radius,
  input[type="month"].radius,
  input[type="week"].radius,
  input[type="email"].radius,
  input[type="number"].radius,
  input[type="search"].radius,
  input[type="tel"].radius,
  input[type="time"].radius,
  input[type="url"].radius,
  input[type="color"].radius,
  textarea.radius {
    border-radius: 3px; }

form .row .prefix-radius.row.collapse input,
form .row .prefix-radius.row.collapse textarea,
form .row .prefix-radius.row.collapse select {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px; }

form .row .prefix-radius.row.collapse .prefix {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px; }

form .row .postfix-radius.row.collapse input,
form .row .postfix-radius.row.collapse textarea,
form .row .postfix-radius.row.collapse select {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px; }

form .row .postfix-radius.row.collapse .postfix {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px; }

form .row .prefix-round.row.collapse input,
form .row .prefix-round.row.collapse textarea,
form .row .prefix-round.row.collapse select {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 1000px;
  -webkit-border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  border-top-right-radius: 1000px; }

form .row .prefix-round.row.collapse .prefix {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 1000px;
  -webkit-border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border-top-left-radius: 1000px; }

form .row .postfix-round.row.collapse input,
form .row .postfix-round.row.collapse textarea,
form .row .postfix-round.row.collapse select {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 1000px;
  -webkit-border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border-top-left-radius: 1000px; }

form .row .postfix-round.row.collapse .postfix {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 1000px;
  -webkit-border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  border-top-right-radius: 1000px; }

input[type="submit"] {
  -webkit-appearance: none;
  -webkit-border-radius: 0px; }

/* Respect enforced amount of rows for textarea */
textarea[rows] {
  height: auto; }

/* Not allow resize out of parent */
textarea {
  max-width: 100%; }

/* Add height value for select elements to match text input height */
select {
  -webkit-appearance: none !important;
  -webkit-border-radius: 0px;
  background-color: #FAFAFA;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+);
  background-position: 100% center;
  background-repeat: no-repeat;
  border-style: solid;
  border-width: 1px;
  border-color: #cccccc;
  padding: 0.5rem;
  font-size: 0.875rem;
  font-family: Arial;
  color: rgba(0, 0, 0, 0.75);
  line-height: normal;
  border-radius: 0;
  height: 2.3125rem; }
  select::-ms-expand {
    display: none; }
  select.radius {
    border-radius: 3px; }
  select:hover {
    background-color: #f3f3f3;
    border-color: #999999; }
  select:disabled {
    background-color: #DDDDDD;
    cursor: default; }

/* Adjust margin for form elements below */
input[type="file"],
input[type="checkbox"],
input[type="radio"],
select {
  margin: 0 0 1rem 0; }

input[type="checkbox"] + label,
input[type="radio"] + label {
  display: inline-block;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
  vertical-align: baseline; }

/* Normalize file input width */
input[type="file"] {
  width: 100%; }

/* HTML5 Number spinners settings */
/* We add basic fieldset styling */
fieldset {
  border: 1px solid #DDDDDD;
  padding: 1.25rem;
  margin: 1.125rem 0; }
  fieldset legend {
    font-weight: bold;
    background: #FFFFFF;
    padding: 0 0.1875rem;
    margin: 0;
    margin-left: -0.1875rem; }

/* Error Handling */
[data-abide] .error small.error, [data-abide] .error span.error, [data-abide] span.error, [data-abide] small.error {
  display: block;
  padding: 0.375rem 0.5625rem 0.5625rem;
  margin-top: -1px;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: normal;
  font-style: italic;
  background: #f04124;
  color: #FFFFFF; }

[data-abide] span.error, [data-abide] small.error {
  display: none; }

span.error, small.error {
  display: block;
  padding: 0.375rem 0.5625rem 0.5625rem;
  margin-top: -1px;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: normal;
  font-style: italic;
  background: #f04124;
  color: #FFFFFF; }

.error input,
.error textarea,
.error select {
  margin-bottom: 0; }

.error input[type="checkbox"],
.error input[type="radio"] {
  margin-bottom: 1rem; }

.error label,
.error label.error {
  color: #f04124; }

.error small.error {
  display: block;
  padding: 0.375rem 0.5625rem 0.5625rem;
  margin-top: -1px;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: normal;
  font-style: italic;
  background: #f04124;
  color: #FFFFFF; }

.error > label > small {
  color: #676767;
  background: transparent;
  padding: 0;
  text-transform: capitalize;
  font-style: normal;
  font-size: 60%;
  margin: 0;
  display: inline; }

.error span.error-message {
  display: block; }

input.error,
textarea.error,
select.error {
  margin-bottom: 0; }

label.error {
  color: #f04124; }

meta.foundation-mq-topbar {
  font-family: "/only screen and (min-width:60em)/";
  width: 48em; }

/* Wrapped around .top-bar to contain to grid width */
.contain-to-grid {
  width: 100%;
  background: transparent; }
  .contain-to-grid .top-bar {
    margin-bottom: 0; }

.fixed {
  width: 100%;
  left: 0;
  position: fixed;
  top: 0;
  z-index: 99; }
  .fixed.expanded:not(.top-bar) {
    overflow-y: auto;
    height: auto;
    width: 100%;
    max-height: 100%; }
    .fixed.expanded:not(.top-bar) .title-area {
      position: fixed;
      width: 100%;
      z-index: 99; }
    .fixed.expanded:not(.top-bar) .top-bar-section {
      z-index: 98;
      margin-top: 45px; }

.top-bar {
  overflow: hidden;
  height: 45px;
  line-height: 45px;
  position: relative;
  background: transparent;
  margin-bottom: 0; }
  .top-bar ul {
    margin-bottom: 0;
    list-style: none; }
  .top-bar .row {
    max-width: none; }
  .top-bar form,
  .top-bar input {
    margin-bottom: 0; }
  .top-bar input {
    height: 1.8rem;
    padding-top: .35rem;
    padding-bottom: .35rem;
    font-size: 0.75rem; }
  .top-bar .button, .top-bar button {
    padding-top: 0.4125rem;
    padding-bottom: 0.4125rem;
    margin-bottom: 0;
    font-size: 0.75rem; }
    @media only screen and (max-width: 66em) {
      .top-bar .button, .top-bar button {
        position: relative;
        top: -1px; } }
  .top-bar .title-area {
    position: relative;
    margin: 0; }
  .top-bar .name {
    height: 45px;
    margin: 0;
    font-size: 16px; }
    .top-bar .name h1 {
      line-height: 45px;
      font-size: 1.0625rem;
      margin: 0; }
      .top-bar .name h1 a {
        font-weight: normal;
        color: #6f798c;
        width: 75%;
        display: block;
        padding: 0 15px; }
  .top-bar .toggle-topbar {
    position: absolute;
    right: 0;
    top: 0; }
    .top-bar .toggle-topbar a {
      color: #6f798c;
      text-transform: uppercase;
      font-size: 0.8125rem;
      font-weight: bold;
      position: relative;
      display: block;
      padding: 0 15px;
      height: 45px;
      line-height: 45px; }
    .top-bar .toggle-topbar.menu-icon {
      top: 50%;
      margin-top: -16px; }
      .top-bar .toggle-topbar.menu-icon a {
        height: 34px;
        line-height: 33px;
        padding: 0 40px 0 15px;
        color: #fff;
        position: relative; }
        .top-bar .toggle-topbar.menu-icon a span::after {
          content: "";
          position: absolute;
          display: block;
          height: 0;
          top: 50%;
          margin-top: -8px;
          right: 15px;
          box-shadow: 0 0px 0 1px #fff, 0 7px 0 1px #fff, 0 14px 0 1px #fff;
          width: 16px; }
        .top-bar .toggle-topbar.menu-icon a span:hover:after {
          box-shadow: 0 0px 0 1px "", 0 7px 0 1px "", 0 14px 0 1px ""; }
  .top-bar.expanded {
    height: auto;
    background: transparent; }
    .top-bar.expanded .title-area {
      background: transparent; }
    .top-bar.expanded .toggle-topbar a {
      color: #888; }
      .top-bar.expanded .toggle-topbar a span::after {
        box-shadow: 0 0px 0 1px #888, 0 7px 0 1px #888, 0 14px 0 1px #888; }

.top-bar-section {
  left: 0;
  position: relative;
  width: auto;
  transition: left 300ms ease-out; }
  .top-bar-section ul {
    padding: 0;
    width: 100%;
    height: auto;
    display: block;
    font-size: 16px;
    margin: 0; }
  .top-bar-section .divider,
  .top-bar-section [role="separator"] {
    border-top: solid 1px transparent;
    clear: both;
    height: 1px;
    width: 100%; }
  .top-bar-section ul li {
    background: transparent; }
    .top-bar-section ul li > a {
      display: block;
      width: 100%;
      color: #6f798c;
      padding: 12px 0 12px 0;
      padding-left: 15px;
      font-family: Arial;
      font-size: 0.8125rem;
      font-weight: normal;
      text-transform: uppercase; }
      .top-bar-section ul li > a.button {
        font-size: 0.8125rem;
        padding-right: 15px;
        padding-left: 15px;
        background-color: #2c4457;
        border-color: #233646;
        color: #FFFFFF; }
        .top-bar-section ul li > a.button:hover, .top-bar-section ul li > a.button:focus {
          background-color: #233646; }
        .top-bar-section ul li > a.button:hover, .top-bar-section ul li > a.button:focus {
          color: #FFFFFF; }
      .top-bar-section ul li > a.button.secondary {
        background-color: #6f798c;
        border-color: #596170;
        color: #FFFFFF; }
        .top-bar-section ul li > a.button.secondary:hover, .top-bar-section ul li > a.button.secondary:focus {
          background-color: #596170; }
        .top-bar-section ul li > a.button.secondary:hover, .top-bar-section ul li > a.button.secondary:focus {
          color: #FFFFFF; }
      .top-bar-section ul li > a.button.success {
        background-color: #43AC6A;
        border-color: #368a55;
        color: #FFFFFF; }
        .top-bar-section ul li > a.button.success:hover, .top-bar-section ul li > a.button.success:focus {
          background-color: #368a55; }
        .top-bar-section ul li > a.button.success:hover, .top-bar-section ul li > a.button.success:focus {
          color: #FFFFFF; }
      .top-bar-section ul li > a.button.alert {
        background-color: #f04124;
        border-color: #cf2a0e;
        color: #FFFFFF; }
        .top-bar-section ul li > a.button.alert:hover, .top-bar-section ul li > a.button.alert:focus {
          background-color: #cf2a0e; }
        .top-bar-section ul li > a.button.alert:hover, .top-bar-section ul li > a.button.alert:focus {
          color: #FFFFFF; }
      .top-bar-section ul li > a.button.warning {
        background-color: #f08a24;
        border-color: #cf6e0e;
        color: #FFFFFF; }
        .top-bar-section ul li > a.button.warning:hover, .top-bar-section ul li > a.button.warning:focus {
          background-color: #cf6e0e; }
        .top-bar-section ul li > a.button.warning:hover, .top-bar-section ul li > a.button.warning:focus {
          color: #FFFFFF; }
    .top-bar-section ul li > button {
      font-size: 0.8125rem;
      padding-right: 15px;
      padding-left: 15px;
      background-color: #2c4457;
      border-color: #233646;
      color: #FFFFFF; }
      .top-bar-section ul li > button:hover, .top-bar-section ul li > button:focus {
        background-color: #233646; }
      .top-bar-section ul li > button:hover, .top-bar-section ul li > button:focus {
        color: #FFFFFF; }
      .top-bar-section ul li > button.secondary {
        background-color: #6f798c;
        border-color: #596170;
        color: #FFFFFF; }
        .top-bar-section ul li > button.secondary:hover, .top-bar-section ul li > button.secondary:focus {
          background-color: #596170; }
        .top-bar-section ul li > button.secondary:hover, .top-bar-section ul li > button.secondary:focus {
          color: #FFFFFF; }
      .top-bar-section ul li > button.success {
        background-color: #43AC6A;
        border-color: #368a55;
        color: #FFFFFF; }
        .top-bar-section ul li > button.success:hover, .top-bar-section ul li > button.success:focus {
          background-color: #368a55; }
        .top-bar-section ul li > button.success:hover, .top-bar-section ul li > button.success:focus {
          color: #FFFFFF; }
      .top-bar-section ul li > button.alert {
        background-color: #f04124;
        border-color: #cf2a0e;
        color: #FFFFFF; }
        .top-bar-section ul li > button.alert:hover, .top-bar-section ul li > button.alert:focus {
          background-color: #cf2a0e; }
        .top-bar-section ul li > button.alert:hover, .top-bar-section ul li > button.alert:focus {
          color: #FFFFFF; }
      .top-bar-section ul li > button.warning {
        background-color: #f08a24;
        border-color: #cf6e0e;
        color: #FFFFFF; }
        .top-bar-section ul li > button.warning:hover, .top-bar-section ul li > button.warning:focus {
          background-color: #cf6e0e; }
        .top-bar-section ul li > button.warning:hover, .top-bar-section ul li > button.warning:focus {
          color: #FFFFFF; }
    .top-bar-section ul li:hover:not(.has-form) > a {
      background-color: #555555;
      background: transparent;
      color: #6f798c; }
    .top-bar-section ul li.active > a {
      background: transparent;
      color: #bd814d; }
      .top-bar-section ul li.active > a:hover {
        background: transparent;
        color: #bd814d; }
  .top-bar-section .has-form {
    padding: 15px; }
  .top-bar-section .has-dropdown {
    position: relative; }
    .top-bar-section .has-dropdown > a:after {
      content: "";
      display: block;
      width: 0;
      height: 0;
      border: inset 5px;
      border-color: transparent transparent transparent rgba(255, 255, 255, 0.4);
      border-left-style: solid;
      margin-right: 15px;
      margin-top: -4.5px;
      position: absolute;
      top: 50%;
      right: 0; }
    .top-bar-section .has-dropdown.moved {
      position: static; }
      .top-bar-section .has-dropdown.moved > .dropdown {
        display: block;
        position: static !important;
        height: auto;
        width: auto;
        overflow: visible;
        clip: auto;
        position: absolute !important;
        width: 100%; }
      .top-bar-section .has-dropdown.moved > a:after {
        display: none; }
  .top-bar-section .dropdown {
    padding: 0;
    position: absolute;
    left: 100%;
    top: 0;
    z-index: 99;
    display: block;
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px); }
    .top-bar-section .dropdown li {
      width: 100%;
      height: auto; }
      .top-bar-section .dropdown li a {
        font-weight: normal;
        padding: 8px 15px; }
        .top-bar-section .dropdown li a.parent-link {
          font-weight: normal; }
      .top-bar-section .dropdown li.title h5, .top-bar-section .dropdown li.parent-link {
        margin-bottom: 0;
        margin-top: 0;
        font-size: 1.125rem; }
        .top-bar-section .dropdown li.title h5 a, .top-bar-section .dropdown li.parent-link a {
          color: #6f798c;
          display: block; }
          .top-bar-section .dropdown li.title h5 a:hover, .top-bar-section .dropdown li.parent-link a:hover {
            background: none; }
      .top-bar-section .dropdown li.has-form {
        padding: 8px 15px; }
      .top-bar-section .dropdown li .button, .top-bar-section .dropdown li button {
        top: auto; }
    .top-bar-section .dropdown label {
      padding: 8px 15px 2px;
      margin-bottom: 0;
      text-transform: uppercase;
      color: #777;
      font-weight: bold;
      font-size: 0.625rem; }

.js-generated {
  display: block; }

@media only screen and (min-width: 60em) {
  .top-bar {
    background: transparent;
    overflow: visible; }
    .top-bar:before, .top-bar:after {
      content: " ";
      display: table; }
    .top-bar:after {
      clear: both; }
    .top-bar .toggle-topbar {
      display: none; }
    .top-bar .title-area {
      float: left; }
    .top-bar .name h1 a {
      width: auto; }
    .top-bar input,
    .top-bar .button,
    .top-bar button {
      font-size: 0.875rem;
      position: relative;
      top: 7px; }
    .top-bar.expanded {
      background: transparent; }
  .contain-to-grid .top-bar {
    max-width: 1280px;
    margin: 0 auto;
    margin-bottom: 0; }
  .top-bar-section {
    transition: none 0 0;
    left: 0 !important; }
    .top-bar-section ul {
      width: auto;
      height: auto !important;
      display: inline; 
      width: 100%;
    }
      .top-bar-section ul li {
        float: left;
        flex-grow: 1; }
        .top-bar-section ul li .js-generated {
          display: none; }
    .top-bar-section li.hover > a:not(.button) {
      background-color: #555555;
      background: transparent;
      color: #6f798c; }
    .top-bar-section li:not(.has-form) a:not(.button) {
      padding: 0 15px;
      line-height: 45px;
      background: transparent; }
      .top-bar-section li:not(.has-form) a:not(.button):hover {
        background-color: #555555;
        background: transparent; }
    .top-bar-section li.active:not(.has-form) a:not(.button) {
      padding: 0 15px;
      line-height: 45px;
      color: #bd814d;
      background: transparent; }
      .top-bar-section li.active:not(.has-form) a:not(.button):hover {
        background: transparent;
        color: #bd814d; }
    .top-bar-section .has-dropdown > a {
      padding-right: 35px !important; }
      .top-bar-section .has-dropdown > a:after {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border: inset 5px;
        border-color: rgba(255, 255, 255, 0.4) transparent transparent transparent;
        border-top-style: solid;
        margin-top: -2.5px;
        top: 22.5px; }
    .top-bar-section .has-dropdown.moved {
      position: relative; }
      .top-bar-section .has-dropdown.moved > .dropdown {
        display: block;
        position: absolute !important;
        height: 1px;
        width: 1px;
        overflow: hidden;
        clip: rect(1px, 1px, 1px, 1px); }
    .top-bar-section .has-dropdown.hover > .dropdown, .top-bar-section .has-dropdown.not-click:hover > .dropdown {
      display: block;
      position: static !important;
      height: auto;
      width: auto;
      overflow: visible;
      clip: auto;
      position: absolute !important; }
    .top-bar-section .has-dropdown > a:focus + .dropdown {
      display: block;
      position: static !important;
      height: auto;
      width: auto;
      overflow: visible;
      clip: auto;
      position: absolute !important; }
    .top-bar-section .has-dropdown .dropdown li.has-dropdown > a:after {
      border: none;
      content: "\00bb";
      top: 1rem;
      margin-top: -1px;
      right: 5px;
      line-height: 1.2; }
    .top-bar-section .dropdown {
      left: 0;
      top: auto;
      background: transparent;
      min-width: 100%; }
      .top-bar-section .dropdown li a {
        color: #6f798c;
        line-height: 45px;
        white-space: nowrap;
        padding: 12px 15px;
        background: white; }
      .top-bar-section .dropdown li:not(.has-form):not(.active) > a:not(.button) {
        color: #6f798c;
        background: white; }
      .top-bar-section .dropdown li:not(.has-form):not(.active):hover > a:not(.button) {
        color: #6f798c;
        background-color: #555555;
        background: transparent; }
      .top-bar-section .dropdown li label {
        white-space: nowrap;
        background: #333; }
      .top-bar-section .dropdown li .dropdown {
        left: 100%;
        top: 0; }
    .top-bar-section > ul > .divider,
    .top-bar-section > ul > [role="separator"] {
      border-bottom: none;
      border-top: none;
      border-right: solid 1px rgba(33, 33, 33, 0);
      clear: none;
      height: 45px;
      width: 0; }
    .top-bar-section .has-form {
      background: transparent;
      padding: 0 15px;
      height: 45px; }
    .top-bar-section .right li .dropdown {
      left: auto;
      right: 0; }
      .top-bar-section .right li .dropdown li .dropdown {
        right: 100%; }
    .top-bar-section .left li .dropdown {
      right: auto;
      left: 0; }
      .top-bar-section .left li .dropdown li .dropdown {
        left: 100%; }
  .no-js .top-bar-section ul li:hover > a {
    background-color: #555555;
    background: transparent;
    color: #6f798c; }
  .no-js .top-bar-section ul li:active > a {
    background: transparent;
    color: #bd814d; }
  .no-js .top-bar-section .has-dropdown:hover > .dropdown {
    display: block;
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
    position: absolute !important; }
  .no-js .top-bar-section .has-dropdown > a:focus + .dropdown {
    display: block;
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
    position: absolute !important; } }

meta.foundation-version {
  font-family: "/{{VERSION}}/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:48em)/";
  width: 48em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:60em)/";
  width: 60em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #505050;
  padding: 0;
  margin: 0;
  font-family: Arial;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto; }

a:hover {
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

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

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

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

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

@media only screen and (max-width: 66em) {
  .small-only-text-left {
    text-align: left !important; }
  .small-only-text-right {
    text-align: right !important; }
  .small-only-text-center {
    text-align: center !important; }
  .small-only-text-justify {
    text-align: justify !important; } }

@media only screen {
  .small-text-left {
    text-align: left !important; }
  .small-text-right {
    text-align: right !important; }
  .small-text-center {
    text-align: center !important; }
  .small-text-justify {
    text-align: justify !important; } }

@media only screen and (min-width: 48em) and (max-width: 64em) {
  .medium-only-text-left {
    text-align: left !important; }
  .medium-only-text-right {
    text-align: right !important; }
  .medium-only-text-center {
    text-align: center !important; }
  .medium-only-text-justify {
    text-align: justify !important; } }

@media only screen and (min-width: 48em) {
  .medium-text-left {
    text-align: left !important; }
  .medium-text-right {
    text-align: right !important; }
  .medium-text-center {
    text-align: center !important; }
  .medium-text-justify {
    text-align: justify !important; } }

@media only screen and (min-width: 60em) and (max-width: 90em) {
  .large-only-text-left {
    text-align: left !important; }
  .large-only-text-right {
    text-align: right !important; }
  .large-only-text-center {
    text-align: center !important; }
  .large-only-text-justify {
    text-align: justify !important; } }

@media only screen and (min-width: 60em) {
  .large-text-left {
    text-align: left !important; }
  .large-text-right {
    text-align: right !important; }
  .large-text-center {
    text-align: center !important; }
  .large-text-justify {
    text-align: justify !important; } }

@media only screen and (min-width: 90.063em) and (max-width: 120em) {
  .xlarge-only-text-left {
    text-align: left !important; }
  .xlarge-only-text-right {
    text-align: right !important; }
  .xlarge-only-text-center {
    text-align: center !important; }
  .xlarge-only-text-justify {
    text-align: justify !important; } }

@media only screen and (min-width: 90.063em) {
  .xlarge-text-left {
    text-align: left !important; }
  .xlarge-text-right {
    text-align: right !important; }
  .xlarge-text-center {
    text-align: center !important; }
  .xlarge-text-justify {
    text-align: justify !important; } }

@media only screen and (min-width: 120.063em) and (max-width: 999999999999) {
  .xxlarge-only-text-left {
    text-align: left !important; }
  .xxlarge-only-text-right {
    text-align: right !important; }
  .xxlarge-only-text-center {
    text-align: center !important; }
  .xxlarge-only-text-justify {
    text-align: justify !important; } }

@media only screen and (min-width: 120.063em) {
  .xxlarge-text-left {
    text-align: left !important; }
  .xxlarge-text-right {
    text-align: right !important; }
  .xxlarge-text-center {
    text-align: center !important; }
  .xxlarge-text-justify {
    text-align: justify !important; } }

/* Typography resets */
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0; }

/* Default Link Styles */
a {
  color: #1F4F82;
  text-decoration: none;
  line-height: inherit; }
  a:hover, a:focus {
    color: #1b4470; }
  a img {
    border: none; }

/* Default paragraph styles */
p {
  font-family: inherit;
  font-weight: normal;
  font-size: 0.8125rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  text-rendering: optimizeLegibility; }
  p.lead {
    font-size: 1.03125rem;
    line-height: 1.6; }
  p aside {
    font-size: 0.875rem;
    line-height: 1.35;
    font-style: italic; }

/* Default header styles */
h1, h2, h3, h4, h5, h6 {
  font-family: RobotoThin, Helvetica, Arial;
  font-weight: normal;
  font-style: normal;
  color: #2c4457;
  text-rendering: optimizeLegibility;
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  line-height: 1.4; }
  h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
    font-size: 60%;
    color: #5b89ac;
    line-height: 0; }

h1 {
  font-size: 1.125rem; }

h2 {
  font-size: 0.75rem; }

h3 {
  font-size: 0.875rem; }

h4 {
  font-size: 0.6875rem; }

h5 {
  font-size: 0.8125rem; }

h6 {
  font-size: 0.6875rem; }

.subheader {
  line-height: 1.4;
  color: #5b89ac;
  font-weight: normal;
  margin-top: 0.2rem;
  margin-bottom: 0.5rem; }

hr {
  border: solid #DDDDDD;
  border-width: 1px 0 0;
  clear: both;
  margin: 1.25rem 0 1.1875rem;
  height: 0; }

/* Helpful Typography Defaults */
em,
i {
  font-style: italic;
  line-height: inherit; }

strong,
b {
  font-weight: bold;
  line-height: inherit; }

small {
  font-size: 60%;
  line-height: inherit; }

code {
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #333333;
  background-color: #d4d7dd;
  border-width: 1px;
  border-style: solid;
  border-color: #bcc0ca;
  padding: 0.125rem 0.3125rem 0.0625rem; }

/* Lists */
ul,
ol,
dl {
  font-size: 0.8125rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  list-style-position: outside;
  font-family: inherit; }

ul {
  margin-left: 1.1rem; }
  ul.no-bullet {
    margin-left: 0; }
    ul.no-bullet li ul,
    ul.no-bullet li ol {
      margin-left: 1.25rem;
      margin-bottom: 0;
      list-style: none; }

/* Unordered Lists */
ul li ul,
ul li ol {
  margin-left: 1.25rem;
  margin-bottom: 0; }

ul.square li ul, ul.circle li ul, ul.disc li ul {
  list-style: inherit; }

ul.square {
  list-style-type: square;
  margin-left: 1.1rem; }

ul.circle {
  list-style-type: circle;
  margin-left: 1.1rem; }

ul.disc {
  list-style-type: disc;
  margin-left: 1.1rem; }

ul.no-bullet {
  list-style: none; }

/* Ordered Lists */
ol {
  margin-left: 1.4rem; }
  ol li ul,
  ol li ol {
    margin-left: 1.25rem;
    margin-bottom: 0; }

/* Definition Lists */
dl dt {
  margin-bottom: 0.3rem;
  font-weight: bold; }

dl dd {
  margin-bottom: 0.75rem; }

/* Abbreviations */
abbr,
acronym {
  text-transform: uppercase;
  font-size: 90%;
  color: #505050;
  cursor: help; }

abbr {
  text-transform: none; }
  abbr[title] {
    border-bottom: 1px dotted #DDDDDD; }

/* Blockquotes */
blockquote {
  margin: 0 0 1.25rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #DDDDDD; }
  blockquote cite {
    display: block;
    font-size: 0.8125rem;
    color: #497191; }
    blockquote cite:before {
      content: "\2014 \0020"; }
    blockquote cite a,
    blockquote cite a:visited {
      color: #497191; }

blockquote,
blockquote p {
  line-height: 1.6;
  color: #5b89ac; }

/* Microformats */
.vcard {
  display: inline-block;
  margin: 0 0 1.25rem 0;
  border: 1px solid #DDDDDD;
  padding: 0.625rem 0.75rem; }
  .vcard li {
    margin: 0;
    display: block; }
  .vcard .fn {
    font-weight: bold;
    font-size: 0.9375rem; }

.vevent .summary {
  font-weight: bold; }

.vevent abbr {
  cursor: default;
  text-decoration: none;
  font-weight: bold;
  border: none;
  padding: 0 0.0625rem; }

@media only screen and (min-width: 48em) {
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.4; }
  h1 {
    font-size: 1.75rem; }
  h2 {
    font-size: 1.375rem; }
  h3 {
    font-size: 1.1875rem; }
  h4 {
    font-size: 1rem; }
  h5 {
    font-size: 0.8125rem; }
  h6 {
    font-size: 0.6875rem; } }

/*
       * Print styles.
       *
       * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
       * Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com)
      */
.print-only {
  display: none !important; }

@media print {
  * {
    background: transparent !important;
    color: #000000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }
  pre,
  blockquote {
    border: 1px solid #999999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group;
    /* h5bp.com/t */ }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  @page {
    margin: 0.5cm; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .hide-on-print {
    display: none !important; }
  .print-only {
    display: block !important; }
  .hide-for-print {
    display: none !important; }
  .show-for-print {
    display: inherit !important; } }

meta.foundation-version {
  font-family: "/{{VERSION}}/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:48em)/";
  width: 48em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:60em)/";
  width: 60em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #505050;
  padding: 0;
  margin: 0;
  font-family: Arial;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto; }

a:hover {
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

meta.foundation-version {
  font-family: "/{{VERSION}}/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:48em)/";
  width: 48em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:60em)/";
  width: 60em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #505050;
  padding: 0;
  margin: 0;
  font-family: Arial;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto; }

a:hover {
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

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

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

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

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

@media only screen and (max-width: 66em) {
  .small-only-text-left {
    text-align: left !important; }
  .small-only-text-right {
    text-align: right !important; }
  .small-only-text-center {
    text-align: center !important; }
  .small-only-text-justify {
    text-align: justify !important; } }

@media only screen {
  .small-text-left {
    text-align: left !important; }
  .small-text-right {
    text-align: right !important; }
  .small-text-center {
    text-align: center !important; }
  .small-text-justify {
    text-align: justify !important; } }

@media only screen and (min-width: 48em) and (max-width: 64em) {
  .medium-only-text-left {
    text-align: left !important; }
  .medium-only-text-right {
    text-align: right !important; }
  .medium-only-text-center {
    text-align: center !important; }
  .medium-only-text-justify {
    text-align: justify !important; } }

@media only screen and (min-width: 48em) {
  .medium-text-left {
    text-align: left !important; }
  .medium-text-right {
    text-align: right !important; }
  .medium-text-center {
    text-align: center !important; }
  .medium-text-justify {
    text-align: justify !important; } }

@media only screen and (min-width: 60em) and (max-width: 90em) {
  .large-only-text-left {
    text-align: left !important; }
  .large-only-text-right {
    text-align: right !important; }
  .large-only-text-center {
    text-align: center !important; }
  .large-only-text-justify {
    text-align: justify !important; } }

@media only screen and (min-width: 60em) {
  .large-text-left {
    text-align: left !important; }
  .large-text-right {
    text-align: right !important; }
  .large-text-center {
    text-align: center !important; }
  .large-text-justify {
    text-align: justify !important; } }

@media only screen and (min-width: 90.063em) and (max-width: 120em) {
  .xlarge-only-text-left {
    text-align: left !important; }
  .xlarge-only-text-right {
    text-align: right !important; }
  .xlarge-only-text-center {
    text-align: center !important; }
  .xlarge-only-text-justify {
    text-align: justify !important; } }

@media only screen and (min-width: 90.063em) {
  .xlarge-text-left {
    text-align: left !important; }
  .xlarge-text-right {
    text-align: right !important; }
  .xlarge-text-center {
    text-align: center !important; }
  .xlarge-text-justify {
    text-align: justify !important; } }

@media only screen and (min-width: 120.063em) and (max-width: 999999999999) {
  .xxlarge-only-text-left {
    text-align: left !important; }
  .xxlarge-only-text-right {
    text-align: right !important; }
  .xxlarge-only-text-center {
    text-align: center !important; }
  .xxlarge-only-text-justify {
    text-align: justify !important; } }

@media only screen and (min-width: 120.063em) {
  .xxlarge-text-left {
    text-align: left !important; }
  .xxlarge-text-right {
    text-align: right !important; }
  .xxlarge-text-center {
    text-align: center !important; }
  .xxlarge-text-justify {
    text-align: justify !important; } }

/* Typography resets */
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0; }

/* Default Link Styles */
a {
  color: #1F4F82;
  text-decoration: none;
  line-height: inherit; }
  a:hover, a:focus {
    color: #1b4470; }
  a img {
    border: none; }

/* Default paragraph styles */
p {
  font-family: inherit;
  font-weight: normal;
  font-size: 0.8125rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  text-rendering: optimizeLegibility; }
  p.lead {
    font-size: 1.03125rem;
    line-height: 1.6; }
  p aside {
    font-size: 0.875rem;
    line-height: 1.35;
    font-style: italic; }

/* Default header styles */
h1, h2, h3, h4, h5, h6 {
  font-family: RobotoThin, Helvetica, Arial;
  font-weight: normal;
  font-style: normal;
  color: #2c4457;
  text-rendering: optimizeLegibility;
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  line-height: 1.4; }
  h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
    font-size: 60%;
    color: #5b89ac;
    line-height: 0; }

h1 {
  font-size: 1.125rem; }

h2 {
  font-size: 0.75rem; }

h3 {
  font-size: 0.875rem; }

h4 {
  font-size: 0.6875rem; }

h5 {
  font-size: 0.8125rem; }

h6 {
  font-size: 0.6875rem; }

.subheader {
  line-height: 1.4;
  color: #5b89ac;
  font-weight: normal;
  margin-top: 0.2rem;
  margin-bottom: 0.5rem; }

hr {
  border: solid #DDDDDD;
  border-width: 1px 0 0;
  clear: both;
  margin: 1.25rem 0 1.1875rem;
  height: 0; }

/* Helpful Typography Defaults */
em,
i {
  font-style: italic;
  line-height: inherit; }

strong,
b {
  font-weight: bold;
  line-height: inherit; }

small {
  font-size: 60%;
  line-height: inherit; }

code {
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #333333;
  background-color: #d4d7dd;
  border-width: 1px;
  border-style: solid;
  border-color: #bcc0ca;
  padding: 0.125rem 0.3125rem 0.0625rem; }

/* Lists */
ul,
ol,
dl {
  font-size: 0.8125rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  list-style-position: outside;
  font-family: inherit; }

ul {
  margin-left: 1.1rem; }
  ul.no-bullet {
    margin-left: 0; }
    ul.no-bullet li ul,
    ul.no-bullet li ol {
      margin-left: 1.25rem;
      margin-bottom: 0;
      list-style: none; }

/* Unordered Lists */
ul li ul,
ul li ol {
  margin-left: 1.25rem;
  margin-bottom: 0; }

ul.square li ul, ul.circle li ul, ul.disc li ul {
  list-style: inherit; }

ul.square {
  list-style-type: square;
  margin-left: 1.1rem; }

ul.circle {
  list-style-type: circle;
  margin-left: 1.1rem; }

ul.disc {
  list-style-type: disc;
  margin-left: 1.1rem; }

ul.no-bullet {
  list-style: none; }

/* Ordered Lists */
ol {
  margin-left: 1.4rem; }
  ol li ul,
  ol li ol {
    margin-left: 1.25rem;
    margin-bottom: 0; }

/* Definition Lists */
dl dt {
  margin-bottom: 0.3rem;
  font-weight: bold; }

dl dd {
  margin-bottom: 0.75rem; }

/* Abbreviations */
abbr,
acronym {
  text-transform: uppercase;
  font-size: 90%;
  color: #505050;
  cursor: help; }

abbr {
  text-transform: none; }
  abbr[title] {
    border-bottom: 1px dotted #DDDDDD; }

/* Blockquotes */
blockquote {
  margin: 0 0 1.25rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #DDDDDD; }
  blockquote cite {
    display: block;
    font-size: 0.8125rem;
    color: #497191; }
    blockquote cite:before {
      content: "\2014 \0020"; }
    blockquote cite a,
    blockquote cite a:visited {
      color: #497191; }

blockquote,
blockquote p {
  line-height: 1.6;
  color: #5b89ac; }

/* Microformats */
.vcard {
  display: inline-block;
  margin: 0 0 1.25rem 0;
  border: 1px solid #DDDDDD;
  padding: 0.625rem 0.75rem; }
  .vcard li {
    margin: 0;
    display: block; }
  .vcard .fn {
    font-weight: bold;
    font-size: 0.9375rem; }

.vevent .summary {
  font-weight: bold; }

.vevent abbr {
  cursor: default;
  text-decoration: none;
  font-weight: bold;
  border: none;
  padding: 0 0.0625rem; }

@media only screen and (min-width: 48em) {
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.4; }
  h1 {
    font-size: 1.75rem; }
  h2 {
    font-size: 1.375rem; }
  h3 {
    font-size: 1.1875rem; }
  h4 {
    font-size: 1rem; }
  h5 {
    font-size: 0.8125rem; }
  h6 {
    font-size: 0.6875rem; } }

/*
       * Print styles.
       *
       * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
       * Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com)
      */
.print-only {
  display: none !important; }

@media print {
  * {
    background: transparent !important;
    color: #000000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }
  pre,
  blockquote {
    border: 1px solid #999999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group;
    /* h5bp.com/t */ }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  @page {
    margin: 0.5cm; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .hide-on-print {
    display: none !important; }
  .print-only {
    display: block !important; }
  .hide-for-print {
    display: none !important; }
  .show-for-print {
    display: inherit !important; } }

.off-canvas-wrap {
  -webkit-backface-visibility: hidden;
  position: relative;
  width: 100%;
  overflow: hidden; }
  .off-canvas-wrap.move-right, .off-canvas-wrap.move-left {
    min-height: 100%;
    -webkit-overflow-scrolling: touch; }

.inner-wrap {
  -webkit-backface-visibility: hidden;
  position: relative;
  width: 100%;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease; }
  .inner-wrap:before, .inner-wrap:after {
    content: " ";
    display: table; }
  .inner-wrap:after {
    clear: both; }

.tab-bar {
  -webkit-backface-visibility: hidden;
  background: #333;
  color: #FFF;
  height: 2.8125rem;
  line-height: 2.8125rem;
  position: relative; }
  .tab-bar h1, .tab-bar h2, .tab-bar h3, .tab-bar h4, .tab-bar h5, .tab-bar h6 {
    color: #FFF;
    font-weight: bold;
    line-height: 2.8125rem;
    margin: 0; }
  .tab-bar h1, .tab-bar h2, .tab-bar h3, .tab-bar h4 {
    font-size: 0.8125rem; }

.left-small {
  width: 2.8125rem;
  height: 2.8125rem;
  position: absolute;
  top: 0;
  border-right: solid 1px #1a1a1a;
  left: 0; }

.right-small {
  width: 2.8125rem;
  height: 2.8125rem;
  position: absolute;
  top: 0;
  border-left: solid 1px #1a1a1a;
  right: 0; }

.tab-bar-section {
  padding: 0 0.625rem;
  position: absolute;
  text-align: center;
  height: 2.8125rem;
  top: 0; }
  @media only screen and (min-width: 48em) {
    .tab-bar-section.left, .tab-bar-section.right {
      text-align: left; } }
  .tab-bar-section.left {
    left: 0;
    right: 2.8125rem; }
  .tab-bar-section.right {
    left: 2.8125rem;
    right: 0; }
  .tab-bar-section.middle {
    left: 2.8125rem;
    right: 2.8125rem; }

.tab-bar .menu-icon {
  text-indent: 2.1875rem;
  width: 2.8125rem;
  height: 2.8125rem;
  display: block;
  padding: 0;
  color: #828c9e;
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0); }
  .tab-bar .menu-icon span::after {
    content: "";
    position: absolute;
    display: block;
    height: 0;
    top: 0.3125rem;
    left: 0.8125rem;
    box-shadow: 0 0px 0 1px #828c9e, 0 7px 0 1px #828c9e, 0 14px 0 1px #828c9e;
    width: 1rem; }
  .tab-bar .menu-icon span:hover:after {
    box-shadow: 0 0px 0 1px #586172, 0 7px 0 1px #586172, 0 14px 0 1px #586172; }

.left-off-canvas-menu {
  -webkit-backface-visibility: hidden;
  width: 250px;
  top: 0;
  bottom: 0;
  position: absolute;
  overflow-x: hidden;
  overflow-y: auto;
  background: #053964;
  z-index: 1001;
  box-sizing: content-box;
  transition: -webkit-transform 500ms ease 0s;
  transition: transform 500ms ease 0s;
  transition: transform 500ms ease 0s, -webkit-transform 500ms ease 0s;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -webkit-transform: translate3d(-100.5%, 0, 0);
  transform: translate3d(-100.5%, 0, 0);
  left: 0; }
  .left-off-canvas-menu * {
    -webkit-backface-visibility: hidden; }

.right-off-canvas-menu {
  -webkit-backface-visibility: hidden;
  width: 250px;
  top: 0;
  bottom: 0;
  position: absolute;
  overflow-x: hidden;
  overflow-y: auto;
  background: #053964;
  z-index: 1001;
  box-sizing: content-box;
  transition: -webkit-transform 500ms ease 0s;
  transition: transform 500ms ease 0s;
  transition: transform 500ms ease 0s, -webkit-transform 500ms ease 0s;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -webkit-transform: translate3d(100.5%, 0, 0);
  transform: translate3d(100.5%, 0, 0);
  right: 0; }
  .right-off-canvas-menu * {
    -webkit-backface-visibility: hidden; }

ul.off-canvas-list {
  list-style-type: none;
  padding: 0;
  margin: 0; }
  ul.off-canvas-list li label {
    display: block;
    padding: 0.3rem 0.9375rem;
    color: #e2e5e9;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: bold;
    background: #282c33;
    border-top: 1px solid #5e5e5e;
    border-bottom: none;
    margin: 0; }
  ul.off-canvas-list li a {
    display: block;
    padding: 0.66667rem;
    color: #828c9e;
    border-bottom: 1px solid #042b4b;
    transition: background 300ms ease; }
    ul.off-canvas-list li a:hover {
      background: #242424; }

.move-right > .inner-wrap {
  -webkit-transform: translate3d(250px, 0, 0);
  transform: translate3d(250px, 0, 0); }

.move-right .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  transition: background 300ms ease;
  cursor: pointer;
  box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  -webkit-tap-highlight-color: transparent; }
  @media only screen and (min-width: 48em) {
    .move-right .exit-off-canvas:hover {
      background: rgba(255, 255, 255, 0.05); } }

.move-left > .inner-wrap {
  -webkit-transform: translate3d(-250px, 0, 0);
  transform: translate3d(-250px, 0, 0); }

.move-left .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  transition: background 300ms ease;
  cursor: pointer;
  box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  -webkit-tap-highlight-color: transparent; }
  @media only screen and (min-width: 48em) {
    .move-left .exit-off-canvas:hover {
      background: rgba(255, 255, 255, 0.05); } }

.offcanvas-overlap .left-off-canvas-menu, .offcanvas-overlap .right-off-canvas-menu {
  -webkit-transform: none;
  transform: none;
  z-index: 1003; }

.offcanvas-overlap .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  transition: background 300ms ease;
  cursor: pointer;
  box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  -webkit-tap-highlight-color: transparent; }
  @media only screen and (min-width: 48em) {
    .offcanvas-overlap .exit-off-canvas:hover {
      background: rgba(255, 255, 255, 0.05); } }

.offcanvas-overlap-left .right-off-canvas-menu {
  -webkit-transform: none;
  transform: none;
  z-index: 1003; }

.offcanvas-overlap-left .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  transition: background 300ms ease;
  cursor: pointer;
  box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  -webkit-tap-highlight-color: transparent; }
  @media only screen and (min-width: 48em) {
    .offcanvas-overlap-left .exit-off-canvas:hover {
      background: rgba(255, 255, 255, 0.05); } }

.offcanvas-overlap-right .left-off-canvas-menu {
  -webkit-transform: none;
  transform: none;
  z-index: 1003; }

.offcanvas-overlap-right .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  transition: background 300ms ease;
  cursor: pointer;
  box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  -webkit-tap-highlight-color: transparent; }
  @media only screen and (min-width: 48em) {
    .offcanvas-overlap-right .exit-off-canvas:hover {
      background: rgba(255, 255, 255, 0.05); } }

.no-csstransforms .left-off-canvas-menu {
  left: -250px; }

.no-csstransforms .right-off-canvas-menu {
  right: -250px; }

.no-csstransforms .move-left > .inner-wrap {
  right: 250px; }

.no-csstransforms .move-right > .inner-wrap {
  left: 250px; }

.left-submenu {
  -webkit-backface-visibility: hidden;
  width: 250px;
  top: 0;
  bottom: 0;
  position: absolute;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: #053964;
  z-index: 1002;
  box-sizing: content-box;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  left: 0;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease; }
  .left-submenu * {
    -webkit-backface-visibility: hidden; }
  .left-submenu .back > a {
    padding: 0.3rem 0.9375rem;
    color: #e2e5e9;
    text-transform: uppercase;
    font-weight: bold;
    background: #444;
    border-top: 1px solid #5e5e5e;
    border-bottom: none;
    margin: 0; }
    .left-submenu .back > a:hover {
      background: #303030;
      border-top: 1px solid #424854;
      border-bottom: none; }
    .left-submenu .back > a:before {
      content: "\AB";
      margin-right: 0.5rem;
      display: inline; }
  .left-submenu.move-right {
    -webkit-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0); }

.right-submenu {
  -webkit-backface-visibility: hidden;
  width: 250px;
  top: 0;
  bottom: 0;
  position: absolute;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: #053964;
  z-index: 1002;
  box-sizing: content-box;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  right: 0;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease; }
  .right-submenu * {
    -webkit-backface-visibility: hidden; }
  .right-submenu .back > a {
    padding: 0.3rem 0.9375rem;
    color: #e2e5e9;
    text-transform: uppercase;
    font-weight: bold;
    background: #444;
    border-top: 1px solid #5e5e5e;
    border-bottom: none;
    margin: 0; }
    .right-submenu .back > a:hover {
      background: #303030;
      border-top: 1px solid #424854;
      border-bottom: none; }
    .right-submenu .back > a:after {
      content: "\BB";
      margin-left: 0.5rem;
      display: inline; }
  .right-submenu.move-left {
    -webkit-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0); }

.left-off-canvas-menu ul.off-canvas-list li.has-submenu > a:after {
  content: "\BB";
  margin-left: 0.5rem;
  display: inline; }

.right-off-canvas-menu ul.off-canvas-list li.has-submenu > a:before {
  content: "\AB";
  margin-right: 0.5rem;
  display: inline; }

meta.foundation-version {
  font-family: "/{{VERSION}}/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:48em)/";
  width: 48em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:60em)/";
  width: 60em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #505050;
  padding: 0;
  margin: 0;
  font-family: Arial;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  cursor: auto; }

a:hover {
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none !important;
  visibility: hidden; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

/* small displays */
@media only screen {
  .show-for-small-only, .show-for-small-up, .show-for-small, .show-for-small-down, .hide-for-medium-only, .hide-for-medium-up, .hide-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
    display: inherit !important; }
  .hide-for-small-only, .hide-for-small-up, .hide-for-small, .hide-for-small-down, .show-for-medium-only, .show-for-medium-up, .show-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
    display: none !important; }
  .visible-for-small-only, .visible-for-small-up, .visible-for-small, .visible-for-small-down, .hidden-for-medium-only, .hidden-for-medium-up, .hidden-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto; }
  .hidden-for-small-only, .hidden-for-small-up, .hidden-for-small, .hidden-for-small-down, .visible-for-medium-only, .visible-for-medium-up, .visible-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px); }
  table.show-for-small-only, table.show-for-small-up, table.show-for-small, table.show-for-small-down, table.hide-for-medium-only, table.hide-for-medium-up, table.hide-for-medium, table.show-for-medium-down, table.hide-for-large-only, table.hide-for-large-up, table.hide-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down {
    display: table !important; }
  thead.show-for-small-only, thead.show-for-small-up, thead.show-for-small, thead.show-for-small-down, thead.hide-for-medium-only, thead.hide-for-medium-up, thead.hide-for-medium, thead.show-for-medium-down, thead.hide-for-large-only, thead.hide-for-large-up, thead.hide-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down {
    display: table-header-group !important; }
  tbody.show-for-small-only, tbody.show-for-small-up, tbody.show-for-small, tbody.show-for-small-down, tbody.hide-for-medium-only, tbody.hide-for-medium-up, tbody.hide-for-medium, tbody.show-for-medium-down, tbody.hide-for-large-only, tbody.hide-for-large-up, tbody.hide-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down {
    display: table-row-group !important; }
  tr.show-for-small-only, tr.show-for-small-up, tr.show-for-small, tr.show-for-small-down, tr.hide-for-medium-only, tr.hide-for-medium-up, tr.hide-for-medium, tr.show-for-medium-down, tr.hide-for-large-only, tr.hide-for-large-up, tr.hide-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down {
    display: table-row !important; }
  th.show-for-small-only, td.show-for-small-only, th.show-for-small-up, td.show-for-small-up, th.show-for-small, td.show-for-small, th.show-for-small-down, td.show-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.hide-for-medium-up, td.hide-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.show-for-medium-down, td.show-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.hide-for-large-up, td.hide-for-large-up, th.hide-for-large, td.hide-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
    display: table-cell !important; } }

/* medium displays */
@media only screen and (min-width: 48em) {
  .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .show-for-medium-only, .show-for-medium-up, .show-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
    display: inherit !important; }
  .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .hide-for-medium-only, .hide-for-medium-up, .hide-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
    display: none !important; }
  .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .visible-for-medium-only, .visible-for-medium-up, .visible-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto; }
  .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .hidden-for-medium-only, .hidden-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px); }
  table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.show-for-medium-only, table.show-for-medium-up, table.show-for-medium, table.show-for-medium-down, table.hide-for-large-only, table.hide-for-large-up, table.hide-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down {
    display: table !important; }
  thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.show-for-medium-only, thead.show-for-medium-up, thead.show-for-medium, thead.show-for-medium-down, thead.hide-for-large-only, thead.hide-for-large-up, thead.hide-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down {
    display: table-header-group !important; }
  tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.show-for-medium-only, tbody.show-for-medium-up, tbody.show-for-medium, tbody.show-for-medium-down, tbody.hide-for-large-only, tbody.hide-for-large-up, tbody.hide-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down {
    display: table-row-group !important; }
  tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.show-for-medium-only, tr.show-for-medium-up, tr.show-for-medium, tr.show-for-medium-down, tr.hide-for-large-only, tr.hide-for-large-up, tr.hide-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down {
    display: table-row !important; }
  th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.show-for-medium-only, td.show-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.show-for-medium, td.show-for-medium, th.show-for-medium-down, td.show-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.hide-for-large-up, td.hide-for-large-up, th.hide-for-large, td.hide-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
    display: table-cell !important; } }

/* large displays */
@media only screen and (min-width: 60em) {
  .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
    display: inherit !important; }
  .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
    display: none !important; }
  .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto; }
  .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px); }
  table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.show-for-large-only, table.show-for-large-up, table.show-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down {
    display: table !important; }
  thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.show-for-large-only, thead.show-for-large-up, thead.show-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down {
    display: table-header-group !important; }
  tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.show-for-large-only, tbody.show-for-large-up, tbody.show-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down {
    display: table-row-group !important; }
  tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.show-for-large-only, tr.show-for-large-up, tr.show-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down {
    display: table-row !important; }
  th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.show-for-large-only, td.show-for-large-only, th.show-for-large-up, td.show-for-large-up, th.show-for-large, td.show-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
    display: table-cell !important; } }

/* xlarge displays */
@media only screen and (min-width: 90.063em) {
  .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .hide-for-large-only, .show-for-large-up, .hide-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
    display: inherit !important; }
  .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .show-for-large-only, .hide-for-large-up, .show-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
    display: none !important; }
  .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .hidden-for-large-only, .visible-for-large-up, .hidden-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto; }
  .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .visible-for-large-only, .hidden-for-large-up, .visible-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px); }
  table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.hide-for-large-only, table.show-for-large-up, table.hide-for-large, table.hide-for-large-down, table.show-for-xlarge-only, table.show-for-xlarge-up, table.show-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down {
    display: table !important; }
  thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.hide-for-large-only, thead.show-for-large-up, thead.hide-for-large, thead.hide-for-large-down, thead.show-for-xlarge-only, thead.show-for-xlarge-up, thead.show-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down {
    display: table-header-group !important; }
  tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.hide-for-large-only, tbody.show-for-large-up, tbody.hide-for-large, tbody.hide-for-large-down, tbody.show-for-xlarge-only, tbody.show-for-xlarge-up, tbody.show-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down {
    display: table-row-group !important; }
  tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.hide-for-large-only, tr.show-for-large-up, tr.hide-for-large, tr.hide-for-large-down, tr.show-for-xlarge-only, tr.show-for-xlarge-up, tr.show-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down {
    display: table-row !important; }
  th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.show-for-large-up, td.show-for-large-up, th.hide-for-large, td.hide-for-large, th.hide-for-large-down, td.hide-for-large-down, th.show-for-xlarge-only, td.show-for-xlarge-only, th.show-for-xlarge-up, td.show-for-xlarge-up, th.show-for-xlarge, td.show-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
    display: table-cell !important; } }

/* xxlarge displays */
@media only screen and (min-width: 120.063em) {
  .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .hide-for-large-only, .show-for-large-up, .hide-for-large, .hide-for-large-down, .hide-for-xlarge-only, .show-for-xlarge-up, .hide-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .show-for-xxlarge-down {
    display: inherit !important; }
  .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .show-for-large-only, .hide-for-large-up, .show-for-large, .show-for-large-down, .show-for-xlarge-only, .hide-for-xlarge-up, .show-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .hide-for-xxlarge-down {
    display: none !important; }
  .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .hidden-for-large-only, .visible-for-large-up, .hidden-for-large, .hidden-for-large-down, .hidden-for-xlarge-only, .visible-for-xlarge-up, .hidden-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto; }
  .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .visible-for-large-only, .hidden-for-large-up, .visible-for-large, .visible-for-large-down, .visible-for-xlarge-only, .hidden-for-xlarge-up, .visible-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .hidden-for-xxlarge-down {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px); }
  table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.hide-for-large-only, table.show-for-large-up, table.hide-for-large, table.hide-for-large-down, table.hide-for-xlarge-only, table.show-for-xlarge-up, table.hide-for-xlarge, table.hide-for-xlarge-down, table.show-for-xxlarge-only, table.show-for-xxlarge-up, table.show-for-xxlarge, table.show-for-xxlarge-down {
    display: table !important; }
  thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.hide-for-large-only, thead.show-for-large-up, thead.hide-for-large, thead.hide-for-large-down, thead.hide-for-xlarge-only, thead.show-for-xlarge-up, thead.hide-for-xlarge, thead.hide-for-xlarge-down, thead.show-for-xxlarge-only, thead.show-for-xxlarge-up, thead.show-for-xxlarge, thead.show-for-xxlarge-down {
    display: table-header-group !important; }
  tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.hide-for-large-only, tbody.show-for-large-up, tbody.hide-for-large, tbody.hide-for-large-down, tbody.hide-for-xlarge-only, tbody.show-for-xlarge-up, tbody.hide-for-xlarge, tbody.hide-for-xlarge-down, tbody.show-for-xxlarge-only, tbody.show-for-xxlarge-up, tbody.show-for-xxlarge, tbody.show-for-xxlarge-down {
    display: table-row-group !important; }
  tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.hide-for-large-only, tr.show-for-large-up, tr.hide-for-large, tr.hide-for-large-down, tr.hide-for-xlarge-only, tr.show-for-xlarge-up, tr.hide-for-xlarge, tr.hide-for-xlarge-down, tr.show-for-xxlarge-only, tr.show-for-xxlarge-up, tr.show-for-xxlarge, tr.show-for-xxlarge-down {
    display: table-row !important; }
  th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.show-for-large-up, td.show-for-large-up, th.hide-for-large, td.hide-for-large, th.hide-for-large-down, td.hide-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.show-for-xlarge-up, td.show-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.hide-for-xlarge-down, td.hide-for-xlarge-down, th.show-for-xxlarge-only, td.show-for-xxlarge-only, th.show-for-xxlarge-up, td.show-for-xxlarge-up, th.show-for-xxlarge, td.show-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
    display: table-cell !important; } }

/* Orientation targeting */
.show-for-landscape,
.hide-for-portrait {
  display: inherit !important; }

.hide-for-landscape,
.show-for-portrait {
  display: none !important; }

/* Specific visibility for tables */
table.hide-for-landscape, table.show-for-portrait {
  display: table !important; }

thead.hide-for-landscape, thead.show-for-portrait {
  display: table-header-group !important; }

tbody.hide-for-landscape, tbody.show-for-portrait {
  display: table-row-group !important; }

tr.hide-for-landscape, tr.show-for-portrait {
  display: table-row !important; }

td.hide-for-landscape, td.show-for-portrait,
th.hide-for-landscape,
th.show-for-portrait {
  display: table-cell !important; }

@media only screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: inherit !important; }
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important; }
  /* Specific visibility for tables */
  table.show-for-landscape, table.hide-for-portrait {
    display: table !important; }
  thead.show-for-landscape, thead.hide-for-portrait {
    display: table-header-group !important; }
  tbody.show-for-landscape, tbody.hide-for-portrait {
    display: table-row-group !important; }
  tr.show-for-landscape, tr.hide-for-portrait {
    display: table-row !important; }
  td.show-for-landscape, td.hide-for-portrait,
  th.show-for-landscape,
  th.hide-for-portrait {
    display: table-cell !important; } }

@media only screen and (orientation: portrait) {
  .show-for-portrait,
  .hide-for-landscape {
    display: inherit !important; }
  .hide-for-portrait,
  .show-for-landscape {
    display: none !important; }
  /* Specific visibility for tables */
  table.show-for-portrait, table.hide-for-landscape {
    display: table !important; }
  thead.show-for-portrait, thead.hide-for-landscape {
    display: table-header-group !important; }
  tbody.show-for-portrait, tbody.hide-for-landscape {
    display: table-row-group !important; }
  tr.show-for-portrait, tr.hide-for-landscape {
    display: table-row !important; }
  td.show-for-portrait, td.hide-for-landscape,
  th.show-for-portrait,
  th.hide-for-landscape {
    display: table-cell !important; } }

/* Touch-enabled device targeting */
.show-for-touch {
  display: none !important; }

.hide-for-touch {
  display: inherit !important; }

.touch .show-for-touch {
  display: inherit !important; }

.touch .hide-for-touch {
  display: none !important; }

/* Specific visibility for tables */
table.hide-for-touch {
  display: table !important; }

.touch table.show-for-touch {
  display: table !important; }

thead.hide-for-touch {
  display: table-header-group !important; }

.touch thead.show-for-touch {
  display: table-header-group !important; }

tbody.hide-for-touch {
  display: table-row-group !important; }

.touch tbody.show-for-touch {
  display: table-row-group !important; }

tr.hide-for-touch {
  display: table-row !important; }

.touch tr.show-for-touch {
  display: table-row !important; }

td.hide-for-touch {
  display: table-cell !important; }

.touch td.show-for-touch {
  display: table-cell !important; }

th.hide-for-touch {
  display: table-cell !important; }

.touch th.show-for-touch {
  display: table-cell !important; }

/* Print visibility */
@media print {
  .show-for-print {
    display: block; }
  .hide-for-print {
    display: none; }
  table.show-for-print {
    display: table !important; }
  thead.show-for-print {
    display: table-header-group !important; }
  tbody.show-for-print {
    display: table-row-group !important; }
  tr.show-for-print {
    display: table-row !important; }
  td.show-for-print {
    display: table-cell !important; }
  th.show-for-print {
    display: table-cell !important; } }

p > img.alignnone,
p > a > img.alignnone,
p > img.alignleft,
p > a > img.alignleft {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px; }

.aq-ad {
  margin-top: 18px; }

p > img.alignright,
p > a > img.alignright {
  float: right;
  margin-left: 10px;
  margin-bottom: 10px; }

#content,
header.header,
footer.footer {
  background-color: #053964; }
  #content > *,
  header.header > *,
  footer.footer > * {
    /*width: 1280px;*/
    max-width: 100%;
    margin-left: auto;
    margin-right: auto; }

h1 {
  font-family: RobotoBold, Helvetica, Arial;
  color: #2c4457;
  font-size: 1.75rem;
  text-transform: none;
  font-weight: normal;
  margin-top: 0.5em;
  margin-bottom: 0.5em; }

h2 {
  font-family: RobotoBold, Helvetica, Arial;
  color: #2c4457;
  font-size: 1.375rem;
  text-transform: none;
  font-weight: normal;
  margin-top: 0.375rem;
  margin-bottom: 0.5rem; }

p {
  font-family: Arial;
  color: #505050;
  font-size: 0.8125rem;
  text-transform: none;
  font-weight: normal; }

.layout-section .generic-sidebar-content h1,
.layout-section .generic-content h1 {
  font-family: RobotoBold, Helvetica, Arial;
  color: #2c4457;
  font-size: 1.75rem;
  text-transform: none;
  font-weight: normal;
  margin-top: 0.5em;
  margin-bottom: 0.5em; }

.layout-section .generic-sidebar-content h2,
.layout-section .generic-content h2 {
  font-family: RobotoBold, Helvetica, Arial;
  color: #2c4457;
  font-size: 1.375rem;
  text-transform: none;
  font-weight: normal;
  margin-top: 0.375rem;
  margin-bottom: 0.5rem; }

.layout-section .generic-sidebar-content h3,
.layout-section .generic-content h3 {
  font-family: RobotoBold, Helvetica, Arial;
  color: #2c4457;
  font-size: 1.1875rem;
  text-transform: none;
  font-weight: normal; }

.layout-section .generic-sidebar-content h4,
.layout-section .generic-content h4 {
  font-family: RobotoBold, Helvetica, Arial;
  color: #2c4457;
  font-size: 1rem;
  text-transform: none;
  font-weight: normal; }

.layout-section .generic-sidebar-content h5,
.layout-section .generic-content h5 {
  font-family: RobotoBold, Helvetica, Arial;
  color: #2c4457;
  font-size: 0.8125rem;
  text-transform: none;
  font-weight: normal; }

.layout-section .generic-sidebar-content ul,
.layout-section .generic-content ul {
  list-style: inherit; }

h1.text_header {
  font-size: 2.75rem;
  font-family: RobotoMedium, Helvetica, Arial; }

h2.text_header {
  font-family: RobotoBold, Helvetica, Arial;
  color: #2c4457;
  font-size: 1.375rem;
  text-transform: none;
  font-weight: normal;
  margin-top: 0.375rem;
  margin-bottom: 0.5rem; }
  h2.text_header time {
    font-family: RobotoThin, Helvetica, Arial;
    font-weight: normal;
    font-size: 1.1875rem; }

h3.text_header {
  font-size: 1.875rem;
  font-family: RobotoMedium, Helvetica, Arial; }

.content-alt h1.text_header {
  font-size: 2.5rem;
  font-family: RobotoMedium, Helvetica, Arial; }

.content-alt h2.text_header {
  font-family: RobotoBold, Helvetica, Arial;
  color: #2c4457;
  font-size: 1.375rem;
  text-transform: none;
  font-weight: normal;
  margin-top: 0.375rem;
  margin-bottom: 0.5rem; }

.content-alt h3.text_header {
  font-size: 1.625rem;
  font-family: RobotoMedium, Helvetica, Arial; }

p a {
  color: #1F4F82; }

a:hover {
  text-decoration: underline; }

.brand-logo a {
  display: inline-block; }

.brand-logo small {
  display: none; }

.layout-section ul {
  list-style: none; }

#inner-content {
  background: #e0e0e0; 
  width: 100%;
}

#main > section {
  background: white;
  /*&.full-width-bg {
		background: url(../images/slide-bluesky.jpg) no-repeat top center transparent;
		background-size: cover;
	}*/ }
  #main > section .dropdown.button {
    /*
font-family: $font-title-family;
		font-size: rem-calc(33);
		font-weight: normal;
		color: #2c4457;
*/
    background-color: #DEDEDE;
    border-color: #b9b9b9;
    color: #333333;
    border-radius: 0.5rem;
    font-family: RobotoBold, Helvetica, Arial;
    color: #2c4457;
    font-size: 1.375rem;
    text-transform: none;
    font-weight: normal;
    margin-top: 0.375rem;
    margin-bottom: 0.5rem;
    margin: 0; }
    #main > section .dropdown.button:after {
      border-color: #f78152 transparent transparent transparent; }
  #main > section .dropdown.button:hover {
    background-color: #BEBEBE; }
  #main > section.content-reviews-navigation {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 1280px;
    padding: 10px; }
    #main > section.content-reviews-navigation:before, #main > section.content-reviews-navigation:after {
      content: " ";
      display: table; }
    #main > section.content-reviews-navigation:after {
      clear: both; }
    #main > section.content-reviews-navigation .col-content {
      padding-left: 0; }
    #main > section.content-reviews-navigation .comp__nav-sub {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 25%;
      float: left; }
      #main > section.content-reviews-navigation .comp__nav-sub .text_header {
        font-family: RobotoBold, Helvetica, Arial;
        color: #2c4457;
        font-size: 1rem;
        text-transform: none;
        font-weight: normal;
        color: #a3abb1;
        text-transform: uppercase; }
      #main > section.content-reviews-navigation .comp__nav-sub .items {
        margin: 0;
        font-family: RobotoBold, Helvetica, Arial;
        color: #2c4457;
        font-size: 0.8125rem;
        text-transform: none;
        font-weight: normal; }
        #main > section.content-reviews-navigation .comp__nav-sub .items a {
          color: #1F4F82; }
      #main > section.content-reviews-navigation .comp__nav-sub .buttons a {
        margin-right: 1rem; }
  #main > section .comp__nav-thumbs ul {
    margin: 0 auto 1.0625rem auto;
    margin-left: -1.375rem;
    margin-right: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    margin: 0; }
    #main > section .comp__nav-thumbs ul > li {
      list-style: none;
      float: left;
      margin-left: 1.375rem;
      display: block; }
      #main > section .comp__nav-thumbs ul > li > * {
        display: block; }
    #main > section .comp__nav-thumbs ul li {
      margin-left: 0;
      padding-left: 1rem;
      padding-right: 1rem; }
      #main > section .comp__nav-thumbs ul li .body {
        font-family: Arial;
        color: #505050;
        font-size: 0.8125rem;
        text-transform: none;
        font-weight: normal; }
      #main > section .comp__nav-thumbs ul li .image img {
        width: 100%; }
      #main > section .comp__nav-thumbs ul li .icon img {
        width: auto; }
      #main > section .comp__nav-thumbs ul li a .body {
        color: #1F4F82; }
  #main > section .comp__nav-thumbs.nav-thumbs a:hover {
    text-decoration: none; }
  #main > section .comp__nav-thumbs.nav-thumbs li {
    width: 16.6%;
    margin-left: 0; }
  #main > section .comp__nav-thumbs.nav-thumbs .icon,
  #main > section .comp__nav-thumbs.nav-thumbs .body {
    /*
				font-family: $font-body-strong-family;
				font-weight: normal;
				color: black;
				font-size: rem-calc(24);
				*/
    text-align: center; }
    #main > section .comp__nav-thumbs.nav-thumbs .icon.above.airline:after,
    #main > section .comp__nav-thumbs.nav-thumbs .body.above.airline:after {
      cursor: pointer;
      font-size: 7em;
      content: "";
      display: block;
      text-align: center;
      font-family: 'skytrax';
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    #main > section .comp__nav-thumbs.nav-thumbs .icon.above.airline:hover:after,
    #main > section .comp__nav-thumbs.nav-thumbs .body.above.airline:hover:after {
      color: #f78152; }
    #main > section .comp__nav-thumbs.nav-thumbs .icon.above.airport:after,
    #main > section .comp__nav-thumbs.nav-thumbs .body.above.airport:after {
      cursor: pointer;
      font-size: 7em;
      content: "";
      display: block;
      text-align: center;
      font-family: 'skytrax';
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    #main > section .comp__nav-thumbs.nav-thumbs .icon.above.airport:hover:after,
    #main > section .comp__nav-thumbs.nav-thumbs .body.above.airport:hover:after {
      color: #f78152; }
    #main > section .comp__nav-thumbs.nav-thumbs .icon.above.awards:after,
    #main > section .comp__nav-thumbs.nav-thumbs .body.above.awards:after {
      cursor: pointer;
      font-size: 7em;
      content: "";
      display: block;
      text-align: center;
      font-family: 'skytrax';
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    #main > section .comp__nav-thumbs.nav-thumbs .icon.above.awards:hover:after,
    #main > section .comp__nav-thumbs.nav-thumbs .body.above.awards:hover:after {
      color: #f78152; }
    #main > section .comp__nav-thumbs.nav-thumbs .icon.above.lounges:after,
    #main > section .comp__nav-thumbs.nav-thumbs .body.above.lounges:after {
      cursor: pointer;
      font-size: 7em;
      content: "";
      display: block;
      text-align: center;
      font-family: 'skytrax';
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    #main > section .comp__nav-thumbs.nav-thumbs .icon.above.lounges:hover:after,
    #main > section .comp__nav-thumbs.nav-thumbs .body.above.lounges:hover:after {
      color: #f78152; }
    #main > section .comp__nav-thumbs.nav-thumbs .icon.above.ratings:after,
    #main > section .comp__nav-thumbs.nav-thumbs .body.above.ratings:after {
      cursor: pointer;
      font-size: 7em;
      content: "";
      display: block;
      text-align: center;
      font-family: 'skytrax';
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    #main > section .comp__nav-thumbs.nav-thumbs .icon.above.ratings:hover:after,
    #main > section .comp__nav-thumbs.nav-thumbs .body.above.ratings:hover:after {
      color: #f78152; }
    #main > section .comp__nav-thumbs.nav-thumbs .icon.above.seating:after,
    #main > section .comp__nav-thumbs.nav-thumbs .body.above.seating:after {
      cursor: pointer;
      font-size: 7em;
      content: "";
      display: block;
      text-align: center;
      font-family: 'skytrax';
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    #main > section .comp__nav-thumbs.nav-thumbs .icon.above.seating:hover:after,
    #main > section .comp__nav-thumbs.nav-thumbs .body.above.seating:hover:after {
      color: #f78152; }
    #main > section .comp__nav-thumbs.nav-thumbs .icon.below.airline:after,
    #main > section .comp__nav-thumbs.nav-thumbs .body.below.airline:after {
      cursor: pointer;
      font-size: 7em;
      content: "";
      display: block;
      text-align: center;
      font-family: 'skytrax';
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    #main > section .comp__nav-thumbs.nav-thumbs .icon.below.airline:hover:after,
    #main > section .comp__nav-thumbs.nav-thumbs .body.below.airline:hover:after {
      color: #f78152; }
    #main > section .comp__nav-thumbs.nav-thumbs .icon.below.airport:after,
    #main > section .comp__nav-thumbs.nav-thumbs .body.below.airport:after {
      cursor: pointer;
      font-size: 7em;
      content: "";
      display: block;
      text-align: center;
      font-family: 'skytrax';
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    #main > section .comp__nav-thumbs.nav-thumbs .icon.below.airport:hover:after,
    #main > section .comp__nav-thumbs.nav-thumbs .body.below.airport:hover:after {
      color: #f78152; }
    #main > section .comp__nav-thumbs.nav-thumbs .icon.below.awards:after,
    #main > section .comp__nav-thumbs.nav-thumbs .body.below.awards:after {
      cursor: pointer;
      font-size: 7em;
      content: "";
      display: block;
      text-align: center;
      font-family: 'skytrax';
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    #main > section .comp__nav-thumbs.nav-thumbs .icon.below.awards:hover:after,
    #main > section .comp__nav-thumbs.nav-thumbs .body.below.awards:hover:after {
      color: #f78152; }
    #main > section .comp__nav-thumbs.nav-thumbs .icon.below.lounges:after,
    #main > section .comp__nav-thumbs.nav-thumbs .body.below.lounges:after {
      cursor: pointer;
      font-size: 7em;
      content: "";
      display: block;
      text-align: center;
      font-family: 'skytrax';
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    #main > section .comp__nav-thumbs.nav-thumbs .icon.below.lounges:hover:after,
    #main > section .comp__nav-thumbs.nav-thumbs .body.below.lounges:hover:after {
      color: #f78152; }
    #main > section .comp__nav-thumbs.nav-thumbs .icon.below.ratings:above,
    #main > section .comp__nav-thumbs.nav-thumbs .body.below.ratings:above {
      cursor: pointer;
      font-size: 7em;
      content: "";
      top: 0;
      position: relative;
      font-family: 'skytrax';
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    #main > section .comp__nav-thumbs.nav-thumbs .icon.below.seating:above,
    #main > section .comp__nav-thumbs.nav-thumbs .body.below.seating:above {
      cursor: pointer;
      font-size: 7em;
      content: "";
      top: 0;
      position: relative;
      font-family: 'skytrax';
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
  #main > section.content-reviews-footer p {
    color: #2e2f2f;
    font-size: 14px;
    /* Approximation due to font substitution */
    font-weight: 400;
    line-height: 21px; }
  #main > section .media.quality-rating-blurb {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 1280px;
    padding: 1.875rem;
    margin-bottom: 2rem; }
    #main > section .media.quality-rating-blurb:before, #main > section .media.quality-rating-blurb:after {
      content: " ";
      display: table; }
    #main > section .media.quality-rating-blurb:after {
      clear: both; }
  #main > section.full-width-content {
    max-width: 100%; }
  #main > section .content-alt, #main > section.content-alt {
    border-top: solid 1px #a6b8c1;
    border-bottom: solid 1px #a6b8c1;
    background-color: #fff;
    padding-bottom: 1em;
    padding-top: 1em; }
  #main > section .content-alt .col-content, #main > section.content-alt .col-content {
    padding-bottom: 0; }
  #main > section .col-content {
    padding-left: 0; }
  #main > section .border-top {
    border-top: solid 1px #a6b8c1; }
  #main > section.no-border {
    border-top: none;
    border-bottom: none; }

.ad-google-content {
  margin-top: 1.25rem;
  margin-bottom: 2rem; }

.gad-wrapper {
  border: solid 1px #ccc;
  padding: 1px; }

.layout-2 {
  margin-top: 1rem; }
  .layout-2 > .col-content {
    border-right: solid 1px #a6b8c1; }
    .layout-2 > .col-content .aq-ad {
      margin-right: 8px; }
  .layout-2.no-border > .col-content {
    border-right: none; }
    .layout-2.no-border > .col-content .aq-ad {
      margin-right: none; }

.social {
  list-style: none;
  line-height: 1;
  margin: 0;
  display: inline-block;
  vertical-align: middle; }
  .social li {
    display: inline-block; }
    .social li a {
      width: 1.75rem;
      height: 1.75rem;
      background-size: auto;
      display: inline-block;
      text-indent: -9999px;
      overflow: hidden;
      margin-right: 0.07812rem;
      text-align: left; }
    .social li.twitter a {
      background: url(../images/nav/icon-twitter.png) no-repeat center center transparent; }
    .social li.facebook a {
      background: url(../images/nav/icon-facebook.png) no-repeat center center transparent; }
    .social li.instagram a {
      background: url(../images/nav/icon-instagram.png) no-repeat center center transparent; }
    .social li.google a {
      background: url(../images/google-sqr.png) no-repeat center center transparent; }
    .social li.youtube a {
      background: url(../images/nav/icon-youtube.png) no-repeat center center transparent; }
    @media (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
      .social li {
        /* Retina-specific stuff here */ }
        .social li.twitter a {
          background: url(../images/nav/hi/icon-twitter.png) no-repeat center center transparent;
          background-size: contain; }
        .social li.facebook a {
          background: url(../images/nav/hi/icon-facebook.png) no-repeat center center transparent;
          background-size: contain; }
        .social li.instagram a {
          background: url(../images/nav/hi/icon-instagram.png) no-repeat center center transparent;
          background-size: contain; }
        .social li.google a {
          background: url(../images/hi/google-sqr.png) no-repeat center center transparent;
          background-size: contain; }
        .social li.youtube a {
          background: url(../images/nav/hi/icon-youtube.png) no-repeat center center transparent;
          background-size: contain; } }

#inner-header {
  background: #155a93 url(../images/nav/grad-header.jpg) repeat-x center top; }
  #inner-header,
  #inner-header ul,
  #inner-header a,
  #inner-header input {
    font-size: 0.8125rem; }
  #inner-header .top .nav-user {
    text-align: right; }
    #inner-header .top .nav-user ul {
      display: inline-block; }
      #inner-header .top .nav-user ul li:before {
        color: #caddee; }
    #inner-header .top .nav-user a {
      color: #fff;
      padding: 3px;
      font-size: inherit; }
  #inner-header .bottom {
    background-color: none; }
    #inner-header .bottom .nav-main-outer {
      background-color: #0a3b63; }
    #inner-header .bottom .ds-search-outer {
      display: block;
      margin-left: -5%;
      width: 110%; }
      #inner-header .bottom .ds-search-outer .ds-search {
        background: #c4cbd0;
        margin: 0 auto;
        width: 100%;
        padding: 10px;
        text-align: center; }
      @media (min-width: 1051px) {
        #inner-header .bottom .ds-search-outer {
          margin-left: 0%;
          width: 100%; } }
  #inner-header .nav-main .top-bar > ul {
    padding: 0.0625rem; }
    #inner-header .nav-main .top-bar > ul > li {
      /*
					&.airline-reviews .dropdown {
						@include st-icon($icon:"airline",$location:"before",$extend:"false",$size:4em,$offset-v:0,$color:false);
					}
					&.seat-reviews .dropdown {
						@include st-icon($icon:"seating",$location:"before",$extend:"false",$size:4em,$offset-v:0,$color:false);
					}
					&.lounge-reviews .dropdown {
						@include st-icon($icon:"lounges",$location:"before",$extend:"false",$size:4em,$offset-v:0,$color:false);
					}
					&.airport-reviews .dropdown {
						@include st-icon($icon:"airport",$location:"before",$extend:"false",$size:4em,$offset-v:0,$color:false);
					}
					&.skytrax-awards .dropdown {
						@include st-icon($icon:"awards",$location:"before",$extend:"false",$size:4em,$offset-v:0,$color:false);
						@include dropdown-right;
					}
					&.airline-ratings .dropdown {
						@include st-icon($icon:"ratings",$location:"before",$extend:"false",$size:4em,$offset-v:0,$color:false);

						@include dropdown-right;
					}
					&.airport-ratings .dropdown {
						@include st-icon($icon:"ratings",$location:"before",$extend:"false",$size:4em,$offset-v:0,$color:false);

						@include dropdown-right;
					}
*/ }
      #inner-header .nav-main .top-bar > ul > li:last-child a {
        border-right: solid 1px #486d8a; }
      #inner-header .nav-main .top-bar > ul > li > a {
        border-left: solid 1px #486d8a;
        color: #fff;
        font-family: Arial;
        text-transform: none;
        text-align: center; }
        #inner-header .nav-main .top-bar > ul > li > a:after {
          display: none; }
        #inner-header .nav-main .top-bar > ul > li > a:hover, #inner-header .nav-main .top-bar > ul > li > a.active, #inner-header .nav-main .top-bar > ul > li > a.hover {
          background-color: #082035;
          text-decoration: none; }
      #inner-header .nav-main .top-bar > ul > li.write-review > a {
        background: url(../images/write.png) no-repeat left center transparent;
        background-position-x: 0.625rem; }
      #inner-header .nav-main .top-bar > ul > li:hover,
      #inner-header .nav-main .top-bar > ul > li.write-review a:hover {
        color: #3886cb;
        background-color: #082035; }
      #inner-header .nav-main .top-bar > ul > li .dropdown {
        background-color: #f3f3f3;
        color: #4c4c4c; }
        #inner-header .nav-main .top-bar > ul > li .dropdown label {
          font-weight: normal; }
        #inner-header .nav-main .top-bar > ul > li .dropdown .nav-search .search-title {
          display: block;
          font-family: RobotoMedium, Helvetica, Arial;
          color: #fff;
          font-size: 0.875rem;
          font-weight: normal;
          margin: 0; }
        #inner-header .nav-main .top-bar > ul > li .dropdown .nav-search input {
          color: #615f5f;
          height: 2.375rem; }
        #inner-header .nav-main .top-bar > ul > li .dropdown .nav-links ul .seperator {
          display: none; }
        #inner-header .nav-main .top-bar > ul > li .dropdown .nav-links ul a {
          background-color: transparent;
          color: #4c4c4c;
          line-height: 15px;
          text-transform: none;
          padding: 0 0 0 10px;
          border-left: 1px solid transparent; }
          #inner-header .nav-main .top-bar > ul > li .dropdown .nav-links ul a:hover {
            color: #0a3b63;
            border-left: 1px solid #3366cc;
            text-decoration: none; }
        #inner-header .nav-main .top-bar > ul > li .dropdown .nav-links ul .navSectionTitle a {
          margin-top: 0;
          text-transform: uppercase;
          font-size: 16px;
          font-weight: normal;
          font-family: RobotoMedium, Helvetica, Arial;
          color: #2c4457;
          border-left: none;
          text-decoration: underline;
          pointer-events: none;
          cursor: default; }
          #inner-header .nav-main .top-bar > ul > li .dropdown .nav-links ul .navSectionTitle a:hover {
            border-left: none; }
        #inner-header .nav-main .top-bar > ul > li .dropdown .nav-links ul .navSectionTitle:hover {
          pointer-events: none;
          cursor: default; }
        #inner-header .nav-main .top-bar > ul > li .dropdown .nav-links__list {
          display: block;
        }
        #inner-header .nav-main .top-bar > ul > li .dropdown .nav-links__list a {
          border: none; }
  #inner-header .ds-search .gcs-input {
    display: block;
    margin: 0 auto;
    width: 300px; }
    #inner-header .ds-search .gcs-input .gsc-control-searchbox-only {
      background: none; }
      #inner-header .ds-search .gcs-input .gsc-control-searchbox-only td.gsc-input {
        position: relative;
        background: #fff none repeat scroll 0 0 !important;
        border: 1px solid #b1b9be;
        border-radius: 3px; }
        #inner-header .ds-search .gcs-input .gsc-control-searchbox-only td.gsc-input .gsc-input {
          background: none !important;
          height: 36px;
          position: relative;
          width: 100%; }
        #inner-header .ds-search .gcs-input .gsc-control-searchbox-only td.gsc-input::before {
          content: 'Search the site (e.g: British Airways)';
          display: block;
          font-size: 0.8125rem !important;
          position: absolute;
          left: 6px;
          height: 36px;
          z-index: 0;
          color: #ccd2d7;
          line-height: 34px; }
          @media (min-width: 1051px) {
            #inner-header .ds-search .gcs-input .gsc-control-searchbox-only td.gsc-input::before {
              left: 10px; } }
        #inner-header .ds-search .gcs-input .gsc-control-searchbox-only td.gsc-input.active::before {
          display: none; }
      #inner-header .ds-search .gcs-input .gsc-control-searchbox-only td.gsc-search-button {
        top: 0; }
        #inner-header .ds-search .gcs-input .gsc-control-searchbox-only td.gsc-search-button::before {
          border-left: 0; }
        #inner-header .ds-search .gcs-input .gsc-control-searchbox-only td.gsc-search-button input.gsc-search-button {
          background: #039cd7 none repeat scroll 0 0;
          color: #fff;
          font-size: 1.1em;
          height: 38px;
          left: 0;
          margin: 0 0 0 2px;
          max-width: 100%;
          padding: 0 10px;
          text-indent: 0;
          top: 0;
          width: auto;
          border-radius: 2px; }
          @media (min-width: 1051px) {
            #inner-header .ds-search .gcs-input .gsc-control-searchbox-only td.gsc-search-button input.gsc-search-button {
              font-size: 1.2em;
              margin: 0 0 0 10px;
              padding: 0 20px; } }
    @media (min-width: 1051px) {
      #inner-header .ds-search .gcs-input {
        width: 420px; } }

#review-search-bar .review-search {
  padding-top: 2px; }
  #review-search-bar .review-search p {
    position: relative;
    top: 8px;
    padding-right: 8px;
    float: left;
    margin: 0; }

#review-search-bar .review-enter {
  padding-top: 2px; }
  #review-search-bar .review-enter p {
    margin: 0; }
    #review-search-bar .review-enter p a {
      height: 37px;
      line-height: 27px; }
      #review-search-bar .review-enter p a:hover {
        background-color: #e77d28;
        text-decoration: none; }

body.home #inner-header .bottom .ds-search-outer {
  display: none; }
  @media (max-width: 1050px) {
    body.home #inner-header .bottom .ds-search-outer {
      display: block; } }

.pagenavi a:nth-of-type(2) {
  float: right; }

.footer #inner-footer {
  padding-top: 40px;
  padding-bottom: 10px;
  background-color: #053964; }

.footer .copyright {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  width: 83.33333%;
  float: left;
  margin-left: 16.66667% !important;
  padding-top: 40px;
  color: white;
  font-size: 14px; }

.footer .footer-nav h2 {
  font-size: 0.9375rem;
  color: #fff;
  font-family: Helvetica, Arial;
  text-transform: uppercase;
  margin-top: 0;
  line-height: 1; }

.footer .footer-main-nav li,
.footer .footer-sub-nav li {
  font-size: 13px;
  letter-spacing: 1px;
  font-family: Helvetica, Arial;
  margin-bottom: 0; }
  .footer .footer-main-nav li:before,
  .footer .footer-sub-nav li:before {
    color: #1F4F82; }
  .footer .footer-main-nav li a,
  .footer .footer-sub-nav li a {
    color: #fff;
    padding: 0; }

.footer .footer-sub-nav li {
  font-size: 12px; }

.footer .sub-nav li:before {
  margin: 0; }

.footer .description p {
  font-size: 0.75rem;
  color: #fff; }

.footer .nav-search {
  margin-top: 0.3125rem; }
  .footer .nav-search .nav-search__input {
    height: auto;
    border: solid 1px #ccc; }
    .footer .nav-search .nav-search__input input {
      height: 3rem; }
  .footer .nav-search .nav-search__btn {
    height: 2.9375rem;
    right: 1px; }
    .footer .nav-search .nav-search__btn .button {
      height: 2.875rem; }
      .footer .nav-search .nav-search__btn .button:before {
        content: none;
        display: none; }

.footer .brand-logo a {
  width: 12.5rem; }

.footer .social {
  list-style: none;
  line-height: 1;
  margin: 0;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  float: right;
  top: -2.5rem; }
  .footer .social li {
    display: inline-block; }
    .footer .social li a {
      width: 1.75rem;
      height: 1.75rem;
      background-size: auto;
      display: inline-block;
      text-indent: -9999px;
      overflow: hidden;
      margin-right: 0;
      text-align: left; }
    .footer .social li.twitter a {
      background: url(../images/nav/icon-twitter.png) no-repeat center center transparent; }
    .footer .social li.facebook a {
      background: url(../images/nav/icon-facebook.png) no-repeat center center transparent; }
    .footer .social li.instagram a {
      background: url(../images/nav/icon-instagram.png) no-repeat center center transparent; }
    .footer .social li.google a {
      background: url(../images/google-sqr.png) no-repeat center center transparent; }
    .footer .social li.youtube a {
      background: url(../images/nav/icon-youtube.png) no-repeat center center transparent; }
    @media (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
      .footer .social li {
        /* Retina-specific stuff here */ }
        .footer .social li.twitter a {
          background: url(../images/nav/hi/icon-twitter.png) no-repeat center center transparent;
          background-size: contain; }
        .footer .social li.facebook a {
          background: url(../images/nav/hi/icon-facebook.png) no-repeat center center transparent;
          background-size: contain; }
        .footer .social li.instagram a {
          background: url(../images/nav/hi/icon-instagram.png) no-repeat center center transparent;
          background-size: contain; }
        .footer .social li.google a {
          background: url(../images/hi/google-sqr.png) no-repeat center center transparent;
          background-size: contain; }
        .footer .social li.youtube a {
          background: url(../images/nav/hi/icon-youtube.png) no-repeat center center transparent;
          background-size: contain; } }
  .footer .social h2 {
    display: none; }
  .footer .social ul {
    margin: 0; }

.comp__adsense {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
  margin-top: 0;
  margin-bottom: 1.25rem;
  box-sizing: content-box; }

.nav-search .button {
  max-width: 2.375rem;
  text-indent: -9999px;
  overflow: hidden;
  margin-bottom: 0;
  background: url(../images/magnify.png) no-repeat center center #fff;
  padding: 0.5625rem;
  border: none;
  box-shadow: none; }
  .nav-search .button:before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 2.125rem;
    position: absolute;
    top: 1px;
    left: 0;
    border-left: 1px solid #e8e8e8; }

.nav-search .search-title {
  display: none; }

.nav-search label {
  font-weight: normal;
  text-transform: none; }
  .nav-search label input {
    border: none;
    padding: 0.5625rem;
    background-color: #fff;
    font-family: Arial; }

.reviews-search-or-write,
.search-or-write {
  min-height: 119px;
  text-align: center;
  margin-top: 1.875rem;
  background-color: #f2f5f6;
  padding: 2rem;
  box-shadow: none;
  margin-bottom: 2rem; }
  .reviews-search-or-write .nav-search,
  .search-or-write .nav-search {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    width: 58.33333%;
    float: left;
    padding-top: 15px;
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
    height: 5rem; }
    .reviews-search-or-write .nav-search .nav-search__input,
    .search-or-write .nav-search .nav-search__input {
      display: inline-block;
      width: 18.75rem;
      text-align: left;
      height: auto; }
      .reviews-search-or-write .nav-search .nav-search__input input,
      .search-or-write .nav-search .nav-search__input input {
        display: inline;
        width: 100%;
        padding: 23px;
        padding-left: 16px;
        border: solid 1px #dae0e4; }
    .reviews-search-or-write .nav-search .nav-search__btn,
    .search-or-write .nav-search .nav-search__btn {
      display: inline-block;
      position: relative;
      top: -0.0625rem;
      left: -3.25rem;
      right: auto;
      bottom: auto; }
      .reviews-search-or-write .nav-search .nav-search__btn .button,
      .search-or-write .nav-search .nav-search__btn .button {
        padding: 23px;
        background-image: url(../images/icon-search-large.png);
        border-left: solid 1px #dae0e4; }
  .reviews-search-or-write .write-a-review,
  .search-or-write .write-a-review {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    width: 41.66667%;
    float: left;
    padding-top: 15px;
    height: 5rem;
    margin-top: 0;
    margin-bottom: 0;
    border-left: solid 1px #a6b8c1;
    text-align: left;
    padding-left: 32px; }
    .reviews-search-or-write .write-a-review a,
    .search-or-write .write-a-review a {
      margin-left: 1rem; }

.search-or-write {
  background-color: transparent; }
  .search-or-write .nav-search .nav-search__input {
    width: auto;
    text-align: center; }
    .search-or-write .nav-search .nav-search__input label {
      display: inline-block;
      font-family: RobotoBold, Helvetica, Arial;
      color: #0a4678;
      font-size: 22px;
      /* Approximation due to font substitution */ }
    .search-or-write .nav-search .nav-search__input input {
      margin-left: 1rem;
      width: 15.625rem; }
  .search-or-write .nav-search .ui-helper-hidden-accessible {
    display: none; }
  .search-or-write .nav-search .nav-search__btn {
    display: inline-block;
    position: relative;
    top: 0.1875rem;
    left: 0;
    right: auto;
    bottom: auto; }
    .search-or-write .nav-search .nav-search__btn .button {
      display: inline-block;
      font-family: RobotoMedium, Helvetica, Arial;
      color: white;
      background-color: #f67846;
      padding: 0.3125rem 0.9375rem;
      border-radius: 1.875rem;
      margin-left: 1rem;
      text-indent: 0;
      font-size: 1.375rem;
      background-image: none;
      width: auto;
      max-width: none;
      height: auto;
      max-height: none; }
      .search-or-write .nav-search .nav-search__btn .button:before {
        content: none; }
  .search-or-write .write-a-review {
    border-left: solid 1px #fff;
    color: #357bb5;
    font-family: RobotoMedium, Helvetica, Arial; }
    .search-or-write .write-a-review a {
      display: inline-block;
      font-family: RobotoMedium, Helvetica, Arial;
      font-size: 22px;
      color: white;
      padding: 0.3125rem 0.9375rem;
      border-radius: 1.875rem;
      margin-left: 1rem;
      padding-left: 2.25rem;
      background: url(../images/write.png) no-repeat left center #2a7fce;
      background-position-x: 0.625rem; }

#main > section .col-content > .comp.comp__gsearch {
  padding-right: 1.25rem; }
  #main > section .col-content > .comp.comp__gsearch .text_header {
    color: #094778;
    font-family: RobotoBold, Helvetica, Arial;
    font-size: 21px;
    /* Approximation due to font substitution */
    font-weight: 700;
    line-height: 24px; }
  #main > section .col-content > .comp.comp__gsearch #gsearch-results {
    margin-left: 0; }
  #main > section .col-content > .comp.comp__gsearch .gsearch-results {
    max-width: 100%; }

.menu-container .gcs-input.nav-search {
  display: none !important; }
  .menu-container .gcs-input.nav-search .gsc-control-searchbox-only td.gsc-input {
    position: relative !important; }
    .menu-container .gcs-input.nav-search .gsc-control-searchbox-only td.gsc-input:before {
      content: 'Search the site';
      display: block;
      font-size: 0.8125rem !important;
      position: absolute;
      left: 10px;
      height: 1em;
      line-height: 1em;
      top: 50%;
      margin-top: -0.5em; }
    .menu-container .gcs-input.nav-search .gsc-control-searchbox-only td.gsc-input.active:before {
      display: none; }
    @media screen and (-webkit-min-device-pixel-ratio: 0) {
      .menu-container .gcs-input.nav-search .gsc-control-searchbox-only td.gsc-input input:focus {
        font-size: 16px !important; } }

.gcs-input.nav-search,
#inner-header .gcs-input {
  margin: 0;
  display: inline-block;
  width: 170px; }
  .gcs-input.nav-search .gsc-search-box,
  #inner-header .gcs-input .gsc-search-box {
    margin-bottom: 0; }
  .gcs-input.nav-search .gsc-control-searchbox-only,
  #inner-header .gcs-input .gsc-control-searchbox-only {
    background-color: #fff;
    border: none; }
    .gcs-input.nav-search .gsc-control-searchbox-only td.gsc-input,
    #inner-header .gcs-input .gsc-control-searchbox-only td.gsc-input {
      padding: 0; }
      .gcs-input.nav-search .gsc-control-searchbox-only td.gsc-input .gsc-input-box,
      #inner-header .gcs-input .gsc-control-searchbox-only td.gsc-input .gsc-input-box {
        border: none; }
        .gcs-input.nav-search .gsc-control-searchbox-only td.gsc-input .gsc-input-box table,
        #inner-header .gcs-input .gsc-control-searchbox-only td.gsc-input .gsc-input-box table {
          border: none; }
      .gcs-input.nav-search .gsc-control-searchbox-only td.gsc-input .gsc-input,
      #inner-header .gcs-input .gsc-control-searchbox-only td.gsc-input .gsc-input {
        background: none !important; }
    .gcs-input.nav-search .gsc-control-searchbox-only td.gsc-clear-button,
    #inner-header .gcs-input .gsc-control-searchbox-only td.gsc-clear-button {
      display: none; }
    .gcs-input.nav-search .gsc-control-searchbox-only td.gsc-search-button,
    #inner-header .gcs-input .gsc-control-searchbox-only td.gsc-search-button {
      padding: 0;
      position: relative;
      top: 2px;
      z-index: 1;
      width: 2.375rem; }
      .gcs-input.nav-search .gsc-control-searchbox-only td.gsc-search-button:before,
      #inner-header .gcs-input .gsc-control-searchbox-only td.gsc-search-button:before {
        content: '';
        display: inline-block;
        width: 1px;
        height: 2rem;
        position: absolute;
        top: 1px;
        left: 0;
        border-left: 1px solid #e8e8e8; }
      .gcs-input.nav-search .gsc-control-searchbox-only td.gsc-search-button input.gsc-search-button,
      #inner-header .gcs-input .gsc-control-searchbox-only td.gsc-search-button input.gsc-search-button {
        display: inline-block;
        position: relative;
        top: -2px;
        left: -2px;
        max-width: 2.375rem;
        min-width: 2.375rem;
        width: 0;
        height: 37px;
        text-indent: -9999px;
        overflow: hidden;
        padding: 0.5625rem;
        padding-left: 28px;
        background: url(../images/magnify.png) no-repeat center center #fff;
        border: none;
        box-shadow: none;
        border-radius: 0;
        margin: 0; }
    .gcs-input.nav-search .gsc-control-searchbox-only td.gsib_b,
    #inner-header .gcs-input .gsc-control-searchbox-only td.gsib_b {
      display: none; }
    .gcs-input.nav-search .gsc-control-searchbox-only td.gsib_a,
    #inner-header .gcs-input .gsc-control-searchbox-only td.gsib_a {
      padding: 0; }
    .gcs-input.nav-search .gsc-control-searchbox-only input[type=text],
    #inner-header .gcs-input .gsc-control-searchbox-only input[type=text] {
      font-size: 0.8125rem !important;
      margin: 0 !important;
      border: none;
      padding: 0.5625rem !important;
      background-color: #fff;
      font-family: RobotoRegular, Helvetica, Arial;
      box-shadow: none;
      height: 37px; }
    .gcs-input.nav-search .gsc-control-searchbox-only .gsc-input-box,
    #inner-header .gcs-input .gsc-control-searchbox-only .gsc-input-box {
      height: auto; }
    .gcs-input.nav-search .gsc-control-searchbox-only .gsc-input-box table,
    #inner-header .gcs-input .gsc-control-searchbox-only .gsc-input-box table {
      margin-bottom: 0; }
    .gcs-input.nav-search .gsc-control-searchbox-only .gsc-branding-text,
    .gcs-input.nav-search .gsc-control-searchbox-only .gsc-branding-img,
    #inner-header .gcs-input .gsc-control-searchbox-only .gsc-branding-text,
    #inner-header .gcs-input .gsc-control-searchbox-only .gsc-branding-img {
      display: none;
      height: 0; }

#review-search-bar .gcs-input.nav-search .gsc-control-searchbox-only .gsc-input {
  position: relative;
  background: #fff; }
  #review-search-bar .gcs-input.nav-search .gsc-control-searchbox-only .gsc-input:after {
    content: '';
    display: block;
    background: url(../images/magnify.png) center center no-repeat;
    height: 37px;
    width: 37px;
    position: absolute;
    right: 0px;
    top: 0px; }
  #review-search-bar .gcs-input.nav-search .gsc-control-searchbox-only .gsc-input:before {
    content: 'Search Reviews';
    display: block;
    height: 37px;
    font-style: italic;
    color: #999;
    position: absolute;
    left: 10px;
    top: 9px; }
  #review-search-bar .gcs-input.nav-search .gsc-control-searchbox-only .gsc-input.active:before {
    display: none; }
  #review-search-bar .gcs-input.nav-search .gsc-control-searchbox-only .gsc-input input {
    width: 270px;
    height: 37px;
    border: solid 1px #a6b8c1;
    background: transparent !important; }
    #review-search-bar .gcs-input.nav-search .gsc-control-searchbox-only .gsc-input input:focus {
      background: #fff !important; }

#review-search-bar .gcs-input.nav-search td.gsc-search-button {
  padding: 0;
  position: relative;
  top: 2px;
  z-index: 1;
  width: auto; }
  #review-search-bar .gcs-input.nav-search td.gsc-search-button:before {
    display: none; }
  #review-search-bar .gcs-input.nav-search td.gsc-search-button input.gsc-search-button {
    font-family: RobotoMedium, Helvetica, Arial;
    left: 0px;
    max-width: inherit;
    min-width: inherit;
    width: 100px;
    margin-left: 10px;
    color: #fefefe;
    padding-left: 0;
    padding-right: 0;
    text-indent: 0;
    background: #1F4F82;
    font-size: 17px;
    /* Approximation due to font substitution */
    border-radius: 1.875rem;
    line-height: 1; }
    #review-search-bar .gcs-input.nav-search td.gsc-search-button input.gsc-search-button:hover {
      background: #f78152;
      text-decoration: none; }

.page-template-google-search #inner-header .bottom .ds-search-outer {
  display: none; }

.nav-search .button {
  max-width: 2.375rem;
  text-indent: -9999px;
  overflow: hidden;
  margin-bottom: 0;
  background: url(../images/magnify.png) no-repeat center center #fff;
  padding: 0.5625rem;
  border: none;
  box-shadow: none; }
  .nav-search .button:before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 2.125rem;
    position: absolute;
    top: 1px;
    left: 0;
    border-left: 1px solid #e8e8e8; }

.nav-search .search-title {
  display: none; }

.nav-search label {
  font-weight: normal;
  text-transform: none; }
  .nav-search label input {
    border: none;
    padding: 0.5625rem;
    background-color: #fff;
    font-family: Arial; }

#main > section.full-width-bg .comp__bgslider .text_content {
  margin-top: 30px !important; }

#main > section.full-width-bg .comp__bgslider .widget-container {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.5rem;
  padding: 1rem 2.5rem; }

#main > section.full-width-bg .comp__bgslider .text_content.widget-container {
  width: 820px; }
  #main > section.full-width-bg .comp__bgslider .text_content.widget-container h2.text_header {
    font-family: RobotoBold, Helvetica, Arial;
    color: #1F4F82;
    text-transform: none;
    margin-top: 0.3em;
    margin-right: 0.5em;
    margin-bottom: 0em;
    float: left;
    text-shadow: none;
    font-size: 1.2rem; }
  #main > section.full-width-bg .comp__bgslider .text_content.widget-container .gcs-input.nav-search {
    width: 270px;
    height: 40px;
    margin-top: 0px;
    margin-bottom: 0px;
    top: 0px; }
    #main > section.full-width-bg .comp__bgslider .text_content.widget-container .gcs-input.nav-search .gsc-control-searchbox-only td.gsc-input .gsc-input {
      width: 270px;
      height: 40px;
      border-radius: 0.25rem; }
    #main > section.full-width-bg .comp__bgslider .text_content.widget-container .gcs-input.nav-search .gsc-control-searchbox-only td.gsc-search-button {
      position: inherit;
      border-right: 1px solid rgba(31, 79, 130, 0.51);
      padding-right: 60px; }
      #main > section.full-width-bg .comp__bgslider .text_content.widget-container .gcs-input.nav-search .gsc-control-searchbox-only td.gsc-search-button input.gsc-search-button {
        position: relative;
        top: 0px;
        left: 15px;
        background: url(../images/magnify_white.png) no-repeat center center #f78152;
        border-radius: 1.875rem;
        max-width: 65px;
        min-width: 65px;
        height: 40px; }
  #main > section.full-width-bg .comp__bgslider .text_content.widget-container a {
    font-family: RobotoBold, Helvetica, Arial;
    text-transform: none;
    margin: 0em 0.2em 0em 9em;
    float: left;
    font-size: 1.2rem;
    text-shadow: none;
    text-decoration: none;
    display: inline-block;
    color: #fefefe;
    padding: 0.4125rem 0.9375rem;
    border-radius: 1.875rem;
    background-color: #1F4F82;
    height: 40px; }
  #main > section.full-width-bg .comp__bgslider .text_content.widget-container a:hover {
    background: #f78152;
    text-decoration: none; }

#main > section form .field-predictive .ui-helper-hidden-accessible {
  opacity: 0; }

#main > section form button:hover {
  background: #f78152; }

#main > section form div input {
  box-shadow: none; }

#main > section form .field-cabin .radio-list {
  margin-bottom: 0; }

#main > section form .radio-list {
  margin-left: .2em;
  margin-bottom: 0; }
  @media only screen and (min-width: 48em) {
    #main > section form .radio-list li {
      display: inline-block; } }
  #main > section form .radio-list li label {
    font-size: 13px;
    color: #131313; }

#main > section form textarea {
  min-height: 250px; }

#main > section form .switch {
  display: inline-block; }
  #main > section form .switch input {
    display: none; }
  #main > section form .switch input + label {
    overflow: hidden;
    text-indent: -9999px;
    opacity: 0.3;
    width: 3em; }
  #main > section form .switch input:checked + label, #main > section form .switch input:active {
    opacity: 1; }
  #main > section form .switch.on label {
    background: url("../images/icon_yes.png") center center no-repeat transparent;
    background-size: auto 100%; }
  #main > section form .switch.off label {
    background: url("../images/icon_no.png") center center no-repeat transparent;
    background-size: auto 100%; }

#main > section form .inline-field .switch:first-child {
  margin-left: 40px; }

#main > section form .extra-head {
  font-size: 0.75rem; }

#main > section form .extra-footer {
  font-size: 0.75rem; }
  #main > section form .extra-footer .underline {
    text-decoration: underline; }

.text-count-wrapper .text-count:after {
  transition: all 0.8s ease;
  padding-left: 1em;
  vertical-align: sub; }

.text-count-wrapper .text-count.success:after {
  content: url(../images/icon_tick.png); }

.text-count-wrapper.error .text-count:after {
  content: url(../images/icon_cross.png); }

.ui-autocomplete {
  list-style: none;
  background-color: #fff;
  border: solid 1px #c0c8cb;
  max-width: 400px; }
  .ui-autocomplete li.ui-menu-item {
    padding: 5px 14px;
    font-size: 12px;
    font-weight: bold;
    border-bottom: solid 1px #c0c8cb; }

.syktrax_button, #main > section.content-reviews-navigation .comp__nav-sub .buttons a, #review-search-bar .review-enter p a, .reviews-search-or-write .write-a-review a,
.search-or-write .write-a-review a, #main > section form input[type=submit],
#main > section form button, .syktrax_button_secondary, #main > section #wpmem_login .button_div input[type='reset'],
#main > section #wpmem_reg .button_div input[type='reset'], #main > section .comp__tabbed-modules nav a,
#main > section .comp__review-tabs nav a,
#main > section .sidebar > article nav a, #main > section .sidebar nav.write-a-review a, #main > section .wpmem_member_links ul > li a, #main > section #wpmem_login .buttons a,
#main > section #wpmem_reg .buttons a, #main > section #wpmem_login .button_div input[type='submit'],
#main > section #wpmem_reg .button_div input[type='submit'] {
  display: inline-block;
  font-family: RobotoMedium, Helvetica, Arial;
  color: #fefefe;
  font-size: 17px;
  /* Approximation due to font substitution */
  padding: 0.3125rem 0.9375rem;
  border-radius: 1.875rem;
  background-color: #0192d1;
  line-height: 30px;
  border: none;
  outline: none; }

.syktrax_button_secondary, #main > section #wpmem_login .button_div input[type='reset'],
#main > section #wpmem_reg .button_div input[type='reset'] {
  background-color: #615f5f; }

#main.content-page .col-content {
  padding-top: 0; }

#main.content-page .byline {
  display: block;
  font-family: RobotoMedium, Helvetica, Arial;
  color: #2e2f2f;
  font-size: 0.75rem;
  /* Approximation due to font substitution */
  font-weight: 700;
  line-height: 1em; }

#main.content-page .comp__header {
  display: inline-block;
  width: 66%;
  padding-top: 1.5rem;
  margin-left: auto;
  margin-right: auto; }
  #main.content-page .comp__header .text_header {
    font-family: RobotoBold, Helvetica, Arial;
    color: #2c4457;
    font-size: 1.75rem;
    text-transform: none;
    font-weight: normal;
    margin-top: 0.5em;
    margin-bottom: 0.5em; }
  #main.content-page .comp__header .text_excerpt {
    min-width: 730px;
    font-family: Arial;
    font-size: 1rem; }

#main.content-page .comp__wp_content .align-left {
  float: left;
  margin: 0 1em 1em 0; }

#main.content-page .comp__wp_content .align-right {
  float: right;
  margin: 0 0 1em 1em; }

#main.content-page .comp__wp_content .align-center {
  margin: 0 auto 1em auto; }

#main.content-page .comp__wp_content .image_content img {
  width: 100%; }

#main.content-page .comp__wp_content .text_content {
  padding: 1.5rem;
  padding-left: 0; }
  #main.content-page .comp__wp_content .text_content h1 {
    font-family: RobotoThin, Helvetica, Arial;
    font-size: 2rem;
    margin-top: 1em; }
  #main.content-page .comp__wp_content .text_content h2 {
    font-family: RobotoBold, Helvetica, Arial;
    font-size: 1.5rem;
    margin-top: 1em; }
  #main.content-page .comp__wp_content .text_content h3 {
    font-family: RobotoBold, Helvetica, Arial;
    font-size: 1.25rem;
    margin-top: 1em; }
  #main.content-page .comp__wp_content .text_content h4 {
    font-family: RobotoMedium, Helvetica, Arial;
    font-size: 1.125rem; }
  #main.content-page .comp__wp_content .text_content p {
    font-family: Arial;
    font-size: 1rem; }
  #main.content-page .comp__wp_content .text_content strong {
    font-weight: 800; }
  #main.content-page .comp__wp_content .text_content .gallery > .gallery-item {
    display: inline;
    height: auto;
    float: none;
    padding: 0 0.15625rem 0.3125rem; }
  #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-1 {
    display: block;
    padding: 0;
    margin: 0 -0.15625rem; }
    #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-1:before, #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-1:after {
      content: " ";
      display: table; }
    #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-1:after {
      clear: both; }
    #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-1 > li {
      display: block;
      height: auto;
      float: left; }
    #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-1 > li {
      width: 100%;
      list-style: none; }
      #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-1 > li:nth-of-type(1n) {
        clear: none; }
      #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-1 > li:nth-of-type(1n+1) {
        clear: both; }
  #main.content-page .comp__wp_content .text_content .gallery > .gallery-item {
    width: 100%;
    padding: 0 0.15625rem 0.3125rem; }
    #main.content-page .comp__wp_content .text_content .gallery > .gallery-item:nth-of-type(n) {
      clear: none; }
    #main.content-page .comp__wp_content .text_content .gallery > .gallery-item:nth-of-type(1n+1) {
      clear: both; }
  #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-2 {
    display: block;
    padding: 0;
    margin: 0 -0.15625rem; }
    #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-2:before, #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-2:after {
      content: " ";
      display: table; }
    #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-2:after {
      clear: both; }
    #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-2 > li {
      display: block;
      height: auto;
      float: left; }
    #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-2 > li {
      width: 50%;
      list-style: none; }
      #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-2 > li:nth-of-type(1n) {
        clear: none; }
      #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-2 > li:nth-of-type(2n+1) {
        clear: both; }
  #main.content-page .comp__wp_content .text_content .gallery > .gallery-item {
    width: 50%;
    padding: 0 0.15625rem 0.3125rem; }
    #main.content-page .comp__wp_content .text_content .gallery > .gallery-item:nth-of-type(n) {
      clear: none; }
    #main.content-page .comp__wp_content .text_content .gallery > .gallery-item:nth-of-type(2n+1) {
      clear: both; }
  #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-3 {
    display: block;
    padding: 0;
    margin: 0 -0.15625rem; }
    #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-3:before, #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-3:after {
      content: " ";
      display: table; }
    #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-3:after {
      clear: both; }
    #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-3 > li {
      display: block;
      height: auto;
      float: left; }
    #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-3 > li {
      width: 33.33333%;
      list-style: none; }
      #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-3 > li:nth-of-type(1n) {
        clear: none; }
      #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-3 > li:nth-of-type(3n+1) {
        clear: both; }
  #main.content-page .comp__wp_content .text_content .gallery > .gallery-item {
    width: 33.33333%;
    padding: 0 0.15625rem 0.3125rem; }
    #main.content-page .comp__wp_content .text_content .gallery > .gallery-item:nth-of-type(n) {
      clear: none; }
    #main.content-page .comp__wp_content .text_content .gallery > .gallery-item:nth-of-type(3n+1) {
      clear: both; }
  #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-4 {
    display: block;
    padding: 0;
    margin: 0 -0.15625rem; }
    #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-4:before, #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-4:after {
      content: " ";
      display: table; }
    #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-4:after {
      clear: both; }
    #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-4 > li {
      display: block;
      height: auto;
      float: left; }
    #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-4 > li {
      width: 25%;
      list-style: none; }
      #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-4 > li:nth-of-type(1n) {
        clear: none; }
      #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-4 > li:nth-of-type(4n+1) {
        clear: both; }
  #main.content-page .comp__wp_content .text_content .gallery > .gallery-item {
    width: 25%;
    padding: 0 0.15625rem 0.3125rem; }
    #main.content-page .comp__wp_content .text_content .gallery > .gallery-item:nth-of-type(n) {
      clear: none; }
    #main.content-page .comp__wp_content .text_content .gallery > .gallery-item:nth-of-type(4n+1) {
      clear: both; }
  #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-5 {
    display: block;
    padding: 0;
    margin: 0 -0.15625rem; }
    #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-5:before, #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-5:after {
      content: " ";
      display: table; }
    #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-5:after {
      clear: both; }
    #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-5 > li {
      display: block;
      height: auto;
      float: left; }
    #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-5 > li {
      width: 20%;
      list-style: none; }
      #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-5 > li:nth-of-type(1n) {
        clear: none; }
      #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-5 > li:nth-of-type(5n+1) {
        clear: both; }
  #main.content-page .comp__wp_content .text_content .gallery > .gallery-item {
    width: 20%;
    padding: 0 0.15625rem 0.3125rem; }
    #main.content-page .comp__wp_content .text_content .gallery > .gallery-item:nth-of-type(n) {
      clear: none; }
    #main.content-page .comp__wp_content .text_content .gallery > .gallery-item:nth-of-type(5n+1) {
      clear: both; }
  #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-6 {
    display: block;
    padding: 0;
    margin: 0 -0.15625rem; }
    #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-6:before, #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-6:after {
      content: " ";
      display: table; }
    #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-6:after {
      clear: both; }
    #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-6 > li {
      display: block;
      height: auto;
      float: left; }
    #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-6 > li {
      width: 16.66667%;
      list-style: none; }
      #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-6 > li:nth-of-type(1n) {
        clear: none; }
      #main.content-page .comp__wp_content .text_content .gallery .gallery-columns-6 > li:nth-of-type(6n+1) {
        clear: both; }
  #main.content-page .comp__wp_content .text_content .gallery > .gallery-item {
    width: 16.66667%;
    padding: 0 0.15625rem 0.3125rem; }
    #main.content-page .comp__wp_content .text_content .gallery > .gallery-item:nth-of-type(n) {
      clear: none; }
    #main.content-page .comp__wp_content .text_content .gallery > .gallery-item:nth-of-type(6n+1) {
      clear: both; }

blockquote {
  quotes: "“" "”" "‘" "’";
  border-left: none;
  color: #767676; }

blockquote p {
  color: #767676;
  font-style: italic;
  display: inline; }

blockquote:before {
  color: #ccc;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em; }

#main > section {
  /*.orbit-container .orbit-timer,
.orbit-container .orbit-prev,
.orbit-container .orbit-next,
{
	display: none;

}*/
  /*
Single News
**/
  /*
News Archive
**/
  /*
News Landing
**/
  /*
    Hide the original radios and checkboxes
    (but still accessible)

    :not(#foo) > is a rule filter to block browsers
                 that don't support that selector from
                 applying rules they shouldn't

*/ }
  #main > section .col-right .sidebar h2.text_header {
    font-family: "Segoe UI", "Source Sans Pro", "Avenir", "Helvetica Neue", Arial, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-variant: normal;
    font-weight: 500;
    line-height: 23px;
    color: #444;
    text-transform: uppercase;
    margin: 0.75rem 0 0.5rem; }
  #main > section .col-right .sidebar h2.add_foot_margin {
    margin-bottom: 1.0rem; }
  #main > section .col-right .sidebar p {
    color: #838382;
    font-family: "Segoe UI", "Source Sans Pro", "Avenir", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 20px; }
  #main > section .col-right .sidebar article {
    border-bottom: 1px solid #ccc;
    margin-bottom: 0.5rem; }
    #main > section .col-right .sidebar article:first-of-type {
      margin-top: -0.75rem; }
    #main > section .col-right .sidebar article button.button {
      background-color: #0192d1;
      color: #fefefe;
      width: 100%;
      border-radius: 1.875rem;
      margin-top: 0.5rem;
      font-family: RobotoMedium, Helvetica, Arial;
      font-size: 17px;
      padding: 0.3125rem 0.9375rem; }
    #main > section .col-right .sidebar article button.button:hover {
      background-color: #40aedc;
      text-decoration: none; }
  #main > section .col-right .sidebar .WidgetTop10:first-of-type {
    border-top: none; }
  #main > section .col-right h2 {
    font-family: RobotoBold, Helvetica, Arial;
    color: #2c4457;
    font-size: 1rem;
    text-transform: none;
    font-weight: normal;
    margin-top: 0;
    margin-bottom: 0; }
  #main > section .col-right p {
    font-family: Arial;
    color: #505050;
    font-size: 0.8125rem;
    text-transform: none;
    font-weight: normal; }
  #main > section .col-right .comp_media-post .text_header {
    font-family: Arial;
    color: #505050;
    font-size: 0.8125rem;
    text-transform: none;
    font-weight: normal; }
  #main > section .col-right #main > section .media .image img {
    display: block;
    width: 120px; }
  #main > section .col-right .comp.media,
  #main > section .col-right .media,
  #main > section .col-right .thumb {
    margin-bottom: 1rem; }
    #main > section .col-right .comp.media .text_header a,
    #main > section .col-right .media .text_header a,
    #main > section .col-right .thumb .text_header a {
      color: inherit;
      text-decoration: none;
      line-height: inherit;
      font-family: inherit;
      font-size: inherit;
      font-weight: inherit; }
    #main > section .col-right .comp.media .body p,
    #main > section .col-right .media .body p,
    #main > section .col-right .thumb .body p {
      margin-bottom: 0.3125rem; }
    #main > section .col-right .comp.media .image img,
    #main > section .col-right .media .image img,
    #main > section .col-right .thumb .image img {
      width: 7.5rem;
      margin-bottom: 0.5em; }
  #main > section .col-right .com_media-post .image img {
    width: 100%; }
  #main > section .col-right .items {
    margin-left: 0; }
    #main > section .col-right .items:before, #main > section .col-right .items:after {
      content: " ";
      display: table; }
    #main > section .col-right .items:after {
      clear: both; }
  #main > section .col-right .latest-news .items > li {
    width: 100%;
    padding-bottom: 3px; }
  #main > section .col-right .nav-sub .text_header {
    margin-bottom: 0.5rem; }
  #main > section .col-right .text_content {
    padding-left: 0; }
  #main > section .col-right .text_footer {
    font-family: Arial;
    color: #505050;
    font-size: 0.8125rem;
    text-transform: none;
    font-weight: normal; }
  #main > section .col-right .comp_media-review-rated.list-item {
    padding-top: 0;
    padding-bottom: 0; }
    #main > section .col-right .comp_media-review-rated.list-item .body {
      padding: 0;
      width: 100%; }
    #main > section .col-right .comp_media-review-rated.list-item .image {
      margin-left: auto;
      margin-right: auto;
      display: block;
      float: none; }
    #main > section .col-right .comp_media-review-rated.list-item .review-images,
    #main > section .col-right .comp_media-review-rated.list-item .skytrax-status,
    #main > section .col-right .comp_media-review-rated.list-item .skytrax-status-info,
    #main > section .col-right .comp_media-review-rated.list-item .review-ratings,
    #main > section .col-right .comp_media-review-rated.list-item .review-details {
      display: none; }
  #main > section .col-right .comp_media-quote .text_header,
  #main > section .col-right .comp_media-quote .text_footer {
    text-transform: capitalize; }
  #main > section .col-right .comp_media-quote .text_header {
    font-family: RobotoBold, Helvetica, Arial;
    color: #2c4457;
    font-size: 1rem;
    text-transform: none;
    font-weight: normal; }
  #main > section .col-right .comp_media-quote .text_content,
  #main > section .col-right .comp_media-quote .text_content p {
    font-family: Arial;
    color: #505050;
    font-size: 0.8125rem;
    text-transform: none;
    font-weight: normal;
    padding-left: 0;
    padding-right: 0; }
  #main > section .col-right .aq-ad {
    width: 100%;
    padding: 10px 0; }
    #main > section .col-right .aq-ad:first-child {
      padding-top: 0;
      margin-top: 15px; }
  #main > section .col-right .comp__nav-thumbs ul li {
    padding-left: 0; }
  #main > section .sidebarHome .aq-ad {
    margin: 20px 0px; }
  #main > section .sidebarHome .social {
    margin-top: 4px; }
  #main > section .WidgetTitle {
    border-top: 1px solid #ccc;
    border-bottom: none;
    margin-top: 0.75rem; }
    #main > section .WidgetTitle h2 {
      color: #444;
      font-family: "Segoe UI", "Source Sans Pro", "Avenir", "Helvetica Neue", Arial, sans-serif;
      font-size: 20px;
      font-style: normal;
      font-variant: normal;
      font-weight: 500;
      line-height: 23px;
      margin: 3px;
      margin-bottom: 0.5rem;
      text-transform: uppercase; }
  #main > section .widgetContent {
    padding: 0.5rem 0.2rem; }
    #main > section .widgetContent p, #main > section .widgetContent img {
      color: #838382;
      font-family: "Segoe UI", "Source Sans Pro", "Avenir", "Helvetica Neue", Arial, sans-serif;
      font-size: 14px !important;
      font-style: normal !important;
      font-variant: normal !important;
      font-weight: 400 !important;
      line-height: 22px !important;
      clear: both;
      margin-bottom: 0.5rem; }
  #main > section .widgetImg {
    width: 50%;
    float: left; }
    #main > section .widgetImg.solo {
      width: 100%; }
  #main > section .airlineSidebar .logo {
    text-align: center; }
    #main > section .airlineSidebar .logo p {
      margin-bottom: 0; }
  #main > section .airlineSidebar .logo {
    margin: 10px 0 30px 0; }
  #main > section .airlineSidebar .airlineInfo {
    padding: 0.5rem 0.2rem; }
    #main > section .airlineSidebar .airlineInfo h1 {
      margin-bottom: 0.25em;
      font-size: 1.2rem; }
    #main > section .airlineSidebar .airlineInfo p {
      margin-bottom: 0; }
  #main > section .customWidget {
    clear: both;
    margin-bottom: 15px; }
    #main > section .customWidget.googleAd {
      margin-top: 15px; }
    #main > section .customWidget button.button {
      background-color: #0192d1;
      color: #fefefe;
      width: 100%;
      border-radius: 1.875rem;
      margin-top: 0.5rem;
      font-family: RobotoMedium, Helvetica, Arial;
      font-size: 17px;
      padding: 0.3125rem 0.9375rem; }
    #main > section .customWidget button.button:hover {
      background-color: #40aedc;
      text-decoration: none; }
  #main > section .WidgetTop10 {
    padding: 0.5rem;
    border-bottom: 1px solid #D7DBDE;
    position: relative; }
    #main > section .WidgetTop10:after {
      position: absolute;
      top: 0.2rem;
      color: #C32121;
      right: 0.5rem;
      font-family: Arial;
      font-weight: bold;
      font-size: 1.7rem; }
    #main > section .WidgetTop10:nth-of-type(1):after {
      content: '1'; }
    #main > section .WidgetTop10:nth-of-type(2):after {
      content: '2'; }
    #main > section .WidgetTop10:nth-of-type(3):after {
      content: '3'; }
    #main > section .WidgetTop10:nth-of-type(4):after {
      content: '4'; }
    #main > section .WidgetTop10:nth-of-type(5):after {
      content: '5'; }
    #main > section .WidgetTop10:nth-of-type(6):after {
      content: '6'; }
    #main > section .WidgetTop10:nth-of-type(7):after {
      content: '7'; }
    #main > section .WidgetTop10:nth-of-type(8):after {
      content: '8'; }
    #main > section .WidgetTop10:nth-of-type(9):after {
      content: '9'; }
    #main > section .WidgetTop10:nth-of-type(10) {
      margin-bottom: 30px; }
      #main > section .WidgetTop10:nth-of-type(10):after {
        content: '10'; }
    #main > section .WidgetTop10 .top10Excerpt {
      max-width: 82%; }
    #main > section .WidgetTop10 .text_header {
      font-family: RobotoBold, Helvetica, Arial;
      color: #2c4457;
      font-size: 1rem;
      text-transform: none;
      font-weight: normal;
      margin-top: 0;
      margin-bottom: 0;
      padding: 0;
      background: none; }
    #main > section .WidgetTop10 p {
      color: #838382;
      font-family: "Segoe UI", "Source Sans Pro", "Avenir", "Helvetica Neue", Arial, sans-serif;
      /*
		font-size: 14px !important;
		font-style: normal !important;
		font-variant: normal !important;
		font-weight: 400 !important;
		line-height: 22px !important;
*/
      margin-bottom: 0; }
      #main > section .WidgetTop10 p a {
        color: #505050; }
  #main > section .media {
    /*margin:10px;*/ }
  #main > section .media, #main > section .media .body {
    overflow: hidden;
    _overflow: visible;
    zoom: 1; }
  #main > section .media.flow-body .body {
    overflow: initial; }
  #main > section .media .image {
    float: left;
    margin-right: 10px; }
  #main > section .media .image img {
    display: block; }
  #main > section .media .imgExt {
    float: right;
    margin-left: 10px; }
  #main > section .comp.media {
    margin-bottom: 1.25rem; }
  #main > section.pad .comp.media {
    padding: 1rem; }
  #main > section.pad2 .comp.media {
    padding: 2rem; }
  #main > section .comp__slider,
  #main > section .comp__bgslider {
    position: relative;
    overflow: hidden; }
    #main > section .comp__slider .slick-slider,
    #main > section .comp__bgslider .slick-slider {
      margin-bottom: 0; }
    #main > section .comp__slider .slick-track .slide,
    #main > section .comp__bgslider .slick-track .slide {
      display: none;
      background-repeat: no-repeat;
      background-size: cover;
      min-height: 400px; }
    #main > section .comp__slider .slick-track .slide:first-child,
    #main > section .comp__bgslider .slick-track .slide:first-child {
      display: inline-block; }
    #main > section .comp__slider .slick-initialized .slick-track .slide,
    #main > section .comp__bgslider .slick-initialized .slick-track .slide {
      display: inline-block; }
    #main > section .comp__slider .slides,
    #main > section .comp__bgslider .slides {
      min-height: 0; }
      #main > section .comp__slider .slides .slick-slide,
      #main > section .comp__bgslider .slides .slick-slide {
        background-size: cover;
        background-position: center center; }
        #main > section .comp__slider .slides .slick-slide > *,
        #main > section .comp__bgslider .slides .slick-slide > * {
          float: left;
          width: 100%;
          text-align: center;
          color: #fff; }
      #main > section .comp__slider .slides .slide-alt .text_content,
      #main > section .comp__bgslider .slides .slide-alt .text_content {
        padding: 0; }
        #main > section .comp__slider .slides .slide-alt .text_content figure,
        #main > section .comp__bgslider .slides .slide-alt .text_content figure {
          margin: 0; }
    #main > section .comp__slider .slick-next,
    #main > section .comp__bgslider .slick-next {
      right: 1.5625rem; }
    #main > section .comp__slider .slick-prev,
    #main > section .comp__bgslider .slick-prev {
      left: 1.5625rem; }
    #main > section .comp__slider h1,
    #main > section .comp__bgslider h1 {
      font-size: 3.5rem;
      text-transform: capitalize;
      text-shadow: 0px 0px 18px rgba(0, 0, 0, 0.3);
      line-height: 1.2;
      color: white;
      margin: 0;
      text-align: center; }
    #main > section .comp__slider h2,
    #main > section .comp__bgslider h2 {
      font-size: 1.5rem;
      text-shadow: -3px 1px 2px rgba(0, 0, 0, 0.9);
      color: white;
      margin: 0; }
    #main > section .comp__slider h3,
    #main > section .comp__bgslider h3 {
      margin-top: 0.625rem;
      font-size: 1.5rem;
      font-weight: bold;
      font-style: italic;
      padding: 0 15%;
      margin-left: auto;
      margin-right: auto;
      font-family: Arial;
      text-transform: initial; }
    #main > section .comp__slider .text_content,
    #main > section .comp__bgslider .text_content {
      top: -400px;
      margin-bottom: -400px;
      position: relative;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      margin-top: 0;
      margin-bottom: 0;
      max-width: 1280px;
      padding: 2rem 5.8rem; }
      #main > section .comp__slider .text_content:before, #main > section .comp__slider .text_content:after,
      #main > section .comp__bgslider .text_content:before,
      #main > section .comp__bgslider .text_content:after {
        content: " ";
        display: table; }
      #main > section .comp__slider .text_content:after,
      #main > section .comp__bgslider .text_content:after {
        clear: both; }
      #main > section .comp__slider .text_content p,
      #main > section .comp__bgslider .text_content p {
        color: white;
        text-shadow: -3px 1px 2px rgba(0, 0, 0, 0.9); }
      #main > section .comp__slider .text_content a,
      #main > section .comp__bgslider .text_content a {
        color: white;
        text-decoration: underline; }
  #main > section.full-width-bg .comp__bgslider {
    width: 100%;
    max-width: 100%;
    height: 400px; }
    #main > section.full-width-bg .comp__bgslider .text_content {
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      margin-top: 0;
      margin-bottom: 0;
      max-width: 1280px; }
      #main > section.full-width-bg .comp__bgslider .text_content:before, #main > section.full-width-bg .comp__bgslider .text_content:after {
        content: " ";
        display: table; }
      #main > section.full-width-bg .comp__bgslider .text_content:after {
        clear: both; }
  #main > section.full-width-bg .slick-slide {
    width: 100%;
    max-width: 100%; }
  #main > section .a2z-index-dropdown {
    margin-top: 2rem; }
    #main > section .a2z-index-dropdown .tabs-content > .content {
      margin-top: -3.75rem; }
  #main > section .comp__a2zindex .tabs {
    display: inline-block;
    float: right; }
    #main > section .comp__a2zindex .tabs .tab-title a {
      color: #094778;
      font-size: 22px;
      /* Approximation due to font substitution */
      font-weight: 400;
      line-height: 20px;
      padding: 0.3125rem;
      transition: 0.2 all; }
    #main > section .comp__a2zindex .tabs .tab-title.active a,
    #main > section .comp__a2zindex .tabs .tab-title a:hover {
      position: relative;
      top: -0.3125rem;
      color: #f78152;
      font-size: 33px;
      /* Approximation due to font substitution */
      font-weight: 700;
      line-height: 30px; }
  #main > section .comp__a2zindex.narrow_a2z .tabs .tab-title a {
    font-size: 20px; }
  #main > section .comp__a2zindex.narrow_a2z .tabs .tab-title.active a {
    font-size: 24px; }
  #main > section .comp__a2zindex .tabs-content .content {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 1280px;
    margin-top: 4rem; }
    #main > section .comp__a2zindex .tabs-content .content:before, #main > section .comp__a2zindex .tabs-content .content:after {
      content: " ";
      display: table; }
    #main > section .comp__a2zindex .tabs-content .content:after {
      clear: both; }
  #main > section .comp__a2zindex .tabs-content .a_z_col_group {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    width: 50%;
    float: left; }
    #main > section .comp__a2zindex .tabs-content .a_z_col_group .items {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 50%;
      float: left;
      margin-left: 0;
      padding-left: 0;
      font-family: RobotoBold, Helvetica, Arial;
      color: #2c4457;
      font-size: 0.8125rem;
      text-transform: none;
      font-weight: normal;
      line-height: 1.2; }
      #main > section .comp__a2zindex .tabs-content .a_z_col_group .items li {
        margin-bottom: 0.4em; }
        #main > section .comp__a2zindex .tabs-content .a_z_col_group .items li a {
          color: #1F4F82; }
  @media only screen and (max-width: 66em) {
    #main > section .comp__a2zindex .tabs-content .a_z_col_group .items {
      padding-left: 0;
      padding-right: 0;
      width: 100%;
      float: left; } }
  #main > section .a2z-index-page .comp__header .text_header, #main > section.a2z-index-page .comp__header .text_header {
    font-family: RobotoBold, Helvetica, Arial;
    color: #2c4457;
    font-size: 1.75rem;
    text-transform: none;
    font-weight: normal;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    text-transform: capitalize; }
  #main > section .a2z-index-page .comp__header nav.write-a-review, #main > section.a2z-index-page .comp__header nav.write-a-review {
    margin-top: 1em;
    margin-bottom: 0.5em; }
  #main > section .a2z-index-page .comp__a2zindex .text_header, #main > section.a2z-index-page .comp__a2zindex .text_header {
    font-family: RobotoBold, Helvetica, Arial;
    margin-top: 70px;
    color: #094778;
    font-size: 21px;
    /* Approximation due to font substitution */
    font-weight: 700;
    line-height: 19px; }
  #main > section .a2z-index-page .comp__a2zindex .content, #main > section.a2z-index-page .comp__a2zindex .content {
    margin-top: 0; }
  #main > section .a2z-index-page .comp__a2zindex .tabs, #main > section.a2z-index-page .comp__a2zindex .tabs {
    float: left;
    width: 100%; }
  #main > section .comp__querylist {
    padding: 0; }
  #main > section .comp__querylist.latest-reviews {
    margin-top: 2rem;
    margin-bottom: 2rem; }
  #main > section .comp__querylist.latest-reviews:before, #main > section .comp__querylist.latest-reviews:after {
    content: " ";
    display: table; }
  #main > section .comp__querylist.latest-reviews:after {
    clear: both; }
  #main > section .comp__querylist.latest-reviews ul.item {
    font-family: RobotoBold, Helvetica, Arial;
    color: #2c4457;
    font-size: 0.8125rem;
    text-transform: none;
    font-weight: normal; }
    #main > section .comp__querylist.latest-reviews ul.item li article.comp_list-title-link.list-item {
      font-family: RobotoBold, Helvetica, Arial;
      color: #2c4457;
      font-size: 0.8125rem;
      text-transform: none;
      font-weight: normal;
      line-height: 1.2;
      margin-bottom: 0.4em; }
  #main > section .comp__querylist.latest-reviews ul {
    display: block;
    width: 100%;
    margin: 0; }
    #main > section .comp__querylist.latest-reviews ul:before, #main > section .comp__querylist.latest-reviews ul:after {
      content: " ";
      display: table; }
    #main > section .comp__querylist.latest-reviews ul:after {
      clear: both; }
    @media only screen and (min-width: 48em) {
      #main > section .comp__querylist.latest-reviews ul {
        -webkit-columns: 10em 3;
        -moz-columns: 10em 3;
        columns: 10em 3;
        -webkit-column-gap: 0;
        -moz-column-gap: 0;
        column-gap: 0; } }
    #main > section .comp__querylist.latest-reviews ul li {
      margin: 0;
      padding: 0 0.9375rem;
      width: 100%; }
      #main > section .comp__querylist.latest-reviews ul li:before, #main > section .comp__querylist.latest-reviews ul li:after {
        content: " ";
        display: table; }
      #main > section .comp__querylist.latest-reviews ul li:after {
        clear: both; }
      @media only screen and (min-width: 48em) {
        #main > section .comp__querylist.latest-reviews ul li {
          display: block; } }
  @media only screen and (min-width: 48em) {
    #main > section .lt-ie10 .comp__querylist.latest-reviews ul {
      -webkit-columns: auto auto;
      -moz-columns: auto auto;
      columns: auto auto;
      -webkit-column-gap: auto;
      -moz-column-gap: auto;
      column-gap: auto; } }
  @media only screen and (min-width: 48em) {
    #main > section .lt-ie10 .comp__querylist.latest-reviews ul li {
      display: block;
      width: 33.33%;
      float: left; } }
  #main > section #main > section .comp__a2zindex .tabs-content .items {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    width: 25%;
    float: left;
    /* margin-left: 0; */
    padding-left: 0;
    font-family: RobotoBold, Helvetica, Arial;
    color: #2c4457;
    font-size: 0.8125rem;
    text-transform: none;
    font-weight: normal;
    line-height: 1.2; }
  #main > section .latest-reviews-block > .text_header {
    font-family: RobotoBold, Helvetica, Arial;
    color: #2c4457;
    font-size: 1.375rem;
    text-transform: none;
    font-weight: normal;
    margin-top: 0.375rem;
    margin-bottom: 0.5rem; }
  #main > section .tabs-content .latest-reviews-block > .text_header {
    display: none; }
  #main > section .tabs-content .latest-reviews-footer {
    padding-right: 15px; }
  #main > section .comp_media-review,
  #main > section .comp_media-review-rated {
    padding: 30px 0 0 0; }
    #main > section .comp_media-review li,
    #main > section .comp_media-review-rated li {
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      margin-top: 0;
      margin-bottom: 0;
      max-width: 1280px; }
      #main > section .comp_media-review li:before, #main > section .comp_media-review li:after,
      #main > section .comp_media-review-rated li:before,
      #main > section .comp_media-review-rated li:after {
        content: " ";
        display: table; }
      #main > section .comp_media-review li:after,
      #main > section .comp_media-review-rated li:after {
        clear: both; }
    #main > section .comp_media-review .image,
    #main > section .comp_media-review-rated .image {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 16.66667%;
      float: left;
      padding: 0; }
    #main > section .comp_media-review .body,
    #main > section .comp_media-review-rated .body {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 83.33333%;
      float: left;
      padding-left: 2rem; }
      #main > section .comp_media-review .body ul.thumbnail_bar,
      #main > section .comp_media-review-rated .body ul.thumbnail_bar {
        margin: 5px 0px 60px 0px; }
        #main > section .comp_media-review .body ul.thumbnail_bar li.thumbnail,
        #main > section .comp_media-review-rated .body ul.thumbnail_bar li.thumbnail {
          width: 50px;
          float: left;
          margin: 0px 5px 0px 5px; }
        #main > section .comp_media-review .body ul.thumbnail_bar li.thumbnail:first-child,
        #main > section .comp_media-review-rated .body ul.thumbnail_bar li.thumbnail:first-child {
          margin-left: 0px; }
      #main > section .comp_media-review .body .large_review_img,
      #main > section .comp_media-review-rated .body .large_review_img {
        text-align: center;
        position: relative;
        max-width: 500px;
        background: url(../images/image-loading.gif) no-repeat center center; }
        #main > section .comp_media-review .body .large_review_img button.close,
        #main > section .comp_media-review-rated .body .large_review_img button.close {
          background: #f78152;
          margin: -13px 0px 10px 0px;
          padding: 0.3125rem 0.9375rem;
          border-radius: 1.875rem; }
        #main > section .comp_media-review .body .large_review_img button.close:hover,
        #main > section .comp_media-review-rated .body .large_review_img button.close:hover {
          text-decoration: underline; }
    #main > section .comp_media-review .text_header,
    #main > section .comp_media-review-rated .text_header {
      font-family: RobotoBold, Helvetica, Arial;
      color: #2c4457;
      font-size: 1.1875rem;
      text-transform: none;
      font-weight: normal; }
    #main > section .comp_media-review .review-count,
    #main > section .comp_media-review-rated .review-count {
      display: inline-block;
      color: #1F4F82;
      font-size: 12px;
      /* Approximation due to font substitution */
      font-weight: 700;
      line-height: 24px;
      float: right; }
  #main > section .rating-10 {
    border-radius: 50%;
    background: #f78152;
    color: white;
    font-family: RobotoBold, Helvetica, Arial;
    font-size: 1.25rem;
    font-weight: normal;
    padding: 0;
    display: inline-block;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    float: left; }
  #main > section .latest-reviews-footer {
    color: #999;
    text-align: left;
    padding-right: 15px; }
    #main > section .latest-reviews-footer p {
      font-weight: 700;
      font-size: 16px;
      margin: 0; }
      #main > section .latest-reviews-footer p .bullet:before {
        content: '\00BB ';
        color: #1F4F82;
        font-size: 20px;
        /* Approximation due to font substitution */
        font-weight: 700;
        margin-right: 0.25rem; }
  #main > section .comp__tabbed-modules,
  #main > section .comp__review-tabs,
  #main > section .comp_reviews-airline {
    background: #fff; }
    #main > section .comp__tabbed-modules .tabs,
    #main > section .comp__review-tabs .tabs,
    #main > section .comp_reviews-airline .tabs {
      border-bottom: solid 1px #a6b8c1; }
      #main > section .comp__tabbed-modules .tabs .tab-title.active,
      #main > section .comp__review-tabs .tabs .tab-title.active,
      #main > section .comp_reviews-airline .tabs .tab-title.active {
        position: relative;
        z-index: 10;
        background-color: #fff;
        top: 0;
        border-bottom: solid 1px white;
        margin-bottom: -2px !important; }
      #main > section .comp__tabbed-modules .tabs li,
      #main > section .comp__review-tabs .tabs li,
      #main > section .comp_reviews-airline .tabs li {
        border-top: solid 1px #a6b8c1;
        border-right: solid 1px #a6b8c1;
        background-color: #0192d1; }
        #main > section .comp__tabbed-modules .tabs li:first-child:before, #main > section .comp__tabbed-modules .tabs li:first-child.active:before,
        #main > section .comp__review-tabs .tabs li:first-child:before,
        #main > section .comp__review-tabs .tabs li:first-child.active:before,
        #main > section .comp_reviews-airline .tabs li:first-child:before,
        #main > section .comp_reviews-airline .tabs li:first-child.active:before {
          position: absolute;
          top: 0;
          left: 0;
          height: 105px;
          content: '';
          display: inline-block;
          z-index: 11;
          width: 1px; }
        #main > section .comp__tabbed-modules .tabs li:hover,
        #main > section .comp__review-tabs .tabs li:hover,
        #main > section .comp_reviews-airline .tabs li:hover {
          background-color: #40aedc; }
  #main > section .comp__tabbed-modules,
  #main > section .comp__review-tabs,
  #main > section .sidebar > article {
    float: none; }
    #main > section .comp__tabbed-modules .tabs li:first-child, #main > section .comp__tabbed-modules .tabs li:first-child.active,
    #main > section .comp__review-tabs .tabs li:first-child,
    #main > section .comp__review-tabs .tabs li:first-child.active,
    #main > section .sidebar > article .tabs li:first-child,
    #main > section .sidebar > article .tabs li:first-child.active {
      border-left: solid 1px #a6b8c1; }
      #main > section .comp__tabbed-modules .tabs li:first-child:before, #main > section .comp__tabbed-modules .tabs li:first-child.active:before,
      #main > section .comp__review-tabs .tabs li:first-child:before,
      #main > section .comp__review-tabs .tabs li:first-child.active:before,
      #main > section .sidebar > article .tabs li:first-child:before,
      #main > section .sidebar > article .tabs li:first-child.active:before {
        content: none; }
    #main > section .comp__tabbed-modules .tabs li a,
    #main > section .comp__review-tabs .tabs li a,
    #main > section .sidebar > article .tabs li a {
      color: #828d95;
      background-position: left center;
      background-repeat: no-repeat; }
    #main > section .comp__tabbed-modules .tabs li.active a,
    #main > section .comp__review-tabs .tabs li.active a,
    #main > section .sidebar > article .tabs li.active a {
      color: #0192d1; }
    #main > section .comp__tabbed-modules .tabs li.airlines a,
    #main > section .comp__tabbed-modules .tabs li.airline a,
    #main > section .comp__review-tabs .tabs li.airlines a,
    #main > section .comp__review-tabs .tabs li.airline a,
    #main > section .sidebar > article .tabs li.airlines a,
    #main > section .sidebar > article .tabs li.airline a {
      background-image: url("../images/flight-icons/icon_airline_white.png"); }
    #main > section .comp__tabbed-modules .tabs li.airlines.active a,
    #main > section .comp__tabbed-modules .tabs li.airline.active a,
    #main > section .comp__review-tabs .tabs li.airlines.active a,
    #main > section .comp__review-tabs .tabs li.airline.active a,
    #main > section .sidebar > article .tabs li.airlines.active a,
    #main > section .sidebar > article .tabs li.airline.active a {
      background-image: url("../images/flight-icons/icon_airline-tab_blue.png"); }
    #main > section .comp__tabbed-modules .tabs li.seats a,
    #main > section .comp__tabbed-modules .tabs li.seat a,
    #main > section .comp__review-tabs .tabs li.seats a,
    #main > section .comp__review-tabs .tabs li.seat a,
    #main > section .sidebar > article .tabs li.seats a,
    #main > section .sidebar > article .tabs li.seat a {
      background-image: url("../images/flight-icons/icon_seat_white.png"); }
    #main > section .comp__tabbed-modules .tabs li.seats.active a,
    #main > section .comp__tabbed-modules .tabs li.seat.active a,
    #main > section .comp__review-tabs .tabs li.seats.active a,
    #main > section .comp__review-tabs .tabs li.seat.active a,
    #main > section .sidebar > article .tabs li.seats.active a,
    #main > section .sidebar > article .tabs li.seat.active a {
      background-image: url("../images/flight-icons/icon_seat-tab_blue.png"); }
    #main > section .comp__tabbed-modules .tabs li.lounges a,
    #main > section .comp__tabbed-modules .tabs li.lounge a,
    #main > section .comp__review-tabs .tabs li.lounges a,
    #main > section .comp__review-tabs .tabs li.lounge a,
    #main > section .sidebar > article .tabs li.lounges a,
    #main > section .sidebar > article .tabs li.lounge a {
      background-image: url("../images/flight-icons/icon_lounge_white.png"); }
    #main > section .comp__tabbed-modules .tabs li.lounges.active a,
    #main > section .comp__tabbed-modules .tabs li.lounge.active a,
    #main > section .comp__review-tabs .tabs li.lounges.active a,
    #main > section .comp__review-tabs .tabs li.lounge.active a,
    #main > section .sidebar > article .tabs li.lounges.active a,
    #main > section .sidebar > article .tabs li.lounge.active a {
      background-image: url("../images/flight-icons/icon_lounge-tab_blue.png"); }
    #main > section .comp__tabbed-modules .tabs li.airports a,
    #main > section .comp__tabbed-modules .tabs li.airport a,
    #main > section .comp__review-tabs .tabs li.airports a,
    #main > section .comp__review-tabs .tabs li.airport a,
    #main > section .sidebar > article .tabs li.airports a,
    #main > section .sidebar > article .tabs li.airport a {
      background-image: url("../images/flight-icons/icon_airport_white.png"); }
    #main > section .comp__tabbed-modules .tabs li.airports.active a,
    #main > section .comp__tabbed-modules .tabs li.airport.active a,
    #main > section .comp__review-tabs .tabs li.airports.active a,
    #main > section .comp__review-tabs .tabs li.airport.active a,
    #main > section .sidebar > article .tabs li.airports.active a,
    #main > section .sidebar > article .tabs li.airport.active a {
      background-image: url("../images/flight-icons/icon_airport-tab_blue.png"); }
    #main > section .comp__tabbed-modules .tabs li.active,
    #main > section .comp__review-tabs .tabs li.active,
    #main > section .sidebar > article .tabs li.active {
      box-shadow: none;
      outline-bottom: solid 1px #fff; }
    #main > section .comp__tabbed-modules .tabs .tab-title a,
    #main > section .comp__review-tabs .tabs .tab-title a,
    #main > section .sidebar > article .tabs .tab-title a {
      color: #fff;
      font-family: RobotoBold, Helvetica, Arial;
      font-size: 12px;
      line-height: 0;
      text-transform: uppercase;
      z-index: 11;
      border: 1px solid #fff;
      background-size: 35px auto;
      background-position: 10px;
      padding: 23px 30px 23px 50px; }
      #main > section .comp__tabbed-modules .tabs .tab-title a:hover,
      #main > section .comp__review-tabs .tabs .tab-title a:hover,
      #main > section .sidebar > article .tabs .tab-title a:hover {
        text-decoration: none; }
    #main > section .comp__tabbed-modules nav,
    #main > section .comp__review-tabs nav,
    #main > section .sidebar > article nav {
      float: right;
      display: inline-block;
      border-left: solid 1px #fff;
      color: #357bb5;
      font-family: RobotoMedium, Helvetica, Arial; }
      #main > section .comp__tabbed-modules nav a,
      #main > section .comp__review-tabs nav a,
      #main > section .sidebar > article nav a {
        margin-left: 1rem;
        margin-right: 1rem; }
      #main > section .comp__tabbed-modules nav a:hover,
      #main > section .comp__review-tabs nav a:hover,
      #main > section .sidebar > article nav a:hover {
        background-color: #40aedc;
        text-decoration: none; }
  #main > section .sidebar nav.write-a-review {
    text-align: center; }
    #main > section .sidebar nav.write-a-review a {
      margin-left: 1rem;
      margin-right: 1rem; }
    #main > section .sidebar nav.write-a-review a:hover {
      background: #f78152;
      text-decoration: none; }
  #main > section .popular-right-now .comp__querylist > h2 {
    font-family: RobotoBold, Helvetica, Arial;
    color: #a3abb1;
    font-size: 18px;
    /* Approximation due to font substitution */
    font-weight: 900;
    line-height: 28px;
    text-transform: uppercase;
    margin-top: 22px;
    margin-bottom: 22px; }
  #main > section .popular-right-now .comp__querylist .items {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 1280px; }
    #main > section .popular-right-now .comp__querylist .items:before, #main > section .popular-right-now .comp__querylist .items:after {
      content: " ";
      display: table; }
    #main > section .popular-right-now .comp__querylist .items:after {
      clear: both; }
  #main > section .popular-right-now .comp__querylist .items > li {
    padding-left: 0;
    padding-right: 0;
    width: 50%;
    float: left; }
  #main > section .comp.comp_media-review-popular {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 1rem;
    /*
		.image {
			@include grid-column(4, $collapse: true);
		}
		.body {
			@include grid-column(8);
		}*/ }
    #main > section .comp.comp_media-review-popular .text_header {
      font-family: RobotoBold, Helvetica, Arial;
      color: #094778;
      font-size: 22px;
      /* Approximation due to font substitution */
      font-weight: 700;
      line-height: 19px; }
    #main > section .comp.comp_media-review-popular .image.empty a {
      display: block;
      width: 5.9375rem;
      height: 5.9375rem;
      background: url(../images/thumb-tailfin.png) no-repeat center center transparent;
      background-size: cover; }
    #main > section .comp.comp_media-review-popular .text_footer a {
      font-family: RobotoBold, Helvetica, Arial;
      color: #1F4F82;
      font-size: 15px;
      /* Approximation due to font substitution */
      font-weight: 700;
      line-height: 21px; }
  #main > section.layout-2 .col-content .latest-news .items {
    display: block;
    padding: 0;
    margin: 0 -1.5rem;
    margin: 0;
    margin-left: -1.5rem; }
    #main > section.layout-2 .col-content .latest-news .items:before, #main > section.layout-2 .col-content .latest-news .items:after {
      content: " ";
      display: table; }
    #main > section.layout-2 .col-content .latest-news .items:after {
      clear: both; }
    #main > section.layout-2 .col-content .latest-news .items > li {
      display: block;
      height: auto;
      float: left;
      padding: 0 1.5rem 3rem; }
    #main > section.layout-2 .col-content .latest-news .items > li {
      width: 50%;
      padding: 0 1.5rem 3rem;
      list-style: none; }
      #main > section.layout-2 .col-content .latest-news .items > li:nth-of-type(1n) {
        clear: none; }
      #main > section.layout-2 .col-content .latest-news .items > li:nth-of-type(2n+1) {
        clear: both; }
    #main > section.layout-2 .col-content .latest-news .items > li {
      padding-bottom: 10px; }
      #main > section.layout-2 .col-content .latest-news .items > li p {
        margin: 0; }
  #main > section .latest-news,
  #main > section .featured-list.comp {
    margin: 0px 0px 10px 0px; }
    #main > section .latest-news .text_header,
    #main > section .latest-news a .text_header,
    #main > section .featured-list.comp .text_header,
    #main > section .featured-list.comp a .text_header {
      font-family: RobotoBold, Helvetica, Arial;
      color: #2c4457;
      font-size: 1.375rem;
      text-transform: none;
      font-weight: normal;
      margin-top: 0.375rem;
      margin-bottom: 0.5rem;
      /*
text-align: left;
			color: #2c4457;
			font-size: 26px;
			font-weight: 300;
			line-height: 28px;
			margin-top: rem-calc(16);
			margin-bottom: rem-calc(16);
*/ }
    #main > section .latest-news ul.items,
    #main > section .featured-list.comp ul.items {
      display: block;
      padding: 0;
      margin: 0 -0.5rem;
      padding-top: 0.8rem; }
      #main > section .latest-news ul.items:before, #main > section .latest-news ul.items:after,
      #main > section .featured-list.comp ul.items:before,
      #main > section .featured-list.comp ul.items:after {
        content: " ";
        display: table; }
      #main > section .latest-news ul.items:after,
      #main > section .featured-list.comp ul.items:after {
        clear: both; }
      #main > section .latest-news ul.items > li,
      #main > section .featured-list.comp ul.items > li {
        display: block;
        height: auto;
        float: left;
        padding: 0 0.5rem 1rem; }
      #main > section .latest-news ul.items > li,
      #main > section .featured-list.comp ul.items > li {
        width: 50%;
        padding: 0 0.5rem 1rem;
        list-style: none; }
        #main > section .latest-news ul.items > li:nth-of-type(1n),
        #main > section .featured-list.comp ul.items > li:nth-of-type(1n) {
          clear: none; }
        #main > section .latest-news ul.items > li:nth-of-type(2n+1),
        #main > section .featured-list.comp ul.items > li:nth-of-type(2n+1) {
          clear: both; }
      #main > section .latest-news ul.items > .thumb,
      #main > section .latest-news ul.items > li,
      #main > section .latest-news ul.items > li.thumb,
      #main > section .featured-list.comp ul.items > .thumb,
      #main > section .featured-list.comp ul.items > li,
      #main > section .featured-list.comp ul.items > li.thumb {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 10px;
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 0;
        text-align: left;
        max-width: 200px; }
        #main > section .latest-news ul.items > .thumb .text_header,
        #main > section .latest-news ul.items > li .text_header,
        #main > section .latest-news ul.items > li.thumb .text_header,
        #main > section .featured-list.comp ul.items > .thumb .text_header,
        #main > section .featured-list.comp ul.items > li .text_header,
        #main > section .featured-list.comp ul.items > li.thumb .text_header {
          margin-bottom: 0; }
          #main > section .latest-news ul.items > .thumb .text_header a,
          #main > section .latest-news ul.items > li .text_header a,
          #main > section .latest-news ul.items > li.thumb .text_header a,
          #main > section .featured-list.comp ul.items > .thumb .text_header a,
          #main > section .featured-list.comp ul.items > li .text_header a,
          #main > section .featured-list.comp ul.items > li.thumb .text_header a {
            font-family: RobotoMedium, Helvetica, Arial;
            display: inline-block;
            margin-top: 0;
            margin-bottom: 0;
            color: #1F4F82;
            font-size: 16px;
            line-height: 20px; }
        #main > section .latest-news ul.items > .thumb .image img,
        #main > section .latest-news ul.items > li .image img,
        #main > section .latest-news ul.items > li.thumb .image img,
        #main > section .featured-list.comp ul.items > .thumb .image img,
        #main > section .featured-list.comp ul.items > li .image img,
        #main > section .featured-list.comp ul.items > li.thumb .image img {
          width: 100%; }
        #main > section .latest-news ul.items > .thumb .icon img,
        #main > section .latest-news ul.items > li .icon img,
        #main > section .latest-news ul.items > li.thumb .icon img,
        #main > section .featured-list.comp ul.items > .thumb .icon img,
        #main > section .featured-list.comp ul.items > li .icon img,
        #main > section .featured-list.comp ul.items > li.thumb .icon img {
          width: auto; }
        #main > section .latest-news ul.items > .thumb .image,
        #main > section .latest-news ul.items > .thumb .icon,
        #main > section .latest-news ul.items > li .image,
        #main > section .latest-news ul.items > li .icon,
        #main > section .latest-news ul.items > li.thumb .image,
        #main > section .latest-news ul.items > li.thumb .icon,
        #main > section .featured-list.comp ul.items > .thumb .image,
        #main > section .featured-list.comp ul.items > .thumb .icon,
        #main > section .featured-list.comp ul.items > li .image,
        #main > section .featured-list.comp ul.items > li .icon,
        #main > section .featured-list.comp ul.items > li.thumb .image,
        #main > section .featured-list.comp ul.items > li.thumb .icon {
          padding-bottom: 0.3em; }
        #main > section .latest-news ul.items > .thumb .body h5.text_header,
        #main > section .latest-news ul.items > li .body h5.text_header,
        #main > section .latest-news ul.items > li.thumb .body h5.text_header,
        #main > section .featured-list.comp ul.items > .thumb .body h5.text_header,
        #main > section .featured-list.comp ul.items > li .body h5.text_header,
        #main > section .featured-list.comp ul.items > li.thumb .body h5.text_header {
          font-size: 1rem;
          margin-top: 0;
          margin-bottom: 0.25em; }
        #main > section .latest-news ul.items > .thumb .body p,
        #main > section .latest-news ul.items > li .body p,
        #main > section .latest-news ul.items > li.thumb .body p,
        #main > section .featured-list.comp ul.items > .thumb .body p,
        #main > section .featured-list.comp ul.items > li .body p,
        #main > section .featured-list.comp ul.items > li.thumb .body p {
          line-height: 1.3; }
      #main > section .latest-news ul.items li,
      #main > section .featured-list.comp ul.items li {
        margin-top: 10px;
        margin-bottom: 10px; }
    #main > section .latest-news .text_link,
    #main > section .featured-list.comp .text_link {
      color: #1F4F82;
      font-size: 16px;
      /* Approximation due to font substitution */
      font-weight: 700;
      line-height: 28px; }
    #main > section .latest-news .bullet,
    #main > section .featured-list.comp .bullet {
      line-height: 1;
      display: block;
      margin-top: -6px; }
      #main > section .latest-news .bullet:before,
      #main > section .featured-list.comp .bullet:before {
        content: '\00BB ';
        color: #1F4F82;
        font-size: 20px;
        /* Approximation due to font substitution */
        font-weight: 700;
        margin-right: 4px; }
  #main > section .featured-list.comp ul.items {
    display: block;
    padding: 0;
    margin: 0 -1.5rem;
    margin: 0;
    margin-left: -1.5rem; }
    #main > section .featured-list.comp ul.items:before, #main > section .featured-list.comp ul.items:after {
      content: " ";
      display: table; }
    #main > section .featured-list.comp ul.items:after {
      clear: both; }
    #main > section .featured-list.comp ul.items > li {
      display: block;
      height: auto;
      float: left;
      padding: 0 1.5rem 3rem; }
    #main > section .featured-list.comp ul.items > li {
      width: 50%;
      padding: 0 1.5rem 3rem;
      list-style: none; }
      #main > section .featured-list.comp ul.items > li:nth-of-type(1n) {
        clear: none; }
      #main > section .featured-list.comp ul.items > li:nth-of-type(2n+1) {
        clear: both; }
  #main > section .image.news_content {
    margin-bottom: 20px; }
  #main > section article.single_news_item {
    padding-right: 16px; }
  #main > section .col-content.archive_body {
    padding-left: 16px;
    padding-right: 16px; }
  #main > section .archive_body .archive_news_item {
    padding-bottom: 20px; }
  #main > section .archive_body h2 {
    text-transform: uppercase;
    font-size: 1.2rem; }
  #main > section .archive_body li {
    list-style-type: none;
    margin-bottom: 3px; }
    #main > section .archive_body li:before {
      content: url(../../inc/images/view-details-24.png);
      margin-right: 8px;
      vertical-align: sub; }
  #main > section .col-content .news_landing_content {
    padding-right: 16px; }
  #main > section .col-content article.news_item img {
    float: left;
    margin-right: 8px; }
  #main > section .col-content article .news-stats {
    font-size: 0.9em;
    color: #888; }
    #main > section .col-content article .news-stats .publish-date {
      background-image: url(../images/clock.png);
      background-position: left center;
      background-repeat: no-repeat;
      margin-right: 20px;
      padding: 5px 0 5px 25px; }
    #main > section .col-content article .news-stats .news-cat {
      background-image: url(../images/tag.png);
      background-position: left center;
      background-repeat: no-repeat;
      padding: 5px 0 5px 25px; }
  #main > section .tab_border_wrap {
    border-top: solid 1px #a6b8c1; }
  #main > section .sectionHeadWrap {
    border-top: solid 1px #a6b8c1;
    display: inline-block;
    border-left: solid 1px #a6b8c1;
    border-right: solid 1px #a6b8c1;
    position: relative;
    padding: 1px 1px 0 1px;
    width: 280px;
    top: 7px; }
    #main > section .sectionHeadWrap .sectionBlock {
      background-color: #0192d1;
      height: 33px;
      width: 55%;
      float: left;
      border-right: 1px solid #006aa3; }
      #main > section .sectionHeadWrap .sectionBlock.rightBlock {
        width: 45%;
        border-left: 1px solid #5cbae1;
        border-right: none;
        padding-left: 1.2em; }
        #main > section .sectionHeadWrap .sectionBlock.rightBlock:hover {
          background-color: #40aedc; }
      #main > section .sectionHeadWrap .sectionBlock a {
        color: #fff;
        padding: 0 0.5rem;
        display: block;
        margin-top: 0.375rem;
        font-size: 14px;
        margin-right: 0.5rem;
        position: relative;
        background: none; }
        #main > section .sectionHeadWrap .sectionBlock a:before {
          content: '';
          background-image: url(../images/view_all.png);
          background-repeat: no-repeat;
          background-position: left center;
          width: 12px;
          background-size: contain;
          height: 20px;
          position: absolute;
          margin-right: 30px;
          left: -0.6em; }
        #main > section .sectionHeadWrap .sectionBlock a:hover {
          text-decoration: none; }
  #main > section .tab_border_heading {
    display: inline-block;
    font-size: 16px;
    padding: 0 0.5rem;
    background-color: #0192d1;
    color: #fff; }
  #main > section .block_link {
    color: #fff;
    background-color: #0192d1;
    padding: 0 0.5rem;
    display: inline-block;
    margin-top: 0.375rem;
    font-size: 14px;
    margin-right: 0.5rem; }
    #main > section .block_link:before {
      content: '';
      background-image: url(../images/view_all.png);
      background-repeat: no-repeat;
      background-position: left center;
      width: 12px;
      background-size: contain;
      height: 20px;
      position: absolute;
      margin-right: 30px;
      left: 0.6em; }
    #main > section .block_link:hover {
      text-decoration: none;
      background-color: #40aedc; }
  #main > section .latest-reviews-footer .block_link {
    padding: 0.5rem 0.6rem 0.3rem 1.8rem;
    position: relative;
    margin: 0;
    float: left;
    font-size: 14px; }
  #main > section .bl-capital {
    text-transform: capitalize; }
  #main > section .mobile-break {
    display: none; }
  @media only screen and (max-width: 600px) {
    #main > section .mobile-break {
      display: block;
      height: 10px; } }
  #main > section .stars .star {
    display: inline-block;
    background: url(../images/stars.png) no-repeat right center transparent;
    background-size: auto 100%;
    width: 20px;
    height: 20px;
    position: relative;
    vertical-align: middle;
    text-indent: -1000px;
    overflow: hidden;
    margin-right: 0.1875rem; }
    #main > section .stars .star.fill {
      background-position: left center; }
    #main > section .stars .star.half {
      background-image: url(../images/flight-icons/icon_star-half.png);
      background-position: center center; }
  #main > section .comp__skytrax_rating .rating-group,
  #main > section .comp__skytrax_rating_summary .rating-group {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 1280px;
    margin-bottom: 2rem; }
    #main > section .comp__skytrax_rating .rating-group:before, #main > section .comp__skytrax_rating .rating-group:after,
    #main > section .comp__skytrax_rating_summary .rating-group:before,
    #main > section .comp__skytrax_rating_summary .rating-group:after {
      content: " ";
      display: table; }
    #main > section .comp__skytrax_rating .rating-group:after,
    #main > section .comp__skytrax_rating_summary .rating-group:after {
      clear: both; }
    #main > section .comp__skytrax_rating .rating-group .rating-column__header,
    #main > section .comp__skytrax_rating_summary .rating-group .rating-column__header {
      color: #094778;
      font-family: RobotoBold, Helvetica, Arial;
      font-size: 21px;
      /* Approximation due to font substitution */
      font-weight: 700;
      line-height: 24px; }
    #main > section .comp__skytrax_rating .rating-group .review_ratings,
    #main > section .comp__skytrax_rating_summary .rating-group .review_ratings {
      margin: 0; }
    #main > section .comp__skytrax_rating .rating-group .cols-1 .review-ratings,
    #main > section .comp__skytrax_rating_summary .rating-group .cols-1 .review-ratings {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 50%;
      float: left; }
    #main > section .comp__skytrax_rating .rating-group .rating-sub-group,
    #main > section .comp__skytrax_rating_summary .rating-group .rating-sub-group {
      margin-bottom: 2rem;
      padding-left: 0; }
      #main > section .comp__skytrax_rating .rating-group .rating-sub-group.cols-1,
      #main > section .comp__skytrax_rating_summary .rating-group .rating-sub-group.cols-1 {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
        width: 100%;
        float: left; }
      #main > section .comp__skytrax_rating .rating-group .rating-sub-group.cols-2,
      #main > section .comp__skytrax_rating_summary .rating-group .rating-sub-group.cols-2 {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
        width: 50%;
        float: left; }
    #main > section .comp__skytrax_rating .rating-group .review-rating-header,
    #main > section .comp__skytrax_rating_summary .rating-group .review-rating-header {
      color: #242424;
      font-size: 0.8125rem;
      font-weight: 700;
      line-height: 1.2;
      text-transform: capitalize; }
  #main > section .comp__skytrax_rating .review-ratings,
  #main > section .comp__skytrax_rating_summary .review-ratings {
    margin-bottom: 0; }
  #main > section .comp__skytrax_rating_summary .rating-group .rating-sub-group {
    margin-bottom: 0; }
    #main > section .comp__skytrax_rating_summary .rating-group .rating-sub-group.cols-1 {
      padding-left: 0; }
      #main > section .comp__skytrax_rating_summary .rating-group .rating-sub-group.cols-1 .review-ratings {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        float: left; }
  #main > section .comp__skytrax_rating_summary .rating-group__header {
    display: none; }
  #main > section .comp_reviews-airline .text_header {
    display: inline-block;
    width: auto; }
  #main > section .comp_reviews-airline .aq-ad {
    clear: both;
    margin-bottom: 18px; }
  #main > section .comp_review-header,
  #main > section .comp__skytrax_rating_summary {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 1280px;
    float: none !important;
    padding-top: 1.4375rem;
    min-height: 21.875rem; }
    #main > section .comp_review-header:before, #main > section .comp_review-header:after,
    #main > section .comp__skytrax_rating_summary:before,
    #main > section .comp__skytrax_rating_summary:after {
      content: " ";
      display: table; }
    #main > section .comp_review-header:after,
    #main > section .comp__skytrax_rating_summary:after {
      clear: both; }
    #main > section .comp_review-header .review-heading,
    #main > section .comp__skytrax_rating_summary .review-heading {
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      margin-top: 0;
      margin-bottom: 0;
      max-width: 1280px;
      margin-bottom: 1rem; }
      #main > section .comp_review-header .review-heading:before, #main > section .comp_review-header .review-heading:after,
      #main > section .comp__skytrax_rating_summary .review-heading:before,
      #main > section .comp__skytrax_rating_summary .review-heading:after {
        content: " ";
        display: table; }
      #main > section .comp_review-header .review-heading:after,
      #main > section .comp__skytrax_rating_summary .review-heading:after {
        clear: both; }
      #main > section .comp_review-header .review-heading .skytrax-rating,
      #main > section .comp__skytrax_rating_summary .review-heading .skytrax-rating {
        display: block;
        margin: 0 auto; }
      #main > section .comp_review-header .review-heading img.skytrax-rating,
      #main > section .comp__skytrax_rating_summary .review-heading img.skytrax-rating {
        height: 120px; }
    #main > section .comp_review-header .customer-rating,
    #main > section .comp__skytrax_rating_summary .customer-rating {
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      margin-top: 0;
      margin-bottom: 0;
      max-width: 1280px; }
      #main > section .comp_review-header .customer-rating:before, #main > section .comp_review-header .customer-rating:after,
      #main > section .comp__skytrax_rating_summary .customer-rating:before,
      #main > section .comp__skytrax_rating_summary .customer-rating:after {
        content: " ";
        display: table; }
      #main > section .comp_review-header .customer-rating:after,
      #main > section .comp__skytrax_rating_summary .customer-rating:after {
        clear: both; }
      #main > section .comp_review-header .customer-rating .review-ratings,
      #main > section .comp__skytrax_rating_summary .customer-rating .review-ratings {
        width: 100%; }
        #main > section .comp_review-header .customer-rating .review-ratings .review-rating-header,
        #main > section .comp__skytrax_rating_summary .customer-rating .review-ratings .review-rating-header {
          color: #2c4457;
          font-size: 0.875rem;
          font-family: RobotoBold, Helvetica, Arial; }
    #main > section .comp_review-header .rating-totals,
    #main > section .comp__skytrax_rating_summary .rating-totals {
      text-align: center; }
      #main > section .comp_review-header .rating-totals .review-count,
      #main > section .comp__skytrax_rating_summary .rating-totals .review-count {
        font-family: Arial;
        color: #505050;
        font-size: 0.8125rem;
        text-transform: none;
        font-weight: normal;
        padding-bottom: 0.5em;
        max-width: 110px;
        margin: 0 auto; }
      #main > section .comp_review-header .rating-totals .rating-10,
      #main > section .comp__skytrax_rating_summary .rating-totals .rating-10 {
        float: none;
        margin: 0 auto; }
    #main > section .comp_review-header > .review-info h1,
    #main > section .comp__skytrax_rating_summary > .review-info h1 {
      font-family: RobotoMedium, Helvetica, Arial;
      color: #2c4457;
      font-size: 1.5rem;
      /* Approximation due to font substitution */
      font-weight: 300;
      line-height: 1;
      height: auto; }
    #main > section .comp_review-header > .review-info h2,
    #main > section .comp__skytrax_rating_summary > .review-info h2 {
      font-family: Arial;
      color: #577388;
      font-size: 1.25rem;
      /* Approximation due to font substitution */
      font-weight: 300;
      line-height: 0.5; }
    #main > section .comp_review-header > .review-info .logo,
    #main > section .comp__skytrax_rating_summary > .review-info .logo {
      margin-bottom: 1.5rem; }
      #main > section .comp_review-header > .review-info .logo img,
      #main > section .comp__skytrax_rating_summary > .review-info .logo img {
        max-width: 100%; }
  #main > section .comp_review-header {
    min-height: 0; }
  #main > section .pagination-controls {
    clear: both;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 1280px;
    background-color: #f2f5f6;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem; }
    #main > section .pagination-controls:before, #main > section .pagination-controls:after {
      content: " ";
      display: table; }
    #main > section .pagination-controls:after {
      clear: both; }
    #main > section .pagination-controls .pagination-size {
      padding-top: .3em;
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 41.66667%;
      float: left; }
    #main > section .pagination-controls .pagination-label {
      color: #7e8b8f;
      font-size: 15px;
      /* Approximation due to font substitution */
      font-weight: bold;
      line-height: 22px; }
    #main > section .pagination-controls .page-size-selector {
      display: inline-block;
      /*
		Change from unchecked to checked graphic
	*/
      height: auto;
      margin: 0; }
      #main > section .pagination-controls .page-size-selector input[type='radio'],
      #main > section .pagination-controls .page-size-selector input[type='checkbox'] {
        /* Hide the input, but have it still be clickable */
        opacity: 0;
        display: none;
        width: 100%; }
      #main > section .pagination-controls .page-size-selector input[type='radio'] + label,
      #main > section .pagination-controls .page-size-selector input[type='checkbox'] + label {
        margin: 0;
        clear: none;
        /* Make look clickable because they are */
        cursor: pointer;
        color: #1F4F82; }
      #main > section .pagination-controls .page-size-selector input[type='radio']:checked + label {
        color: #48555a; }
      #main > section .pagination-controls .page-size-selector input[type='checkbox']:checked + label {
        color: #48555a; }
      #main > section .pagination-controls .page-size-selector li {
        display: inline-block; }
      #main > section .pagination-controls .page-size-selector li label {
        border-left: solid 1px #758084; }
      #main > section .pagination-controls .page-size-selector li:first-child label {
        border-left: none; }
      #main > section .pagination-controls .page-size-selector label {
        font-weight: bold;
        font-size: 0.9375rem;
        padding: 0 0.3125rem;
        line-height: 1em; }
    #main > section .pagination-controls .pagination-sort {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 58.33333%;
      float: left;
      height: auto; }
      #main > section .pagination-controls .pagination-sort .page-order-selector {
        width: 12em;
        margin: 0;
        display: inline-block;
        background-size: 2rem; }
    #main > section .pagination-controls .pagination-filter {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 58.33333%;
      float: left;
      height: auto; }
      #main > section .pagination-controls .pagination-filter .page-filter-selector {
        display: inline-block;
        width: 12em;
        margin: 0;
        background-size: 2rem; }
  #main > section .comp_media-review-rated.list-item {
    position: relative;
    padding-top: 0; }
    #main > section .comp_media-review-rated.list-item .text_header {
      display: inline;
      margin-bottom: 0; }
    #main > section .comp_media-review-rated.list-item .review-images h3,
    #main > section .comp_media-review-rated.list-item .text_sub_header {
      font-family: RobotoMedium, Helvetica, Arial;
      color: #2e2f2f;
      font-size: 12px;
      /* Approximation due to font substitution */
      font-weight: 700;
      line-height: 1em; }
    #main > section .comp_media-review-rated.list-item[class^="post-status-"]:before, #main > section .comp_media-review-rated.list-item[class*=" post-status-"]:before {
      display: inline-block;
      position: absolute;
      top: 10px;
      right: 20px;
      content: '';
      font-size: 14px; }
    #main > section .comp_media-review-rated.list-item[class^="post-status-"].post-status-draft:before, #main > section .comp_media-review-rated.list-item[class*=" post-status-"].post-status-draft:before {
      content: 'Pending Approval'; }
    #main > section .comp_media-review-rated.list-item[class^="post-status-"].post-status-publish:before, #main > section .comp_media-review-rated.list-item[class*=" post-status-"].post-status-publish:before {
      content: 'Approved';
      background: url(../images/icon_tick.png) no-repeat left center transparent;
      color: #65bc49;
      padding-left: 25px;
      background-size: 20px; }
    #main > section .comp_media-review-rated.list-item[class^="post-status-"].post-status-trash:before, #main > section .comp_media-review-rated.list-item[class*=" post-status-"].post-status-trash:before {
      content: 'Rejected';
      background: url(../images/icon_cross.png) no-repeat left center transparent;
      color: #c92828;
      padding-left: 25px;
      background-size: 20px; }
    #main > section .comp_media-review-rated.list-item .skytrax-status {
      font-size: 16px;
      background: url(../images/icon_badge.png) no-repeat top center transparent;
      background-size: 100% auto;
      color: #fffefe;
      font-weight: 700;
      text-align: center;
      display: block;
      overflow: hidden;
      width: 41px;
      height: 60px;
      line-height: 40px;
      margin-left: auto;
      margin-right: auto;
      margin-top: 20px; }
    #main > section .comp_media-review-rated.list-item .skytrax-status-title,
    #main > section .comp_media-review-rated.list-item .skytrax-status-count {
      display: block;
      font-family: Arial;
      color: #2e2f2f;
      font-size: 10px;
      /* Approximation due to font substitution */
      font-weight: 700;
      line-height: 12px;
      /* Approximation due to font substitution */ }
    #main > section .comp_media-review-rated.list-item .skytrax-status-count {
      color: #1F4F82; }
    #main > section .comp_media-review-rated.list-item .skytrax-status,
    #main > section .comp_media-review-rated.list-item .skytrax-status-info {
      display: none; }
    #main > section .comp_media-review-rated.list-item .review-images {
      margin-top: 1.25rem; }
      #main > section .comp_media-review-rated.list-item .review-images h3 {
        font-size: 14px;
        /* Approximation due to font substitution */
        padding-left: 20px;
        background: url(../images/flight-icons/icon_camera.png) no-repeat left center transparent;
        background-size: 15px; }
    #main > section .comp_media-review-rated.list-item .body {
      overflow: visible;
      float: none;
      width: auto;
      padding-left: 0;
      margin-left: 88px; }
    #main > section .comp_media-review-rated.list-item .text_content,
    #main > section .comp_media-review-rated.list-item .text_content p {
      font-family: Arial;
      color: #505050;
      font-size: 0.8125rem;
      text-transform: none;
      font-weight: normal;
      color: #2c2d2d;
      font-size: 0.89rem;
      line-height: 22px; }
    #main > section .comp_media-review-rated.list-item .review-stats {
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      margin-top: 0;
      margin-bottom: 0;
      max-width: 1280px;
      margin-top: 1.1875rem; }
      #main > section .comp_media-review-rated.list-item .review-stats:before, #main > section .comp_media-review-rated.list-item .review-stats:after {
        content: " ";
        display: table; }
      #main > section .comp_media-review-rated.list-item .review-stats:after {
        clear: both; }
      #main > section .comp_media-review-rated.list-item .review-stats table {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
        width: 50%;
        float: left; }
      #main > section .comp_media-review-rated.list-item .review-stats .review-ratings {
        width: 100%; }
        #main > section .comp_media-review-rated.list-item .review-stats .review-ratings tr {
          border-bottom: solid 1px #e5e5e5; }
          #main > section .comp_media-review-rated.list-item .review-stats .review-ratings tr td {
            padding-bottom: 0.5em;
            padding-top: 0.5em; }
      #main > section .comp_media-review-rated.list-item .review-stats .review-details {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
        width: 41.66667%;
        float: left; }
      #main > section .comp_media-review-rated.list-item .review-stats .review-rating-header {
        color: #242424;
        font-size: 13px;
        /* Approximation due to font substitution */
        font-weight: 700;
        line-height: 20px;
        padding: 3px;
        width: auto;
        vertical-align: top; }
      #main > section .comp_media-review-rated.list-item .review-stats .review-rating-stars {
        padding: 0; }
      #main > section .comp_media-review-rated.list-item .review-stats .review-value {
        text-align: left;
        font-size: 0.75rem;
        padding: 3px; }
      #main > section .comp_media-review-rated.list-item .review-stats .rating-yes {
        background: url(../images/icon_tick.png) no-repeat left center transparent;
        color: #65bc49; }
      #main > section .comp_media-review-rated.list-item .review-stats .rating-no {
        background: url(../images/icon_cross.png) no-repeat left center transparent;
        color: #c92828; }
      #main > section .comp_media-review-rated.list-item .review-stats .rating-no,
      #main > section .comp_media-review-rated.list-item .review-stats .rating-yes {
        font-size: 0px;
        padding-left: 20px;
        background-size: 15px;
        background-position-y: 6px; }
  #main > section .comp.comp_reviews-pagination {
    float: none; }
  #main > section .querylist-pagination {
    border-top: solid 1px #a6b8c1;
    border-bottom: solid 1px #a6b8c1;
    margin-bottom: 32px; }
    #main > section .querylist-pagination:before, #main > section .querylist-pagination:after {
      content: " ";
      display: table; }
    #main > section .querylist-pagination:after {
      clear: both; }
    #main > section .querylist-pagination ul {
      margin: 0;
      padding: 0px; }
    #main > section .querylist-pagination li {
      float: left;
      position: relative;
      top: -1px;
      border-right: solid 1px #a6b8c1;
      border-top: solid 1px #a6b8c1; }
    #main > section .querylist-pagination a, #main > section .querylist-pagination .off {
      display: inline-block;
      color: #1F4F82;
      font-size: 18px;
      /* Approximation due to font substitution */
      font-weight: 400;
      text-align: center;
      width: 47px;
      height: 50px;
      line-height: 50px;
      transition: 0.1s transform; }
    #main > section .querylist-pagination .off, #main > section .querylist-pagination .active {
      color: #a6b8c1; }
    #main > section .querylist-pagination a:hover {
      -webkit-transform: scale(1.5);
              transform: scale(1.5); }
    #main > section .querylist-pagination .pagination-total {
      display: inline-block;
      float: right;
      color: #a6b8c1;
      font-size: 14px;
      /* Approximation due to font substitution */
      font-weight: 400;
      height: 50px;
      line-height: 50px; }
  #main > section .clearing-thumbs {
    /*		@include block-grid(
				// This controls how many elements will be on each row of the block grid. Set this to whatever number you need, up to the max allowed in the variable.
				// Available options: 1-12 by default, and false.
				$per-row: 5,

					// This controls how much space is between each item in the block grid.
					// Use a variable or any pixel or em values.
				$spacing: 8px,

					// This controls whether or not base styles come through, set to false to leave out.
				$base-style: true
			);*/ }
    #main > section .clearing-thumbs li {
      width: 18%;
      margin-right: 9px;
      margin-bottom: 9px; }
      #main > section .clearing-thumbs li img {
        box-shadow: 2px 2px 3px 0px rgba(60, 60, 60, 0.1);
        padding: 5px; }
  #main > section .gallery-reviews .clearing-thumbs li {
    width: 23%;
    margin: 10px 5px; }
  #main > section .customWidget .clearing-thumbs li, #main > section .review-photos .clearing-thumbs li {
    width: 30%;
    margin-right: 5px; }
  #main > section .clearing-assembled.clearing-blackout li {
    width: 100px; }
  #main > section .wpmem_member_links {
    list-style: none;
    margin: 0;
    left: 0; }
    #main > section .wpmem_member_links:before, #main > section .wpmem_member_links:after {
      content: " ";
      display: table; }
    #main > section .wpmem_member_links:after {
      clear: both; }
    #main > section .wpmem_member_links ul {
      margin-left: 0; }
      #main > section .wpmem_member_links ul > li {
        margin: 0 -2px;
        display: inline-block; }
        #main > section .wpmem_member_links ul > li > button, #main > section .wpmem_member_links ul > li .button {
          border-left: 1px solid;
          border-color: rgba(255, 255, 255, 0.5); }
        #main > section .wpmem_member_links ul > li:first-child button, #main > section .wpmem_member_links ul > li:first-child .button {
          border-left: 0; }
        #main > section .wpmem_member_links ul > li a {
          margin-right: 1rem; }
  #main > section .comp__user-skytrax-rating {
    margin-bottom: 1.25rem; }
    #main > section .comp__user-skytrax-rating ul {
      margin-left: 0; }
    #main > section .comp__user-skytrax-rating .status-badge {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 33.33333%;
      float: left;
      float: left;
      text-align: center; }
      #main > section .comp__user-skytrax-rating .status-badge .skytrax-status {
        font-size: 40px;
        background: url(../images/icon_badge.png) no-repeat top center transparent;
        background-size: 100% auto;
        color: #fffefe;
        font-weight: 700;
        text-align: center;
        display: block;
        overflow: hidden;
        width: 100px;
        height: 150px;
        line-height: 100px;
        margin-left: auto;
        margin-right: auto; }
      #main > section .comp__user-skytrax-rating .status-badge .skytrax-status-title,
      #main > section .comp__user-skytrax-rating .status-badge .skytrax-status-count {
        display: block;
        font-family: Arial;
        color: #2e2f2f;
        font-size: 20px;
        /* Approximation due to font substitution */
        font-weight: 700;
        line-height: 24px;
        /* Approximation due to font substitution */ }
      #main > section .comp__user-skytrax-rating .status-badge .skytrax-status-count {
        color: #1F4F82; }
    #main > section .comp__user-skytrax-rating .title, #main > section .comp__user-skytrax-rating .value {
      display: inline;
      font-family: Arial;
      color: #2e2f2f;
      font-size: 14px;
      /* Approximation due to font substitution */
      font-weight: 700;
      line-height: 16px;
      /* Approximation due to font substitution */
      vertical-align: top; }
    #main > section .comp__user-skytrax-rating .title {
      float: left;
      width: 25%;
      font-family: Arial;
      color: #2e2f2f;
      font-size: 14px;
      /* Approximation due to font substitution */
      font-weight: 700;
      line-height: 16px;
      /* Approximation due to font substitution */ }
    #main > section .comp__user-skytrax-rating .value {
      color: #1F4F82; }
  #main > section #wpmem_login fieldset,
  #main > section #wpmem_reg fieldset {
    border: none; }
  #main > section #wpmem_login .buttons a,
  #main > section #wpmem_reg .buttons a {
    margin-right: 1rem; }
  #main > section #wpmem_login .div_text,
  #main > section #wpmem_reg .div_text {
    width: 50%;
    min-width: 200px; }
  #main > section .wpmem_msg {
    /*
	@include alert(
	    $bg: $info-color,
	    $radius: true
    );
*/ }
    #main > section .wpmem_msg p {
      margin: 0; }
  #main > section.latest-reviews-block .comp_media-review-rated .text_content,
  #main > section .latest-reviews-block .comp_media-review-rated .text_content {
    clear: none;
    margin-top: 0;
    padding-top: 0; }
  #main > section #wpmem_login .button_div,
  #main > section #wpmem_reg .button_div {
    list-style: none;
    margin: 0;
    left: 0; }
    #main > section #wpmem_login .button_div:before, #main > section #wpmem_login .button_div:after,
    #main > section #wpmem_reg .button_div:before,
    #main > section #wpmem_reg .button_div:after {
      content: " ";
      display: table; }
    #main > section #wpmem_login .button_div:after,
    #main > section #wpmem_reg .button_div:after {
      clear: both; }
  #main > section .review-ad a:hover {
    text-decoration: none; }
  #main > section .tc_mobile_only {
    background-color: #6f798c;
    color: #fff;
    text-align: center;
    padding: 0.3125rem 0.9375rem;
    border-radius: 1.875rem;
    width: 50%;
    margin: 0 auto;
    margin-top: 0.5rem;
    font-size: 12px;
    font-weight: 500;
    display: block; }
    @media only screen and (min-width: 600px) {
      #main > section .tc_mobile_only {
        display: none; } }
    #main > section .tc_mobile_only:before {
      content: '+ Read more'; }
    #main > section .tc_mobile_only:hover {
      cursor: pointer; }
    #main > section .tc_mobile_only.open:before {
      content: '- Close'; }
  @media only screen and (min-width: 48em) {
    #main > section .col-content > .comp__write-a-review form {
      padding-right: 30px; } }
  #main > section .comp__write-a-review {
    /* firefox 19+ */
    /* ie */ }
    #main > section .comp__write-a-review .arrow-down {
      display: inline-block;
      width: 0;
      height: 0;
      border: inset 5px;
      border-color: rgba(255, 255, 255, 0.4) transparent transparent transparent;
      border-top-style: solid;
      margin-right: 5px;
      margin-top: -4.5px;
      position: relative;
      top: 3px;
      left: -3px; }
    #main > section .comp__write-a-review h1,
    #main > section .comp__write-a-review .write-a-review-progress {
      text-align: center; }
    #main > section .comp__write-a-review h1 {
      margin-bottom: 50px; }
    #main > section .comp__write-a-review h3 {
      font-size: 20px;
      font-weight: bold;
      color: #094778;
      font-family: RobotoBold, Helvetica, Arial;
      border-bottom: solid 1px #c0c8cb;
      margin-bottom: 30px; }
      #main > section .comp__write-a-review h3 small {
        font-size: 12px;
        font-weight: normal;
        color: #81898c;
        font-family: Arial; }
    #main > section .comp__write-a-review .field_group {
      border-top: solid 1px #e4e4e4;
      padding-top: 16px;
      padding-bottom: 16px; }
    #main > section .comp__write-a-review form .label,
    #main > section .comp__write-a-review form label {
      font-size: 16px;
      font-weight: bold;
      color: #094778; }
    #main > section .comp__write-a-review label > a {
      text-decoration: underline; }
    #main > section .comp__write-a-review label.label-sub:first-child {
      font-size: 80%;
      color: #81898c; }
    #main > section .comp__write-a-review label.label-sub input,
    #main > section .comp__write-a-review label.label-sub select,
    #main > section .comp__write-a-review label.label-sub textarea {
      margin-top: 0; }
    #main > section .comp__write-a-review label input,
    #main > section .comp__write-a-review label select,
    #main > section .comp__write-a-review label textarea {
      margin-top: 10px;
      margin-bottom: 10px; }
      #main > section .comp__write-a-review label input.hide,
      #main > section .comp__write-a-review label select.hide,
      #main > section .comp__write-a-review label textarea.hide {
        display: none; }
    #main > section .comp__write-a-review ::-webkit-input-placeholder {
      text-align: right; }
    #main > section .comp__write-a-review ::-moz-placeholder {
      text-align: right; }
    #main > section .comp__write-a-review :-ms-input-placeholder {
      text-align: right; }
    #main > section .comp__write-a-review input:-moz-placeholder {
      text-align: right; }
    #main > section .comp__write-a-review select {
      padding-right: 30px;
      display: block;
      background-color: transparent; }
    #main > section .comp__write-a-review .row {
      position: relative; }
      #main > section .comp__write-a-review .row:before, #main > section .comp__write-a-review .row:after {
        content: " ";
        display: table; }
      #main > section .comp__write-a-review .row:after {
        clear: both; }
    #main > section .comp__write-a-review .field-overall_rating {
      margin-bottom: 10px; }
    #main > section .comp__write-a-review .field-agree {
      margin-top: 10px; }
    #main > section .comp__write-a-review .extra {
      display: inline-block;
      width: auto;
      position: absolute;
      right: 0;
      color: #81898c;
      font-size: 15px; }
    #main > section .comp__write-a-review .war-submit {
      text-align: center; }
    #main > section .comp__write-a-review .war-nb,
    #main > section .comp__write-a-review .war-nb p {
      font-size: 0.75rem;
      text-align: center; }
    #main > section .comp__write-a-review .field-route .mobile-hide {
      display: none; }
    @media only screen and (min-width: 48em) {
      #main > section .comp__write-a-review .field-route .mobile-hide {
        display: inline-block; }
      #main > section .comp__write-a-review .field-route > div {
        display: inline-block;
        width: 40%;
        vertical-align: top; } }
    #main > section .comp__write-a-review .ui-helper-hidden-accessible {
      display: none; }
    #main > section .comp__write-a-review .slide-spacer {
      display: inline-block;
      padding-top: 26px; }
    #main > section .comp__write-a-review .slider-control {
      border: solid 1px #c0c8cb;
      display: inline-block;
      height: 10px;
      position: relative;
      text-align: left;
      width: 150px;
      background-color: #111; }
      #main > section .comp__write-a-review .slider-control > * {
        border: solid 1px #111;
        cursor: default;
        display: block;
        height: 20px;
        left: 0;
        position: absolute;
        text-align: left;
        top: -5px;
        -ms-touch-action: none;
            touch-action: none;
        width: 20px;
        z-index: 2;
        background-color: #fff; }
    #main > section .comp__write-a-review .field-overall_rating .slider-component {
      float: right; }
    #main > section .comp__write-a-review .field-overall_rating .slider-control,
    #main > section .comp__write-a-review .field-overall_rating .show-rating {
      vertical-align: middle; }
    #main > section .comp__write-a-review .field-overall_rating .slider-control {
      margin-right: 20px; }
    #main > section .comp__write-a-review .field-overall_rating .show-rating {
      border-radius: 50%;
      background: #f78152;
      color: white;
      font-family: RobotoBold, Helvetica, Arial;
      font-size: 1.75rem;
      font-weight: normal;
      padding: 0;
      display: inline-block;
      width: 78px;
      height: 78px;
      text-align: center;
      line-height: 78px; }
    #main > section .comp__write-a-review .field-overall_rating input {
      display: none; }
    #main > section .comp__write-a-review .field-overall_rating .error {
      margin-top: 60px; }
    #main > section .comp__write-a-review .field-about_you_header h3 {
      border-bottom: none;
      border-top: solid 1px #c0c8cb; }
    #main > section .comp__write-a-review .star-rating {
      margin-bottom: 0; }
      #main > section .comp__write-a-review .star-rating small.error {
        margin-top: 20px; }
      #main > section .comp__write-a-review .star-rating ul {
        display: inline-block;
        list-style: none;
        float: right;
        margin-bottom: 0; }
        #main > section .comp__write-a-review .star-rating ul li {
          display: inline-block;
          vertical-align: middle; }
          #main > section .comp__write-a-review .star-rating ul li input {
            display: none;
            width: 24px;
            height: 26px;
            position: relative;
            opacity: 0;
            vertical-align: middle; }
          #main > section .comp__write-a-review .star-rating ul li input + label {
            position: relative;
            display: inline-block;
            width: 35px;
            height: 35px;
            margin: 2px;
            opacity: 1;
            z-index: 1;
            text-align: center;
            font-size: 10px;
            font-weight: bold;
            overflow: hidden;
            text-indent: -9999px; }
          #main > section .comp__write-a-review .star-rating ul li input + label:before {
            content: " ";
            background: url(../images/flight-icons/icon_star-off.png) no-repeat center;
            background-size: 100%;
            width: 35px;
            height: 35px;
            position: absolute;
            left: 0;
            display: inline-block;
            z-index: -1; }
          #main > section .comp__write-a-review .star-rating ul li input[value=na] + label {
            padding-right: 20px;
            border-right: solid 1px #c0c8cb;
            width: 45px; }
          #main > section .comp__write-a-review .star-rating ul li input[value=na] + label:before {
            background-image: url(../images/flight-icons/icon_star-na.png); }
          #main > section .comp__write-a-review .star-rating ul li input:checked + label:before,
          #main > section .comp__write-a-review .star-rating ul li.checkme input + label:before {
            background-image: url(../images/flight-icons/icon_star-on.png); }
          #main > section .comp__write-a-review .star-rating ul li input[value=na]:checked + label:before,
          #main > section .comp__write-a-review .star-rating ul li.checkme input[value=na] + label:before {
            background-image: url(../images/flight-icons/icon_star-na-on.png); }
    #main > section .comp__write-a-review .field-type_of_traveller ul {
      margin-left: 0;
      margin-top: 10px;
      text-align: center; }
    #main > section .comp__write-a-review .field-type_of_traveller li {
      display: inline-block;
      margin-right: 5px; }
    #main > section .comp__write-a-review .field-type_of_traveller input {
      display: none;
      width: 24px;
      height: 26px;
      position: relative;
      opacity: 0;
      vertical-align: middle; }
    #main > section .comp__write-a-review .field-type_of_traveller input + label {
      position: relative;
      display: inline-block;
      width: 135px;
      height: 135px;
      margin: 2px;
      z-index: 1;
      text-align: center;
      border: solid 1px #c0c8cb;
      background: url(../images/flight-icons/icon_airline.png) no-repeat center;
      background-size: 80px auto;
      background-position-y: 20px;
      color: #094778;
      font-size: 18px;
      font-weight: bold;
      padding-top: 95px;
      border-radius: 3px;
      opacity: 1; }
    #main > section .comp__write-a-review .field-type_of_traveller #type_of_traveller_business + label {
      background-image: url(../images/flight-icons/icon_business.png); }
    #main > section .comp__write-a-review .field-type_of_traveller #type_of_traveller_family + label {
      background-image: url(../images/flight-icons/icon_family.png); }
    #main > section .comp__write-a-review .field-type_of_traveller #type_of_traveller_couple + label {
      background-image: url(../images/flight-icons/icon_couple.png); }
    #main > section .comp__write-a-review .field-type_of_traveller #type_of_traveller_solo + label {
      background-image: url(../images/flight-icons/icon_solo.png); }
    #main > section .comp__write-a-review .field-type_of_traveller input:checked + label {
      background-image: url(../images/flight-icons/icon_airline-on.png);
      background-color: #f78152;
      border: none;
      color: #fff; }
    #main > section .comp__write-a-review .field-type_of_traveller #type_of_traveller_business:checked + label {
      opacity: 1; }
    #main > section .comp__write-a-review .field-type_of_traveller #type_of_traveller_family:checked + label {
      opacity: 1; }
    #main > section .comp__write-a-review .field-type_of_traveller #type_of_traveller_couple:checked + label {
      opacity: 1; }
    #main > section .comp__write-a-review .field-type_of_traveller #type_of_traveller_solo:checked + label {
      opacity: 1; }
    @media only screen and (min-width: 48em) {
      #main > section .comp__write-a-review .radio_label {
        padding-left: 0;
        padding-right: 0;
        width: 58.33333%;
        float: left; } }
    @media only screen and (min-width: 48em) {
      #main > section .comp__write-a-review .radio_options {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
        width: 41.66667%;
        float: left; } }
    #main > section .comp__write-a-review .fileUploads:before, #main > section .comp__write-a-review .fileUploads:after {
      content: " ";
      display: table; }
    #main > section .comp__write-a-review .fileUploads:after {
      clear: both; }
    #main > section .comp__write-a-review .fileUploads span {
      display: block;
      width: 90px;
      margin-left: 5px;
      margin-right: 5px;
      position: absolute;
      text-align: center;
      font-weight: normal; }
      #main > section .comp__write-a-review .fileUploads span.file {
        font-size: 11px;
        height: 1.4em;
        line-height: 1.4em;
        top: 75px;
        left: 0;
        overflow: hidden; }
      #main > section .comp__write-a-review .fileUploads span.cancel {
        z-index: 999;
        top: 0;
        left: 34px;
        font-family: 'icons';
        font-size: 24px;
        font-style: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        color: #f78152; }
        #main > section .comp__write-a-review .fileUploads span.cancel:hover {
          cursor: pointer; }
    #main > section .comp__write-a-review .fileUploads .fileUpload:first-child .cancel {
      display: none; }
    #main > section .comp__write-a-review .fileUpload {
      position: relative;
      overflow: hidden;
      margin: 10px;
      display: inline-block;
      width: 100px;
      height: 100px;
      border: solid 2px #ccc;
      border-radius: 7px;
      background: url(../images/flight-icons/icon_camera.png) no-repeat center center transparent;
      background-size: 50px; }
      #main > section .comp__write-a-review .fileUpload:before {
        display: block;
        content: '';
        position: absolute;
        width: 100px;
        height: 100px;
        background-color: #fff;
        opacity: 0.7;
        top: 0;
        left: 0; }
      #main > section .comp__write-a-review .fileUpload.uploaded:before {
        opacity: 0.25; }
    #main > section .comp__write-a-review .fileUpload input.upload {
      position: absolute;
      top: 0;
      right: 0;
      margin: 0;
      padding: 0;
      font-size: 20px;
      cursor: pointer;
      opacity: 0;
      filter: alpha(opacity=0);
      height: 100%; }
  #main > section .write-a-review-progress > * {
    display: inline-block;
    position: relative;
    background-color: #c0c8cb;
    color: #81898c;
    border-radius: 50%;
    width: 39px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    margin-right: 100px;
    margin-left: 100px; }
    #main > section .write-a-review-progress > *:before {
      top: 16px;
      content: '';
      display: inline-block;
      position: absolute;
      width: 240px;
      height: 8px;
      background-color: #c0c8cb;
      left: -100px;
      float: left;
      z-index: -1; }
  #main > section .write-a-review-progress > *:first-child {
    margin-left: 0; }
    #main > section .write-a-review-progress > *:first-child:before {
      width: 106px;
      left: 39px; }
  #main > section .write-a-review-progress > *:last-child {
    margin-right: 0;
    margin-left: 115px; }
    #main > section .write-a-review-progress > *:last-child:before {
      width: 120px;
      left: -119px; }
  #main > section .write-a-review-progress .current,
  #main > section .write-a-review-progress .complete {
    background-color: #f78152;
    border: solid 3px #c0c8cb;
    color: #fff;
    line-height: 37px; }
    #main > section .write-a-review-progress .current:before,
    #main > section .write-a-review-progress .complete:before {
      top: 14px;
      background-color: #f78152;
      z-index: -1; }
    #main > section .write-a-review-progress .current:first-child:before,
    #main > section .write-a-review-progress .complete:first-child:before {
      width: 112px;
      left: 33px; }
    #main > section .write-a-review-progress .current:last-child:before,
    #main > section .write-a-review-progress .complete:last-child:before {
      width: 120px;
      left: -119px; }
  #main > section .write-a-review-progress .complete:after {
    content: '\f126';
    font-family: 'icons';
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    background-color: #f78152;
    top: -3px;
    left: -3px;
    z-index: 2; }
  #main > section .war-review-types {
    margin-bottom: 50px;
    text-align: center; }
    #main > section .war-review-types > * {
      display: inline-block;
      margin-right: 10px; }
    #main > section .war-review-types input {
      display: none;
      width: 24px;
      height: 26px;
      position: relative;
      opacity: 0;
      vertical-align: middle; }
    #main > section .war-review-types input + label {
      position: relative;
      display: inline-block;
      width: 200px;
      height: 200px;
      margin: 2px;
      opacity: 1;
      z-index: 1;
      text-align: center;
      border: solid 1px #c0c8cb;
      background: url(../images/flight-icons/icon_airline.png) no-repeat center;
      background-size: 80px auto;
      background-position-y: 30px;
      color: #094778;
      font-size: 18px;
      font-weight: bold;
      padding-top: 125px;
      border-radius: 3px; }
      #main > section .war-review-types input + label:after {
        content: '';
        display: inline-block;
        position: absolute;
        width: 30px;
        height: 30px;
        line-height: 20px;
        background-color: #fff;
        border: solid 2px #c0c8cb;
        border-radius: 50%;
        left: 85px;
        bottom: 15px; }
    #main > section .war-review-types .war-review-types--seat input + label {
      background-image: url(../images/flight-icons/icon_seat.png); }
    #main > section .war-review-types .war-review-types--airport input + label {
      background-image: url(../images/flight-icons/icon_airport.png); }
    #main > section .war-review-types .war-review-types--lounge input + label {
      background-image: url(../images/flight-icons/icon_lounge.png); }
    #main > section .war-review-types input:checked + label {
      /*background-image: url(../images/flight-icons/icon_airline-on.png);*/
      background-color: #f78152;
      border: none;
      color: #fff; }
      #main > section .war-review-types input:checked + label:after {
        content: '';
        display: inline-block;
        position: absolute;
        width: 30px;
        height: 30px;
        line-height: 20px;
        background-color: transparent;
        border: none;
        border-radius: 0;
        background: url(../images/flight-icons/icon_radio-on.png) no-repeat center;
        background-size: 30px auto; }
    #main > section .war-review-types .war-review-types--seat input:checked + label {
      background-image: url(../images/flight-icons/icon_seat-on.png); }
    #main > section .war-review-types .war-review-types--airport input:checked + label {
      background-image: url(../images/flight-icons/icon_airport-on.png); }
    #main > section .war-review-types .war-review-types--lounge input:checked + label {
      background-image: url(../images/flight-icons/icon_lounge-on.png); }
  #main > section .comp .review-signup {
    background-color: #eee;
    margin-left: -16px;
    padding: 1px;
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc; }
    #main > section .comp .review-signup ul {
      text-align: center; }
    #main > section .comp .review-signup .field-password {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 50%;
      float: left;
      text-align: left; }
      #main > section .comp .review-signup .field-password input {
        margin-top: 0; }
    #main > section .comp .review-signup .field-submit {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 50%;
      float: left; }
      #main > section .comp .review-signup .field-submit button {
        display: block;
        width: 100%; }
    #main > section .comp .review-signup form {
      padding-right: 0; }
    #main > section .comp .review-signup li {
      font-style: italic; }
    #main > section .comp .review-signup form {
      padding-right: 0; }
  #main > section .review-cta li {
    font-style: italic; }
  #main > section .war-btns {
    text-align: center; }
  #main > section .review-finish {
    text-align: center; }
  #main > section .create-account {
    display: inline-block;
    width: auto;
    margin-left: auto;
    margin-right: auto; }
  #main > section .comp .war-again li {
    margin-right: 0; }
    #main > section .comp .war-again li label {
      width: 190px; }
  #main > section .comp .war-again form {
    padding-right: 16px; }
  #main > section .review-finish h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: none; }
  #main > section .accordion-toggle {
    cursor: pointer;
    color: #f78152;
    background: none;
    font-size: 16px;
    margin: 10px 0 0 21px; 
  }
    #main > section .accordion-toggle:hover {
       }
#main > section .accordion-toggle .arrow-down {
  border-color: #f78152 transparent transparent transparent; }
  #main > section h4.accordion-toggle:hover {
    color: #f78152; }
  #main > section .accordion-content {
    display: none;
    height: 250px;
    overflow-y: scroll; }
  #main > section .accordion-content.default {
    display: block; }
  #main > section.border-bottom,
  #main > section .border-bottom {
    border-bottom: solid 1px #a6b8c1;
    margin-bottom: 1.875rem; }
    #main > section.border-bottom .col-content,
    #main > section .border-bottom .col-content {
      padding-bottom: 0;
      margin-bottom: 0; }
  #main > section.border-top,
  #main > section .border-top {
    border-top: solid 1px #a6b8c1; }
  #main > section.closer-top,
  #main > section .closer-top {
    margin-top: 0; }
  #main > section.closer-bottom,
  #main > section .closer-bottom {
    margin-bottom: 0; }
  #main > section.closer,
  #main > section .closer {
    margin-top: 0;
    margin-bottom: 0; }

#main > section .comp__nav-thumbs ul.items.icon-menu {
  border-bottom: 1px solid silver; }
  #main > section .comp__nav-thumbs ul.items.icon-menu li {
    border-right: 1px solid silver;
    padding-top: 15px;
    padding-bottom: 15px; }
  #main > section .comp__nav-thumbs ul.items.icon-menu li:last-child {
    border-right: 0px; }

#main > section .comp_review-header .rating-totals .rating-10.rating-large {
  font-size: 2rem;
  width: 100px;
  height: 100px;
  line-height: 100px; }

table#skytrax {
  border-collapse: collapse;
  width: 100%; }

table#skytrax th, table#skytrax td {
  padding: 0.25rem;
  text-align: left;
  border: 1px solid #ccc; }

table#skytrax tbody tr:nth-child(odd) {
  background: #eee; }

.sidebar .mediumrectangle img {
  width: 100%;
  margin-bottom: 0.5em; }

.sidebar .mediumrectangle .center-cropped {
  height: 100px;
  overflow: hidden; }
  .sidebar .mediumrectangle .center-cropped img {
    top: 50%;
    position: relative;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }

.sidebar .mediumrectangle p {
  margin-top: 0.5em; }

/* IMAGE LIGHTBOX SELECTOR */
#imagelightbox {
  cursor: pointer;
  position: fixed;
  z-index: 10000;
  -ms-touch-action: none;
  touch-action: none;
  /* 50 */
  box-shadow: 0 0 3.125em rgba(0, 0, 0, 0.75);
  /* 50 */ }

/* ACTIVITY INDICATION */
#imagelightbox-loading,
#imagelightbox-loading div {
  border-radius: 50%; }

#imagelightbox-loading {
  width: 2.5em;
  /* 40 */
  height: 2.5em;
  /* 40 */
  background-color: #444;
  background-color: rgba(247, 129, 82, 0.5);
  position: fixed;
  z-index: 10003;
  top: 50%;
  left: 50%;
  padding: 0.625em;
  /* 10 */
  margin: -1.25em 0 0 -1.25em;
  /* 20 */
  /* 40 */
  box-shadow: 0 0 2.5em rgba(0, 0, 0, 0.75);
  /* 40 */ }

#imagelightbox-loading div {
  width: 1.25em;
  /* 20 */
  height: 1.25em;
  /* 20 */
  background-color: #f78152;
  -webkit-animation: imagelightbox-loading .5s ease infinite;
  animation: imagelightbox-loading .5s ease infinite; }

@-webkit-keyframes imagelightbox-loading {
  from {
    opacity: .5;
    -webkit-transform: scale(0.75); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1); }
  to {
    opacity: .5;
    -webkit-transform: scale(0.75); } }

@keyframes imagelightbox-loading {
  from {
    opacity: .5;
    -webkit-transform: scale(0.75);
            transform: scale(0.75); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); }
  to {
    opacity: .5;
    -webkit-transform: scale(0.75);
            transform: scale(0.75); } }

/* OVERLAY */
#imagelightbox-overlay {
  background-color: #fff;
  background-color: rgba(224, 224, 224, 0.9);
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

/* "CLOSE" BUTTON */
#imagelightbox-close {
  width: 4em;
  height: 4em;
  text-align: left;
  background-color: #1F4F82;
  border-radius: 50%;
  position: fixed;
  z-index: 10002;
  top: 2.5em;
  /* 40 */
  right: 2.5em;
  /* 40 */
  transition: all .3s ease; }

#imagelightbox-close:hover,
#imagelightbox-close:focus {
  background-color: #f78152; }

#imagelightbox-close:before,
#imagelightbox-close:after {
  width: 2px;
  background-color: #fff;
  content: '';
  position: absolute;
  top: 20%;
  bottom: 20%;
  left: 50%;
  margin-left: -1px; }

#imagelightbox-close:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

#imagelightbox-close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.homeIntro {
  padding: 1em 0; }
  .homeIntro p {
    margin: 0;
    line-height: 1.1; }

.tabsText p {
  margin: 0.5rem 0; }

.homeHero {
  height: 200px;
  background: no-repeat center;
  background-size: cover;
  position: relative; }
  .homeHero h1 {
    color: #fff;
    margin: 0;
    font-size: 1.3rem; }
  .homeHero #review-search-bar .gcs-input.nav-search td.gsc-search-button input.gsc-search-button {
    background: #0192d1;
    border-radius: 0;
    margin-left: 0;
    padding: 5px;
    width: 50px;
    text-indent: -9999px;
    background-image: url(../images/magnify_white.png);
    background-position: center center;
    background-repeat: no-repeat; }
    .homeHero #review-search-bar .gcs-input.nav-search td.gsc-search-button input.gsc-search-button:hover {
      background: #40aedc;
      background-image: url(../images/magnify_white.png);
      background-position: center center;
      background-repeat: no-repeat; }
  .homeHero #review-search-bar .gcs-input.nav-search .gsc-control-searchbox-only .gsc-input:after {
    content: none; }

.opacityBox {
  background-color: rgba(10, 59, 99, 0.7);
  padding: 1.5em 1em;
  display: inline-block;
  border-radius: 5px;
  width: 352px; }

.skyRatingHome {
  margin: 15px 0; }
  .skyRatingHome .skyRatingContent .text_header {
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    font-size: 16px; }
  .skyRatingHome .skyRatingContent p {
    margin-bottom: 0.5rem; }
  .skyRatingHome .skyRatingContent ul {
    margin-left: 0; }

#main > section .col-content.aq-ad-top .aq-ad {
  margin: 16px 0; }

.excerpt-read-more {
  white-space: nowrap; }

.starRating {
  height: 20px;
  background-repeat: no-repeat;
  background-position: left center;
  margin-bottom: 0.5em; }
  .starRating.one {
    background-image: url(../images/1_Star.png); }
  .starRating.two {
    background-image: url(../images/2_Star.png); }
  .starRating.three {
    background-image: url(../images/3_Star.png); }
  .starRating.four {
    background-image: url(../images/4_Star.png); }
  .starRating.five {
    background-image: url(../images/5_Star.png); }

.has-cookie-bar #catapult-cookie-bar {
  padding: 5px 20px; }

/**
* DEGBUG STYLING
* For assisting development without fookin up the layout
**/
.ge-debug,
.ge-layout {
  display: none;
  background-color: #ccc;
  font-size: 10px;
  font-family: "Courier New", Courier; }

.ge-layout.data {
  background-color: #7ea473;
  color: white; }

.ge-layout.error {
  background-color: #7ea473;
  color: white; }

.ge-layout.message {
  background-color: #7ea473;
  color: white; }

body.debug-on:after {
  content: 'small';
  position: fixed;
  top: 0;
  left: 0;
  display: inline-block;
  background: #333;
  color: white;
  z-index: 100000;
  font-size: 0.625rem;
  padding: 5px; }

.debug-on .ge-debug,
.debug-on .ge-layout {
  display: block; }

/*
MEDIUM
*/
@media only screen and (min-width: 48em) {
  body.debug-on:after {
    content: 'medium'; } }

/*
LARGE
*/
@media only screen and (min-width: 60em) {
  body.debug-on:after {
    content: 'large'; } }

/*
XLARGE
*/
@media only screen and (min-width: 90.063em) {
  body.debug-on:after {
    content: 'xlarge'; } }

/*
XXLARGE
*/
@media only screen and (min-width: 120.063em) {
  body.debug-on:after {
    content: 'xxlarge'; } }

/*
This theme has 2 sizes - small (mobile) and large (tablet + desktop)
The desktop kicks in at 960 as that is a fixed width applied in the theme.
There is a javascript work around in script.js to force tablets with a res >=768
to render the desktop version by amending the veiwport meta content value
*/
@media only screen and (max-width: 66em) {
  #wpadminbar {
    display: none; }
  html body.admin-bar .off-canvas-wrap {
    margin-top: -46px; }
  #container {
    min-height: 100%;
    min-height: 100vh; }
  #main > section,
  #container > .header {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 1280px; }
    #main > section:before, #main > section:after,
    #container > .header:before,
    #container > .header:after {
      content: " ";
      display: table; }
    #main > section:after,
    #container > .header:after {
      clear: both; }
  #content > *, header.header > *, footer.footer > * {
    min-width: 0; }
  .menu-container .gcs-input.nav-search .gsc-control-searchbox-only .gsc-input {
    position: initial !important; }
    .menu-container .gcs-input.nav-search .gsc-control-searchbox-only .gsc-input:before {
      display: none; }
  /*
.menu-container {
	.gcs-input.nav-search {
		.gsc-control-searchbox-only {
			.gsc-input.yup {				
				&:before {
					content: 'Search the site';
					display: block;
					height: 37px;
					position: absolute;
					left: 20px;
					top: 15px;
				}
				&.active {
					&:before {
						display: none;
					}
				}			
			}
		}
	}
}
*/
  .dummyheader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    background: #155a93 url(../images/nav/grad-header.jpg) repeat-x center top; }
  #inner-header .top, .dummyheader .top {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 1280px;
    padding-top: 0.5rem;
    padding-bottom: 0; }
    #inner-header .top:before, #inner-header .top:after, .dummyheader .top:before, .dummyheader .top:after {
      content: " ";
      display: table; }
    #inner-header .top:after, .dummyheader .top:after {
      clear: both; }
  #inner-header .brand-logo, .dummyheader .brand-logo {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    width: 66.66667%;
    float: left; }
    #inner-header .brand-logo a, .dummyheader .brand-logo a {
      display: block;
      padding-bottom: 8px; }
    #inner-header .brand-logo img, .dummyheader .brand-logo img {
      height: 60px; }
  #inner-header .menu-toggle, .dummyheader .menu-toggle {
    position: absolute;
    top: 12px;
    right: 20px; }
    #inner-header .menu-toggle:after, .dummyheader .menu-toggle:after {
      content: '\f169';
      font-family: "icons";
      color: white;
      font-size: 2.25rem; }
    #inner-header .menu-toggle span, .dummyheader .menu-toggle span {
      display: none; }
  #inner-header .top-bar, .dummyheader .top-bar {
    height: auto;
    max-height: 0;
    transition: max-height 900ms ease-out; }
    #inner-header .top-bar.open, .dummyheader .top-bar.open {
      max-height: 1300px; }
    #inner-header .top-bar .menu-class > li, .dummyheader .top-bar .menu-class > li {
      border-top: solid 1px #082035; }
  #inner-header .menu-container, .dummyheader .menu-container {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    float: left;
    max-height: 0;
    overflow: hidden;
    transition: max-height 900ms ease-out; }
    #inner-header .menu-container.open, .dummyheader .menu-container.open {
      border-top: solid 1px #082035;
      background: #0a3b63;
      max-height: 9999px; }
    #inner-header .menu-container .social, .dummyheader .menu-container .social {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 33.33333%;
      float: left;
      padding-top: 8px;
      padding-bottom: 8px; }
    #inner-header .menu-container .nav-user, .dummyheader .menu-container .nav-user {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 66.66667%;
      float: left;
      padding-top: 5px;
      padding-bottom: 5px; }
    #inner-header .menu-container .nav-search, .dummyheader .menu-container .nav-search {
      border-top: solid 1px #082035;
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 100%;
      float: left;
      text-align: center;
      padding-top: 8px; }
      #inner-header .menu-container .nav-search .gcs-input, .dummyheader .menu-container .nav-search .gcs-input {
        float: none;
        width: 100%; }
  #inner-header .nav-main .top-bar .top-bar-section, .dummyheader .nav-main .top-bar .top-bar-section {
    width: 100%; }
  #inner-header .nav-main .top-bar > ul > li.has-dropdown > a, .dummyheader .nav-main .top-bar > ul > li.has-dropdown > a {
    transition: all 900ms ease-out;
    position: relative; }
    #inner-header .nav-main .top-bar > ul > li.has-dropdown > a:after, .dummyheader .nav-main .top-bar > ul > li.has-dropdown > a:after {
      transition: all 300ms ease-out;
      top: 25px;
      display: block;
      -webkit-transform: rotate(90deg);
      transform: rotate(90deg); }
    #inner-header .nav-main .top-bar > ul > li.has-dropdown > a.active:after, .dummyheader .nav-main .top-bar > ul > li.has-dropdown > a.active:after {
      top: 20px;
      -webkit-transform: rotate(270deg);
      transform: rotate(270deg); }
  #inner-header .nav-main .top-bar > ul > li.airport-ratings .dropdown,
  #inner-header .nav-main .top-bar > ul > li.skytrax-awards .dropdown,
  #inner-header .nav-main .top-bar > ul > li.airline-ratings .dropdown, .dummyheader .nav-main .top-bar > ul > li.airport-ratings .dropdown,
  .dummyheader .nav-main .top-bar > ul > li.skytrax-awards .dropdown,
  .dummyheader .nav-main .top-bar > ul > li.airline-ratings .dropdown {
    position: relative !important; }
  #inner-header .nav-main .top-bar > ul > li .dropdown, .dummyheader .nav-main .top-bar > ul > li .dropdown {
    max-height: 0;
    overflow: hidden;
    transition: all 900ms ease-out;
    position: relative !important;
    top: 0;
    left: 0;
    height: auto;
    width: 100%; }
    #inner-header .nav-main .top-bar > ul > li .dropdown.open, .dummyheader .nav-main .top-bar > ul > li .dropdown.open {
      max-height: 9999px; }
    #inner-header .nav-main .top-bar > ul > li .dropdown:before, .dummyheader .nav-main .top-bar > ul > li .dropdown:before {
      display: none; }
    #inner-header .nav-main .top-bar > ul > li .dropdown .nav-links, .dummyheader .nav-main .top-bar > ul > li .dropdown .nav-links {
      border: none; }
      #inner-header .nav-main .top-bar > ul > li .dropdown .nav-links ul li.seperator, .dummyheader .nav-main .top-bar > ul > li .dropdown .nav-links ul li.seperator {
        display: none; }
      #inner-header .nav-main .top-bar > ul > li .dropdown .nav-links ul a, .dummyheader .nav-main .top-bar > ul > li .dropdown .nav-links ul a {
        transition: background 300ms ease-in-out;
        display: block;
        padding: 6px 12px 6px 24px;
        background-color: #f3f3f3;
        color: #4c4c4c; }
        #inner-header .nav-main .top-bar > ul > li .dropdown .nav-links ul a:hover, .dummyheader .nav-main .top-bar > ul > li .dropdown .nav-links ul a:hover {
          background: #dadada; }
  #main > section {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 1280px; }
    #main > section:before, #main > section:after {
      content: " ";
      display: table; }
    #main > section:after {
      clear: both; }
    #main > section .comp_review-header > .review-info .review-heading .info {
      padding-left: 0;
      padding-right: 0;
      width: 100%;
      float: left; }
    #main > section .comp_review-header > .review-info .review-heading .rating {
      display: none; }
    #main > section .comp_review-header > .review-info .customer-rating .ratings {
      padding-left: 0;
      padding-right: 0;
      width: 100%;
      float: left; }
    #main > section .comp_review-header > .review-info .customer-rating .rating-totals {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 100%;
      float: left; }
      #main > section .comp_review-header > .review-info .customer-rating .rating-totals .review-count {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
        width: 100%;
        float: left;
        max-width: 100%;
        padding-top: 0; }
      #main > section .comp_review-header > .review-info .customer-rating .rating-totals .customer-rating-total {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
        width: 50%;
        float: left; }
        #main > section .comp_review-header > .review-info .customer-rating .rating-totals .customer-rating-total .rating-10 {
          width: 100px;
          height: 100px;
          text-align: center;
          line-height: 100px; }
    #main > section .comp_review-header > .review-info .customer-rating .skytrax-rating-mob {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 50%;
      float: left;
      display: block; }
      #main > section .comp_review-header > .review-info .customer-rating .skytrax-rating-mob .skytrax-rating {
        width: 100px;
        height: 100px; }
    #main > section .comp {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 100%;
      float: left;
      padding-left: 0;
      padding-right: 0;
      float: none; }
      #main > section .comp .list-item.media {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0;
        margin-bottom: 0;
        max-width: 1280px;
        margin-bottom: 1.875rem; }
        #main > section .comp .list-item.media:before, #main > section .comp .list-item.media:after {
          content: " ";
          display: table; }
        #main > section .comp .list-item.media:after {
          clear: both; }
        #main > section .comp .list-item.media .rating-10 {
          display: block;
          float: left;
          width: 2.5rem;
          height: 2.5rem;
          line-height: 2.5rem;
          font-size: 0.75rem;
          margin-right: 10px; }
        #main > section .comp .list-item.media .body {
          width: auto;
          display: block;
          float: none;
          padding: 0;
          margin-left: 0; }
      #main > section .comp .comp_media-post .image img {
        width: 100%; }
      #main > section .comp .items {
        margin: 0; }
      #main > section .comp > .comp {
        padding-left: 0;
        padding-right: 0; }
    #main > section .comp.comp__adsense {
      margin-bottom: 0; }
      #main > section .comp.comp__adsense .mobile {
        display: inherit !important; }
      #main > section .comp.comp__adsense .desktop {
        display: none !important; }
      #main > section .comp.comp__adsense ins {
        display: block !important;
        max-width: 100%;
        width: auto !important; }
    #main > section .comp__bgslider h1 {
      font-size: 2.5rem; }
    #main > section .comp_media {
      text-align: center; }
      #main > section .comp_media .image {
        float: none;
        display: inline-block;
        margin-bottom: 1rem; }
        #main > section .comp_media .image img {
          display: inline-block; }
    #main > section .col-content {
      padding-top: 0.5rem;
      padding-bottom: 0.5rem;
      width: 100% !important;
      background: #fff; }
      #main > section .col-content > .comp {
        padding-left: 1rem;
        padding-right: 1rem; }
        #main > section .col-content > .comp.comp__adsense, #main > section .col-content > .comp.leaderboard {
          padding-left: 0;
          padding-right: 0; }
      #main > section .col-content .comp__tabbed-modules,
      #main > section .col-content .comp__review-tabs {
        padding: 0;
        padding-right: 0; }
        #main > section .col-content .comp__tabbed-modules .tabs li a,
        #main > section .col-content .comp__review-tabs .tabs li a {
          text-indent: -9999px;
          padding: 24px;
          min-width: 48px; }
        #main > section .col-content .comp__tabbed-modules .tabs li.airline a,
        #main > section .col-content .comp__tabbed-modules .tabs li.seat a,
        #main > section .col-content .comp__tabbed-modules .tabs li.lounge a,
        #main > section .col-content .comp__tabbed-modules .tabs li.airport a,
        #main > section .col-content .comp__review-tabs .tabs li.airline a,
        #main > section .col-content .comp__review-tabs .tabs li.seat a,
        #main > section .col-content .comp__review-tabs .tabs li.lounge a,
        #main > section .col-content .comp__review-tabs .tabs li.airport a {
          background-position: center center; }
        #main > section .col-content .comp__tabbed-modules .tabs li:first-child,
        #main > section .col-content .comp__review-tabs .tabs li:first-child {
          margin-left: 0.625rem; }
        #main > section .col-content .comp__tabbed-modules .tabs-content,
        #main > section .col-content .comp__review-tabs .tabs-content {
          padding-right: 1rem; }
    #main > section .generic-content {
      padding-left: 1rem;
      padding-right: 1rem; }
    #main > section .generic-sidebar-content {
      padding-left: 1rem;
      padding-right: 1rem; }
    #main > section .col-right {
      padding-left: 1rem;
      padding-right: 1rem;
      width: 100% !important; }
      #main > section .col-right > .comp {
        padding-right: 0; }
    #main > section .latest-reviews-footer {
      padding-left: 1rem;
      padding-right: 1rem;
      margin-bottom: 0.5rem;
      color: transparent;
      text-align: left; }
      #main > section .latest-reviews-footer:before {
        display: block;
        width: 100%;
        background-size: 1.75rem auto;
        margin: 0;
        top: 40px; }
    #main > section .comp__a2zindex .tabs-content > .content,
    #main > section .comp__dropped-modules .tabs-content > .content {
      margin-top: 0; }
    #main > section .comp__a2zindex .tabs-content .items,
    #main > section .comp__dropped-modules .tabs-content .items {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 50%;
      float: left; }
      #main > section .comp__a2zindex .tabs-content .items a,
      #main > section .comp__dropped-modules .tabs-content .items a {
        font-size: 0.75rem; }
    #main > section.content-reviews-navigation .comp__nav-sub {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 100%;
      float: left;
      text-align: center; }
    #main > section .latest-news .items > li {
      width: 100%; }
    #main > section.comp__nav-thumbs.comp ul.items,
    #main > section .col-content .comp__nav-thumbs.comp ul.items {
      display: block;
      padding: 0;
      margin: 0 -0.25rem;
      padding-top: 0.8rem;
      margin: 0; }
      #main > section.comp__nav-thumbs.comp ul.items:before, #main > section.comp__nav-thumbs.comp ul.items:after,
      #main > section .col-content .comp__nav-thumbs.comp ul.items:before,
      #main > section .col-content .comp__nav-thumbs.comp ul.items:after {
        content: " ";
        display: table; }
      #main > section.comp__nav-thumbs.comp ul.items:after,
      #main > section .col-content .comp__nav-thumbs.comp ul.items:after {
        clear: both; }
      #main > section.comp__nav-thumbs.comp ul.items > li,
      #main > section .col-content .comp__nav-thumbs.comp ul.items > li {
        display: block;
        height: auto;
        float: left;
        padding: 0 0.25rem 0.5rem; }
      #main > section.comp__nav-thumbs.comp ul.items > li,
      #main > section .col-content .comp__nav-thumbs.comp ul.items > li {
        width: 33.33333%;
        padding: 0 0.25rem 0.5rem;
        list-style: none; }
        #main > section.comp__nav-thumbs.comp ul.items > li:nth-of-type(1n),
        #main > section .col-content .comp__nav-thumbs.comp ul.items > li:nth-of-type(1n) {
          clear: none; }
        #main > section.comp__nav-thumbs.comp ul.items > li:nth-of-type(3n+1),
        #main > section .col-content .comp__nav-thumbs.comp ul.items > li:nth-of-type(3n+1) {
          clear: both; } }
    @media only screen and (max-width: 66em) and (max-width: 400px) {
      #main > section.comp__nav-thumbs.comp ul.items,
      #main > section .col-content .comp__nav-thumbs.comp ul.items {
        display: block;
        padding: 0;
        margin: 0 -0.25rem;
        padding-top: 0.8rem; }
        #main > section.comp__nav-thumbs.comp ul.items:before, #main > section.comp__nav-thumbs.comp ul.items:after,
        #main > section .col-content .comp__nav-thumbs.comp ul.items:before,
        #main > section .col-content .comp__nav-thumbs.comp ul.items:after {
          content: " ";
          display: table; }
        #main > section.comp__nav-thumbs.comp ul.items:after,
        #main > section .col-content .comp__nav-thumbs.comp ul.items:after {
          clear: both; }
        #main > section.comp__nav-thumbs.comp ul.items > li,
        #main > section .col-content .comp__nav-thumbs.comp ul.items > li {
          display: block;
          height: auto;
          float: left;
          padding: 0 0.25rem 0.5rem; }
        #main > section.comp__nav-thumbs.comp ul.items > li,
        #main > section .col-content .comp__nav-thumbs.comp ul.items > li {
          width: 100%;
          padding: 0 0.25rem 0.5rem;
          list-style: none; }
          #main > section.comp__nav-thumbs.comp ul.items > li:nth-of-type(1n),
          #main > section .col-content .comp__nav-thumbs.comp ul.items > li:nth-of-type(1n) {
            clear: none; }
          #main > section.comp__nav-thumbs.comp ul.items > li:nth-of-type(1n+1),
          #main > section .col-content .comp__nav-thumbs.comp ul.items > li:nth-of-type(1n+1) {
            clear: both; }
        #main > section.comp__nav-thumbs.comp ul.items li,
        #main > section .col-content .comp__nav-thumbs.comp ul.items li {
          max-width: none; } }

@media only screen and (max-width: 66em) {
    #main > section.comp__querylist.comp ul.items,
    #main > section .col-content .comp__querylist.comp ul.items {
      margin: 0; }
      #main > section.comp__querylist.comp ul.items > li,
      #main > section .col-content .comp__querylist.comp ul.items > li {
        padding-right: 0; }
        #main > section.comp__querylist.comp ul.items > li:nth-of-type(2n+1),
        #main > section .col-content .comp__querylist.comp ul.items > li:nth-of-type(2n+1) {
          padding-left: 0; }
    #main > section .comp__a2zindex .tabs {
      text-align: center; }
      #main > section .comp__a2zindex .tabs .tab-title {
        min-height: 40px; }
    #main > section .comp__a2zindex .tabs-content .content {
      max-height: 70vh;
      overflow-y: auto; }
      #main > section .comp__a2zindex .tabs-content .content .items:nth-child(2n+1) {
        clear: left; }
  #main > .layout-section.full-width-content .col-content > * {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0; }
  #main > .full-width-bg .col-content > .comp {
    padding-left: 0;
    padding-right: 0; }
  #main > section .col-content .comp__tabbed-modules.homeTabs {
    padding-left: 16px; }
  .homeTabs .tabs {
    margin-left: -1rem; }
  .inner-wrap {
    min-height: 100vh; }
  .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto; }
  .layout-2 > .col-content {
    border-right: none; }
  .footer #inner-footer {
    padding: 1rem; }
    .footer #inner-footer .nav-search .gcs-input {
      float: none;
      margin-left: auto;
      margin-right: auto; }
    .footer #inner-footer .footer-nav {
      text-align: center; }
      .footer #inner-footer .footer-nav h2 {
        margin-bottom: 0;
        margin-top: 2rem; }
    .footer #inner-footer .description,
    .footer #inner-footer .copyright {
      width: 100%;
      margin-top: 2rem;
      margin-left: 0 !important;
      text-align: center; }
  .footer .social {
    float: none;
    top: 0; }
  #main > section article.single_news_item {
    padding-left: 16px; }
  .col-content.news_landing_content h1,
  article.news_item {
    padding-left: 16px; }
  #main > section.full-width-bg .comp__bgslider {
    height: 230px; }
  #main > section .comp__slider .slides .slick-slide, #main > section .comp__bgslider .slides .slick-slide {
    min-height: 200px; }
  #main > section .comp__bgslider .slides {
    height: 160px; }
  #main > section.full-width-bg .comp__bgslider .text_content {
    top: -265px; }
    #main > section.full-width-bg .comp__bgslider .text_content h1 {
      display: none; }
  #main > section.full-width-bg .comp__bgslider .widget-container {
    border-radius: 0.2rem; }
  #main > section.full-width-bg .comp__bgslider .text_content.widget-container {
    text-align: center !important;
    width: 90%;
    padding: 1rem 1rem; }
    #main > section.full-width-bg .comp__bgslider .text_content.widget-container h2.text_header {
      margin-bottom: 0.5em;
      margin-top: 0em;
      float: none; }
    #main > section.full-width-bg .comp__bgslider .text_content.widget-container .gcs-input.nav-search {
      width: 95%; }
      #main > section.full-width-bg .comp__bgslider .text_content.widget-container .gcs-input.nav-search .gsc-control-searchbox-only td.gsc-input .gsc-input {
        width: 95%; }
      #main > section.full-width-bg .comp__bgslider .text_content.widget-container .gcs-input.nav-search .gsc-control-searchbox-only td.gsc-search-button {
        border-right: 0px;
        padding-right: 0px; }
        #main > section.full-width-bg .comp__bgslider .text_content.widget-container .gcs-input.nav-search .gsc-control-searchbox-only td.gsc-search-button input.gsc-search-button {
          left: 10%; }
    #main > section.full-width-bg .comp__bgslider .text_content.widget-container a {
      margin: 0.5em 0.2em 0em 0em;
      float: none; }
  .homeHero {
    display: none; }
  .sectionHeadWrap {
    margin-left: 0.625rem; }
  .review_col {
    width: 45%;
    float: left; }
  #main > section .comp__querylist.latest-reviews ul.item {
    width: 100%;
    float: none; }
  .latest-reviews-footer .block_link {
    width: 100%; }
    .latest-reviews-footer .block_link:nth-of-type(1) {
      border-bottom: 1px solid #5cbae1; }
    .latest-reviews-footer .block_link:nth-of-type(2) {
      border-top: 1px solid #006aa3;
      border-bottom: 1px solid #5cbae1; }
    .latest-reviews-footer .block_link:nth-of-type(3) {
      border-top: 1px solid #006aa3; } }

@media only screen and (max-width: 66em) and (max-width: 600px) {
  #main > section .comp .list-item.media .body .tc_mobile {
    max-height: 80px;
    overflow: hidden; }
    #main > section .comp .list-item.media .body .tc_mobile.active {
      max-height: none; }
  #main > section .comp .list-item.media .body .tc_mobile_only {
    display: block; } }

@media only screen and (max-width: 66em) {
  .tab_border_wrap {
    padding-left: 1rem;
    padding-right: 1rem; }
  .tab_border_heading {
    margin-left: 0.625rem; } }

@media only screen and (max-width: 66em) and (max-width: 600px) {
  .review-ad {
    display: none; }
  .hide-mobile-ad {
    display: none; }
  #main > section.border-top,
  #main > section .border-top {
    border-top: none; } }

@media only screen and (max-width: 66em) and (max-width: 500px) {
  .comp_media-post {
    /*
		.body{
			float: left;
			width: 60%;
			padding-left: 5px;
		}
*/ }
    .comp_media-post .image {
      /*
			float: left;
			width: 40%;
*/
      clear: both; }
  #main > section.comp__nav-thumbs.comp ul.items > li,
  #main > section .col-content .comp__nav-thumbs.comp ul.items > li {
    width: 100%;
    padding: 0 0.25rem 0.5rem;
    list-style: none;
    max-width: none; } }

/*
MEDIUM
*/
@media only screen and (min-width: 48em) {
  /*#container>.header,
#inner-header,
#inner-header .top {
	max-width: 100%;
}*/
  .fixed-nav-header {
    margin-bottom: 35px; } }

@media only screen and (min-width: 48em) and (min-width: 1050px) {
  #inner-header .bottom.fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%; }
  #inner-header .top {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 1280px;
    padding: 16px 0 13px 0; }
    #inner-header .top:before, #inner-header .top:after {
      content: " ";
      display: table; }
    #inner-header .top:after {
      clear: both; }
    #inner-header .top .brand-logo {
      margin: 0;
      padding-bottom: 0;
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 33.33333%;
      float: left; }
      #inner-header .top .brand-logo img {
        height: 40px;
        width: 217px; }
    #inner-header .top .menu-toggle {
      display: none; }
    #inner-header .top .menu-container {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 66.66667%;
      float: left;
      top: 2px; }
    #inner-header .top .social {
      margin-left: 18px;
      position: relative;
      float: right;
      text-align: right;
      top: 5px; }
      #inner-header .top .social li {
        display: inline-block;
        float: none; }
    #inner-header .top .nav-search {
      margin-left: 18px;
      float: right; }
    #inner-header .top .nav-user {
      position: relative;
      float: right;
      top: 10px; }
      #inner-header .top .nav-user li:first-child:before {
        content: url(../images/profile_icon1.png);
        vertical-align: sub;
        margin-right: 8px; }
    #inner-header .top > * {
      position: relative;
      margin-top: 0;
      margin-bottom: 0; }
  #inner-header .nav-main {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 1280px;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem; }
    #inner-header .nav-main:before, #inner-header .nav-main:after {
      content: " ";
      display: table; }
    #inner-header .nav-main:after {
      clear: both; }
    #inner-header .nav-main .top-bar {
      padding-left: 0;
      padding-right: 0;
      width: 100%;
      float: left;
      margin-left: auto;
      margin-right: auto;
      float: none;
      line-height: 35px;
      height: 35px; }
      #inner-header .nav-main .top-bar > ul > li {
        padding: 10px 0; }
        #inner-header .nav-main .top-bar > ul > li.has-dropdown > a:first-child {
          pointer-events: none;
          cursor: default; }
        #inner-header .nav-main .top-bar > ul > li > a {
          line-height: 15px;
          padding: 0px 24px; }
          #inner-header .nav-main .top-bar > ul > li > a:after {
            content: "";
            display: block;
            width: 0;
            height: 0;
            border: inset 4px;
            border-color: rgba(255, 255, 255, 0.4) transparent transparent transparent;
            border-top-style: solid;
            margin-top: -8.5px; }
        #inner-header .nav-main .top-bar > ul > li.write-a-review > a {
          padding: 0px 42px 0px 30px;
          position: relative; }
          #inner-header .nav-main .top-bar > ul > li.write-a-review > a:after {
            content: none; }
          #inner-header .nav-main .top-bar > ul > li.write-a-review > a:before {
            content: url(../images/war-icon1.png);
            position: absolute;
            right: 18px; }
        #inner-header .nav-main .top-bar > ul > li .dropdown {
          width: 28.5rem;
          padding: 0.7rem 1.5625rem 1.5625rem 1.5625rem;
          top: 35px;
          box-shadow: 8px 8px 6px -6px #888;
          -webkit-box-shadow: 8px 8px 6px -6px #888; }
          #inner-header .nav-main .top-bar > ul > li .dropdown.stick-right {
            position: absolute !important;
            left: initial;
            right: 0; }
          #inner-header .nav-main .top-bar > ul > li .dropdown label {
            padding: 0; }
            #inner-header .nav-main .top-bar > ul > li .dropdown label span {
              display: block; }
          #inner-header .nav-main .top-bar > ul > li .dropdown .nav-links {
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            margin-top: 0;
            margin-bottom: 0;
            max-width: 1280px; }
            #inner-header .nav-main .top-bar > ul > li .dropdown .nav-links:before, #inner-header .nav-main .top-bar > ul > li .dropdown .nav-links:after {
              content: " ";
              display: table; }
            #inner-header .nav-main .top-bar > ul > li .dropdown .nav-links:after {
              clear: both; }
            #inner-header .nav-main .top-bar > ul > li .dropdown .nav-links ul {
              padding-left: 0;
              padding-right: 0;
              width: 50%;
              float: left; }
              #inner-header .nav-main .top-bar > ul > li .dropdown .nav-links ul li {
                margin: 5px 0px 10px -10px; }
            #inner-header .nav-main .top-bar > ul > li .dropdown .nav-links .navSectionTitle {
              margin-top: 15px; }
        #inner-header .nav-main .top-bar > ul > li:nth-of-type(5) .dropdown, #inner-header .nav-main .top-bar > ul > li:nth-of-type(6) .dropdown {
          position: absolute !important;
          left: inherit;
          right: 0; }
  #inner-header .top-bar-section.right {
    display: none; } 
    .top-bar-section ul {
      display: flex;
    }
}

@media only screen and (min-width: 48em) {
  #review-search-bar .review-options {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 1280px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.5em 0; }
    #review-search-bar .review-options:before, #review-search-bar .review-options:after {
      content: " ";
      display: table; }
    #review-search-bar .review-options:after {
      clear: both; }
    #review-search-bar .review-options .review-search {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 58.33333%;
      float: left; }
    #review-search-bar .review-options .review-enter {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 41.66667%;
      float: left;
      text-align: right; }
  .nav-search {
    margin-top: 1.3125rem;
    margin-bottom: 2rem;
    position: relative; }
    .nav-search .nav-search__input,
    .nav-search .nav-search__btn {
      display: inline-block;
      vertical-align: bottom;
      width: 100%; }
      .nav-search .nav-search__input input,
      .nav-search .nav-search__btn input {
        margin: 0; }
    .nav-search .nav-search__btn {
      position: absolute;
      right: 0;
      bottom: 0;
      z-index: 1;
      width: 2.375rem; }
  #main > section .col-content .aq-ad {
    margin-bottom: 8px;
    margin-top: 8px;
    clear: both; }
  #container > .header .top-bar .top-bar-section.left {
    display: block; }
  .footer #inner-footer {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 1280px; 
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
    .footer #inner-footer:before, .footer #inner-footer:after {
      content: " ";
      display: table; }
    .footer #inner-footer:after {
      clear: both; }
    .footer #inner-footer .footer-nav {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 25%;
      float: left; }
      .footer #inner-footer .footer-nav .sub-nav {
        margin: 0; }
      .footer #inner-footer .footer-nav .side-nav {
        padding: 0; }
    .footer #inner-footer .description {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 50%;
      float: left; }
  .footer .credit {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 1280px; }
    .footer .credit:before, .footer .credit:after {
      content: " ";
      display: table; }
    .footer .credit:after {
      clear: both; }
    .footer .credit > p {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 100%;
      float: left;
      text-align: right;
      font-size: 0.8em; }
      .footer .credit > p a {
        color: #e2e9ed; }
  .latest-reviews-footer .block_link {
    border-right: 1px solid #006aa3;
    border-left: 1px solid #5cbae1; }
    .latest-reviews-footer .block_link:first-of-type {
      border-left: none; }
    .latest-reviews-footer .block_link:last-of-type {
      border-right: none; }
  .latest-reviews-footer .block_link {
    width: 33.3%; }
  .widgetImg:nth-of-type(2) {
    text-align: right; } }

@media only screen and (min-width: 48em) and (max-width: 1050px) {
  #inner-header .top, .dummyheader .top {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 1280px;
    padding-top: 0.5rem;
    padding-bottom: 0; }
    #inner-header .top:before, #inner-header .top:after, .dummyheader .top:before, .dummyheader .top:after {
      content: " ";
      display: table; }
    #inner-header .top:after, .dummyheader .top:after {
      clear: both; }
  #inner-header .brand-logo, .dummyheader .brand-logo {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    width: 66.66667%;
    float: left; }
    #inner-header .brand-logo a, .dummyheader .brand-logo a {
      display: block;
      padding-bottom: 8px; }
    #inner-header .brand-logo img, .dummyheader .brand-logo img {
      height: 60px; }
  #inner-header .menu-toggle, .dummyheader .menu-toggle {
    position: absolute;
    top: 12px;
    right: 20px; }
    #inner-header .menu-toggle:after, .dummyheader .menu-toggle:after {
      content: '\f169';
      font-family: "icons";
      color: white;
      font-size: 2.25rem; }
    #inner-header .menu-toggle span, .dummyheader .menu-toggle span {
      display: none; }
  #inner-header .top-bar, .dummyheader .top-bar {
    height: auto;
    max-height: 0;
    transition: max-height 900ms ease-out; }
    #inner-header .top-bar.open, .dummyheader .top-bar.open {
      max-height: 1300px; }
    #inner-header .top-bar .menu-class > li, .dummyheader .top-bar .menu-class > li {
      border-top: solid 1px #082035; }
  #inner-header #mainMenu, .dummyheader #mainMenu {
    background: #fff; }
  #inner-header .menu-container, .dummyheader .menu-container {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    float: left;
    max-height: 0;
    overflow: hidden;
    transition: max-height 900ms ease-out; }
    #inner-header .menu-container.open, .dummyheader .menu-container.open {
      border-top: solid 1px #082035;
      background: #0a3b63;
      max-height: 9999px; }
    #inner-header .menu-container .social, .dummyheader .menu-container .social {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 33.33333%;
      float: left;
      padding-top: 8px;
      padding-bottom: 8px; }
    #inner-header .menu-container .nav-user, .dummyheader .menu-container .nav-user {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 100%;
      float: left;
      padding-top: 5px;
      padding-bottom: 5px;
      background: #0a3b63;
      text-align: center; }
    #inner-header .menu-container .nav-search, .dummyheader .menu-container .nav-search {
      border-top: solid 1px #082035;
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 100%;
      float: left;
      text-align: center;
      background: #0a3b63;
      padding-top: 8px; }
      #inner-header .menu-container .nav-search .gcs-input, .dummyheader .menu-container .nav-search .gcs-input {
        float: none;
        width: 100%; }
  #inner-header .nav-main .top-bar, .dummyheader .nav-main .top-bar {
    line-height: normal; }
    #inner-header .nav-main .top-bar .top-bar-section, .dummyheader .nav-main .top-bar .top-bar-section {
      width: 100%;
      overflow: hidden; }
    #inner-header .nav-main .top-bar > ul > li, .dummyheader .nav-main .top-bar > ul > li {
      width: 100%; }
      #inner-header .nav-main .top-bar > ul > li.has-dropdown > a, .dummyheader .nav-main .top-bar > ul > li.has-dropdown > a {
        transition: all 900ms ease-out;
        position: relative; }
        #inner-header .nav-main .top-bar > ul > li.has-dropdown > a:after, .dummyheader .nav-main .top-bar > ul > li.has-dropdown > a:after {
          transition: all 300ms ease-out;
          top: 25px;
          display: block;
          -webkit-transform: rotate(90deg);
          transform: rotate(90deg); }
        #inner-header .nav-main .top-bar > ul > li.has-dropdown > a.active:after, .dummyheader .nav-main .top-bar > ul > li.has-dropdown > a.active:after {
          top: 20px;
          -webkit-transform: rotate(270deg);
          transform: rotate(270deg); }
      #inner-header .nav-main .top-bar > ul > li.airport-ratings .dropdown,
      #inner-header .nav-main .top-bar > ul > li.skytrax-awards .dropdown,
      #inner-header .nav-main .top-bar > ul > li.airline-ratings .dropdown, .dummyheader .nav-main .top-bar > ul > li.airport-ratings .dropdown,
      .dummyheader .nav-main .top-bar > ul > li.skytrax-awards .dropdown,
      .dummyheader .nav-main .top-bar > ul > li.airline-ratings .dropdown {
        position: relative !important; }
      #inner-header .nav-main .top-bar > ul > li .dropdown, .dummyheader .nav-main .top-bar > ul > li .dropdown {
        max-height: 0;
        overflow: hidden;
        transition: all 900ms ease-out;
        position: relative !important;
        top: 0;
        left: 0;
        height: auto;
        width: 100%; }
        #inner-header .nav-main .top-bar > ul > li .dropdown.open, .dummyheader .nav-main .top-bar > ul > li .dropdown.open {
          max-height: 9999px; }
        #inner-header .nav-main .top-bar > ul > li .dropdown:before, .dummyheader .nav-main .top-bar > ul > li .dropdown:before {
          display: none; }
        #inner-header .nav-main .top-bar > ul > li .dropdown .nav-links, .dummyheader .nav-main .top-bar > ul > li .dropdown .nav-links {
          border: none; }
          #inner-header .nav-main .top-bar > ul > li .dropdown .nav-links ul li.seperator, .dummyheader .nav-main .top-bar > ul > li .dropdown .nav-links ul li.seperator {
            display: none; }
          #inner-header .nav-main .top-bar > ul > li .dropdown .nav-links ul a, .dummyheader .nav-main .top-bar > ul > li .dropdown .nav-links ul a {
            transition: background 300ms ease-in-out;
            display: block;
            padding: 6px 12px 6px 24px;
            background-color: #f3f3f3;
            color: #4c4c4c; }
            #inner-header .nav-main .top-bar > ul > li .dropdown .nav-links ul a:hover, .dummyheader .nav-main .top-bar > ul > li .dropdown .nav-links ul a:hover {
              background: #dadada; } }

@media only screen and (min-width: 48em) {
  /**
* ACFL Layouts
*/
  #inner-header .top,
  #inner-header .bottom {
    display: block; }
  #main > section {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 1280px; }
    #main > section:before, #main > section:after {
      content: " ";
      display: table; }
    #main > section:after {
      clear: both; }
    #main > section .comp {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 100%;
      float: left; }
  #main .comp.comp {
    padding-left: 0;
    padding-right: 0; }
    #main .comp.comp.latest-reviews-footer {
      padding-right: 15px; }
  #main > .layout-1 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 1280px; }
    #main > .layout-1:before, #main > .layout-1:after {
      content: " ";
      display: table; }
    #main > .layout-1:after {
      clear: both; }
    #main > .layout-1 > .col-content {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 100%;
      float: left; }
  #main > .layout-2 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 1280px; }
    #main > .layout-2:before, #main > .layout-2:after {
      content: " ";
      display: table; }
    #main > .layout-2:after {
      clear: both; }
    #main > .layout-2 > .col-content {
      padding-left: 0;
      padding-right: 0;
      width: 66.66667%;
      float: left;
      padding-left: 1rem; }
    #main > .layout-2 > .generic-content {
      padding-left: 0;
      padding-right: 0;
      width: 100%;
      float: left;
      padding-left: 1rem;
      padding-right: 1rem; }
    #main > .layout-2 > .generic-sidebar-content {
      padding-left: 1rem;
      padding-right: 1rem; }
    #main > .layout-2 > .col-right {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 33.33333%;
      float: right;
      float: right;
      padding-left: 0.5rem !important;
      padding-right: 0.5rem !important;
      padding-top: 0.5rem; }
      #main > .layout-2 > .col-right .layout-section .comp .comp {
        padding-left: 0;
        padding-right: 0; }
    #main > .layout-2 > .col-left {
      display: none; }
  #main .layout-3 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 1280px; }
    #main .layout-3:before, #main .layout-3:after {
      content: " ";
      display: table; }
    #main .layout-3:after {
      clear: both; }
    #main .layout-3 .position-content {
      position: relative;
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 50%;
      left: 25%;
      right: auto;
      float: left; }
    #main .layout-3 .position-right {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 25%;
      float: right;
      float: right; }
    #main .layout-3 .position-left {
      position: relative;
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 25%;
      right: 50%;
      left: auto;
      float: left; }
  #main .full-width {
    max-width: 100%;
    margin-left: -1rem;
    margin-right: -1rem; }
    #main .full-width .col-content {
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      margin-top: 0;
      margin-bottom: 0;
      max-width: 1280px; }
      #main .full-width .col-content:before, #main .full-width .col-content:after {
        content: " ";
        display: table; }
      #main .full-width .col-content:after {
        clear: both; }
  #main .full-width-content {
    max-width: 100%;
    margin-left: -1rem;
    margin-right: -1rem; }
    #main .full-width-content .col-content {
      width: 100%;
      max-width: 100%; }
      #main .full-width-content .col-content > * {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0;
        margin-bottom: 0;
        max-width: 1280px;
        max-width: 100%;
        float: none; }
        #main .full-width-content .col-content > *:before, #main .full-width-content .col-content > *:after {
          content: " ";
          display: table; }
        #main .full-width-content .col-content > *:after {
          clear: both; }
  #main .full-width-bg {
    max-width: 100%;
    background: transparent; }
    #main .full-width-bg .col-content {
      width: 100%;
      max-width: 100%;
      padding-left: 0;
      padding-right: 0; }
      #main .full-width-bg .col-content > * {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0;
        margin-bottom: 0;
        max-width: 1280px;
        float: none; }
        #main .full-width-bg .col-content > *:before, #main .full-width-bg .col-content > *:after {
          content: " ";
          display: table; }
        #main .full-width-bg .col-content > *:after {
          clear: both; }
      #main .full-width-bg .col-content .nav-thumbs {
        background: #fff; }
      #main .full-width-bg .col-content .comp__review-tabs {
        border-bottom: solid 1px #a6b8c1;
        padding-left: 1rem; }
        #main .full-width-bg .col-content .comp__review-tabs .tabs {
          border-bottom: none; }
  /*
.footer #inner-footer {
	min-width: $large-min-width;
}
*/
  .comp_review-header > .review-info {
    position: relative;
    padding-left: 0;
    padding-right: 0;
    width: 66.66667%;
    right: 33.33333%;
    left: auto;
    float: left; }
    .comp_review-header > .review-info .review-heading .info {
      padding-left: 0;
      padding-right: 0;
      width: 58.33333%;
      float: left; }
    .comp_review-header > .review-info .review-heading .rating {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 41.66667%;
      float: left; }
    .comp_review-header > .review-info .review-heading .skytrax-rating {
      max-width: 180px; }
    .comp_review-header > .review-info .customer-rating .ratings {
      padding-left: 0;
      padding-right: 0;
      width: 58.33333%;
      float: left; }
    .comp_review-header > .review-info .customer-rating .rating-totals {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 41.66667%;
      float: left; }
      .comp_review-header > .review-info .customer-rating .rating-totals .review-count {
        max-width: 110px; }
    .comp_review-header > .review-info .customer-rating .skytrax-rating-mob {
      display: none; }
  .comp_review-header > .review-ad {
    position: relative;
    padding-left: 0;
    padding-right: 0;
    width: 33.33333%;
    left: 66.66667%;
    right: auto;
    float: left; }
  #main > section .comp__tabbed-modules .tabs li a,
  #main > section .comp__review-tabs .tabs li a {
    text-indent: 0; }
  #main > section .comp.comp__adsense {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    float: none;
    display: block; }
    #main > section .comp.comp__adsense:before, #main > section .comp.comp__adsense:after {
      content: " ";
      display: table; }
    #main > section .comp.comp__adsense:after {
      clear: both; }
    #main > section .comp.comp__adsense ins {
      display: block; }
    #main > section .comp.comp__adsense .gad-wrapper {
      width: 100%;
      height: 100%; }
    #main > section .comp.comp__adsense .mobile {
      display: none  !important; }
    #main > section .comp.comp__adsense .desktop {
      display: inherit !important; }
    #main > section .comp.comp__adsense.leaderboard ins, #main > section .comp.comp__adsense.largerectangle ins, #main > section .comp.comp__adsense.mobilebanner ins, #main > section .comp.comp__adsense.largeskyscraper ins, #main > section .comp.comp__adsense.mediumrectangle ins {
      display: inline-block; }
    #main > section .comp.comp__adsense.leaderboard {
      width: 100%; }
    #main > section .comp.comp__adsense.largerectangle {
      width: 730px;
      height: 92px; }
    #main > section .comp.comp__adsense.mobilebanner {
      width: 338px;
      height: 282px; }
    #main > section .comp.comp__adsense.mobilebanner {
      width: 730px;
      height: 92px; }
    #main > section .comp.comp__adsense.largeskyscraper {
      width: 302px;
      height: 602px; }
    #main > section .comp.comp__adsense.mediumrectangle {
      width: 302px;
      height: 252px; }
  #main > section.comp__nav-thumbs.comp ul.items,
  #main > section .col-content .comp__nav-thumbs.comp ul.items {
    display: block;
    padding: 0;
    margin: 0 -0.25rem;
    padding-top: 0.8rem;
    margin: 0; }
    #main > section.comp__nav-thumbs.comp ul.items:before, #main > section.comp__nav-thumbs.comp ul.items:after,
    #main > section .col-content .comp__nav-thumbs.comp ul.items:before,
    #main > section .col-content .comp__nav-thumbs.comp ul.items:after {
      content: " ";
      display: table; }
    #main > section.comp__nav-thumbs.comp ul.items:after,
    #main > section .col-content .comp__nav-thumbs.comp ul.items:after {
      clear: both; }
    #main > section.comp__nav-thumbs.comp ul.items > li,
    #main > section .col-content .comp__nav-thumbs.comp ul.items > li {
      display: block;
      height: auto;
      float: left;
      padding: 0 0.25rem 0.5rem; }
    #main > section.comp__nav-thumbs.comp ul.items > li,
    #main > section .col-content .comp__nav-thumbs.comp ul.items > li {
      width: 33.33333%;
      padding: 0 0.25rem 0.5rem;
      list-style: none; }
      #main > section.comp__nav-thumbs.comp ul.items > li:nth-of-type(1n),
      #main > section .col-content .comp__nav-thumbs.comp ul.items > li:nth-of-type(1n) {
        clear: none; }
      #main > section.comp__nav-thumbs.comp ul.items > li:nth-of-type(3n+1),
      #main > section .col-content .comp__nav-thumbs.comp ul.items > li:nth-of-type(3n+1) {
        clear: both; }
    #main > section.comp__nav-thumbs.comp ul.items li,
    #main > section .col-content .comp__nav-thumbs.comp ul.items li {
      padding-left: 0px;
      padding-bottom: 1rem; }
      #main > section.comp__nav-thumbs.comp ul.items li article,
      #main > section .col-content .comp__nav-thumbs.comp ul.items li article {
        max-width: 183px; }
        #main > section.comp__nav-thumbs.comp ul.items li article .body,
        #main > section .col-content .comp__nav-thumbs.comp ul.items li article .body {
          padding-left: 0.25rem;
          padding-right: 0.25rem; }
  .comp_reviews-airline .aq-ad {
    margin: 1em 0 1em 88px; } }

@media only screen and (min-width: 48em) and (min-width: 1050px) {
  .dummyheader {
    display: none; }
  .menu-toggle {
    display: none; } }

@media only screen and (min-width: 48em) {
  .skyRatingHome .aq-ad {
    float: left;
    width: 48%; }
  .skyRatingHome .skyRatingContent {
    width: 50%;
    float: left;
    padding: 0 3.2em; } }

/*
LARGE
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*/
/*
@media only screen and (min-width:60em) {

	// styles in large.scss
	@import "layout/large";

} // end of media query
*/
/*
XLARGE
*/
/*
XXLARGE
*/
/*
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*/
@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) {
  /******************************************************************
Site Name: 
Author: 

Stylesheet: Retina Screens & Devices Stylesheet

When handling retina screens you need to make adjustments, especially
if you're not using font icons. Here you can add them in one neat
place.

******************************************************************/
  /* 

EXAMPLE 
Let's say you have an image and you need to make sure it looks ok
on retina screens. Let's say we have an icon which dimension are
24px x 24px. In your regular stylesheets, it would look something
like this:

.icon {
	width: 24px;
	height: 24px;
	background: url(img/test.png) no-repeat;
}

For retina screens, we have to make some adjustments, so that image
doesn't look blurry. So, taking into account the image above and the
dimensions, this is what we would put in our retina stylesheet:

.icon {
	background: url(img/test@2x.png) no-repeat;
	background-size: 24px 24px;
}

So, you would create the same icon, but at double the resolution, meaning 
it would be 48px x 48px. You'd name it the same, but with a @2x at the end
(this is pretty standard practice). Set the background image so it matches
the original dimensions and you are good to go. 

*/ }

/*
iPHONE 5 MEDIA QUERY
Want to get fancy for no good reason? Knock yourself out.
*/
/*
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*/
@media print {
  /******************************************************************

Stylesheet: Print Stylesheet

This is the print stylesheet. There's probably not a lot
of reasons to edit this stylesheet. If you want to
though, go for it.

******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    -webkit-filter: none !important;
            filter: none !important;
    -ms-filter: none !important; }
  a, a:visited {
    color: #444 !important;
    text-decoration: underline; }
    a:after, a:visited:after {
      content: " (" attr(href) ")"; }
    a abbr[title]:after, a:visited abbr[title]:after {
      content: " (" attr(title) ")"; }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr, img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  @page {
    margin: 0.5cm; }
  p, h2, h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none; } }

#main > section .comp__write-a-review .row.field_group.isRequiredNotice {
  padding-top: 4px;
  padding-bottom: 4px; }

#main > section .comp__write-a-review form label {
  font-weight: normal; }

.verifyNotice {
  font-weight: bold;
  padding: 0;
  margin: 0; }

.verifyNoticeIcon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #73d196;
  border-radius: 50%;
  position: relative;
  top: 15px;
  margin-top: -5px;
  margin-right: 20px;
  background-image: url("../images/flight-icons/icon_verify.png");
  background-position: center; }

.verifyNoticeEm {
  font-size: 16px;
  font-style: italic;
  margin-right: 10px; }

.inputHasExtraLabel input {
  margin-bottom: 0; }

.inpulLabelExtras {
  line-height: 1;
  margin-top: 0;
  margin-left: 1.7em;
  margin-bottom: .9em; }

.validateRadio {
  margin-top: 1.5em; }

.verifyInfoToggle {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  top: 2px;
  margin-top: -5px;
  background-image: url("../images/flight-icons/icon_info.png");
  background-size: contain; }

.verifyInfo {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 26em;
  background: #eee;
  padding: .5em;
  border: 1px solid #444;
  z-index: 10;
  text-align: left;
  display: none; }
  .verifyInfo > p {
    font-weight: bold;
    font-size: 1em;
    color: #094778;
    margin-bottom: 0;
    text-transform: uppercase; }
  .verifyInfo ul {
    list-style: disc;
    padding-bottom: 0;
    margin-bottom: 0;
    color: black; }
    .verifyInfo ul p {
      margin-bottom: .5em; }

.verifyInfoToggle:hover .verifyInfo {
  display: block; }

.ticketUploadWrapper,
.screenNameWrapper {
  overflow: hidden;
  max-height: 0;
  margin: 0;
  padding: 0 .5em;
  transition: background,margin,max-height,padding;
  transition-duration: .3s; }
  .ticketUploadWrapper.open,
  .screenNameWrapper.open {
    padding: .5em;
    background: #eee;
    max-height: 30em;
    margin: 0 0 1em 0; }

.ticketUploadWrapper .fileUpload {
  background-image: url("../images/flight-icons/icon_ticket.png") !important; }

.hourglass {
  position: absolute;
  top: 50%;
  margin-top: -1em;
  left: 110%;
  display: block;
  background: white;
  width: 1em;
  height: 2em;
  box-shadow: inset white 0 0 0 0, inset #888 0 2em 0 0, inset white 0 0 4em 0;
  -webkit-animation: hourglass 1s linear infinite;
          animation: hourglass 1s linear infinite; }

.outer {
  fill: #888; }

.middle {
  fill: white; }

@-webkit-keyframes hourglass {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    box-shadow: inset white 0 0 0 0, inset #888 0 2em 0 0, inset white 0 4em 0 0, inset #888 0 4em 0 0; }
  80% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    box-shadow: inset white 0 2em 0 0, inset #888 0 2em 0 0, inset white 0 2em 0 0, inset #888 0 4em 0 0; }
  100% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    box-shadow: inset white 0 2em 0 0, inset #888 0 2em 0 0, inset white 0 2em 0 0, inset #888 0 4em 0 0; } }

@keyframes hourglass {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    box-shadow: inset white 0 0 0 0, inset #888 0 2em 0 0, inset white 0 4em 0 0, inset #888 0 4em 0 0; }
  80% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    box-shadow: inset white 0 2em 0 0, inset #888 0 2em 0 0, inset white 0 2em 0 0, inset #888 0 4em 0 0; }
  100% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    box-shadow: inset white 0 2em 0 0, inset #888 0 2em 0 0, inset white 0 2em 0 0, inset #888 0 4em 0 0; } }

.btn-submit-review {
  position: relative; }
  .btn-submit-review .hourglass {
    display: none; }
  .btn-submit-review.submitting .hourglass {
    display: block; }

.commentSubmitWrapper {
  position: relative; }
  .commentSubmitWrapper .hourglass {
    display: none;
    position: absolute;
    top: auto;
    margin-top: 0;
    left: auto;
    margin-left: 1em; }
  .commentSubmitWrapper.submitting .hourglass {
    display: inline-block; }

.text_sub_header.userStatusWrapper {
  line-height: 1.4 !important; }

.userStatus {
  display: inline-block;
  height: 1em;
  padding-right: 3em;
  position: relative; }

@media (max-width: 400px) {
  .userStatusReviewCount {
    display: none; } }

.userStatusIcon {
  fill: #066f0b;
  display: block;
  position: absolute;
  top: 0;
  right: .5em;
  width: 2em;
  height: 1.5em; }

.elite .userStatusIcon {
  fill: #a88206; }

.globetrotter .userStatusIcon {
  fill: #a90634; }

.hiflyer .userStatusIcon {
  fill: #054f80; }

.fullatoz_containers {
  position: relative;
  padding: 2em 0; }

.fullaz_tabWrapper {
  width: 10em;
  height: 3em;
  background: red;
  position: relative; }

.fullaz_tab {
  width: 10em;
  height: 3em;
  display: block;
  border: 1px solid #ddd;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1; }
  .fullaz_tab.active {
    z-index: 2; }
  .fullaz_tab a {
    display: block;
    width: 10em;
    height: 3em;
    line-height: 1;
    padding: 1em; }

.fullaz_tabWrapper:hover .fullaz_tab {
  position: relative;
  top: auto; }

.fullatoz_selectBox {
  width: 10em;
  position: absolute;
  top: 2em;
  left: 0;
  z-index: 2; }

.fullatoz_tabs {
  position: relative;
  z-index: 1; }
  .fullatoz_tabs .fullatoz_tab {
    display: none; }
    .fullatoz_tabs .fullatoz_tab.active {
      display: block; }
  .fullatoz_tabs ul.tabs {
    padding-left: 13em;
    padding-bottom: 1em; }

.aggregateRow.aggregateTitleRow {
  background: #f2f5f6;
  text-transform: uppercase;
  font-weight: bold; }
  .aggregateRow.aggregateTitleRow .aggregateTitleSub {
    text-transform: lowercase; }

.aggregateColumn {
  display: block;
  float: left;
  width: 25%;
  min-height: 2em;
  padding: .5em; }
  .aggregateColumn .aggregateLogo {
    width: 100%;
    height: 1em;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; }

.search_result .search_result_title {
  text-decoration: underline;
  text-transform: capitalize; }

.search_result .search_result_description {
  color: #000;
  padding: 0;
  margin: 0; }
  .search_result .search_result_description:first-letter {
    text-transform: capitalize; }

.search_result .search_result_url {
  color: #666; }

.search_results_pagination_page {
  display: none; }
  .search_results_pagination_page.active_page {
    display: block; }

.search_pagination_form {
  display: inline-block; }

form.search_pagination_form button.search_pagination_link.active_page {
  background: #f78152 !important; }

.custom_search_form {
  display: block !important;
  width: 100% !important;
  padding-right: 6em;
  position: relative; }
  .custom_search_form .custom_search_form_input {
    height: 2em;
    font-size: 1em !important;
    margin-bottom: 0 !important; }
  .custom_search_form .custom_search_form_button {
    position: absolute;
    top: 0;
    right: 0;
    width: 6em;
    background: #0192d1;
    border: none;
    color: white;
    font-size: 1em !important;
    padding: .5em 1em;
    height: 2em;
    line-height: 1 !important;
    border-radius: 2px 2px 0 0 !important; }

.custom_search_form_header {
  font-size: 1.4em; }

.opacityBox .gcs-input.nav-search {
  width: 100%;
  font-size: .8em;
  margin-bottom: 1em; }

#main > section .war-review-types--newseat input + label {
    padding: 40px 10px 0px 10px;
    background: none;
}

.hidden {
  display: none !important;
  visibility: hidden; }








