@charset "UTF-8";
/******************************************************************
  
Stylesheet: Main Stylesheet

Here's where the magic happens. Here is where you import
all of your Sass files so they can compile into one
CSS file. 
***************************************
***************************/
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * 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.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */ }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
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; }

/******************************************************************

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of Sass' great features:
Mixins & Constants.

******************************************************************/
/*********************
TOOLS
*********************/
.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

/*********************
COLORS
*********************/
/*********************
TYPOGRAPHY
*********************/

/**
 * @license
 * MyFonts Webfont Build ID 3145150, 2015-12-23T08:33:16-0500
 * 
 * The fonts listed in this notice are subject to the End User License
 * Agreement(s) entered into by the website owner. All other parties are 
 * explicitly restricted from using the Licensed Webfonts(s).
 * 
 * You may obtain a valid license at the URLs below.
 * 
 * Webfont: GillSansNova-Bold by Monotype 
 * URL: http://www.myfonts.com/fonts/mti/gill-sans-nova/bold/
 * 
 * Webfont: GillSansNova-BoldItalic by Monotype 
 * URL: http://www.myfonts.com/fonts/mti/gill-sans-nova/bold-italic/
 * 
 * Webfont: GillSansNova-Book by Monotype 
 * URL: http://www.myfonts.com/fonts/mti/gill-sans-nova/book/
 * 
 * Webfont: GillSansNova-BookItalic by Monotype 
 * URL: http://www.myfonts.com/fonts/mti/gill-sans-nova/book-italic/
 * 
 * Webfont: GillSansNova-LightItalic by Monotype 
 * URL: http://www.myfonts.com/fonts/mti/gill-sans-nova/light-italic/
 * 
 * Webfont: GillSansNova-Light by Monotype 
 * URL: http://www.myfonts.com/fonts/mti/gill-sans-nova/light/
 * 
 * 
 * License: http://www.myfonts.com/viewlicense?type=web&buildid=3145150
 * Licensed pageviews: 500,000
 * Webfonts copyright: Copyright 2015 &#x00A9; The Monotype Corporation. All rights reserved.
 * 
 * © 2015 MyFonts Inc
*/


/* @import must be at top of file, otherwise CSS will not work */
@import url("//hello.myfonts.net/count/2ffdbe");

@font-face {font-family: 'GillSansNova';font-weight: 200;font-style: normal; src: url('../webfonts/30C30C_4_0.eot');src: url('../webfonts/30C30C_4_0.eot?#iefix') format('embedded-opentype'),url('../webfonts/30C30C_4_0.woff2') format('woff2'),url('../webfonts/30C30C_4_0.woff') format('woff'),url('../webfonts/30C30C_4_0.ttf') format('truetype');} 

@font-face {font-family: 'GillSansNova';font-weight: 200;font-style: italic; src: url('../webfonts/30C30C_2_0.eot');src: url('../webfonts/30C30C_2_0.eot?#iefix') format('embedded-opentype'),url('../webfonts/30C30C_2_0.woff2') format('woff2'),url('../webfonts/30C30C_2_0.woff') format('woff'),url('../webfonts/30C30C_2_0.ttf') format('truetype');}
  
@font-face {font-family: 'GillSansNova';font-weight: normal;font-style: normal;src: url('../webfonts/30C30C_3_0.eot');src: url('../webfonts/30C30C_3_0.eot?#iefix') format('embedded-opentype'),url('../webfonts/30C30C_3_0.woff2') format('woff2'),url('../webfonts/30C30C_3_0.woff') format('woff'),url('../webfonts/30C30C_3_0.ttf') format('truetype');}
  
@font-face {font-family: 'GillSansNova';font-weight: normal;font-style: italic;src: url('../webfonts/30C30C_5_0.eot');src: url('../webfonts/30C30C_5_0.eot?#iefix') format('embedded-opentype'),url('../webfonts/30C30C_5_0.woff2') format('woff2'),url('../webfonts/30C30C_5_0.woff') format('woff'),url('../webfonts/30C30C_5_0.ttf') format('truetype');}

@font-face {font-family: 'GillSansNova';font-weight: bold;font-style: normal;src: url('../webfonts/30C30C_0_0.eot');src: url('../webfonts/30C30C_0_0.eot?#iefix') format('embedded-opentype'),url('../webfonts/30C30C_0_0.woff2') format('woff2'),url('../webfonts/30C30C_0_0.woff') format('woff'),url('../webfonts/30C30C_0_0.ttf') format('truetype');}
  
@font-face {font-family: 'GillSansNova';font-weight: bold;font-style: italic;src: url('../webfonts/30C30C_1_0.eot');src: url('../webfonts/30C30C_1_0.eot?#iefix') format('embedded-opentype'),url('../webfonts/30C30C_1_0.woff2') format('woff2'),url('../webfonts/30C30C_1_0.woff') format('woff'),url('../webfonts/30C30C_1_0.ttf') format('truetype');}
 


/* 

Disabled Light as book seemed similar to PS file

@font-face {font-family: 'GillSansNova-LightItalic';src: url('../webfonts/2FFDBE_4_0.eot');src: url('../webfonts/2FFDBE_4_0.eot?#iefix') format('embedded-opentype'),url('../webfonts/2FFDBE_4_0.woff2') format('woff2'),url('../webfonts/2FFDBE_4_0.woff') format('woff'),url('../webfonts/2FFDBE_4_0.ttf') format('truetype');}
  
@font-face {font-family: 'GillSansNova-Light';src: url('../webfonts/2FFDBE_5_0.eot');src: url('../webfonts/2FFDBE_5_0.eot?#iefix') format('embedded-opentype'),url('../webfonts/2FFDBE_5_0.woff2') format('woff2'),url('../webfonts/2FFDBE_5_0.woff') format('woff'),url('../webfonts/2FFDBE_5_0.ttf') format('truetype');}
*/

 
/*  @font-face {
      font-family: 'Font Name';
      src: url('assets/fonts/font-name.eot');
      src: url('assets/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('assets/fonts/font-name.woff') format('woff'),
             url('assets/fonts/font-name.ttf') format('truetype'),
             url('assets/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic; }

/*********************
CSS3 GRADIENTS.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * 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.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */ }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
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; }

body.is-reveal-open {
  overflow: hidden; }

.foundation-mq {
  font-family: "small=0em&medium=32em&large=64em&xlarge=75em&xxlarge=90em"; }

.slide-in-down.mui-enter, .slide-in-left.mui-enter, .slide-in-up.mui-enter, .slide-in-right.mui-enter, .slide-out-down.mui-leave, .slide-out-right.mui-leave, .slide-out-up.mui-leave, .slide-out-left.mui-leave, .fade-in.mui-enter, .fade-out.mui-leave, .hinge-in-from-top.mui-enter, .hinge-in-from-right.mui-enter, .hinge-in-from-bottom.mui-enter, .hinge-in-from-left.mui-enter, .hinge-in-from-middle-x.mui-enter, .hinge-in-from-middle-y.mui-enter, .hinge-out-from-top.mui-leave, .hinge-out-from-right.mui-leave, .hinge-out-from-bottom.mui-leave, .hinge-out-from-left.mui-leave, .hinge-out-from-middle-x.mui-leave, .hinge-out-from-middle-y.mui-leave, .scale-in-up.mui-enter, .scale-in-down.mui-enter, .scale-out-up.mui-leave, .scale-out-down.mui-leave, .spin-in.mui-enter, .spin-out.mui-leave, .spin-in-ccw.mui-enter, .spin-out-ccw.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear; }

