/**
 * @file
 * Styles are organized using the SMACSS technique. @see http://smacss.com/book/
 *
 * When you turn on CSS aggregation at admin/config/development/performance,
 * any @include files will be combined into a single file.
 */
/* Import Sass mixins, variables, Compass modules, etc. */
@import url(//fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700);
@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon/icomoon.eot");
  src: url("../fonts/icomoon/icomoon.eot?#iefix") format("embedded-opentype"), url("../fonts/icomoon/icomoon.ttf") format("truetype"), url("../fonts/icomoon/icomoon.woff") format("woff"), url("../fonts/icomoon/icomoon.svg#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* HTML element (SMACSS base) rules */
/**
 * @file
 * Normalize.css is intended to be used as an alternative to CSS resets.
 *
 * This file is a slight fork of these original sources:
 * - normalize.css v2.1.2 | MIT License | git.io/normalize
 * - normalize.scss v2.1.2 | MIT/GPLv2 License | bit.ly/normalize-with-compass
 *
 * It's suggested that you read the normalize.scss file and customise it to meet
 * your needs, rather then including the file in your project and overriding the
 * defaults later in your CSS.
 * @see http://nicolasgallagher.com/about-normalize-css/
 *
 * Also: @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 *       @see http://snook.ca/archives/html_and_css/no_css_reset/
 */
/**
 * HTML5 display definitions
 */
/* Correct `block` display not defined in IE 8/9. */
/* line 33, ../sass/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

/* Correct `inline-block` display not defined in IE 8/9. */
/* line 40, ../sass/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
/* line 52, ../sass/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* Address styling not present in IE 8/9. */
/* line 58, ../sass/_normalize.scss */
[hidden] {
  display: none;
}

/**
 * Base
 *
 * Instead of relying on the fonts that are available on a user's computer, you
 * can use web fonts which, like images, are resources downloaded to the user's
 * browser. Because of the bandwidth and rendering resources required, web fonts
 * should be used with care.
 *
 * Numerous resources for web fonts can be found on Google. Here are a few
 * websites where you can find Open Source fonts to download:
 * - http://www.fontsquirrel.com/fontface
 * - http://www.theleagueofmoveabletype.com
 *
 * In order to use these fonts, you will need to convert them into formats
 * suitable for web fonts. We recommend the free-to-use Font Squirrel's
 * Font-Face Generator:
 *   http://www.fontsquirrel.com/fontface/generator
 *
 * The following is an example @font-face declaration. This font can then be
 * used in any ruleset using a property like this:  font-family: Example, serif;
 *
 * Since we're using Sass, you'll need to declare your font faces here, then you
 * can add them to the font variables in the _base.scss partial.
 */
/*
@font-face {
  font-family: 'Example';
  src: url('../fonts/example.eot');
  src: url('../fonts/example.eot?iefix') format('eot'),
    url('../fonts/example.woff') format('woff'),
    url('../fonts/example.ttf') format('truetype'),
    url('../fonts/example.svg#webfontOkOndcij') format('svg');
  font-weight: normal;
  font-style: normal;
}
*/
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 * 3. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 */
/* line 106, ../sass/_normalize.scss */
html {
  font-family: "Open Sans Condensed", "Helvetica Neue", sans-serif;
  /* 1 */
  font-size: 100%;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  line-height: 1.5em;
}

/* Remove default margin. */
/* line 126, ../sass/_normalize.scss */
body {
  margin: 0;
  padding: 0;
}

/**
 * Links
 *
 * The order of link states are based on Eric Meyer's article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
/* Address `outline` inconsistency between Chrome and other browsers. */
/* line 148, ../sass/_normalize.scss */
a:focus {
  outline: thin dotted;
}

/* Improve readability when focused and also mouse hovered in all browsers. */
/* line 154, ../sass/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/**
 * Typography
 *
 * To achieve a pleasant vertical rhythm, we use Compass' Vertical Rhythm mixins
 * so that the line height of our base font becomes the basic unit of vertical
 * measurement. We use multiples of that unit to set the top and bottom margins
 * for our block level elements and to set the line heights of any fonts.
 * For more information, see http://24ways.org/2006/compose-to-a-vertical-rhythm
 */
/* Set 1 unit of vertical rhythm on the top and bottom margin. */
/* line 170, ../sass/_normalize.scss */
p,
pre {
  margin: 1.5em 0;
}

/* line 173, ../sass/_normalize.scss */
blockquote {
  /* Also indent the quote on both sides. */
  margin: 1.5em 30px;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 182, ../sass/_normalize.scss */
h1 {
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
  font-size: 2em;
  line-height: 1.5em;
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

/* line 190, ../sass/_normalize.scss */
h2 {
  font-size: 1.5em;
  line-height: 2em;
  margin-top: 1em;
  margin-bottom: 1em;
}

/* line 195, ../sass/_normalize.scss */
h3, .show-creative-team .field-name-field-name-title {
  font-size: 1.17em;
  line-height: 1.28205em;
  margin-top: 1.28205em;
  margin-bottom: 1.28205em;
}

/* line 200, ../sass/_normalize.scss */
h4 {
  font-size: 1em;
  line-height: 1.5em;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

/* line 205, ../sass/_normalize.scss */
h5 {
  font-size: 0.83em;
  line-height: 1.80723em;
  margin-top: 1.80723em;
  margin-bottom: 1.80723em;
}

/* line 210, ../sass/_normalize.scss */
h6 {
  font-size: 0.67em;
  line-height: 2.23881em;
  margin-top: 2.23881em;
  margin-bottom: 2.23881em;
}

/* Address styling not present in IE 8/9, Safari 5, and Chrome. */
/* line 217, ../sass/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */
/* line 223, ../sass/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/* Address styling not present in Safari 5 and Chrome. */
/* line 228, ../sass/_normalize.scss */
dfn {
  font-style: italic;
}

/* Address differences between Firefox and other browsers. */
/* line 233, ../sass/_normalize.scss */
hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  border: 1px solid #666;
  padding-bottom: -1px;
  margin: 1.5em 0;
}

/* Address styling not present in IE 8/9. */
/* line 242, ../sass/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/* Correct font family set oddly in Safari 5 and Chrome. */
/* line 253, ../sass/_normalize.scss */
code,
kbd,
pre,
samp,
tt,
var {
  font-family: "Courier New", "DejaVu Sans Mono", monospace, sans-serif;
  font-size: 1em;
  line-height: 1.5em;
}

/* Improve readability of pre-formatted text in all browsers. */
/* line 262, ../sass/_normalize.scss */
pre {
  white-space: pre-wrap;
}

/* Set consistent quote types. */
/* line 274, ../sass/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/* Address inconsistent and variable font size in all browsers. */
/* line 279, ../sass/_normalize.scss */
small {
  font-size: 80%;
}

/* Prevent `sub` and `sup` affecting `line-height` in all browsers. */
/* line 285, ../sass/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 291, ../sass/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 294, ../sass/_normalize.scss */
sub {
  bottom: -0.25em;
}

/**
 * Lists
 */
/* line 304, ../sass/_normalize.scss */
dl,
menu,
ol,
ul {
  /* Address margins set differently in IE 6/7. */
  margin: 1.5em 0;
}

/* line 311, ../sass/_normalize.scss */
ol ol,
ol ul,
ul ol,
ul ul {
  /* Turn off margins on nested lists. */
  margin: 0;
}

/* line 316, ../sass/_normalize.scss */
dd {
  margin: 0 0 0 30px;
  /* LTR */
}

/* Address paddings set differently in IE 6/7. */
/* line 323, ../sass/_normalize.scss */
menu,
ol,
ul {
  padding: 0 0 0 30px;
  /* LTR */
}

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
/* line 341, ../sass/_normalize.scss */
img {
  /* Remove border when inside `a` element in IE 8/9. */
  border: 0;
  /* Suppress the space beneath the baseline */
  /* vertical-align: bottom; */
  /* Responsive images */
  height: auto;
  /* Correct IE 8 not scaling image height when resized. */
  width: auto;
}

/* line 359, ../sass/_normalize.scss */
div#main img {
  max-width: 100%;
}

/* Correct overflow displayed oddly in IE 9. */
/* line 363, ../sass/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* Address margin not present in IE 8/9 and Safari 5. */
/* line 368, ../sass/_normalize.scss */
figure {
  margin: 0;
}

/**
 * Forms
 */
/* Define consistent border, margin, and padding. */
/* line 384, ../sass/_normalize.scss */
fieldset {
  margin: 0 2px;
  /* Apply borders and padding that keep the vertical rhythm. */
  border-color: #c0c0c0;
  border-top-style: solid;
  border-top-width: 0.0625em;
  padding-top: 0.4625em;
  border-bottom-style: solid;
  border-bottom-width: 0.0625em;
  padding-bottom: 0.9125em;
  border-left-style: solid;
  border-left-width: 0.0625em;
  padding-left: 0.9125em;
  border-right-style: solid;
  border-right-width: 0.0625em;
  padding-right: 0.9125em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
/* line 399, ../sass/_normalize.scss */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 * 4. Improve appearance and consistency with IE 6/7.
 * 5. Keep form elements constrained in their containers.
 */
/* line 417, ../sass/_normalize.scss */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
  max-width: 100%;
  /* 5 */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 5 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 434, ../sass/_normalize.scss */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
/* line 445, ../sass/_normalize.scss */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
/* line 461, ../sass/_normalize.scss */
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.
 */
/* line 473, ../sass/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
/* line 484, ../sass/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
/* line 498, ../sass/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/* line 508, ../sass/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* Remove inner padding and border in Firefox 4+. */
/* line 514, ../sass/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
/* line 523, ../sass/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* Drupal-style form labels. */
/* line 529, ../sass/_normalize.scss */
label {
  display: block;
  font-weight: bold;
}

/**
 * Tables
 */
/* line 537, ../sass/_normalize.scss */
table {
  /* Remove most spacing between table cells. */
  border-collapse: collapse;
  border-spacing: 0;
  /* Prevent cramped-looking tables */
  /* width: 100%; */
  /* Add vertical rhythm margins. */
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

/* Layout rules */
/**
 * @file
 * Positioning for a responsive layout.
 *
 * Define CSS classes to create a fluid grid layout with optional sidebars
 * depending on whether blocks are placed in the left or right sidebars.
 *
 * This layout uses the Zen Grids plugin for Compass: http://zengrids.com
 */
/**
 * Center the page.
 *
 * For screen sizes larger than 1200px, prevent excessively long lines of text
 * by setting a max-width.
 */
/* line 37, ../sass/base/_responsive.scss */
#page,
.region-bottom {
  margin-left: auto;
  margin-right: auto;
  max-width: 960px;
}

/* Apply the shared properties of grid items in a single, efficient ruleset. */
/* line 48, ../sass/base/_responsive.scss */
#header,
#content,
.region-sidebar-first,
.region-sidebar-second,
#footer {
  padding-left: 10px;
  padding-right: 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
}

/* Containers for grid items and flow items. */
/* line 46, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#header:before, #header:after,
#main:before,
#main:after,
#footer:before,
#footer:after {
  content: "";
  display: table;
}
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#header:after,
#main:after,
#footer:after {
  clear: both;
}

/**
 * Use 3 grid columns for smaller screens.
 */
/**
 * Use 12 grid columns for larger screens.
 */
@media all and (min-width: 960px) {
  /**
   * The layout when there is only one sidebar, the left one.
   */
  /* line 150, ../sass/base/_responsive.scss */
  .sidebar-first {
    /* Span 4 columns, starting in 2nd column from left. */
    /* Span 2 column, starting in 1st column from left. */
  }
  /* line 152, ../sass/base/_responsive.scss */
  .sidebar-first #content {
    float: left;
    width: 62.5%;
    margin-left: 31.25%;
    margin-right: -93.75%;
  }
  /* line 157, ../sass/base/_responsive.scss */
  .sidebar-first .region-sidebar-first {
    float: left;
    width: 25%;
    margin-left: 0%;
    margin-right: -25%;
  }

  /**
   * The layout when there is only one sidebar, the right one.
   */
  /* line 165, ../sass/base/_responsive.scss */
  .sidebar-second {
    /* Span 4 columns, starting in 1st column from left. */
    /* Span 1 column, starting in 5th column from left. */
  }
  /* line 167, ../sass/base/_responsive.scss */
  .sidebar-second #content {
    float: left;
    width: 75%;
    margin-left: 0%;
    margin-right: -75%;
  }
  /* line 172, ../sass/base/_responsive.scss */
  .sidebar-second .region-sidebar-second {
    float: left;
    width: 25%;
    margin-left: 75%;
    margin-right: -100%;
  }

  /**
   * The layout when there are two sidebars.
   */
  /* line 180, ../sass/base/_responsive.scss */
  .two-sidebars {
    /* Span 3 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
    /* Span 1 column, starting in 5th column from left. */
  }
  /* line 182, ../sass/base/_responsive.scss */
  .two-sidebars #content {
    float: left;
    width: 50%;
    margin-left: 25%;
    margin-right: -75%;
  }
  /* line 187, ../sass/base/_responsive.scss */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 25%;
    margin-left: 0%;
    margin-right: -25%;
  }
  /* line 192, ../sass/base/_responsive.scss */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 25%;
    margin-left: 75%;
    margin-right: -100%;
  }
}
/* Component (SMACSS module) rules */
/**
 * @file
 * SMACSS Modules
 *
 * Adds modular sets of styles.
 *
 * Additional useful selectors can be found in Zen's online documentation.
 * https://drupal.org/node/1707736
 */
/**
 * Wireframes.
 */
/* line 22, ../sass/components/_misc.scss */
.with-wireframes #header,
.with-wireframes #main,
.with-wireframes #content,
.with-wireframes #navigation,
.with-wireframes .region-sidebar-first,
.with-wireframes .region-sidebar-second,
.with-wireframes #footer,
.with-wireframes .region-bottom {
  outline: 1px solid #ccc;
}

/* line 34, ../sass/components/_misc.scss */
.region-sidebar-first {
  padding: 0;
}

/**
 * Accessibility features.
 */