.slide-in-down.mui-enter {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.slide-in-down.mui-enter.mui-enter-active {
  -webkit-transform: translateY(0);
  transform: translateY(0); }

.slide-in-left.mui-enter {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.slide-in-left.mui-enter.mui-enter-active {
  -webkit-transform: translateX(0);
  transform: translateX(0); }

.slide-in-up.mui-enter {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.slide-in-up.mui-enter.mui-enter-active {
  -webkit-transform: translateY(0);
  transform: translateY(0); }

.slide-in-right.mui-enter {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.slide-in-right.mui-enter.mui-enter-active {
  -webkit-transform: translateX(0);
  transform: translateX(0); }

.slide-out-down.mui-leave {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.slide-out-down.mui-leave.mui-leave-active {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%); }

.slide-out-right.mui-leave {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.slide-out-right.mui-leave.mui-leave-active {
  -webkit-transform: translateX(100%);
  transform: translateX(100%); }

.slide-out-up.mui-leave {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.slide-out-up.mui-leave.mui-leave-active {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%); }

.slide-out-left.mui-leave {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.slide-out-left.mui-leave.mui-leave-active {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%); }

.fade-in.mui-enter {
  opacity: 0;
  transition-property: opacity; }

.fade-in.mui-enter.mui-enter-active {
  opacity: 1; }

.fade-out.mui-leave {
  opacity: 1;
  transition-property: opacity; }

.fade-out.mui-leave.mui-leave-active {
  opacity: 0; }

.hinge-in-from-top.mui-enter {
  -webkit-transform: perspective(2000px) rotateX(-90deg);
  transform: perspective(2000px) rotateX(-90deg);
  -webkit-transform-origin: top;
  transform-origin: top;
  transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-top.mui-enter.mui-enter-active {
  -webkit-transform: perspective(2000px) rotate(0deg);
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-in-from-right.mui-enter {
  -webkit-transform: perspective(2000px) rotateY(-90deg);
  transform: perspective(2000px) rotateY(-90deg);
  -webkit-transform-origin: right;
  transform-origin: right;
  transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-right.mui-enter.mui-enter-active {
  -webkit-transform: perspective(2000px) rotate(0deg);
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-in-from-bottom.mui-enter {
  -webkit-transform: perspective(2000px) rotateX(90deg);
  transform: perspective(2000px) rotateX(90deg);
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-bottom.mui-enter.mui-enter-active {
  -webkit-transform: perspective(2000px) rotate(0deg);
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-in-from-left.mui-enter {
  -webkit-transform: perspective(2000px) rotateY(90deg);
  transform: perspective(2000px) rotateY(90deg);
  -webkit-transform-origin: left;
  transform-origin: left;
  transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-left.mui-enter.mui-enter-active {
  -webkit-transform: perspective(2000px) rotate(0deg);
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-in-from-middle-x.mui-enter {
  -webkit-transform: perspective(2000px) rotateX(-90deg);
  transform: perspective(2000px) rotateX(-90deg);
  -webkit-transform-origin: center;
  transform-origin: center;
  transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-middle-x.mui-enter.mui-enter-active {
  -webkit-transform: perspective(2000px) rotate(0deg);
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-in-from-middle-y.mui-enter {
  -webkit-transform: perspective(2000px) rotateY(-90deg);
  transform: perspective(2000px) rotateY(-90deg);
  -webkit-transform-origin: center;
  transform-origin: center;
  transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-middle-y.mui-enter.mui-enter-active {
  -webkit-transform: perspective(2000px) rotate(0deg);
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-out-from-top.mui-leave {
  -webkit-transform: perspective(2000px) rotate(0deg);
  transform: perspective(2000px) rotate(0deg);
  -webkit-transform-origin: top;
  transform-origin: top;
  transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-top.mui-leave.mui-leave-active {
  -webkit-transform: perspective(2000px) rotateX(-90deg);
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0; }

.hinge-out-from-right.mui-leave {
  -webkit-transform: perspective(2000px) rotate(0deg);
  transform: perspective(2000px) rotate(0deg);
  -webkit-transform-origin: right;
  transform-origin: right;
  transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-right.mui-leave.mui-leave-active {
  -webkit-transform: perspective(2000px) rotateY(-90deg);
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0; }

.hinge-out-from-bottom.mui-leave {
  -webkit-transform: perspective(2000px) rotate(0deg);
  transform: perspective(2000px) rotate(0deg);
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-bottom.mui-leave.mui-leave-active {
  -webkit-transform: perspective(2000px) rotateX(90deg);
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0; }

.hinge-out-from-left.mui-leave {
  -webkit-transform: perspective(2000px) rotate(0deg);
  transform: perspective(2000px) rotate(0deg);
  -webkit-transform-origin: left;
  transform-origin: left;
  transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-left.mui-leave.mui-leave-active {
  -webkit-transform: perspective(2000px) rotateY(90deg);
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0; }

.hinge-out-from-middle-x.mui-leave {
  -webkit-transform: perspective(2000px) rotate(0deg);
  transform: perspective(2000px) rotate(0deg);
  -webkit-transform-origin: center;
  transform-origin: center;
  transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-middle-x.mui-leave.mui-leave-active {
  -webkit-transform: perspective(2000px) rotateX(-90deg);
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0; }

.hinge-out-from-middle-y.mui-leave {
  -webkit-transform: perspective(2000px) rotate(0deg);
  transform: perspective(2000px) rotate(0deg);
  -webkit-transform-origin: center;
  transform-origin: center;
  transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-middle-y.mui-leave.mui-leave-active {
  -webkit-transform: perspective(2000px) rotateY(-90deg);
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0; }

.scale-in-up.mui-enter {
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  opacity: 0; }

.scale-in-up.mui-enter.mui-enter-active {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1; }

.scale-in-down.mui-enter {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  opacity: 0; }

.scale-in-down.mui-enter.mui-enter-active {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1; }

.scale-out-up.mui-leave {
  -webkit-transform: scale(1);
  transform: scale(1);
  transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  opacity: 1; }

.scale-out-up.mui-leave.mui-leave-active {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  opacity: 0; }

.scale-out-down.mui-leave {
  -webkit-transform: scale(1);
  transform: scale(1);
  transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  opacity: 1; }

.scale-out-down.mui-leave.mui-leave-active {
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0; }

.spin-in.mui-enter {
  -webkit-transform: rotate(-0.75turn);
  transform: rotate(-0.75turn);
  transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  opacity: 0; }

.spin-in.mui-enter.mui-enter-active {
  -webkit-transform: rotate(0);
  transform: rotate(0);
  opacity: 1; }

.spin-out.mui-leave {
  -webkit-transform: rotate(0);
  transform: rotate(0);
  transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  opacity: 1; }

.spin-out.mui-leave.mui-leave-active {
  -webkit-transform: rotate(0.75turn);
  transform: rotate(0.75turn);
  opacity: 0; }

.spin-in-ccw.mui-enter {
  -webkit-transform: rotate(0.75turn);
  transform: rotate(0.75turn);
  transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  opacity: 0; }

.spin-in-ccw.mui-enter.mui-enter-active {
  -webkit-transform: rotate(0);
  transform: rotate(0);
  opacity: 1; }

.spin-out-ccw.mui-leave {
  -webkit-transform: rotate(0);
  transform: rotate(0);
  transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  opacity: 1; }

.spin-out-ccw.mui-leave.mui-leave-active {
  -webkit-transform: rotate(-0.75turn);
  transform: rotate(-0.75turn);
  opacity: 0; }

.slow {
  transition-duration: 750ms !important; }

.fast {
  transition-duration: 250ms !important; }

.linear {
  transition-timing-function: linear !important; }

.ease {
  transition-timing-function: ease !important; }

.ease-in {
  transition-timing-function: ease-in !important; }

.ease-out {
  transition-timing-function: ease-out !important; }

.ease-in-out {
  transition-timing-function: ease-in-out !important; }

.bounce-in {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important; }

.bounce-out {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important; }

.bounce-in-out {
  transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important; }

.short-delay {
  transition-delay: 300ms !important; }

.long-delay {
  transition-delay: 700ms !important; }

.shake {
  -webkit-animation-name: shake-7;
  animation-name: shake-7; }

@-webkit-keyframes shake-7 {
  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
    -webkit-transform: translateX(7%);
    transform: translateX(7%); }
  5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
    -webkit-transform: translateX(-7%);
    transform: translateX(-7%); } }

@keyframes shake-7 {
  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
    -webkit-transform: translateX(7%);
    transform: translateX(7%); }
  5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
    -webkit-transform: translateX(-7%);
    transform: translateX(-7%); } }

.spin-cw {
  -webkit-animation-name: spin-cw-1turn;
  animation-name: spin-cw-1turn; }

@-webkit-keyframes spin-cw-1turn {
  0% {
    -webkit-transform: rotate(-1turn);
    transform: rotate(-1turn); }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0); } }

@keyframes spin-cw-1turn {
  0% {
    -webkit-transform: rotate(-1turn);
    transform: rotate(-1turn); }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0); } }

.spin-ccw {
  -webkit-animation-name: spin-cw-1turn;
  animation-name: spin-cw-1turn; }

@keyframes spin-cw-1turn {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0); }
  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn); } }

.wiggle {
  -webkit-animation-name: wiggle-7deg;
  animation-name: wiggle-7deg; }

@-webkit-keyframes wiggle-7deg {
  40%, 50%, 60% {
    -webkit-transform: rotate(7deg);
    transform: rotate(7deg); }
  35%, 45%, 55%, 65% {
    -webkit-transform: rotate(-7deg);
    transform: rotate(-7deg); }
  0%, 30%, 70%, 100% {
    -webkit-transform: rotate(0);
    transform: rotate(0); } }

@keyframes wiggle-7deg {
  40%, 50%, 60% {
    -webkit-transform: rotate(7deg);
    transform: rotate(7deg); }
  35%, 45%, 55%, 65% {
    -webkit-transform: rotate(-7deg);
    transform: rotate(-7deg); }
  0%, 30%, 70%, 100% {
    -webkit-transform: rotate(0);
    transform: rotate(0); } }

.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

.slow {
  -webkit-animation-duration: 750ms !important;
  animation-duration: 750ms !important; }

.fast {
  -webkit-animation-duration: 250ms !important;
  animation-duration: 250ms !important; }

.linear {
  -webkit-animation-timing-function: linear !important;
  animation-timing-function: linear !important; }

.ease {
  -webkit-animation-timing-function: ease !important;
  animation-timing-function: ease !important; }

.ease-in {
  -webkit-animation-timing-function: ease-in !important;
  animation-timing-function: ease-in !important; }

.ease-out {
  -webkit-animation-timing-function: ease-out !important;
  animation-timing-function: ease-out !important; }

.ease-in-out {
  -webkit-animation-timing-function: ease-in-out !important;
  animation-timing-function: ease-in-out !important; }

.bounce-in {
  -webkit-animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important; }

.bounce-out {
  -webkit-animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important; }

.bounce-in-out {
  -webkit-animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
  animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important; }

.short-delay {
  -webkit-animation-delay: 300ms !important;
  animation-delay: 300ms !important; }

.long-delay {
  -webkit-animation-delay: 700ms !important;
  animation-delay: 700ms !important; }

html,
body {
  font-size: 100%;
  box-sizing: border-box;
  background-color: #1e1d1c!important; 
}
*,
*:before,
*:after {
  box-sizing: inherit; }

body {
  padding: 0;
  margin: 0;
  font-family: "GillSansNova", Calibri, sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #000000;
  background: #fefefe;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px;
  border-radius: 0; }

select {
  width: 100%;
  border-radius: 0; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important; }

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  line-height: 1; }

.row {
  max-width: 70.8125rem;
  margin-left: auto;
  margin-right: auto; }
  .row::before, .row::after {
    content: ' ';
    display: table; }
  .row::after {
    clear: both; }
  .row.collapse > .column, .row.collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .row .row {
    margin-left: -0.9375rem;
    margin-right: -0.9375rem; }
    .row .row.collapse {
      margin-left: 0;
      margin-right: 0; }
  .row.small-collapse > .column, .row.small-collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .row.small-uncollapse > .column, .row.small-uncollapse > .columns {
    padding-left: 30px;
    padding-right: 30px; }
  @media screen and (min-width: 32em) {
    .row.medium-collapse > .column, .row.medium-collapse > .columns {
      padding-left: 0;
      padding-right: 0; }
    .row.medium-uncollapse > .column, .row.medium-uncollapse > .columns {
      padding-left: 30px;
      padding-right: 30px; } }
  @media screen and (min-width: 64em) {
    .row.large-collapse > .column, .row.large-collapse > .columns {
      padding-left: 0;
      padding-right: 0; }
    .row.large-uncollapse > .column, .row.large-uncollapse > .columns {
      padding-left: 30px;
      padding-right: 30px; } }
  .row.expanded {
    max-width: none; }

.column, .columns {
  width: 100%;
  float: left;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem; }
  .column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
    float: right; }
  .column.end:last-child, .end.columns:last-child {
    float: left; }

.column.row.row, .row.row.columns {
  float: none; }

.small-1 {
  width: 8.33333%; }

.small-push-1 {
  position: relative;
  left: 8.33333%; }

.small-pull-1 {
  position: relative;
  left: -8.33333%; }

.small-offset-0 {
  margin-left: 0%; }

.small-2 {
  width: 16.66667%; }

.small-push-2 {
  position: relative;
  left: 16.66667%; }

.small-pull-2 {
  position: relative;
  left: -16.66667%; }

.small-offset-1 {
  margin-left: 8.33333%; }

.small-3 {
  width: 25%; }

.small-push-3 {
  position: relative;
  left: 25%; }

.small-pull-3 {
  position: relative;
  left: -25%; }

.small-offset-2 {
  margin-left: 16.66667%; }

.small-4 {
  width: 33.33333%; }

.small-push-4 {
  position: relative;
  left: 33.33333%; }

.small-pull-4 {
  position: relative;
  left: -33.33333%; }

.small-offset-3 {
  margin-left: 25%; }

.small-5 {
  width: 41.66667%; }

.small-push-5 {
  position: relative;
  left: 41.66667%; }

.small-pull-5 {
  position: relative;
  left: -41.66667%; }

.small-offset-4 {
  margin-left: 33.33333%; }

.small-6 {
  width: 50%; }

.small-push-6 {
  position: relative;
  left: 50%; }

.small-pull-6 {
  position: relative;
  left: -50%; }

.small-offset-5 {
  margin-left: 41.66667%; }

.small-7 {
  width: 58.33333%; }

.small-push-7 {
  position: relative;
  left: 58.33333%; }

.small-pull-7 {
  position: relative;
  left: -58.33333%; }

.small-offset-6 {
  margin-left: 50%; }

.small-8 {
  width: 66.66667%; }

.small-push-8 {
  position: relative;
  left: 66.66667%; }

.small-pull-8 {
  position: relative;
  left: -66.66667%; }

.small-offset-7 {
  margin-left: 58.33333%; }

.small-9 {
  width: 75%; }

.small-push-9 {
  position: relative;
  left: 75%; }

.small-pull-9 {
  position: relative;
  left: -75%; }

.small-offset-8 {
  margin-left: 66.66667%; }

.small-10 {
  width: 83.33333%; }

.small-push-10 {
  position: relative;
  left: 83.33333%; }

.small-pull-10 {
  position: relative;
  left: -83.33333%; }

.small-offset-9 {
  margin-left: 75%; }

.small-11 {
  width: 91.66667%; }

.small-push-11 {
  position: relative;
  left: 91.66667%; }

.small-pull-11 {
  position: relative;
  left: -91.66667%; }

.small-offset-10 {
  margin-left: 83.33333%; }

.small-12 {
  width: 100%; }

.small-offset-11 {
  margin-left: 91.66667%; }

.small-up-1 .column, .small-up-1 .columns {
  width: 100%;
  float: left; }
  .small-up-1 .column:nth-of-type(1n), .small-up-1 .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-1 .column:nth-of-type(1n+1), .small-up-1 .columns:nth-of-type(1n+1) {
    clear: both; }
  .small-up-1 .column:last-child, .small-up-1 .columns:last-child {
    float: left; }

.small-up-2 .column, .small-up-2 .columns {
  width: 50%;
  float: left; }
  .small-up-2 .column:nth-of-type(1n), .small-up-2 .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-2 .column:nth-of-type(2n+1), .small-up-2 .columns:nth-of-type(2n+1) {
    clear: both; }
  .small-up-2 .column:last-child, .small-up-2 .columns:last-child {
    float: left; }

.small-up-3 .column, .small-up-3 .columns {
  width: 33.33333%;
  float: left; }
  .small-up-3 .column:nth-of-type(1n), .small-up-3 .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-3 .column:nth-of-type(3n+1), .small-up-3 .columns:nth-of-type(3n+1) {
    clear: both; }
  .small-up-3 .column:last-child, .small-up-3 .columns:last-child {
    float: left; }

.small-up-4 .column, .small-up-4 .columns {
  width: 25%;
  float: left; }
  .small-up-4 .column:nth-of-type(1n), .small-up-4 .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-4 .column:nth-of-type(4n+1), .small-up-4 .columns:nth-of-type(4n+1) {
    clear: both; }
  .small-up-4 .column:last-child, .small-up-4 .columns:last-child {
    float: left; }

.small-up-5 .column, .small-up-5 .columns {
  width: 20%;
  float: left; }
  .small-up-5 .column:nth-of-type(1n), .small-up-5 .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-5 .column:nth-of-type(5n+1), .small-up-5 .columns:nth-of-type(5n+1) {
    clear: both; }
  .small-up-5 .column:last-child, .small-up-5 .columns:last-child {
    float: left; }

.small-up-6 .column, .small-up-6 .columns {
  width: 16.66667%;
  float: left; }
  .small-up-6 .column:nth-of-type(1n), .small-up-6 .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-6 .column:nth-of-type(6n+1), .small-up-6 .columns:nth-of-type(6n+1) {
    clear: both; }
  .small-up-6 .column:last-child, .small-up-6 .columns:last-child {
    float: left; }

.column.small-centered, .small-centered.columns {
  float: none;
  margin-left: auto;
  margin-right: auto; }

.small-uncenter,
.small-push-0,
.small-pull-0 {
  position: static;
  margin-left: 0;
  margin-right: 0; }

@media screen and (min-width: 32em) {
  .medium-1 {
    width: 8.33333%; }
  .medium-push-1 {
    position: relative;
    left: 8.33333%; }
  .medium-pull-1 {
    position: relative;
    left: -8.33333%; }
  .medium-offset-0 {
    margin-left: 0%; }
  .medium-2 {
    width: 16.66667%; }
  .medium-push-2 {
    position: relative;
    left: 16.66667%; }
  .medium-pull-2 {
    position: relative;
    left: -16.66667%; }
  .medium-offset-1 {
    margin-left: 8.33333%; }
  .medium-3 {
    width: 25%; }
  .medium-push-3 {
    position: relative;
    left: 25%; }
  .medium-pull-3 {
    position: relative;
    left: -25%; }
  .medium-offset-2 {
    margin-left: 16.66667%; }
  .medium-4 {
    width: 33.33333%; }
  .medium-push-4 {
    position: relative;
    left: 33.33333%; }
  .medium-pull-4 {
    position: relative;
    left: -33.33333%; }
  .medium-offset-3 {
    margin-left: 25%; }
  .medium-5 {
    width: 41.66667%; }
  .medium-push-5 {
    position: relative;
    left: 41.66667%; }
  .medium-pull-5 {
    position: relative;
    left: -41.66667%; }
  .medium-offset-4 {
    margin-left: 33.33333%; }
  .medium-6 {
    width: 50%; }
  .medium-push-6 {
    position: relative;
    left: 50%; }
  .medium-pull-6 {
    position: relative;
    left: -50%; }
  .medium-offset-5 {
    margin-left: 41.66667%; }
  .medium-7 {
    width: 58.33333%; }
  .medium-push-7 {
    position: relative;
    left: 58.33333%; }
  .medium-pull-7 {
    position: relative;
    left: -58.33333%; }
  .medium-offset-6 {
    margin-left: 50%; }
  .medium-8 {
    width: 66.66667%; }
  .medium-push-8 {
    position: relative;
    left: 66.66667%; }
  .medium-pull-8 {
    position: relative;
    left: -66.66667%; }
  .medium-offset-7 {
    margin-left: 58.33333%; }
  .medium-9 {
    width: 75%; }
  .medium-push-9 {
    position: relative;
    left: 75%; }
  .medium-pull-9 {
    position: relative;
    left: -75%; }
  .medium-offset-8 {
    margin-left: 66.66667%; }
  .medium-10 {
    width: 83.33333%; }
  .medium-push-10 {
    position: relative;
    left: 83.33333%; }
  .medium-pull-10 {
    position: relative;
    left: -83.33333%; }
  .medium-offset-9 {
    margin-left: 75%; }
  .medium-11 {
    width: 91.66667%; }
  .medium-push-11 {
    position: relative;
    left: 91.66667%; }
  .medium-pull-11 {
    position: relative;
    left: -91.66667%; }
  .medium-offset-10 {
    margin-left: 83.33333%; }
  .medium-12 {
    width: 100%; }
  .medium-offset-11 {
    margin-left: 91.66667%; }
  .medium-up-1 .column, .medium-up-1 .columns {
    width: 100%;
    float: left; }
    .medium-up-1 .column:nth-of-type(1n), .medium-up-1 .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-1 .column:nth-of-type(1n+1), .medium-up-1 .columns:nth-of-type(1n+1) {
      clear: both; }
    .medium-up-1 .column:last-child, .medium-up-1 .columns:last-child {
      float: left; }
  .medium-up-2 .column, .medium-up-2 .columns {
    width: 50%;
    float: left; }
    .medium-up-2 .column:nth-of-type(1n), .medium-up-2 .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-2 .column:nth-of-type(2n+1), .medium-up-2 .columns:nth-of-type(2n+1) {
      clear: both; }
    .medium-up-2 .column:last-child, .medium-up-2 .columns:last-child {
      float: left; }
  .medium-up-3 .column, .medium-up-3 .columns {
    width: 33.33333%;
    float: left; }
    .medium-up-3 .column:nth-of-type(1n), .medium-up-3 .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-3 .column:nth-of-type(3n+1), .medium-up-3 .columns:nth-of-type(3n+1) {
      clear: both; }
    .medium-up-3 .column:last-child, .medium-up-3 .columns:last-child {
      float: left; }
  .medium-up-4 .column, .medium-up-4 .columns {
    width: 25%;
    float: left; }
    .medium-up-4 .column:nth-of-type(1n), .medium-up-4 .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-4 .column:nth-of-type(4n+1), .medium-up-4 .columns:nth-of-type(4n+1) {
      clear: both; }
    .medium-up-4 .column:last-child, .medium-up-4 .columns:last-child {
      float: left; }
  .medium-up-5 .column, .medium-up-5 .columns {
    width: 20%;
    float: left; }
    .medium-up-5 .column:nth-of-type(1n), .medium-up-5 .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-5 .column:nth-of-type(5n+1), .medium-up-5 .columns:nth-of-type(5n+1) {
      clear: both; }
    .medium-up-5 .column:last-child, .medium-up-5 .columns:last-child {
      float: left; }
  .medium-up-6 .column, .medium-up-6 .columns {
    width: 16.66667%;
    float: left; }
    .medium-up-6 .column:nth-of-type(1n), .medium-up-6 .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-6 .column:nth-of-type(6n+1), .medium-up-6 .columns:nth-of-type(6n+1) {
      clear: both; }
    .medium-up-6 .column:last-child, .medium-up-6 .columns:last-child {
      float: left; }
  .column.medium-centered, .medium-centered.columns {
    float: none;
    margin-left: auto;
    margin-right: auto; }
  .medium-uncenter,
  .medium-push-0,
  .medium-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0; } }

@media screen and (min-width: 64em) {
  .large-1 {
    width: 8.33333%; }
  .large-push-1 {
    position: relative;
    left: 8.33333%; }
  .large-pull-1 {
    position: relative;
    left: -8.33333%; }
  .large-offset-0 {
    margin-left: 0%; }
  .large-2 {
    width: 16.66667%; }
  .large-push-2 {
    position: relative;
    left: 16.66667%; }
  .large-pull-2 {
    position: relative;
    left: -16.66667%; }
  .large-offset-1 {
    margin-left: 8.33333%; }
  .large-3 {
    width: 25%; }
  .large-push-3 {
    position: relative;
    left: 25%; }
  .large-pull-3 {
    position: relative;
    left: -25%; }
  .large-offset-2 {
    margin-left: 16.66667%; }
  .large-4 {
    width: 33.33333%; }
  .large-push-4 {
    position: relative;
    left: 33.33333%; }
  .large-pull-4 {
    position: relative;
    left: -33.33333%; }
  .large-offset-3 {
    margin-left: 25%; }
  .large-5 {
    width: 41.66667%; }
  .large-push-5 {
    position: relative;
    left: 41.66667%; }
  .large-pull-5 {
    position: relative;
    left: -41.66667%; }
  .large-offset-4 {
    margin-left: 33.33333%; }
  .large-6 {
    width: 50%; }
  .large-push-6 {
    position: relative;
    left: 50%; }
  .large-pull-6 {
    position: relative;
    left: -50%; }
  .large-offset-5 {
    margin-left: 41.66667%; }
  .large-7 {
    width: 58.33333%; }
  .large-push-7 {
    position: relative;
    left: 58.33333%; }
  .large-pull-7 {
    position: relative;
    left: -58.33333%; }
  .large-offset-6 {
    margin-left: 50%; }
  .large-8 {
    width: 66.66667%; }
  .large-push-8 {
    position: relative;
    left: 66.66667%; }
  .large-pull-8 {
    position: relative;
    left: -66.66667%; }
  .large-offset-7 {
    margin-left: 58.33333%; }
  .large-9 {
    width: 75%; }
  .large-push-9 {
    position: relative;
    left: 75%; }
  .large-pull-9 {
    position: relative;
    left: -75%; }
  .large-offset-8 {
    margin-left: 66.66667%; }
  .large-10 {
    width: 83.33333%; }
  .large-push-10 {
    position: relative;
    left: 83.33333%; }
  .large-pull-10 {
    position: relative;
    left: -83.33333%; }
  .large-offset-9 {
    margin-left: 75%; }
  .large-11 {
    width: 91.66667%; }
  .large-push-11 {
    position: relative;
    left: 91.66667%; }
  .large-pull-11 {
    position: relative;
    left: -91.66667%; }
  .large-offset-10 {
    margin-left: 83.33333%; }
  .large-12 {
    width: 100%; }
  .large-offset-11 {
    margin-left: 91.66667%; }
  .large-up-1 .column, .large-up-1 .columns {
    width: 100%;
    float: left; }
    .large-up-1 .column:nth-of-type(1n), .large-up-1 .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-1 .column:nth-of-type(1n+1), .large-up-1 .columns:nth-of-type(1n+1) {
      clear: both; }
    .large-up-1 .column:last-child, .large-up-1 .columns:last-child {
      float: left; }
  .large-up-2 .column, .large-up-2 .columns {
    width: 50%;
    float: left; }
    .large-up-2 .column:nth-of-type(1n), .large-up-2 .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-2 .column:nth-of-type(2n+1), .large-up-2 .columns:nth-of-type(2n+1) {
      clear: both; }
    .large-up-2 .column:last-child, .large-up-2 .columns:last-child {
      float: left; }
  .large-up-3 .column, .large-up-3 .columns {
    width: 33.33333%;
    float: left; }
    .large-up-3 .column:nth-of-type(1n), .large-up-3 .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-3 .column:nth-of-type(3n+1), .large-up-3 .columns:nth-of-type(3n+1) {
      clear: both; }
    .large-up-3 .column:last-child, .large-up-3 .columns:last-child {
      float: left; }
  .large-up-4 .column, .large-up-4 .columns {
    width: 25%;
    float: left; }
    .large-up-4 .column:nth-of-type(1n), .large-up-4 .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-4 .column:nth-of-type(4n+1), .large-up-4 .columns:nth-of-type(4n+1) {
      clear: both; }
    .large-up-4 .column:last-child, .large-up-4 .columns:last-child {
      float: left; }
  .large-up-5 .column, .large-up-5 .columns {
    width: 20%;
    float: left; }
    .large-up-5 .column:nth-of-type(1n), .large-up-5 .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-5 .column:nth-of-type(5n+1), .large-up-5 .columns:nth-of-type(5n+1) {
      clear: both; }
    .large-up-5 .column:last-child, .large-up-5 .columns:last-child {
      float: left; }
  .large-up-6 .column, .large-up-6 .columns {
    width: 16.66667%;
    float: left; }
    .large-up-6 .column:nth-of-type(1n), .large-up-6 .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-6 .column:nth-of-type(6n+1), .large-up-6 .columns:nth-of-type(6n+1) {
      clear: both; }
    .large-up-6 .column:last-child, .large-up-6 .columns:last-child {
      float: left; }
  .column.large-centered, .large-centered.columns {
    float: none;
    margin-left: auto;
    margin-right: auto; }
  .large-uncenter,
  .large-push-0,
  .large-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0; } }

@media screen and (min-width: 64em) {
  .bottom-see-also .large-7,
  .bottom-see-also .medium-7 {
    width: 52%!important;
   
  }
  .bottom-see-also .large-5,
  .bottom-see-also .medium-5 {
    width: 46%!important;
   
  }
}
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0; }

p {
  font-size: inherit;
  margin-bottom: 1rem;
  text-rendering: optimizeLegibility;
  font-size: 1.0625rem;
  line-height: 1.4375rem;
  font-weight: 300; }

@media screen and (min-width: 32em) {
  p {
    font-size: 1.1875rem;
    line-height: 1.75rem; }
}

em,
i {
  font-style: italic;
  line-height: inherit; }

strong,
b {
  font-weight: bold;
  line-height: inherit; }

small {
  font-size: 80%;
  line-height: inherit; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "GillSansNova", Calibri, sans-serif;
  font-weight: normal;
  font-style: normal;
  color: inherit;
  text-rendering: optimizeLegibility;
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.4; }
  h1 small,
  h2 small,
  h3 small,
  h4 small,
  h5 small,
  h6 small {
    color: #cacaca;
    line-height: 0; }

h1 {
  font-family: "GillSansNova", Calibri, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase; }

h2 {
  font-size: 1.0625rem; 
  font-weight: bold;
  text-transform: uppercase; }

h3 {
  font-size: 1.1875rem; }

h4 {
  font-size: 1.125rem; }

h5 {
  font-size: 1.0625rem; }

h6 {
  font-size: 1rem; }



@media screen and (min-width: 32em) {
  h1 {
    font-size: 2.0625rem; }
  h2 {
    font-size: 1.375rem; }
  h3 {
    font-size: 1.1875rem; 
  font-weight: bold;}
  h4 {
    font-size: 1.5625rem; }
  h5 {
    font-size: 1.25rem; }
  h6 {
    font-size: 1rem; } }

a {
  color: #d2232a;
  text-decoration: none;
  line-height: inherit;
  cursor: pointer; }
  a:hover, a:focus {
    color: #d2232a;
    text-decoration: underline; }
  a img {
    border: 0; }

hr {
  max-width: 75rem;
  height: 0;
  border-top: 0;
  border-bottom: 1px solid #cacaca;
  margin: 1.25rem auto;
  clear: both; }

ul,
ol,
dl {
  line-height: 1.6;
  margin-bottom: 1rem;
  list-style-position: outside; }

li {
  font-size: inherit; }

@media screen and (min-width: 32em) {
  li {
    font-size: 1.1875rem;
    line-height: 147%;
    font-weight: 300;
  }
  #related li {
   font-weight: bold; 
  }


}
ul {
  list-style-type: disc;
  margin-left: 1.25rem; }

ol {
  margin-left: 1.25rem; }

ul ul, ol ul, ul ol, ol ol {
  margin-left: 1.25rem;
  margin-bottom: 0;
  list-style-type: inherit; }

dl {
  margin-bottom: 1rem; }
  dl dt {
    margin-bottom: 0.3rem;
    font-weight: bold; }

blockquote {
  margin: 0;
  border-left: none; 
  background: url('../images/quote-marks.svg') 0 9px no-repeat!important;
  padding: 0 0 0 2.2em!important;
}

blockquote, blockquote p {
  line-height: 1.4;
  color: #666666; 
  font-size: 1.4rem;
}

cite {
  display: block;
  font-size: 0.8125rem;
  color: #8a8a8a; }
  cite:before {
    content: '\2014 \0020'; }

abbr {
  color: #0a0a0a;
  cursor: help;
  border-bottom: 1px dotted #0a0a0a; }

code {
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #0a0a0a;
  background-color: #e6e6e6;
  border: 1px solid #cacaca;
  padding: 0.125rem 0.3125rem 0.0625rem; }

kbd {
  padding: 0.125rem 0.25rem 0;
  margin: 0;
  background-color: #e6e6e6;
  color: #0a0a0a;
  font-family: Consolas, "Liberation Mono", Courier, monospace; }

.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
  line-height: 1.4;
  color: #8a8a8a; }

.lead {
  font-size: 125%;
  line-height: 1.6; }

.stat {
  font-size: 2.5rem;
  line-height: 1; }
  p + .stat {
    margin-top: -1rem; }

.no-bullet {
  margin-left: 0;
  list-style: none; }

.text-left {
  text-align: left; }

@media screen and (min-width: 32em) {
  .medium-text-left {
    text-align: left; } }

@media screen and (min-width: 64em) {
  .large-text-left {
    text-align: left; } }

.text-right {
  text-align: right; }

@media screen and (min-width: 32em) {
  .medium-text-right {
    text-align: right; } }

@media screen and (min-width: 64em) {
  .large-text-right {
    text-align: right; } }

.text-center {
  text-align: center; }

@media screen and (min-width: 32em) {
  .medium-text-center {
    text-align: center; } }

@media screen and (min-width: 64em) {
  .large-text-center {
    text-align: center; } }

.text-justify {
  text-align: justify; }

@media screen and (min-width: 32em) {
  .medium-text-justify {
    text-align: justify; } }

@media screen and (min-width: 64em) {
  .large-text-justify {
    text-align: justify; } }

.show-for-print {
  display: none !important; }

@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important; }
  .show-for-print {
    display: block !important; }
  .hide-for-print {
    display: none !important; }
  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; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  .ir a:after,
  a[href^='javascript:']:after,
  a[href^='#']:after {
    content: ''; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  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; } }

.button {
  display: inline-block;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  transition: all 0.25s ease-out;
  vertical-align: middle;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0.5em 1em;
  margin: 1.5rem 1rem 0 1.2rem;
  font-size: 1.2rem;
  background: #d2232a;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold; }
  [data-whatinput="mouse"] .button {
    outline: 0; }
  .button:hover, .button:focus {
    background: #d2232a;
    color: #000;
    text-decoration: none; }
  .button.tiny {
    font-size: 0.6rem; }
  .button.small {
    font-size: 0.75rem; }
  .button.large {
    font-size: 1.25rem; }
  .button.expanded {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-right: 0; }
  .button.primary {
    background: #d2232a;
    color: #fff; }
    .button.primary:hover, .button.primary:focus {
        }
  .button.secondary {
    background: #777;
    color: #fff; }
    .button.secondary:hover, .button.secondary:focus {
      background: #5f5f5f;
      color: #fff; }
  .button.success {
    background: #3adb76;
    color: #fff; }
    .button.success:hover, .button.success:focus {
      background: #22bb5b;
      color: #fff; }
  .button.alert {
    background: #ec5840;
    color: #fff; }
    .button.alert:hover, .button.alert:focus {
      background: #da3116;
      color: #fff; }
  .button.warning {
    background: #ffae00;
    color: #fff; }
    .button.warning:hover, .button.warning:focus {
      background: #cc8b00;
      color: #fff; }
  .button.hollow {
    border: 1px solid #d2232a;
    color: #d2232a; }
    .button.hollow, .button.hollow:hover, .button.hollow:focus {
      background: transparent; }
    .button.hollow:hover, .button.hollow:focus {
      border-color: #0c4d78;
      color: #0c4d78; }
    .button.hollow.primary {
      border: 1px solid #d2232a;
      color: #d2232a; }
      .button.hollow.primary:hover, .button.hollow.primary:focus {
        border-color: #0c4d78;
        color: #0c4d78; }
    .button.hollow.secondary {
      border: 1px solid #777;
      color: #777; }
      .button.hollow.secondary:hover, .button.hollow.secondary:focus {
        border-color: #3c3c3c;
        color: #3c3c3c; }
    .button.hollow.success {
      border: 1px solid #3adb76;
      color: #3adb76; }
      .button.hollow.success:hover, .button.hollow.success:focus {
        border-color: #157539;
        color: #157539; }
    .button.hollow.alert {
      border: 1px solid #ec5840;
      color: #ec5840; }
      .button.hollow.alert:hover, .button.hollow.alert:focus {
        border-color: #881f0e;
        color: #881f0e; }
    .button.hollow.warning {
      border: 1px solid #ffae00;
      color: #ffae00; }
      .button.hollow.warning:hover, .button.hollow.warning:focus {
        border-color: #805700;
        color: #805700; }
  .button.disabled {
    opacity: 0.25;
    cursor: not-allowed;
    pointer-events: none; }
  .button.dropdown::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 0.4em;
    border-color: #fefefe transparent transparent;
    border-top-style: solid;
    position: relative;
    top: 0.4em;
    float: right;
    margin-left: 1em;
    display: inline-block; }
  .button.arrow-only::after {
    margin-left: 0;
    float: none;
    top: 0.2em; }

[type="text"], [type="password"], [type="date"], [type="datetime"], [type="datetime-local"], [type="month"], [type="week"], [type="email"], [type="number"], [type="search"], [type="tel"], [type="time"], [type="url"], [type="color"],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2rem;
  padding: 0.5rem;
  border: 0;
  margin: 0 0 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: #000;
  background-color: #fefefe;
 /* box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
 transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
 */
  border-radius: 0;
  
  -webkit-appearance: none;
  -moz-appearance: none; }
  [type="text"]:focus, [type="password"]:focus, [type="date"]:focus, [type="datetime"]:focus, [type="datetime-local"]:focus, [type="month"]:focus, [type="week"]:focus, [type="email"]:focus, [type="number"]:focus, [type="search"]:focus, [type="tel"]:focus, [type="time"]:focus, [type="url"]:focus, [type="color"]:focus,
  textarea:focus {
    border: 1px solid #8a8a8a;
    background: #fefefe;
    outline: none;
    box-shadow: 0 0 5px #cacaca;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out; }

textarea {
  max-width: 100%; }
  textarea[rows] {
    height: auto; }

input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #e6e6e6;
  cursor: default; }

[type="submit"],
[type="button"] {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none; }

input[type="search"] {
  box-sizing: border-box; }

[type="file"],
[type="checkbox"],
[type="radio"] {
  margin: 0 0 1rem; }

[type="checkbox"] + label,
[type="radio"] + label {
  display: inline-block;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
  vertical-align: baseline; }

label > [type="checkbox"],
label > [type="label"] {
  margin-right: 0.5rem; }

[type="file"] {
  width: 100%; }

label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.8;
  color: #0a0a0a; }
  label.middle {
    margin: 0 0 1rem;
    padding: 0.5625rem 0; }

.help-text {
  margin-top: -0.5rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: #333; }

.input-group {
  display: table;
  width: 100%;
  margin-bottom: 1rem; }

.input-group-label, .input-group-field, .input-group-button {
  display: table-cell;
  margin: 0;
  vertical-align: middle; }

.input-group-label {
  text-align: center;
  width: 1%;
  height: 100%;
  padding: 0 1rem;
  background: #e6e6e6;
  color: #0a0a0a;
  border: 1px solid #cacaca; }
  .input-group-label:first-child {
    border-right: 0; }
  .input-group-label:last-child {
    border-left: 0; }

.input-group-button {
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  width: 1%; }

fieldset {
  border: 0;
  padding: 0;
  margin: 0; }

legend {
  margin-bottom: 0.5rem; }

.fieldset {
  border: 1px solid #cacaca;
  padding: 1.25rem;
  margin: 1.125rem 0; }
  .fieldset legend {
    background: #fefefe;
    padding: 0 0.1875rem;
    margin: 0;
    margin-left: -0.1875rem; }

select {
  height: 2rem;
  padding: 0.5rem;
  border: 1px solid #cacaca;
  border-radius: 0;
  margin: 0 0 1rem;
  font-size: 1rem;
  font-family: inherit;
  line-height: normal;
  color: #8a8a8a;
  background-color: #e6e6e6;  
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
 }
  @media screen and (min-width: 0\0) {
    select {
      background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg=="); } }
  select:disabled {
    background-color: #e6e6e6;
    cursor: default; }
  select::-ms-expand {
    display: none; }
  select[multiple] {
    height: auto; }

.is-invalid-input:not(:focus) {
  background-color: rgba(236, 88, 64, 0.1);
  border-color: #ec5840; }

.is-invalid-label {
  color: #ec5840; }

.form-error {
  display: none;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: bold;
  color: #ec5840; }
  .form-error.is-visible {
    display: block; }

.hide {
  display: none !important; }

.postid-13226 .button {
  display: none!important;
}

.invisible {
  visibility: hidden; }

@media screen and (min-width: 0em) and (max-width: 31.9375em) {
  .hide-for-small-only {
    display: none !important; } }

@media screen and (max-width: 0em), screen and (min-width: 32em) {
  .show-for-small-only {
    display: none !important; } }

@media screen and (min-width: 32em) {
  .hide-for-medium {
    display: none !important; } }

@media screen and (max-width: 31.9375em) {
  .show-for-medium {
    display: none !important; } }

@media screen and (min-width: 32em) and (max-width: 63.9375em) {
  .hide-for-medium-only {
    display: none !important; } }

@media screen and (max-width: 31.9375em), screen and (min-width: 64em) {
  .show-for-medium-only {
    display: none !important; } }

@media screen and (min-width: 64em) {
  .hide-for-large {
    display: none !important; } }

@media screen and (max-width: 63.9375em) {
  .show-for-large {
    display: none !important; } }

@media screen and (min-width: 64em) and (max-width: 74.9375em) {
  .hide-for-large-only {
    display: none !important; } }

@media screen and (max-width: 63.9375em), screen and (min-width: 75em) {
  .show-for-large-only {
    display: none !important; } }

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0); }

.show-on-focus:active, .show-on-focus:focus {
  position: static !important;
  height: auto;
  width: auto;
  overflow: visible;
  clip: auto; }

.show-for-landscape,
.hide-for-portrait {
  display: block !important; }
  @media screen and (orientation: landscape) {
    .show-for-landscape,
    .hide-for-portrait {
      display: block !important; } }
  @media screen and (orientation: portrait) {
    .show-for-landscape,
    .hide-for-portrait {
      display: none !important; } }

.hide-for-landscape,
.show-for-portrait {
  display: none !important; }
  @media screen and (orientation: landscape) {
    .hide-for-landscape,
    .show-for-portrait {
      display: none !important; } }
  @media screen and (orientation: portrait) {
    .hide-for-landscape,
    .show-for-portrait {
      display: block !important; } }

.float-left {
  float: left !important; }

.float-right {
  float: right !important; }

.float-center {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.clearfix::before, .clearfix::after {
  content: ' ';
  display: table; }

.clearfix::after {
  clear: both; }

.accordion {
  list-style-type: none;
  background: #fefefe;
  border: 1px solid #e6e6e6;
  border-radius: 0;
  margin-left: 0; }

.accordion-title {
  display: block;
  padding: 1.25rem 1rem;
  line-height: 1;
  font-size: 0.75rem;
  color: #d2232a;
  position: relative;
  border-bottom: 1px solid #e6e6e6; }
  .accordion-title:hover, .accordion-title:focus {
    background-color: #e6e6e6; }
  :last-child > .accordion-title {
    border-bottom-width: 0; }
  .accordion-title::before {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    margin-top: -0.5rem; }
  .is-active > .accordion-title::before {
    content: '–'; }

.accordion-content {
  padding: 1.25rem 1rem;
  display: none;
  border-bottom: 1px solid #e6e6e6; }

.is-accordion-submenu-parent > a {
  position: relative; }
  .is-accordion-submenu-parent > a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    border-color: #d2232a transparent transparent;
    border-top-style: solid;
    position: absolute;
    top: 50%;
    margin-top: -4px;
    right: 1rem; }

.is-accordion-submenu-parent[aria-expanded="true"] > a::after {
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1); }

.badge {
  display: inline-block;
  padding: 0.3em;
  min-width: 2.1em;
  font-size: 0.6rem;
  text-align: center;
  border-radius: 50%;
  background: #d2232a;
  color: #fefefe; }
  .badge.secondary {
    background: #777;
    color: #fefefe; }
  .badge.success {
    background: #3adb76;
    color: #fefefe; }
  .badge.alert {
    background: #ec5840;
    color: #fefefe; }
  .badge.warning {
    background: #ffae00;
    color: #fefefe; }

.breadcrumbs {
  list-style: none;
  margin: 0 0 3.5rem 0; 
  color: #33312f;
  font-size: 0.75em;
  text-transform: uppercase;
  }
  .breadcrumbs::before, .breadcrumbs::after {
    content: ' ';
    display: table; }
  .breadcrumbs::after {
    clear: both; }
  .breadcrumbs li {
    float: left;
    color: #0a0a0a;
    font-size: 0.6875rem;
    cursor: default;
    text-transform: uppercase; }
    .breadcrumbs li:not(:last-child)::after {
      color: #cacaca;
      content: "/";
      margin: 0 0.75rem;
      position: relative;
      top: 1px;
      opacity: 1; }
  .breadcrumbs a {
    color: #000000!important; }
    .breadcrumbs a:hover {
      text-decoration: underline; }
  .breadcrumbs .disabled {
    color: #cacaca; }

.button-group {
  margin-bottom: 1rem;
  font-size: 0.9rem; }
  .button-group::before, .button-group::after {
    content: ' ';
    display: table; }
  .button-group::after {
    clear: both; }
  .button-group .button {
    float: left;
    margin: 0;
    font-size: inherit; }
    .button-group .button:not(:last-child) {
      border-right: 1px solid #fefefe; }
  .button-group.tiny {
    font-size: 0.6rem; }
  .button-group.small {
    font-size: 0.75rem; }
  .button-group.large {
    font-size: 1.25rem; }
  .button-group.expanded .button:nth-last-child(2):first-child,
  .button-group.expanded .button:nth-last-child(2):first-child ~ .button {
    width: 50%; }
  .button-group.expanded .button:nth-last-child(3):first-child,
  .button-group.expanded .button:nth-last-child(3):first-child ~ .button {
    width: 33.33333%; }
  .button-group.expanded .button:nth-last-child(4):first-child,
  .button-group.expanded .button:nth-last-child(4):first-child ~ .button {
    width: 25%; }
  .button-group.expanded .button:nth-last-child(5):first-child,
  .button-group.expanded .button:nth-last-child(5):first-child ~ .button {
    width: 20%; }
  .button-group.expanded .button:nth-last-child(6):first-child,
  .button-group.expanded .button:nth-last-child(6):first-child ~ .button {
    width: 16.66667%; }
  .button-group.primary .button {
    background: #d2232a;
    color: #fff; }
    .button-group.primary .button:hover, .button-group.primary .button:focus {
      background: #147cc0;
      color: #fff; }
  .button-group.secondary .button {
    background: #777;
    color: #fff; }
    .button-group.secondary .button:hover, .button-group.secondary .button:focus {
      background: #5f5f5f;
      color: #fff; }
  .button-group.success .button {
    background: #3adb76;
    color: #fff; }
    .button-group.success .button:hover, .button-group.success .button:focus {
      background: #22bb5b;
      color: #fff; }
  .button-group.alert .button {
    background: #ec5840;
    color: #fff; }
    .button-group.alert .button:hover, .button-group.alert .button:focus {
      background: #da3116;
      color: #fff; }
  .button-group.warning .button {
    background: #ffae00;
    color: #fff; }
    .button-group.warning .button:hover, .button-group.warning .button:focus {
      background: #cc8b00;
      color: #fff; }
  .button-group.stacked .button, .button-group.stacked-for-small .button {
    width: 100%;
    border-right: 0; }
  @media screen and (min-width: 32em) {
    .button-group.stacked-for-small .button {
      width: auto; }
      .button-group.stacked-for-small .button:not(:last-child) {
        border-right: 1px solid #fefefe; } }

.callout {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  position: relative;
  background-color: transparent; }
  .callout > :first-child {
    margin-top: 0; }
  .callout > :last-child {
    margin-bottom: 0; }
  .callout.primary {
    background-color: #def0fc; }
    .callout.primary a {
      color: #116ca8; }
      .callout.primary a:hover {
        color: #0a4063; }
  .callout.secondary {
    background-color: #ebebeb; }
  .callout.success {
    background-color: #e1faea; }
    .callout.success a {
      color: #1ea450; }
      .callout.success a:hover {
        color: #126330; }
  .callout.alert {
    background-color: #fce6e2; }
    .callout.alert a {
      color: #bf2b13; }
      .callout.alert a:hover {
        color: #791b0c; }
  .callout.warning {
    background-color: #fff3d9; }
    .callout.warning a {
      color: #b37a00; }
      .callout.warning a:hover {
        color: #664600; }
  .callout.small {
    padding-top: 0.5rem;
    padding-right: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem; }
  .callout.large {
    padding-top: 3rem;
    padding-right: 3rem;
    padding-bottom: 3rem;
    padding-left: 3rem; }

.close-button {
  position: absolute;
  color: #8a8a8a;
  right: 1rem;
  top: 0.5rem;
  font-size: 2em;
  line-height: 1;
  cursor: pointer; }
  [data-whatinput="mouse"] .close-button {
    outline: 0; }
  .close-button:hover, .close-button:focus {
    color: #0a0a0a; }

.is-drilldown {
  position: relative;
  overflow: hidden; }

.is-drilldown-sub {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  height: 100%;
  width: 100%;
  background: #fefefe;
  transition: -webkit-transform 0.15s linear;
  transition: transform 0.15s linear; }
  .is-drilldown-sub.is-active {
    z-index: 1;
    display: block;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); }
  .is-drilldown-sub.is-closing {
    -webkit-transform: translateX(100%);
    transform: translateX(100%); }

.is-drilldown-submenu-parent > a {
  position: relative; }
  .is-drilldown-submenu-parent > a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    border-color: transparent transparent transparent #d2232a;
    border-left-style: solid;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    right: 1rem; }

.js-drilldown-back::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  border-color: transparent #d2232a transparent transparent;
  border-right-style: solid;
  float: left;
  margin-right: 0.75rem;
  margin-left: 0.6rem;
  margin-top: 14px; }

.dropdown-pane {
  background-color: #fefefe;
  border: 1px solid #cacaca;
  display: block;
  padding: 1rem;
  position: absolute;
  visibility: hidden;
  width: 300px;
  z-index: 10;
  border-radius: 0; }
  .dropdown-pane.is-open {
    visibility: visible; }

.dropdown-pane.tiny {
  width: 100px; }

.dropdown-pane.small {
  width: 200px; }

.dropdown-pane.large {
  width: 400px; }

.orwellred a:hover {
  text-decoration: none!important;
}
.dropdown.menu .has-submenu {
  position: relative;
  text-transform: uppercase; 
}
  .dropdown.menu .has-submenu:hover {
    background-color: #000;
  }

  .dropdown.menu .has-submenu a::after {
    float: right;
    margin-top: 3px;
    margin-left: 10px; }
  .dropdown.menu .has-submenu.is-down-arrow a {
    padding-right: 1.5rem;
    position: relative; }
  .dropdown.menu .has-submenu.is-down-arrow > a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: #d2232a transparent transparent;
    border-top-style: solid;
    position: absolute;
    top: 12px;
    right: 5px; }
  .dropdown.menu .has-submenu.is-left-arrow > a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent #d2232a transparent transparent;
    border-right-style: solid;
    float: left;
    margin-left: 0;
    margin-right: 10px; }
  .dropdown.menu .has-submenu.is-right-arrow > a ::after {
    /* Chevron code below */
  border-style: solid;
  border-width: 0.25em 0.25em 0 0;
  content: ' ';
  display: inline-block;
  height: 0.40em;
  left: 0.5em;
  position: relative; 
  transform: rotate(-45deg);
  vertical-align: top;
  width: 0.40em;
  top: 0;
  transform: rotate(135deg);
    }
  .dropdown.menu .has-submenu.is-right-arrow > a::after {
      /* Drop down arrow  */
  content: '';
  border-style: solid!important;
  border-width: 0.14em 0.14em 0 0!important;
  border-color: #000;
  height: 0.55em!important;
  left: 0.15em!important;
  position: relative; 
  transform: rotate(135deg);
  vertical-align: top;
  width: 0.63em!important;
}
.dropdown.menu .has-submenu.is-right-arrow > a::after:hover {
      /* Drop down arrow  */
  content: '';
  border-style: none!important;
  border-width: 0!important;
  border-color: #000;
  height: 0!important;
  left: 0!important;
  position: relative; 
  transform: rotate(135deg);
  vertical-align: top;
  width: 0!important;
}
 /* .dropdown.menu .has-submenu.is-right-arrow > a::after {
     
     content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent #000;
    border-left-style: solid; 
  transform: rotate(90deg);
} */
  .dropdown.menu .has-submenu.is-left-arrow.opens-inner .submenu {
    right: 0;
    left: auto; }
  .dropdown.menu .has-submenu.is-right-arrow.opens-inner .submenu {
    left: 0;
    right: auto; }
  .dropdown.menu .has-submenu.opens-inner .submenu {
    top: 100%; }

.dropdown.menu .submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 200px;
  z-index: 1;
  background: #000!important;
  border: none;
  padding-bottom: 1em; }
  .dropdown.menu .submenu > li {
    width: 100%;
    min-width: 16.875em }
  .dropdown.menu .submenu.first-sub {
    top: 100%;
    left: 0;
    right: auto; }
    .dropdown.menu .submenu a {
      color: #fff;
      font-size: 1rem;
    }
    .dropdown.menu .submenu a:hover {
      color: #d2232a;
    }
  .dropdown.menu .submenu:not(.js-dropdown-nohover) > .has-submenu:hover > .dropdown.menu .submenu, .dropdown.menu .submenu.js-dropdown-active {
    display: block; }

.dropdown.menu .has-submenu.opens-left .submenu {
  left: auto;
  right: 100%; }

.dropdown.menu.align-right .submenu.first-sub {
  top: 100%;
  left: auto;
  right: 0; }

.is-dropdown-menu.vertical {
  width: 100px; }
  .is-dropdown-menu.vertical.align-right {
    float: right; }
  .is-dropdown-menu.vertical > li .submenu {
    top: 0;
    left: 100%; }

.flex-video {
  position: relative;
  height: 0;
  padding-top: 1.5625rem;
  padding-bottom: 75%;
  margin-bottom: 1rem;
  overflow: hidden; }
  .flex-video iframe,
  .flex-video object,
  .flex-video embed,
  .flex-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .flex-video.widescreen {
    padding-bottom: 56.25%; }
  .flex-video.vimeo {
    padding-top: 0; }

.label {
  display: inline-block;
  padding: 0.33333rem 0.5rem;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  border-radius: 0;
  background: #d2232a;
  color: #fefefe; }
  .label.secondary {
    background: #777;
    color: #fefefe; }
  .label.success {
    background: #3adb76;
    color: #fefefe; }
  .label.alert {
    background: #ec5840;
    color: #fefefe; }
  .label.warning {
    background: #ffae00;
    color: #fefefe; }

.media-object {
  margin-bottom: 1rem;
  display: block; }
  .media-object img {
    max-width: none; }
  @media screen and (min-width: 0em) and (max-width: 31.9375em) {
    .media-object.stack-for-small .media-object-section {
      display: block;
      padding: 0;
      padding-bottom: 1rem; }
      .media-object.stack-for-small .media-object-section img {
        width: 100%; } }

.media-object-section {
  display: table-cell;
  vertical-align: top; }
  .media-object-section:first-child {
    padding-right: 1rem; }
  .media-object-section:last-child:not( + &:first-child) {
    padding-left: 1rem; }
  .media-object-section.middle {
    vertical-align: middle; }
  .media-object-section.bottom {
    vertical-align: bottom; }

.menu {
  margin: 0;
  list-style-type: none; }
  .menu > li {
    display: table-cell;
    vertical-align: middle; }
    [data-whatinput="mouse"] .menu > li {
      outline: 0; }
  .menu > li > a {
    display: block;
    padding: 0.7rem 1rem;
    line-height: 1;
    color: #FFF;
    text-transform: uppercase; 
    font-weight: 500 }

    #main-nav-container .menu li a {
      padding: 1.0625rem 1.25rem 0.8125rem 1.25rem;
    }
    #main-nav-container .menu li li a {
      padding: 0.625rem 0rem 0.625rem 1.25rem;
    }
    #main-nav-container .menu li ul {
      padding-top: 0.625em;
      padding-bottom: 1.5625em;
    }
  .submenu > li > a {
    color: #000;}
  .menu input,
  .menu a,
  .menu button {
    margin-bottom: 0; }
  .menu > li > a > img,
  .menu > li > a > i {
    vertical-align: middle; }
  .menu > li > a > span {
    vertical-align: middle; }
  .menu > li > a > img,
  .menu > li > a > i {
    display: inline-block;
    margin-right: 0.25rem; }
  .menu > li {
    display: table-cell; }
  .menu.vertical > li {
    display: block; }
  @media screen and (min-width: 32em) {
    .menu.medium-horizontal > li {
      display: table-cell; }
    .menu.medium-vertical > li {
      display: block; } }
  @media screen and (min-width: 64em) {
    .menu.large-horizontal > li {
      display: table-cell; }
    .menu.large-vertical > li {
      display: block; } }
  .menu.simple a {
    padding: 0;
    margin-right: 1rem; }
  .menu.align-right > li {
    float: right; }
  .menu.expanded {
    display: table;
    width: 100%; }
    .menu.expanded > li:nth-last-child(2):first-child,
    .menu.expanded > li:nth-last-child(2):first-child ~ li {
      width: 50%; }
    .menu.expanded > li:nth-last-child(3):first-child,
    .menu.expanded > li:nth-last-child(3):first-child ~ li {
      width: 33.33333%; }
    .menu.expanded > li:nth-last-child(4):first-child,
    .menu.expanded > li:nth-last-child(4):first-child ~ li {
      width: 25%; }
    .menu.expanded > li:nth-last-child(5):first-child,
    .menu.expanded > li:nth-last-child(5):first-child ~ li {
      width: 20%; }
    .menu.expanded > li:nth-last-child(6):first-child,
    .menu.expanded > li:nth-last-child(6):first-child ~ li {
      width: 16.66667%; }
    .menu.expanded > li:first-child:last-child {
      width: 100%; }
  .menu.icon-top > li > a {
    text-align: center; }
    .menu.icon-top > li > a > img,
    .menu.icon-top > li > a > i {
      display: block;
      margin: 0 auto 0.25rem; }
  .menu.nested {
    margin-left: 1rem; }

.menu-text {
  font-weight: bold;
  color: inherit;
  line-height: 1;
  padding-top: 0;
  padding-bottom: 0;
  padding: 0.7rem 1rem; }

html,
body {
  height: 100%; }

.off-canvas-wrapper {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-overflow-scrolling: touch; }

.off-canvas-wrapper-inner {
  position: relative;
  width: 100%;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease; }
  .off-canvas-wrapper-inner::before, .off-canvas-wrapper-inner::after {
    content: ' ';
    display: table; }
  .off-canvas-wrapper-inner::after {
    clear: both; }

.off-canvas-content {
  min-height: 100%;
  background: #fefefe;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  box-shadow: 0 0 10px rgba(10, 10, 10, 0.5); }

.js-off-canvas-exit {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(254, 254, 254, 0.25);
  cursor: pointer;
  transition: background 0.5s ease; }
  .is-off-canvas-open .js-off-canvas-exit {
    display: block; }

.off-canvas {
  position: absolute;
  background: #000000;
  z-index: -1;
  max-height: 100%;
  overflow-y: auto;
  -webkit-transform: translateX(0px);
  transform: translateX(0px); }
  [data-whatinput="mouse"] .off-canvas {
    outline: 0; }
  .off-canvas.position-left {
    left: -250px;
    top: 0;
    width: 250px; }
    .is-open-left {
      -webkit-transform: translateX(250px);
      transform: translateX(250px); }
  .off-canvas.position-right {
    right: -250px;
    top: 0;
    width: 250px; }
    .is-open-right {
      -webkit-transform: translateX(-250px);
      transform: translateX(-250px); }

@media screen and (min-width: 32em) {
  .position-left.reveal-for-medium {
    left: 0; }
    .position-left.reveal-for-medium ~ .off-canvas-content {
      margin-left: 250px; }
  .position-right.reveal-for-medium {
    right: 0; }
    .position-right.reveal-for-medium ~ .off-canvas-content {
      margin-right: 250px; } }

@media screen and (min-width: 64em) {
  .position-left.reveal-for-large {
    left: 0; }
    .position-left.reveal-for-large ~ .off-canvas-content {
      margin-left: 250px; }
  .position-right.reveal-for-large {
    right: 0; }
    .position-right.reveal-for-large ~ .off-canvas-content {
      margin-right: 250px; } }

.off-canvas #menu-item-14472,
.off-canvas .menu-item-16074 {
  display: none;
}
.orbit {
  position: relative; }

.orbit-container {
  position: relative;
  margin: 0;
  overflow: hidden;
  list-style: none; }

.orbit-slide {
  width: 100%;
  max-height: 100%; }

.orbit-figure {
  margin: 0; }

.orbit-image {
  margin: 0;
  width: 100%;
  max-width: 100%; }

.orbit-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  margin-bottom: 0;
  color: #fefefe;
  background-color: rgba(10, 10, 10, 0.5); }

.orbit-previous, .orbit-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
  padding: 1rem;
  color: #fefefe; }
  [data-whatinput="mouse"] .orbit-previous, [data-whatinput="mouse"] .orbit-next {
    outline: 0; }
  .orbit-previous:hover, .orbit-next:hover, .orbit-previous:active, .orbit-next:active, .orbit-previous:focus, .orbit-next:focus {
    background-color: rgba(10, 10, 10, 0.5); }

.orbit-previous {
  left: 0; }

.orbit-next {
  left: auto;
  right: 0; }

.orbit-bullets {
  position: relative;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  text-align: center; }
  [data-whatinput="mouse"] .orbit-bullets {
    outline: 0; }
  .orbit-bullets button {
    width: 1.2rem;
    height: 1.2rem;
    margin: 0.1rem;
    background-color: #cacaca;
    border-radius: 50%; }
    .orbit-bullets button:hover {
      background-color: #8a8a8a; }
    .orbit-bullets button.is-active {
      background-color: #8a8a8a; }

.pagination {
  margin-left: 0;
  margin-bottom: 1rem; }
  .pagination::before, .pagination::after {
    content: ' ';
    display: table; }
  .pagination::after {
    clear: both; }
  .pagination li {
    font-size: 0.875rem;
    margin-right: 0.0625rem;
    display: none;
    border-radius: 0; }
    .pagination li:last-child, .pagination li:first-child {
      display: inline-block; }
    @media screen and (min-width: 32em) {
      .pagination li {
        display: inline-block; } }
  .pagination a,
  .pagination button {
    color: #0a0a0a;
    display: block;
    padding: 0.1875rem 0.625rem;
    border-radius: 0; }
    .pagination a:hover,
    .pagination button:hover {
      background: #e6e6e6; }
  .pagination [aria-label="previous"]::before {
    content: '«';
    display: inline-block;
    margin-right: 0.75rem; }
  .pagination [aria-label="next"]::after {
    content: '»';
    display: inline-block;
    margin-left: 0.75rem; }
  .pagination .current {
    padding: 0.1875rem 0.625rem;
    background: #d2232a;
    color: #fefefe;
    cursor: default; }
  .pagination .disabled {
    padding: 0.1875rem 0.625rem;
    color: #cacaca;
    cursor: default; }
    .pagination .disabled:hover {
      background: transparent; }
  .pagination .ellipsis::after {
    content: '…';
    padding: 0.1875rem 0.625rem;
    color: #0a0a0a; }

.progress {
  background-color: #cacaca;
  height: 1rem;
  margin-bottom: 1rem;
  border-radius: 0; }
  .progress.primary .progress-meter {
    background-color: #d2232a; }
  .progress.secondary .progress-meter {
    background-color: #777; }
  .progress.success .progress-meter {
    background-color: #3adb76; }
  .progress.alert .progress-meter {
    background-color: #ec5840; }
  .progress.warning .progress-meter {
    background-color: #ffae00; }

.progress-meter {
  position: relative;
  display: block;
  width: 0%;
  height: 100%;
  background-color: #d2232a;
  border-radius: 0; }
  .progress-meter .progress-meter-text {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: 0;
    font-size: 0.75rem;
    font-weight: bold;
    color: #fefefe;
    white-space: nowrap; }

.slider {
  position: relative;
  height: 0.5rem;
  margin-top: 1.25rem;
  margin-bottom: 2.25rem;
  background-color: #e6e6e6;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: none;
  touch-action: none; }

.slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  max-width: 100%;
  height: 0.5rem;
  background-color: #cacaca;
  transition: all 0.2s ease-in-out; }
  .slider-fill.is-dragging {
    transition: all 0s linear; }

.slider-handle {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  left: 0;
  z-index: 1;
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  background-color: #d2232a;
  transition: all 0.2s ease-in-out;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  border-radius: 0; }
  [data-whatinput="mouse"] .slider-handle {
    outline: 0; }
  .slider-handle:hover {
    background-color: #1583cc; }
  .slider-handle.is-dragging {
    transition: all 0s linear; }

.slider.disabled,
.slider[disabled] {
  opacity: 0.25;
  cursor: not-allowed; }

.slider.vertical {
  display: inline-block;
  width: 0.5rem;
  height: 12.5rem;
  margin: 0 1.25rem;
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1); }
  .slider.vertical .slider-fill {
    top: 0;
    width: 0.5rem;
    max-height: 100%; }
  .slider.vertical .slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1.4rem;
    height: 1.4rem;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); }

.sticky-container {
  position: relative; }

.sticky {
  position: absolute;
  z-index: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.sticky.is-stuck {
  position: fixed;
  z-index: 5; }
  .sticky.is-stuck.is-at-top {
    top: 0; }
  .sticky.is-stuck.is-at-bottom {
    bottom: 0; }

.sticky.is-anchored {
  position: absolute;
  left: auto;
  right: auto; }
  .sticky.is-anchored.is-at-bottom {
    bottom: 0; }

.reveal-overlay {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1005;
  background-color: rgba(10, 10, 10, 0.45);
  overflow-y: scroll; }

.reveal {
  display: none;
  z-index: 1006;
  padding: 1rem;
  border: 1px solid #cacaca;
  margin: 100px auto 0 auto;
  background-color: #fefefe;
  border-radius: 0;
  position: absolute;
  overflow-y: auto; }
  [data-whatinput="mouse"] .reveal {
    outline: 0; }
  @media screen and (min-width: 32em) {
    .reveal {
      min-height: 0; } }
  .reveal .column, .reveal .columns,
  .reveal .columns {
    min-width: 0; }
  .reveal > :last-child {
    margin-bottom: 0; }
  @media screen and (min-width: 32em) {
    .reveal {
      width: 600px;
      max-width: 75rem; } }
  .reveal.collapse {
    padding: 0; }
  @media screen and (min-width: 32em) {
    .reveal .reveal {
      left: auto;
      right: auto;
      margin: 0 auto; } }
  @media screen and (min-width: 32em) {
    .reveal.tiny {
      width: 30%;
      max-width: 75rem; } }
  @media screen and (min-width: 32em) {
    .reveal.small {
      width: 50%;
      max-width: 75rem; } }
  @media screen and (min-width: 32em) {
    .reveal.large {
      width: 90%;
      max-width: 75rem; } }
  .reveal.full {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100vh;
    min-height: 100vh;
    max-width: none;
    margin-left: 0; }

.switch {
  margin-bottom: 1rem;
  outline: 0;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #fefefe;
  font-weight: bold;
  font-size: 0.875rem; }

.switch-input {
  opacity: 0;
  position: absolute; }

.switch-paddle {
  background: #cacaca;
  cursor: pointer;
  display: block;
  position: relative;
  width: 4rem;
  height: 2rem;
  transition: all 0.25s ease-out;
  border-radius: 0;
  color: inherit;
  font-weight: inherit; }
  input + .switch-paddle {
    margin: 0; }
  .switch-paddle::after {
    background: #fefefe;
    content: '';
    display: block;
    position: absolute;
    height: 1.5rem;
    left: 0.25rem;
    top: 0.25rem;
    width: 1.5rem;
    transition: all 0.25s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  input:checked ~ .switch-paddle {
    background: #d2232a; }
    input:checked ~ .switch-paddle::after {
      left: 2.25rem; }
  [data-whatinput="mouse"] input:focus ~ .switch-paddle {
    outline: 0; }

.switch-active, .switch-inactive {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }

.switch-active {
  left: 8%;
  display: none; }
  input:checked + label > .switch-active {
    display: block; }

.switch-inactive {
  right: 15%; }
  input:checked + label > .switch-inactive {
    display: none; }

.switch.tiny .switch-paddle {
  width: 3rem;
  height: 1.5rem;
  font-size: 0.625rem; }

.switch.tiny .switch-paddle::after {
  width: 1rem;
  height: 1rem; }

.switch.tiny input:checked ~ .switch-paddle:after {
  left: 1.75rem; }

.switch.small .switch-paddle {
  width: 3.5rem;
  height: 1.75rem;
  font-size: 0.75rem; }

.switch.small .switch-paddle::after {
  width: 1.25rem;
  height: 1.25rem; }

.switch.small input:checked ~ .switch-paddle:after {
  left: 2rem; }

.switch.large .switch-paddle {
  width: 5rem;
  height: 2.5rem;
  font-size: 1rem; }

.switch.large .switch-paddle::after {
  width: 2rem;
  height: 2rem; }

.switch.large input:checked ~ .switch-paddle:after {
  left: 2.75rem; }

table {
  margin-bottom: 1rem;
  border-radius: 0; }
  thead,
  tbody,
  tfoot {
    border: 1px solid #f1f1f1;
    background-color: #fefefe; }
  caption {
    font-weight: bold;
    padding: 0.5rem 0.625rem 0.625rem; }
  thead,
  tfoot {
    background: #f8f8f8;
    color: #0a0a0a; }
    thead tr,
    tfoot tr {
      background: transparent; }
    thead th,
    thead td,
    tfoot th,
    tfoot td {
      padding: 0.5rem 0.625rem 0.625rem;
      font-weight: bold;
      text-align: left; }
  tbody tr:nth-child(even) {
    background-color: #f1f1f1; }
  tbody th,
  tbody td {
    padding: 0.5rem 0.625rem 0.625rem; }

@media screen and (max-width: 63.9375em) {
  table.stack thead {
    display: none; }
  table.stack tfoot {
    display: none; }
  table.stack tr,
  table.stack th,
  table.stack td {
    display: block; }
  table.stack td {
    border-top: 0; } }

table.scroll {
  display: block;
  width: 100%;
  overflow-y: scroll; }

table.hover tr:hover {
  background-color: #f9f9f9; }

table.hover tr:nth-of-type(even):hover {
  background-color: #ececec; }

.tabs {
  margin: 0;
  list-style-type: none;
  background: #fefefe;
  border: 1px solid #e6e6e6; }
  .tabs::before, .tabs::after {
    content: ' ';
    display: table; }
  .tabs::after {
    clear: both; }
  .tabs.simple > li > a {
    padding: 0; }
    .tabs.simple > li > a:hover {
      background: transparent; }
  .tabs.vertical > li {
    width: auto;
    float: none;
    display: block; }
  .tabs.primary {
    background: #d2232a; }
    .tabs.primary > li > a {
      color: #fefefe; }
      .tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
        background: #1893e4; }

.tabs-title {
  float: left; }
  .tabs-title > a {
    display: block;
    padding: 1.25rem 1.5rem;
    line-height: 1;
    font-size: 12px;
    color: #d2232a; }
    .tabs-title > a:hover, .tabs-title > a:focus, .tabs-title > a[aria-selected="true"] {
      background: #e6e6e6; }

.tabs-content {
  background: #fefefe;
  transition: all 0.5s ease;
  border: 1px solid #e6e6e6;
  border-top: 0; }
  .tabs-content.vertical {
    border: 1px solid #e6e6e6;
    border-left: 0; }

.tabs-panel {
  display: none;
  padding: 1rem; }
  .tabs-panel.is-active {
    display: block; }

.thumbnail {
  border: solid 4px #fefefe;
  box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2);
  display: inline-block;
  line-height: 0;
  max-width: 100%;
  transition: box-shadow 200ms ease-out;
  border-radius: 0;
  margin-bottom: 1rem; }
  .thumbnail:hover, .thumbnail:focus {
    box-shadow: 0 0 6px 1px rgba(33, 153, 232, 0.5); }

.title-bar {
  background: #0a0a0a;
  color: #fefefe;
  padding: 0.5rem; }
  .title-bar::before, .title-bar::after {
    content: ' ';
    display: table; }
  .title-bar::after {
    clear: both; }
  .title-bar .menu-icon {
    margin-left: 0.25rem;
    margin-right: 0.5rem; }

.title-bar-left {
  float: left; }

.title-bar-right {
  float: right;
  text-align: right; }

.title-bar-title {
  font-weight: bold;
  vertical-align: middle;
  display: inline-block; }

.menu-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  width: 20px;
  height: 16px; }
  .menu-icon::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    top: 0;
    left: 0;
    box-shadow: 0 7px 0 white, 0 14px 0 white; }
  .menu-icon:hover::after {
    background: #cacaca;
    box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca; }

.menu-icon.dark {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  width: 20px;
  height: 16px; }
  .menu-icon.dark::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: black;
    top: 0;
    left: 0;
    box-shadow: 0 7px 0 black, 0 14px 0 black; }
  .menu-icon.dark:hover::after {
    background: #666;
    box-shadow: 0 7px 0 #666, 0 14px 0 #666; }

.has-tip {
  border-bottom: dotted 1px #8a8a8a;
  font-weight: bold;
  position: relative;
  display: inline-block; }
  .has-tip:hover {
    cursor: help; }

.tooltip {
  background-color: #0a0a0a;
  color: #fefefe;
  font-size: 80%;
  padding: 0.75rem;
  position: absolute;
  z-index: 10;
  top: calc(100% + 0.6495rem);
  max-width: 10rem !important;
  border-radius: 0; }
  .tooltip::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    border-color: transparent transparent #0a0a0a;
    border-bottom-style: solid;
    bottom: 100%;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); }
  .tooltip.top::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    border-color: #0a0a0a transparent transparent;
    border-top-style: solid;
    top: 100%;
    bottom: auto; }
  .tooltip.left::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    border-color: transparent transparent transparent #0a0a0a;
    border-left-style: solid;
    bottom: auto;
    left: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
  .tooltip.right::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    border-color: transparent #0a0a0a transparent transparent;
    border-right-style: solid;
    bottom: auto;
    left: auto;
    right: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }

.top-bar {
  padding: 0.5rem; }
  .top-bar::before, .top-bar::after {
    content: ' ';
    display: table; }
  .top-bar::after {
    clear: both; }
  .top-bar, .top-bar ul {
    background-color: #eee; }
  .top-bar input {
    width: 200px;
    margin-right: 1rem; }

@media screen and (min-width: 32em) {
  .top-bar-left {
    float: left; }
  .top-bar-right {
    float: right; } }

/************************************************

Stylesheet: Main Stylesheet

*************************************************/
/*********************
GENERAL STYLES
*********************/
/*********************
LINK STYLES
*********************/
a:link, a:visited:link {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3); }

/*********************
H1, H2, H3, H4, H5 P STYLES
*********************/
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
  text-decoration: none; }

/*********************
HEADER STYLES
*********************/
.header ul.off-canvas-list li {
  list-style: none; }

.header {
  background-color: #000;
}
li.page-item-7743 {
  display: none!important;
}
.header-other-sections {
  display: block;
  text-transform: uppercase;
  height: 3.7775em;
}
.menu ul {
  margin-left: 0!important;
}
.header-other-sections ul {
  margin-bottom: 0;
}
.header-other-sections ul li {
  display: inline;
  padding: 1.29rem 2rem 1rem 2rem;
  line-height: 1;
}
.header-other-sections ul li:hover {
  display: inline;
  background-color: #d2232a;
  cursor: pointer;
}
.header-other-sections ul li a {
   font-size: 0.875rem;
   color: #fff;
   text-decoration: none;
   line-height: 1.2;  
 }
.menu-item-16939, .menu-item-14994, #menu-item-14994,
 li.menu-item-14994, .menu-item-16074  {
  display: none!important;
}
 /* 
page-item-14255   =   Foundation
page-item-42      =   Prize
page-item-6904    =   Youth
 */
 .main-top-menu .page-item-14255 a,
.main-top-menu  .page-item-42 a,
.main-top-menu .page-item-6904 a {
  display: inline-block;
  margin-top: 11px;
  width: 90px!important;
  font-weight: 400;
 }


/*.page-item-42 a,
.page-item-13190 a {
  display: inline-block;
  margin-top: -7px;
  vertical-align: text-top;
  font-weight: 400;
 }
/* Top header nav items different colours */
.the-orwell-youth-prize .page-item-42:hover,
.page-item-42:hover,
.the-orwell-prize .page-item-42:hover {
    background-color: #d2232a!important;  
}
/* FOUNDATION BACK TO RED - removing grey 
.page-item-14255:hover {
  background-color: #6B6B6B!important;  
}
*/
/* .the-orwell-prize .page-item-6904:hover,
.single .page-item-6904:hover,  .unreportedbritain .page-item-6904:hover*/
.page-item-6904:hover {
    background-color: #ff9900!important;  
}

 /* Highlight the top header navigation */
.header-other-sections ul li.current_page_ancestor,
.header-other-sections ul li.current_page_item,
.header-other-sections li.page_item_has_children:hover,
body.single-book-title .header-other-sections li.page-item-42,
body.single-journalist .header-other-sections li.page-item-42,
body.single-investigative .header-other-sections li.page-item-42,
body.post-type-archive-investigative .header-other-sections li.page-item-42 {
  background-color: #d2232a;
}


/* FOUNDATION BACK TO RED - removing grey 

/* News and events highlight foundation in grey 
body.single-news .header-other-sections li.page-item-14255,
body.single-events .header-other-sections li.page-item-14255 {
  background-color: #6B6B6B;
}

*/

/*
.header-other-sections li.page-item-6904 a {
  display: inline-block;
  margin-top: 10px;
}
.header-other-sections li.page-item-42 a {
  
  display: inline-block;
}


.header-other-sections li.page-item-6904 em {
  font-style: normal;
  display: flex;
}
*/
#top-red-header em {
  font-style: normal;
}
#top-red-header a:hover,
#top-red-header a:active,
#top-red-header a:visited {
  color: #fff;
  text-decoration: none!important;
}


/* Top search box */ 
form.search {
  position: relative;
  margin-top: 11px;
}

.search #submit {
  display: none;  
}

form.search .icon, form.search .submit {
  width: 35px;
  height: 35px;
  background: url('../images/btn-search.png') 10px 10px no-repeat;
  display: block;
  position: absolute;
  top: 0;
  right: 0;  
}

form.search .submit {
  background: url('../images/btn-search.png') 10px 10px no-repeat;
  cursor: pointer;
}

/* Magnifying glass icon using pseudo elements: 
form.search .icon:after, form.search .submit:after  {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid white;
  border-radius: 50%;
  left: 10px;
  top: 9px;
}

form.search .icon:before, form.search .submit:before {
  content: '';
  position: absolute;
  height: 8px;
  width: 2px;
  background: white;
  transform: rotate(-35deg);
  top: 19px;
  left: 21px;
}

/* Styling the input */
form.search #search {
  -webkit-appearance: none;
  height: 35px;
  width: 0;
  position: absolute;
  padding: 0;
  opacity: 0;
  border: none;
  outline: none;
  position: absolute;
  right: 35px;
}


/* .header-other-sections li.page-item-6904 em:before {
    content: "\a ";
    white-space: pre;
} */


/* mobile menu  */
li.is-accordion-submenu-parent {
  background-color: #000;
  color: #fff;
  text-transform: uppercase;
}
li.is-accordion-submenu-item {
  background-color: #d2232a; 
  text-transform: uppercase;
}
li.is-accordion-submenu-item a {
  color: #fff;
}
li.is-accordion-submenu-item a:hover {
  text-decoration: none;
}
li.is-accordion-submenu-item ul {
  padding-left: 1rem;
}
.orwellred {
     background-color: #d2232a;
}

#top-red-header {
  padding: 1.0625em 0 1em 0; 
}
@media only screen and (min-width: 40.063em) { 

  #top-red-header {
    padding: 2.375em 0 2.75em 0; 
  }

}
#header-quote {
  font-style: italic;
  font-size: 1.5625rem;
  font-weight: 300;
  color: #fff;
  margin-top: -0.3125em;
  letter-spacing: 0.03125rem;
  max-width: 622px;
}
.logo-text {
  text-transform: uppercase;
  font-size: 1.5625rem;
  color: #fff;
  font-weight: 400;
 
}
a.logo-text:hover,
a.logo-text:active,
a.logo-text:visited {
  color: #fff!important;
  text-decoration: none!important;
}
@media only screen and (min-width: 40.063em) { 

  .logo-text {
    font-size: 2.6875rem;
   
  }

}
.top-bar {
  background-color: #d2232a;
  color: #fff;
}
#main-nav-container {
  width:100%;
  position: relative;
  z-index:99999;
}
#main-nav-container .logo-text {
  font-size: 0.875rem;
}
/* Hide the top sticky nav and elements by default */
#main-nav-container .top-header-sticky-logo,
#main-nav-container .top-header-sticky-search {
  display: none;
}

.navigation-drop-downs {
  float: left;
  height: 3.75em;
}
.navigation-drop-downs {
  letter-spacing: 0.03125rem;
}
.top-share-wrapper {
  float: right;
  margin-top: 0.5em;
}
/* Show the top sticky nav and elements */
#main-nav-container.fixed {
  position: fixed;
  top: 0;
  z-index:99999;
  background:#D2232A;
  padding: 0.25em 0 0.25em 0;

}
#main-nav-container em,
.breadcrumbs em {
  font-style: normal;
}
#main-nav-container.fixed .top-header-sticky-logo {
  display: inline;
  float: left;
  margin-right: 8em;
  margin-top: 0.7em;
}

.top-header-sticky-logo .logo-text {
 
  margin-top:  2px;
  margin-left:  10px;
}
#main-nav-container.fixed .top-header-sticky-search {
  display: inline;
  float: right;
}

#main-nav-container.fixed .navigation-drop-downs {
  float: left;
  font-size: 0.875rem;
}
#main-nav-container.fixed .navigation-drop-downs li {
  font-size: 0.875rem!important;
}

#main-nav-container.fixed form.search .icon, 
#main-nav-container.fixed form.search .submit {
  background: url('../images/btn-search-fixed.png') 5px 5px no-repeat;
}

body.the-orwell-youth-prize #main-nav-container.fixed form.search .icon, 
body.the-orwell-youth-prize #main-nav-container.fixed form.search .submit {
  background: url('../images/btn-search-fixed-youth.png') 5px 5px no-repeat;
}
a.header-enter-btn,
a.header-about-btn {
  display: inline-block;
  text-transform: uppercase;
  width: 4.25em;
  height: 6.5em;
  border: solid 2px #fff;
  color: #fff!important;
  padding: 8px;
  text-align: center;
  float: right;
  line-height: 147.05%;
  font-size: 1.0625rem;
}
a.header-enter-btn {
  padding-top: 1.125em;
  margin-top: 1.0625em;
}
a.header-about-btn {
  width: 105px;
  height: 60px;
}
/* Hiding the enter btn */
.the-orwell-youth-prize .header-enter-btn,
a.header-about-btn,
.the-orwell-foundation .header-enter-btn,
a.header-about-btn {
  display: none;
}
.the-orwell-youth-prize .header-about-btn {
  display: block;
 
}

/*********************
NAVIGATION STYLES
*********************/
.top-bar .title-area {
  z-index: 1; }
.off-canvas-list ul {
  margin-left: 0; }
  .off-canvas-list ul li a {
    border-bottom: 0px; }
  .off-canvas-list ul .dropdown {
    margin-left: 20px; }

/*********************
POSTS & CONTENT STYLES
*********************/
#content #inner-content {
  padding: 1.75rem 0.5rem; 
}
#inner-content a {
  font-weight: normal;
}

.page-title .vcard {
  border: 0px;
  padding: 0px; }

.byline {
  color: #999; }

.entry-content > p:first-of-type,
#top-intro p:first-of-type {
  font-size: 1.375rem!important;
  line-height: 2rem;
  padding-bottom: 2.7rem!important;
  margin-bottom: 3.125rem;
  position: relative;
}

#top-intro blockquote p:first-of-type {
  font-size: 1.375rem!important;
  line-height: 2rem;
  padding-bottom: 0!important;
  margin-bottom: 0;
  position: relative;
}

blockquote p em {
  font-size: 1.2rem
}

/* Faq adjustment */
.page-id-7736 .entry-content > p:first-of-type {
  margin-bottom: 1.75rem;
  padding-bottom: 2.625rem!important;
}
.single-events .button {
  margin: 0;
  margin-top: 1.5rem;
  font-weight: bold!important;
}
.single-events #main {
  margin-bottom: 2rem;
}
.entry-content > p:first-of-type:after,
#top-intro p:first-of-type:after {
content:""; 
  background: #000; 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  height: 2px; 
  width: 85px;
}


.entry-content > blockquote p:first-of-type:after,
#top-intro blockquote p:first-of-type:after {
  content:""; 
  background: #FFF; 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  height: 0; 
  width: 0;
}

#top-intro {
  margin-bottom: 2em;
}
.page-template-page-shortlist #top-intro,
.page-template-page-longlists #top-intro {
  margin-bottom: 0;
}
/* Removal of the initial intro styling with larger font and short thick line 
FAQ page is .page-id-7736 */
.page-template-page-sponsors .entry-content p:first-of-type,
.page-template-page-governance .entry-content p:first-of-type,
.page-id-7736 .su-spoiler-content p:first-of-type {
  font-size: 1.1875rem!important;
  line-height: 147%!important;
  padding-bottom: 0!important;
  margin-bottom: 1em;
}
.page-template-page-orwell-books-listing #top-intro p:first-of-type  {
  padding-bottom: 0!important;
  margin-bottom: 1em; 
}
.page-template-page-sponsors p:first-of-type:after,
.page-template-page-governance p:first-of-type:after,
.page-id-7736 .entry-content .su-spoiler-content p:first-of-type:after,
.page-template-page-orwell-books-listing #top-intro p:first-of-type:after {
  content: normal; 
  background: #FFF; 
  height: 0; 
}
.page-template-page-sponsors .entry-content h3,
.page-template-page-governance .entry-content h3 {
  margin-bottom: 0;
}
.page-template-page-sponsors .entry-content p:last-child {
  margin-bottom: 2em;
}
/* FAQ .page-id-7736 */
.su-spoiler-title {
  font-size: 1.1875rem!important;
}
.page-id-7736 .su-spoiler-style-default > .su-spoiler-content {
  padding: 0 0 0 34px!important;
}
.su-spoiler-style-default > .su-spoiler-title {
  padding-top: 1em;
}
.su-spoiler-icon-plus-circle .su-spoiler-icon:before {
  content:url('../images/fa-minus-circle-o.svg')!important;
}

.su-spoiler-icon-plus-circle.su-spoiler-closed .su-spoiler-icon:before { 
  content:url('../images/fa-plus-circle-o.svg')!important;
}
.page-id-7736 .su-spoiler-icon {
  top: 17px;
}
.page-id-7736 .su-spoiler-style-default > .su-spoiler-title {
  padding-left: 34px;
}
.su-spoiler-content > p:last-child {
  margin-bottom: 0!important;
}

.page-template-page-sponsors li {
  font-weight: 300;
}
.member-item {
  margin-bottom: 1em;
  padding: 3.875em;
}
.member-item span {
  margin-bottom: 1em;
  display: block;
  font-weight: 300;
}
.member-item .large-3 {
  width: 21%;
}
.member-item .large-3 img {
  margin-top: 0.4375em;
}
.member-item .large-9 {
  width: 79%;
}
.member-item .large-9 p:last-child {
  margin-bottom: 0!important;
}

.entry-content {
  padding-bottom: 1em;
}
.page-template-page-previous-winner .entry-content {
  padding-bottom: 0;
}
.page-template-page-previous-winner #content #inner-content {
  padding: 1.75rem 0 0 0; 
}
.entry-content img {
  max-width: 100%;
  height: auto; }

.entry-content .alignleft, .entry-content img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left; }

.entry-content .alignright, .entry-content img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right; }

.entry-content .aligncenter, .entry-content img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both; }

.entry-content video, .entry-content object {
  max-width: 100%;
  height: auto; }

.entry-content pre {
  background: #eee;
  border: 1px solid #cecece;
  padding: 10px; }

.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px; }
  .wp-caption img {
    max-width: 100%;
    margin-bottom: 0;
    width: 100%; }
  .wp-caption p.wp-caption-text {
    font-size: 0.85em;
    margin: 4px 0 7px;
    text-align: center; }

.post-password-form input[type="submit"] {
  display: inline-block;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  transition: all 0.25s ease-out;
  vertical-align: middle;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0.85em 1em;
  margin: 0 1rem 1rem 0;
  font-size: 0.9rem;
  background: #d2232a;
  color: #fff; }
  [data-whatinput="mouse"] .post-password-form input[type="submit"] {
    outline: 0; }
  .post-password-form input[type="submit"]:hover, .post-password-form input[type="submit"]:focus {
    background: #1583cc;
    color: #fff; }
/*********************
AWARD STYLING
*********************/
.greyarea {
  background-color: #e5e5e5;
}
.darkgreyarea, 
.home-darkgreyarea {
  background-color: #32312d;  
}
.darkgreyarea h3, .darkgreyarea h2 {
  color: #fff; 
  font-size: 1.375rem;
  font-weight: bold;
  text-transform: uppercase;
}
.darkgreyarea li,
#articles-orwell-books-wrapper a  {
  color: #fff; 
}
.full-width {
   width: 100%;
   margin-left: auto;
   margin-right: auto;
   max-width: initial;
}
img.attachment-shortlist-thumb,
img.attachment-shortlist-thumb-person {
  border: 1px solid #b6b5b1;
/*   margin: 0 2.0625em 2.0625em 0; */
  margin-bottom: 10%;
}
img.attachment-longlist-thumb,
img.attachment-longlist-thumb-person {
  border: 1px solid #b6b5b1;
  margin: 0 1.0625em 1.0625em 0;
}
img.attachment-shortlist-thumb-person,
img.attachment-longlist-thumb-person,
.journalism-prize-hp  img,
.social-evils-hp img {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
.blogger-img img.attachment-shortlist-thumb-person,
.blogger-img img.attachment-longlist-thumb-person,
.blogger-img img.attachment-detail-thumb-person {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
/*********************
FOOTER STYLES
*********************/


/*********************
IMAGE GALLERY STYLES
*********************/
/*********************
PAGE NAVI STYLES
*********************/
.page-navigation {
  margin-top: 1rem; }

/*********************
COMMENT STYLES
*********************/
#comments .commentlist {
  margin-left: 0px; }

#respond ul {
  margin-left: 0px; }

.commentlist li {
  position: relative;
  clear: both;
  overflow: hidden;
  list-style-type: none;
  margin-bottom: 1.5em;
  padding: 0.7335em 10px; }
  .commentlist li:last-child {
    margin-bottom: 0; }
  .commentlist li ul.children {
    margin: 0; }

.commentlist li[class*=depth-] {
  margin-top: 1.1em; }

.commentlist li.depth-1 {
  margin-left: 0;
  margin-top: 0; }

.commentlist li:not(.depth-1) {
  margin-left: 10px;
  margin-top: 0;
  padding-bottom: 0; }

.commentlist .vcard {
  margin-left: 50px; }
  .commentlist .vcard cite.fn {
    font-weight: 700;
    font-style: normal; }
  .commentlist .vcard time {
    float: right; }
    .commentlist .vcard time a {
      color: #999;
      text-decoration: none; }
      .commentlist .vcard time a:hover {
        text-decoration: underline; }
  .commentlist .vcard img.avatar {
    position: absolute;
    left: 10px;
    padding: 2px;
    border: 1px solid #cecece;
    background: #fff; }

.commentlist .comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em; }

.commentlist .comment-reply-link {
  float: right; }

/*********************
COMMENT FORM STYLES
*********************/
.respond-form {
  margin: 1.5em 10px;
  padding-bottom: 2.2em; }
  .respond-form form {
    margin: 0.75em 0; }
    .respond-form form li {
      list-style-type: none;
      clear: both;
      margin-bottom: 0.7335em; }
      .respond-form form li label,
      .respond-form form li small {
        display: none; }
    .respond-form form input[type=text],
    .respond-form form input[type=email],
    .respond-form form input[type=url],
    .respond-form form textarea {
      padding: 3px 6px;
      background: #efefef;
      border: 2px solid #cecece;
      line-height: 1.5em; }
      .respond-form form input[type=text]:focus,
      .respond-form form input[type=email]:focus,
      .respond-form form input[type=url]:focus,
      .respond-form form textarea:focus {
        background: #fff; }
      .respond-form form input[type=text]:invalid,
      .respond-form form input[type=email]:invalid,
      .respond-form form input[type=url]:invalid,
      .respond-form form textarea:invalid {
        outline: none;
        border-color: #fbc2c4;
        background-color: #f6e7eb;
        -ms-box-shadow: none;
        box-shadow: none; }
    .respond-form form input[type=text],
    .respond-form form input[type=email],
    .respond-form form input[type=url] {
      max-width: 400px;
      min-width: 250px; }
    .respond-form form textarea {
      resize: none;
      width: 97.3%;
      height: 150px; }

#comment-form-title {
  margin: 0 0 1.1em; }

#allowed_tags {
  margin: 1.5em 10px 0.7335em 0; }

.nocomments {
  margin: 0 20px 1.1em; }

/*********************
SIDEBARS & ASIDES
*********************/
.widget ul {
  margin: 0; }
  .widget ul li {
    list-style: none; }
#related {
  background-color: #e5e5e5;
  padding-bottom: 3.75em;
  padding-top: 3.9em;
  margin-top: 0;
}
#related h3 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.375rem;
  margin-bottom: 0.25em;  
  letter-spacing: 0.025em; 
}
#related a {
  color: #000;
  text-decoration: none;
}
#related .see-also ul {
  list-style-type: disc;
  margin-left: 0!important;
  margin-bottom: 0;
  line-height: 1.5!important;
  text-transform: uppercase;
  font-weight: bold;
}
#related .see-also ul li {
  /* background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAACDElEQVQ4Ea1VPUsjURSdlw8nxTaLKJbiR7JgI7qFjRbbpUgmgvkJVoIurHFZdNFKVgXRrfwPUZPJFGks0qu7hSAyi9oJYqEkQTIT5e25k0x4vMmoAR883r3nnHvf1503TGnT4vG4Gg6raVDT6KPoH5uye8aUv5yzXL1e2y8Wi1YTbw2sZTUNTdNmELAFt1/mJP+acyVjGPkDEW8lTKfTwVrN3maMzYuCN9g7qhpezGazz6QNuQGWZe8i2ZzrdzB+xUIC0C9QjLPCRCKVwtnkOkgiSzljXNN13WDYapdl1c+hGJRVoo/Vb3DOv4uYZP/r6+sdCQ4Nxeg2ZyXS40L8pVKpBpB4ykM2gO5q9fEsgFlTPgIPbBj6ChKue4gmQLlCOLuxNoIjGTNNkxOm67nlZDJFZ/9D1uAcxxjICogPIlko5FvlJOKijbhV+GsiBrtC1/1qsBTkuNherR1OdXiDPiySmP1E9Mkulx8mSqXSE9nglzD8IltqN7gU5Y8Ekjsu92g06uwkmZzOgNsgkdyQ65TKIC8Tfn4ioS0qCt/04ylXQFVDhxBc+olc/Pb27hsC6NHwayjsnsZtvuenF6TpTPPiIhb7pMKc9Jv+JRw3vl4o6HukobJxGp6gnyB+u34H404k0kU16TRPDb7bA+vOQGPjFxCh5z+OW/2MPtDg2RXGY3xiRdu28+1+Af8B5Veuq3n4GT4AAAAASUVORK5CYII=); */
  background-image: url('../images/bullet-see-also.png');
  padding: 0px 0px 0px 15px!important;
  background-repeat: no-repeat;
  background-position: 0 7px;
  list-style-type: none;
  vertical-align: middle;
  margin: 0!important;
  font-size: 1rem;
    letter-spacing: 0.025em; 
}
.the-orwell-youth-prize #related .see-also ul li {
  background-image: url('../images/bullet-see-also-youth.png');
}
.menu-relatedlinks-standard-container {
  margin-bottom: 2em;
}
div.sharedaddy h3.sd-title:before {
  content: "";
  display: block;
  width: 100%;
  min-width: 0!important;
  border-top: none!important;
  margin-bottom: 0!important;
}
.sd-content ul li a.sd-button:before {
  font: normal 36px/1 'Genericons'!important;
  vertical-align: top;
  position: relative;
  top: 3px;
  text-align: center;
  color: #1d1d1b!important;
}
.sd-social-icon .sd-content ul li[class*='share-'] a.sd-button,
.sd-social-icon .sd-content ul li[class*='share-'].share-facebook a.sd-button,
.sd-social-icon .sd-content ul li[class*='share-'].share-twitter a.sd-button, 
.sd-social-icon .sd-content ul li[class*='share-'].share-pinterest a.sd-button,
.sd-social-icon .sd-content ul li[class*='share-'].share-linkedin a.sd-button, 
.sd-social-icon .sd-content ul li[class*='share-'].share-google-plus-1 a.sd-button {
  background: #e5e5e5!important;
  color: #1d1d1b!important;
}
.sd-social-icon .sd-content ul li[class*='share-'] a, .sd-social-icon .sd-content ul li[class*='share-'] a:hover, .sd-social-icon .sd-content ul li[class*='share-'] div.option a {
  padding: 0 10px 0 0!important;
}
.download-link {
  font-size: 1.1875rem;
  line-height: 1.75rem;
  margin-bottom: 1rem;
  display: inline-block;
}
#slashadmin_eucookielaw.cl_light {
  background: #33312f;
  color: #FFF;
  box-shadow: none;
}
#slashadmin_eucookielaw.cl_bottom.cl_light {
  border-top: none!important;
}
#slashadmin_eucookielaw p {
  margin-bottom: none;
  line-height: 1;
}
#slashadmin_eucookielaw.cl_light #slashadmin_removecookie {
  background: none;
}
#slashadmin_removecookie {
  padding: none;
  margin-left: 0;
  border-radius: 0;
  padding: 0.5em;
}
/*********************
HOMEPAGE STYLES
*********************/
#home-news-updates {
  padding-bottom: 2.375rem;
}
 .home-spacing {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    padding-left: 0.95rem;
    padding-right: 0.95rem;
  }
@media screen and (min-width: 32em) {
  .home-spacing {
    padding-top: 3.875rem;
    padding-bottom: 4.375rem;
    padding-left: 0.95rem;
    padding-right: 0.95rem;
  }
}
 @media screen and (min-width: 0em) and (max-width: 31.9375em) {
    .home-spacing {
        
      }
 
 }
.home-spacing-last {
  padding-top: 3.6875rem;
}
.home-bottom-winner-links {
  padding-bottom: 3.0625rem; 
}
.home-bottom-winner-links .fa,
#home-youth-prize .fa,
.home-darkgreyarea .fa,
.chevron-ul .fa {
  font-size: 11px!important;
  color: #D2232A;
}
.home-bottom-winner-links a,
#home-youth-prize a {
  color: black;
  font-weight: bold;
  font-size: 1rem;
}
.home-bottom-winner-links a:hover,
#home-youth-prize a:hover {
 /* text-decoration: none; */
}
.home-bottom-winner-links a .fa,
#home-youth-prize a .fa {
  color: #d2232a;
}
#home-youth-prize p,
#home-unreported-britain p {
  margin-bottom: 1.875em;
}
.chevron-ul {
    list-style-type: none;
    margin-left: 0;
    line-height: 156%;
    margin-bottom: 3.125em;
}
.chevron-ul li {
  text-transform: uppercase;
  line-height: 137%;
}
.chevron-ul li a {
  color: black;
  font-size: 1rem;
  font-weight: bold;
}
.chevron-ul li a:hover {
  text-decoration: underline;
} 
.chevron-ul li .fa {
  font-size: 11px!important;
}
.chevron-ul li a .fa {
  color: #d2232a;
}
.valign-bottom {
  display: flex; 
  flex-direction: row-reverse; 
  align-items: flex-end;
}
#hp-top-promo .grey-img,
.grey-img,
.grey-images img {
  -webkit-filter: grayscale(1);
  filter: grayscale(1); 
} 

#hp-top-promo .grey-img-lighter {
  -webkit-filter: grayscale(100%) brightness(150%) contrast(75%);
  filter: grayscale(100%) brightness(150%) contrast(75%);
} 

/* .entry-content img {
	-webkit-filter: grayscale(1);
  filter: grayscale(1);
}
*/

#hp-top-intro {
    padding: 1.875rem;
    background: #33312f;    
} 
#hp-top-intro p {
  font-size: 1.25rem;
  line-height: 180%;
  font-weight: 200;
  color: #fff;
}
.the-orwell-youth-prize #hp-top-intro p {
  padding-top: 1.5em;
}
#hp-top-intro p span {
  font-size: 1.75rem;
  text-align: center;
  display: block;
  margin-top: 2rem;
}
#hero-image-wrapper {
  position: relative;
  width: 100%;
}
#hero-image-wrapper h2 {
 
  left: 0;
  width: 100%;
  margin-bottom: 0;
  line-height: 1.1;
}
#hero-image-wrapper h2 span {
  color: white; 
  font-family: "GillSansNova", Calibri, sans-serif;
  font-weight: normal;
  font-size: 0.875rem;  
  letter-spacing: 0.025em;  
  background: rgb(0, 0, 0); 
  padding: 0.3125em; 
  line-height: 136.36%;
}

@media screen and (min-width: 32em) {

  #hero-image-wrapper h2
  {
    position: absolute;
    bottom: 2.5rem;
    left: 0;
    width: 100%;
    margin-bottom: 0;
    line-height: 1.1;
  }

  #hero-image-wrapper h2 span {
  font-size: 1.375rem;
  letter-spacing: 0.025em;  
  padding: 0.3125em; 
  line-height: 136.36%;
}

}




#hero-image-wrapper a:hover {
  text-decoration: none;
}

#hp-upcoming-prize h1 {
  margin-top: -0.625rem;
  margin-bottom: 0.75rem;
}
#hp-upcoming-prize .hp-spacing-50 {
  margin-bottom: 1.625em;
}
.scd-title {
  display: none;
}
body.page-template-page-homepage h3,
body.page-template-page-homepage-youth-prize h3 {
  text-transform: uppercase;
  font-size: 1.375rem;
  font-weight: bold;
}
.home-promoted-pages h3 {
  margin-bottom: 0.5em;
  text-transform: uppercase;
  margin-top:  0.5rem;
  font-weight: bold;
} 
#sponsor-wrapper {
  margin-top: 2em;
}
#sponsor-wrapper .large-4 {
  padding-left: 3em;
  margin-top: 1.75em;
}
.hp-spacing-50 {
  margin-bottom: 3.125rem;
}
.scd-label-col {
  text-transform: uppercase;
}
#hp-entries-open .widgettitle {
  text-align: center;
  font-size: 1.4375rem;
  font-weight: 200;
  margin-top: 2.5625rem;
}
#hp-entries-open .scd-all-wrapper {
  text-align: center;
}
#hp-entries-open .spinner {
    background: url('data:image/gif;base64,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5kBA5kFB5kND5kRE5kVF5kZG50dH50hI50lJ50pK50xM501N509P51BQ51FR6FFR6FJS6FJS6FNT6FRU6FZW6FlZ6Vxc6WBg6WJi6WRk6Wdn6Wlp6Wpq6Wxs6W1t6G9v529v5nBw5HFx4XR03XZ22Xp61Hx80X9/zoKCzIaGzIqKw46OupSUt5iYs5ycsKCgraWlqqqqq6urrKysra2trq6us7CwvLGxx7Ky0LKy17Gx3bGx4rCw5q6u6qur7Kmp7qio8Ken8aam8aWl8qWl8qam86am86en86en86io86mp86ur866u87Ky9La29Li49Lu79b6+9cDA9cLC9sTE9sjI9szM99HR+NbW+dzc+eDg+uLi+uXl+ubm++np/Ozs/fHx/fT0/vf3/vr6/v39/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+////////////////////////////////////////////////////////////////////////////////////////CP4A6QkcSLCgwYMIEypcyLChw4cQI0qcOLFaNYoYHWYLJaejnFHZMoo0KK2QR4+FpI1cSe/RyZOPWIr89fLlL5kYQdU8CQonxUk7PU4y2KzXqF7QWBobtcmTMW0FOQXtyIkgNT5ksmaNFBLjtE2JwoadNI1gr6lybgqExkarWzZdJ4IVK/YRVIHZCAUlFHeP27+RKBqjS5gXwWdBnw0U9rdxUomeCNPdVFCaS4+PVA701PhvL7mS6R6stmzZxYKJOrsdNTFy6ERDIXJWnfWzxMGvRUXsRTtrs4naJoV+dC1itji0E3l9RPiRsonNVK+hllEbL7CTRBWn2Ay52z2Pff5izNYrsidh4tOrX8++PcFtvTpd6tQLm3uI2ORf2j8/fPpt2WCTDTcM8cLfgZ1so1421DTYoIIJSXPghMuo56CD1ii0zIQH2ubTNhc6qCGH/HmIE4ghUhchiftVmF6KGSpkIIcJLhgihAnlN2EnmqkHoIDdNASffPTZd9+RSCap5JJMUsTgdk0mdI1RoxylIkbaSAPNNEGKlA0vVYY5ypUSXeNMM2g6cxdGwIgZpokQaXMmmmg+0yVFbooZF0TS0OnnaRNdk2eYZD4EjZ909jjRoFXu+dA0iKIJ6ETHDAonXs0YY0wzaxLUzZx0QnPnRNuAKSYvUA50TTHCtCpMMVCpDiRnqJ1StE2lVQLjqEDGuOqqMQh1U0001Yw60q6q+uprrFFWo6yrk0ZJTzbPtopsk8g8+5y0BWnT66+1cksPN302Iw2B4qar7rrstitSQAAh+QQJBADyACwAAAAAPAA8AIcAAAABAQECAgIDAwMEBAQFBQUGBgYHBwcICAgJCQkKCgoLCwsMDAwNDQ0ODg4PDw8QEBARERESEhITExMUFBQVFRUWFhYXFxcYGBgZGRkaGhobGxscHBwdHR0eHh4fHx8gICAhISEiIiIjIyMkJCQlJSUmJiYnJycoKCgpKSkqKiorKyssLCwtLS0uLi4vLy8wMDAxMTEyMjIzMzM0NDQ1NTU2NjY3Nzc4ODg5OTk6Ojo7Ozs8PDw9PT0+Pj4/Pz9AQEBBQUFCQkJDQ0NERERFRUVGRkZHR0dISEhJSUlKSkpLS0tMTExNTU1OTk5PT09QUFBRUVFSUlJTU1NUVFRVVVVWVlZXV1dYWFhZWVlaWlpbW1tcXFxdXV1eXl5fX19gYGBhYWFiYmJjY2NkZGRlZWVmZmZnZ2dvYWF+V1eLTU2WRUWlPDy2MDDDJibMICDSGhrWFhbZFBTbEBDdDg7eDAzeCwveCgrfCQnfCgrfCwvfDAzfDg7gERHgFBThGBjhHBziHh7iICDiIiLiJCTiJCTjJyfjKirjLi7kMTHkNjblOjrlPT3lQEDmQUHmQkLmRETmR0fnSkrnTk7oUlLpVlbpWVnpW1vpXFzpXV3qXV3qXl7qX1/qYWHqY2PrZWXraGjramrra2vsbW3sbm7scHDscnLtdHTtdnbtd3fteHjteHjteXnteXntenrtfX3tgYHthobtjY3ukpLul5ftm5vtn5/tpKTuqanvrq7wsrLwtLTxtrbxt7fxuLjyurryvLzzvb30vr70v7/1wcH1wsL1w8P1xMT1xcX1xsb2x8f2yMj2yMj1ycn2ysr2y8v2zMz2zc33zs72z8/20tL209P319f65+f98/P++/v+/Pz+/Pz+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7///////////////////////////////////////////////////////////////////////////////////////////////////////////8I/gDlCRxIsKDBgwgTKlzIsKHDhxAjSpxIsaJFh7Y8OXLkCdfFjwWxldpI0lEpbCBBvipZ8lXKi9ZYsrT2sqItmSVt1aS4EudGlwWvMZvFDCVIaLli3Spm8KZPRzoHYktVqGrVWRexydLElWusawSNPXVkTGojq2gnWdzataurgiNxliIICq1drBOhtd3ri+A1STIlgRVoza5hoxFz7W0rK2TPn4jl2TJsl9nEWIvdIrRG0+AsymjxRryV2WvEz6CrWpZYrLSmvhCZpa46WCLmxSclXkodq+I1V3tL1YZ4LRHlRpEn+orlKpav5MR3owUFfadEZrZm2epsvbv3l8R0/hH7XhFbJTzo0fdmCKyWq1q7snmf9ie9fUXVBWab5ap/f1n5XaSIfQR+ktAu/iUo2kuzEOjgeAZlk+CE3KUEiYMEwnKQNRMmCMxO9WGYHiQbdujfhzWFKCIeJEZoYn8VgnThinhoeBCCHS6YUoM0QhghfwkC2N2AIhqoUHvvxTefIRjiRx5E5mX4JEXhTTPllVh6N1yWDWUjDC1g6hKgQ9tcY82WFGVzC5hs2jLmQthYM82c1mxz0TFs5qkLRdvIOSedF62ZJ5sUXfPnoW8uNGieiW546J9oQoTLomAW+uicjSb0DKXBHJSNNckkY418jh4a40ST5okLqQRhE8wuS7DuEkx1ff5ZJ0jPTHrLMawSlEyssSaTEDbXZApSNsAC2yuXBl2TbKyRMjvQs7BKq1A1z1ZjbULZ/BrsstsGxVm04ZZr7rnopvtkQAAh+QQJBAD3ACwAAAAAPAA8AIcAAAABAQECAgIDAwMEBAQFBQUGBgYHBwcICAgJCQkKCgoLCwsMDAwNDQ0ODg4PDw8QEBARERESEhITExMUFBQVFRUWFhYXFxcYGBgZGRkaGhobGxscHBwdHR0eHh4fHx8gICAhISEiIiIjIyMkJCQlJSUmJiYnJycoKCgpKSk1KChLJiZfJCRwIyOGICCXHh6pHR23GxvBGhrIGRnSGBjYFxfbFhbdFhbeFRXfFBTfFRXfFhbgFxfgGRngGxvhHh7iIiLiJibjKSnjKyvjLS3jLi7jLy/kMDDkMjLkNjblODjlPDzmPz/mQ0PnRkbnSUnnSkrnS0voTEzoTU3oTk7oUFDoUlLoVVXoV1fpW1vpXl7pYWHpYmLpZGTpZWXpZ2fpZ2foZ2fnZmblZmbiZmbeZWXYZWXRZWXKZmbAZ2e4aGitaWmlamqca2uRbGyFbW1/cHCBc3OJdXWXeHijenqtfHy3fn6+f3/IgYHQg4PWhITbhYXehobhh4fkh4fnh4fph4fqh4frh4frh4fsh4fsh4fsh4friIjriIjqiYnpioroi4vmi4vli4vjjIzhjIzejY3ajY3Vjo7Pj4/IkJDDkZG8kpK1k5OtlJSjlpafmJibm5ucnJydnZ2jn5+poqKvpaW0p6e6qam/q6vDra3Ir6/PsLDVsLDasLDesLDisLDlsLDnsLDqr6/rr6/tr6/urq7vrq7wrq7xrKzyrKzyra3zrq7zrq70sLD0sbH1s7P1tLT1tbX1trb1t7f1uLj2urr2u7v2vLz2vb32vr72wMD2wMD2wcH2wsL2xMT2xcX2xsb3x8f3ycn3y8v3zc33zs740ND409P41tb519f52dn52tr529v53Nz53t764OD74+P86Oj86ur86+v97+/98vL+9/f++vr+/f3+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7///////////////////////////////////////////////////////////////////8I/gDvCRxIsKDBgwgTKlzIsKHDhxAjSpxIsaJFh9IIfflCSNrFjwZpSRlJkhbIkyJJqjR50iI3lTClcGtZkVlMlcxoUkx5UwrLgtScbWvpbdiuYUMLBus5MlhBWkeiHlky7KOujVhphSOYjamUbAS7SB1LyOJVrFgXPe35896isXCrTvSGtm40guC+xPwCbiA4uHCXUBxWF62ukFtGbml7zxlguEkjni38RS3Et4+lOptImPIXxgyHZZZKbeI2z1+WRdw2empFWpQtR1Q0GvTDcIvqLtoqERyWx10+RtO1iJbqiuBoj5Wt0+I2Z4uc9W1OvTrNb8m+WbeYCEiO70d2/jWsposWrbvVvzH5zv77l4W6CMmXr5V6lvb4mRdsNr//YZ274CegNggt0l9/2tFEiID42fbNgf1Vo9MUDLZXlkEPQiifhDRRWOF3FxpkoIYJtrTghznYdg9/EP5HU4AoEohQfP3V19x9FepnEHm06IIedd94iN9720WUiBHsGSFekRNhx+STUEYpJUPD0VKLM+J8BI43WYIEjHlg6tLlRONsc82Z3YxzETZgtrkZRWaeieZFX7ZpXi0UgSPnnmNOVJ6d5lHkzZ5yTkdRMYD2SFE4hJ7Zp0TbJDrNQeJoQw012jw6UDeEevNRMnYWcxA4yRRjajHJGErQOJye6SlIQNsUowsw2CAEzamn/miQOOBouh2uuE65ELCnCqsQsaYamxA1xJam7EHhOIOrM7w9e9A32mhTorXcduvtt+BuFxAAIfkECQQA9AAsAAAAADwAPACHAAAAAQEBAgICAwMDBAQEBQUFBgYGBwcHCAgICQkJCgoKCwsLDAwMDQ0NDg4ODw8PEBAQEREREhISExMTFBQUFRUVFhYWFxcXGBgYGRkZGhoaGxsbHBwcHR0dHh4eHx8fICAgISEhIiIiIyMjJCQkJSUlJiYmJycnKCgoKSkpKioqKysrLCwsOCoqQygoTiYmcSAgjBsboBYWrxMTuhAQxQwMzQoK0wgI1wcH2QUF2wQE3AQE3QMD3QMD3QMD3gQE3gYG3gcH3wsL3w8P4BIS4BUV4RgY4Rsb4R4e4iEh4iUl4ygo4y0t5DEx5Tc35Tw85j8/5kRE50ZG50lJ50xM6E9P6FNT6FZW6VdX6Vpa6V1d6mFh62Zm62xs7HBw7HNz7XR07XV17XZ27Xd37Xp67nx87n9/7oGB7oOD74aG74iI74qK74uL7o2N7Y2N642N6YyM5YuL34qK14qKz4mJyIeHwoaGvIWFtISErIODooGBl4CAin5+hH5+fn5+f39/gICAgYGBgoKCg4ODhISEhYWFhoaGh4eHiIiIiYmJioqKi4uLjIyMjY2Njo6Oj4+PkJCQkZGRkpKSk5OTlJSUlZWVlpaWl5eXmJiYmZmZmpqam5ubnJycnZ2dnp6en5+foKCgoaGhoqKio6OjpKSkpaWlpqamp6enqKioqampqqqqq6urrKysra2trq6ur6+vsLCwsbGxsrKys7OztLS0tbW1tra2t7e3uLi4ubm5urq6vry8w7+/x8LCzMTEz8bG1sjI28nJ4crK5srK6srK7srK8MrK8sfH9MXF9cbG9snJ9snJ98nJ98nJ98nJ98nJ98rK+MvL+MzM+M3N+M7O+NHR+dPT+dXV+dbW+dfX+t/f++bm/Ozs/e/v/fHx/vb2/vn5/vv7/v39/v7+/v7+/v7+/v7+/v7+/v7+////////////////////////////////////////////////////////////////////////////////////////////CP4A6QkcSLCgwYMIEypcyLChw4cQI0qcSLGiRYfckJ05g4zbxY8GkW3BQhLLFmQgU0IryRILtJQfR7YkuQWmRW0zWWqzSXFlTpIvD2az+U0bMm0eC177SfJawWlbnkglM/SitTJgspZBWVDmzJoE20gdK5UrRWtZ02Y1KxDZT7bIyMqtKvEbVrVpkw5sM7NNQSlyyY6hqA2vWrYCoZ3ZsuVM0IHbAsuliMxwWsQMp0kmu21iYctgMC/MtnksRW53DXeOCHgz2ImVDYtmGHfzNIuxL3+jOEay34sZkSFbXRFZ6ydSZvOUmG0a8eXQo0ufLtEtEiRMuDhl6I0ZMmbPl/5/uU7++u+E19qoV6/8Ypvy8JMl3La+PrXl2uDDZ5IQWf36y72nX3nyHfRffXqlNN6A5J1X0IHrJQjSggwi4SBB/kEYYIXXFWgQfQfex1N+FfKH3n/tWSTggB4i1N134fF0xoAXUkfbFUxgp52NPPboY0TIWJEED0lYIeKPCXXjBQ9MNsnDGR9tk4xwO1G0pJNO1ghRNcJ12eJDyGAp5pERBdcllRJVISaWUE7E5ZldSjTkmk1CQRmccUZEp5NNUIQNnsh82dCce1ZBkTeASjhQN9ts041Bau75ZEVGnYnNQeJUA82m0FQjDkHUSDrEoxV582c1igqkDaecVjnQGT57pgjSNaxuul1YYg4hK0i1cnoQNWdA0UQVZ5BqYza90oUkQtv0GuOyBa3aKrQMfeONN+BQq+223HbrrbcBAQAh+QQJBAD3ACwAAAAAPAA8AIcAAAABAQECAgIDAwMEBAQFBQUGBgYHBwcICAgJCQkKCgoLCwsMDAwNDQ0ODg4PDw8QEBARERESEhITExMUFBQVFRUWFhYXFxcYGBgZGRkaGhobGxscHBwdHR0eHh4fHx8gICAhISEiIiIjIyMkJCQlJSUmJiYnJycoKCgpKSkqKiorKyssLCwtLS0uLi4vLy8wMDAxMTEyMjIzMzM0NDQ1NTU2NjY3Nzc4ODg5OTk6Ojo7Ozs8PDw9PT0+Pj4/Pz9AQEBBQUFMPj5WPDxgOjpxNTWAMDCSLS2mKCi0JCS/ISHJHh7RGxvWGRnaFxfcFBTeEhLfERHfEBDfEBDfEBDgERHgExPgFRXgFxfhGRnhGhrhGxvhHBzhHh7iICDiIyPiJSXiJyfiKSnjKirjLS3kMDDkNTXlODjlPDzmQUHmRkbnSkroT0/oVFTpWFjpXFzpYGDqY2PqY2PpY2PoYmLnY2PmY2PjY2PfZGTaZWXTZ2fLaWnEa2u7bm6wcXGjdXWUenqIfn6CgoKDg4OEhISFhYWGhoaHh4eIiIiJiYmKioqLi4uMjIyNjY2Ojo6Pj4+QkJCRkZGSkpKTk5OUlJSVlZWWlpaXl5eYmJiempqqnJy4m5vGmJjQlZXakZHgjo7li4voiIjqhobshITtg4PtgoLtgYHugIDugIDugIDugIDuf3/uf3/uf3/uf3/ugIDugIDugIDugYHugoLuhITvhobviIjviorvjo7wkJDwkpLwlZXxl5fxmJjxmZnxmprxnJzxnZ3xnZ3xnp7xnp7xoKDypaXyqanzrKzzsLDztLT0uLj0vLz1wsL2ycn3zMz30ND409P41tb52Nj52tr53Nz639/64+P75eX75ub86ur88PD99PT99/f++vr++/v+/Pz+/f3+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7///////////////////////////////////////////////////////////////8I/gDvCRxIsKDBgwgTKlzIsKHDhxAjSpxIsaJFh9yaHTvWjNvFjwanrYpDMs6qaSBTXivJMs61lB9btSypCubFmSxtVpyGsyRKnQi3Wct2kFtPkh4JalP1Rk2cW0ktZuOlqmouawZH4lxVcBkbNWDBsoEmtarZqj8H8sSZ9l61sHDVsIkqkerZqrW6FWQ2k1nBVnHh3qK47e5ZrAWvHbNl69jLgoHhxqFozbDZZhHfRg5LMZvlqoghbgb7pmIuy3klxhndqmJlw84mQtvMRpvFabXM1opNsVjkZR+7WWtmTa9FaKvBtqoGNCXz5tCjS58OUdqqNmPg2NrW0Ns1aNTo/gItNqa8+TN+FWYzJqy9MWrQmZmfP+YMtoTc2LffT1TntjP0zddGQszsZ2AyQDkTIH3cHZSMgQYCtcuC8/Fm0IMQtichheZZuFeGwiCok4IcjtGgQdwUk2F/Nm1jBodsqKdie8XA15x8C5pxn0LeWAOeeDoV8+J8ZqRHnUPWwZFdLSce6eSTUCoETS1rkLEGk1EutAsXUnTZJRfKfMRNNc5M02REu3ipZpeYVYQNM8vEucxzEUHD5ZpeknHmQ93AKWecezJUC55rGkPZn3K25dAahKrJ1UTVIBqnhw6N0aiXaxwqKZ0PMXqpFLVQ9I2fcjJjnEHdcMPNqQMN+qmhXISRysyOBl0jza3SPDbQNncSesZF32BTTXFB4YrrmcpcStZ01hh7a2gDNdNrl2csy6yz0kC7qzGrXAnrkbY6q2uWRWELJLlKTXPrNLahu5A33rgr77z01msvugEBACH5BAkEAPYALAAAAAA8ADwAhwAAAAEBAQICAgMDAwQEBAUFBQYGBgcHBwgICAkJCQoKCgsLCwwMDA0NDQ4ODg8PDxAQEBERERISEhMTExQUFBUVFRYWFhcXFxgYGBkZGRoaGhsbGxwcHB0dHR4eHh8fHyAgICEhISIiIiMjIyQkJCUlJSYmJicnJygoKCkpKSoqKisrKywsLC0tLS4uLi8vLzAwMDExMTIyMjMzMzQ0NDU1NTY2Njc3Nzg4ODk5OTo6Ojs7Ozw8PD09PT4+Pj8/P0BAQEFBQUJCQkNDQ0REREVFRUZGRkdHR0hISElJSUpKSktLS0xMTE1NTU5OTlhLS2FJSXJDQ4hAQJ46Oq81NbswMMUtLcwpKdInJ9YkJNojI90hId4fH+AdHeAcHOAbG+EbG+EcHOEdHeEfH+EhIeIjI+ImJuMqKuMsLOMvL+QxMeQ0NOQ1NeU2NuU4OOU7O+Y/P+ZCQuZHR+dJSedNTehRUehUVOhYWOlcXOlhYelmZulra+ltbelvb+hubuZubuRvb+BwcNpxcdVycs50dMV2dsB4eLl6erJ8fKp/f6GDg5eHh5KJiZOMjJqNjaCOjrSPj8OQkM6QkNaQkN2Pj+GPj+aOjumOjuuNjeyMjO6MjO+Li++Li++MjO+MjO+Nje+Nje+Oju+Pj/CQkPCRkfCSkvCSkvCTk/CUlPCWlvGYmPGamvGcnPKenvKgoPKiovOkpPOnp/OoqPOoqPOoqPOoqPOoqPOoqPOoqPOpqfKpqfKqqvKqqvKsrPKtrfKvr/KxsfKzs/K1tfO4uPO7u/O+vvTBwfTExPXJyfXOzvbS0vfV1ffX1/nb2/nd3frf3/rh4frh4frj4/vl5fvn5/zp6fzr6/zs7Pzt7f3v7/3x8f3z8/309P729v75+f77+/77+/78/P79/f79/f7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v///////////////////////////////////////////////////////////////////////wj+AO0JHEiwoMGDCBMqXMiwocOHECNKnEixosWHzYwZa3ax40FspvyI9GMKm8eT3fqMHNmn28mOsFauhPXyokqZIjfVtIhz5c6F2hLexNnHILdgm/psCubRmzBOUGsFLciqpx9WBZ/pqcOVa59nFr2ZgkrWVLWC2IayNDmQG56ucItWfEqWrCuDytT24UjQFNy/TCnWHTyVYLdisGAVc1mwz1+4OidqG1xXmsTHcStSJlv44VbMdeROjLV51cRNoOsElkyKsmWJ1d4+1sPNYjVXZFe9nlhMdlc8YDtqk9aZYrVNW/uYqv2zufPn0KNLP7iNVR89m2I9zDbtLPRkcdr+iBePh29CbsNqqQ/m/Wez8fDb1NmW8Fsw9fh9Md+JJz78UAk1g9+Ax7jnH3xxJFTMgPit9lIxB8I3DUILMliLgydBGKF4Ex4koIUF7jTNhm0kiJB9DOrXXH8RAnhehRe2t9N7B9JB30LcydhcMnTEV950D22zynXZAWnkkUgqpM0qqG1SS5ILHcMGGFRSGYcyHYXzjDLN7CfRMVWGCYYZu03EDTLHpImMjg5pM6WYVZo4UThopqmmlw6tAqeYIUokjZ2AmvfQJnuGadpEzABqJ5YR1VFolZ1QNI2iaQYHEaGPgnGoROEkoygy4STkjTcH1ZIpGIya6WmayeA5kDZZ0cQaTXH2xPFoHheFM00z04R6kDeyykoqQcqYsacZtP4Ea7CzGiSNrWHmkexP1jAbjTUIHbNKJ6ukKt2ywU4LpT3fWOvruAd1Q02s1DCG7rvwxivvvPTKGxAAIfkECQQA+QAsAAAAADwAPACHAAAAAQEBAgICAwMDBAQEBQUFBgYGBwcHCAgICQkJCgoKCwsLDAwMDQ0NDg4ODw8PEBAQEREREhISExMTFBQUFRUVFhYWFxcXGBgYGRkZGhoaGxsbHBwcHR0dHh4eHx8fICAgISEhIiIiIyMjJCQkJSUlJiYmJycnKCgoKSkpKioqKysrLCwsLS0tLi4uLy8vMDAwMTExMjIyMzMzNDQ0NTU1NjY2Nzc3ODg4OTk5Ojo6Ozs7PDw8PT09Pj4+Pz8/QEBAQUFBQkJCQ0NDRERERUVFRkZGR0dHSEhISUlJSkpKS0tLTExMTU1NTk5OT09PUFBQUVFRUlJSU1NTVFRUVVVVVlZWV1dXYFJSak5OgENDkzo6pS8vsycnwCEhyRwczxkZ1RQU2hER3A4O3QwM3gwM3g0N3w4O3xAQ4BIS4BQU4BUV4BYW4RkZ4R0d4iAg4iIi4iQk4iUl4yYm4ygo4ysr5DAw5DU15Tk55Ts75T095kJC5kVF50hI501N6FJS6VdX6V1d6mJi6mVl6mho62xs63Bw63R063d363h463l56np653t75Xt74Xx8235+04CAyYODwIWFuYiIsouLqo6OoZKSl5eXmJiYmZmZmpqam5ubnJycnZ2dnp6en5+foKCgoaGhoqKio6OjpKSkqaSkr6SktKSkvKOjxKKizaGh1qGh3qCg5KCg6J+f6p6e7Z2d7pub75qa8JmZ8JiY8JaW8JiY8ZiY8ZmZ8Zub8Zyc8Z6e8qCg8qKi8qOj8qSk86Wl86en86io86ur9K6u9LGx9LKy9bOz9bS09bW19ba29ba29be39be39be39bi49bi49bi49bm59bq69by89r+/9sHB9sTE9sfH98vL987O99HR+NLS+NTU+NXV+NfX+dra+uDg/Orq/fHx/ff3/vv7/v39/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+//7+////////////////////////////////////////////////////CP4A8wkcSLCgwYMIEypcyLChw4cQI0qcSLGixYfkwoUjd7HjQXLIFolchIyjx5O1Ro6sddIjNZUqqbW8KAvmSFkzLdpUmbNizZ04DVr7tYhYtpPZht36da2cwZA7ZRIUtyiQVau1TFZUeqvrrWFOCZJLCTNrwapXr7KsmM2rW6lTyYqsNa4gtLR4j1Lk6rYrwnDUqIU7iBavVWIV+7qtG7Gw4UUVfSn2K9ExXl8Vr00uNvGuYavWKpbj21UX44jkDH2GbLEcNa/FTksMpzrtInEnZVckB20utJ7AgwsfTry4wmu8FvECB1FcWOHiBu2ZPn2RboPltiHbjk1rznF+qP6LN7QQ2/bz1J7PXCS+/bCE4c7LZ96zfXvyCLvJP4+tpzb77SUEzn7c9QQOgOLBRyAy9OWE4HT4IWSefOkBxx6C7yWUHX/ezQQegBEu5Bxx4hjS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3d363d363t763t7639/64eH64+P75ub76en87Oz87u788PD88PD98fH98/P99PT99fX99vb+9/f++Pj++fn++/v++/v+/Pz+/f3+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7//v7//v7//v7+/v7+/v7+/v7+/v7///////////////////////////////////8I/gD3CRxIsKDBgwgTKlzIsKHDhxAjSpxIsaLFixgzCtyW69WrXNs0iqSWSpRJUamoicQYruRJk6zCrbQo7eVLaTMrErN5klhOisp4mlSGkFo0bCLHUWMmzdvBbS5fpgpZMBqmTFg5qbx4bReur7u2Fgxqk2hBZFjTYhU7cZzXr2CpFqT2yuQrtgK/qVXLiSbcv8wmRturFilFZn/hCpvIi3DaaBWlJf6KTLBjrIYnenv799pEbJcxXaTGGVdgisEcQ764jZkwZJ4tplZb+adFbNF4Rftmu7fv38CD/+6WTLjEZJkQKM+Ek+G2adKkZfONS7l15cUVVjPGnfs029Ku/l/P1E1hsu7deedcJf76r4Tf0HeXuzJ5e+Wr4MvnTl+k/fv5JXSefOrNxN59CLyX0HboffdTePeRt9Bz0U3XW3XtZWfcQshZx9yGDxEH4ogkPgQaAxYw8CFGp2EkSwcfxBhjB5vohIADOGbS4kSyyOhjjDVKlAqOROKIC0XYwPijjB009xAxRRapQDUTbbLkj5lEdGOURGYpUSZX+shARFwWicBEDIQpowQFaSPMJpsIo01BzJRZ5ERgqvnBmAPlMgEGgGIwQS4F2YnjmULq+YGX+6QS6KMYpEJQJoYyGpEEanZg2DGQPjrBMQPVWaYC/T1UjJqyDJRJp49aiosCVVEq4FNFxWDq4wW+EKQAq4EiOlA1yTmAQCalTpRKJiqmkplAvD5aIkEINIuBr8+u2qylJWrzJ6sTzPlsn9t6Sui3BE2za6AKOEhum8LIue678MarUEAAIfkECQQA+AAsAAAAADwAPACHAAAAAQEBKgYGNwgIQwoKTwsLWg0NZQ4ObxAQeBERgRISiRMTkBQUnBUVphUVrxYWthcXvBcXwRcXxxgYyxgY0BgY0xgY1RgY1xgY2BkZ2hkZ2hkZ2BkZ1BkZ0hkZzxkZyRkZxRoavhoauRsbsxsbrBwcox0dmR4ejh8fiCAggSEheSMj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74OD74eH74qK8JCQ8ZaW8p2d8qKi86am86qq9K2t9LCw9LGx9bKy9bOz9bW19ba29rm59ru79r299r6+9sDA98TE98bG98nJ98rK+MzM+M/P+dXV+tra+t7e++Pj++fn/O3t/fLy/ff3/vn5/vr6/vz8/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+////////////////////////////////////////////////////////////////////////////////////////////CP4A6QkcSLCgwYMIEypcyLChw4cQI0qcSLGixYsYMw7Mdu1aNo0g6X2LlqxksmjfQmKsZtKkNZUXW7aEWXGbTJPbaE78drNkSp0GuWnjlpCkzGgHvUET9msYtYzgsFWbeg3cwW7NWjbrZtAb019gm2KUOpUqwm/XokW79rNgs7Bwn1bkVrZuzolw4Q6zqK1u2Y8St+WFa5Gu32p3JQ4GG+ziNb/WrE4sthjaRXCPp1rjSpEbsLzDvGXclm2b5LmUwUITDbRw69ewY9N7duyZ7Ii7QOjWvSrxbYTbsuwe/qKazm7JgOEC1mzhquHQs9DU1guXdeu/OBt8Br27L5i+rv6LT4Ywd/fhYFRiE89eO0Ew54enUNmMvXhsB+HH142Cvv3r+Blk3n7phbTef7i4NxB3+4HwnUrh2UceQs/FJx1M1LEHjIIEBXdeccclpwtzDQ3Im2+/KVSNMbal6KJs1gDjiy/SvKgQN7K8oKOOqwA2UTfL7JLLLstcxE0WOyaZhY8QYVPLKlBCmQuKEN2S5JWrSNTNk1FGuQtF2VwpZo0QLdPlmZZJxIyYVwKD25ldNiaRL2wm+WBBHSGEC5xeTiRNnTu6ORA3uWhhqBa5EEXQLnxCScxE3ACq40sCaVPGoYeWoQ1BZjYq15yAykIQLJhiWktBe8J550RlsJmFolr0QFNqqWkKtA2jXfrCYUR0JrkLrPQEMyumchIETTC7EPOpkdLQyKRAhQ5raC42EiSstFoUW+012GpxTbUERTsrteAOWsustQBbLj3DnKtFLXutK++89NYLUUAAIfkECQQA+QAsAAAAADwAPACHAAAAAQEBAgICAwMDBAQEBQUFBgYGBwcHCAgICQkJCgoKCwsLDAwMDQ0NDg4ODw8PEBAQEREREhISExMTFBQUFRUVFhYWIxgY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qaqqqqurq6ysrK2tra6urq+vr7CwsLGxsbKysrOzs7S0tLW1tba2tre3t7i4uLm5ubq6uru7u7y8vL29vb6+vsLAwMfDw8vFxc/IyNPKytnLy93NzeLOzufOzuvNze/MzPHMzPPLy/XJyfXGxvbExPbGxvfHx/fIyPfIyPfIyPfJyffJyffKyvjLy/jMzPjOzvjR0fnU1PnW1vnY2Prc3Pvk5Pzq6vzs7Pzu7v3w8P309P75+f79/f7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v///////////////////////////////////////////////////////////////////wj+AO8JHEiwoMGDCBMqXMiwocOHECNKnEixosWLGDMOJMeRnMaPAr1ZG2nNG8iM30iS/HbyYjeVI7u1RDjuzhYrW+5kOwiT5EyDzpQAGUq0j8FtPbf9JOiMqNOhdQqKhGnyYDhtzriNszhO6FOnOweaQ0pym7mDWJ2pdVZ1Yp2vT78YHPft29aD39bqvStxC1ynViRC07uWG0Urf51KJKyXot/EQKIsZuxMG8W3kOVG9EY5HMVskIE4mzhYr+GKfRKzqcjZGTSWFzE/ZcN36cNsXxBH+TLatu/fwDFuS1MFChQxvYMz7GO8ufE7tr9Jcyat9kFnzrMbnemsj3fvpxH+Fs/uHDZIad/Tmy/4jLz2lunTJy/I3H3z1SDBxU+PsL59KPh9pN9+3iHU3n9QbAcSgX3MV9B49q2nEXr7ScjUfwqe1F164fXnXlRLSUeddQhtg0ZxVYTxjHIstujiRN9k09aLCTnTRRY4duGgRHmpJQ5GfeAoJI5wUESOM20kmeSOEGEz5JNMMoSkkkpG2dAZTw7ZBY9UUimHRxNl+eSMDU3ZZZJkOuSNmENiE5GZZ1q5EJtCSmjNHWeccYc1QJ2pZJoOwUHnlgT1IcahiGZ4jzh+tvElRWuyOZ8ziFaKXEFwKqlURc6IqaillZ4BlBxKyrGpRd4IiuMZbhLEDag/lXYoEDmceQOmRoDeYw2siPJJ40De8Hpori2ewauovxK0K6y+JjuQM8YieoacL4LjTB11OAOOs9x26+23FgUEACH5BAkEAPgALAAAAAA8ADwAhwAAAAEBARAEBB8HB24MDHsNDY4PD8IREdkTE9sTE9wSEt0SEt8REeAREeAREeAT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86mp86mp86qq86ur86ys8qqq8Kmp76io7Ken6aam5Kam3Kam0aamyqamwaamt6enr6mprKysra2trq6ur6+vsLCwsbGxsrKys7OztLS0tbW1tra2u7i4wLu7yMDAz8PD1cbG2snJ4MvL5c7O6NDQ6tLS7NPT7tXV8NbW8tfX89jY9dnZ9tvb9tzc993d+N/f+ODg+eHh+eHh+eHh+uLi+uPj+uTk+uTk+uXl++bm++fn++fn++jo++np/Ovr/O3t/O7u/O/v/fDw/fHx/fLy/fPz/fPz/vT0/vX1/vX1/vb2/vb2/vf3/vj4/vj4/vn5/vr6/vz8/vz8/v39/v39/v39/v7+/v7+/v7+////////////////////////////////////////////////CP4A8wkcSLCgwYMIEypcyLChw4cQI0qcSLGixYsYM2rcmNDctGbNppnjmHEdyJPN2pG82A0lyG4rEwajBIlSL4TZXDbLFtNgN0APggYF9MynTpg9B3bTILSphmAF0+lMh7DdM2LUVFoE2rQpCKMnkRoU16tsr1/iKgbrylbTwXRUq5o1+0urREpsuyqSqGyu2WkUIeVtCkhiML9lj1HEOzjo3ojHEPcCPLFX46BuI5L168uuRBCNQYiFiM1v2orPmOa9SVHcsWDKPFMMBtor66QSNSkCpEjTaNzAgwu3iIlRoEOUvg13aAwQiOfPAfkCjk0aN4bfnEPfbqwntk+awv5/Oo1w0fbzhVdyAx9e/LqE5+NT5tirvf3uB6fFP/9pJXv7mtxWkH77QdcfSf/ZJ2BBBUI330b1AagJfgeZV2B6JImToCafvIdQdgVSSNJ37Y23UHPoTYdbddc5hMkix2Gi3HI01mjjjUmJI4khgATyCDYYYfPMbxQpA8iRSAJy4ETP0AQJJJYAWZE4gSSZpJQRPfPklpBIQuRDn1iZpCMTOcklJJlNtJuYRwYiETZnclkRj2weKZGWcT75ZUNrsmmIQeZ8cskln4xUUDd5PllRmHVKUhAwiBAiKSGIAGOQJXkuORGdYpKXjzaRTiopItoUhI0kZ0oSV5GctqlMQU6UiCoqJT5lsuUnq1r0iSOGKGJiQbKKikhCe/YUrKg4GhRqsIskW9AlxxJyibMEmbPspIsYSq1A2kgiqiSlblvQMZ98opi46Kar7roMBQQAIfkECQQA8AAsAAAAADwAPACHAAAAEAEBQggIXwoKdgsLjQwMwxYWyRUV4BQU3w4O3w0N4BIS4BYW4Rsb4h8f4iEh4iQk4iUl4ycn4ygo4ykp4yws4y8v4zMz4zY24zg44jo64jw83zs72zs71jo6zzg4xTY2uDU1pzMzmTIyiTExdTAwZi8vVC0tSywsQSwsNisrKysrLCwsLS0tLi4uLy8vMDAwMTExMjIyMzMzNDQ0NTU1NjY2Nzc3ODg4OTk5Ojo6Ozs7PDw8PT09Pj4+Pz8/QEBAQUFBQkJCQ0NDRERERUVFRkZGR0dHSEhISUlJSkpKS0tLTExMTU1NTk5OT09PUFBQUVFRUlJSU1NTVFRUVVVVVlZWV1dXWFhYWVlZWlpaW1tbXFxcXV1dXl5eX19fYGBgYWFhYmJiY2NjZGRkZWVlZmZmZ2dnaGhoaWlpampqa2trbGxsbW1tbm5ub29vcHBwcXFxcnJyc3NzdHR0dXV1dnZ2d3d3eHh4eXl5enp6e3t7fHx8fX19fn5+f39/gICAgYGBgoKCg4ODhISEhYWFhoaGh4eHiIiIiYmJioqKi4uLjIyMjY2Njo6Oj4+PkJCQkZGRkpKSk5OTlJSUlZWVlpaWl5eXmJiYmZmZmpqam5ubnJycnZ2dnp6epKCgqqKisKWluaamxKOjz56e15qa3pWV45CQ5oyM6YmJ64KC635+7Ht77Hl57Hh47HZ27HR07HFx7HR07Xd37Xh47Xl57n197oGB74aG8IyM8JCQ8JOT8ZaW8ZeX8ZiY8ZmZ8Zub8Z2d8p+f8qGh8qOj8qWl86mp862t9LGx9LOz9LW19bi49by89cDA9sTE9sjI9szM9s7O9tHR99TU+dzc++bm/fDw/vf3/vv7/v39/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////CP4A4QkcSLCgwYMIEypcyLChw4cQI0qcGLEZrg0bcDWjyHGhtQ0KQoqMZa2jyYIYRKpUgOGky1srV95yaTJmTJocm9lcKQ1nQmvPdj2rVhDZTpXIfB7cFaFp01klBeo8GnKjUoIbnGrdEBUe1ZAHrVXrypGpVq2xBoI8uqFgNmrR4lLLxtHa2bvTBFpjsFMCWXhw48rl+OzuWWEDpaVciaEnwWqCI/99aNZw010Fd21gwGADZoOBI0cjOrGw5aaII0IWHW2yw2qnmz6TmG2aaGodX51OO/Gabbl062a9e4H0xGzVkru0FutsLONXKU4TtkvY7OjYs2vfPpCaMFbCnP5xj2iNFcbzz7djc30w1vn3XLFfe6as/jRsCoXBf88qOjZm9QV4HULu7XdedNMEqCB0BRn4Hm5K0adgfRAe5OB5FeIk4YQZFlSgg9FRM2F9DBKkn4O4+AegggMS6CB7J80X4H0e2QJfetqtB5F3toQ33o9ABinkkAQtgwsruCxzzXI0VcNKLFBG2SFE1iDTy5XN4NcRLlF2GcuSElkTzJVkGqPlRM542eUyE1lJJpniUUSMmlGmKNGbbxrDEZd0xlJLmHi+ydExfcaiy0HUMMPMlAIFeqWeFEFTKJuP7VLLpbXsMhkzjkLTkS50/knQNblgimkuYA6EDTF4QsrRNU+gdokLg8qYaqoyBmHjDKvGeOoSNMfgQkycBf1iK6a/EHnQsZjOpGyxzNaS7LMEMRMtM9Rmduy02Q50Ta2YKpNqt95SQ8245Kar7rrsJhQQACH5BAkEAPMALAAAAAA8ADwAhwAAAAEBAREDAx8FBTkHB00JCccfH9AeHtwZGd0ZGeAYGOAXF+AZGeEbG+EeHuIiIuInJ+MrK+MtLeMvL+QwMOQxMeQxMeQzM+Q0NOQ2NuU5OeU7O+U9PeU/P+ZBQeZEROZFReZHR+ZKSuRISONHR+FHR99FRdpERNVCQs5AQMM+Prc8PKg6OpU4OII3N2w2NlI1NTwyMjIyMjMzMzQ0NDU1NTY2Njc3Nzg4ODk5OTo6Ojs7Ozw8PD09PT4+Pj8/P0BAQEFBQUJCQkNDQ0REREVFRUZGRkdHR0hISElJSUpKSktLS0xMTE1NTU5OTk9PT1BQUFFRUVJSUlNTU1RUVFVVVVZWVldXV1hYWFlZWVpaWltbW1xcXF1dXV5eXl9fX2BgYGFhYWJiYmNjY2RkZGVlZWZmZmdnZ2hoaGlpaWpqamtra2xsbG1tbW5ubm9vb3BwcHFxcXJycnNzc3R0dHV1dXZ2dnd3d3h4eHl5eXp6ent7e3x8fH19fX5+fn9/f4CAgIGBgYKCgoODg4SEhIWFhYaGhoeHh4iIiImJiYqKiouLi4yMjJOOjpqQkKGSkqyTk7mSksSRkcyRkdOQkNuMjOGIiOSFheeDg+iBgep+fup7e+t9fet/f+yAgOyBge2Dg+2EhO2Fhe2Hh+2Kiu2MjO2Pj+2RkeyTk+yXl+2bm+2dne2fn+2goO6hoeyiouujo+mkpOWlpd+np9yoqNmpqderq9atrdWwsNaysta1tde4uNq6ut29veDAwOLCwuTFxefFxevFxe7ExPDDw/LCwvTAwPW/v/W/v/XAwPbCwvbDw/fGxvfKyvjNzfjPz/jR0fnS0vnT0/nU1PnV1fnW1vrY2Pra2vrc3Pve3vvj4/zr6/3z8/75+f77+/78/P7+/v7+/v7+/v7+/v7+/v7+/v7+/v///////////////////////////////////////////////////////////////////////////////////////////////////wj+AOcJHEiwoMGDCBMqXMiwocOHECNKnBhRW6xNm2Jpo8iRIakFIEOm6kjS4KaQKBdsKsnyWMqUx1iSnPASJQWZHLnVTIlzobZm1Qwu24lyWc+DxzhQWEohFkGdREFyO1qQE9OrKwc6iDrhYDdu3koeu0p2pMCPREkVBLcNm9ttJJWSvTpVYIedIgy2dfuWo7a5ZJsN5CbipYi6g/kqDjuxGeCrZgce2yRCxKaYehXzRRyx2mOmgiNy0+y2G8fPSzdK1KYZLkdYn9VOBMf6LTiSmwAf7shtm2mWqciS4kx1IrdmqZqpLs68ufPnArcxi3UsG3SJsSprV0X8ekJV2sP+Zy3O7Rmy89Z+I2QWvr1Tqt6WnZ8fGiGo9uKLZ5vPv/tA/O0VZw1/81mHEGUAViYggecZeNB9CY7X034M+idQNAmK8N5R3ihDYH0IgYefhEeVN196DGUXHnfePSQddQ62KOOMNNbYHDSxmBILMzYmxE0qGAVpioUNddNMLK8cA01JFwUpJEXdHPPKlFMi05E2TmbJo0TNUOklNhxNlmWQG0KEpJdTYjaRmGNuYspEaFKppkRsjjnnYNdcY6GUcVpJ0TZtYrQkQd3EIsqhohyj3kDQxPnKcmu2GdlAsCCKKCwHIYOmUSTVmRFx0Fhq6aAFYXPMMchA2tE2px6jqkAxhop66J09ViqrKJj2SNAxtyaqK0HX9HrNr7vKSuuvzZRyaCkgEvsUkc5GK+201BYUEAAh+QQJBAD4ACwAAAAAPAA8AIcAAAAOAgJCCgqECwueDAyxDAzADAzXDAzcBgbdAgLeAgLeAwPeAwPeBQXeBwffCwvfDw/gFRXhGBjhGxvhHR3iHx/iISHiIyPjJyfjLCzkMTHkNDTlODjlOjrmPDzmPDzmPj7mPz/mQEDmQkLmRETnRkbnR0fnSkrnTEznTk7oUFDoUVHoUlLoU1PoU1PoU1PnUlLnUVHmT0/kTU3hS0vdSUnYRkbQQ0PDPz+0PT2fOjqIODhrNzdaNzdROjpJPT1AQEBBQUFCQkJDQ0NERERFRUVGRkZHR0dISEhJSUlKSkpLS0tMTExNTU1OTk5PT09QUFBRUVFSUlJTU1NUVFRVVVVWVlZXV1dYWFhZWVlaWlpbW1tcXFxdXV1eXl5fX19gYGBhYWFiYmJjY2NkZGRlZWVmZmZnZ2doaGhpaWlqampra2tsbGxtbW1ubm5vb29wcHBxcXFycnJzc3N0dHR1dXV2dnZ3d3d4eHh5eXl6enp7e3t8fHx9fX1+fn5/f3+AgICBgYGCgoKDg4OEhISFhYWGhoaHh4eIiIiJiYmKioqLi4uMjIyNjY2Ojo6Pj4+QkJCRkZGSkpKTk5OUlJSVlZWWlpaXl5eYmJiempqlnJyrnp65np7EnZ3PnJzYmprfl5fkk5PnkZHpj4/rjY3siorshobtiYnujIzujY3vjo7vj4/vkJDvkZHvk5PwlpbvmZnvnJzvnp7voaHvo6Pvpqbwqanwq6vwrKzxra3xrq7wr6/wsLDvsbHutLTtt7fsubnrurrsvb3tv7/vwsLwxcXyx8fyysryy8vyzc3y0NDz0tL009P01NT01dX11tb12Nj33Nz439/54uL55OT65eX65+f66Oj76Oj76en76en76ur76ur76ur86+v87e387u797+/98PD98fH99PT++Pj++/v+/f3+/f3+/v7+/v7+/v7+/v7+/v7+/v7+/v7//v7///////////////////////////////////////////////////////////8I/gDxCRxIsKDBgwgTKlzIsKHDhxAjSpwo0VisWMYoamz4K0OFjxUy/NpI0mAskCgrxCrJslnKlM1YknzxEuULmRs91vyYASfDaAh3oiyozNQIDSNMhSsZzdSHpy+SFRTKk+AqBVizQti10dfTr09bEaQp9KZAU1nTYuU6MRrYt8QG/qKaEZ8ytWohLJXo9O1XEwRN7TQ1UAVetYQl+n1rzerLVQQtHE6rQqLbxV+lEpwWy5SpWNMKTk6rYSLmr0AfSh6tQMTEF6cBQzTMOnHEZKdtRRzGGoIyiq0W24aIdjJkjcRM/NU9MVxxxCytJUu9cZgKyRpU/PbJvbt3jdKQ/jn7TvLYi/PnR5KX6Au9+1fkz0lrdgxatYXS3Os/9n3Zsf//SaPQLfq5NxxO4QCoIDkJmVKge95VoyCA4zT4IHoRTvhfhQgReOGBMiWoYTkJcXPhC/x555+CAirUXoHwfScfffY1ZJ57vqwH3jHj6ejjj0AGKSRE3xADDDH3DckQMJ412QuJ4BEjjDGNkURMk1jyopExunTZ5TMbfYPlmElGJI2XaHqjUVNjNhmXRMSg6eUyGjHZpmfATCSMnF2+2dadnvlZEDfcJMQln2BSVA6gpnxjkDGtRNrKdgVZw6cu4mzEzJ15FkSMpJIKOtAzcrao6Zii4kMNqKBSc5A3QcsQ80ymLJUTDTDRQFkQpKxGWpeSBvnSa6Q5AvvosK38auxA4wz7CofLEuRMrz1GWxA1uESKi6vWduvtt+CGy11AADsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA') no-repeat;
    width: 60px;
    height: 60px;
    margin: 0 auto;
}
.home-promoted-pages h3 a {
  color: #000!important;
}
.home-subscribe .mc_embed_signup input.email {
  background-color: #e6e6e6;
  margin: 0 4px 0 0;
  height: 30px!important;
  width: 77%;
  font-size: 1.1rem;
  font-style: italic;
  box-shadow: none;
}
.home-subscribe .mc_embed_signup form {
  margin-bottom: 0!important;
}
.home-subscribe .mc_embed_signup .button {
  color: #000!important;
  height: 30px!important;
  min-width: 56px;
  font-size: 14px!important;
  margin-bottom: 0!important;
  border: 2px solid #000!important;
}
/* Twitter on homepage */
.timeline-Tweet-action {
  display: none;
}
.timeline-Tweet-metadata {
  float: left;
}
.TweetAuthor-avatar {
  display: none!important;
}
.timeline-Tweet-text {
  margin-left: 5px;
}

#content .rotatingtweets, #content .norotatingtweets {
  border-top: none;
  border-bottom: none;
  margin-bottom: 0;
}

.the-orwell-youth-prize #hp-upcoming-prize .home-subscribe .mc_embed_signup .button {
  background-color: #fff!important;
  border: solid 2px #000!important;
  color: #000!important;
}
.top-line {
  border-top: solid 2px #000;
}
.home-darkgreyarea .top-line {
  border-top: solid 2px #bfbfbf;
}
.prize-wrapper img {
  border: 1px solid #bfbfbf!important;
}
/*Grey images */
.grey-hp-people img,
.shortlist-owl-journalists img,
#shortlist-journalists img,
img.attachment-detail-thumb-person {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);  
}
body.page-template-page-homepage h2 {
    font-family: "GillSansNova", Calibri, sans-serif;
    font-size: 2.0625rem;
    letter-spacing: 0.02em;
    /* margin-bottom: 2.0625rem; */
}
.entry-content h2 {
  letter-spacing: 0.02em;
  padding-top: 1em;
  margin-bottom: 0.6875em;  
}


#home-current-winners h2,
#home-news-updates h2 {
   margin-bottom: 2.0625rem; 
}
.winners-homepage-block {
  text-align: center;
}
.align-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#home-pop-orwell-books h2 {
   margin-bottom: 2.4125rem; 
}
#home-current-winners {
  padding-bottom: 2.8125em;
}
#home-current-winners h2 {
  margin-bottom: 1.25em; 
}
#home-pop-orwell-books h2 {
  font-size: 2.0625rem;
}
#home-pop-orwell-books {
  padding-bottom: 2.3em;
}
#home-sponsors p {
  margin-bottom: 2rem;
}
#hp-orwell-resources strong {
  color: #fff;
  font-size: 1.1875rem;
}
/* News and events block */
#home-news-items {  
  list-style-type: none;
  margin-left: 0;
  margin-bottom: 2em;
}
#home-news-items h5, 
h4.vsel-meta-title {
  margin-bottom: 0;
  font-size: 1.1875rem;
  font-weight: bold;
}
#home-news-items h5 a {
  color: #000;
}
#home-news-items span {
  margin-bottom: 1rem;
  display: block;
  font-size: 1rem;
}
.home-bottom-winner-links {
  padding-bottom: 4rem;
}
.home-bottom-winner-links a {
  text-transform: uppercase;
}
.home-darkgreyarea .home-bottom-winner-links a {
    color: #fff!important;
}
#vsel .vsel-meta {
   width: 100%;  
   float: none;
}
#vsel p {
  margin: 0;
}
#vsel .vsel-content {
    width: 100%;
    clear: both;
    float: none;
    display: block;
    margin: 0;
    padding: 0;
    border-bottom: none!important;
}
#vsel .vsel-info {
    width: 100%;
    float: none;
    padding-top: 1rem;
    display: block;
}
.vsel-meta p, 
.vsel-info p {
  font-size: 1rem;
  line-height: 143%;
}
.vsel-info p a.more-link,
.vsel-meta-location {
  display: none;
}
#vsel .vsel-meta-title {
  margin: 0;
}
h3.award-title {
    text-align: center;
    color: #FFF;
    margin-bottom: 0.28em;
    font-size: 1.125rem!important;
    font-weight: normal!important;
    text-transform: uppercase;
    letter-spacing: 0.025rem;
}


.owl-centered  {
  display: table !important;
}
.owl-centered .owl-item {
  display: table-cell;
  float: none;
  vertical-align: middle;
}
.owl-centered .owl-item > div {
  text-align: center;
}


.book-content h3.award-title,
.person-content h3.award-title {
    text-align: left;
    margin-left: 2rem;
}
.book-content .sharedaddy {
  display: none;
}
h1.prize-title {
  margin-bottom: 1.125em;
}
h3.award-title span {
    background-color: #000;
    padding: 0.45rem 1.3rem;
}

h3.award-title span.secondLineCentered {
    text-align: center;
}

.youth-winners-block h3.award-title span {
    background-color: #00a6b8;
    padding: 0.5rem 1rem;
}
.slider-block h3.award-title {
 /* text-align: left;
  margin-left: 4.6875rem; */
}
#shortlist-books h3.award-title {
/*    text-align: center!important; */
    margin-bottom: -20px; 
}

h3.award-title-two-lines {
   margin-bottom: -20px;  
}


.slider-block {
  margin: 3.75rem 0 3.75rem 0;
}
.prize-wrapper {
  background-color: #e5e5e5;
  text-align: center;
  padding: 3.75em 1.25em 1.25em 1.25em;
  margin: 0 auto;
  min-height: 28.125em;
}
.winners-wrapper {
  padding: 0 2em;
}
.winners-wrapper .columns {
  padding-right: 0.5625em;
  padding-left: 0.5625em;
}
.prize-wrapper img {
  border: solid 1px #bfbfbf;
  max-width: 173px;
}