/* element-invisible as defined by http://snook.ca/archives/html_and_css/hiding-content-for-accessibility */
/* line 44, ../sass/components/_misc.scss */
.element-invisible,
.element-focusable,
#navigation .block-menu .block__title,
#navigation .block-menu-block .block__title {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Turns off the element-invisible effect. */
/* line 49, ../sass/components/_misc.scss */
.element-focusable:active, .element-focusable:focus {
  position: static !important;
  clip: auto;
  height: auto;
  width: auto;
  overflow: auto;
}

/*
 * The skip-link link will be completely hidden until a user tabs to the link.
 */
/* line 66, ../sass/components/_misc.scss */
#skip-link {
  margin: 0;
}
/* line 70, ../sass/components/_misc.scss */
#skip-link a,
#skip-link a:visited {
  display: block;
  width: 100%;
  padding: 2px 0 3px 0;
  text-align: center;
  background-color: #666;
  color: #fff;
}

/**
 * Branding header.
 */
/* Wrapping link for logo. */
/* line 85, ../sass/components/_misc.scss */
.header__logo {
  float: left;
  /* LTR */
  margin: 0;
  padding: 0;
}

/* Logo image. */
/* line 92, ../sass/components/_misc.scss */
.header__logo-image {
  vertical-align: bottom;
}

/* Wrapper for website name and slogan. */
/* line 97, ../sass/components/_misc.scss */
.header__name-and-slogan {
  float: left;
}

/* The name of the website. */
/* line 102, ../sass/components/_misc.scss */
.header__site-name {
  margin: 0;
  font-size: 2em;
  line-height: 1.5em;
}

/* The link around the name of the website. */
/* line 110, ../sass/components/_misc.scss */
.header__site-link:link, .header__site-link:visited {
  color: #000;
  text-decoration: none;
}
/* line 116, ../sass/components/_misc.scss */
.header__site-link:hover, .header__site-link:focus {
  text-decoration: underline;
}

/* The slogan (or tagline) of a website. */
/* line 122, ../sass/components/_misc.scss */
.header__site-slogan {
  margin: 0;
}

/* The secondary menu (login, etc.) */
/* line 127, ../sass/components/_misc.scss */
.header__secondary-menu {
  float: right;
  /* LTR */
}

/* Wrapper for any blocks placed in the header region. */
/* line 132, ../sass/components/_misc.scss */
.header__region {
  /* Clear the logo. */
  clear: both;
}

/**
 * Navigation bar.
 */
/* line 140, ../sass/components/_misc.scss */
#navigation {
  /* Sometimes you want to prevent overlapping with main div. */
  /* overflow: hidden; */
  /* Main menu and secondary menu links and menu block links. */
}
/* line 144, ../sass/components/_misc.scss */
#navigation .block {
  margin-bottom: 0;
}
/* line 155, ../sass/components/_misc.scss */
#navigation .links,
#navigation .menu {
  margin: 0;
  padding: 0;
  text-align: left;
  /* LTR */
}
/* line 160, ../sass/components/_misc.scss */
#navigation .links li,
#navigation .menu li {
  /* A simple method to get navigation links to appear in one line. */
  float: left;
  /* LTR */
  padding: 0 10px 0 0;
  /* LTR */
  list-style-type: none;
  list-style-image: none;
}

/**
 * Breadcrumb navigation.
 */
/* line 174, ../sass/components/_misc.scss */
.breadcrumb ol {
  margin: 0;
  padding: 0;
}
/* line 178, ../sass/components/_misc.scss */
.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/**
 * Titles.
 */
/* line 194, ../sass/components/_misc.scss */
.page__title,
.node__title,
.block__title,
.comments__title,
.comments__form-title,
.comment__title {
  /* Comment title. */
  margin: 0;
}

/**
 * Messages.
 */
/* line 201, ../sass/components/_misc.scss */
.messages, .messages--status, .messages--warning, .messages--error {
  margin: 1.5em 0;
  padding: 10px 10px 10px 50px;
  /* LTR */
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAD6UlEQVR42s2WX0xbVRzH3YwmC4k+GF/0ZS/S267/bmnX9nL7bwstZlnbjTDYyoC5GCbB0ZW5pdJCe6swbLFA6bpWIGuRMWVjKGP+21QW3SZBSAjGh4XEaTZTH82Cm/3ztS2xs7mw4KLRk3xyzj33/H6fe5Pz7zEA/yr/vUDukj9FH6drqTaqT8EoPs/UV+nX6TD1BlUh9AqLHlmgPKLcRHmoCOWmElK/FOKTYpS8UwLJkASiUyLI3pKhlClN0g46qj+qL/pbArlbrlO1q25JeiSgR2iYJ8ywXLSg/qP6LNl2ro8+Q4MMkKCd9K2t3q3KdQnkXXIF5aISkgEJzONm1F2qW52pDJN1MI2bUBIuAdVOJWSMTPNQgX6/vkjVpvpREpag6oMqWCYta1IzbsHh9ga0RJtzY8URMdRO9U/KSuWmNQUqh2pY3CtG+fvlqJyofMAFNrZAE+7e/RWR4X4cD9tgOGsA2U2CdtMDqwqyMyIzQ5KKqAKmcyaYxkzYd3YvjGNGFtXRPRj58DT+LOemRrFnrBLyITmUDmUyO/NYgu2d26ukHVJo3tXAMGpAs+cQmh0NeClan30uwN7TgnQ6nRd4r3thOGOAJqYB2UVC79AfZAnKHGUxQa8A2tNaNLW/jKvXv8Dyb8s4yryKA4O10A3roIvpUB+swTdz1/LJZ27PQBvT5lBH1RD4BChzlQ2wBNtc22aE/ULQgzRCl4P5BPcT93GMOYz9wb2QhCRgAq35d8u/L2PXe7tADVGgBlcQ+AXQtmlvsP/gzbJZvp8PMkJCFBYh8m0knyiVSsHe0YIGZz1+/uVOvt8z7QGvnwf+ST5EIRHIUyR4fh50rbp5lsDcYR4ReAXgBrng9q/Qfa0bfy035r7Ot2dvz4IX4IEIEAXwvDzscOw4zxJUd1YfEXlE4Aa4BQHMlwzSSBeI7iXvoTxWDqKPYCFsFaKmr+YVliB0JfS89DVpiuhlB9k/tSOZTuYFvq98yI7L0/MAsVWcGp0bfW61hbahwltxSeARsIKyWKesSKQSWIwvYkvvllwfx88pgOvhwthu/AzAxlVX8vz385tLbaVxwpcLZtEw0QDjsBGctzksiE4CimZFfHp++oWHbnbuUfdB0komMgHsRN1r0MWBsEmYODF5onY92/UTwcvBxuzXcN1ccHycVSn2FaPYWwzCQUDWKIt7z3utAJ5c74Hz+OLSomynY+cVfiM/xW3JiDyZpB3FuZrj4oCwE+Ad4qWMjPHjpTtL0mzMoxyZz9yM39Q7Y85Ok930icqm+k59TL2wm9l90dZv8y/8sPAigGf/iUN/Q4anM2zOsdLe+L+4VfwBVVjDs2rTYx0AAAAASUVORK5CYII=');
  background-position: 8px 8px;
  /* LTR */
  background-repeat: no-repeat;
  border: 1px solid #be7;
}

/* line 216, ../sass/components/_misc.scss */
.messages--warning {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACuElEQVRIiWP4//8/Ay0xSYqntTpnT252zqeJBf0Njhsykrz/pyd6/e9vcNpGVQv6q2wlm0qc/r0+IPD/3UG+/61l9v9mdrjIUc2C7hqHUzc3S///eZwBjO9tF/vfWe1wjioWTKixVm8otPn38wQT3IKfxxn/t5Va/utpsNSg2ILWcttrNzdJgQ3+dpQRjEHs+9tE/zeXWt+gyILOamuTqlxrsOtPLub+7+emBsSq/88v5wL7oqHQ9H9nmbkF2RbUF1rev7lJEuziuU3i/90ddcB4UZsoJC62ifyvK7R4QJYFrcUGrmUZ5v9hYb9hosh/bzcDMN42VRgeF9W5hv8bi/XdSbagKtfs2c1NEvCIPbaQ/7+/pwkYn17Ki0hR24T/l2eZPCfJgsZ83dCiNOP/yCnn7iau/8G+5mD8aBsHSoqqyNL9X5erHUm0BcVpRm9ubhZHMoTh/4eDzP/DA23+RwTZ/P96hAlF7t5Wof8FyfpvibKgNk8noyDZ4D9quofg1Bjr/1kJlhjiIF+Upmn/r83RzCJoQXaC3qcbm8SwGMLwvybP/H8jMGlik7u7VeB/Zqz2J7wWVGdr1uTG62J1PQgfWST1/+hiCaxyIF8UJqv9r8hQrcVpQVqkzrcbG0WwGvB2H/P/lnx5MAaxsam5vYn3f2KY+jesFpSlqfZnxWjidP2OGWL/g/0swBjExu4Lhv958Ur/i5KU+lEsCA1lYI4JUv95bZ0gTo2Pt3P+z0myBmMQG5e6mxu4/kf4Kf8EmQm3oCRNebKrvSawIGPBqRG9sMOp5hjjfwdrlf/58bKT4RaUpWvtcLZV/39iscD/H0AFP46jYwYiMeP/44u4/9tbKQODSXUH3II9G7v18hI0n8YGKv+IDVT6joxj/BVx4mgcOCde/SnITPRUJAHEGlTCEkQV19TAAN8FC67hZdFXAAAAAElFTkSuQmCC');
  border-color: #ed5;
}

/* line 225, ../sass/components/_misc.scss */
.messages--error {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACpElEQVR42rWWTUgbQRiGQ0Tx4MWDeFM8eBA9iKAoggiCoCiiIiL4L3oQV1CJB0UEf6iRYFpK7UniTw9VSqL2kvQsVDBpSZrtRo35czVNW3oprRf17exSl4yzu1ikAy9h59vvedhkMrMGAGoxknAk2w8MJ/WosXThiZkZt9jdLeglPjn5ATc3mhJNuNjbK0QbG3ExMICL/n6IfX0gcxB7ekDAELu6IHZ2IlJbi1hLS1BLogmPtbUhMTv7oMSamzUlqnByMxLT0/8STQkDj9TV4ZLj5OysrODl8jIu5Gs68dFR7JG6dWkJ0fFx+TpSX89IDMnwcHU1yKec12Yz3rlc4HkeLwjkXJpPip3U3+7vIx6P4ymph4eG5PlwTQ0lMdytlmBxMWKtrXLeT0zA5XTibvj9fjxfXETkb/3N/Dz2dneVuiTZtliU/rPSUsQ5ziuxZYG03IIlJdKKUPJjdRUAKMmzuTnskB/VYbdTtd9HR4g2NCi9Z2VliDY1BSnBaUEBzsrLqXyzWCiQ9HU5HA4afniIUFWV0hOqqMBpURErOM7NxWlhIZOvCwvA7S3Uxq+DA5AnZ3pO8vJYQSArC8c5Oeqx2Rj4udeLQH6+6v2B7GxW8DkjA0JmJpONwUHY7XZGIAgCzCYTeJUewmIFfqMRfEoKlQ2yJbza2oLWcLvdeDI2hk/3+iQWKzAYkJzNjg5srq9TwJ9OJ76YTNScx+ORJT66X1/grKyEbW2NgfPp6XKd/JMZySrHaQsSU1Oe+0/w3WpVgyu5HBlR6lc+H8gioevDwz6JrWwV5+3txyoSFk5DcOX1MnCyJ4Vwfb1zt1UY9SR8aioDpuppaVpwZbPTl+hHF04dOKzk8XBF8DgJC3/woU/W/EciOtELOWi8DDwp//215Q+p7kiKh2lQSAAAAABJRU5ErkJggg==');
  border-color: #ed541d;
}

/* line 235, ../sass/components/_misc.scss */
.messages__list {
  margin: 0;
}

/* line 238, ../sass/components/_misc.scss */
.messages__item {
  list-style-image: none;
}

/* Core/module installation error messages. */
/* line 243, ../sass/components/_misc.scss */
.messages--error p.error {
  color: #333;
}

/* System status report. */
/* line 249, ../sass/components/_misc.scss */
.ok,
.messages--status {
  background-color: #f8fff0;
  color: #234600;
}

/* line 254, ../sass/components/_misc.scss */
.warning,
.messages--warning {
  background-color: #fffce5;
  color: #840;
}

/* line 259, ../sass/components/_misc.scss */
.error,
.messages--error {
  background-color: #fef5f1;
  color: #8c2e0b;
}

/**
 * Tabs.
 */
/* Basic positioning styles shared by primary and secondary tabs. */
/* line 269, ../sass/components/_misc.scss */
.tabs-primary, .tabs-secondary {
  overflow: hidden;
  background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(100%, #bbbbbb), color-stop(100%, transparent));
  background-image: -webkit-linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  background-image: -moz-linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  background-image: -o-linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  background-image: linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  /* IE 9 and earlier don't understand gradients. */
  list-style: none;
  border-bottom: 1px solid #bbbbbb \0/ie;
  margin: 1.5em 0;
  padding: 0 2px;
  white-space: nowrap;
}

/* line 279, ../sass/components/_misc.scss */
.tabs-primary__tab, .tabs-primary__tab.is-active, .tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  float: left;
  /* LTR */
  margin: 0 3px;
}

/* line 283, ../sass/components/_misc.scss */
a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active, a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  border: 1px solid #e9e9e9;
  border-right: 0;
  border-bottom: 0;
  display: block;
  line-height: 1.5em;
  text-decoration: none;
}

/* Primary tabs. */
/* line 296, ../sass/components/_misc.scss */
.tabs-primary__tab, .tabs-primary__tab.is-active {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  text-shadow: 1px 1px 0 white;
  border: 1px solid #bbbbbb;
  border-bottom-color: transparent;
  /* IE 9 and earlier don't understand gradients. */
  border-bottom: 0 \0/ie;
}

/* line 305, ../sass/components/_misc.scss */
.is-active.tabs-primary__tab {
  border-bottom-color: white;
}