.shortlist-owl .owl-item img,
.shortlist-owl-journalists .owl-item img,
.shortlist-owl-blog .owl-item img {
  border: solid 1px #bfbfbf!important;
  transform-style: flat;
}  
.shortlist-owl-blog .owl-item {
  margin-right: 50px;
}


.prize-wrapper h4,
.home-book h4 {
  font-size: 1.1875rem;
  font-weight: bold;
  margin-bottom: 0;
  margin-top: 1.25em;
}
.prize-wrapper a {
  color: #000!important;
}
.home-book {
  text-align: center;
  margin: 0 auto;
}
.home-book img {
  max-width: 140px;
  border: solid 1px #bfbfbf;
}
.home-book h4 {
  font-color: #fff;
}
.home-books-stretch {
  width: 120%!important;
}
.prize-wrapper p {
  font-size: 1rem;
  margin-bottom: 0;
}
.prize-wrapper em {
  font-style: italic;
  font-weight: 300;
  margin-bottom: 3.75em;
}
.social-evils-hp, .journalism-prize-hp, .books-hp {
  margin-top: -1.59em;
}
.youth-hp-orwell-books {
  background-color: #e3d4cd;  
  z-index: 2;
}
.youth-hp-orwell-books a,
.youth-hp-orwell-books a:link {
  color: #000!important;  
}
.home-darkgreyarea h2, 
.home-darkgreyarea h3, 
.home-darkgreyarea h4, 
.home-darkgreyarea h5,
.home-darkgreyarea .chevron-ul a {
  color: #fff;
}
.home-darkgreyarea p,
.home-darkgreyarea strong,
.home-darkgreyarea li {
  color: #d9d9d9;
}
.home-darkgreyarea a, 
.home-darkgreyarea a:link, 
.home-darkgreyarea a:active {
  color: #fff;
}
.home-darkgreyarea a:hover {
  text-decoration: underline;
}
#hp-orwell-resources .flex-video {
  padding-top: 0.5em;
}
#hp-orwell-resources li {
  font-weight: 200;
}
#hp-orwell-resources li a {
  color:  #d9d9d9!important;
}
#hp-orwell-resources {
  padding-bottom: 2.75rem;
}
.testimonial_rotator.template-longform .testimonial_rotator_quote {
  font-size: 1.75rem;
  color: #d9d9d9;
  text-align: left!important;
  max-width: 700px;
  font-weight: 200;
  margin-bottom: 1em;
}
hr.longform_hr {
  display: none;
}
.testimonial_rotator.template-longform .testimonial_rotator_author_info p {
  font-size: 1.375rem!important;
  text-align: left!important;
  max-width: 700px;
}
/* Disabled homepage quote mark as couldn't get precise css position 
#single-quote-mark {
  color: #d9d9d9;
  font-size: 10.9375rem;
  font-family: 'Open Sans';
  font-weight: 300;
  display: flex; 
  flex-direction: row-reverse; 
  align-items: flex-end;
  content: "\201C";
}
*/
#home-values {
  padding-bottom: 0!important;
}

/*********************
OWL CAROUSEL
*********************/
/*
* default theme
*/
.default-theme.wp-posts-carousel { overflow: hidden; }
.default-theme.wp-posts-carousel .wp-posts-carousel-slide { display:none; padding: 1%; position: relative; margin-left: 2%; width: 95%; }
.default-theme.wp-posts-carousel.owl-loaded .wp-posts-carousel-slide { display: block; }
.default-theme.wp-posts-carousel .wp-posts-carousel-container { box-shadow: 0px 1px 2px #CCC; background: none repeat scroll 0% 0% #FFF; padding: 10px; transition: all 0.3s ease 0s; }
.default-theme.wp-posts-carousel .wp-posts-carousel-container:hover { box-shadow: 0px 1px 3px 0px #6E95B6; }
/*
* posts's image
*/
.default-theme.wp-posts-carousel .wp-posts-carousel-image { text-align: center; vertical-align: central; overflow: hidden; padding-top:10px; }
.default-theme.wp-posts-carousel .wp-posts-carousel-image a { display: inline-block; width: 100%; text-align: center; }
.default-theme.wp-posts-carousel .wp-posts-carousel-image img {display: block; margin: 0 auto; width: auto; }
.default-theme.wp-posts-carousel .wp-posts-carousel-image img.owl-lazy {opacity: 0;}
/*
* posts's details
*/
.default-theme.wp-posts-carousel .wp-posts-carousel-details { padding: 0 5px 10px 5px; }
.default-theme.wp-posts-carousel .wp-posts-carousel-title { text-align: center; font-size: 18px; }
.default-theme.wp-posts-carousel .wp-posts-carousel-desc { font-size: 12px; color: #666; padding: 2%; margin-bottom: 2%; }
.default-theme.wp-posts-carousel .wp-posts-carousel-created-date { padding: 0; margin: 0;font-size: 12px; color: #666; }
.default-theme.wp-posts-carousel .wp-posts-carousel-categories:after { content: ""; border-width: 6px 6px 6px 0px; border-style: solid; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; border-image: none; border-color: #892026 transparent transparent; position: absolute; right: 0px; bottom: -12px; }
.default-theme.wp-posts-carousel .wp-posts-carousel-categories:before { content: ""; border-width: 14px 2px 14px 14px; border-style: solid; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; border-image: none; border-color: #D23D46 #D23D46 #D23D46 transparent; position: absolute; top: 0px; left: -14px; }
.default-theme.wp-posts-carousel .wp-posts-carousel-categories { position: absolute; top: 10px; right: -3px; background: none repeat scroll 0% 0% #D23D46; padding: 3px 12px 2px 8px; font-size: 14px; color: #FFF; text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.25); }
.default-theme.wp-posts-carousel .wp-posts-carousel-categories a { color: #fff; }
.default-theme.wp-posts-carousel .wp-posts-carousel-buttons { text-align: center; }
.default-theme.wp-posts-carousel .wp-posts-carousel-buttons a { padding-right: 5px; }
/*
* tags
*/
.default-theme.wp-posts-carousel .wp-posts-carousel-tags { font-size: 12px; }
.default-theme.wp-posts-carousel .wp-posts-carousel-tags a:before { font-family: "FontAwesome"; font-size: 11px; content: "\f02c"; padding-right: 7px; }
.default-theme.wp-posts-carousel .wp-posts-carousel-tags a { padding: 2px 10px; background: #fafafa; color: #666; line-height: 24px; text-decoration: none; border-radius: 2px; -webkit-border-radius: 2px; -moz-border-radius: 2px; transition: all 0.3s ease 0s; }
.default-theme.wp-posts-carousel .wp-posts-carousel-tags a:hover { color: #6E95B6; }
/*
* controls
*/
.default-theme.wp-posts-carousel .owl-controls { *height: 0; }
/*
* navigation
*/
.default-theme.wp-posts-carousel .owl-nav div:before  { font-family: "FontAwesome"; font-size: 65px; display: inline-block; content: "\f104"; }
.default-theme.wp-posts-carousel .owl-controls .owl-nav div  {
  background: rgba(255,255,255,1); 
  color: rgba(210,35,42,1); 
  text-align: center; 
  text-decoration: none; 
  display: block;
   width: 0px;
    height: 55px;
    line-height: 52px; 
    margin: -50px 0 0; 
    position: absolute; 
    top: 50%;
     z-index: 10; 
     overflow: hidden; 
     opacity: 0; 
     cursor: pointer; 
     -webkit-transition: all .3s ease; 
     -moz-transition: all .3s ease; 
     transition: all .3s ease; }
/* Bigger buttons for previous winners */
     .default-theme.wp-posts-carousel .owl-controls .owl-nav div  {
     width: 0px;
    height: 100px;
    line-height: 52px; 
    margin: -75px 0 0; 
     z-index: 10; 
     overflow: hidden; 
     opacity: 0; 
     cursor: pointer; 
     -webkit-transition: all .3s ease; 
     -moz-transition: all .3s ease; 
     transition: all .3s ease; 
     border-top: solid 1px #bfbfbf;
     border-bottom: solid 1px #bfbfbf;
    }
.default-theme.wp-posts-carousel .owl-controls .owl-nav .owl-prev { 
  /* left: -50px; padding: 0px 24px 0px 8px;  */
  left: -50px; padding: 20px 34px 20px 8px;
  border-right: solid 1px #bfbfbf;
}

.default-theme.wp-posts-carousel .owl-nav .owl-next:before  { content: "\f105"; }
.default-theme.wp-posts-carousel .owl-controls .owl-nav .owl-next { 
  /* origonal values:
  right: -50px; padding: 0px 22px 0px 10px;  */
  right: -50px; padding: 20px 32px 20px 12px;
  border-left: solid 1px #bfbfbf;
}
.default-theme.wp-posts-carousel:hover .owl-controls .owl-nav .owl-prev { opacity: 0.7; left: 0px; }
.default-theme.wp-posts-carousel:hover .owl-controls .owl-nav .owl-next  { opacity: 0.7; right: 0px; }
.default-theme.wp-posts-carousel:hover .owl-controls .owl-nav .owl-prev:hover,
.default-theme.wp-posts-carousel:hover .owl-controls .owl-nav .owl-next:hover { opacity: 1; }
/*
* dots
*/
.default-theme.wp-posts-carousel .owl-dots { margin-top: 10px; text-align: center; }
.default-theme.wp-posts-carousel .owl-dots .owl-dot { display: inline-block; zoom: 1; *display: inline; }
.default-theme.wp-posts-carousel .owl-dots .owl-dot span { width: 10px; height: 10px; margin: 5px 7px; background: #d6d6d6; display: block; -webkit-backface-visibility: visible; -webkit-transition: opacity 200ms ease; -moz-transition: opacity 200ms ease; -ms-transition: opacity 200ms ease; -o-transition: opacity 200ms ease; transition: opacity 200ms ease; -webkit-border-radius: 30px; -moz-border-radius: 30px; border-radius: 30px; }
.default-theme.wp-posts-carousel .owl-dots .owl-dot.active span { background: #869791; }
.default-theme.wp-posts-carousel .owl-dots .owl-dot:hover span { background: #869791; }

.owl-item h3 {
  font-weight: bold;
  font-size: 1.1875rem;
  text-align: center;
  margin-top: 1em;
}
.owl-item h3 a {
  color: #000;
}
.owl-item h3 a:hover {
  text-decoration: none;
}
.sliding-item {
  text-align: center;
}
.sliding-item img {
  display: inline-block!important;
}
.greyblock {
  background-color: #e5e5e5;
  padding: 3.8125rem 4.6875rem 3.1875rem 4.6875rem;
}
.greyblock h3 {
  font-size: 1.1875em;
  letter-spacing: 0.025em;
}

@media only screen and (min-width: 736px) and (max-width: 5600px)  {

  #shortlist-owl-journalists .large-6 {
    width: 528px!important;
  }

}



#shortlist-blog .owl-carousel {
  display: inline-block!important;
}
#shortlist-blog .owl-carousel .owl-item { 
  margin-right: 20px; 
  height: 283px;
}

#shortlist-blog .owl-carousel .owl-item img {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

/*********************
SINGLE PAGE STYLES
*********************/
.darkgreyarea #shortlist-wrapper, 
.darkgreyarea #longlist-wrapper,
.list-divider,
.darkgreyarea #list-wrapper {
  border-top: solid 2px #d9d9d9;
  margin-top: 4.125em;
  padding-top: 4.125em;
}
.darkgreyarea #list-wrapper {
  border-top: none;
  margin-top: 0;
}
.darkgreyarea #longlist-wrapper,
.darkgreyarea #list-wrapper {
  padding-bottom: 3.75em;
}
.shortlist-wrapper-no-judge {
   border-top: none!important;
   margin-top: 0!important;
}
#mainItemInfo {
  padding: 3em;
  margin-bottom: 2.3em;
}
#mainItemInfo h2:nth-of-type(2),
#mainItemInfo h2:nth-of-type(3), 
#mainItemInfo h2:nth-of-type(4) {
    text-transform: none;
    font-size: 1.1875rem;
}
#mainItemInfo blockquote {
  border-left: none;
  color: #000;
  background: url('../images/quote-marks.svg') 0 9px no-repeat;
  padding: 0 0 0 3.5em;
}
#testimonial_rotator_wrap_8268 {
  background: url('../images/quote-marks-home.svg') 0 9px no-repeat;
  padding: 0 0 0 3.5em;
}
#mainItemInfo blockquote p {
  display: inline;
  color: #000;
  font-size: 1.5625rem;
  line-height: 148%;
  margin: 0;
}
/* Disabled blockquote - couldn't get the quote marks working in pure css
#mainItemInfo blockquote {
  border-left: none;
  color: #000;
  margin-left: 4em;
}
#mainItemInfo blockquote:before {
  quotes: "\201C""\201D""\2018""\2019";
  content: open-quote;
  font-family: 'Open Sans';
  font-weight: 300;
  font-size: 9.625em;
  line-height: 0.1em;
  margin-left: -0.5em;
  vertical-align: -0.4em;
}
#mainItemInfo blockquote p {
  display: inline;
  color: #000;
  font-size: 1.5625rem;
  line-height: 148%;
  margin: 0;
  padding: 0 0 0 2em;
}
*/
#mainItemPreview h2 {
  text-transform: uppercase;
  font-size: 1.5625rem;
}
#mainItemPreview img {
  border: 1px solid #bfbfbf;
}
#mainItemDesc h2 {
  margin-bottom: 0;
}
#mainItemDesc li {
  font-weight: 300;
  line-height: 1.75rem;
}
#mainItemDesc p.publishedBy {
  font-size: 1rem;
}
#mainItemDesc p.author {
  margin-bottom: 0;
}
#judges-wrapper, #articles-orwell-books-wrapper {
  padding-top: 3.375em;
}
.darkgreyarea #shortlist-wrapper h3,
.darkgreyarea #longlist-wrapper h3 {
   margin-bottom: 1.175em;
}
.darkgreyarea #shortlist-wrapper p {
  color: #fff;
  padding-left: 0.9375rem;
}
p.white {
  color: white;
}
/*********************
SUBMISSION FORM STYLES
*********************/