/* line 311, ../sass/components/_misc.scss */
a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  color: #333;
  background-color: #dedede;
  letter-spacing: 1px;
  padding: 0 1em;
  text-align: center;
}

/* line 321, ../sass/components/_misc.scss */
a.tabs-primary__tab-link:hover, a.tabs-primary__tab-link:focus {
  background-color: #e9e9e9;
  border-color: #f2f2f2;
}

/* line 325, ../sass/components/_misc.scss */
a.tabs-primary__tab-link:active, a.tabs-primary__tab-link.is-active {
  background-color: transparent;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFE9E9E9', endColorstr='#00E9E9E9');
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e9e9e9), color-stop(100%, rgba(233, 233, 233, 0)));
  background-image: -webkit-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: -moz-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: -o-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  border-color: #fff;
}

/* Secondary tabs. */
/* line 349, ../sass/components/_misc.scss */
.tabs-secondary {
  font-size: .9em;
  /* Collapse bottom margin of ul.primary. */
  margin-top: -1.5em;
}

/* line 356, ../sass/components/_misc.scss */
.tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  margin: 0.75em 3px;
}

/* line 362, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  -webkit-border-radius: 0.75em;
  -moz-border-radius: 0.75em;
  -ms-border-radius: 0.75em;
  -o-border-radius: 0.75em;
  border-radius: 0.75em;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  text-shadow: 1px 1px 0 white;
  background-color: #f2f2f2;
  color: #666;
  padding: 0 .5em;
}

/* line 371, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link:hover, a.tabs-secondary__tab-link:focus {
  background-color: #dedede;
  border-color: #999;
  color: #333;
}

/* line 376, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link:active, a.tabs-secondary__tab-link.is-active {
  text-shadow: 1px 1px 0 #333333;
  background-color: #666;
  border-color: #000;
  color: #fff;
}

/**
 * Inline styles.
 */
/* List of links generated by theme_links(). */
/* line 404, ../sass/components/_misc.scss */
.inline {
  display: inline;
  padding: 0;
}
/* line 408, ../sass/components/_misc.scss */
.inline li {
  display: inline;
  list-style-type: none;
  padding: 0 1em 0 0;
  /* LTR */
}

/* The inline field label used by the Fences module. */
/* line 416, ../sass/components/_misc.scss */
span.field-label {
  padding: 0 1em 0 0;
  /* LTR */
}

/**
 * "More" links.
 */
/* line 423, ../sass/components/_misc.scss */
.more-link {
  text-align: right;
  /* LTR */
}

/* line 426, ../sass/components/_misc.scss */
.more-help-link {
  text-align: right;
  /* LTR */
}

/* line 429, ../sass/components/_misc.scss */
.more-help-link a {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA7UlEQVR42qWTPQqDQBCFcwSPkCNITpAj5AjeIm1uYpkyR7Cy2Mot7OwsBAsRwUKwmOwLGRle3EIy8PyBfZ/z3J2TiPylz8VWWZZpUB40BonRKyizaxkA88MYYiqCEgv4MTvnZJom0VqWRbz3FlJZgLYtqmEY1Lg9r+sKsIXcLSC3AC019H0vqLquLeC5AfiHYSGkcdAJimKIBQiJ4+CO92OAtm0FNc8zOjkMwE5Q63FAtbeg6zpAYvG8BWR7i5qmQYwY4MIHqYhE2DOPQWcGJBQF2XU72ZzyUeZ5GCNt5/hybJgYdAXsq5sOEE/jG6dC5IOqCXTmAAAAAElFTkSuQmCC');
  background-position: 0 50%;
  /* LTR */
  background-repeat: no-repeat;
  padding: 1px 0 1px 20px;
  /* LTR */
}

/**
 * Pager.
 */
/* A list of page numbers when more than 1 page of content is available. */
/* line 444, ../sass/components/_misc.scss */
.pager {
  clear: both;
  padding: 0;
  text-align: center;
}

/* line 449, ../sass/components/_misc.scss */
.pager-item,
.pager-first,
.pager-previous,
.pager-next,
.pager-last,
.pager-ellipsis, .pager-current {
  display: inline;
  padding: 0 0.5em;
  list-style-type: none;
  background-image: none;
}

/* line 461, ../sass/components/_misc.scss */
.pager-item,
.pager-first,
.pager-previous,
.pager-next,
.pager-last,
.pager-ellipsis {
  /* A concatenation of several list items using an ellipsis. */
}

/* The current page's list item. */
/* line 466, ../sass/components/_misc.scss */
.pager-current {
  font-weight: bold;
}

/**
 * Blocks.
 */
/* Block wrapper. */
/* line 476, ../sass/components/_misc.scss */
.block {
  margin-bottom: 1.5em;
}

/**
 * Menus.
 */
/* line 483, ../sass/components/_misc.scss */
.menu__item.is-leaf {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHBAMAAAA2fErgAAAAD1BMVEX///+/v7+Li4sAAADAwMBFvsw8AAAAAXRSTlMAQObYZgAAAB1JREFUCFtjYAADYwMGBmYVZSDhKAwkFJWhYiAAAB2+Aa/9ugeaAAAAAElFTkSuQmCC');
  list-style-type: square;
}

/* line 490, ../sass/components/_misc.scss */
.menu__item.is-expanded {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');
  list-style-type: circle;
}

/* line 497, ../sass/components/_misc.scss */
.menu__item.is-collapsed {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');
  /* LTR */
  list-style-type: disc;
}

/* The active item in a Drupal menu. */
/* line 506, ../sass/components/_misc.scss */
.menu a.active {
  color: #000;
}

/**
 * Marker.
 */
/* The "new" or "updated" marker. */
/* line 516, ../sass/components/_misc.scss */
.new,
.update {
  color: #c00;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
}

/**
 * Unpublished note.
 */
/* The word "Unpublished" displayed underneath the content. */
/* line 527, ../sass/components/_misc.scss */
.unpublished {
  height: 0;
  overflow: visible;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
  color: #d8d8d8;
  font-size: 75px;
  line-height: 1;
  font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  /* A very nice CSS3 property. */
  word-wrap: break-word;
}

/**
 * Comments.
 */
/* Wrapper for the list of comments and its title. */
/* line 555, ../sass/components/_misc.scss */
.comments {
  margin: 1.5em 0;
}

/* Preview of the comment before submitting new or updated comment. */
/* line 560, ../sass/components/_misc.scss */
.comment-preview {
  /* Drupal core will use a #ffffea background. See #1110842. */
  background-color: #ffffea;
}

/* Wrapper for a single comment. */
/* line 566, ../sass/components/_misc.scss */
.comment {
  /* Comment's permalink wrapper. */
}
/* line 569, ../sass/components/_misc.scss */
.comment .permalink {
  text-transform: uppercase;
  font-size: 75%;
}

/* Nested comments are indented. */
/* line 576, ../sass/components/_misc.scss */
.indented {
  /* Drupal core uses a 25px left margin. */
  margin-left: 30px;
  /* LTR */
}

/**
 * Forms.
 */
/* Wrapper for a form element (or group of form elements) and its label. */
/* line 586, ../sass/components/_misc.scss */
.form-item {
  margin: 1.5em 0;
  /* Pack groups of checkboxes and radio buttons closer together. */
  /* Form items in a table. */
  /* Highlight the form elements that caused a form submission error. */
  /* The descriptive help text (separate from the label). */
}
/* line 591, ../sass/components/_misc.scss */
.form-checkboxes .form-item, .form-radios .form-item {
  /* Drupal core uses "0.4em 0". */
  margin: 0;
}
/* line 598, ../sass/components/_misc.scss */
tr.odd .form-item, tr.even .form-item {
  margin: 0;
}
/* line 605, ../sass/components/_misc.scss */
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}
/* line 610, ../sass/components/_misc.scss */
.form-item .description {
  font-size: 0.85em;
}

/* line 617, ../sass/components/_misc.scss */
.form-type-radio .description,
.form-type-checkbox .description {
  margin-left: 2.4em;
}

/* The part of the label that indicates a required field. */
/* line 623, ../sass/components/_misc.scss */
.form-required {
  color: #c00;
}

/* Labels for radios and checkboxes. */
/* line 628, ../sass/components/_misc.scss */
label.option {
  display: inline;
  font-weight: normal;
}

/* Buttons used by contrib modules like Media. */
/* line 634, ../sass/components/_misc.scss */
a.button {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}

/* Password confirmation. */
/* line 640, ../sass/components/_misc.scss */
.password-parent,
.confirm-parent {
  margin: 0;
}

/* Drupal's default login form block. */
/* line 645, ../sass/components/_misc.scss */
#user-login-form {
  text-align: left;
  /* LTR */
}

/**
 * OpenID
 *
 * The default styling for the OpenID login link seems to assume Garland's
 * styling of list items.
 */
/* OpenID creates a new ul above the login form's links. */
/* line 657, ../sass/components/_misc.scss */
.openid-links {
  /* Position OpenID's ul next to the rest of the links. */
  margin-bottom: 0;
}

/* The "Log in using OpenID" and "Cancel OpenID login" links. */
/* line 664, ../sass/components/_misc.scss */
.openid-link,
.user-link {
  margin-top: 1.5em;
}

/* line 668, ../sass/components/_misc.scss */
html.js #user-login-form li.openid-link,
#user-login-form li.openid-link {
  /* Un-do some of the padding on the ul list. */
  margin-left: -20px;
  /* LTR */
}

/* line 672, ../sass/components/_misc.scss */
#user-login ul {
  margin: 1.5em 0;
}

/**
 * Drupal admin tables.
 */
/* line 680, ../sass/components/_misc.scss */
form th {
  text-align: left;
  /* LTR */
  padding-right: 1em;
  /* LTR */
  border-bottom: 3px solid #ccc;
}
/* line 685, ../sass/components/_misc.scss */
form tbody {
  border-top: 1px solid #ccc;
}
/* line 688, ../sass/components/_misc.scss */
form table ul {
  margin: 0;
}

/* line 693, ../sass/components/_misc.scss */
tr.even,
tr.odd {
  background-color: #eee;
  border-bottom: 1px solid #ccc;
  padding: 0.1em 0.6em;
}

/* line 698, ../sass/components/_misc.scss */
tr.even {
  background-color: #fff;
}

/* Markup generated by theme_tablesort_indicator(). */
/* line 713, ../sass/components/_misc.scss */
td.active {
  background-color: #ddd;
}

/* Center checkboxes inside table cell. */
/* line 719, ../sass/components/_misc.scss */
td.checkbox,
th.checkbox {
  text-align: center;
}

/* Drupal core wrongly puts this in system.menus.css. Since we override that, add it back. */
/* line 724, ../sass/components/_misc.scss */
td.menu-disabled {
  background: #ccc;
}

/**
 * Autocomplete.
 *
 * @see autocomplete.js
 */
/* Suggestion list. */
/* line 735, ../sass/components/_misc.scss */
#autocomplete .selected {
  background: #0072b9;
  color: #fff;
}

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
/* line 746, ../sass/components/_misc.scss */
html.js .collapsible .fieldset-legend {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');
  background-position: 5px 65%;
  /* LTR */
  background-repeat: no-repeat;
  padding-left: 15px;
  /* LTR */
}
/* line 755, ../sass/components/_misc.scss */
html.js .collapsed .fieldset-legend {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');
  /* LTR */
  background-position: 5px 50%;
  /* LTR */
}
/* line 762, ../sass/components/_misc.scss */
.fieldset-legend .summary {
  color: #999;
  font-size: 0.9em;
  margin-left: 0.5em;
}

/**
 * TableDrag behavior.
 *
 * @see tabledrag.js
 */
/* line 774, ../sass/components/_misc.scss */
tr.drag {
  background-color: #fffff0;
}

/* line 777, ../sass/components/_misc.scss */
tr.drag-previous {
  background-color: #ffd;
}

/* line 780, ../sass/components/_misc.scss */
.tabledrag-toggle-weight {
  font-size: 0.9em;
}

/**
 * TableSelect behavior.
 *
 * @see tableselect.js
 */
/* line 789, ../sass/components/_misc.scss */
tr.selected td {
  background: #ffc;
}

/**
 * Progress bar.
 *
 * @see progress.js
 */
/* line 798, ../sass/components/_misc.scss */
.progress {
  font-weight: bold;
}
/* line 801, ../sass/components/_misc.scss */
.progress .bar {
  background: #ccc;
  border-color: #666;
  margin: 0 0.2em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
/* line 807, ../sass/components/_misc.scss */
.progress .filled {
  background-color: #0072b9;
  background-image: url('../images/progress.gif?1442517250');
}

/* Print styles */
/**
 * @file
 * Print styling
 *
 * We provide some sane print styling for Drupal using Zen's layout method.
 */
/**
 * By importing this CSS file as media "all", we allow this print file to be
 * aggregated with other stylesheets, for improved front-end performance.
 */
@media print {
  /* Underline all links. */
  /* line 16, ../sass/_print.scss */
  a:link,
  a:visited {
    text-decoration: underline !important;
    /* Don't underline header. */
  }
  /* line 20, ../sass/_print.scss */
  a:link.header__site-link,
  a:visited.header__site-link {
    text-decoration: none !important;
  }

  /* line 25, ../sass/_print.scss */
  #content {
    /* Add visible URL after links. */
    /* Only display useful links. */
    /* Add visible title after abbreviations. */
  }
  /* line 27, ../sass/_print.scss */
  #content a[href]:after {
    content: " (" attr(href) ")";
    font-weight: normal;
    font-size: 16px;
  }
  /* line 35, ../sass/_print.scss */
  #content a[href^="javascript:"]:after,
  #content a[href^="#"]:after {
    content: "";
  }
  /* line 40, ../sass/_print.scss */
  #content abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* Un-float the content. */
  /* line 46, ../sass/_print.scss */
  #content {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Turn off any background colors or images. */
  /* line 57, ../sass/_print.scss */
  body,
  #page,
  #main,
  #content {
    color: #000;
    background-color: transparent !important;
    background-image: none !important;
  }

  /* Hide sidebars and nav elements. */
  /* line 77, ../sass/_print.scss */
  #skip-link,
  #toolbar,
  #navigation,
  .region-sidebar-first,
  .region-sidebar-second,
  #footer,
  .breadcrumb,
  .tabs,
  .action-links,
  .links,
  .book-navigation,
  .forum-topic-navigation,
  .pager,
  .feed-icons {
    visibility: hidden;
    display: none;
  }
}
/* Custom, site-specific styles */
/* Theme wide styles */
/* line 4, ../sass/base/_global.scss */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 8, ../sass/base/_global.scss */
html {
  height: 100%;
  color: #6a6a6a;
}

/* line 13, ../sass/base/_global.scss */
body {
  height: 100%;
  /*margin-top: 50px;*/
}

/* line 19, ../sass/base/_global.scss */
.node p {
  font-size: 1.38em;
  line-height: 1.6;
  margin: .75em 0;
}

/* line 25, ../sass/base/_global.scss */
.node a img {
  display: block;
}

/* line 29, ../sass/base/_global.scss */
.node img {
  padding: 1em;
  height: auto !important;
}

/* line 37, ../sass/base/_global.scss */
ul,
ol {
  list-style-image: url("../images/bullet.png");
}
/* line 39, ../sass/base/_global.scss */
.node ul, .node
ol {
  font-size: 1.38em;
  line-height: 1.6;
}
/* line 43, ../sass/base/_global.scss */
.node ul ul,
.node ul ol, .node
ol ul,
.node
ol ol {
  font-size: 1em;
  line-height: 1.3;
}

/* line 51, ../sass/base/_global.scss */
.node li {
  line-height: 1.3;
}

/* line 56, ../sass/base/_global.scss */
h1, h2, h3, .show-creative-team .field-name-field-name-title, h4, h5, h6 {
  text-transform: uppercase;
}

/* line 60, ../sass/base/_global.scss */
h1 {
  color: #262626;
  font-size: 3.20em;
  margin: 0;
  line-height: 1;
}
@media all and (min-width: 960px) {
  /* line 60, ../sass/base/_global.scss */
  h1 {
    font-size: 3.5em;
  }
}

/* line 69, ../sass/base/_global.scss */
h2 {
  margin: .5em 0;
  color: #4d4d4d;
  font-size: 2.25em;
  line-height: 1;
}

/* line 75, ../sass/base/_global.scss */
h3, .show-creative-team .field-name-field-name-title {
  margin: .25em 0;
  color: #0379a8;
  font-size: 1.88em;
  line-height: 1;
}

/* line 81, ../sass/base/_global.scss */
h4 {
  margin: 0;
  color: #4d4d4d;
  font-size: 1.5em;
  line-height: 1;
}

/* line 87, ../sass/base/_global.scss */
a {
  color: #f76d10;
  text-decoration: none;
}
/* line 97, ../sass/base/_global.scss */
.node a {
  line-height: 1.3;
}
/* line 99, ../sass/base/_global.scss */
.node a:hover {
  color: white;
  background: #f76d10;
}

/* line 106, ../sass/base/_global.scss */
main {
  background-color: white;
  height: 100%;
}
/* line 109, ../sass/base/_global.scss */
main .container {
  overflow: hidden;
  background-color: white;
  margin-left: auto;
  margin-right: auto;
  width: 960px;
  height: 100%;
}
/* line 116, ../sass/base/_global.scss */
main .container article {
  float: left;
  width: 50%;
  margin-left: 0%;
  margin-right: -50%;
  background-color: white;
  height: 100%;
  padding: 16px;
}
/* line 122, ../sass/base/_global.scss */
main .container aside {
  float: left;
  width: 25%;
  margin-left: 50%;
  margin-right: -75%;
  background-color: white;
  height: 100%;
  padding: 16px;
}

/* line 131, ../sass/base/_global.scss */
#main {
  background: white;
  padding: 3em 1em;
}
@media all and (min-width: 960px) {
  /* line 131, ../sass/base/_global.scss */
  #main {
    padding: 3em 0em;
  }
}

/* line 138, ../sass/base/_global.scss */
#content {
  padding: 0 2em 2em 2em;
}

/* line 142, ../sass/base/_global.scss */
.sidebar-first #content {
  padding: 0;
}

/* line 146, ../sass/base/_global.scss */
.text-uppercase {
  text-transform: uppercase;
}

/* line 149, ../sass/base/_global.scss */
#main-content {
  display: none;
}

/* line 159, ../sass/base/_global.scss */
.field-type-image a:link, .field-type-image a:visited, .field-type-image a:active, .field-type-image a:hover {
  background: none;
}

/* line 165, ../sass/base/_global.scss */
.not-front #header {
  background: #000;
  padding: 1em 0;
}
@media all and (min-width: 960px) {
  /* line 165, ../sass/base/_global.scss */
  .not-front #header {
    background: transparent;
  }
}

@media all and (min-width: 960px) {
  /* line 174, ../sass/base/_global.scss */
  body {
    /*margin-top: 0;*/
    background: url("/sites/all/themes/mrt/images/background-image.jpg") fixed;
    background-size: cover;
  }
}
/* line 49, ../sass/base/_mixins.scss */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
}
/* line 39, ../sass/base/_mixins.scss */
.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%;
}

/* line 59, ../sass/base/_mixins.scss */
.hidden {
  display: none !important;
  visibility: hidden;
}

/* line 68, ../sass/base/_mixins.scss */
.invisible {
  visibility: hidden;
}

/* Styles for the header area */
/* line 1, ../sass/base/_header.scss */
.header__logo {
  margin-top: 4em;
}

/*.header__logo-image {*/
/*width: 150px;*/
/*height: 51px;*/
/*}*/
/* line 10, ../sass/base/_header.scss */
.header__logo-image {
  width: 100%;
  height: auto;
}

@media all and (max-width: 960px) {
  /* line 17, ../sass/base/_header.scss */
  .front header {
    background: url("/sites/all/themes/mrt/images/background-image.jpg") fixed;
  }
}
/* line 23, ../sass/base/_header.scss */
.front header #block-views-homepage-featured-block-2 {
  width: 100%;
  margin-bottom: 0;
}
/* line 25, ../sass/base/_header.scss */
.front header #block-views-homepage-featured-block-2 img {
  width: 100%;
}
/* line 32, ../sass/base/_header.scss */
.front header #block-views-homepage-featured-block {
  color: #cccccc;
  width: 100%;
}
/* line 35, ../sass/base/_header.scss */
.front header #block-views-homepage-featured-block h2 {
  font-weight: 300;
  font-size: .75em;
  color: #f76d10;
  margin-bottom: 0;
}
/* line 40, ../sass/base/_header.scss */
.front header #block-views-homepage-featured-block h2 .date {
	  font-size: 3em;
	  color: #ffffff;

}
/* line 45, ../sass/base/_header.scss */
.front header #block-views-homepage-featured-block h3, .front header #block-views-homepage-featured-block .show-creative-team .field-name-field-name-title, .show-creative-team .front header #block-views-homepage-featured-block .field-name-field-name-title {
  color: #cccccc;
  font-size: 3em;
  margin-top: 0;
  margin-bottom: 0;
}
/* line 50, ../sass/base/_header.scss */
.front header #block-views-homepage-featured-block h3.two-lines, .front header #block-views-homepage-featured-block .show-creative-team .two-lines.field-name-field-name-title, .show-creative-team .front header #block-views-homepage-featured-block .two-lines.field-name-field-name-title {
  font-size: 2.5em;
}
/* line 53, ../sass/base/_header.scss */
.front header #block-views-homepage-featured-block h3 a, .front header #block-views-homepage-featured-block .show-creative-team .field-name-field-name-title a, .show-creative-team .front header #block-views-homepage-featured-block .field-name-field-name-title a {
  color: white;
  text-decoration: none;
}
/* line 57, ../sass/base/_header.scss */
.front header #block-views-homepage-featured-block h3 a:hover, .front header #block-views-homepage-featured-block .show-creative-team .field-name-field-name-title a:hover, .show-creative-team .front header #block-views-homepage-featured-block .field-name-field-name-title a:hover, .front header #block-views-homepage-featured-block h3 a:focus, .front header #block-views-homepage-featured-block .show-creative-team .field-name-field-name-title a:focus, .show-creative-team .front header #block-views-homepage-featured-block .field-name-field-name-title a:focus {
  color: white;
  text-decoration: underline;
}
/* line 62, ../sass/base/_header.scss */
.front header #block-views-homepage-featured-block h3 a:active, .front header #block-views-homepage-featured-block .show-creative-team .field-name-field-name-title a:active, .show-creative-team .front header #block-views-homepage-featured-block .field-name-field-name-title a:active, .front header #block-views-homepage-featured-block h3 a:visited, .front header #block-views-homepage-featured-block .show-creative-team .field-name-field-name-title a:visited, .show-creative-team .front header #block-views-homepage-featured-block .field-name-field-name-title a:visited {
  color: white;
  text-decoration: none;
}
/* line 72, ../sass/base/_header.scss */
.front header #block-views-homepage-featured-block,
.front header #block-views-homepage-featured-block-1,
.front header #block-views-homepage-featured-block-3,
.front header #block-views-homepage-featured-block-4 {
  color: #cccccc;
}
/* line 75, ../sass/base/_header.scss */
.front header #block-views-homepage-featured-block p,
.front header #block-views-homepage-featured-block-1 p,
.front header #block-views-homepage-featured-block-3 p,
.front header #block-views-homepage-featured-block-4 p {
  margin: 0;
}
/* line 78, ../sass/base/_header.scss */
.front header #block-views-homepage-featured-block .btn,
.front header #block-views-homepage-featured-block-1 .btn,
.front header #block-views-homepage-featured-block-3 .btn,
.front header #block-views-homepage-featured-block-4 .btn {
  padding: 4px 8px !important;
  margin: 8px 0 !important;
  font-size: 1.1em !important;
  text-align: center !important;
  text-decoration: none !important;
  background-color: #0379a8 !important;
  color: white !important;
  text-transform: uppercase !important;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  text-align: center;
  display: block;
}
/* line 89, ../sass/base/_header.scss */
.front header #block-views-homepage-featured-block-1 h2 {
  color: #cccccc;
  font-weight: 300;
  font-size: .75em;
  margin-top: 0;
  margin-bottom: 8px;
}
/* line 46, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
.front header #block-views-homepage-featured-block-1 .views-row:before, .front header #block-views-homepage-featured-block-1 .views-row:after,
.front header #block-views-homepage-featured-block-3 .views-row:before,
.front header #block-views-homepage-featured-block-3 .views-row:after {
  content: "";
  display: table;
}
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
.front header #block-views-homepage-featured-block-1 .views-row:after,
.front header #block-views-homepage-featured-block-3 .views-row:after {
  clear: both;
}
/* line 105, ../sass/base/_header.scss */
.front header .featured-image-small {
  float: left;
  width: 18.75%;
  margin-left: 0%;
  margin-right: -18.75%;
}
/* line 109, ../sass/base/_header.scss */
.front header .featured-text {
  float: left;
  width: 81.25%;
  margin-left: 18.75%;
  margin-right: -100%;
}