.su-tabs-nav span {
  font-size: 1.1875em!important;
  text-transform: uppercase;
  font-weight: bold;
  padding: 0.5rem;
}

@media only screen and (min-width: 641px) {
.gform_wrapper ul.gform_fields:not(.top_label) .gfield_label {
  width: 35%!important;
}


.gform_wrapper .right_label .gfield_description, .gform_wrapper .left_label .gfield_description, .gform_wrapper .left_label .instruction, .gform_wrapper .right_label .instruction {
  margin-left: 35%;
}

@media only screen and (min-width: 641px) {
.gform_wrapper .gform_footer:not(.top_label) {
    margin-left: 35%;
    width: 62%;
  }
}
.gform_wrapper .description, .gform_wrapper .gfield_description, .gform_wrapper .gsection_description, .gform_wrapper .instruction {
  font-size: 100%!important;  
}

@media only screen and (min-width: 641px) {
.gform_wrapper .right_label input.medium, .gform_wrapper .right_label select.medium, .gform_wrapper .left_label input.medium, .gform_wrapper .left_label select.medium {
    width: 62%!important;
}

.gform_wrapper input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']) {
  width: 62%!important;  
}

.gform_confirmation_wrapper {
    padding: 2em;
    background: #aad27e;
    margin-bottom: 3em;
    font-size: 1.5rem;
}

.gform_wrapper .gsection {
  border-bottom: none!important;
}

.gform_wrapper .field_sublabel_above ul.gfield_radio li label, 
.gform_wrapper .field_sublabel_below ul.gfield_checkbox li label,
.gform_wrapper .gfield_checkbox li label, 
.gform_wrapper .gfield_radio li label {
  font-size: 1rem;
  vertical-align: top;
}
.gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield input[type=radio] {
  float: left;
}
#field_2_18 {
  margin-top: 0!important;
}