@media all and (min-width: 960px) {
  /* line 116, ../sass/base/_header.scss */
  #header {
    margin-bottom: 3em;
  }

  /* line 120, ../sass/base/_header.scss */
  .header__logo {
    margin-top: 50px;
  }

  /* line 125, ../sass/base/_header.scss */
  .front #header {
    margin-bottom: 50px;
    padding: 0;
  }
  /* line 129, ../sass/base/_header.scss */
  .front #header a {
    padding: 0;
  }
  /* line 134, ../sass/base/_header.scss */
  .front header {
    color: white;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    width: 960px;
    height: 590px;
  }
  /* line 144, ../sass/base/_header.scss */
  .front header #block-views-homepage-featured-block-2 {
    min-height: 550px;
    position: relative;
  }
  /* line 147, ../sass/base/_header.scss */
  .front header #block-views-homepage-featured-block-2 img {
    width: 100%;
    height: auto;
    padding: 0px;
    padding-bottom: 33px;
    position: absolute;
    bottom: 0;
  }
  /* line 158, ../sass/base/_header.scss */
  .front header #block-views-homepage-featured-block {
    margin-top: 75px;
  }
  /* line 162, ../sass/base/_header.scss */
  .front header #block-views-homepage-featured-block-4 {
    text-align: right;
    margin-top: 123px;
  }
  /* line 165, ../sass/base/_header.scss */
  .front header #block-views-homepage-featured-block-4 p {
    margin: 8px;
    text-align: right;
    right: 0px;
    font-size: .9em;
    color: #6a6a6a;
  }
  /* line 172, ../sass/base/_header.scss */
  .front header #block-views-homepage-featured-block-4 .btn {
    padding: 4px 8px !important;
    margin: 8px 0 !important;
    font-size: 1.1em !important;
    text-align: center !important;
    text-decoration: none !important;
    background-color: #0379a8 !important;
    color: white !important;
    text-transform: uppercase !important;
    width: 100%;
    right: 0;
    text-align: center;
    display: block;
  }
  /* line 184, ../sass/base/_header.scss */
  .front header #block-views-homepage-featured-block-1 .featured-text,
  .front header #block-views-homepage-featured-block-3 .featured-text {
    max-width: 170px;
  }
  /* line 187, ../sass/base/_header.scss */
  .front header #block-views-homepage-featured-block-1 .views-row,
  .front header #block-views-homepage-featured-block-3 .views-row {
    font-size: .9em;
  }
  /* line 189, ../sass/base/_header.scss */
  .front header #block-views-homepage-featured-block-1 .views-row h3, .front header #block-views-homepage-featured-block-1 .views-row .show-creative-team .field-name-field-name-title, .show-creative-team .front header #block-views-homepage-featured-block-1 .views-row .field-name-field-name-title,
  .front header #block-views-homepage-featured-block-3 .views-row h3,
  .front header #block-views-homepage-featured-block-3 .views-row .show-creative-team .field-name-field-name-title,
  .show-creative-team .front header #block-views-homepage-featured-block-3 .views-row .field-name-field-name-title {
    font-weight: 100;
    color: #cccccc;
    font-size: 1.7em;
  }
  /* line 193, ../sass/base/_header.scss */
  .front header #block-views-homepage-featured-block-1 .views-row h3 a, .front header #block-views-homepage-featured-block-1 .views-row .show-creative-team .field-name-field-name-title a, .show-creative-team .front header #block-views-homepage-featured-block-1 .views-row .field-name-field-name-title a,
  .front header #block-views-homepage-featured-block-3 .views-row h3 a,
  .front header #block-views-homepage-featured-block-3 .views-row .show-creative-team .field-name-field-name-title a,
  .show-creative-team .front header #block-views-homepage-featured-block-3 .views-row .field-name-field-name-title a {
    color: #cccccc;
    text-decoration: none;
  }
  /* line 197, ../sass/base/_header.scss */
  .front header #block-views-homepage-featured-block-1 .views-row h3 a:hover, .front header #block-views-homepage-featured-block-1 .views-row .show-creative-team .field-name-field-name-title a:hover, .show-creative-team .front header #block-views-homepage-featured-block-1 .views-row .field-name-field-name-title a:hover, .front header #block-views-homepage-featured-block-1 .views-row h3 a:focus, .front header #block-views-homepage-featured-block-1 .views-row .show-creative-team .field-name-field-name-title a:focus, .show-creative-team .front header #block-views-homepage-featured-block-1 .views-row .field-name-field-name-title a:focus,
  .front header #block-views-homepage-featured-block-3 .views-row h3 a:hover,
  .front header #block-views-homepage-featured-block-3 .views-row .show-creative-team .field-name-field-name-title a:hover,
  .show-creative-team .front header #block-views-homepage-featured-block-3 .views-row .field-name-field-name-title a:hover,
  .front header #block-views-homepage-featured-block-3 .views-row h3 a:focus,
  .front header #block-views-homepage-featured-block-3 .views-row .show-creative-team .field-name-field-name-title a:focus,
  .show-creative-team .front header #block-views-homepage-featured-block-3 .views-row .field-name-field-name-title a:focus {
    color: #cccccc;
    text-decoration: underline;
  }
  /* line 202, ../sass/base/_header.scss */
  .front header #block-views-homepage-featured-block-1 .views-row h3 a:active, .front header #block-views-homepage-featured-block-1 .views-row .show-creative-team .field-name-field-name-title a:active, .show-creative-team .front header #block-views-homepage-featured-block-1 .views-row .field-name-field-name-title a:active, .front header #block-views-homepage-featured-block-1 .views-row h3 a:visited, .front header #block-views-homepage-featured-block-1 .views-row .show-creative-team .field-name-field-name-title a:visited, .show-creative-team .front header #block-views-homepage-featured-block-1 .views-row .field-name-field-name-title a:visited,
  .front header #block-views-homepage-featured-block-3 .views-row h3 a:active,
  .front header #block-views-homepage-featured-block-3 .views-row .show-creative-team .field-name-field-name-title a:active,
  .show-creative-team .front header #block-views-homepage-featured-block-3 .views-row .field-name-field-name-title a:active,
  .front header #block-views-homepage-featured-block-3 .views-row h3 a:visited,
  .front header #block-views-homepage-featured-block-3 .views-row .show-creative-team .field-name-field-name-title a:visited,
  .show-creative-team .front header #block-views-homepage-featured-block-3 .views-row .field-name-field-name-title a:visited {
    color: #cccccc;
    text-decoration: none;
  }
  /* line 212, ../sass/base/_header.scss */
  .front header .featured-image-small img {
    padding: 0px;
  }
  /* line 217, ../sass/base/_header.scss */
  .front header .featured-text {
    margin-left: 60px;
  }
  /* line 219, ../sass/base/_header.scss */
  .front header .featured-text h3, .front header .featured-text .show-creative-team .field-name-field-name-title, .show-creative-team .front header .featured-text .field-name-field-name-title {
    margin-top: 0;
  }
  /* line 226, ../sass/base/_header.scss */
  .front header .subtitle,
  .front header .featured-playwright,
  .front header .featured-director {
    margin: 0;
    color: #8d8d8d;
    font-size: 1.25em;
  }
  /* line 232, ../sass/base/_header.scss */
  .front header .featured-date {
				margin: 0;
				color: white-dark;
				text-transform: uppercase;
				font-weight: bold;
  }
  /* line 242, ../sass/base/_header.scss */
  .front header #block-views-homepage-featured-block-2 {
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -50%;
    clear: left;
  }
  /* line 248, ../sass/base/_header.scss */
  .front header #block-views-homepage-featured-block {
    float: right;
    width: 31.25%;
    margin-right: 18.75%;
    margin-left: -50%;
    margin-top: 75px;
  }
  /* line 254, ../sass/base/_header.scss */
  .front header #block-views-homepage-featured-block-4 {
    float: right;
    width: 18.75%;
    margin-right: 0%;
    margin-left: -18.75%;
  }
  /* line 259, ../sass/base/_header.scss */
  .front header #block-views-homepage-featured-block-1 {
    clear: right;
    float: right;
    width: 25%;
    margin-right: 25%;
    margin-left: -50%;
  }
  /* line 265, ../sass/base/_header.scss */
  .front header #block-views-homepage-featured-block-3 {
    float: right;
    width: 25%;
    margin-right: 0%;
    margin-left: -25%;
  }
  /* line 270, ../sass/base/_header.scss */
  .front header .featured-secondary h3, .front header .featured-secondary .show-creative-team .field-name-field-name-title, .show-creative-team .front header .featured-secondary .field-name-field-name-title,
  .front header .featured-tertiary h3,
  .front header .featured-tertiary .show-creative-team .field-name-field-name-title,
  .show-creative-team .front header .featured-tertiary .field-name-field-name-title {
    font-weight: bold !important;
  }

  max-width: 100%;
}
/* Styles for the footer area */
/**
 * _footer.scss
 *
 * Global footer styles.
 */
/* line 19, ../sass/base/_footer.scss */
#footer {
  background-color: #cccccc;
  padding-top: 32px;
  padding-left: 32px;
  padding-right: 32px;
}
/* line 21, ../sass/base/_footer.scss */
#footer p {
  margin: 0;
}
/* line 25, ../sass/base/_footer.scss */
#footer .node a img {
  float: none;
}
/* line 20, ../sass/base/_mixins.scss */
#footer .footer-top-right:before, #footer .footer-top-right:after {
  content: " ";
  display: table;
}
/* line 25, ../sass/base/_mixins.scss */
#footer .footer-top-right:after {
  clear: both;
}
/* line 36, ../sass/base/_footer.scss */
#footer .footer-top-right h2 {
  margin-bottom: 16px;
}
/* line 41, ../sass/base/_footer.scss */
#footer .footer-top-mid a {
  color: #6a6a6a;
}
/* line 46, ../sass/base/_footer.scss */
#footer .footer-mid-left {
  border-top: solid 1px #bebebe;
  padding-top: 24px;
}
/* line 49, ../sass/base/_footer.scss */
#footer .footer-mid-left p {
  margin-top: 16px;
}
/* line 52, ../sass/base/_footer.scss */
#footer .footer-mid-left a {
  background-color: #4d4d4d;
  color: white;
  padding: 4px 16px;
}
/* line 57, ../sass/base/_footer.scss */
#footer .footer-mid-left a:hover, #footer .footer-mid-left a:focus {
  background-color: #343434;
}
/* line 46, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#footer .footer-mid-right:before, #footer .footer-mid-right:after {
  content: "";
  display: table;
}
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#footer .footer-mid-right:after {
  clear: both;
}
/* line 64, ../sass/base/_footer.scss */
#footer .footer-mid-right .footer-first {
  float: left;
  width: 31.25%;
  margin-left: 0%;
  margin-right: -31.25%;
}
/* line 67, ../sass/base/_footer.scss */
#footer .footer-mid-right .footer-second {
  float: left;
  width: 31.25%;
  margin-left: 31.25%;
  margin-right: -62.5%;
}
/* line 70, ../sass/base/_footer.scss */
#footer .footer-mid-right .footer-third {
  float: left;
  width: 31.25%;
  margin-left: 62.5%;
  margin-right: -93.75%;
}
@media all and (max-width: 960px) {
  /* line 73, ../sass/base/_footer.scss */
  #footer .footer-mid-right .footer-image {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    clear: left;
    margin-top: 2em;
  }
}
@media all and (min-width: 960px) {
  /* line 19, ../sass/base/_footer.scss */
  #footer {
    padding-top: 32px;
    padding-left: 32px;
    padding-right: 32px;
    /**
     * [top left] [top mid] [top right]
     * [mid left] [     mid right     ]
     * [            bottom            ]
     */
  }
  /* line 92, ../sass/base/_footer.scss */
  #footer h1,
  #footer h2,
  #footer h3,
  #footer .show-creative-team .field-name-field-name-title,
  .show-creative-team #footer .field-name-field-name-title,
  #footer h4 {
    text-transform: none;
    margin-bottom: .5em;
  }
  /* line 97, ../sass/base/_footer.scss */
  #footer p {
    margin: 0;
  }
  /* line 107, ../sass/base/_footer.scss */
  #footer .footer-top-left {
    float: left;
    width: 37.5%;
    margin-left: 0%;
    margin-right: -37.5%;
  }
  /* line 111, ../sass/base/_footer.scss */
  #footer .footer-top-mid {
    float: left;
    width: 43.75%;
    margin-left: 37.5%;
    margin-right: -81.25%;
  }
  /* line 113, ../sass/base/_footer.scss */
  #footer .footer-top-mid a {
    color: #6a6a6a;
  }
  /* line 118, ../sass/base/_footer.scss */
  #footer .footer-top-right {
    float: left;
    width: 18.75%;
    margin-left: 81.25%;
    margin-right: -100%;
  }
  /* line 121, ../sass/base/_footer.scss */
  #footer .footer-top-right .link-facebook {
    font-size: 0;
  }
  /* line 8, ../sass/base/_footer.scss */
  #footer .footer-top-right .link-facebook:before {
    background-color: #4d4d4d;
    border-radius: 50%;
    font-size: 14px;
    content: "\e600";
    font-family: 'icomoon';
    color: #cccccc;
    padding: 8px;
  }
  /* line 125, ../sass/base/_footer.scss */
  #footer .footer-top-right .link-twitter {
    font-size: 0;
  }
  /* line 8, ../sass/base/_footer.scss */
  #footer .footer-top-right .link-twitter:before {
    background-color: #4d4d4d;
    border-radius: 50%;
    font-size: 14px;
    content: "\e601";
    font-family: 'icomoon';
    color: #cccccc;
    padding: 8px;
  }
  /* line 129, ../sass/base/_footer.scss */
  #footer .footer-top-right .link-flickr {
    font-size: 0;
  }
  /* line 8, ../sass/base/_footer.scss */
  #footer .footer-top-right .link-flickr:before {
    background-color: #4d4d4d;
    border-radius: 50%;
    font-size: 14px;
    content: "\e602";
    font-family: 'icomoon';
    color: #cccccc;
    padding: 8px;
  }
  /* line 133, ../sass/base/_footer.scss */
  #footer .footer-top-right .link-youtube {
    font-size: 0;
  }
  /* line 8, ../sass/base/_footer.scss */
  #footer .footer-top-right .link-youtube:before {
    background-color: #4d4d4d;
    border-radius: 50%;
    font-size: 14px;
    content: "\f167";
    font-family: 'icomoon';
    color: #cccccc;
    padding: 8px;
  }
  /* line 138, ../sass/base/_footer.scss */
  #footer .footer-mid-left {
    float: left;
    width: 37.5%;
    margin-left: 0%;
    margin-right: -37.5%;
    clear: left;
    border-top: solid 1px #bebebe;
    padding-top: 24px;
  }
  /* line 143, ../sass/base/_footer.scss */
  #footer .footer-mid-left p {
    margin-top: 16px;
  }
  /* line 146, ../sass/base/_footer.scss */
  #footer .footer-mid-left a {
    background-color: #4d4d4d;
    color: white;
    padding: 4px 16px;
    margin-right: 50px;
  }
  /* line 152, ../sass/base/_footer.scss */
  #footer .footer-mid-left a:hover, #footer .footer-mid-left a:focus {
    background-color: #343434;
  }
  /* line 158, ../sass/base/_footer.scss */
  #footer .footer-mid-right {
    float: left;
    width: 62.5%;
    margin-left: 37.5%;
    margin-right: -100%;
    padding-top: 24px;
    border-top: solid 1px #bebebe;
  }
  /* line 164, ../sass/base/_footer.scss */
  #footer .footer-bottom {
    clear: both;
    border-top: solid 1px #bebebe;
    padding-top: 24px;
  }
  /* line 169, ../sass/base/_footer.scss */
  #footer .footer-bottom a {
    color: #343434;
    font-weight: bold;
  }
}

/* line 182, ../sass/base/_footer.scss */
.block-masquerade,
#block-block-5 {
  clear: both;
}

/* Main Navigation styles */
/* line 2, ../sass/base/_main-nav.scss */
header nav {
  position: fixed;
  background-color: navy;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  width: 960px;
}
/* line 5, ../sass/base/_main-nav.scss */
header nav .pull-right {
  right: 0;
}
/* line 8, ../sass/base/_main-nav.scss */
header nav .pull-right ul li {
  display: inline;
}

/* Styles for the sidebars. */
/* line 2, ../sass/base/_sidebar-first.scss */
.region-sidebar-first #block-block-7 {
  padding-left: 27px;
  margin-top: 48px;
}
/* line 5, ../sass/base/_sidebar-first.scss */
.region-sidebar-first #block-block-7 p {
  margin: 0;
}

/* line 1, ../sass/base/_buttons.scss */
.form-submit {
  padding: 4px 8px !important;
  margin: 8px 0 !important;
  font-size: 1.1em !important;
  text-align: center !important;
  text-decoration: none !important;
  background-color: #0379a8 !important;
  color: white !important;
  text-transform: uppercase !important;
  border: none;
  padding: 8px 32px;
}

/* line 7, ../sass/base/_buttons.scss */
.button {
  padding: 4px 8px !important;
  margin: 8px 0 !important;
  font-size: 1.1em !important;
  text-align: center !important;
  text-decoration: none !important;
  background-color: #0379a8 !important;
  color: white !important;
  text-transform: uppercase !important;
  border: none !important;
  padding: 8px 32px !important;
  -webkit-appearance: inherit !important;
  -moz-appearance: inherit !important;
  appearance: inherit !important;
}

/* line 17, ../sass/base/_buttons.scss */
.node-type-webform .form-submit {
  margin-bottom: 2em !important;
}

/* line 1, ../sass/base/_navigation.scss */
#page {
  position: relative;
}

/* line 20, ../sass/base/_mixins.scss */
.region-navigation:before, .region-navigation:after {
  content: " ";
  display: table;
}
/* line 25, ../sass/base/_mixins.scss */
.region-navigation:after {
  clear: both;
}

/* line 7, ../sass/base/_navigation.scss */
#navigation {
  text-transform: uppercase;
  font-size: 1.12em;
  color: white;
  -webkit-box-shadow: 50px 6px 15px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 50px 6px 15px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 50px 6px 15px 0px rgba(0, 0, 0, 0.5);
}
@media all and (min-width: 960px) {
  /* line 7, ../sass/base/_navigation.scss */
  #navigation {
    position: absolute;
    max-width: 650px;
    top: 0;
    right: 0;
  }
}
@media all and (max-width: 960px) {
  /* line 14, ../sass/base/_navigation.scss */
  #navigation #block-nice-menus-1 {
    display: none;
  }
}
/* line 29, ../sass/base/_navigation.scss */
#navigation a:link, #navigation a:visited, #navigation a:hover, #navigation a:active {
  color: white;
}
/* line 35, ../sass/base/_navigation.scss */
#navigation ul .last ul {
  left: -104px;
}
/* line 38, ../sass/base/_navigation.scss */
#navigation ul .last ul li ul {
  left: -179px !important;
}
/* line 44, ../sass/base/_navigation.scss */
#navigation ul.nice-menu-down {
  background: #044366;
  float: right;
}
/* line 49, ../sass/base/_navigation.scss */
#navigation ul.nice-menu li {
  margin-right: 1em;
}
/* line 52, ../sass/base/_navigation.scss */
#navigation ul.nice-menu ul {
  background: #316989;
  text-transform: capitalize;
  top: inherit;
}
/* line 56, ../sass/base/_navigation.scss */
#navigation ul.nice-menu ul li {
  width: 10em;
  top: 0;
  margin: 0;
}
/* line 60, ../sass/base/_navigation.scss */
#navigation ul.nice-menu ul li:hover {
  background: #044366;
}
/* line 63, ../sass/base/_navigation.scss */
#navigation ul.nice-menu ul li.menuparent {
  position: relative;
}
/* line 66, ../sass/base/_navigation.scss */
#navigation ul.nice-menu ul li.menuparent > a:after {
  content: ">";
  position: absolute;
  right: .5em;
}
/* line 73, ../sass/base/_navigation.scss */
#navigation ul.nice-menu ul li ul {
  background: #044366;
  left: 10em;
}
/* line 77, ../sass/base/_navigation.scss */
#navigation ul.nice-menu ul li ul li:hover {
  background: #4796c2;
}

/* line 88, ../sass/base/_navigation.scss */
#navigation .mobile-menu {
  display: none;
  z-index: 200;
  transition: height .8s ease;
  overflow: hidden;
}
@media all and (max-width: 960px) {
  /* line 88, ../sass/base/_navigation.scss */
  #navigation .mobile-menu {
    background: #044366;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    height: 3em;
    width: 100%;
    text-transform: none;
    letter-spacing: .04em;
  }
  /* line 105, ../sass/base/_navigation.scss */
  #navigation .mobile-menu ul li {
    margin-left: 1.2em;
    float: none;
    margin-bottom: .8em;
  }
  /* line 109, ../sass/base/_navigation.scss */
  #navigation .mobile-menu ul li.first {
    margin-top: .8em;
  }
  /* line 114, ../sass/base/_navigation.scss */
  #navigation .mobile-menu ul li ul li ul li {
    font-size: .8em;
    margin-bottom: 0;
  }
  /* line 118, ../sass/base/_navigation.scss */
  #navigation .mobile-menu a.active {
    color: #f76d10 !important;
  }
  /* line 121, ../sass/base/_navigation.scss */
  #navigation .mobile-menu > .parent-mlid-0 {
    margin-top: 3.5em;
  }
  /* line 124, ../sass/base/_navigation.scss */
  #navigation .mobile-menu > .parent-mlid-0 > ul.menu > li {
    text-transform: uppercase;
  }
  /* line 127, ../sass/base/_navigation.scss */
  #navigation .mobile-menu > .parent-mlid-0 > ul.menu > li.active-trail > a.active-trail {
    color: #f76d10;
  }
  /* line 133, ../sass/base/_navigation.scss */
  #navigation .mobile-menu > .parent-mlid-0 > ul.menu > li.active-trail > ul > li.active-trail > a:after {
    content: "\03bd";
    margin-left: 1em;
  }
  /* line 141, ../sass/base/_navigation.scss */
  #navigation .mobile-menu > .parent-mlid-0 > ul.menu > li > ul {
    text-transform: none;
  }
  /* line 143, ../sass/base/_navigation.scss */
  #navigation .mobile-menu > .parent-mlid-0 > ul.menu > li > ul a {
    color: #a8c0d9;
  }
}
/* line 152, ../sass/base/_navigation.scss */
#navigation .mobile-menu.active {
  height: 100%;
  overflow-y: auto;
}

/**
 * _front.scss
 *
 * Styles for the home page.
 */
/* line 9, ../sass/base/_front.scss */
.front #main h2 {
  color: #0379a8;
}

@media all and (min-width: 960px) {
  /* line 17, ../sass/base/_front.scss */
  .front #block-block-11 {
    padding: 8px;
  }
  /* line 20, ../sass/base/_front.scss */
  .front #block-block-11 p {
    font-size: 1.75em;
    line-height: 1.5em;
    margin: 0;
  }
  /* line 28, ../sass/base/_front.scss */
  .front #block-block-1 {
    float: right;
    width: 37.5%;
    margin-right: 0%;
    margin-left: -37.5%;
    padding: 8px;
    margin-top: -60px;
  }
  /* line 35, ../sass/base/_front.scss */
  .front .region-content-bottom .homepage-bottom-left-block {
    padding: 8px;
  }
  /* line 37, ../sass/base/_front.scss */
  .front .region-content-bottom .homepage-bottom-left-block img {
    margin-right: 8px;
    float: left;
  }
  /* line 43, ../sass/base/_front.scss */
  .front .region-content-bottom .homepage-bottom-right-block {
    padding: 8px;
  }
  /* line 48, ../sass/base/_front.scss */
  .front #block-block-11 {
    float: left;
    width: 62.5%;
    margin-left: 0%;
    margin-right: -62.5%;
  }
  /* line 51, ../sass/base/_front.scss */
  .front #block-block-9 {
    float: left;
    width: 31.25%;
    margin-left: 0%;
    margin-right: -31.25%;
  }
  /* line 54, ../sass/base/_front.scss */
  .front #block-block-10 {
    float: left;
    width: 31.25%;
    margin-left: 31.25%;
    margin-right: -62.5%;
  }
  /* line 57, ../sass/base/_front.scss */
  .front #block-block-9 {
    clear: left;
    padding-right: 20px;
  }
}
/* line 6, ../sass/base/_news.scss */
.page-news .views-row,
.section-news .views-row,
.section-events .views-row,
.page-event .views-row,
.page-events .views-row {
  margin-bottom: 32px;
}
/* line 9, ../sass/base/_news.scss */
.page-news .views-row h3, .page-news .views-row .show-creative-team .field-name-field-name-title, .show-creative-team .page-news .views-row .field-name-field-name-title,
.section-news .views-row h3,
.section-news .views-row .show-creative-team .field-name-field-name-title,
.show-creative-team .section-news .views-row .field-name-field-name-title,
.section-events .views-row h3,
.section-events .views-row .show-creative-team .field-name-field-name-title,
.show-creative-team .section-events .views-row .field-name-field-name-title,
.page-event .views-row h3,
.page-event .views-row .show-creative-team .field-name-field-name-title,
.show-creative-team .page-event .views-row .field-name-field-name-title,
.page-events .views-row h3,
.page-events .views-row .show-creative-team .field-name-field-name-title,
.show-creative-team .page-events .views-row .field-name-field-name-title {
  padding-left: 0;
  padding-right: 0;
}
/* line 12, ../sass/base/_news.scss */
.page-news .views-row h3 a, .page-news .views-row .show-creative-team .field-name-field-name-title a, .show-creative-team .page-news .views-row .field-name-field-name-title a,
.section-news .views-row h3 a,
.section-news .views-row .show-creative-team .field-name-field-name-title a,
.show-creative-team .section-news .views-row .field-name-field-name-title a,
.section-events .views-row h3 a,
.section-events .views-row .show-creative-team .field-name-field-name-title a,
.show-creative-team .section-events .views-row .field-name-field-name-title a,
.page-event .views-row h3 a,
.page-event .views-row .show-creative-team .field-name-field-name-title a,
.show-creative-team .page-event .views-row .field-name-field-name-title a,
.page-events .views-row h3 a,
.page-events .views-row .show-creative-team .field-name-field-name-title a,
.show-creative-team .page-events .views-row .field-name-field-name-title a {
  padding-left: 0;
  padding-right: 0;
}
/* line 19, ../sass/base/_news.scss */
.page-news .views-row .news-date,
.page-news .views-row .events-date,
.section-news .views-row .news-date,
.section-news .views-row .events-date,
.section-events .views-row .news-date,
.section-events .views-row .events-date,
.page-event .views-row .news-date,
.page-event .views-row .events-date,
.page-events .views-row .news-date,
.page-events .views-row .events-date {
  margin-top: 8px;
  margin-bottom: 8px;
}
/* line 26, ../sass/base/_news.scss */
.page-news .block-facebook-pull .block-title,
.section-news .block-facebook-pull .block-title,
.section-events .block-facebook-pull .block-title,
.page-event .block-facebook-pull .block-title,
.page-events .block-facebook-pull .block-title {
  font-size: 0;
}
/* line 28, ../sass/base/_news.scss */
.page-news .block-facebook-pull .block-title:before,
.section-news .block-facebook-pull .block-title:before,
.section-events .block-facebook-pull .block-title:before,
.page-event .block-facebook-pull .block-title:before,
.page-events .block-facebook-pull .block-title:before {
  content: "MRT on Facebook";
  font-size: 22px;
}
/* line 33, ../sass/base/_news.scss */
.page-news .block-facebook-pull ul.facebook-feed,
.section-news .block-facebook-pull ul.facebook-feed,
.section-events .block-facebook-pull ul.facebook-feed,
.page-event .block-facebook-pull ul.facebook-feed,
.page-events .block-facebook-pull ul.facebook-feed {
  margin-top: .5em;
  margin-right: .7em;
}
/* line 37, ../sass/base/_news.scss */
.page-news .block-facebook-pull li,
.section-news .block-facebook-pull li,
.section-events .block-facebook-pull li,
.page-event .block-facebook-pull li,
.page-events .block-facebook-pull li {
  list-style: none;
}
/* line 40, ../sass/base/_news.scss */
.page-news .block-facebook-pull .facebook-feed-picture,
.section-news .block-facebook-pull .facebook-feed-picture,
.section-events .block-facebook-pull .facebook-feed-picture,
.page-event .block-facebook-pull .facebook-feed-picture,
.page-events .block-facebook-pull .facebook-feed-picture {
  float: right;
  padding-left: 8px;
}

/* Be sure to comment each in regular CSS comment style */
/* Non-Module Styles */
/* Theme wide styles */
/* line 1, ../sass/components/_donate-button.scss */
#donate {
  position: absolute;
  background: #f76d10;
  top: 42px;
  right: 15px;
  padding: .3em 1em;
  border-radius: 0 0 5px 5px;
  color: white;
  text-transform: uppercase;
}
@media all and (max-width: 960px) {
  /* line 1, ../sass/components/_donate-button.scss */
  #donate {
    position: fixed;
    top: 3em;
    z-index: 100;
  }
}
/* line 15, ../sass/components/_donate-button.scss */
#donate a {
  color: white;
}

/* line 21, ../sass/components/_donate-button.scss */
#navigation {
  z-index: 1;
}

/* line 1, ../sass/components/_hamburger.scss */
#hamburger {
  font-family: 'icomoon';
  display: none;
}
@media all and (max-width: 960px) {
  /* line 1, ../sass/components/_hamburger.scss */
  #hamburger {
    display: block;
    position: fixed;
    z-index: 300;
    top: 0;
    right: 0;
    color: white;
    font-size: 1.6em;
    cursor: pointer;
    background: #044366;
    width: 100%;
    text-align: right;
    height: 1.9em;
    line-height: 1.9em;
    margin-right: 0.5em;
  }
}

/* line 3, ../sass/components/_photo-credits.scss */
body.section-photo-credits #content img {
  padding: 0;
}

/* line 1, ../sass/components/_social-icons.scss */
#block-block-10 h2.block__title.block-title {
  margin-bottom: 0.5em;
}

/* line 4, ../sass/components/_social-icons.scss */
#block-block-10 h4 {
  margin-top: .9em;
}

/* line 46, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
.social-icons:before, .social-icons:after {
  content: "";
  display: table;
}
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
.social-icons:after {
  clear: both;
}
/* line 9, ../sass/components/_social-icons.scss */
.social-icons .link-facebook {
  float: left;
  width: 18.75%;
  margin-left: 0%;
  margin-right: -18.75%;
}
/* line 13, ../sass/components/_social-icons.scss */
.social-icons .link-twitter {
  float: left;
  width: 18.75%;
  margin-left: 18.75%;
  margin-right: -37.5%;
}
/* line 17, ../sass/components/_social-icons.scss */
.social-icons .link-flickr {
  float: left;
  width: 18.75%;
  margin-left: 37.5%;
  margin-right: -56.25%;
}
/* line 21, ../sass/components/_social-icons.scss */
.social-icons .link-youtube {
  float: left;
  width: 18.75%;
  margin-left: 56.25%;
  margin-right: -75%;
}