.gform_wrapper .gform_page_footer .button.gform_previous_button {
  margin-bottom: 0;
}
.gform_wrapper ul.gform_fields.right_label li.gfield, .gform_wrapper form ul.gform_fields.right_label li.gfield, .gform_wrapper ul.gform_fields.left_label li.gfield, .gform_wrapper form ul.gform_fields.left_label li.gfield {
  margin-bottom: 0!important;
}

.gform_wrapper li.gfield.field_description_below + li.gsection {
    margin-top: 40px !important;
}
.gform_wrapper .gf_progressbar_wrapper h3.gf_progressbar_title {
  margin: 0 0 5px 0!important;
}
.gform_wrapper .gf_progressbar {
  padding: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow:  none;
  box-shadow:  none;
  border-radius: 0;
}
.gform_wrapper .gf_progressbar:after {
  border-radius: 0;
}
.gform_wrapper .gf_progressbar_percentage {
  border-radius: 0;
}
.gform_wrapper .percentbar_blue {
  background-color: #000;
}
.gform_wrapper .gf_progressbar_percentage.percentbar_100 {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
body .gform_wrapper ul li.gfield {
    margin-top: 0;
    padding-top: 0;
}
h2.gsection_title {
  text-transform: none!important;
}
.gform_wrapper label.gfield_label {
  font-size: 1.2rem!important;
  font-weight: normal;
}
.gform_wrapper .field_description_below .gfield_description {
  padding-top: 0;
}


.gform_wrapper #input_4_61,
.gform_wrapper #field_4_61 label {
  margin: 0!important;
}

  .gform_wrapper .field_description_below .gfield_description {
      padding-top: 0!important;
      margin-top: 0!important;
      font-size: 1rem!important;
      padding-bottom: 1rem;
        display: inline-block;
  }