/* line 25, ../sass/components/_social-icons.scss */
.link-facebook {
  font-size: 0;
  float: left;
  width: 20%;
  margin-left: 0;
  margin-right: -20%;
}
/* line 8, ../sass/base/_footer.scss */
.link-facebook:before {
  background-color: #4d4d4d;
  border-radius: 50%;
  font-size: 24px;
  content: "\e600";
  font-family: 'icomoon';
  color: #cccccc;
  padding: 8px;
}

/* line 30, ../sass/components/_social-icons.scss */
.link-twitter {
  font-size: 0;
  float: left;
  width: 20%;
  margin-left: 20%;
  margin-right: -40%;
}
/* line 8, ../sass/base/_footer.scss */
.link-twitter:before {
  background-color: #4d4d4d;
  border-radius: 50%;
  font-size: 24px;
  content: "\e601";
  font-family: 'icomoon';
  color: #cccccc;
  padding: 8px;
}

/* line 35, ../sass/components/_social-icons.scss */
.link-flickr {
  font-size: 0;
  float: left;
  width: 20%;
  margin-left: 40%;
  margin-right: -60%;
}
/* line 8, ../sass/base/_footer.scss */
.link-flickr:before {
  background-color: #4d4d4d;
  border-radius: 50%;
  font-size: 24px;
  content: "\e602";
  font-family: 'icomoon';
  color: #cccccc;
  padding: 8px;
}

/* line 40, ../sass/components/_social-icons.scss */
.link-youtube {
  font-size: 0;
  float: left;
  width: 20%;
  margin-left: 60%;
  margin-right: -80%;
}
/* line 8, ../sass/base/_footer.scss */
.link-youtube:before {
  background-color: #4d4d4d;
  border-radius: 50%;
  font-size: 24px;
  content: "\f167";
  font-family: 'icomoon';
  color: #cccccc;
  padding: 8px;
}

.link-instagram {
  font-size: 0;
  float: left;
  width: 20%;
  margin-left: 80%;
  margin-right: -100%;
}
.link-instagram:before {
  background-color: #4d4d4d;
  border-radius: 50%;
  font-size: 24px;
  content: url("../images/icon-instagram.svg");
  font-family: sans-serif;
  color: #cccccc;
  padding: 8px;
  width: 31px;
  height: 31px;
  display: inline-block;
  line-height: 0px;
  margin-top: -3px;
}

/* line 8, ../sass/components/_styles.scss */
.section-event .field-label {
  text-transform: uppercase;
  font-size: 1.39em;
}

/* line 13, ../sass/components/_styles.scss */
span.date-display-single {
  font-size: 1.38em;
}

.date{
	color: $white;
	padding: .2em 0;
	font-weight: bold;
}

.date-display-single {
	font-weight: bold;
}

/* line 17, ../sass/components/_styles.scss */
.page-blog h2.node__title.node-title {
  font-size: 1.75em;
}

/* line 21, ../sass/components/_styles.scss */
.page-blog p.submitted {
  margin-top: 0;
  margin-bottom: 0;
}

/* line 26, ../sass/components/_styles.scss */
.page-blog div.views-row {
  margin-bottom: 2em;
}

/* line 32, ../sass/components/_styles.scss */
.page-blog h1#page-title {
  margin-bottom: 0.8em;
}

/* Modules */
/* Module name - description */
/* Gravity Switch Brown Bar */
/* =======  ADMIN BAR  ======= */
/* =======  Gravity Switch Admin bar for adding client facing admin functions =======*/
/* line 3, ../sass/modules/navigation/_admin.scss */
#admin-region {
  background: #3a3126;
  line-height: 26px;
  z-index: 888;
  position: fixed;
  width: 100%;
  font-family: 'Lucida Grande', Verdana, sans-serif;
  font-size: .846em;
  font-weight: normal;
  margin-top: -1px;
  top: 0px;
  -moz-box-shadow: 0 0px 20px 0px #000;
  -webkit-box-shadow: 0 0px 20px 0px #000;
  box-shadow: 0 0px 20px 0px #000;
}

/* line 18, ../sass/modules/navigation/_admin.scss */
html body.admin-menu {
  margin-top: 53px !important;
}

/*
 * Moves the business end of the brown bar down
 * while increasing the overall height of the 
 * element to avoid little white stripes.
 */
/*
* Creates space for the pretty brown admin bar.
*/
/* line 31, ../sass/modules/navigation/_admin.scss */
body.logged-in {
  margin-top: 26px;
}

/*
 * Provides room for both admin bars.
 */
/* line 37, ../sass/modules/navigation/_admin.scss */
body.admin-menu {
  margin-top: 60px;
}

/* line 41, ../sass/modules/navigation/_admin.scss */
body.admin-menu #admin-region {
  padding-top: 35px;
}

/* line 44, ../sass/modules/navigation/_admin.scss */
#admin-region a:link, #admin-region a:visited, #admin-region .nolink {
  font-weight: bold;
  color: #fff;
  padding: 0em 0em 0em 0.3em;
  line-height: 26px;
  text-decoration: none;
}

/* line 51, ../sass/modules/navigation/_admin.scss */
#admin-region a:active, #admin-region a:hover {
  text-decoration: none;
}

/* line 57, ../sass/modules/navigation/_admin.scss */
#admin-region ul ul,
#admin-region ul.nice-menu-down li.menuparent,
#admin-region ul.nice-menu-down li.menuparent:hover,
#admin-region ul.nice-menu-down li {
  background: #3a3126;
  border: none;
}

/* line 64, ../sass/modules/navigation/_admin.scss */
#admin-region ul ul,
#admin-region ul.nice-menu-down li li.menuparent,
#admin-region ul.nice-menu-down li li.menuparent:hover,
#admin-region ul.nice-menu-down li li {
  background: #3a3126;
}

/* line 67, ../sass/modules/navigation/_admin.scss */
#admin-region .block {
  margin-bottom: 0em;
  margin-top: 0em;
}

/* line 71, ../sass/modules/navigation/_admin.scss */
#admin-region h2.title {
  display: none;
}

/* line 74, ../sass/modules/navigation/_admin.scss */
#admin-region ul {
  margin: 0em 0;
  padding-left: 0em;
}

/* line 78, ../sass/modules/navigation/_admin.scss */
#admin-region ul li {
  display: inline;
  float: left;
  padding-right: 2em;
}

/* line 83, ../sass/modules/navigation/_admin.scss */
#admin-region ul ul {
  top: 26px;
}

/* line 86, ../sass/modules/navigation/_admin.scss */
#admin-region ul.nice-menu ul {
  border-top: none;
}

/* line 89, ../sass/modules/navigation/_admin.scss */
#admin-region ul.nice-menu ul li {
  width: 20em;
}

/* line 92, ../sass/modules/navigation/_admin.scss */
#admin-region ul a {
  display: block;
}

/* line 95, ../sass/modules/navigation/_admin.scss */
#admin-region ul ul a {
  padding-left: 0.3em;
}

/* line 98, ../sass/modules/navigation/_admin.scss */
#admin-region li.menu-path-gravityswitchcom {
  padding-right: 0em;
}

/* line 101, ../sass/modules/navigation/_admin.scss */
#admin-region li.menu-path-gravityswitchcom a {
  text-indent: -99999px;
  display: block;
  background: #3a3126 url("../images/gsadminlogo.jpg") no-repeat 50% 50%;
  width: 40px;
}

/* line 107, ../sass/modules/navigation/_admin.scss */
#admin-region div.block.with-block-editing div.edit {
  /* so that the edit the block does not cover editor admin menu logout link */
  top: 27px;
}

/* line 110, ../sass/modules/navigation/_admin.scss */
#overlay-container {
  /* makes sure that the admin overlay does not hide behind the admin bar */
  top: 26px;
}

/* line 113, ../sass/modules/navigation/_admin.scss */
#admin-region h2 {
  margin: 0;
}

/* Interior Sidebar Navigation */
/* line 2, ../sass/modules/navigation/_sidebar.scss */
.sidebar-navigation .menu {
  padding: 0;
  margin-top: 0;
}
/* line 7, ../sass/modules/navigation/_sidebar.scss */
.sidebar-navigation .menu__item.is-leaf {
  list-style-type: none;
  list-style-image: none;
}
/* line 11, ../sass/modules/navigation/_sidebar.scss */
.sidebar-navigation .menu__item a {
  font-weight: 700;
}
/* line 16, ../sass/modules/navigation/_sidebar.scss */
.sidebar-navigation .menu__item a:link, .sidebar-navigation .menu__item a:visited, .sidebar-navigation .menu__item a:active, .sidebar-navigation .menu__item a:hover {
  color: #6a6a6a;
}
/* line 21, ../sass/modules/navigation/_sidebar.scss */
.sidebar-navigation li {
  text-transform: uppercase;
  padding: .3em 0 .3em 1.7em;
}
/* line 25, ../sass/modules/navigation/_sidebar.scss */
.sidebar-navigation li:hover.menu__item {
  background: #cccccc;
}
/* line 32, ../sass/modules/navigation/_sidebar.scss */
.sidebar-navigation li:hover.menu__item a:link, .sidebar-navigation li:hover.menu__item a:visited, .sidebar-navigation li:hover.menu__item a:active, .sidebar-navigation li:hover.menu__item a:hover {
  color: #262626;
}
/* line 38, ../sass/modules/navigation/_sidebar.scss */
.sidebar-navigation li.active {
  background: #cccccc;
}
/* line 44, ../sass/modules/navigation/_sidebar.scss */
.sidebar-navigation li.active a:link, .sidebar-navigation li.active a:visited, .sidebar-navigation li.active a:active, .sidebar-navigation li.active a:hover {
  color: #262626;
}

/* Photo Gallery */
/* Color Box */
/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
/* line 5, ../sass/modules/_colorbox.scss */
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
}

/* line 6, ../sass/modules/_colorbox.scss */
#cboxWrapper {
  max-width: none;
}

/* line 7, ../sass/modules/_colorbox.scss */
#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

/* line 8, ../sass/modules/_colorbox.scss */
#cboxMiddleLeft, #cboxBottomLeft {
  clear: left;
}

/* line 9, ../sass/modules/_colorbox.scss */
#cboxContent {
  position: relative;
}

/* line 10, ../sass/modules/_colorbox.scss */
#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/* line 11, ../sass/modules/_colorbox.scss */
#cboxTitle {
  margin: 0;
}

/* line 12, ../sass/modules/_colorbox.scss */
#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 13, ../sass/modules/_colorbox.scss */
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer;
}

/* line 14, ../sass/modules/_colorbox.scss */
.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}

/* line 15, ../sass/modules/_colorbox.scss */
.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

/* line 16, ../sass/modules/_colorbox.scss */
#colorbox, #cboxContent, #cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}

/* 
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
/* line 23, ../sass/modules/_colorbox.scss */
#cboxOverlay {
  background: url(images/overlay.png) repeat 0 0;
}

/* line 24, ../sass/modules/_colorbox.scss */
#colorbox {
  outline: 0;
}

/* line 25, ../sass/modules/_colorbox.scss */
#cboxTopLeft {
  width: 21px;
  height: 21px;
  background: url(images/controls.png) no-repeat -101px 0;
}

/* line 26, ../sass/modules/_colorbox.scss */
#cboxTopRight {
  width: 21px;
  height: 21px;
  background: url(images/controls.png) no-repeat -130px 0;
}

/* line 27, ../sass/modules/_colorbox.scss */
#cboxBottomLeft {
  width: 21px;
  height: 21px;
  background: url(images/controls.png) no-repeat -101px -29px;
}

/* line 28, ../sass/modules/_colorbox.scss */
#cboxBottomRight {
  width: 21px;
  height: 21px;
  background: url(images/controls.png) no-repeat -130px -29px;
}

/* line 29, ../sass/modules/_colorbox.scss */
#cboxMiddleLeft {
  width: 21px;
  background: url(images/controls.png) left top repeat-y;
}

/* line 30, ../sass/modules/_colorbox.scss */
#cboxMiddleRight {
  width: 21px;
  background: url(images/controls.png) right top repeat-y;
}

/* line 31, ../sass/modules/_colorbox.scss */
#cboxTopCenter {
  height: 21px;
  background: url(images/border.png) 0 0 repeat-x;
}

/* line 32, ../sass/modules/_colorbox.scss */
#cboxBottomCenter {
  height: 21px;
  background: url(images/border.png) 0 -29px repeat-x;
}

/* line 33, ../sass/modules/_colorbox.scss */
#cboxContent {
  background: #fff;
  overflow: hidden;
}

/* line 34, ../sass/modules/_colorbox.scss */
.cboxIframe {
  background: #fff;
}

/* line 35, ../sass/modules/_colorbox.scss */
#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

/* line 36, ../sass/modules/_colorbox.scss */
#cboxLoadedContent {
  margin-bottom: 28px;
}

/* line 37, ../sass/modules/_colorbox.scss */
#cboxTitle {
  position: absolute;
  bottom: 4px;
  left: 0;
  text-align: center;
  width: 100%;
  color: #949494;
}

/* line 38, ../sass/modules/_colorbox.scss */
#cboxCurrent {
  position: absolute;
  bottom: 4px;
  left: 58px;
  color: #949494;
}

/* line 39, ../sass/modules/_colorbox.scss */
#cboxLoadingOverlay {
  background: url(images/loading_background.png) no-repeat center center;
}

/* line 40, ../sass/modules/_colorbox.scss */
#cboxLoadingGraphic {
  background: url(images/loading.gif) no-repeat center center;
}

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
/* line 43, ../sass/modules/_colorbox.scss */
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
/* line 46, ../sass/modules/_colorbox.scss */
#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {
  outline: 0;
}

/* line 48, ../sass/modules/_colorbox.scss */
#cboxSlideshow {
  position: absolute;
  bottom: 4px;
  right: 30px;
  color: #0092ef;
}

/* line 49, ../sass/modules/_colorbox.scss */
#cboxPrevious {
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(images/controls.png) no-repeat -75px 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}

/* line 50, ../sass/modules/_colorbox.scss */
#cboxPrevious:hover {
  background-position: -75px -25px;
}