.gform_wrapper form ul.gform_fields:not(.top_label) li.gfield_html_formatted {
  margin-left: 34%!important;
  width: 65%;
  font-size: 1rem!important;
}
#extensions_message {
  font-size: 1rem;
  padding-bottom: 0.5rem;
  display: inline-block;
}

.gform_wrapper [type="file"] {
  margin: 0; 
}



.gform_wrapper .left_label .math_large, .gform_wrapper .left_label .math_medium, .gform_wrapper .left_label .math_small, .gform_wrapper .left_label div.charleft, .gform_wrapper .right_label .math_large, .gform_wrapper .right_label .math_medium, .gform_wrapper .right_label .math_small, .gform_wrapper .right_label div.charleft {
    margin-left: 35%;
}
@media only screen and (min-width: 641px) {
.gform_wrapper .left_label input.large, .gform_wrapper .left_label select.large, .gform_wrapper .left_label textarea.large, .gform_wrapper .left_label textarea.medium, .gform_wrapper .left_label textarea.small, .gform_wrapper .right_label input.large, .gform_wrapper .right_label select.large, .gform_wrapper .right_label textarea.large, .gform_wrapper .right_label textarea.medium, .gform_wrapper .right_label textarea.small {
    width: 63%;
}

[type="text"], 
[type="password"], 
[type="date"], 
[type="datetime"], 
[type="email"], 
[type="number"], [type="search"], [type="tel"], [type="time"], [type="url"], [type="color"], textarea {
  background: #e6e6e6;  
}

[type=file] {

}

/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
  background-color: #1e1d1c;
  color: #999;
  padding-top: 2.5rem;  
  position: relative;
  z-index: 5;
}
.footer p {
  -webkit-font-smoothing: antialiased;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
}
@media screen and (min-width: 32em) {
  .footer {
    padding-top: 3.933rem;
  }
}
.footer-mailchimp {
  padding-left: 3em;
}
.footer-followus {
 padding-left: 3.5em; 
}
#footer-info h3 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: -5px;
  margin-bottom: 0.9em;
  font-size: 1.375rem;
}
@media screen and (min-width: 32em) {
  #footer-info h3 {
    font-size: 1.5rem;
  }
}
#footer-info h4 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1rem; 
}
#footer-info p {
  font-size: 1rem;
  color: #999;
  line-height: 1.4375rem;
  margin-top: -4px;
  font-weight: 500;
}
@media screen and (min-width: 32em) {
  #footer-info p {
  font-size: 0.875rem;
  line-height: 1.4375rem;
  margin-top: -4px;
  }
}
@media screen and (min-width: 32em) {
    #menu-footer-menu {
    padding-top: 2px;
  }
}
.footer-followus h4 {
  margin-top: 0.9em;
}
@media screen and (min-width: 32em) {
  .footer-followus h4 {
    margin-top: 0;
  }
}
.show-for-small-only #menu-footer-menu {
  margin-top: 2em;
}
.show-for-small-only #menu-footer-menu a {
  color: #999;
}
#footer-info #menu-footer-menu.menu > li {
  display: block!important;
}
/* MailChimp Form Embed Code - Slim - 08/17/2011 */
.mc_embed_signup form {display:block; position:relative; text-align:left; padding:10px 0 10px 3%}
.mc_embed_signup h2 {font-weight:bold; padding:0; margin:15px 0; font-size:1.4em;}
.mc_embed_signup input {border:1px solid #999; -webkit-appearance:none;}
.mc_embed_signup input[type=checkbox]{-webkit-appearance:checkbox;}
.mc_embed_signup input[type=radio]{-webkit-appearance:radio;}
.mc_embed_signup input:focus {border-color:#333;}
.mc_embed_signup .button {clear:both; background-color: #aaa; border: 0 none; border-radius:4px; color: #FFFFFF; cursor: pointer; display: inline-block; font-size:15px; font-weight: bold; height: 32px; line-height: 32px; margin: 0 5px 10px 0; padding:0; text-align: center; text-decoration: none; vertical-align: top; white-space: nowrap; width: auto;}

.mc_embed_signup .small-meta {font-size: 11px;}
.mc_embed_signup .nowrap {white-space:nowrap;}     
.mc_embed_signup .clear {clear:none; display:inline;}

.mc_embed_signup label {display:block; font-size:16px; padding-bottom:10px; font-weight:bold;}
.mc_embed_signup input.email {display:block; padding:8px 0; margin:0 4% 10px 0; text-indent:5px; width:58%; min-width:130px;}
.mc_embed_signup input.button {display:block; width:35%; margin:0 0 10px 0; min-width:90px;}

.mc_embed_signup div#mce-responses {float:left; top:-1.4em; padding:0em .5em 0em .5em; overflow:hidden; width:90%;margin: 0 5%; clear: both;}
.mc_embed_signup div.response {margin:1em 0; padding:1em .5em .5em 0; font-weight:bold; float:left; top:-1.5em; z-index:1; width:80%;}
.mc_embed_signup #mce-error-response {display:none;}
.mc_embed_signup #mce-success-response {color:#529214; display:none;}
.mc_embed_signup label.error {display:block; float:none; width:auto; margin-left:1.05em; text-align:left; padding:.5em 0;}

.mc_embed_signup form {
    padding: 0!important;
    margin-bottom: 1rem;
}
.mc_embed_signup input.email, .mc_embed_signup input.button {
    display: inline!important;
}
.mc_embed_signup input {
    border: none!important;
}
.mc_embed_signup input.email {
    height: 25px!important;
  line-height: 25px!important;
}
.mc_embed_signup .button {
  background-color: #fff!important;
  border: 1px solid #999999!important;
  border-radius: 0!important;
  color: #000!important;
  font-size: 11px!important;
  font-weight: 700!important;
  height: 25px!important;
  line-height: 25px!important;
  margin: 0 5px 10px 0!important;
  padding: 0!important;    
  width: auto!important;
}

.mc_embed_signup .button:hover {
  background-color:#1e1d1c!important;
  color: #FFF!important;
}
.footer .mc_embed_signup .button {
  background: black!important;
  color: #fff!important;
  min-width: 50px;
}
.footer .mc_embed_signup input.email {
  width: 12.5em;
  margin: 0 5px 10px 0!important;
}

@font-face {
    font-family: 'si';
    src: url('../webfonts/socicon.eot');
    src: url('../webfonts/socicon.eot?#iefix') format('embedded-opentype'),
         url('../webfonts/socicon.woff') format('woff'),
         url('../webfonts/socicon.ttf') format('truetype'),
         url('../webfonts/socicon.svg#icomoonregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
    @font-face {
        font-family:si;
        src: url(../webfonts/socicon.svg) format(svg);
    }
}
.soc {
    overflow:hidden;
    margin:0; padding:0;
    list-style:none;
    margin-top: 0;
    margin-bottom: 2em;
}
@media screen and (min-width: 32em) {
  .soc {
    margin-top: -8px;
    margin-bottom: 0;
  }
}

.soc li {
    display:inline-block;
    *display:inline;
    zoom:1;
}
.soc li a {
    font-family:si!important;
    font-style:normal;
    font-weight:400;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    -ms-box-sizing:border-box;
    -o-box-sizing:border-box;
    box-sizing:border-box;
    overflow:hidden;
    text-decoration:none;
    text-align:center;
    display:block;
    position: relative;
    z-index: 1;
    width: 34px;
    height: 34px;
    line-height: 34px;
    font-size: 24px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    margin-right: 0px;
    color: #979797;
    background-color: #1e1d1c;
}
.top-share-wrapper .soc li a {
   background-color: transparent;
   color: #fff;
}
.soc-icon-last{
    margin:0 !important;
}
.soc a:hover {
  text-decoration: none!important;
  color: #ffffff;
}
.soc-twitter:before {
  font-family: "social-logos";
    content:'\f202';
}
.soc-facebook:before {
  font-family: "social-logos";
    content:'\f203';
}
.soc-youtube:before {
  font-family: "social-logos";
    content:'\f213';
}
.soc-instagram:before {
  font-family: "social-logos";
    content:'\f215';
}
.footer a {
  color: #999;
}
.footer a:hover {
  text-decoration: underline;
}
#inner-footer {
  font-size: 0.8125rem;
  margin-top: 2em;
}
#inner-footer-line {
  border-top: 1px solid #33312f;
  margin: 0 0.9375rem;
  padding-top: 0.4em;
  padding-bottom: 2em;
}
#inner-footer ul#copyright {
  display: inline-block;
  list-style-type: none;
  margin-left: 0;
  vertical-align: top;
  margin-top: 0.4em;
  margin-right: 0.4em;
  margin-bottom: 0;
}
#inner-footer ul#copyright li {
  display: block;
}
@media screen and (min-width: 32em) {
  #inner-footer ul#copyright li {
    display: inline;
  }
}
#footer-line-left {
  padding-left: 0;
}
#footer-line-right {
  padding-right: 0;
  padding-left: 0;
}
#footer-line-left a {
  color: #999;
}
#footer-line-left nav {
  display: block;
}
@media screen and (min-width: 32em) {
  #footer-line-left nav {
    display: inline-block;
  }
}
#footer-line-left ul li {
    margin-right: 0.8em;
    font-size: 1rem;
    line-height: 1.2;
    display: block;
    font-weight: 500;
}
@media screen and (min-width: 32em) {
  #footer-line-left ul li {
      font-size: 0.8125rem;
      display: inline-block;
  }
}
#footer-line-left .menu > li > a {
    display: inline-block;
    padding: 0;
    line-height: 1.2;
}
@media screen and (min-width: 32em) {
  #footer-line-left .menu > li > a {
    display: block;
    padding: 0.4rem 1rem 0 0;
    line-height: 1;
  }
}

#inner-footer .copyright {  
  font-size: 1rem;
  vertical-align: top;
  margin-top: 0;
  font-weight: 500;
}
@media screen and (min-width: 32em) {
  #inner-footer .copyright {
    text-align: right;
    font-size: 0.8125rem;
    vertical-align: top;
    margin-top: 0;
  }
}
/*********************
NEWS AND EVENTS STYLES
*********************/
.news-events-single-item {
  margin-top: 1em;
  padding-top: 1.5em;
  border-top: 2px solid #000;
}
.news-image-column img {
  margin-top: 2.8em;
}
.event-price {
  font-size: 1.375rem;
  line-height: 2rem;
}
h2.event-date {
  margin-bottom: 0!important;
  padding-top: 0.05em!important;
}
.news-events-content h2 {
  margin-bottom: 0;
  line-height: 1.3;
}
.news-events-content h3 {
  font-size: 1rem;
  font-weight: normal!important;
  margin-bottom: 1.25em;
}
.news-events-single-item p {
  margin-bottom: 0.25em;
}
.news-events-single-item a {
  color: #000;
}

/*********************
UNREPORTED BRITIAN STYLES
*********************/

/*  body.unreportedbritain  */

/* JRF pink colour */
body.unreportedbritain .orwellred,
body.unreportedbritain .header-other-sections ul li.current_page_ancestor,
body.unreportedbritain .header-other-sections ul li.current_page_item,
body.unreportedbritain .header-other-sections li.page_item_has_children:hover,
body.unreportedbritain #main-nav-container.fixed {
  background-color: #ce0058!important;
}
.unreportedbritain .dropdown.menu .submenu a:hover  {
  color: #ce0058!important;
}


/*********************
FOUNDATION STYLES
*********************/
/* Grey colour */
/* FOUNDATION BACK TO RED - removing grey

body.the-orwell-foundation .orwellred,
body.the-orwell-foundation .header-other-sections ul li.current_page_ancestor,
body.the-orwell-foundation .header-other-sections ul li.current_page_item,
body.the-orwell-foundation #main-nav-container.fixed,
body.single-news .orwellred,
body.single-events .orwellred
/* body.orwellfoundation .orwellred,
body.orwellfoundation .header-other-sections ul li.current_page_ancestor,
body.orwellfoundation .header-other-sections ul li.current_page_item,
body.orwellfoundation #main-nav-container.fixed  {
  background-color: #6B6B6B!important;
}



.the-orwell-foundation .dropdown.menu .submenu a:hover,
.orwellfoundation .dropdown.menu .submenu a:hover  {
  color: #6B6B6B!important;
}
.the-orwell-foundation #main a,
.orwellfoundation #main a {
  color: #d2232a;
}

.the-orwell-foundation #main a.button,
.orwellfoundation #main a.button {
  color: #FFFFFF;
}
*/

/*********************
YOUTH PRIZE STYLES
*********************/
/*  body.the-orwell-youth-prize  */

/* Orange colour */
body.the-orwell-youth-prize .orwellred,
body.the-orwell-youth-prize .header-other-sections ul li.current_page_ancestor,
body.the-orwell-youth-prize .header-other-sections ul li.current_page_item,
/* body.the-orwell-youth-prize .header-other-sections li.page_item_has_children:hover, */
body.the-orwell-youth-prize #main-nav-container.fixed {
  background-color: #ff9900!important;
}
.the-orwell-youth-prize .dropdown.menu .submenu a:hover  {
  color: #ff9900!important;
}
.the-orwell-youth-prize #main a {
  color: #d2232a;
}
.the-orwell-youth-prize .menu > li > a {
  color: #ffffff;  
}

/* Off grey */
.the-orwell-youth-prize .greyarea, 
.the-orwell-youth-prize #related,
.the-orwell-youth-prize .sd-social-icon .sd-content ul li[class*='share-'] a.sd-button,
.the-orwell-youth-prize .sd-social-icon .sd-content ul li[class*='share-'].share-facebook a.sd-button,
.the-orwell-youth-prize .sd-social-icon .sd-content ul li[class*='share-'].share-twitter a.sd-button, 
.the-orwell-youth-prize .sd-social-icon .sd-content ul li[class*='share-'].share-pinterest a.sd-button,
.the-orwell-youth-prize .sd-social-icon .sd-content ul li[class*='share-'].share-linkedin a.sd-button, 
.the-orwell-youth-prize .sd-social-icon .sd-content ul li[class*='share-'].share-google-plus-1 a.sd-button {
    background-color: #e3d4cd!important;
}
body.the-orwell-youth-prize #hp-top-intro {
  background-color: #FFFFFF;
}

body.the-orwell-youth-prize #hp-top-intro p {
  color: #000;
}
body.the-orwell-youth-prize #hero-image-wrapper h2 span {
  background: #ff9900;
}
.the-orwell-youth-prize #main {
  margin-bottom: 10em;
}
/* slanted edges here */
.the-orwell-youth-prize .bottom-see-also #related,
.the-orwell-youth-prize .bottom-see-also .sd-social-icon .sd-content ul li[class*='share-'] a.sd-button,
.the-orwell-youth-prize .bottom-see-also .sd-social-icon .sd-content ul li[class*='share-'].share-facebook a.sd-button,
.the-orwell-youth-prize .bottom-see-also .sd-social-icon .sd-content ul li[class*='share-'].share-twitter a.sd-button, 
.the-orwell-youth-prize .bottom-see-also .sd-social-icon .sd-content ul li[class*='share-'].share-pinterest a.sd-button,
.the-orwell-youth-prize .bottom-see-also .sd-social-icon .sd-content ul li[class*='share-'].share-linkedin a.sd-button, 
.the-orwell-youth-prize .bottom-see-also .sd-social-icon .sd-content ul li[class*='share-'].share-google-plus-1 a.sd-button {
  background: #13bacc!important;
}
.the-orwell-youth-prize .bottom-see-also,
.youth-prize-winners {
  background: #13bacc!important;
  position: relative;
  z-index: 1;
}
.youth-prize-winners {
  background: #ffd22d!important;  
}
.youth-prize-winners .callout {
  background-color: #ffd22d!important;
}
.the-orwell-youth-prize .bottom-see-also:before,
.youth-prize-winners:before {
  background: inherit;
  content: '';
  height: 125%;
  left: 0;
  position: absolute;
  right: 0;
  transform-origin: left top;
  transform: skewY(-6deg);
  z-index: -1;
}
.youth-bottom-bar-grey,
.youth-bottom-bar-yellow {
  display: none;
}
.the-orwell-youth-prize .youth-bottom-bar-grey {
  display: block;
  background: #e3dfd6;
  position: relative;
  z-index: 1;
  height: 1em;
}
.the-orwell-youth-prize .youth-bottom-bar-grey-homepage {
  display: block;
  background: #e3dfd6;
  position: relative;
  z-index: 1;
  height: 1em;
}
.the-orwell-youth-prize .youth-bottom-bar-yellow {
  display: block;
  background: #ffd22d;
  position: relative;
  z-index: 1;
  height: 1em;
}
.the-orwell-youth-prize .youth-bottom-bar-blue {
  display: block;
  background: #13bacc;
  position: relative;
  z-index: 1;
  height: 1em;
}
.the-orwell-youth-prize .youth-bottom-bar-blue:before {
  background: inherit;
  content: '';
  height: 20em;
  left: 0;
  position: absolute;
  right: 80em;
  transform-origin: right top;
  transform: skewY(13deg);
  z-index: -1;
}
.the-orwell-youth-prize .youth-bottom-bar-yellow:before {
  background: inherit;
  content: '';
  height: 20em;
  left: 0;
  position: absolute;
  right: 80em;
  transform-origin: right top;
  transform: skewY(13deg);
  z-index: -1;
}
.the-orwell-youth-prize .youth-bottom-bar-grey:before {
  background: inherit;
  content: '';
  height: 20em;
  left: 0;
  position: absolute;
  right: 40em;
  transform-origin: right top;
  transform: skewY(3deg);
  z-index: -1;
}
.youth-bottom-bar-grey-homepage:before {
  background: inherit;
  content: '';
  height: 20em;
  left: 0;
  position: absolute;
  right: 94em;
  transform-origin: right top;
  transform: skewY(28deg);
  z-index: -1;
}
.youth-prize-winners h2 {
  font-size: 2.0625rem;
  padding-bottom: 1em;
}
.youth-prize-winners .home-bottom-winner-links a {
  color: #000;
}
.youth-prize-wrapper {
  background-color: white;
  padding: 3.75rem;
}
.youth-prize-wrapper h2, 
.youth-prize-wrapper h3 {
  font-size: 1.1875rem!important;
  margin-bottom: 0;
  text-transform: none!important;
} 
.youth-prize-wrapper p {
  font-size: 1rem;
  font-weight: 300;
} 
.youth-winners-block {
  padding-top: 1em;
  padding-bottom: 2em;
}
.the-orwell-youth-prize #hp-upcoming-prize {
  margin-bottom: 3.75em;
  min-height: 58em;
}

#rosette-wrapper {
  position: relative;
}
#prize-winners-rosette {
  background: url('../images/prize-winners-rosette.svg') 0 0 no-repeat;
  width: 170px;
  height: 170px;
  position: absolute;
  right: 42%;
  top: -27px;
}

#footer-info a {
  color: #999;
}
/*********************
FOUNDATION STYLES
*********************/
/*********************
PLUGIN STYLES
*********************/
.gform_body ul {
  list-style: none outside none;
  margin: 0; }

/******************************************************************

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.

******************************************************************/
/******************************************************************

Stylesheet: Print Stylesheet

This is the print stylesheet. There's probably not a lot
of reasons to edit this stylesheet. 

Remember to add things that won't make sense to print at 
the bottom. Things like nav, ads, and forms shouldbe set 
to display none.
******************************************************************/
@media print {
  * {
    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; } }