/* line 51, ../sass/modules/_colorbox.scss */
#cboxNext {
  position: absolute;
  bottom: 0;
  left: 27px;
  background: url(images/controls.png) no-repeat -50px 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}

/* line 52, ../sass/modules/_colorbox.scss */
#cboxNext:hover {
  background-position: -50px -25px;
}

/* line 53, ../sass/modules/_colorbox.scss */
#cboxClose {
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(images/controls.png) no-repeat -25px 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}

/* line 54, ../sass/modules/_colorbox.scss */
#cboxClose:hover {
  background-position: -25px -25px;
}

/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
/* line 68, ../sass/modules/_colorbox.scss */
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}

/* Banner Images on Interior Pages */
/* line 2, ../sass/modules/_banner-image.scss */
body.has-banner .field-name-field-banner-image {
  position: absolute;
  left: 0;
  display: none;
}
@media all and (min-width: 960px) {
  /* line 2, ../sass/modules/_banner-image.scss */
  body.has-banner .field-name-field-banner-image {
    display: block;
    top: 200px;
  }
}
/* line 10, ../sass/modules/_banner-image.scss */
body.has-banner .field-name-field-banner-image img {
  padding: 0;
}
@media all and (min-width: 960px) {
  /* line 14, ../sass/modules/_banner-image.scss */
  body.has-banner #main {
    padding: 300px 0 0 0;
  }
}

/* Banner Images on Interior Pages */
/* line 2, ../sass/modules/donate/_individual-donors.scss */
.page-node-70 input[type="submit"] {
  background: #f76d10;
  border: none;
  padding: 0.5em 2em;
  color: white;
  color: white;
  font-size: 1.2em;
}
/* line 12, ../sass/modules/donate/_individual-donors.scss */
.page-node-70 a.individual-donate-button:hover {
  background: none;
}

/* Base Donor Styles */
/* line 2, ../sass/modules/donate/_donate.scss */
.view-corporate-sponsors h3, .view-corporate-sponsors .show-creative-team .field-name-field-name-title, .show-creative-team .view-corporate-sponsors .field-name-field-name-title {
  clear: both;
  padding: 1em 0;
}
/* line 7, ../sass/modules/donate/_donate.scss */
.view-corporate-sponsors .sponsor {
  padding: 1em;
  text-align: center;
}

@media all and (min-width: 960px) {
  /* line 46, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
  .page-node-68 .region-content-bottom:before, .page-node-68 .region-content-bottom:after {
    content: "";
    display: table;
  }
  /* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
  .page-node-68 .region-content-bottom:after {
    clear: both;
  }
  /* line 26, ../sass/modules/donate/_donate.scss */
  .page-node-68 .region-content-bottom .sponsors {
    padding-right: 1em;
  }
  /* line 28, ../sass/modules/donate/_donate.scss */
  .page-node-68 .region-content-bottom .sponsors .block-title {
    font-size: 1.2em;
  }
  /* line 32, ../sass/modules/donate/_donate.scss */
  .page-node-68 .region-content-bottom .corp-sponsor-season {
    border-bottom: 1px solid #cccccc;
    margin-bottom: 0;
    position: relative;
  }
  /* line 36, ../sass/modules/donate/_donate.scss */
  .page-node-68 .region-content-bottom .corp-sponsor-season .sponsor {
    float: right;
  }
  /* line 39, ../sass/modules/donate/_donate.scss */
  .page-node-68 .region-content-bottom .corp-sponsor-season .block-title {
    width: 50%;
    float: left;
    bottom: 33px;
    position: absolute;
  }
  /* line 46, ../sass/modules/donate/_donate.scss */
  .page-node-68 .region-content-bottom .corp-sponsor-production {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
    border-right: 1px solid #cccccc;
    padding: 1.5em 1em 0 0;
  }
  /* line 51, ../sass/modules/donate/_donate.scss */
  .page-node-68 .region-content-bottom .corp-sponsor-media {
    float: left;
    width: 33.33333%;
    margin-left: 33.33333%;
    margin-right: -66.66667%;
    border-right: 1px solid #cccccc;
    padding: 1.5em 1em 0 1em;
  }
  /* line 56, ../sass/modules/donate/_donate.scss */
  .page-node-68 .region-content-bottom .corp-sponsor-business {
    float: left;
    width: 33.33333%;
    margin-left: 66.66667%;
    margin-right: -100%;
    padding: 1.5em 0 0 1em;
  }
}

/* line 67, ../sass/modules/donate/_donate.scss */
.region-above-footer {
  background-color: #4796c2;
  padding-top: 32px;
  padding-left: 32px;
  padding-right: 32px;
  color: white;
  font-size: 1.4em;
}
/* line 74, ../sass/modules/donate/_donate.scss */
.region-above-footer p {
  margin: 0;
}
/* line 77, ../sass/modules/donate/_donate.scss */
.region-above-footer .block {
  margin: 0;
}
/* line 80, ../sass/modules/donate/_donate.scss */
.region-above-footer .block__title {
  color: white;
}
/* line 83, ../sass/modules/donate/_donate.scss */
.region-above-footer ul {
  padding-left: 0;
}
/* line 86, ../sass/modules/donate/_donate.scss */
.region-above-footer li {
  list-style: none;
  font-weight: 600;
}
/* line 93, ../sass/modules/donate/_donate.scss */
.region-above-footer a:link,
.region-above-footer a:visited,
.region-above-footer a:focus,
.region-above-footer a:hover {
  color: white;
}
/* line 96, ../sass/modules/donate/_donate.scss */
.region-above-footer .block {
  padding: 1em;
}
/* line 98, ../sass/modules/donate/_donate.scss */
.region-above-footer .block .block-title {
  font-size: 1.8em;
}
@media all and (min-width: 960px) {
  /* line 46, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
  .region-above-footer:before, .region-above-footer:after {
    content: "";
    display: table;
  }
  /* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
  .region-above-footer:after {
    clear: both;
  }
  /* line 105, ../sass/modules/donate/_donate.scss */
  .region-above-footer .ways-to-give-icon {
    float: left;
    width: 31.25%;
    margin-left: 0%;
    margin-right: -31.25%;
  }
  /* line 108, ../sass/modules/donate/_donate.scss */
  .region-above-footer .ways-to-give-list {
    float: left;
    width: 31.25%;
    margin-left: 31.25%;
    margin-right: -62.5%;
  }
  /* line 111, ../sass/modules/donate/_donate.scss */
  .region-above-footer .ways-to-give-secondary {
    float: left;
    width: 37.5%;
    margin-left: 62.5%;
    margin-right: -100%;
  }
}

/* Footer Copyright */
/* line 1, ../sass/modules/footer/_copyright.scss */
#copyright-information {
  clear: both;
}

/* line 5, ../sass/modules/footer/_copyright.scss */
.copyright {
  float: left;
}

/* line 9, ../sass/modules/footer/_copyright.scss */
.website-credits {
  float: right;
}
/* line 11, ../sass/modules/footer/_copyright.scss */
.website-credits a {
  font-weight: 900;
  color: #343434;
}

/* Show Page */
/* line 1, ../sass/modules/show/_show.scss */
.show-menu-container {
  background: #044366;
}
@media all and (min-width: 960px) {
  /* line 1, ../sass/modules/show/_show.scss */
  .show-menu-container {
    width: 100%;
    text-align: center;
  }
}

/* line 8, ../sass/modules/show/_show.scss */
.show-menu {
  margin: 0;
  padding: 0;
}
@media all and (min-width: 960px) {
  /* line 8, ../sass/modules/show/_show.scss */
  .show-menu {
    display: inline-block;
    padding: .3em 0;
  }
}
/* line 15, ../sass/modules/show/_show.scss */
.show-menu li {
  border-bottom: 1px solid #0379a8;
  list-style: none;
  padding: .6em;
  text-align: center;
  color: white;
  text-transform: uppercase;
}
/* line 22, ../sass/modules/show/_show.scss */
.show-menu li:hover {
  color: #f76d10;
  cursor: pointer;
}
/* line 26, ../sass/modules/show/_show.scss */
.show-menu li.active {
  color: #f76d10;
}
@media all and (min-width: 960px) {
  /* line 15, ../sass/modules/show/_show.scss */
  .show-menu li {
    float: left;
    margin: 0 3em;
    border: none;
    padding-bottom: 0.3em;
    text-align: left;
  }
}

/* line 38, ../sass/modules/show/_show.scss */
.show-subtitle {
  font-size: 1.75em;
  line-height: 1.2em;
}

/* line 43, ../sass/modules/show/_show.scss */
.show-subtitle {
  font-size: 1.75em;
}

/* line 47, ../sass/modules/show/_show.scss */
.show-container {
  position: relative;
}
/* line 49, ../sass/modules/show/_show.scss */
.show-container .info-pane {
  position: absolute;
  top: 0;
}
/* line 52, ../sass/modules/show/_show.scss */
.show-container .info-pane h2 {
  margin-bottom: 1em;
}
/* line 56, ../sass/modules/show/_show.scss */
.show-container .hidden {
  display: none;
}
/* line 59, ../sass/modules/show/_show.scss */
.show-container .show {
  display: block;
}

@media all and (min-width: 960px) {
  /* line 65, ../sass/modules/show/_show.scss */
  .show-creative-team .field-name-field-team-bio {
    float: left;
    width: 75%;
  }
}
/* line 71, ../sass/modules/show/_show.scss */
.show-creative-team .field-name-field-creativeteam-photo {
  text-align: center;
  padding-bottom: 2em;
}
@media all and (min-width: 960px) {
  /* line 71, ../sass/modules/show/_show.scss */
  .show-creative-team .field-name-field-creativeteam-photo {
    float: right;
    width: 25%;
  }
}
/* line 79, ../sass/modules/show/_show.scss */
.show-creative-team .field-name-field-name-title {
  font-weight: bold;
}

/* line 86, ../sass/modules/show/_show.scss */
.show-creative-team .node-title {
  display: none;
}

/* line 90, ../sass/modules/show/_show.scss */
.show-header {
  padding-left: 10px;
  padding-right: 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
}

/* line 100, ../sass/modules/show/_show.scss */
.show-button {
  background: #4796c2;
  padding: .3em 1em;
  margin: 0.5em 0.2em .5em 0;
  color: white;
  text-transform: uppercase;
  display: inline-block;
}
/* line 107, ../sass/modules/show/_show.scss */
.show-button a {
  color: white;
}

/* line 111, ../sass/modules/show/_show.scss */
.show-button1 {
  font-size: 1.4em;
}

/* line 116, ../sass/modules/show/_show.scss */
.show-header {
  background: url("/sites/all/themes/mrt/images/background-image.jpg") fixed;
  background-size: cover;
  margin-bottom: 1em;
  color: white;
}
@media all and (min-width: 960px) {
  /* line 46, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
  .show-header:before, .show-header:after {
    content: "";
    display: table;
  }
  /* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
  .show-header:after {
    clear: both;
  }
}
/* line 123, ../sass/modules/show/_show.scss */
.show-header .page__title {
  color: white;
}

@media all and (min-width: 960px) {
  /* line 128, ../sass/modules/show/_show.scss */
  .show-information {
    float: left;
    width: 56.25%;
    margin-left: 43.75%;
    margin-right: -100%;
  }
}

.show-date {
	font-size: 2em;
	padding: .2em 0;
	font-weight: bold;
}

.field_date_text {
	font-weight: bold;
	color: white;
}

/* line 134, ../sass/modules/show/_show.scss */
.show-sponsors {
  padding: 1em 0;
}

/* line 138, ../sass/modules/show/_show.scss */
.show-sponsor a:hover {
  background: none;
}
/* line 141, ../sass/modules/show/_show.scss */
.show-sponsor img {
  max-height: 100px;
  width: auto;
  padding: .5em;
}
@media all and (min-width: 960px) {
  /* line 137, ../sass/modules/show/_show.scss */
  .show-sponsor {
    width: 50%;
    float: left;
  }
}

@media all and (min-width: 960px) {
  /* line 151, ../sass/modules/show/_show.scss */
  .show-photo {
    float: left;
    width: 37.5%;
    margin-left: 0%;
    margin-right: -37.5%;
  }
}
/* line 155, ../sass/modules/show/_show.scss */
.show-photo img {
  max-width: 100%;
}

/* line 160, ../sass/modules/show/_show.scss */
.field-name-field-gallery-image > .field-items > .field-item {
  width: 33%;
  float: left;
  height: 260px;
}

/* line 165, ../sass/modules/show/_show.scss */
article.node-photo-gallery {
  margin-top: 4em;
}

/* line 169, ../sass/modules/show/_show.scss */
.node-photo-gallery h2 {
  margin-bottom: 0 !important;
  margin-top: 0.3em;
}
/* line 173, ../sass/modules/show/_show.scss */
.node-photo-gallery p {
  margin-top: 0;
}

/* line 178, ../sass/modules/show/_show.scss */
.field-name-field-gallery-image-caption .field-item {
  clear: left;
  padding: 0 1em;
}

/* line 184, ../sass/modules/show/_show.scss */
.show-newsletter-signup {
  padding: 2em;
}
@media all and (min-width: 960px) {
  /* line 184, ../sass/modules/show/_show.scss */
  .show-newsletter-signup {
    padding: 1em;
    float: right;
    text-align: right;
    width: 64%;
    color: white;
  }
  /* line 192, ../sass/modules/show/_show.scss */
  .show-newsletter-signup h4 {
    color: white;
  }
}

@media all and (min-width: 960px) {
  /* line 197, ../sass/modules/show/_show.scss */
  .show-text {
    margin: 0 1em;
    display: inline-block;
  }
}

/* line 203, ../sass/modules/show/_show.scss */
p.show-newsletter-signup-p {
  margin: 0;
}

/* line 206, ../sass/modules/show/_show.scss */
.show-newsletter-button-p {
  display: inline-block;
  vertical-align: top;
  margin: 0;
}
/* line 210, ../sass/modules/show/_show.scss */
.show-newsletter-button-p a {
  margin: 0 !important;
}

/* SMACSS theme rules */
/* @import "theme-A"; */
/* @import "theme-B"; */
