@charset "UTF-8";
/**
 * @file
 * Styles are organized using the SMACSS technique. @see http://smacss.com/book/
 *
 * When you turn on CSS aggregation at admin/config/development/performance, all
 * of these @include files will be combined into a single file.
 */
/* Import Sass mixins, variables, Compass modules, etc. */
/* 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. */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

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

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

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

/**
 * Base
 *
 * 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.
 */
html {
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, "Nimbus Sans L", sans-serif;
  /* 1 */
  font-size: 112.5%;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5em;
  color: #33333c;
  background-color: #fff;
}

/* Remove default margin. */
body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/**
 * 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
 */
a:link,
a:visited {
  color: #4188bc;
  text-decoration: none;
  -webkit-transition: all 0.12s ease-in-out;
  -moz-transition: all 0.12s ease-in-out;
  -o-transition: all 0.12s ease-in-out;
  transition: all 0.12s ease-in-out;
}

a:hover,
a:focus,
a:active {
  color: #d3401e;
}

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

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

/**
 * Typography
 *
 * 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. */
p,
pre {
  margin: 1em 0;
}

blockquote {
  padding: 0 12px;
  font-size: 1.16667em;
  line-height: 1.28571em;
  line-height: 1.60714em;
  font-style: italic;
  color: #d3401e;
}
@media (min-width: 481px) {
  blockquote {
    font-size: 1.33333em;
    line-height: 1.6875em;
    line-height: 1.40625em;
  }
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
  font-size: 2.25em;
  line-height: 1.33333em;
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
  margin-top: 0.66667em;
  margin-bottom: 0.66667em;
}

h2 {
  font-size: 1.5em;
  line-height: 1.5em;
  margin-top: 1em;
  margin-bottom: 1em;
}

h3 {
  font-size: 1.25em;
  line-height: 1.2em;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}

h4 {
  font-size: 1em;
  line-height: 1.5em;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

h5 {
  font-size: 0.875em;
  line-height: 1.71429em;
  margin-top: 1.71429em;
  margin-bottom: 1.71429em;
}

h6 {
  font-size: 0.75em;
  line-height: 2em;
  margin-top: 2em;
  margin-bottom: 2em;
}

.l-section--main .node-story.view-mode-full h2, .l-section--main .node-story.view-mode-full h3, .l-section--main .node-story.view-mode-full h4 {
  margin-top: 1.5em;
  margin-bottom: 0;
}

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

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

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

/* Address differences between Firefox and other browsers. */
hr {
  -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. */
mark {
  background: #ff0;
  color: #000;
}

/* Correct font family set oddly in Safari 5 and Chrome. */
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. */
pre {
  white-space: pre-wrap;
}

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

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

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/**
 * Lists
 */
dl,
menu,
ol,
ul {
  /* Address margins set differently in IE 6/7. */
  margin: 1.5em 0;
}

ol ol,
ol ul,
ul ol,
ul ul {
  /* Turn off margins on nested lists. */
  margin: 0;
}

dd {
  margin: 0 0 0 0px;
}

/* Address paddings set differently in IE 6/7. */
menu,
ol,
ul {
  padding: 0 0 0 0px;
}

ol,
ul {
  margin-left: 4%;
}

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
img {
  /* Remove border when inside `a` element in IE 8/9. */
  border: 0;
  /* Suppress the space beneath the baseline */
  vertical-align: bottom;
  /* Responsive images */
  max-width: 100%;
  height: auto;
}

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

/* Address margin not present in IE 8/9 and Safari 5. */
figure {
  margin: 0;
  margin-bottom: 1.5em;
}

/**
 * Forms
 */
/* Define consistent border, margin, and padding. */
fieldset {
  margin: 0 2px;
  /* Apply borders and padding that keep the vertical rhythm. */
  border-color: #c0c0c0;
  border-top-style: solid;
  border-top-width: 0.05556em;
  padding-top: 0.46944em;
  border-bottom-style: solid;
  border-bottom-width: 0.05556em;
  padding-bottom: 0.91944em;
  border-left-style: solid;
  border-left-width: 0.05556em;
  padding-left: 0.91944em;
  border-right-style: solid;
  border-right-width: 0.05556em;
  padding-right: 0.91944em;
}

/**
 * 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.
 */
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.
 */
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.
 */
button,
input {
  line-height: normal;
}

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

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

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

/**
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
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).
 */
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.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

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

/* Drupal-style form labels. */
label {
  display: block;
  font-weight: bold;
}

/**
 * Tables
 */
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
 * Base styles for Zen Grids.
 */
.l-6up:before, .l-general:before, .l-navbar:before, .l-dropnav:before, .l-home-featured:before, .l-home-main:before, .l-home-main-bottom:before, .l-story:before, .l-vertical:before,
.l-vertical-recent:before, .l-6up:after, .l-general:after, .l-navbar:after, .l-dropnav:after, .l-home-featured:after, .l-home-main:after, .l-home-main-bottom:after, .l-story:after, .l-vertical:after,
.l-vertical-recent:after {
  content: "";
  display: table;
}
.l-6up:after, .l-general:after, .l-navbar:after, .l-dropnav:after, .l-home-featured:after, .l-home-main:after, .l-home-main-bottom:after, .l-story:after, .l-vertical:after,
.l-vertical-recent:after {
  clear: both;
}

.l-general__featured,
.l-general--sidebar__featured,
.l-general__full,
.l-general__main,
.l-general__sidebar, .hollywood_square .views-row-1,
.hollywood_square .views-row-2,
.hollywood_square .views-row-3,
.hollywood_square .views-row-4,
.hollywood_square .views-row-5,
.hollywood_square .views-row-6,
.hollywood_square .views-row-7,
.hollywood_square .views-row-8,
.hollywood_square .views-row-9,
.l-home-main--item.views-row-1,
.l-home-main--item.views-row-2,
.l-home-main--item.views-row-3,
.l-home-main--item.views-row-4,
.l-home-main--item.views-row-5,
.l-home-main--item.views-row-6,
.l-home-main--item.views-row-7,
.l-home-main--item.views-row-8,
.l-home-main--item.views-row-9,
.l-home-main--item.views-row-10,
.l-home-main--item.views-row-11,
.l-home-main--item.views-row-12,
.l-home-main__item-1,
.l-home-main__item-2,
.l-home-main__item-3,
.l-home-main__item-4,
.l-home-main__item-5,
.l-home-main__item-6,
.l-home-main__item-7,
.l-home-main__item-8,
.l-home-main__item-9,
.l-home-main__item-10,
.l-home-main__item-11,
.l-home-main__item-12,
.vertical-listing__squares .views-row, .l-home-main-bottom > *, .l-story__full,
.l-story__main,
.l-story__sidebar, .l-vertical__full,
.l-vertical__main,
.l-vertical__sidebar,
.l-vertical-recent__item-1,
.l-vertical-recent__item-2,
.l-vertical-recent__item-3, .l-home-featured__group-1,
.l-home-featured__group-2 {
  padding-left: 24px;
  padding-right: 24px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
}

.l-general__featured,
.l-general--sidebar__featured,
.l-general__full,
.l-general__main,
.l-general__sidebar, .hollywood_square .views-row-1,
.hollywood_square .views-row-2,
.hollywood_square .views-row-3,
.hollywood_square .views-row-4,
.hollywood_square .views-row-5,
.hollywood_square .views-row-6,
.hollywood_square .views-row-7,
.hollywood_square .views-row-8,
.hollywood_square .views-row-9,
.l-home-main--item.views-row-1,
.l-home-main--item.views-row-2,
.l-home-main--item.views-row-3,
.l-home-main--item.views-row-4,
.l-home-main--item.views-row-5,
.l-home-main--item.views-row-6,
.l-home-main--item.views-row-7,
.l-home-main--item.views-row-8,
.l-home-main--item.views-row-9,
.l-home-main--item.views-row-10,
.l-home-main--item.views-row-11,
.l-home-main--item.views-row-12,
.l-home-main__item-1,
.l-home-main__item-2,
.l-home-main__item-3,
.l-home-main__item-4,
.l-home-main__item-5,
.l-home-main__item-6,
.l-home-main__item-7,
.l-home-main__item-8,
.l-home-main__item-9,
.l-home-main__item-10,
.l-home-main__item-11,
.l-home-main__item-12,
.vertical-listing__squares .views-row, .l-home-main-bottom > *, .l-story__full,
.l-story__main,
.l-story__sidebar, .l-vertical__full,
.l-vertical__main,
.l-vertical__sidebar,
.l-vertical-recent__item-1,
.l-vertical-recent__item-2,
.l-vertical-recent__item-3 {
  clear: left;
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -100%;
  margin-bottom: 24px;
}

.l-home-featured__group-1,
.l-home-featured__group-2 {
  clear: left;
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -100%;
}

/**
 * @file
 * Centered sections of the page.
 */
.l-centered {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 300px;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 721px) {
  .l-centered {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/**
 * @file
 * 6-up layout.
 */
.l-6up__item-1 > *,
.l-6up__item-2 > *,
.l-6up__item-3 > *,
.l-6up__item-4 > *,
.l-6up__item-5 > *,
.l-6up__item-6 > * {
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 560px) {
  .l-6up__item-1,
  .l-6up__item-2,
  .l-6up__item-3,
  .l-6up__item-4,
  .l-6up__item-5,
  .l-6up__item-6 {
    padding-left: 24px;
    padding-right: 24px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    clear: left;
  }
  .l-6up__item-1 > *,
  .l-6up__item-2 > *,
  .l-6up__item-3 > *,
  .l-6up__item-4 > *,
  .l-6up__item-5 > *,
  .l-6up__item-6 > * {
    padding-left: 0;
    padding-right: 0;
  }

  .l-6up__item-1,
  .l-6up__item-3,
  .l-6up__item-5 {
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -100%;
  }

  .l-6up__item-2,
  .l-6up__item-4,
  .l-6up__item-6 {
    clear: none;
    float: left;
    width: 50%;
    margin-left: 50%;
    margin-right: -100%;
  }
}
@media (min-width: 1115px) {
  .l-6up__item-1 {
    clear: none;
    float: left;
    width: 16.66667%;
    margin-left: 0%;
    margin-right: -100%;
  }

  .l-6up__item-2 {
    clear: none;
    float: left;
    width: 16.66667%;
    margin-left: 16.66667%;
    margin-right: -100%;
  }

  .l-6up__item-3 {
    clear: none;
    float: left;
    width: 16.66667%;
    margin-left: 33.33333%;
    margin-right: -100%;
  }

  .l-6up__item-4 {
    clear: none;
    float: left;
    width: 16.66667%;
    margin-left: 50%;
    margin-right: -100%;
  }

  .l-6up__item-5 {
    clear: none;
    float: left;
    width: 16.66667%;
    margin-left: 66.66667%;
    margin-right: -100%;
  }

  .l-6up__item-6 {
    clear: none;
    float: left;
    width: 16.66667%;
    margin-left: 83.33333%;
    margin-right: -100%;
  }
}
/**
 * @file
 * Layout styles for a sidebar.
 */
.l-general__featured,
.l-general--sidebar__featured,
.l-general__full,
.l-general__main,
.l-general__sidebar {
  margin-bottom: 36px;
}

@media (min-width: 961px) {
  .l-general__main {
    float: left;
    width: 66.66667%;
    margin-left: 0%;
    margin-right: -100%;
  }

  .l-general__sidebar {
    clear: none;
    float: left;
    width: 33.33333%;
    margin-left: 66.66667%;
    margin-right: -100%;
    min-width: 350px;
  }

  .l-general__sidebar-with-margin {
    margin-top: 60px;
  }
}
@media (min-width: 1141px) {
  .l-general--sidebar__featured {
    float: left;
    width: 66.66667%;
    margin-left: 0%;
    margin-right: -100%;
  }
}
/**
 * @file
 * Header and navbar layout.
 */
.l-navbar__left {
  float: left;
  padding: 0 0 0 24px;
}

.l-navbar__right {
  float: right;
  padding: 0 24px 0 0;
  width: 40%;
}
@media (min-width: 601px) {
  .l-navbar__right {
    width: 70%;
  }
}
@media (min-width: 768px) {
  .l-navbar__right {
    width: 75%;
  }
}

/* Dropnav layout */
@media (min-width: 601px) {
  .l-dropnav__item-1, .l-dropnav__item-2, .l-dropnav__item-3, .l-dropnav__item-4 {
    padding-left: 24px;
    padding-right: 24px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .l-dropnav__item-1 {
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -100%;
  }

  .l-dropnav__item-2 {
    float: left;
    width: 50%;
    margin-left: 50%;
    margin-right: -100%;
  }

  .l-dropnav__item-3 {
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -100%;
    clear: left;
  }

  .l-dropnav__item-4 {
    float: left;
    width: 50%;
    margin-left: 50%;
    margin-right: -100%;
  }
}
@media (min-width: 961px) {
  .l-dropnav__item-1 {
    float: left;
    width: 25%;
    margin-left: 0%;
    margin-right: -100%;
  }

  .l-dropnav__item-2 {
    float: left;
    width: 25%;
    margin-left: 25%;
    margin-right: -100%;
  }

  .l-dropnav__item-3 {
    float: left;
    width: 25%;
    margin-left: 50%;
    margin-right: -100%;
    clear: none;
  }

  .l-dropnav__item-4 {
    float: left;
    width: 25%;
    margin-left: 75%;
    margin-right: -100%;
  }
}
/**
 * @file
 * Layout styles for the homepage.
 */
/**
 * Featured top story layout.
 */
.l-home-featured {
  margin-top: 24px;
  padding-bottom: 1em;
}
@media (min-width: 768px) {
  .l-home-featured {
    padding-bottom: 0;
  }
}
.l-home-featured .field-teaser {
  display: none;
}
@media (min-width: 768px) {
  .l-home-featured .field-teaser {
    display: block;
  }
}

@media (min-width: 1041px) {
  .l-home-featured__group-1 {
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -100%;
  }

  .l-home-featured__group-2 {
    float: left;
    width: 50%;
    margin-left: 50%;
    margin-right: -100%;
    clear: none;
  }
}
.node-type-homepage .view-load-more {
  clear: both;
}

/**
 * Hollywood square layout.
 */
.hollywood_square .views-row-1,
.hollywood_square .views-row-2,
.hollywood_square .views-row-3,
.hollywood_square .views-row-4,
.hollywood_square .views-row-5,
.hollywood_square .views-row-6,
.hollywood_square .views-row-7,
.hollywood_square .views-row-8,
.hollywood_square .views-row-9,
.l-home-main--item.views-row-1,
.l-home-main--item.views-row-2,
.l-home-main--item.views-row-3,
.l-home-main--item.views-row-4,
.l-home-main--item.views-row-5,
.l-home-main--item.views-row-6,
.l-home-main--item.views-row-7,
.l-home-main--item.views-row-8,
.l-home-main--item.views-row-9,
.l-home-main--item.views-row-10,
.l-home-main--item.views-row-11,
.l-home-main--item.views-row-12,
.l-home-main__item-1,
.l-home-main__item-2,
.l-home-main__item-3,
.l-home-main__item-4,
.l-home-main__item-5,
.l-home-main__item-6,
.l-home-main__item-7,
.l-home-main__item-8,
.l-home-main__item-9,
.l-home-main__item-10,
.l-home-main__item-11,
.l-home-main__item-12,
.vertical-listing__squares .views-row {
  min-width: 300px;
}

.l-home-main__item-9 {
  margin-bottom: 0;
}

@media (min-width: 660px) {
  .hollywood_square .views-row-1,
  .hollywood_square .views-row-2,
  .hollywood_square .views-row-3,
  .hollywood_square .views-row-4,
  .hollywood_square .views-row-5,
  .hollywood_square .views-row-6,
  .hollywood_square .views-row-7,
  .hollywood_square .views-row-8,
  .hollywood_square .views-row-9,
  .l-home-main--item.views-row-1,
  .l-home-main--item.views-row-2,
  .l-home-main--item.views-row-3,
  .l-home-main--item.views-row-4,
  .l-home-main--item.views-row-5,
  .l-home-main--item.views-row-6,
  .l-home-main--item.views-row-7,
  .l-home-main--item.views-row-8,
  .l-home-main--item.views-row-9,
  .l-home-main--item.views-row-10,
  .l-home-main--item.views-row-11,
  .l-home-main--item.views-row-12,
  .l-home-main__item-1,
  .l-home-main__item-2,
  .l-home-main__item-3,
  .l-home-main__item-4,
  .l-home-main__item-5,
  .l-home-main__item-6,
  .l-home-main__item-7,
  .l-home-main__item-8,
  .l-home-main__item-9,
  .l-home-main__item-10,
  .l-home-main__item-11,
  .l-home-main__item-12,
  .vertical-listing__squares .views-row {
    margin-bottom: 48px;
  }

  .hollywood_square .views-row-1,
  .hollywood_square .views-row-3,
  .hollywood_square .views-row-5,
  .hollywood_square .views-row-7,
  .hollywood_square .views-row-9,
  .l-home-main--item.views-row-1,
  .l-home-main--item.views-row-3,
  .l-home-main--item.views-row-5,
  .l-home-main--item.views-row-7,
  .l-home-main--item.views-row-9,
  .l-home-main--item.views-row-11,
  .l-home-main__item-1,
  .l-home-main__item-3,
  .l-home-main__item-5,
  .l-home-main__item-7,
  .l-home-main__item-9,
  .l-home-main__item-11,
  .vertical-listing__squares .views-row:nth-child(odd) {
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -100%;
  }

  .hollywood_square .views-row-2,
  .hollywood_square .views-row-4,
  .hollywood_square .views-row-6,
  .hollywood_square .views-row-8,
  .l-home-main--item.views-row-2,
  .l-home-main--item.views-row-4,
  .l-home-main--item.views-row-6,
  .l-home-main--item.views-row-8,
  .l-home-main--item.views-row-10,
  .l-home-main--item.views-row-12,
  .l-home-main__item-2,
  .l-home-main__item-4,
  .l-home-main__item-6,
  .l-home-main__item-8,
  .l-home-main__item-10,
  .l-home-main__item-12,
  .vertical-listing__squares .views-row:nth-child(even) {
    float: left;
    width: 50%;
    margin-left: 50%;
    margin-right: -100%;
    clear: none;
  }
}
@media (min-width: 1101px) {
  .hollywood_square .views-row-1,
  .hollywood_square .views-row-4,
  .hollywood_square .views-row-7,
  .l-home-main--item.views-row-1,
  .l-home-main--item.views-row-4,
  .l-home-main--item.views-row-7,
  .l-home-main--item.views-row-10,
  .l-home-main__item-1,
  .l-home-main__item-4,
  .l-home-main__item-7,
  .l-home-main__item-10,
  .vertical-listing__squares .views-row:nth-child(3n+1) {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -100%;
    clear: left;
  }

  .hollywood_square .views-row-2,
  .hollywood_square .views-row-5,
  .hollywood_square .views-row-8,
  .l-home-main--item.views-row-2,
  .l-home-main--item.views-row-5,
  .l-home-main--item.views-row-8,
  .l-home-main--item.views-row-11,
  .l-home-main__item-2,
  .l-home-main__item-5,
  .l-home-main__item-8,
  .l-home-main__item-11,
  .vertical-listing__squares .views-row:nth-child(3n+2) {
    float: left;
    width: 33.33333%;
    margin-left: 33.33333%;
    margin-right: -100%;
    clear: none;
  }

  .hollywood_square .views-row-3,
  .hollywood_square .views-row-6,
  .hollywood_square .views-row-9,
  .l-home-main--item.views-row-3,
  .l-home-main--item.views-row-6,
  .l-home-main--item.views-row-9,
  .l-home-main--item.views-row-12,
  .l-home-main__item-3,
  .l-home-main__item-6,
  .l-home-main__item-9,
  .l-home-main__item-12,
  .vertical-listing__squares .views-row:nth-child(3n+3) {
    float: left;
    width: 33.33333%;
    margin-left: 66.66667%;
    margin-right: -100%;
    clear: none;
  }
}
/**
 * Main bottom layout.
 */
/**
 * Secondary layout.
 */
.l-home-secondary__title,
.l-home-secondary__item {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 24px;
  padding-right: 24px;
}

.l-home-secondary__item {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 961px) {
  .l-home-secondary__item {
    width: 83.33333%;
  }
}
@media (min-width: 1141px) {
  .l-home-secondary__item {
    width: 66.66667%;
  }
}

/**
 * @file
 * Layout styles for a sidebar.
 */
@media (min-width: 961px) {
  .l-story__full {
    float: left;
    width: 62.5%;
    margin-left: 0%;
    margin-right: -100%;
  }

  .l-story__main {
    float: left;
    width: 75%;
    margin-left: 0%;
    margin-right: -100%;
    margin-bottom: 0;
  }

  .l-story__sidebar {
    clear: none;
    float: right;
    width: 37.5%;
    margin-right: 0%;
    margin-left: -100%;
    margin-top: 2em;
    /*min-width: 350px;*/
  }
}
@media (min-width: 1161px) {
  .l-story__full {
    float: left;
    width: 68.75%;
    margin-left: 0%;
    margin-right: -100%;
  }

  .story-full-width .l-story__full {
    width: 100%;
  }

  .l-story__main {
    float: left;
    width: 62.5%;
    margin-left: 6.25%;
    margin-right: -100%;
  }

  .l-story__sidebar {
    clear: none;
    float: right;
    width: 31.25%;
    margin-right: 0%;
    margin-left: -100%;
  }
}
/**
 * @file
 * Layout styles for a sidebar.
 */
.l-vertical__full,
.l-vertical__main,
.l-vertical__sidebar,
.l-vertical-recent__item-1,
.l-vertical-recent__item-2,
.l-vertical-recent__item-3 {
  margin-top: 36px;
  margin-bottom: 36px;
}

@media (max-width: 1040px) {
  .l-vertical__main {
    margin-top: 0;
  }
}

.l-vertical__summary {
  clear: none;
  float: left;
  width: 37.5%;
  margin-left: 0%;
  margin-right: -100%;
}

.node-type-vertical .l-vertical__summary {
  float: left;
  width: 112.5%;
  margin-left: 0%;
  margin-right: -100%;
}
@media (min-width: 800px) {
  .node-type-vertical .l-vertical__summary {
    clear: none;
    float: right;
    width: 31.25%;
    margin-right: 6.25%;
    margin-left: -100%;
  }
}

.l-vertical__prompt {
  clear: none;
  float: left;
  width: 75%;
  margin-left: 37.5%;
  margin-right: -100%;
}

@media (min-width: 601px) {
  .l-vertical__summary {
    clear: none;
    float: left;
    width: 18.75%;
    margin-left: 0%;
    margin-right: -100%;
  }

  .l-vertical__prompt {
    clear: none;
    float: left;
    width: 18.75%;
    margin-left: 18.75%;
    margin-right: -100%;
  }

  .l-vertical__summary-wrapper {
    padding: 24px;
  }
}
@media (min-width: 781px) {
  .l-vertical__summary {
    float: left;
    width: 15.625%;
    margin-left: 0%;
    margin-right: -100%;
  }

  .l-vertical__prompt {
    clear: none;
    float: left;
    width: 21.875%;
    margin-left: 15.625%;
    margin-right: -100%;
  }
}
@media (min-width: 981px) {
  .l-vertical__prompt {
    clear: none;
    float: left;
    width: 25%;
    margin-left: 12.5%;
    margin-right: -100%;
  }

  .l-vertical__summary {
    clear: none;
    float: left;
    width: 12.5%;
    margin-left: 0%;
    margin-right: -100%;
  }
}
@media (min-width: 961px) {
  .l-vertical__main {
    clear: none;
    float: left;
    width: 25%;
    margin-left: 12.5%;
    margin-right: -100%;
  }

  .l-vertical__sidebar {
    clear: none;
    float: left;
    width: 12.5%;
    margin-left: 0%;
    margin-right: -100%;
    min-width: 350px;
  }
}
.l-vertical-recent__item-2,
.l-vertical-recent__item-3 {
  display: none;
  clear: none;
}

@media (min-width: 481px) {
  .l-vertical-recent__item-1 {
    float: left;
    width: 18.75%;
    margin-left: 0%;
    margin-right: -100%;
  }

  .l-vertical-recent__item-2 {
    display: block;
    float: left;
    width: 18.75%;
    margin-left: 18.75%;
    margin-right: -100%;
  }
}
@media (min-width: 1141px) {
  .l-vertical-recent__item-1 {
    float: left;
    width: 12.5%;
    margin-left: 0%;
    margin-right: -100%;
  }

  .l-vertical-recent__item-2 {
    float: left;
    width: 12.5%;
    margin-left: 12.5%;
    margin-right: -100%;
  }

  .l-vertical-recent__item-3 {
    display: block;
    float: left;
    width: 12.5%;
    margin-left: 25%;
    margin-right: -100%;
  }
}
/* Component (SMACSS module) rules */
/**
 * @file
 * Markup free clearing.
 *
 * @see http://perishablepress.com/press/2009/12/06/new-clearfix-hack
 */
.clearfix:before, .clearfix:after,
body:before,
.audio-player__wrapper:before,
.lead-in:before,
.story-list:before,
body:after,
.audio-player__wrapper:after,
.lead-in:after,
.story-list:after {
  content: "";
  display: table;
}
.clearfix:after,
body:after,
.audio-player__wrapper:after,
.lead-in:after,
.story-list:after {
  clear: both;
}

/**
 * @file
 * Hidden
 */
.js-hide, .element-hidden, .hidden {
  display: none;
}

/**
 * For anything you want to hide on page load when JS is enabled, so
 * that you can use the JS to control visibility and avoid flicker.
 */
/**
 * Hide elements from all users.
 *
 * Used for elements which should not be immediately displayed to any user. An
 * example would be a collapsible fieldset that will be expanded with a click
 * from a user. The effect of this class can be toggled with the jQuery show()
 * and hide() functions.
 */
/**
 * @file
 * Inline styles
 */
.container-inline {
  /* Fieldset contents always need to be rendered as block. */
}
.container-inline div,
.container-inline label {
  display: inline;
}
.container-inline .fieldset-wrapper {
  display: block;
}

/* List of links generated by theme_links() */
.inline {
  display: inline;
  padding: 0;
}
.inline li {
  display: inline;
  list-style-type: none;
  padding: 0 1em 0 0;
}

/* The inline field label used by the Fences module */
span.field-label {
  padding: 0 1em 0 0;
}

/**
 * @file
 * Mixins and extends for the visually hidden component.
 */
/* Makes an element visually hidden, but accessible. */
.l-home-featured .pane-title, .l-home-main__title, .element-focusable, .element-invisible, .audio-player__wrapper h3, .lead-in__site-name,
.lead-in__site-slogan, .navbar-2 .pane__title, .bio__title {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Turns off the visually-hidden effect. */
.element-focusable:active, .element-focusable:focus {
  position: static !important;
  clip: auto;
  height: auto;
  width: auto;
  overflow: auto;
}

/* Makes an element visually hidden by default, but visible when focused. */
/* Add Drupal 7's version of the class names. */
/**
 * @file
 * Button module.
 */
.button--tight, .l-episode__recent_stories .more-link a, .quicktabs_main .more-link a, .view-story-association .more-link a, .pane-donor-blog .more-link a, .home__secondary .more-link,
.button {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #4188bc;
  color: white;
  margin-top: 12px;
  margin-bottom: 12px;
  line-height: 60px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
  font-weight: 700;
}
.button--tight:hover, .l-episode__recent_stories .more-link a:hover, .quicktabs_main .more-link a:hover, .view-story-association .more-link a:hover, .pane-donor-blog .more-link a:hover, .home__secondary .more-link:hover,
.button--tight:active, .l-episode__recent_stories .more-link a:active, .quicktabs_main .more-link a:active, .view-story-association .more-link a:active, .pane-donor-blog .more-link a:active, .home__secondary .more-link:active,
.is-active.button--tight, .l-episode__recent_stories .more-link a.is-active, .quicktabs_main .more-link a.is-active, .view-story-association .more-link a.is-active, .pane-donor-blog .more-link a.is-active, .home__secondary .is-active.more-link,
.button:hover,
.button:active,
.button.is-active {
  background: #d3401e;
}

/* We need a selector with equal or higher specicity than a:href */
a.button--tight, .l-episode__recent_stories .more-link a, .quicktabs_main .more-link a, .view-story-association .more-link a, .pane-donor-blog .more-link a, .home__secondary a.more-link,
a.button {
  color: white;
}

.button--tight {
  width: auto;
  padding: 12px 30px;
  /* 
    We don't want this to break into two lines
    @todo Check to see if this effects anything else.
  */
  /* 
    We're actually going to re-do this and check so that the button wraps
    @todo Check to see if this effects anything else.
  */
  display: inline-block;
  line-height: 1em;
}

.ajax-progress-throbber:after {
  content: "Loading...";
  text-align: center;
  display: block;
  color: #555;
  text-transform: uppercase;
  font-size: 14px;
}

.collapse-processed.collapsed > .fieldset-wrapper {
  display: none;
}

/**
 * @file
 * Audio player.
 */
.page-node-embedded {
  background: none;
}

.audio-player__wrapper .mediaelement-audio {
  float: left;
}

.audio-player__wrapper .item-list {
  margin: 0;
  display: inline;
  list-style-type: none;
}

.page-node-embedded .audio-player__wrapper {
  margin: 0;
}

.audio-player__wrapper {
  margin-top: 1.5em;
  margin-bottom: 2.2em;
  height: 70px;
  background: #cccccb !important;
  position: relative;
}
.audio-player__wrapper.mediaelement-audio.media-element.file-default .mejs-container {
  width: 99% !important;
}
.audio-player__wrapper .mediaelement-audio {
  height: 40px;
}
.audio-player__wrapper .player-utilities {
  margin: 0;
  padding: 0;
}
.audio-player__wrapper .player-utilities li {
  margin: 0;
  padding: 0;
}
.audio-player__wrapper .player-utilities li:last-child {
  margin: 0 5px;
}
.audio-player__wrapper .date-display-single {
  position: absolute;
  top: 42px;
  left: 80px;
  font-size: 16px;
  font-style: italic;
}
.audio-player__wrapper article header {
  display: none;
}

.field-stream-url .mejs-controls div.mejs-time-rail,
.field-stream-url .mejs-controls div.mejs-duration-container {
  display: none;
}

.section-live-steam-schedule .schedule-day {
  display: inline-block;
  margin: 0 2% 1em 0;
  width: 42%;
  background: #eee;
  padding: 2%;
  min-width: 200px;
}

.section-live-steam-schedule .schedule-day h2 {
  padding: 0;
  margin-top: 0;
}

.section-live-steam-schedule table .table-time,
.section-live-steam-schedule table .table-program {
  border: 1px dotted #ddd;
  padding: 5px;
  font-size: 90%;
  background: #fff;
}

.section-live-steam-schedule table th.table-time,
.section-live-steam-schedule table th.table-program {
  background: #ddd;
  border: none;
  font-weight: normal;
  font-style: italic;
}

.player__bottom-bar {
  background-color: #dddddc;
  clear: left;
  width: 100%;
  height: 30px;
}
.player__bottom-bar .player__text {
  font-style: italic;
  font-size: 13px;
  line-height: 1em;
  color: #444;
  float: left;
  margin: 7px 0 0;
  padding-left: 75px;
}
@media (min-width: 450px) {
  .player__bottom-bar .player__text {
    margin: 7px 0 0 5px;
    font-size: 15px;
  }
}
.player__bottom-bar .player__text span {
  display: none;
}
.player__bottom-bar .player__logo {
  float: right;
  margin: 3px 8px 0 0;
  display: none;
}
@media (min-width: 450px) {
  .player__bottom-bar .player__logo {
    display: inline-block;
  }
}
.player__bottom-bar .player__logo a {
  color: #d3401e;
}
.player__bottom-bar .player__logo a:hover {
  color: #4188bc;
}
.player__bottom-bar .player__logo a span {
  display: none;
}
@media (min-width: 650px) {
  .player__bottom-bar .player__text {
    font-size: 0.9em;
    line-height: 1em;
  }
  .player__bottom-bar .player__text span {
    display: inline-block;
    margin-right: 5px;
  }
}

@media (min-width: 961px) {
  .player__text {
    font-size: 0.7em;
  }
}
@media (min-width: 1043px) {
  .player__text {
    font-size: 0.9em;
  }
}

.node-type-blog .pane-news-stories-latest {
  background: white;
  padding: 15px;
  margin: 0 0 1em;
  border: 1px solid #eeeeef;
}
.node-type-blog .pane-news-stories-latest .pane-title {
  font-size: 1em;
  margin: 0;
}

/**
 * @file
 * Recent comment.
 */
.recent-comment {
  position: relative;
  padding: 1.5em;
  background: url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/quotes_png-1433770983') no-repeat #e8f1f7;
  background-position: 98% 4px;
}

.recent-comment__quote p {
  margin: 0;
}

.recent-comment__meta {
  margin: 0;
  padding: 9px 0 18px 0;
  font-size: 14px;
  font-style: italic;
  color: #8c8c94;
}

.recent-comment__discuss {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.recent-comment__discuss a:link,
.recent-comment__discuss a:visited {
  background-color: #4188bc;
  color: white;
  display: block;
  line-height: 36px;
}

.recent-comment__discuss a:hover,
.recent-comment__discuss a:active {
  background-color: #d3401e;
  color: white;
}

/**
 * @file
 * Gigya comments.
 */
.secondary #comments {
  clear: both;
  border-top: 1px solid #eeeeef;
  margin-top: 0;
  display: block;
}
@media (min-width: 961px) {
  .secondary #comments .comments__wrapper {
    float: left;
    width: 62.5%;
    margin-left: 6.25%;
    margin-right: -100%;
  }
}
.secondary #comments .comments__wrapper #gigya-comments {
  border: none;
}

#gigya-comments {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100% !important;
  padding: 36px 24px 48px 24px;
}

.gig-share-bar-container td iframe {
  vertical-align: bottom;
}

.gigya-comments {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding-top: 36px;
  padding-bottom: 48px;
  line-height: 1.125em;
}

div.gig-comments-comment,
div.gig-comments-comment-child {
  margin-top: 12px;
  margin-bottom: 12px;
}

/**
 * @file
 * CTools.
 */
.ctools-locked {
  color: red;
  border: 1px solid red;
  padding: 1em;
}

.ctools-owns-lock {
  background: #FFFFDD none repeat scroll 0 0;
  border: 1px solid #F0C020;
  padding: 1em;
}

.ctools-ajaxing {
  padding-right: 18px !important;
  background: url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/status-active_gif-1433770983') right center no-repeat;
}

div.ctools-ajaxing {
  float: left;
  width: 18px;
  padding-right: 0 !important;
  background-position: center center;
}

/**
 * @file
 * Share count.
 */
.engagement-badge__wrapper {
  position: relative;
}

.engagement-badge {
  position: absolute;
  top: -14px;
  right: -15px;
  height: 30px;
  width: 30px;
  margin: 0;
  background: url(https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/callout_png-1433770985) no-repeat center;
  font-size: 13px;
  line-height: 30px;
}
.engagement-badge:focus, .engagement-badge:hover {
  -webkit-transition: all 0.12s ease-in-out;
  -moz-transition: all 0.12s ease-in-out;
  -o-transition: all 0.12s ease-in-out;
  transition: all 0.12s ease-in-out;
}
.engagement-badge:focus:before, .engagement-badge:hover:before {
  content: 'Join in';
  display: block;
  position: absolute;
  right: 33px;
  bottom: 14px;
  width: 1000px;
  color: #4188bc;
  text-align: right;
}

.node-type-episode h1 {
  margin-bottom: 0;
}
.node-type-episode .pane-node-field-ref-program {
  font-weight: bold;
}
.node-type-episode .pane-node-field-ref-program,
.node-type-episode .pane-node-field-date-broadcast {
  display: inline-block;
  margin: 0 15px 1em 0;
  font-size: .9em;
  line-height: 2em;
}
.node-type-episode .pane-node-field-ref-program .date-display-single,
.node-type-episode .pane-node-field-date-broadcast .date-display-single {
  font-size: .85em;
}
.node-type-episode .pane-node-field-image {
  float: left;
  width: 100%;
  margin: 0;
}
@media (min-width: 501px) {
  .node-type-episode .pane-node-field-image {
    width: 220px;
    margin: 0 30px 15px 0;
  }
}
.node-type-episode .pane-node-field-image .field-image {
  margin: 0;
}
.node-type-episode .share-links {
  clear: both;
  width: 100%;
  display: block;
}
.node-type-episode .share-links ul {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}
.node-type-episode .share-links ul li {
  display: inline-block;
  width: 46%;
  max-width: 250px;
  margin: 0 1% 0 0;
  padding: 0;
}
.node-type-episode .share-links ul li a.button {
  line-height: 40px;
  font-size: .875em;
}
.node-type-episode .share-links ul li a.button.facebook {
  background-color: #3b5998;
}
.node-type-episode .share-links ul li a.button.twitter {
  background-color: #4099ff;
}
.node-type-episode .share-links ul li a.button.facebook:hover,
.node-type-episode .share-links ul li a.button.facebook:active,
.node-type-episode .share-links ul li a.button.twitter:hover,
.node-type-episode .share-links ul li a.button.twitter:active {
  background-color: #d3401e;
}
.node-type-episode .comments {
  margin: 2em 0 0;
}

.l-general__sidebar .pane-node-field-ref-hosts,
.l-general__sidebar .pane-node-field-ref-authors,
.l-general__sidebar .pane-hosted-episodes,
.l-general__sidebar .pane-stories-by-program,
.l-general__sidebar .pane-node-field-ref-producers {
  background: white;
  padding: 15px;
  margin: 0 0 1em;
  border: 1px solid #eeeeef;
}
.l-general__sidebar .pane-node-field-ref-hosts .pane-title,
.l-general__sidebar .pane-node-field-ref-authors .pane-title,
.l-general__sidebar .pane-hosted-episodes .pane-title,
.l-general__sidebar .pane-stories-by-program .pane-title,
.l-general__sidebar .pane-node-field-ref-producers .pane-title {
  font-size: 1em;
  margin: 0;
}
.l-general__sidebar .pane-node-field-ref-hosts .bio,
.l-general__sidebar .pane-node-field-ref-authors .bio,
.l-general__sidebar .pane-hosted-episodes .bio,
.l-general__sidebar .pane-stories-by-program .bio,
.l-general__sidebar .pane-node-field-ref-producers .bio {
  margin: 0;
  padding: 0;
  border: none;
}
.l-general__sidebar .pane-node-field-ref-hosts .bio .bio__title,
.l-general__sidebar .pane-node-field-ref-authors .bio .bio__title,
.l-general__sidebar .pane-hosted-episodes .bio .bio__title,
.l-general__sidebar .pane-stories-by-program .bio .bio__title,
.l-general__sidebar .pane-node-field-ref-producers .bio .bio__title {
  position: relative !important;
  height: auto;
  width: auto;
  margin: .25em 0;
}
.l-general__sidebar .pane-node-field-ref-hosts .bio .about__image,
.l-general__sidebar .pane-node-field-ref-authors .bio .about__image,
.l-general__sidebar .pane-hosted-episodes .bio .about__image,
.l-general__sidebar .pane-stories-by-program .bio .about__image,
.l-general__sidebar .pane-node-field-ref-producers .bio .about__image {
  margin: 0 0 5px 5px;
  float: right;
  width: 100px;
}
.l-general__sidebar .view-stories-by-program .views-field-title,
.l-general__sidebar .view-hosted-episodes .views-field-title {
  font-weight: bold;
  font-size: 0.88889em;
  line-height: 1.26563em;
  margin-top: 1.125em;
  margin-bottom: 0em;
}
.l-general__sidebar .view-hosted-episodes .date-display-single {
  font-size: .75em;
  color: #555;
}
.l-general__sidebar .pane-episode-recommend {
  background: white;
  padding: 15px;
  margin: 0 0 1em;
  border: 1px solid #eeeeef;
}
.l-general__sidebar .pane-episode-recommend .views-row {
  margin: 0 0 .75em;
}
.l-general__sidebar .pane-episode-recommend h2 {
  margin: .25em 0 1em;
  font-size: 1em;
}
.l-general__sidebar .pane-episode-recommend .views-field-title {
  margin: 0;
  font-size: .875em;
  line-height: 1.25em;
  font-weight: bold;
}
.l-general__sidebar .pane-episode-recommend .field-date-broadcast {
  margin: 0;
  font-size: .75em;
  color: #8c8c94;
}

.pane-episodes-list-by-program,
.pane-collections {
  clear: both;
  background: #fafafa;
  padding: 20px;
  margin: 1em 0;
}
.pane-episodes-list-by-program h2,
.pane-collections h2 {
  margin-top: 0;
}

.pane-episodes-list-by-program .views-row {
  border-top: 1px solid #eeeeef;
  padding: 15px 0;
}
.pane-episodes-list-by-program .story-list {
  border-bottom: none;
}
.pane-episodes-list-by-program .mediaelement-audio {
  display: inline-block;
  vertical-align: top;
  margin: 10px 0 0;
}
.pane-episodes-list-by-program .views-field-nid {
  display: inline-block;
  font-size: .875em;
  width: 90%;
}
.pane-episodes-list-by-program .story-list__title-link,
.pane-episodes-list-by-program .story-list__title-link:link,
.pane-episodes-list-by-program .story-list__title-link:visited {
  color: #4188bc;
  font-size: 1em;
  line-height: 1em;
}
.pane-episodes-list-by-program a {
  margin: 0;
  font-weight: bold;
  display: inline;
  font-size: 0.75em;
}
.pane-episodes-list-by-program .date-display-single {
  margin: 0;
  display: inline;
  font-size: 0.75em;
  line-height: 18px;
  text-style: italic;
  font-weight: 500;
  color: #8c8c94;
}
.pane-episodes-list-by-program .contextual-links-wrapper {
  display: none !important;
}

.episodes-list-page .feature-divider {
  display: none;
}
.episodes-list-page .home__main,
.episodes-list-page .home__main-bottom {
  display: none;
}
.episodes-list-page .home__featured {
  background: #fafafa;
  padding-bottom: 2em;
}
.episodes-list-page .home__featured h2.pane-title {
  padding: 1em 0 0;
  margin: 0;
}
.episodes-list-page .pane-page-content {
  padding: 0 24px;
}
.episodes-list-page .views-exposed-form {
  background: #eee;
  padding: 15px 2% 20px;
  width: 95.33333%;
  border-bottom: 1px solid #e5e5e5;
}
.episodes-list-page .views-exposed-form .views-exposed-widget {
  margin: 0;
  display: inline-block;
}
.episodes-list-page .view-episodes-by-program .views-row {
  display: inline-block;
  margin: 1em 0 0;
  width: 94%;
  padding: 30px 3%;
  vertical-align: top;
  background: #fff;
  border-bottom: 1px solid #eeeeef;
  min-height: 250px;
}
.episodes-list-page .view-episodes-by-program .views-row.promo-box--ad {
  background: #e8f1f7;
}
@media (min-width: 961px) {
  .episodes-list-page .view-episodes-by-program .views-row {
    width: 44%;
    margin: 2em 0 0;
    padding: 30px 2%;
  }
  .episodes-list-page .view-episodes-by-program .views-row:nth-child(even) {
    margin-left: 3%;
  }
}
@media (min-width: 1140px) {
  .episodes-list-page .view-episodes-by-program .views-row {
    width: 27%;
  }
  .episodes-list-page .view-episodes-by-program .views-row:nth-child(even) {
    margin-left: 0;
  }
  .episodes-list-page .view-episodes-by-program .views-row:nth-child(3n+2) {
    margin-left: 3%;
    margin-right: 3%;
  }
}
.episodes-list-page .view-episodes-by-program h2 {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.3em;
  margin: 0 0 5px;
}
.episodes-list-page .view-episodes-by-program .story__meta, .episodes-list-page .view-episodes-by-program .field-fc-story-creators,
.episodes-list-page .view-episodes-by-program .field-date-published {
  display: inline;
  margin: 0 5px 0 0;
  font-size: 14px;
}
.episodes-list-page .view-episodes-by-program .field-teaser {
  font-size: .875em;
  line-height: 1.25em;
}
.episodes-list-page .view-episodes-by-program .audio-player__wrapper {
  clear: both;
  width: 100%;
  margin: 15px 0 0;
}
.episodes-list-page .view-episodes-by-program .audio-player__wrapper .mejs-controls div.mejs-time-rail {
  display: none;
}

/**
 * @file
 * Large feature.
 */
@media (min-width: 601px) {
  .feature {
    overflow: visible;
  }
}

.feature__title {
  padding-top: 20px;
  margin-top: 0em;
  margin-bottom: 0.35526em;
  font-size: 1.38889em;
  line-height: 1.35em;
}
@media (min-width: 321px) {
  .feature__title {
    font-size: 1.72222em;
    line-height: 1.15403em;
  }
}
@media (min-width: 481px) {
  .feature__title {
    font-size: 2.11111em;
    line-height: 1.15461em;
  }
}
@media (min-width: 1201px) {
  .feature__title {
    font-size: 2.27778em;
    line-height: 1.15244em;
  }
}

.feature__title a:link, .feature__title a:visited {
  color: #33333c;
}

.feature__title a:hover, .feature__title a:focus {
  color: #d3401e;
}

.feature__image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% top;
  margin-bottom: 0;
}
@media (min-width: 721px) {
  .feature__image {
    display: block;
    height: 360px;
  }
}

.feature__image-inline {
  display: block;
}
@media (min-width: 721px) {
  .feature__image-inline {
    display: none;
  }
}

.feature__fade-out-container {
  position: relative;
  overflow: hidden;
}
@media (min-width: 721px) {
  .feature__fade-out-container {
    display: block;
  }
}

.feature__body {
  color: #8c8c94;
  margin-bottom: 0;
}
.feature__body.is-optional {
  display: none;
}
@media (min-width: 601px) {
  .feature__body.is-optional {
    display: block;
  }
}

/**
 * @file
 * Feature divider.
 */
.feature-divider {
  display: none;
}
@media (min-width: 480px) {
  .feature-divider {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    clear: both;
    height: 1px;
    margin: 2em 0;
    background-color: #eeeeef;
  }
}

@media (max-width: 1040px) {
  .home__featured .feature-divider {
    margin-top: 0;
  }
}

/**
 * @file
 * Feed icon.
 */
.feed-icon {
  text-align: right;
}

.field-updated {
  color: #8C8C94;
}

.field-updated-label {
  margin-right: 0px;
  font-size: 80%;
  font-weight: bold;
}

.field-updated.content {
  font-size: 70%;
}

/**
 * @file
 * FlexSlider slide show.
 */
.recent-stories {
  text-align: center;
}

.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.loading .flex-viewport {
  max-height: 300px;
}

.recent-stories__title {
  font-size: 1em;
  line-height: 1.3125em;
  margin-top: 0.375em;
}

.flex-control-nav,
.flex-control-nav {
  display: block;
  margin: 0;
  list-style-type: none;
  text-align: center;
}

.flex-control-nav li,
.flex-control-nav li {
  margin: 6px;
  display: inline-block;
}

.flex-control-nav li a {
  display: block;
  width: 24px;
  height: 24px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  border-radius: 16px;
  text-indent: -9999px;
  background-color: #f2f2f2;
}

.flex-control-nav li a.flex-active {
  background-color: rgba(65, 136, 188, 0.66) !important;
}

.recent-stories {
  position: relative;
}

.story-slideshow {
  overflow: hidden;
  position: relative;
  clear: both;
}
.story-slideshow figure {
  text-align: center;
}
.story-slideshow figure figcaption {
  text-align: left;
}
@media (max-width: 481px) {
  .story-slideshow figure img {
    max-height: 271px;
  }
}

.node-page .story-slideshow {
  overflow: visible;
}

.flex-control-nav li {
  /* a {
      @extend %slideshow__nav-link;

      &:hover,
      &:focus,
      &.flex-active {
        @extend %slideshow__nav-link-is-hover;
      }
    }*/
}

/* Direction Nav -- set directionNav: true in scripts.js to turn this on */
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flex-direction-nav a {
  outline: none;
  width: 30px;
  height: 30px;
  margin: -20px 0 0;
  display: block !important;
  background: url(https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/bg_direction_nav_png-1433770986) no-repeat 0 0;
  position: absolute;
  top: 120px;
  cursor: pointer;
  text-indent: 9999px;
  opacity: 1 !important;
  overflow: hidden;
}

.flex-direction-nav .flex-next,
.flex-direction-nav .flex-next:hover {
  background-position: 100% 0;
  right: -15px !important;
}

.flex-direction-nav .flex-prev,
.flex-direction-nav .flex-prev:hover {
  left: -15px !important;
}

@media (min-width: 601px) {
  .flex-direction-nav a {
    top: 200px;
  }
}
/* Flexslider wanted to apply styles to the sections section. Not so fast... */
.recent-stories.flexslider {
  margin: 0;
  background: none;
  border: none;
  border-radius: none;
  -webkit-border-radius: none;
  -moz-border-radius: none;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  overflow: hidden;
}

/**
 * @file
 * Fluid width video css based on:
 * http://css-tricks.com/NetMag/FluidWidthVideo/Article-FluidWidthVideo.php
 */
/*video {
  width: 100%    !important;
  height: auto   !important;
}
iframe, object, embed {max-width: 100%;}*/
.fluid-video {
  position: relative;
  padding-bottom: 56.25%;
  /* 16/9 ratio */
  padding-top: 30px;
  /* IE6 workaround */
  height: 0;
  overflow: hidden;
}

.fluid-video iframe,
.fluid-video object,
.fluid-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.fluid-video {
  margin: 0 0 1em;
}
.fluid-video .fluid-video {
  padding-top: 0;
}

.nochop {
  position: relative;
  width: 100%;
  margin: 0 0 1em;
  overflow: hidden;
}
.nochop iframe,
.nochop object,
.nochop embed {
  width: 100%;
}

.scroll .fluid-video,
.fluid-video .scroll,
.scroll.nochop {
  overflow-y: scroll !important;
}

/**
 * @file
 * Follow prompt.
 */
.follow-prompt,
.vertical-follow-button {
  display: none;
}

.follow-prompt {
  display: none;
  font-size: 0.77778em;
  line-height: 0.96429em;
  font-weight: 700;
  text-align: center;
  color: #4188bc;
}
.follow-prompt p {
  margin-top: 0;
  margin-bottom: 0.45em;
}

.flag-subscribe-person,
.flag-subscribe-section {
  font-style: italic;
}
.flag-subscribe-person a,
.flag-subscribe-section a {
  color: #4099ff;
  font-family: "Alegreya Sans", "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, "Nimbus Sans L", sans-serif;
}
.flag-subscribe-person a:hover,
.flag-subscribe-section a:hover {
  color: #d3401e;
}
.flag-subscribe-person .flag-message,
.flag-subscribe-section .flag-message {
  position: relative;
  top: 0;
  font-size: 1em;
  color: green;
}
.flag-subscribe-person .flag-message.flag-unflagged-message,
.flag-subscribe-section .flag-message.flag-unflagged-message {
  color: #d3401e;
}

.story__tags .flag-wrapper a {
  font-weight: normal;
}

.section-sections .follow-pane h2,
.node-type-person .follow-pane h2 {
  font-size: 1em;
  margin: 1em 0;
}
.section-sections .flag-wrapper a,
.node-type-person .flag-wrapper a {
  background-color: #E8F1F7;
  color: #4188BC;
  -webkit-border-radius: 25px 25px;
  -moz-border-radius: 25px / 25px;
  border-radius: 25px / 25px;
  padding-top: 12px;
  padding-bottom: 12px;
  margin: 0 auto;
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, "Nimbus Sans L", sans-serif;
  text-indent: 9999px;
  display: inline-block;
  overflow: hidden;
  width: 200px;
  height: 16px;
}
.section-sections .flag-wrapper a:hover,
.node-type-person .flag-wrapper a:hover {
  background-color: #D3401E;
  color: white;
}
.section-sections .flag-wrapper a:after,
.node-type-person .flag-wrapper a:after {
  content: "Follow";
  position: absolute;
  top: -16px;
  left: 77px;
  text-indent: 0;
}
.section-sections .flag-wrapper a.unflag-action,
.node-type-person .flag-wrapper a.unflag-action {
  background-color: transparent;
  color: #d3401e;
  -webkit-border-radius: 0 0;
  -moz-border-radius: 0 / 0;
  border-radius: 0 / 0;
  padding-top: 12px;
  padding-bottom: 12px;
  margin: 0 auto;
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, "Nimbus Sans L", sans-serif;
  text-indent: 9999px;
  display: inline-block;
  overflow: hidden;
  width: 300px;
  height: 16px;
}
.section-sections .flag-wrapper a.unflag-action:after,
.node-type-person .flag-wrapper a.unflag-action:after {
  content: "You are following.";
  left: 0;
}
.section-sections .follow-footer,
.node-type-person .follow-footer {
  font-size: .875em;
  font-style: italic;
}

/**
 * @file
 * Search form styling.
 */
.full-width,
.search-form .form-text,
.pane-search-form .form-text {
  width: 100%;
}

.search-form .container-inline,
.pane-search-form .container-inline {
  position: relative;
}

.search-form .form-type-textfield,
.pane-search-form .form-type-textfield {
  display: block;
  margin-right: 70px;
}
.search-form .form-type-textfield label,
.pane-search-form .form-type-textfield label {
  display: none;
}

.search-form .form-text,
.pane-search-form .form-text {
  margin-bottom: 0.3em;
  padding-top: 0;
}

.search-form .form-submit,
.pane-search-form .form-submit {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
}

/**
 * @file
 * Footer styling.
 */
.footer {
  border-top: 1px solid #eeeeef;
  background: #ececec;
  text-align: center;
  font-size: 13px;
  color: #8c8c94;
  padding-top: 12px;
  padding-bottom: 12px;
}
.footer p {
  margin: 12px;
}
@media (min-width: 481px) {
  .footer p {
    margin: 6px 0;
  }
}

/* Footer menus. */
.footer .menu {
  text-align: center;
  margin: 6px 0;
}

.footer .menu li {
  list-style: none;
  display: inline;
  padding: 0 0 0 6px;
  text-align: center;
}
.footer .menu li:after {
  content: " | ";
}
.footer .menu li.last:after {
  content: "";
}

.footer .menu a:link, .footer .menu a:visited {
  color: #8c8c94;
  padding-right: 6px;
}
.footer .menu a:hover, .footer .menu a:focus, .footer .menu a:active {
  color: #d3401e;
}

/**
 * @file
 * Global Alert.
 */
#dialog.window {
  background-color: #fffce5;
  padding: 1% 2% 0.5%;
  margin: 1em 0 2em;
  display: none;
  border: 1px solid #ed5;
  position: relative;
  padding: 15px;
}
#dialog.window h2 {
  margin: 0 0 .25em;
}
#dialog.window p {
  margin: 0 0 .25em;
  font-size: 16px;
}
#dialog.window .links-utility__text {
  padding: 0 10px 0 0;
  text-transform: uppercase;
}
#dialog.window i.ss-icon {
  margin: 3px 3px 0 10px;
  display: inline-block;
}

#dialog.window.soundworks {
  background-color: #00a0de;
  background-image: url(https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/logo_soundworks_png-1433770986);
  background-size: 50px;
  background-repeat: no-repeat;
  background-position: 20px;
  border: none;
  color: #fff;
  padding-left: 90px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}
#dialog.window.soundworks p {
  padding-right: 30px;
  line-height: 1.25em;
}
#dialog.window.soundworks p strong {
  font-size: 20px;
}
#dialog.window.soundworks p .hide-mobile {
  display: none;
}
#dialog.window.soundworks .button {
  width: 130px;
  padding: 0;
  line-height: 32px;
  display: inline-block;
  background: #d3401e;
  font-size: 16px;
  margin: 10px 10px 0 0;
}
#dialog.window.soundworks .button:hover {
  background: white;
  color: #d3401e;
}
#dialog.window.soundworks .close {
  position: absolute;
  right: 20px;
  top: 13px;
  color: #fff;
}
@media (min-width: 765px) {
  #dialog.window.soundworks {
    background-size: 40px;
    padding-left: 90px;
  }
  #dialog.window.soundworks p .hide-mobile {
    display: inlineGlob;
  }
}

/**
 * @file
 * Header module.
 */
/* Background image for header area. */
.lt-ie10 {
  background: url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/header--gradient-ie9_gif-1433770987') repeat-x top right white;
}

.header__bg {
  background: url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/header--background_png-1433770989') no-repeat top right;
  background: url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/header--background_png-1433770989') no-repeat top right, -webkit-gradient(linear, 50% 0%, 50% 569, color-stop(0%, #e8f1f7), color-stop(100%, #ffffff)) white;
  background: url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/header--background_png-1433770989') no-repeat top right, -webkit-linear-gradient(top, #e8f1f7, #ffffff 569px) white;
  background: url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/header--background_png-1433770989') no-repeat top right, -moz-linear-gradient(top, #e8f1f7, #ffffff 569px) white;
  background: url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/header--background_png-1433770989') no-repeat top right, -o-linear-gradient(top, #e8f1f7, #ffffff 569px) white;
  background: url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/header--background_png-1433770989') no-repeat top right, linear-gradient(top, #e8f1f7, #ffffff 569px) white;
  background: url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/header--background_png-1433770989') no-repeat top right, linear-gradient(to bottom, #e8f1f7, #ffffff 569px) white;
}

/* Lead-in stripe on top of page. */
.lead-in {
  color: #4188bc;
  position: relative;
}

.lead-in__description, .lead-in__credit {
  float: left;
  margin: 0;
  padding: 0 24px;
  font-size: 0.75em;
  line-height: 2em;
}

.lead-in__description {
  font-style: italic;
  display: none;
}
@media (min-width: 561px) {
  .lead-in__description {
    display: block;
  }
}

@media (min-width: 561px) {
  .lead-in__credit {
    float: right;
  }
}

.lead-in__powered-by {
  float: left;
  padding-right: 6px;
  font-weight: 500;
  font-style: italic;
  color: #ddd;
}

a.story__program-the-world,
.story__program-the-world {
  display: inline-block;
  width: 120px;
  height: 14px;
  background: url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/icon-globe-text_png-1433770990') no-repeat;
  opacity: 0.85;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
}
.story__program-the-world:hover {
  opacity: 1;
}

.b-right a.lead-in__icon {
  color: #ddd;
  margin: 4px -2px 0 0;
  font-size: 16px;
  float: left;
  background: none;
}
.b-right a.lead-in__icon:hover {
  color: #fff;
}
.b-right a.lead-in__icon span {
  display: none;
}

.l-lead-in {
  position: relative;
}

a.header-donate-link {
  display: none;
  position: absolute;
  top: 13px;
  margin: 0;
  padding: 0 20px;
  font-size: 0.75em;
  line-height: 1em;
  right: 270px;
  border-right: 2px solid #ddd;
}
@media (min-width: 561px) {
  a.header-donate-link {
    display: block;
  }
}
a.header-donate-link i.ss-icon.ss-standard {
  margin: 0px 7px 0;
  display: inline-block;
  float: left;
}
a.header-donate-link span.links-utility__text {
  margin: 0;
  display: inline-block;
}

body.page-entity-iframe {
  padding: 2%;
}
body.page-entity-iframe h1 {
  margin-top: .25em;
}
body.page-entity-iframe .links.inline,
body.page-entity-iframe .field-audio-files .form-wrapper {
  display: none;
}
body.page-entity-iframe .field-lullaby-upload,
body.page-entity-iframe .field-lullaby-video {
  margin: 0 0 1em;
  display: block;
}
body.page-entity-iframe .field-photo {
  float: right;
  margin: 0 0 15px 15px;
}
body.page-entity-iframe .field-audio-files {
  background: #f5f5f5;
  padding: 20px;
  border-bottom: 1px solid #eeeeef;
}
body.page-entity-iframe .field-audio-files h2 {
  display: inline-block;
  margin: 0 15px 15px 0;
  font-size: 1.25em;
}
body.page-entity-iframe .field-audio-files:first-of-type {
  border-top: 1px solid #eeeeef;
}

.entity-embed {
  margin: 0 0 1em;
  display: block;
  border: none;
  padding: 0;
}
.entity-embed .fieldset-wrapper .form-item.form-type-textarea label {
  display: none;
}
.entity-embed .fieldset-wrapper textarea {
  width: 100%;
  border-color: #eeeeef;
  padding: 2%;
  color: #555;
  font-size: .85em;
}
.entity-embed .fieldset-wrapper textarea:focus {
  border-color: #555;
}

body.playlist-embed-node.admin-menu-with-shortcuts,
body.playlist-embed-node.admin-menu {
  margin-top: 0 !important;
}

.playlist-embed-node #toolbar,
.playlist-embed-node #admin-menu {
  display: none !important;
}
.playlist-embed-node .pane-songs-from-playlist {
  margin: 0 !important;
  padding: 0;
  background: #fff;
}
.playlist-embed-node .pane-songs-from-playlist .views-row {
  padding: 5px 0 0;
  border: none;
}
.playlist-embed-node .pane-songs-from-playlist .view-songs-from-playlist .views-field-title,
.playlist-embed-node .pane-songs-from-playlist .view-songs-from-playlist .audio-player__wrapper {
  width: 100%;
  margin: 0;
}

.playlist-embed-node.toolbar,
.playlist-embed-node.toolbar-drawer {
  padding: 0 !important;
}

html body.admin-menu-with-shortcuts.page-node-embedded,
body.page-node-embedded {
  background: none;
  margin-top: 0 !important;
}
html body.admin-menu-with-shortcuts.page-node-embedded #admin-menu,
body.page-node-embedded #admin-menu {
  display: none;
}

/**
 * @file
 * Image.
 */
.image__credit {
  font-size: 0.72222em;
  line-height: 1.55769em;
  color: #6e6e81;
  margin: 0;
  display: inline-block;
  width: 100%;
}

.field-caption {
  font-size: 0.83333em;
  line-height: 1.35em;
  color: #6e6e81;
  display: inline-block;
  margin: 10px 5px 0 0;
  width: 100%;
}
.field-caption p {
  margin: 0;
  display: inline-block;
}

.image__credit p {
  display: inline-block;
  margin: 0;
}

.pane-node-field-image .field-image {
  margin-bottom: 2em;
}

/**
 * @file
 * "Listen" popup player options.
 */
.node-type-live-stream.section-live h2 {
  font-size: 1em;
  margin: 1em 0 0;
}
.node-type-live-stream.section-live .node-live-stream h2 {
  display: none;
}
.node-type-live-stream.section-live .l-section--main {
  padding: 1em 15px;
  min-width: 350px;
}
.node-type-live-stream.section-live .panel-pane {
  clear: both;
}
.node-type-live-stream.section-live .audio-player__wrapper {
  margin: .5em 0 0;
}
.node-type-live-stream.section-live .pane-ypdir {
  position: relative;
  top: -31px;
  left: 80px;
  font-size: 0.9em;
}
.node-type-live-stream.section-live .pane-ypdir p {
  margin: 0;
}
.node-type-live-stream.section-live #now-playing-stream {
  margin: 0 0 1.5em;
  float: left;
  width: 100%;
}
.node-type-live-stream.section-live #now-playing-stream table {
  margin: 0 5px 0 0;
  float: left;
  display: inline;
}
.node-type-live-stream.section-live #now-playing-stream tr {
  display: inline;
  margin: 5px 0 0 5px;
  float: left;
  font-size: 14px;
  font-style: italic;
}
.node-type-live-stream.section-live #now-playing-stream .program-schedule {
  display: inline;
  float: left;
  margin: 0 5px 0 0;
  font-size: 14px;
}
.node-type-live-stream.section-live .view-mode-player_popout {
  margin: 0;
}
.node-type-live-stream.section-live .view-mode-player_popout .field-stream-url .mejs-duration,
.node-type-live-stream.section-live .view-mode-player_popout h2.teaser-list__item-title {
  display: none;
}
.node-type-live-stream.section-live .view-mode-player_popout p {
  margin: 0 0 .5em;
}
.node-type-live-stream.section-live .node-episode.view-mode-player_popout {
  margin: 0 0 1.5em;
}
.node-type-live-stream.section-live .pane-live-stream {
  margin: 0 0 1.5em;
}
.node-type-live-stream.section-live .pane-live-stream h2.node__title {
  display: none;
}
.node-type-live-stream.section-live .soundworks__link {
  margin: 1em 0;
}
.node-type-live-stream.section-live .soundworks__link p {
  margin: 0;
}
.node-type-live-stream.section-live section.sponsors,
.node-type-live-stream.section-live footer.footer {
  display: none;
}

.node-type-story .audio-player--transcript .audio-player__wrapper {
  background-color: transparent !important;
  height: auto;
}

.popout-player .audio-player__wrapper .mediaelement-download-link {
  right: 34px;
}

.page-listen .quicktabs-wrapper {
  background: #832813;
}
.page-listen section.l-section--main {
  border-top: none;
}
.page-listen .tabs__drawer {
  width: 100%;
  margin: 0;
  padding: 0;
  background: none;
}
@media (min-width: 601px) {
  .page-listen .tabs__drawer {
    float: left;
    width: 120px;
    height: 100%;
    min-height: 100%;
  }
}
.page-listen .quicktabs_main {
  clear: none;
  margin: 0;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 30px 15px;
  background: #fafafa;
  height: 100%;
  min-height: 100%;
}
@media (min-width: 601px) {
  .page-listen .quicktabs_main {
    padding: 30px;
  }
}
.page-listen .quicktabs_main .audio-player__wrapper {
  clear: both;
  width: 100%;
  margin: 15px 0 0;
}
.page-listen .quicktabs_main .audio-player__wrapper .mejs-controls div.mejs-time-rail {
  display: none;
}
.page-listen .pane-quicktabs-listen-page-tabs .quicktabs-tabs {
  margin: 0;
  padding: 0;
  background: none;
  position: relative;
}
.page-listen .pane-quicktabs-listen-page-tabs .quicktabs-tabs li a {
  height: 60px;
  width: 33.333333%;
  border: none;
  display: inline-block;
  padding: 8px 0 0;
  text-transform: uppercase;
  border-left: 1px solid #6c2515;
  border-right: 1px solid #9f3b24;
  border-bottom: 1px solid transparent;
  border-top: 1px solid transparent;
  color: #ddd;
  font-size: 13px;
  font-weight: normal;
  letter-spacing: .05em;
}
@media (min-width: 401px) {
  .page-listen .pane-quicktabs-listen-page-tabs .quicktabs-tabs li a {
    font-size: 14px;
  }
}
@media (min-width: 601px) {
  .page-listen .pane-quicktabs-listen-page-tabs .quicktabs-tabs li a {
    width: 100%;
    display: block;
    border-right: none;
    border-left: none;
    padding: 20px 0 15px;
    height: auto;
    border-bottom: 1px solid #6c2515;
    border-top: 1px solid #9f3b24;
  }
}
.page-listen .pane-quicktabs-listen-page-tabs .quicktabs-tabs li a i {
  display: block;
  font-size: 20px;
  margin: 0 0 5px;
  color: #ddd;
}
@media (min-width: 601px) {
  .page-listen .pane-quicktabs-listen-page-tabs .quicktabs-tabs li a i {
    font-size: 24px;
    margin: 0 0 15px;
  }
}
.page-listen .pane-quicktabs-listen-page-tabs .quicktabs-tabs li a:hover, .page-listen .pane-quicktabs-listen-page-tabs .quicktabs-tabs li a:active {
  color: white;
  background: #49150f;
  border-top: 1px solid #9f3b24;
  border-bottom: 1px solid transparent;
}
.page-listen .pane-quicktabs-listen-page-tabs .quicktabs-tabs li a:hover i, .page-listen .pane-quicktabs-listen-page-tabs .quicktabs-tabs li a:active i {
  color: white;
}
.page-listen .pane-quicktabs-listen-page-tabs .quicktabs-tabs li.active a {
  background: #fafafa;
  border: 1px solid transparent;
}
.page-listen .pane-quicktabs-listen-page-tabs .quicktabs-tabs li.active a i {
  color: #3a3a3a;
}
.page-listen .pane-live-stream-player {
  position: relative;
}
.page-listen .pane-live-stream-player h2 {
  font-size: 1em;
  margin: 0;
}
.page-listen .pane-live-stream-player .node-live-stream h2 {
  display: none;
}
.page-listen .pane-live-stream-player .audio-player__wrapper {
  margin: .5em 0 0;
}
.page-listen #mini-panel-listen_page_live_stream .player__bottom-bar .player__logo {
  display: none;
}
@media (min-width: 600px) {
  .page-listen #mini-panel-listen_page_live_stream .player__bottom-bar .player__logo {
    display: inline-block;
  }
}
.page-listen .pane-ypdir {
  position: relative;
  top: -29px;
  left: 80px;
  font-size: 0.9em;
}
@media (min-width: 800px) {
  .page-listen .pane-ypdir .program-schedule em:before {
    content: "Now Playing: ";
    display: inline;
  }
}
.page-listen .pane-ypdir p {
  margin: 0;
}
.page-listen .panel-pane.schedule-link {
  position: relative;
  top: -33px;
  font-size: 15px;
}
.page-listen .pane-episodes-by-program-panel-pane-1 .pane-title {
  margin-bottom: 0;
}
.page-listen .pane-episodes-soundworks {
  display: inline-block;
  margin: 1em 0 0;
  width: 94%;
  padding: 30px 3%;
  vertical-align: top;
  background: #fff;
  border-bottom: 1px solid #eeeeef;
  position: relative;
}
.page-listen .pane-episodes-soundworks.promo-box--ad {
  background: #e8f1f7;
  border-bottom: 1px solid #eeeeef;
}
@media (min-width: 961px) {
  .page-listen .pane-episodes-soundworks {
    width: 44%;
    margin: 2em 0 0;
    padding: 30px 2%;
  }
  .page-listen .pane-episodes-soundworks:nth-child(odd) {
    margin-left: 3%;
  }
}
.page-listen .field-image,
.page-listen .field-podcast-logo {
  width: 150px;
  height: 150px;
  margin: 0 0 0 15px;
  float: right;
  padding: 0;
}
.page-listen .field-image img,
.page-listen .field-podcast-logo img {
  width: 150px;
}
.page-listen h2 {
  font-weight: bold;
  font-size: 20px;
  line-height: 1em;
  margin: 0 0 15px;
}
.page-listen h2 .story__program-the-world {
  background: none;
  height: 24px;
  width: auto;
  opacity: 1;
  text-indent: 0;
  margin: 0;
  padding: 0;
  display: block;
}
.page-listen .field-teaser {
  font-size: .875em;
  line-height: 1.25em;
}
.page-listen .hosts {
  font-size: .875em;
  line-height: 1.5em;
  margin: 15px 0;
}
.page-listen .hosts a {
  font-weight: bold;
}
.page-listen .views-field-field-ref-authors,
.page-listen .views-field-title {
  margin: 5px 0 0;
  font-size: .875em;
  line-height: 1.4em;
  font-weight: bold;
}
.page-listen .views-field-field-ref-authors span, .page-listen .views-field-field-ref-authors div,
.page-listen .views-field-title span,
.page-listen .views-field-title div {
  display: inline-block;
}
.page-listen h4 {
  clear: both;
  width: 100%;
  margin: 15px 0 0;
  padding: 15px 0 0;
  border-top: 1px dashed #eeeeef;
  color: #444;
}
.page-listen .audio-player__wrapper {
  clear: both;
  width: 100%;
  margin: 10px 0;
}
.page-listen .audio-player__wrapper .mejs-controls div.mejs-time-rail {
  display: none;
}
.page-listen .view-episodes-by-program .views-row {
  display: inline-block;
  margin: 1em 0 0;
  width: 94%;
  padding: 30px 3%;
  vertical-align: top;
  background: #fff;
  border-bottom: 1px solid #eeeeef;
}
@media (min-width: 961px) {
  .page-listen .view-episodes-by-program .views-row {
    width: 44%;
    margin: 2em 0 0;
    padding: 30px 2%;
  }
  .page-listen .view-episodes-by-program .views-row:nth-child(even) {
    margin-left: 3%;
  }
}
@media (min-width: 1140px) {
  .page-listen .view-episodes-by-program .views-row {
    width: 27%;
  }
  .page-listen .view-episodes-by-program .views-row:nth-child(even) {
    margin-left: 0;
  }
  .page-listen .view-episodes-by-program .views-row:nth-child(3n+2) {
    margin-left: 3%;
    margin-right: 3%;
  }
}
.page-listen .view-episodes-by-program h2 {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.3em;
  margin: 0 0 5px;
}
.page-listen .view-episodes-by-program .story__meta, .page-listen .view-episodes-by-program .field-fc-story-creators,
.page-listen .view-episodes-by-program .field-date-published {
  display: inline;
  margin: 0 5px 0 0;
  font-size: 14px;
}
.page-listen .view-episodes-by-program .field-teaser {
  display: none;
}

/**
 * @file
 * Field Link Contact.
 */
.node-type-person .field-links-contact, .node-type-person .field-links-restricted, .node-type-program .field-links-contact {
  list-style: none;
}

.node-type-person .field-links-contact li, .node-type-person .field-links-restricted li, .node-type-program .field-links-contact li {
  text-align: center;
  background-color: #e8f1f7;
  margin: 2px 0 2px 0;
}

.node-type-program .field-links-contact li {
  text-align: left;
  padding: 12px 24px;
}

.field-social-links.field-links-contact h3 {
  display: none;
}
.field-social-links.field-links-contact div {
  text-align: center;
  background-color: #e8f1f7;
  margin: 2px 0 2px 0;
}

@media (min-width: 601px) {
  .node-type-person .field-links-contact, .node-type-person .field-links-restricted {
    float: left;
    width: 50%;
    clear: both;
    padding-left: 24px;
    padding-right: 24px;
  }
  .node-type-person .field-links-contact {
    margin-top: 0;
    margin-bottom: 10px;
  }
  .node-type-person .field-links-restricted {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
/**
 * @file
 * Media element player.
 */
.mejs-container {
  position: relative;
  font-family: Helvetica, Arial;
  text-align: left;
  vertical-align: top;
  text-indent: 0;
  background: #cccccb;
}

.me-plugin {
  position: absolute;
}

.mejs-embed,
.mejs-embed body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.mejs-container-fullscreen {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1000;
}

.mejs-container-fullscreen .mejs-mediaelement,
.mejs-container-fullscreen video {
  width: 100%;
  height: 100%;
}

.mejs-clear {
  clear: both;
}

/**
 * Layers
 */
.mejs-background {
  position: absolute;
  top: 0;
  left: 0;
}

.mejs-mediaelement {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mejs-poster {
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

:root .mejs-poster img {
  display: none;
}

.mejs-poster img {
  border: 0;
  padding: 0;
  border: 0;
}

.mejs-overlay {
  position: absolute;
  top: 0;
  left: 0;
}

.mejs-overlay-play {
  cursor: pointer;
}

.mejs-overlay-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
  background: url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/bigplay_svg-1433770990') no-repeat;
}

.no-svg .mejs-overlay-button {
  background-image: url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/bigplay_png-1433770991');
}

.mejs-overlay:hover .mejs-overlay-button {
  background-position: 0 -100px;
}

.mejs-overlay-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
  background: #333;
  background: url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/background_png-1433770991');
  background: rgba(0, 0, 0, 0.9);
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(50, 50, 50, 0.9)), to(rgba(0, 0, 0, 0.9)));
  background: -webkit-linear-gradient(top, rgba(50, 50, 50, 0.9), rgba(0, 0, 0, 0.9));
  background: -moz-linear-gradient(top, rgba(50, 50, 50, 0.9), rgba(0, 0, 0, 0.9));
  background: -o-linear-gradient(top, rgba(50, 50, 50, 0.9), rgba(0, 0, 0, 0.9));
  background: -ms-linear-gradient(top, rgba(50, 50, 50, 0.9), rgba(0, 0, 0, 0.9));
  background: linear-gradient(rgba(50, 50, 50, 0.9), rgba(0, 0, 0, 0.9));
}

.mejs-overlay-loading span {
  display: block;
  width: 80px;
  height: 80px;
  background: transparent url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/loading_gif-1433770992') 50% 50% no-repeat;
}

/**
 * Control bar
 */
.mejs-container .mejs-controls {
  position: absolute;
  list-style-type: none;
  margin: 0;
  padding: 0;
  bottom: 0;
  left: 0;
  background: #cccccb;
  height: 30px;
  width: 101%;
}

.mejs-container .mejs-controls div {
  list-style-type: none;
  background-image: none;
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  border: 0;
}

.mejs-controls .mejs-button button {
  cursor: pointer;
  display: block;
  font-size: 0;
  line-height: 0;
  text-decoration: none;
  margin: 7px 5px;
  padding: 0;
  position: absolute;
  height: 16px;
  width: 16px;
  border: 0;
  background: transparent url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/controls_svg-1433770993') no-repeat;
}

.no-svg .mejs-controls .mejs-button button {
  background-image: url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/controls_png-1433770993');
}

/**
 * Time (Current / Duration)
 */
.mejs-container .mejs-controls .mejs-time {
  color: #444;
  display: block;
  width: auto;
  margin: 11px 0 0;
  overflow: hidden;
  text-align: center;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.mejs-container .mejs-controls .mejs-time span {
  color: #444;
  font-size: 16px;
  line-height: 18px;
  display: block;
  float: left;
  margin: 0 5px 0 0;
  width: auto;
}

/**
 * Play/Pause/Stop
 */
.mejs-container .mejs-controls div.mejs-playpause-button {
  margin: 0 5px 0 0;
  width: 70px;
  height: 70px;
}
@media (min-width: 450px) {
  .mejs-container .mejs-controls div.mejs-playpause-button {
    margin: 0 10px 0 0;
  }
}
.mejs-container .mejs-controls div.mejs-playpause-button button {
  width: 70px;
  height: 70px;
  margin: 0;
  background: #d3401e url("https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/player-play_svg-1433770994") no-repeat left top;
  	/*&:before {
          position:absolute;
          font-family: FontAwesome;
  		top: 35px;
  		left: 17px;
          content: "\f04b";
          font-size: 48px;
          color: #fff;
      }*/
}

.mejs-container .mejs-controls div.mejs-playpause-button.mejs-pause button {
  background: #d3401e url("https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/player-pause_svg-1433770994") no-repeat left top;
  /*&:before {
  	left: 14px;
      content: "\f04c";
  }*/
}

/**
 * Progress Bar
 */
@media (min-width: 961px) {
  .node-type-story .mejs-controls div.mejs-time-rail {
    display: block;
    width: 240px !important;
  }
  .node-type-story .mejs-controls div.mejs-time-rail .mejs-time-total {
    width: 230px !important;
  }
}
@media (min-width: 1270px) {
  .node-type-story .mejs-controls div.mejs-time-rail {
    display: block;
    width: 350px !important;
  }
  .node-type-story .mejs-controls div.mejs-time-rail .mejs-time-total {
    width: 340px !important;
  }
}

@media (min-width: 961px) {
  .node-type-program .mejs-controls div.mejs-time-rail {
    display: block;
    width: 200px !important;
  }
  .node-type-program .mejs-controls div.mejs-time-rail .mejs-time-total {
    width: 190px !important;
  }
}
@media (min-width: 1270px) {
  .node-type-program .mejs-controls div.mejs-time-rail {
    display: block;
    width: 300px !important;
  }
  .node-type-program .mejs-controls div.mejs-time-rail .mejs-time-total {
    width: 290px !important;
  }
}

.mejs-controls div.mejs-time-rail {
  margin: 8px 0 0;
  border-radius: none;
  display: none;
}
@media (min-width: 500px) {
  .mejs-controls div.mejs-time-rail {
    display: block;
    width: 80px !important;
  }
  .mejs-controls div.mejs-time-rail .mejs-time-total {
    width: 70px !important;
  }
}
@media (min-width: 600px) {
  .mejs-controls div.mejs-time-rail {
    display: block;
    width: 200px !important;
  }
  .mejs-controls div.mejs-time-rail .mejs-time-total {
    width: 190px !important;
  }
}
@media (min-width: 750px) {
  .mejs-controls div.mejs-time-rail {
    display: block;
    width: 300px !important;
  }
  .mejs-controls div.mejs-time-rail .mejs-time-total {
    width: 290px !important;
  }
}
@media (min-width: 900px) {
  .mejs-controls div.mejs-time-rail {
    display: block;
    width: 400px !important;
  }
  .mejs-controls div.mejs-time-rail .mejs-time-total {
    width: 390px !important;
  }
}

.mejs-controls .mejs-time-rail span {
  display: block;
  position: absolute;
  width: 180px;
  height: 10px;
  cursor: pointer;
}

.mejs-controls .mejs-time-rail .mejs-time-total {
  margin: 0px 5px;
  background: #eee;
  height: 23px;
}

.mejs-controls .mejs-time-rail .mejs-time-buffering {
  width: 100%;
  background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  -webkit-background-size: 15px 15px;
  -moz-background-size: 15px 15px;
  -o-background-size: 15px 15px;
  background-size: 15px 15px;
  -webkit-animation: buffering-stripes 2s linear infinite;
  -moz-animation: buffering-stripes 2s linear infinite;
  -ms-animation: buffering-stripes 2s linear infinite;
  -o-animation: buffering-stripes 2s linear infinite;
  animation: buffering-stripes 2s linear infinite;
}

@-webkit-keyframes buffering-stripes {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 30px 0;
  }
}

@-moz-keyframes buffering-stripes {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 30px 0;
  }
}

@-ms-keyframes buffering-stripes {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 30px 0;
  }
}

@-o-keyframes buffering-stripes {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 30px 0;
  }
}

@keyframes buffering-stripes {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 30px 0;
  }
}

.mejs-controls .mejs-time-rail .mejs-time-loaded {
  background: #e2a6a6;
  width: 0;
  height: 23px;
}

.mejs-controls .mejs-time-rail .mejs-time-current {
  background: #4188bc;
  width: 0;
  height: 23px;
}

.mejs-controls .mejs-time-rail .mejs-time-handle {
  display: none;
  position: absolute;
  margin: 0;
  width: 10px;
  background: #fff;
  cursor: pointer;
  border: solid 2px #333;
  top: -2px;
  text-align: center;
}

.mejs-controls .mejs-time-rail .mejs-time-float {
  position: absolute;
  display: none;
  background: #4188bc;
  width: 36px;
  height: 17px;
  border: solid 1px #cccccb;
  top: -26px;
  margin-left: -18px;
  text-align: center;
  color: #eee;
  font-size: 11px;
}

.mejs-controls .mejs-time-rail .mejs-time-float-current {
  margin: -4px 0px 0 3px;
  width: 30px;
  display: block;
  text-align: center;
  left: 0;
}

.mejs-controls .mejs-time-rail .mejs-time-float-corner {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  line-height: 0;
  border: solid 5px #4188bc;
  border-color: #4188bc transparent transparent transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  top: 15px;
  left: 13px;
}

.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float {
  width: 48px;
}

.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float-current {
  width: 44px;
}

.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float-corner {
  left: 18px;
}

/*
.mejs-controls .mejs-time-rail:hover .mejs-time-handle {
	visibility:visible;
}
*/
/**
 * Fullscreen
 */
.mejs-controls .mejs-fullscreen-button button {
  background-position: -32px 0;
}

.mejs-controls .mejs-unfullscreen button {
  background-position: -32px -16px;
}

/**
 * Mute/Volume
 */
.mejs-controls .mejs-mute button {
  background-position: -16px -16px;
}

.mejs-controls .mejs-unmute button {
  background-position: -16px 0;
}

.mejs-container .mejs-controls div.mejs-volume-button {
  position: relative;
  width: 20px;
  height: 23px;
  margin: 8px 5px 0;
}
.mejs-container .mejs-controls div.mejs-volume-button button {
  margin: 0;
  padding: 0;
  width: 21px;
  height: 21px;
  /*&:before {
  	position:absolute;
  	font-family: FontAwesome;
  	top: 12px;
  	left: 5px;
  	font-size: 20px;
  	text-indent: 0;
  	content: "\f028";
  	color: $blue;
  }*/
}
.mejs-container .mejs-controls div.mejs-volume-button button:focus {
  border: none;
}
.mejs-container .mejs-controls div.mejs-volume-button.mejs-mute button {
  background: url("https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/player-mute_png-1433770995") no-repeat left top;
}
.mejs-container .mejs-controls div.mejs-volume-button.mejs-unmute {
  /*button:before {
  	content: "\f026"; 
  }*/
}
.mejs-container .mejs-controls div.mejs-volume-button.mejs-unmute button {
  background: url("https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/player-mute_png-1433770995") no-repeat left bottom;
}

.mejs-controls .mejs-:-button .mejs-volume-slider {
  display: none;
  height: 115px;
  width: 25px;
  background: url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/background_png-1433770991');
  background: rgba(50, 50, 50, 0.7);
  top: -115px;
  left: 0;
  z-index: 1;
  position: absolute;
  margin: 0;
}

.mejs-controls .mejs-volume-button:hover .mejs-volume-slider {
  display: block;
}

.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-total {
  position: absolute;
  left: 11px;
  top: 8px;
  width: 2px;
  height: 100px;
  background: #ddd;
  background: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current {
  position: absolute;
  left: 11px;
  top: 8px;
  width: 2px;
  height: 100px;
  background: #ddd;
  background: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-handle {
  position: absolute;
  left: 4px;
  top: -3px;
  width: 16px;
  height: 6px;
  background: #ddd;
  background: rgba(255, 255, 255, 0.9);
  cursor: N-resize;
  margin: 0;
}

/* horizontal version */
.mejs-controls div.mejs-horizontal-volume-slider {
  height: 26px;
  width: 40px;
  position: relative;
  margin: 8px 0 0;
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
  position: absolute;
  left: 0;
  top: 0;
  width: 45px;
  height: 23px;
  margin: 0;
  padding: 0;
  font-size: 1px;
  background: #eee;
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
  position: absolute;
  left: 0;
  top: 0;
  width: 45px;
  height: 23px;
  margin: 0;
  padding: 0;
  font-size: 1px;
  background: #4188bc;
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle {
  display: none;
}

/**
 * Track (Captions and Chapters)
 */
.mejs-controls .mejs-captions-button {
  position: relative;
}

.mejs-controls .mejs-captions-button button {
  background-position: -48px 0;
}

.mejs-controls .mejs-captions-button .mejs-captions-selector {
  visibility: hidden;
  position: absolute;
  bottom: 26px;
  right: -10px;
  width: 130px;
  height: 100px;
  background: url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/background_png-1433770991');
  background: rgba(50, 50, 50, 0.7);
  border: solid 1px transparent;
  padding: 10px;
  overflow: hidden;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

/*
.mejs-controls .mejs-captions-button:hover .mejs-captions-selector {
	visibility: visible;
}
*/
.mejs-controls .mejs-captions-button .mejs-captions-selector ul {
  margin: 0;
  padding: 0;
  display: block;
  list-style-type: none !important;
  overflow: hidden;
}

.mejs-controls .mejs-captions-button .mejs-captions-selector ul li {
  margin: 0 0 6px 0;
  padding: 0;
  list-style-type: none !important;
  display: block;
  color: #fff;
  overflow: hidden;
}

.mejs-controls .mejs-captions-button .mejs-captions-selector ul li input {
  clear: both;
  float: left;
  margin: 3px 3px 0 5px;
}

.mejs-controls .mejs-captions-button .mejs-captions-selector ul li label {
  width: 100px;
  float: left;
  padding: 4px 0 0 0;
  line-height: 15px;
  font-family: helvetica, arial;
  font-size: 10px;
}

.mejs-controls .mejs-captions-button .mejs-captions-translations {
  font-size: 10px;
  margin: 0 0 5px 0;
}

.mejs-chapters {
  position: absolute;
  top: 0;
  left: 0;
  -xborder-right: solid 1px #fff;
  width: 10000px;
  z-index: 1;
}

.mejs-chapters .mejs-chapter {
  position: absolute;
  float: left;
  background: #222;
  background: rgba(0, 0, 0, 0.7);
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(50, 50, 50, 0.7)), to(rgba(0, 0, 0, 0.7)));
  background: -webkit-linear-gradient(top, rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  background: -moz-linear-gradient(top, rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  background: -o-linear-gradient(top, rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  background: -ms-linear-gradient(top, rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  background: linear-gradient(rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr=#323232,endColorstr=#000000);
  overflow: hidden;
  border: 0;
}

.mejs-chapters .mejs-chapter .mejs-chapter-block {
  font-size: 11px;
  color: #fff;
  padding: 5px;
  display: block;
  border-right: solid 1px #333;
  border-bottom: solid 1px #333;
  cursor: pointer;
}

.mejs-chapters .mejs-chapter .mejs-chapter-block-last {
  border-right: none;
}

.mejs-chapters .mejs-chapter .mejs-chapter-block:hover {
  background: #666;
  background: rgba(102, 102, 102, 0.7);
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(102, 102, 102, 0.7)), to(rgba(50, 50, 50, 0.6)));
  background: -webkit-linear-gradient(top, rgba(102, 102, 102, 0.7), rgba(50, 50, 50, 0.6));
  background: -moz-linear-gradient(top, rgba(102, 102, 102, 0.7), rgba(50, 50, 50, 0.6));
  background: -o-linear-gradient(top, rgba(102, 102, 102, 0.7), rgba(50, 50, 50, 0.6));
  background: -ms-linear-gradient(top, rgba(102, 102, 102, 0.7), rgba(50, 50, 50, 0.6));
  background: linear-gradient(rgba(102, 102, 102, 0.7), rgba(50, 50, 50, 0.6));
  filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr=#666666,endColorstr=#323232);
}

.mejs-chapters .mejs-chapter .mejs-chapter-block .ch-title {
  font-size: 12px;
  font-weight: bold;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0 0 3px 0;
  line-height: 12px;
}

.mejs-chapters .mejs-chapter .mejs-chapter-block .ch-timespan {
  font-size: 12px;
  line-height: 12px;
  margin: 3px 0 4px 0;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mejs-captions-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  line-height: 22px;
  font-size: 12px;
  color: #fff;
}

.mejs-captions-layer a {
  color: #fff;
  text-decoration: underline;
}

.mejs-captions-layer[lang=ar] {
  font-size: 20px;
  font-weight: normal;
}

.mejs-captions-position {
  position: absolute;
  width: 100%;
  bottom: 15px;
  left: 0;
}

.mejs-captions-position-hover {
  bottom: 45px;
}

.mejs-captions-text {
  padding: 3px 5px;
  background: url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/background_png-1433770991');
  background: rgba(20, 20, 20, 0.8);
}

/**
 * Error
 */
.me-cannotplay a {
  color: #fff;
  font-weight: bold;
}

.me-cannotplay span {
  padding: 15px;
  display: block;
}

/**
 * Loop
 */
.mejs-controls .mejs-loop-off button {
  background-position: -64px -16px;
}

.mejs-controls .mejs-loop-on button {
  background-position: -64px 0;
}

/**
 * backlight
 */
.mejs-controls .mejs-backlight-off button {
  background-position: -80px -16px;
}

.mejs-controls .mejs-backlight-on button {
  background-position: -80px 0;
}

/**
 * Picture Controls
 */
.mejs-controls .mejs-picturecontrols-button {
  background-position: -96px 0;
}

/**
 * context menu
 */
.mejs-contextmenu {
  position: absolute;
  width: 150px;
  padding: 10px;
  border-radius: 4px;
  top: 0;
  left: 0;
  background: #fff;
  border: solid 1px #999;
  z-index: 1001;
  /* make sure it shows on fullscreen */
}

.mejs-contextmenu .mejs-contextmenu-separator {
  height: 1px;
  font-size: 0;
  margin: 5px 6px;
  background: #333;
}

.mejs-contextmenu .mejs-contextmenu-item {
  font-family: Helvetica, Arial;
  font-size: 12px;
  padding: 4px 6px;
  cursor: pointer;
  color: #333;
}

.mejs-contextmenu .mejs-contextmenu-item:hover {
  background: #2C7C91;
  color: #fff;
}

/**
 * Source Chooser
 */
.mejs-controls .mejs-sourcechooser-button {
  position: relative;
}

.mejs-controls .mejs-sourcechooser-button button {
  background-position: -128px 0;
}

.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector {
  visibility: hidden;
  position: absolute;
  bottom: 26px;
  right: -10px;
  width: 130px;
  height: 100px;
  background: url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/background_png-1433770991');
  background: rgba(50, 50, 50, 0.7);
  border: solid 1px transparent;
  padding: 10px;
  overflow: hidden;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul {
  margin: 0;
  padding: 0;
  display: block;
  list-style-type: none !important;
  overflow: hidden;
}

.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li {
  margin: 0 0 6px 0;
  padding: 0;
  list-style-type: none !important;
  display: block;
  color: #fff;
  overflow: hidden;
}

.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li input {
  clear: both;
  float: left;
  margin: 3px 3px 0 5px;
}

.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li label {
  width: 100px;
  float: left;
  padding: 4px 0 0 0;
  line-height: 15px;
  font-family: helvetica, arial;
  font-size: 10px;
}

/**
 * Postroll
 */
.mejs-postroll-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/background_png-1433770991');
  background: rgba(50, 50, 50, 0.7);
  z-index: 1000;
  overflow: hidden;
}

.mejs-postroll-layer-content {
  width: 100%;
  height: 100%;
}

.mejs-postroll-close {
  position: absolute;
  right: 0;
  top: 0;
  background: url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/background_png-1433770991');
  background: rgba(50, 50, 50, 0.7);
  color: #fff;
  padding: 4px;
  z-index: 100;
  cursor: pointer;
}

.audio-player__wrapper .mediaelement-download-link {
  position: absolute;
  right: 67px;
  z-index: 20;
  top: 9px;
  font-size: 18px;
  width: 30px;
  text-align: center;
  height: 30px;
}
.audio-player__wrapper .item-list {
  background: none;
}
.audio-player__wrapper .item-list .player-utilities li {
  background: none;
}
.audio-player__wrapper .item-list .player-utilities li a {
  color: #4188bc;
  position: relative;
  text-indent: 9999px;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-top: 9px;
  /*&:hover {color: $orange;}*/
  	/*&:before  {
  		position:absolute;
          font-family: FontAwesome;
  		top: 6px;
  		left: 0;
          font-size: 20px;
          text-indent: 0;
  	}
  	&.embed:before {
  		content: "\f064";
  	}
  	&.popout:before {
          content: "\f065";
  	}*/
}
.audio-player__wrapper .item-list .player-utilities li a.embed {
  background: url("https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/player-share_png-1433770996") no-repeat left top;
}
.audio-player__wrapper .item-list .player-utilities li a.embed:hover {
  background: url("https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/player-share_png-1433770996") no-repeat left bottom;
}
.audio-player__wrapper .item-list .player-utilities li a.popout {
  background: url("https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/player-popout_png-1433770996") no-repeat left top;
}
.audio-player__wrapper .item-list .player-utilities li a.popout:hover {
  background: url("https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/player-popout_png-1433770996") no-repeat left bottom;
}
.audio-player__wrapper div.mediaelement-audio {
  float: left;
  width: 70%;
}
@media (min-width: 601px) {
  .audio-player__wrapper div.mediaelement-audio {
    width: 83%;
  }
}
.audio-player__wrapper .embed-code {
  clear: both;
  border-top: none;
  position: absolute;
  top: 70px;
  width: 97.3%;
  margin: 0 0 1.5em;
}
.audio-player__wrapper .embed-code.open {
  background: #dddddc;
  padding: 10px;
  border: none;
}
.audio-player__wrapper .embed-code.open textarea {
  background: #eee;
  color: #444;
  border: 1px solid #ccc;
}

.audio-player__wrapper.popout-player .mediaelement-download-link {
  top: 35px;
  left: 0;
  font-size: 13px;
  width: 100%;
  text-align: left;
}
.audio-player__wrapper.popout-player .mediaelement-download-link a {
  color: #4188bc;
}

.audio-transcript-text {
  .padding: 20px;
  font-size: 15px;
}

/**
 * @file
 * "Menu Block" most likely to appear in the sidebar
 */
.pane-menu-about-menu {
  border: 1px solid #eeeeef;
  margin-bottom: 36px;
}
.pane-menu-about-menu .menu-block-wrapper {
  margin-top: 0;
  padding: 24px;
  list-style-type: none;
}
.pane-menu-about-menu .menu-block-wrapper .menu {
  list-style: none;
  margin: 0;
}
.pane-menu-about-menu .menu-block-wrapper .menu .is-leaf {
  margin: 0 0 0 24px;
}
.pane-menu-about-menu .menu-block-wrapper .menu .active {
  color: #d3401e;
}

.pane-menu-give-sub-pages,
.pane-menu-menu-about-menu,
.pane-menu-menu-more-from-the-world {
  border: 1px solid #eeeeef;
  margin-bottom: 36px;
  margin-top: 0;
  padding: 24px;
  list-style-type: none;
}
.pane-menu-give-sub-pages .menu,
.pane-menu-menu-about-menu .menu,
.pane-menu-menu-more-from-the-world .menu {
  list-style: none;
  margin: 0;
}
.pane-menu-give-sub-pages .menu .is-leaf,
.pane-menu-menu-about-menu .menu .is-leaf,
.pane-menu-menu-more-from-the-world .menu .is-leaf {
  margin: 0 0 0 24px;
}
.pane-menu-give-sub-pages .menu .active,
.pane-menu-menu-about-menu .menu .active,
.pane-menu-menu-more-from-the-world .menu .active {
  color: #d3401e;
}

.pane-menu-menu-more-from-the-world h2 {
  font-size: 1em;
  line-height: 1em;
  margin-top: 0;
  margin-bottom: 1em;
}

.pane-menu-give-sub-pages .menu li.is-leaf {
  margin: 0;
}
.pane-menu-give-sub-pages .menu li li.is-leaf {
  margin: 0 0 0 24px;
}

/**
 * @file
 * Messages
 */
.messages, .messages--status, .messages--warning, .messages--error {
  margin: 1.5em 0;
  padding: 10px 10px 10px 50px;
  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;
  background-repeat: no-repeat;
  border: 1px solid #be7;
}

.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;
}

.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;
}

.messages__list {
  margin: 0;
}

.messages__item {
  list-style-image: none;
}

/* Core/module installation error messages. */
.messages--error p.error {
  color: #333;
}

/* System status report. */
.ok,
.messages--status {
  background-color: #f8fff0;
  color: #234600;
}

.warning,
.messages--warning {
  background-color: #fffce5;
  color: #840;
}

.error,
.messages--error {
  background-color: #fef5f1;
  color: #8c2e0b;
}

#modalContent {
  top: 20px !important;
  position: fixed !important;
}
#modalContent div.ctools-modal-content a.close {
  text-indent: 9999px;
  text-transform: uppercase;
  font-size: .85em;
  letter-spacing: .05em;
  color: #4188bc;
}
#modalContent div.ctools-modal-content a.close img {
  display: none;
}
#modalContent div.ctools-modal-content .modal-title {
  display: none;
}

.form-item-newsletter {
  border-top: 1px solid #eeeeef;
  margin: 1em 0;
  padding: 1em 0;
}

div.ctools-modal-content h2 {
  margin-top: 0;
  font-size: 1em;
  font-weight: normal;
}
div.ctools-modal-content .form-item label {
  width: auto;
  margin: 0 0 10px;
  font-size: 1.25em;
}
div.ctools-modal-content .form-item label.option {
  display: inline-block;
  font-weight: normal;
  font-size: 1em;
}
div.ctools-modal-content .ajax-progress {
  text-transform: uppercase;
  font-size: .85em;
  letter-spacing: .05em;
}
div.ctools-modal-content .ajax-progress:after {
  content: "";
}

/**
 * @file
 * "More" links
 */
.l-episode__recent_stories .more-link a, .quicktabs_main .more-link a, .view-story-association .more-link a, .pane-donor-blog .more-link a {
  padding: 0;
  line-height: 36px;
  margin: 24px 0 0 0;
  font-size: 15px;
  background-color: #4188bc;
  color: #e8f1f7 !important;
}
.l-episode__recent_stories .more-link a:hover, .quicktabs_main .more-link a:hover, .view-story-association .more-link a:hover, .pane-donor-blog .more-link a:hover, .l-episode__recent_stories .more-link a:focus, .quicktabs_main .more-link a:focus, .view-story-association .more-link a:focus, .pane-donor-blog .more-link a:focus {
  background-color: #d3401e;
  color: white !important;
}

/*
.more-help-link {
  text-align: right;
}
.more-help-link a {
  background-image: inline-image("help.png");
  @if $legacy-support-for-ie6 or $legacy-support-for-ie7 {
    *background-image: image-url("help.png");
  }
  background-position: 0 50%;
  background-repeat: no-repeat;
  padding: 1px 0 1px 20px;
}
*/
.node-type-music-heard-on-air h1 {
  margin-bottom: .25em;
}

.view-music-heard-on-air .views-row {
  margin: .5em 0;
  display: inline-block;
  width: 100%;
}
.view-music-heard-on-air .views-row.views-row-last {
  margin: .5em 0 2em;
}
.view-music-heard-on-air .attachment .views-row {
  margin: 0;
}
.view-music-heard-on-air .views-field-product-image {
  float: left;
  margin: 0 20px 0 0;
  border: 1px solid #eeeeef;
}

.view-music-heard-on-air.view-display-id-page_1 h2 {
  margin: 0 0 .25em;
}
.view-music-heard-on-air.view-display-id-page_1 .views-row {
  border-top: 1px solid #eeeeef;
  padding: 1em 0;
  margin: 0;
}
.view-music-heard-on-air.view-display-id-page_1 .views-row.views-row-last {
  border-bottom: 1px solid #eeeeef;
}

/**
 * @file
 * Navbar module.
 */
.navbar__wrapper {
  width: 100%;
  z-index: 100;
}
.navbar__wrapper.is-fixed {
  position: relative;
  top: 0;
}

.js-navbar-spacer {
  width: 100%;
}

.navbar-1 {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #d3401e;
  /* Sets the skinny navbar for iPhone 5 width of 568px*/
  height: 48px;
  padding: 12px 0;
  /* Added in IE 10. http://ie.microsoft.com/testdrive/HTML5/msUserSelect/ */
  -ms-user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

a.navbar__logo {
  display: inline-block;
  color: white;
  font-size: 23px;
}
a.navbar__logo:hover {
  color: white;
}
a.navbar__logo span {
  display: none;
}

.links-utility {
  margin: 0;
  text-align: right;
  list-style-type: none;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .1em;
  height: 30px;
}
.links-utility a:link,
.links-utility a:visited {
  color: rgba(255, 255, 255, 0.8);
  display: block;
}
.links-utility a:focus,
.links-utility a:hover,
.links-utility a:active,
.links-utility a.is-active {
  color: white;
}

.links-utility__link {
  display: inline-block;
  margin: 0 0 0 10px;
  position: relative;
  bottom: 5px;
}
@media (min-width: 768px) {
  .links-utility__link {
    margin: 0 0 0 16px;
  }
}
@media (min-width: 801px) {
  .links-utility__link {
    margin: 0 0 0 24px;
  }
}
.links-utility__link .ss-icon,
.links-utility__link .icomoon {
  font-size: 22px;
  margin-right: 6px;
  position: relative;
  top: 6px;
}
.links-utility__link .ss-icon.rows {
  font-size: 21px;
}
.links-utility__link .icomoon.icon-give {
  font-size: 35px;
  top: 8px;
}
@media (min-width: 601px) {
  .links-utility__link .icomoon.icon-give {
    font-size: 33px;
    top: 7px;
  }
}

.links-utility__link-optional {
  display: none;
}
@media (min-width: 601px) {
  .links-utility__link-optional {
    display: inline-block;
  }
}

@media (min-width: 601px) {
  .logged-in .links-utility__link-optional.logged-in {
    display: inline-block;
  }
  .logged-in .links-utility__link-optional.logged-out {
    display: none;
  }

  .not-logged-in .links-utility__link-optional.logged-in {
    display: none;
  }
  .not-logged-in .links-utility__link-optional.logged-out {
    display: inline-block;
  }
}
.mobile-only {
  display: inline-block;
}
@media (min-width: 601px) {
  .mobile-only {
    display: none;
  }
}

.links-utility__text {
  display: none;
}
@media (min-width: 768px) {
  .links-utility__text {
    display: inline-block;
  }
}

.navbar-2 {
  max-height: 0;
  overflow: hidden;
  background-color: #832813;
  width: 100% !important;
  -webkit-transition: max-height 0.24s ease-in-out;
  -moz-transition: max-height 0.24s ease-in-out;
  -o-transition: max-height 0.24s ease-in-out;
  transition: max-height 0.24s ease-in-out;
}
@media (min-width: 601px) {
  .navbar-2 {
    display: none;
  }
}

.js-navbar-2-down {
  max-height: 3000px;
}

.js-navbar-2-down-mobile {
  overflow-y: scroll;
  max-height: 200%;
}

/**
 * Dropnav styling.
 */
.dropnav {
  margin: 0;
  padding: 0;
  line-height: 60px;
}
@media (min-width: 601px) {
  .dropnav {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

.dropnav__list {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.33);
}
@media (min-width: 601px) {
  .dropnav__list {
    border-bottom: none;
  }
}

.dropnav__heading:link, .dropnav__heading:visited,
.desktop-sub-nav .expanded .menu__link:link,
.desktop-sub-nav .expanded .menu__link:visited {
  display: block;
  padding: 0 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.33);
}
.is-expanded.dropnav__heading:link, .is-expanded.dropnav__heading:visited,
.desktop-sub-nav .expanded .is-expanded.menu__link:link,
.desktop-sub-nav .expanded .is-expanded.menu__link:visited {
  border-bottom: none;
}
@media (min-width: 601px) {
  .dropnav__heading:link, .dropnav__heading:visited,
  .desktop-sub-nav .expanded .menu__link:link,
  .desktop-sub-nav .expanded .menu__link:visited {
    margin: 0 0 12px 0;
    padding: 0;
    color: white;
    font-size: 13px;
    line-height: 2em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: .1em;
  }
}

.dropnav__heading:hover, .dropnav__heading:focus, .dropnav__heading:active,
.desktop-sub-nav .expanded .menu__link:hover,
.desktop-sub-nav .expanded .menu__link:focus,
.desktop-sub-nav .expanded .menu__link:active {
  color: white;
}

.dropnav__heading .ss-icon,
.dropnav__heading .icomoon,
.desktop-sub-nav .expanded .menu__link .ss-icon,
.desktop-sub-nav .expanded .menu__link .icomoon {
  margin-right: 9px;
}
@media (min-width: 601px) {
  .dropnav__heading .ss-icon,
  .dropnav__heading .icomoon,
  .desktop-sub-nav .expanded .menu__link .ss-icon,
  .desktop-sub-nav .expanded .menu__link .icomoon {
    margin-right: 0;
    float: right;
    position: relative;
    top: 2px;
  }
}

.dropnav__heading .ss-icon--down,
.desktop-sub-nav .expanded .menu__link .ss-icon--down {
  float: right;
  position: relative;
  top: 2px;
}
@media (min-width: 601px) {
  .dropnav__heading .ss-icon--down,
  .desktop-sub-nav .expanded .menu__link .ss-icon--down {
    display: none;
  }
}

.dropnav__item {
  list-style-type: none;
}
.dropnav__item.is-mobile {
  border-bottom: 1px solid rgba(255, 255, 255, 0.33);
}
@media (min-width: 601px) {
  .dropnav__item.is-mobile {
    display: none;
  }
}

.dropnav__link {
  display: block;
  font-size: 17px;
  padding: 0 24px;
}
@media (min-width: 601px) {
  .dropnav__link {
    padding: 0;
    line-height: 24px;
  }
}

.dropnav__link:link, .dropnav__link:visited {
  color: rgba(255, 255, 255, 0.7);
}

.dropnav__link:hover, .dropnav__link:focus, .dropnav__link:active {
  color: white;
}

.dropnav__link .ss-icon,
.dropnav__link .icomoon {
  position: relative;
  top: 2px;
  margin-right: 9px;
}
@media (min-width: 601px) {
  .dropnav__link .ss-icon,
  .dropnav__link .icomoon {
    margin-right: 2px;
  }
}

.mobile-nav .dropnav__item .dropnav__heading,
.mobile-nav .dropnav__item a.dropnav__link {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .875em;
}
.mobile-nav .dropnav__item .dropnav__heading.is-expanded {
  color: #fff;
  background: #49150f;
}
.mobile-nav .dropnav__item .dropnav__list {
  background: #49150f;
  padding: 0 0 1em;
}
.mobile-nav .dropnav__item .dropnav__item a.dropnav__link {
  font-weight: normal;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1em;
}

.admin-menu .navbar__wrapper {
  margin-top: 48px;
}
@media (min-width: 601px) {
  .admin-menu .navbar__wrapper {
    margin-top: 0;
  }
}

.admin-menu-with-shortcuts .navbar__wrapper {
  margin-top: 81px;
}
@media (min-width: 601px) {
  .admin-menu-with-shortcuts .navbar__wrapper {
    margin-top: 0;
  }
}

.navbar-1b {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #832813;
  width: 100%;
  display: none;
  /* Sets the skinny navbar for iPhone 5 width of 568px*/
  /* height: 40px;*/
  /* Added in IE 10. http://ie.microsoft.com/testdrive/HTML5/msUserSelect/ */
  -ms-user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
@media (min-width: 601px) {
  .navbar-1b {
    display: block;
  }
}
.navbar-1b .b-left {
  float: left;
  padding: 0 0 0 24px;
}
.navbar-1b .b-right {
  float: right;
  padding: 7px 24px 0 0;
  display: none;
}
@media (min-width: 701px) {
  .navbar-1b .b-right {
    display: inline-block;
  }
}
.navbar-1b .links-utility__link {
  margin-right: 10px;
  margin-left: 0;
}

.sub-nav {
  margin: 0 0 0 -10px;
  padding: 0;
}
.sub-nav .links-utility__text {
  display: inline-block;
}

.sub-nav__link {
  display: inline-block;
  color: #ddd;
  margin: 0;
}
.sub-nav__link a {
  display: inline-block;
  padding: 5px 10px;
}
.sub-nav__link .links-utility__text {
  text-transform: uppercase;
  color: #ddd;
  font-weight: bold;
  font-size: 16px;
}
.sub-nav__link i {
  color: #d3401e;
  font-size: 12px;
  width: 13px;
  display: inline-block;
  margin: 3px 0 0 5px;
  position: relative;
  top: 2px;
}
.sub-nav__link:hover .links-utility__text, .sub-nav__link:active .links-utility__text,
.sub-nav__link .is-active .links-utility__text {
  color: white;
}
.sub-nav__link .is-active {
  background: #49150f;
}
.sub-nav__link .is-active i {
  color: white;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  top: -1px;
}

.desktop-sub-nav {
  display: none;
  background: #49150f;
  width: 100% !important;
  overflow: hidden;
  padding-right: 1%;
  padding-bottom: 40px;
}
.desktop-sub-nav .menu {
  margin: 0;
  padding: 24px;
}
.desktop-sub-nav .menu li {
  list-style-type: none;
  margin-left: 0;
}
.desktop-sub-nav .menu li.expanded {
  float: left;
  width: 31%;
  margin-left: 3.5%;
  margin-right: 3.5%;
}
.desktop-sub-nav .menu li.expanded.first, .desktop-sub-nav .menu li.expanded.last {
  margin-left: 0;
  margin-right: 0;
}
.desktop-sub-nav .menu .menu {
  padding: 0;
}

.desktop-sub-nav .expanded .menu .menu__link {
  color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-size: 17px;
  line-height: 24px;
  margin: 0;
  padding: 0;
  text-transform: none;
  letter-spacing: 0;
  border-bottom: none;
}
.desktop-sub-nav .expanded .menu .menu__link:hover, .desktop-sub-nav .expanded .menu .menu__link:active {
  color: white;
}

.desktop-sub-nav.js-navbar-2-down-mobile {
  display: block;
}

.newsletter-opt-in {
  border: 1px solid #eeeeef;
  background: white;
  padding: 24px;
  margin: 0 0 24px;
}
.newsletter-opt-in h2 {
  margin: 0 0 .25em;
  padding: 0;
  font-size: 1em;
}
.newsletter-opt-in label {
  display: none;
}
.newsletter-opt-in .form-item-email {
  display: inline-block;
}
.newsletter-opt-in p {
  margin: 0;
  font-size: .85em;
}
.newsletter-opt-in input.form-text {
  border: 1px solid #ddd;
  font-size: .85em;
  padding: 4px 0 5px 2px;
}
.newsletter-opt-in input.form-submit {
  background: #d3401e;
  border: none;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: .1em;
  padding: 5px 10px;
  text-transform: uppercase;
  border-radius: 12px;
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
}
.newsletter-opt-in input.form-submit:hover,
.newsletter-opt-in input.form-submit:active {
  color: white;
}

.pane-newsletter-registration {
  margin: 0 0 1em;
  padding: 20px;
  border: 1px solid #eeeeef;
}
.pane-newsletter-registration .pane-title {
  font-size: 1em;
  margin: 0 0 5px;
}

@media (min-width: 781px) {
  #subscription_form_wrapper .form-item-email {
    display: inline-block;
  }
}
#subscription_form_wrapper label[for="edit-email"],
#subscription_form_wrapper label[for="edit-email--1"],
#subscription_form_wrapper label[for="edit-email--2"],
#subscription_form_wrapper label[for="edit-email--3"] {
  display: none;
}
#subscription_form_wrapper .ajax-progress {
  text-transform: uppercase;
  font-size: .85em;
  letter-spacing: .05em;
}
#subscription_form_wrapper .ajax-progress:after {
  content: "";
}

.subscription-submit {
  background: #4188bc;
  border: none;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  color: white;
  padding: 5px 10px;
  font-weight: normal;
  text-transform: uppercase;
  font-size: .85em;
  letter-spacing: .1em;
  margin: 10px 0 0;
}
@media (min-width: 781px) {
  .subscription-submit {
    display: inline-block;
    margin: 0;
  }
}
.subscription-submit:hover {
  background: #d3401e;
}

.node-type-vertical #subscription_form_wrapper .form-item .form-text {
  width: 90%;
  margin: 0 0 10px;
}

/**
 * @file
 * Pager
 */
/* A list of page numbers when more than 1 page of content is available. */
.pager {
  clear: both;
  padding: 0;
  text-align: center;
}

.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;
}

.pager-item,
.pager-first,
.pager-previous,
.pager-next,
.pager-last,
.pager-ellipsis {
  /* A concatenation of several list items using an ellipsis */
}

.pager-current {
  /* The current page's list item. */
  font-weight: bold;
}

/**
 * @file
 * Panel panes.
 */
.panel-pane {
  /** For IE we add the class via js; for other browsers we rely on :hover **/
}
.panel-pane .admin-links {
  font-size: xx-small;
  margin-right: 1em;
}
.panel-pane .admin-links li {
  padding-bottom: 2px;
  background: white;
  z-index: 201;
}
.panel-pane .admin-links li a {
  color: #ccc;
}
.panel-pane .admin-links li a:before {
  content: "[";
}
.panel-pane .admin-links li a:after {
  content: "]";
}
.panel-pane .admin-links:hover,
.panel-pane .admin-links-hover a {
  color: #000;
}
.panel-pane .panel-hide {
  display: none;
}
.panel-pane .panel-hide-hover, .panel-pane:hover .panel-hide {
  display: block;
  position: absolute;
  z-index: 200;
  margin-top: -1.5em;
}
.panel-pane .feed a {
  float: right;
}

.pane-node-field-image-banner {
  text-align: center;
  margin-top: 10px;
}

.donation-message {
  display: block;
  position: relative;
  width: 80%;
  min-width: 300px;
  max-width: 550px;
  margin: 1em auto;
}
.donation-message a {
  border: 1px solid #eeeeef;
  padding: 20px 5%;
  background: #d3401e;
  color: #eee;
  display: block;
  font-size: 1em;
  line-height: 1.35em;
  font-style: italic;
  width: 90%;
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, "Nimbus Sans L", sans-serif;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
.donation-message a strong {
  font-size: 1.1em;
  font-style: normal;
}
.donation-message a:hover {
  background: #832813;
}
.donation-message a .donation__give {
  color: #eee;
  font-style: normal;
  font-weight: normal;
  float: right;
  padding: 15px 0 0 10px;
  font-size: 1em;
  display: none;
}
.donation-message a .donation__give i.ss-icon {
  float: left;
  margin-top: 3px;
}
.donation-message a .donation__give .links-utility__text {
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .7em;
  margin: 0 0 0 8px;
  float: right;
  display: inline-block;
}
@media (min-width: 800px) {
  .donation-message a .donation__give .links-utility__text {
    display: inline-block;
  }
}
@media (min-width: 600px) {
  .donation-message a .donation__give {
    font-size: 1.5em;
    display: inline-block;
  }
}
@media (min-width: 800px) {
  .donation-message a .donation__give {
    padding: 15px 0 0 10px;
  }
}

.border-bottom-ul {
  list-style: none;
  margin-bottom: 5px;
  margin-top: 5px;
}

.border-bottom-ul li {
  border-bottom: 1px solid #33333c;
  padding: 5px 0 5px 5px;
}

.node-type-person h3.field-label {
  margin-bottom: 5px;
}

.view-staff .views-row.bio {
  height: 250px;
}

.node-type-person h1 {
  margin-bottom: 0;
}
.node-type-person .pane-node-field-ref-program,
.node-type-person .pane-node-field-position {
  display: inline-block;
  margin: 0 15px 1em 0;
  font-size: .9em;
  line-height: 2em;
}
.node-type-person .pane-node-field-ref-program .story__meta, .node-type-person .pane-node-field-ref-program .field-fc-story-creators,
.node-type-person .pane-node-field-ref-program .field-date-published,
.node-type-person .pane-node-field-position .story__meta,
.node-type-person .pane-node-field-position .field-fc-story-creators,
.node-type-person .pane-node-field-position .field-date-published {
  font-size: .9em;
}
.node-type-person .field-image {
  float: left;
  width: 100%;
  margin: 0 0 1em;
}
@media (min-width: 501px) {
  .node-type-person .field-image {
    float: right;
    margin: 0 0 15px 15px;
    width: 235px;
  }
}
.node-type-person .field-image .field-social-links {
  width: 100%;
  margin: 0;
  padding: 0;
}
.node-type-person .field-image .field-social-links div {
  font-size: .875em;
  padding: 0 5px;
}
.node-type-person p:nth-child(2) {
  margin-top: 0;
}

.podcast-link p {
  margin: 1em 0 0;
}

h1.podcast-title {
  margin: 0 0 .25em;
}

.node-type-program .pane-node-field-ref-program {
  margin: 0 0 .5em;
}

.podcast-image {
  display: block;
  margin: 0 0 1em;
  width: 100%;
  text-align: center;
}
@media (min-width: 601px) {
  .podcast-image {
    float: left;
    width: 220px;
    margin: 0 20px 1em 0;
    text-align: left;
  }
}

.podcast-teaser {
  margin: 0 0 1em;
}

.podcast-social-links.pane-node-field-social-links {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
}
.podcast-social-links.pane-node-field-social-links h2 {
  margin-bottom: 0;
}
.podcast-social-links.pane-node-field-social-links .field-collection-container {
  border: none;
  margin: 0;
  padding: 0;
}
.podcast-social-links.pane-node-field-social-links .field-collection-view-links {
  display: none;
}
.podcast-social-links.pane-node-field-social-links div {
  font-size: 1.05em;
  display: inline-block;
  margin: 0 5px 0 0;
}

.podcast-network-header {
  background: #00a0de url(https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/bg_soundworks2_png-1433770997) repeat bottom right;
  position: relative;
  padding: 25px 0 0;
  margin: 0;
  height: 375px;
}
@media (min-width: 855px) {
  .podcast-network-header {
    padding: 55px 0 0;
    margin: 0;
    height: 345px;
  }
}
@media (min-width: 855px) {
  .podcast-network-header .pane-page-title {
    width: 412px;
    padding: 0;
    margin: 0 auto;
  }
}
.podcast-network-header .pane-page-title h1 {
  background: url(https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/logo_soundworks-100_png-1433770998) no-repeat 0 0;
  padding: 35px 0 0 115px;
  height: 65px;
  margin: 0 auto 5px;
  text-align: left;
  color: white;
  font-size: 1.5em;
  width: 200px;
}
@media (min-width: 960px) {
  .podcast-network-header .pane-page-title h1 {
    font-size: 2.25em;
    width: 341px;
    padding-top: 25px;
    height: 75px;
  }
}
.podcast-network-header .field-teaser {
  text-align: center;
  color: white;
  margin: 15px 0 30px;
  font-size: .875em;
  line-height: 1.5em;
}
@media (min-width: 960px) {
  .podcast-network-header .field-teaser {
    font-size: 1em;
  }
}
.podcast-network-header ul {
  margin: 15px auto;
  padding: 0;
  max-width: 600px;
}
.podcast-network-header ul li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: block;
  width: 100%;
}
.podcast-network-header ul li a.button {
  line-height: 40px;
  font-size: .875em;
  background-color: white;
  color: #4188bc;
  border: 1px solid #4188bc;
}
.podcast-network-header ul li a.button:hover, .podcast-network-header ul li a.button:active {
  background: #d3401e;
  color: white;
}

.page-node-65994 .l-section--main {
  background: #fafafa;
  border-top: 1px solid #eeeeef;
}
.page-node-65994 .l-general__full {
  padding: 0;
  margin: 0;
}
.page-node-65994 .pane-episodes-soundworks {
  display: inline-block;
  margin: 1em 0 0;
  width: 94%;
  padding: 30px 3%;
  vertical-align: top;
  background: #fff;
  border-bottom: 1px solid #eeeeef;
  position: relative;
}
.page-node-65994 .pane-episodes-soundworks.promo-box--ad {
  background: #e8f1f7;
  border-bottom: 1px solid #eeeeef;
}
@media (min-width: 961px) {
  .page-node-65994 .pane-episodes-soundworks {
    width: 44%;
    margin: 2em 0 0;
    padding: 30px 2%;
    min-height: 250px;
    height: 420px;
  }
  .page-node-65994 .pane-episodes-soundworks:nth-child(odd) {
    margin-left: 3%;
  }
}
@media (min-width: 1140px) {
  .page-node-65994 .pane-episodes-soundworks {
    width: 27%;
  }
  .page-node-65994 .pane-episodes-soundworks:nth-child(odd) {
    margin-left: 0;
  }
  .page-node-65994 .pane-episodes-soundworks:nth-child(3n+3) {
    margin-left: 3%;
    margin-right: 3%;
  }
}
@media (min-width: 961px) {
  .page-node-65994 .views-field-nid {
    position: absolute;
    bottom: 15px;
    width: 87%;
    height: 210px;
  }
}
.page-node-65994 .field-image,
.page-node-65994 .field-podcast-logo {
  width: 150px;
  height: 150px;
  margin: 0 0 0 15px;
  float: right;
}
.page-node-65994 .field-image img,
.page-node-65994 .field-podcast-logo img {
  width: 150px;
}
.page-node-65994 h2 {
  font-weight: bold;
  font-size: 20px;
  line-height: 1em;
  margin: 0 0 15px;
}
.page-node-65994 h2 .story__program-the-world {
  background: none;
  height: 24px;
  width: auto;
  opacity: 1;
  text-indent: 0;
  margin: 0;
  padding: 0;
  display: block;
}
.page-node-65994 .field-teaser {
  font-size: .875em;
  line-height: 1.25em;
}
.page-node-65994 .hosts {
  font-size: .875em;
  line-height: 1.5em;
  margin: 15px 0;
}
.page-node-65994 .hosts a {
  font-weight: bold;
}
.page-node-65994 .views-field-field-ref-authors,
.page-node-65994 .views-field-title {
  margin: 0;
  font-size: .875em;
  line-height: 1.4em;
  font-weight: bold;
}
.page-node-65994 .views-field-field-ref-authors span, .page-node-65994 .views-field-field-ref-authors div,
.page-node-65994 .views-field-title span,
.page-node-65994 .views-field-title div {
  display: inline-block;
}
.page-node-65994 h4 {
  clear: both;
  width: 100%;
  margin: 15px 0 0;
  padding: 15px 0 0;
  border-top: 1px dashed #eeeeef;
  color: #444;
}
.page-node-65994 .audio-player__wrapper {
  clear: both;
  width: 100%;
  margin: 10px 0;
}
.page-node-65994 .audio-player__wrapper .mejs-controls div.mejs-time-rail {
  display: none;
}
.page-node-65994 .field-social-links {
  margin: 5px 0 0;
}
.page-node-65994 .social-link {
  display: inline;
  margin: 0 5px 0 0;
  font-size: 22px;
}
.page-node-65994 .pane-page-content {
  margin: 2em 0 1em;
  text-align: center;
  border-top: 1px solid #eeeeef;
  width: 100%;
}
.page-node-65994 .pane-page-content article {
  max-width: 960px;
  margin: 0 auto;
}
.page-node-65994 .pane-custom-social-networking-links-body {
  max-width: 960px;
  margin: 0 auto 1em;
}
.page-node-65994 .promo-box--ad.underwriter {
  padding: 24px;
  text-align: left;
}
.page-node-65994 .promo-box--ad.underwriter p {
  margin: 0 0 .5em;
}

.node-type-homepage .node-episode .mediaelement-audio {
  margin: 1em 0 0;
}
.node-type-homepage .node-episode a {
  margin: 0;
  font-weight: bold;
  display: inline;
  font-size: 0.75em;
  line-height: 2em;
  line-height: 18px;
}
.node-type-homepage .node-episode .field-terms-sections a,
.node-type-homepage .node-episode h2 a {
  font-size: 1em;
}
.node-type-homepage .node-episode a.contextual-links-trigger {
  display: none;
}
.node-type-homepage .node-episode .date-display-single {
  font-size: .75em;
  font-weight: 500;
  color: #8c8c94;
}

.program-landing-page .program-header-bg.l-section--main {
  padding: 24px 24px 36px;
  border-bottom: 1px solid #eeeeef;
  background: #fff;
}
.program-landing-page .program-header-bg.l-section--main .l-centered {
  text-align: center;
}
.program-landing-page .l-section--main {
  background: #fafafa;
}
.program-landing-page header.l-story__full {
  display: none;
}
.program-landing-page .l-story__full {
  width: 100%;
}
.program-landing-page .pane-all-programs .views-row {
  display: inline-block;
  margin: 1em 0 0;
  width: 94%;
  padding: 30px 3%;
  vertical-align: top;
  background: #fff;
  position: relative;
  text-align: center;
  /*border-bottom: 1px solid $line-gray;*/
}
.program-landing-page .pane-all-programs .views-row.promo-box--ad {
  background: #e8f1f7;
  margin: 1em 0 0;
  border-bottom: 1px solid #eeeeef;
}
@media (min-width: 961px) {
  .program-landing-page .pane-all-programs .views-row {
    width: 44%;
    margin: 1em 0 0;
    padding: 30px 2%;
  }
  .program-landing-page .pane-all-programs .views-row:nth-child(even) {
    margin-left: 3%;
  }
}
@media (min-width: 1140px) {
  .program-landing-page .pane-all-programs .views-row {
    width: 27%;
  }
  .program-landing-page .pane-all-programs .views-row:nth-child(even) {
    margin-left: 0;
  }
  .program-landing-page .pane-all-programs .views-row:nth-child(3n+2) {
    margin-left: 3%;
    margin-right: 3%;
  }
}
.program-landing-page .field-image {
  margin: 0 0 15px;
  height: 100px;
}
.program-landing-page .field-image img {
  width: auto;
  max-height: 100px;
}
.program-landing-page .field-teaser {
  font-size: .875em;
  line-height: 1.25em;
  height: 70px;
}
.program-landing-page .hosts {
  font-size: .875em;
  line-height: 1.5em;
  margin: 15px 0;
  display: block;
}
.program-landing-page .hosts a {
  font-weight: bold;
}
.program-landing-page .views-field-path {
  display: block;
  margin: 25px 0 0;
}
.program-landing-page .views-field-path a.button {
  background: #e8f1f7;
  color: #4188bc;
  margin: 0;
  line-height: 40px;
  font-size: 15px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
.program-landing-page .views-field-path a.button:hover, .program-landing-page .views-field-path a.button:active {
  background: #d3401e;
  color: white;
}
.program-landing-page .program-header-bg img {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.promo-box.pane-node-field-links-sponsors {
  text-align: left;
  padding-bottom: 24px;
}
.promo-box.pane-node-field-links-sponsors h2 {
  font-size: 90%;
  margin: 0;
}

.field-links-sponsors {
  margin-top: 5px;
  list-style-type: none;
}

/**
 * @file
 * Programs.
 */
.node-type-program .l-story__main {
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -100%;
  clear: both;
}
@media (min-width: 801px) {
  .node-type-program .l-story__main {
    clear: none;
    float: left;
    width: 56.5%;
    margin-left: 0;
    margin-right: -100%;
    clear: none;
  }
}
@media (min-width: 1020px) {
  .node-type-program .l-story__main {
    clear: none;
    float: left;
    width: 68.75%;
    margin-left: 0%;
    margin-right: -100%;
  }
}
.node-type-program .l-story__sidebar {
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -100%;
}
@media (min-width: 801px) {
  .node-type-program .l-story__sidebar {
    clear: none;
    float: right;
    width: 350px;
    margin-left: 0%;
    margin-right: 0%;
    margin-top: 20px;
  }
}
@media (min-width: 1020px) {
  .node-type-program .l-story__sidebar {
    float: right;
    width: 31.25%;
    margin-right: 0%;
    margin-left: -100%;
    min-width: 350px;
  }
}

.l-episode__latest-program-title {
  margin-top: 0;
  margin-bottom: 0em;
  padding-right: 24px;
}
@media (min-width: 481px) {
  .l-episode__latest-program-title {
    float: left;
    margin-bottom: 0;
  }
}

.l-episode__latest-program-more-link {
  font-size: 0.77778em;
  line-height: 1.92857em;
  font-weight: 700;
  position: relative;
}
@media (min-width: 481px) {
  .l-episode__latest-program-more-link {
    float: right;
    margin-right: 24px;
    top: -1em;
    display: block;
  }
}
.l-episode__latest-program-more-link .ss-icon {
  margin-left: 3px;
  position: relative;
  top: 2px;
}

.view-all-programs .story-list__group-1 {
  float: left;
  margin-right: 24px;
}

.node-type-program .node-person .field-image {
  width: 88%;
}

.node-type-program .pane-episodes-by-program-panel-pane-2,
.node-type-program .single-most-recent-episode {
  padding: 24px;
  background: #e8f1f7;
  position: relative;
  margin: 1.5em 0 3em;
}
.node-type-program .pane-episodes-by-program-panel-pane-2 h2,
.node-type-program .single-most-recent-episode h2 {
  font-size: 1em;
  margin-top: 0;
  margin-bottom: .25em;
}
.node-type-program .pane-episodes-by-program-panel-pane-2 .view-header,
.node-type-program .single-most-recent-episode .view-header {
  position: relative;
  margin-top: 0px;
  margin-bottom: 20px;
}
@media (min-width: 481px) {
  .node-type-program .pane-episodes-by-program-panel-pane-2 .view-header,
  .node-type-program .single-most-recent-episode .view-header {
    margin-top: -33px;
  }
}
.node-type-program .pane-episodes-by-program-panel-pane-2 .view-header a.l-episode__latest-program-more-link,
.node-type-program .single-most-recent-episode .view-header a.l-episode__latest-program-more-link {
  margin-right: 0;
}
.node-type-program .pane-episodes-by-program-panel-pane-2 .view-content,
.node-type-program .single-most-recent-episode .view-content {
  clear: both;
}

.node-type-program .single-most-recent-episode .node-title {
  display: none;
}

.pane-node-field-social-links,
.pane-node-field-links-sponsors,
.pane-block-9,
.l-story__sidebar .pane-node-field-ref-authors {
  padding: 24px;
  border: 1px solid #eeeeef;
  margin-bottom: 36px;
  background: white;
}
.pane-node-field-social-links h2,
.pane-node-field-links-sponsors h2,
.pane-block-9 h2,
.l-story__sidebar .pane-node-field-ref-authors h2 {
  font-size: 1em;
  line-height: 1em;
  margin-top: 0;
  margin-bottom: 1em;
}
.pane-node-field-social-links h3.field-label,
.pane-node-field-links-sponsors h3.field-label,
.pane-block-9 h3.field-label,
.l-story__sidebar .pane-node-field-ref-authors h3.field-label {
  display: none;
}
.pane-node-field-social-links ul,
.pane-node-field-links-sponsors ul,
.pane-block-9 ul,
.l-story__sidebar .pane-node-field-ref-authors ul {
  margin-bottom: 0;
}
.pane-node-field-social-links div,
.pane-node-field-links-sponsors div,
.pane-block-9 div,
.l-story__sidebar .pane-node-field-ref-authors div {
  font-size: 90%;
}

.pane-block-9 ul li {
  margin-left: 5px;
  color: #555;
}

.l-story__sidebar .pane-node-field-ref-authors article {
  margin: 0;
  border: none;
}
.l-story__sidebar .pane-node-field-ref-authors .field-teaser {
  font-size: 90%;
}

.date-display-single {
  font-style: italic;
}

/*.view-episodes-by-program.view-display-id-page_1 {
  .views-row {
    padding: 1em 0; 
    border-top: 1px solid $lt-gray;

    h2 {margin: 0;}
    .date-display-single {margin: 0 0 .5em;}
    .field-teaser {margin: .5em 0;}
  }
  .views-row-last {border-bottom: 1px solid $lt-gray;}
}*/
.program-header-bg img {
  -webkit-box-shadow: 0 1px 2px #eee;
  -moz-box-shadow: 0 1px 2px #eee;
  box-shadow: 0 1px 2px #eee;
  border: 1px solid white;
}
.program-header-bg .l-home-main {
  margin-top: 50px;
}

.page-node-3704 .pane-node-field-social-links div,
.page-node-63760 .pane-node-field-social-links div,
.page-node-49388 .pane-node-field-social-links div {
  font-size: 110%;
  display: inline-block;
  margin: 0 5px 0px 0;
}

.container-inline-date div,
.container-inline-date select,
.views-exposed-widgets .views-exposed-widget {
  display: inline;
}

.views-exposed-widgets .views-exposed-widget {
  margin: 5px 5px 0 0;
}

/**
 * @file
 * Promo box.
 */
.promo-box,
.promo-box--ad {
  display: block;
  margin: 0 0 0 -15px;
  padding: 9px 0;
  width: 300px;
  text-align: center;
  background-color: #e8f1f7;
}
@media (min-width: 321px) {
  .promo-box,
  .promo-box--ad {
    padding: 24px 0px;
    margin: 0 auto 24px;
    width: auto;
  }
}

.blocked-msg .msg,
.blocked-msg__after .msg {
  margin: 0 auto;
  padding: 0 20px;
}
.blocked-msg .msg h4,
.blocked-msg__after .msg h4 {
  margin: 0 0 15px;
}
.blocked-msg .msg p,
.blocked-msg__after .msg p {
  font-size: .875em;
  line-height: 1.5em;
}
.blocked-msg .msg .button,
.blocked-msg__after .msg .button {
  line-height: 40px;
}

.secondary .pane-dfp-pri-ros-btf-300x250 {
  margin-left: -4px;
}
@media (min-width: 321px) {
  .secondary .pane-dfp-pri-ros-btf-300x250 {
    margin: 0 auto 24px;
  }
}

.node-type-story .l-story__main .promo-box--ad:before {
  content: "Continue reading below";
  width: 100%;
  display: block;
  font-family: "Alegreya Sans", "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, "Nimbus Sans L", sans-serif;
  font-style: italic;
  margin: -10px 0 15px;
}
@media (min-width: 961px) {
  .node-type-story .l-story__main .promo-box--ad:before {
    display: none;
  }
}

.promo-box__title,
.node-freeform h2.promo-box__title {
  margin-top: 0;
  margin-bottom: 6px;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  color: #4188bc;
}

@-webkit-keyframes slidedown {
  0% {
    height: 0;
  }

  100% {
    height: 90px;
  }
}

@-moz-keyframes slidedown {
  0% {
    height: 0;
  }

  100% {
    height: 90px;
  }
}

@-o-keyframes slidedown {
  0% {
    height: 0;
  }

  100% {
    height: 90px;
  }
}

@keyframes slidedown {
  0% {
    height: 0;
  }

  100% {
    height: 90px;
  }
}

.promo-box--leaderboard-ad {
  margin: 0 auto;
  padding: 30px 0;
  width: 100%;
  height: 90px;
  text-align: center;
  background-color: #832813;
  display: none !important;
  -webkit-animation: slidedown 3s;
  -moz-animation: slidedown 3s;
  -o-animation: slidedown 3s;
  animation: slidedown 3s;
  position: relative;
}
@media (min-width: 841px) {
  .promo-box--leaderboard-ad {
    display: block !important;
  }
}
.promo-box--leaderboard-ad .dfp-tag-wrapper {
  background: #aaa;
  width: 728px;
  height: 90px;
  margin: 0 auto;
  display: block;
  -webkit-animation: slidedown 3s;
  -moz-animation: slidedown 3s;
  -o-animation: slidedown 3s;
  animation: slidedown 3s;
}
.promo-box--leaderboard-ad a.close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  color: #ddd;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px;
  font-size: 13px;
  z-index: 200;
}
.promo-box--leaderboard-ad a.close span {
  display: inline;
  position: relative;
  top: -2px;
}
.promo-box--leaderboard-ad a.close i {
  margin-top: 2px;
  display: inline;
}
.promo-box--leaderboard-ad a.close:hover {
  color: white;
}

@media (min-width: 481px) {
  .l-home-main__item-1 article,
  .l-home-main__item-2 article,
  .l-home-main__item-3 article,
  .l-home-main__item-4 article,
  .l-home-main__item-5 article,
  .l-home-main__item-6 article,
  .l-home-main__item-7 article,
  .l-home-main__item-8 article,
  .l-home-main__item-9 article {
    min-width: 300px;
  }
}

@media (min-width: 481px) {
  .story-full-width .promo-box--ad {
    display: inline-block;
    width: 48%;
  }
}
/**
 * @file
 * Promo box.
 * Governs styling of the Freeform Content Blocks
 */
.green-wire-box {
  border: 1px solid #eeeeef;
  padding: 5%;
  position: relative;
}

.node-freeform iframe, .node-freeform img {
  margin: 0 0 .5em;
}
.node-freeform h2 {
  font-size: 1.33333em;
  line-height: 1.26563em;
  margin: 0 0 .25em;
}
.node-freeform h3 {
  font-size: 1em;
  line-height: 1em;
  margin: 0 0 0.25em;
}
.node-freeform p {
  margin: 0 0 1em;
}
.node-freeform blockquote {
  margin: 0 0 1em;
  padding: 0;
}
.node-freeform blockquote p {
  margin: 0;
}
.node-freeform ul, .node-freeform ol {
  margin: .25em 0 1em;
  padding: 0;
}
.node-freeform .field-quote {
  padding: .25em 0 .25em 50px;
  font-size: 17px;
}
.node-freeform .field-quote:before {
  content: "";
  background: url(https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/icon-open-quote_png-1433770999) no-repeat 0.25em 0.25em;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 38px;
  height: 35px;
}
.node-freeform .field-quote-credit {
  color: #8c8c94;
  padding: .5em 0 1em 50px;
  font-weight: bold;
  font-size: 16px;
}
.node-freeform .field-quote-link {
  width: 100%;
  margin: .25em 0;
  display: block;
}
.node-freeform .field-quote-link a {
  width: 94%;
  margin: 0 auto;
  padding: 3%;
  display: block;
  text-align: center;
  font-size: 17px;
  line-height: 22px;
  background: #e8f1f7;
  font-weight: normal;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
.node-freeform .field-quote-link a:hover {
  color: white;
  background: #4188bc;
}

.vertical-listing__squares .green-wire-box .edit-entity {
  float: none;
}

/**
 * @file
 * Quick tab.
 */
#quicktabs-latest_content {
  border-left: 1px solid #eeeeef;
  border-right: 1px solid #eeeeef;
  border-bottom: 1px solid #eeeeef;
  margin-bottom: 36px;
}

.quicktabs-tabs {
  list-style-type: none;
  margin-bottom: 0;
  background: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #e8f1f7), color-stop(100%, rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(bottom, #e8f1f7, rgba(255, 255, 255, 0));
  background: -moz-linear-gradient(bottom, #e8f1f7, rgba(255, 255, 255, 0));
  background: -o-linear-gradient(bottom, #e8f1f7, rgba(255, 255, 255, 0));
  background: linear-gradient(bottom, #e8f1f7, rgba(255, 255, 255, 0));
  background: linear-gradient(to top, #e8f1f7, rgba(255, 255, 255, 0));
}
.quicktabs-tabs:before, .quicktabs-tabs:after {
  content: "";
  display: table;
}
.quicktabs-tabs:after {
  clear: both;
}

.quicktabs-tabs li a:link,
.quicktabs-tabs li a:visited {
  float: left;
  width: 33.33%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  border-top: 1px solid white;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  padding: 6px 0;
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
  text-align: center;
  color: #4188bc;
}
@media (min-width: 381px) {
  .quicktabs-tabs li a:link,
  .quicktabs-tabs li a:visited {
    font-size: 14px;
  }
}

#quicktabs-taxonomy_list .quicktabs-tabs li a:link,
#quicktabs-taxonomy_list .quicktabs-tabs li a:visited {
  padding: 8px 0;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #eeeeef;
  font-size: 14px;
  line-height: 16px;
}
@media (min-width: 601px) {
  #quicktabs-taxonomy_list .quicktabs-tabs li a:link,
  #quicktabs-taxonomy_list .quicktabs-tabs li a:visited {
    font-size: 16px;
    line-height: 54px;
    padding: 0;
  }
}

.quicktabs-tabs .ss-icon {
  position: relative;
  top: 3px;
  margin-right: 4px;
  line-height: 24px;
}
@media (min-width: 601px) {
  .quicktabs-tabs .ss-icon {
    margin-right: 6px;
    line-height: inherit;
  }
}

.quicktabs-tabs li a:hover,
.quicktabs-tabs li a:focus, #quicktabs-taxonomy_list .quicktabs-tabs li a:hover,
#quicktabs-taxonomy_list .quicktabs-tabs li a:focus {
  color: #d3401e;
  outline: none;
}

.quicktabs-tabs li.active a, #quicktabs-taxonomy_list .quicktabs-tabs li.active a {
  border-color: #eeeeef;
  color: #3a3a3e !important;
  background-color: white;
}

.quicktabs-tabs li.active.first a {
  border-left: 1px solid transparent;
}

.quicktabs-tabs li.active.last a {
  border-right: 1px solid transparent;
}

.quick-tab__tab-line {
  display: block;
}
@media (min-width: 481px) {
  .quick-tab__tab-line {
    display: inline;
  }
}
@media (min-width: 961px) {
  .quick-tab__tab-line {
    display: block;
  }
}

.quick-tab--main__tab-line {
  display: block;
}
@media (min-width: 601px) {
  .quick-tab--main__tab-line {
    display: inline;
  }
}

.quicktabs_main {
  clear: left;
  margin-top: 0;
  padding: 6px 24px 24px 24px;
  list-style-type: none;
}

.quicktabs-hide {
  display: none;
}

#quicktabs-latest_content {
  background: #fff;
}

#quicktabs-latest_content ul.quicktabs-tabs {
  margin-left: 0;
}

/**
 * @file
 * Recent stories.
 */
.recent-stories {
  padding: 0;
}
@media (min-width: 541px) {
  .recent-stories {
    display: block;
    padding-bottom: 0;
    text-align: left;
  }
}
@media (min-width: 1115px) {
  .recent-stories {
    line-height: 1.2em;
  }
}

@media (min-width: 541px) {
  .recent-stories__section-wrapper {
    margin-top: -27px;
    height: 72px;
    position: relative;
  }
}

.recent-stories__section {
  margin: 0 0 8px 0;
  list-style-type: none;
  font-weight: bold;
  font-size: 1.11111em;
  line-height: 1.35em;
}
@media (min-width: 541px) {
  .recent-stories__section {
    position: absolute;
    bottom: 0;
    font-size: 13.5px;
  }
}

.recent-stories__image {
  margin: 0;
}
@media (min-width: 541px) {
  .recent-stories__image {
    display: none;
  }
}
@media (min-width: 1115px) {
  .recent-stories__image {
    display: block;
  }
}

@media (min-width: 541px) {
  .recent-stories__title {
    margin-top: 0.1875em;
    margin-bottom: 27px;
  }
}

.recent-stories__title-link:link, .recent-stories__title-link:visited {
  color: #33333c;
  line-height: 1.3em;
}

.recent-stories__title-link:hover, .recent-stories__title-link:focus {
  color: #d3401e;
}

.l-6up.recent-stories {
  display: none;
}
@media (min-width: 801px) {
  .l-6up.recent-stories {
    display: block;
  }
}

.recent-stories.slideshow-off .l-6up__item-2,
.recent-stories.slideshow-off .l-6up__item-3,
.recent-stories.slideshow-off .l-6up__item-4,
.recent-stories.slideshow-off .l-6up__item-5,
.recent-stories.slideshow-off .l-6up__item-6 {
  display: none;
}
@media (min-width: 541px) {
  .recent-stories.slideshow-off .slide {
    display: block;
  }
}

#region-map {
  margin: 0 auto;
  display: none;
}
@media (min-width: 600px) {
  #region-map {
    width: 555px;
    height: 283px;
    display: block;
  }
  #region-map #Layer_1 {
    width: 555px !important;
    height: 283px !important;
  }
}
@media (min-width: 800px) {
  #region-map {
    width: 800px;
    height: 409px;
    display: block;
  }
  #region-map #Layer_1 {
    width: 800px !important;
    height: 409px !important;
  }
}
@media (min-width: 1080px) {
  #region-map {
    width: 900px;
    height: 459px;
    display: block;
  }
  #region-map #Layer_1 {
    width: 900px !important;
    height: 459px !important;
  }
}
#region-map .region {
  fill: #777;
  cursor: pointer;
}
#region-map .region:hover {
  fill: #d3401e;
}
#region-map .region.selected {
  fill: #4188bc;
}

/**
 * @file
 * Facetted search.
 */
.view-pri-facetted-search .view-filters {
  float: left;
  width: 96%;
  padding: 2% 2% 3%;
  margin: 0 0 2em;
  background: #eee;
  border: 1px solid #ddd;
}
.view-pri-facetted-search .view-filters .views-exposed-widget {
  display: inline-block;
}
.view-pri-facetted-search .view-filters .views-exposed-widget.views-submit-button, .view-pri-facetted-search .view-filters .views-exposed-widget.views-reset-button {
  margin: 10px 5px;
  display: block;
  width: 100%;
}
@media (min-width: 801px) {
  .view-pri-facetted-search .view-filters .views-exposed-widget.views-submit-button, .view-pri-facetted-search .view-filters .views-exposed-widget.views-reset-button {
    margin: 0;
    display: inline-block;
    width: auto;
  }
}
.view-pri-facetted-search .view-filters .views-exposed-widget.views-submit-button input, .view-pri-facetted-search .view-filters .views-exposed-widget.views-reset-button input {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  border: none;
  font-weight: normal;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  width: 98%;
  padding: 10px;
  margin: 10px 0 0;
}
@media (min-width: 801px) {
  .view-pri-facetted-search .view-filters .views-exposed-widget.views-submit-button input, .view-pri-facetted-search .view-filters .views-exposed-widget.views-reset-button input {
    margin: 0 5px;
    padding: 5px 10px;
    display: inline-block;
    width: auto;
  }
}
.view-pri-facetted-search .view-filters .views-exposed-widget input {
  border: 1px solid #ddd;
  padding: 5px;
  color: #555;
}
.view-pri-facetted-search .view-filters .views-exposed-widget input.required.error {
  background-color: white;
  color: #444;
}
.view-pri-facetted-search .view-filters .views-exposed-widget.views-submit-button input {
  background: #4188bc;
  color: white;
}
.view-pri-facetted-search .view-filters .views-exposed-widget.views-submit-button input:hover {
  background: #d3401e;
}
.view-pri-facetted-search .view-filters .views-exposed-widget.views-reset-button input {
  background: white;
  color: #4188bc;
}
.view-pri-facetted-search .view-filters .views-exposed-widget.views-reset-button input:hover {
  background: #d3401e;
  color: white;
}
.view-pri-facetted-search .view-filters .facet {
  float: left;
  width: 100%;
  margin: 2em 0 0 0;
}
@media (min-width: 601px) {
  .view-pri-facetted-search .view-filters .facet {
    width: 31%;
    margin-right: 2%;
  }
}
@media (min-width: 961px) {
  .view-pri-facetted-search .view-filters .facet {
    width: 23%;
  }
}
.view-pri-facetted-search .view-filters .facet h2 {
  margin: 0 0 .5em;
  font-size: 15px;
}
.view-pri-facetted-search .view-filters .facet ul {
  margin: 0;
  padding: 0;
}
.view-pri-facetted-search .view-filters .facet ul li {
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 1.5em;
  list-style: none;
}
.view-pri-facetted-search .view-filters .facet .facetapi-limit-link {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 10px 0 0;
  width: 100%;
  display: block;
}
.view-pri-facetted-search .view-content {
  clear: both;
}
.view-pri-facetted-search .view-content .views-row .field-teaser {
  max-width: 800px;
}
.view-pri-facetted-search .view-content .node-person,
.view-pri-facetted-search .view-content .node-program {
  background: #e8f1f7;
  border: none;
  padding: 24px 5px;
}
.view-pri-facetted-search .view-content .node-person figure,
.view-pri-facetted-search .view-content .node-program figure {
  margin: 0;
  padding: 0;
}
.view-pri-facetted-search .view-content .node-person:before,
.view-pri-facetted-search .view-content .node-program:before,
.view-pri-facetted-search .view-content .node-episode:before,
.view-pri-facetted-search .view-content .node-page:before,
.view-pri-facetted-search .view-content .node-webform:before {
  text-transform: uppercase;
  display: inline-block;
  font-size: 12px;
  padding: 0;
  color: #555;
  letter-spacing: 0.1em;
}
.view-pri-facetted-search .view-content .node-person:before {
  content: "Person";
}
.view-pri-facetted-search .view-content .node-program:before {
  content: "Program";
}
.view-pri-facetted-search .view-content .node-episode:before {
  content: "Episode";
}
.view-pri-facetted-search .view-content .node-page:before {
  content: "Page";
}
.view-pri-facetted-search .view-content .node-webform:before {
  content: "Webform";
}

.page-live-schedule h2.pane-title {
  margin-bottom: .5em;
}

.page-live-schedule .views-exposed-widgets .views-exposed-widget {
  margin: 0;
}

.view-live-stream-schedule .view-header p,
.pane-quicktabs-live-steam-schedule .view-header p {
  margin: 0;
}
.view-live-stream-schedule .view-filters,
.pane-quicktabs-live-steam-schedule .view-filters {
  display: block;
  width: 100%;
}
.view-live-stream-schedule .view-filters .views-exposed-widget,
.pane-quicktabs-live-steam-schedule .view-filters .views-exposed-widget {
  display: inline-block;
  margin: 0;
}
.view-live-stream-schedule .view-filters label,
.pane-quicktabs-live-steam-schedule .view-filters label {
  font-weight: normal;
  font-size: 15px;
}
.view-live-stream-schedule .quicktabs-wrapper,
.pane-quicktabs-live-steam-schedule .quicktabs-wrapper {
  background: white;
  display: block;
  width: 100%;
}
.view-live-stream-schedule #quicktabs-view__live_stream_schedule__page,
.pane-quicktabs-live-steam-schedule #quicktabs-view__live_stream_schedule__page {
  margin: 1em 0;
  padding: 0;
}
.view-live-stream-schedule .quicktabs-tabs,
.pane-quicktabs-live-steam-schedule .quicktabs-tabs {
  margin: 0;
  padding: 0;
  display: block;
}
.view-live-stream-schedule .quicktabs-tabs li a, .view-live-stream-schedule .quicktabs-tabs li.first a,
.pane-quicktabs-live-steam-schedule .quicktabs-tabs li a,
.pane-quicktabs-live-steam-schedule .quicktabs-tabs li.first a {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  padding: 15px 0;
  font-size: 14px;
}
.view-live-stream-schedule .quicktabs-tabs li.active a,
.pane-quicktabs-live-steam-schedule .quicktabs-tabs li.active a {
  border-top: 1px solid white;
  border-right: 1px solid white;
}
.view-live-stream-schedule .item-list,
.pane-quicktabs-live-steam-schedule .item-list {
  display: inline-block;
  width: 25%;
  float: left;
  background: #e9f1f7;
}
.view-live-stream-schedule .quicktabs_main,
.pane-quicktabs-live-steam-schedule .quicktabs_main {
  background: white;
  padding: 2%;
  margin: 0;
  display: inline-block;
  width: 70%;
  clear: none;
  min-height: 279px;
}
.view-live-stream-schedule .quicktabs_main .quicktabs-views-group,
.view-live-stream-schedule .quicktabs_main .views-row,
.pane-quicktabs-live-steam-schedule .quicktabs_main .quicktabs-views-group,
.pane-quicktabs-live-steam-schedule .quicktabs_main .views-row {
  display: block;
  width: 100%;
  border-bottom: 1px solid #eeeeef;
  padding: 5px 0;
  vertical-align: top;
}
.view-live-stream-schedule .quicktabs_main .quicktabs-views-group .views-field-field-start-time,
.view-live-stream-schedule .quicktabs_main .quicktabs-views-group .field-day-of-week-time,
.view-live-stream-schedule .quicktabs_main .quicktabs-views-group .field-ref-program,
.view-live-stream-schedule .quicktabs_main .views-row .views-field-field-start-time,
.view-live-stream-schedule .quicktabs_main .views-row .field-day-of-week-time,
.view-live-stream-schedule .quicktabs_main .views-row .field-ref-program,
.pane-quicktabs-live-steam-schedule .quicktabs_main .quicktabs-views-group .views-field-field-start-time,
.pane-quicktabs-live-steam-schedule .quicktabs_main .quicktabs-views-group .field-day-of-week-time,
.pane-quicktabs-live-steam-schedule .quicktabs_main .quicktabs-views-group .field-ref-program,
.pane-quicktabs-live-steam-schedule .quicktabs_main .views-row .views-field-field-start-time,
.pane-quicktabs-live-steam-schedule .quicktabs_main .views-row .field-day-of-week-time,
.pane-quicktabs-live-steam-schedule .quicktabs_main .views-row .field-ref-program {
  display: inline-block;
  font-size: 15px;
  vertical-align: top;
}
.view-live-stream-schedule .quicktabs_main .quicktabs-views-group .field-day-of-week-time,
.view-live-stream-schedule .quicktabs_main .quicktabs-views-group .views-field-field-start-time,
.view-live-stream-schedule .quicktabs_main .views-row .field-day-of-week-time,
.view-live-stream-schedule .quicktabs_main .views-row .views-field-field-start-time,
.pane-quicktabs-live-steam-schedule .quicktabs_main .quicktabs-views-group .field-day-of-week-time,
.pane-quicktabs-live-steam-schedule .quicktabs_main .quicktabs-views-group .views-field-field-start-time,
.pane-quicktabs-live-steam-schedule .quicktabs_main .views-row .field-day-of-week-time,
.pane-quicktabs-live-steam-schedule .quicktabs_main .views-row .views-field-field-start-time {
  width: 31%;
  padding-left: 0;
  vertical-align: top;
}
@media (min-width: 600px) {
  .view-live-stream-schedule .quicktabs_main .quicktabs-views-group .field-day-of-week-time,
  .view-live-stream-schedule .quicktabs_main .quicktabs-views-group .views-field-field-start-time,
  .view-live-stream-schedule .quicktabs_main .views-row .field-day-of-week-time,
  .view-live-stream-schedule .quicktabs_main .views-row .views-field-field-start-time,
  .pane-quicktabs-live-steam-schedule .quicktabs_main .quicktabs-views-group .field-day-of-week-time,
  .pane-quicktabs-live-steam-schedule .quicktabs_main .quicktabs-views-group .views-field-field-start-time,
  .pane-quicktabs-live-steam-schedule .quicktabs_main .views-row .field-day-of-week-time,
  .pane-quicktabs-live-steam-schedule .quicktabs_main .views-row .views-field-field-start-time {
    width: 15%;
    padding-left: 5px;
  }
}
.view-live-stream-schedule .quicktabs_main .quicktabs-views-group .field-ref-program,
.view-live-stream-schedule .quicktabs_main .views-row .field-ref-program,
.pane-quicktabs-live-steam-schedule .quicktabs_main .quicktabs-views-group .field-ref-program,
.pane-quicktabs-live-steam-schedule .quicktabs_main .views-row .field-ref-program {
  width: 64%;
}
@media (min-width: 600px) {
  .view-live-stream-schedule .quicktabs_main .quicktabs-views-group .field-ref-program,
  .view-live-stream-schedule .quicktabs_main .views-row .field-ref-program,
  .pane-quicktabs-live-steam-schedule .quicktabs_main .quicktabs-views-group .field-ref-program,
  .pane-quicktabs-live-steam-schedule .quicktabs_main .views-row .field-ref-program {
    width: auto;
  }
}
.view-live-stream-schedule .quicktabs_main .quicktabs-views-group:nth-child(odd),
.view-live-stream-schedule .quicktabs_main .views-row-odd,
.pane-quicktabs-live-steam-schedule .quicktabs_main .quicktabs-views-group:nth-child(odd),
.pane-quicktabs-live-steam-schedule .quicktabs_main .views-row-odd {
  background: #f5f5f5;
}
.view-live-stream-schedule .quicktabs_main .quicktabs-views-group:first-of-type,
.view-live-stream-schedule .quicktabs_main .views-row-first,
.pane-quicktabs-live-steam-schedule .quicktabs_main .quicktabs-views-group:first-of-type,
.pane-quicktabs-live-steam-schedule .quicktabs_main .views-row-first {
  border-top: 1px solid #eeeeef;
}

/**
 * @file
 * Series.
 */
.section-verticals .vertical__summary,
.section-series .vertical__summary {
  padding: 0;
}
.section-verticals .vertical__summary h1,
.section-series .vertical__summary h1 {
  margin-top: 0;
}
.section-verticals .vertical__summary .pane-series-items,
.section-series .vertical__summary .pane-series-items {
  background: white;
  border: 1px solid #eeeeef;
  padding: 24px;
  margin: 0 0 24px;
}
.section-verticals .field-text-tagline,
.section-series .field-text-tagline {
  border: none;
}
.section-verticals .field-social,
.section-verticals .vertical__summary-text,
.section-series .field-social,
.section-series .vertical__summary-text {
  margin: 0;
}
.section-verticals .field-social span,
.section-verticals .field-social div,
.section-verticals .vertical__summary-text span,
.section-verticals .vertical__summary-text div,
.section-series .field-social span,
.section-series .field-social div,
.section-series .vertical__summary-text span,
.section-series .vertical__summary-text div {
  display: inline;
}
.section-verticals .field-social a,
.section-verticals .vertical__summary-text a,
.section-series .field-social a,
.section-series .vertical__summary-text a {
  margin: 0 0 0 3px;
  display: inline;
  font-size: 20px;
}
.section-verticals .field-social,
.section-series .field-social {
  border-bottom: 1px solid #eeeeef;
  padding: 0 0 5px;
  margin: 0 0 10px;
}
.section-verticals .follow-prompt,
.section-series .follow-prompt {
  clear: both;
  float: left;
  width: 100%;
  margin-top: 15px;
}
.section-verticals a.button--tight,
.section-series a.button--tight {
  margin-top: 6px;
}
.section-verticals .person,
.section-series .person {
  font-size: 80%;
}
.section-verticals .person span,
.section-verticals .person div,
.section-series .person span,
.section-series .person div {
  display: inline;
}
.section-verticals .l-vertical__prompt,
.section-series .l-vertical__prompt {
  text-align: left;
}
.section-verticals .l-vertical__prompt .view-series-items,
.section-series .l-vertical__prompt .view-series-items {
  margin: 3em 0 0;
}
.section-verticals .l-vertical__prompt .l-home-featured__group-1,
.section-series .l-vertical__prompt .l-home-featured__group-1 {
  padding: 0;
}
.section-verticals .l-vertical__prompt .l-home-featured__group-2,
.section-series .l-vertical__prompt .l-home-featured__group-2 {
  padding: 0;
}
@media (min-width: 1040px) {
  .section-verticals .l-vertical__prompt .l-home-featured__group-2,
  .section-series .l-vertical__prompt .l-home-featured__group-2 {
    padding: 0 0 0 20px;
  }
}
.section-verticals .l-vertical__prompt .l-home-featured__group-2 .feature__title,
.section-series .l-vertical__prompt .l-home-featured__group-2 .feature__title {
  font-size: 1.75em;
  line-height: 1.2em;
  margin-bottom: 0.36563em;
  padding: 0;
}
.section-verticals .l-vertical__prompt .l-home-featured,
.section-series .l-vertical__prompt .l-home-featured {
  margin-top: 0;
  overflow: visible;
}
.section-verticals .l-vertical__prompt .field-teaser,
.section-series .l-vertical__prompt .field-teaser {
  margin: .5em 0 1em;
  font-size: .9em;
  line-height: 1.5em;
}
.section-verticals .l-vertical__prompt .teaser-list__section,
.section-series .l-vertical__prompt .teaser-list__section {
  display: none;
}
.section-verticals .l-vertical__prompt .pane-taxonomy-term-field-featured-stories,
.section-verticals .l-vertical__prompt .pane-node-field-ref-stories,
.section-series .l-vertical__prompt .pane-taxonomy-term-field-featured-stories,
.section-series .l-vertical__prompt .pane-node-field-ref-stories {
  margin: 1em 0 0;
  padding: 0;
  border-top: 1px solid #eeeeef;
}
.section-verticals .l-vertical__prompt .pane-taxonomy-term-field-featured-stories .view-mode-featured_medium,
.section-verticals .l-vertical__prompt .pane-node-field-ref-stories .view-mode-featured_medium,
.section-series .l-vertical__prompt .pane-taxonomy-term-field-featured-stories .view-mode-featured_medium,
.section-series .l-vertical__prompt .pane-node-field-ref-stories .view-mode-featured_medium {
  width: 48%;
  display: inline-block;
  margin: 0 4% 0 0;
}
.section-verticals .home__secondary,
.section-series .home__secondary {
  padding: 0 0 36px;
}
.section-verticals .home__secondary .quicktabs-wrapper .quicktabs-tabs,
.section-series .home__secondary .quicktabs-wrapper .quicktabs-tabs {
  margin: 0;
  background: none;
}
.section-verticals .home__secondary .quicktabs-wrapper .quicktabs-tabs li a,
.section-series .home__secondary .quicktabs-wrapper .quicktabs-tabs li a {
  font-size: 16px;
  background: #e8f1f7;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid white;
  text-align: center;
  width: 31%;
  margin: 0 1% 24px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  text-shadow: 0 1px 0 white;
  padding: 15px 0;
}
.section-verticals .home__secondary .quicktabs-wrapper .quicktabs-tabs li.active a,
.section-series .home__secondary .quicktabs-wrapper .quicktabs-tabs li.active a {
  background: white;
  color: #777 !important;
  border: 1px solid #eeeeef;
}
.section-verticals .home__secondary .quicktabs-wrapper .quicktabs-tabs li.active.first.last a,
.section-series .home__secondary .quicktabs-wrapper .quicktabs-tabs li.active.first.last a {
  display: none;
}
.section-verticals .home__secondary .quicktabs-wrapper .quicktabs_main,
.section-series .home__secondary .quicktabs-wrapper .quicktabs_main {
  padding: 0;
}

/**
 * @file
 * Secondary section
 */
.home__secondary {
  background-color: #fafafa;
}

.home__secondary-title-wrapper {
  border-top: 1px solid #eeeeef;
  padding-top: 27px;
  padding-bottom: 27px;
}

.home__secondary-title {
  margin: 0;
  font-size: 1em;
  line-height: 1.5em;
  color: rgba(140, 140, 148, 0.66);
}

.home__secondary-ad-wrapper {
  display: none;
  border-top: 1px solid #eeeeef;
  padding-top: 27px;
  padding-bottom: 27px;
}
@media (min-width: 841px) {
  .home__secondary-ad-wrapper {
    display: block;
  }
}

.home__secondary-ad-wrapper .promo-box,
.home__secondary-ad-wrapper .promo-box--leaderboard-ad {
  margin-top: 0;
  margin-bottom: 0;
}

.home__secondary .story-list {
  border-top: 1px solid #eeeeef;
  border-bottom: none;
}

.home__secondary-more {
  border-top: 1px solid #eeeeef;
  overflow: hidden;
}

.home__secondary .view-load-more .views-row {
  border-top: 1px solid #eeeeef;
}
.home__secondary .view-load-more .views-row-last {
  border-bottom: 1px solid #eeeeef;
}
.home__secondary .view-load-more .story-list {
  border: none;
  margin: 0;
  padding-left: 5%;
  padding-right: 5%;
  width: 90%;
}
@media (min-width: 600px) {
  .home__secondary .view-load-more .story-list {
    margin: 0 auto;
    width: 66.6666667%;
    padding-left: 0;
    padding-right: 0;
  }
}

.home__secondary .view-load-more .pager-load-more {
  padding: 1.5em 0;
}
.home__secondary .view-load-more .pager-load-more li {
  margin: 0;
  padding: 0 5%;
  width: 100%;
}
@media (min-width: 600px) {
  .home__secondary .view-load-more .pager-load-more li {
    margin: 0 auto;
    padding: 0;
    width: 66.666667%;
  }
}

.dfp-ad {
  margin: 0 auto;
}

.pane-donor-blog,
.pane-vertical-logo,
.pane-story-association,
.l-general__sidebar .pane-music-heard-on-air {
  padding: 24px;
  border: 1px solid #eeeeef;
  margin-bottom: 36px;
}
.pane-donor-blog .field-text-tagline,
.pane-vertical-logo .field-text-tagline,
.pane-story-association .field-text-tagline,
.l-general__sidebar .pane-music-heard-on-air .field-text-tagline {
  line-height: 1.5em;
}
.pane-donor-blog .attachment-before .view-header p,
.pane-vertical-logo .attachment-before .view-header p,
.pane-story-association .attachment-before .view-header p,
.l-general__sidebar .pane-music-heard-on-air .attachment-before .view-header p {
  margin: 0;
  font-size: 80%;
}

.l-general__sidebar .pane-music-heard-on-air .pane__title {
  margin: 0 0 .25em;
  font-size: 1em;
}
.l-general__sidebar .pane-music-heard-on-air .views-row.views-row-last {
  margin-bottom: 0;
}

.discussion-teaser {
  font-size: 80%;
  line-height: 1.5em;
  margin: 1em 0;
}

.vertical-association {
  border-top: 1px solid #eeeeef;
  padding: 16px 0 0;
  font-size: 90%;
  line-height: 1.5em;
  font-style: italic;
}
.vertical-association a {
  display: inline-block;
  width: 100px;
  height: 14px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  margin: 0 5px;
}
.vertical-association a.node50 {
  background: url(https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/global-nation-final-sm_png-1433771000) no-repeat top left;
}
.vertical-association a.node51 {
  background: url(https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/human-needs-final-sm_png-1433771000) no-repeat top left;
}
.vertical-association a.node69490 {
  display: inline;
  width: auto;
  height: auto;
  text-indent: initial;
  margin: 0;
}

.pane-donor-blog .pane-title {
  font-size: 0.88889em;
  line-height: 1.6875em;
  margin-top: 1.125em;
  margin-bottom: 0em;
  border-bottom: 1px solid #eeeeef;
}

.node-type-donor-blog #main-content .field-image,
.node-type-page #main-content .field-image {
  margin-top: 60px;
}

.pane-geo-quiz {
  background: white;
  padding: 24px 24px 0;
  margin: 0 0 1em;
  border: 1px solid #eeeeef;
}
.pane-geo-quiz .pane-title {
  margin: 0;
}

/**
 * @file
 * Share count.
 */
.share-count__wrapper {
  position: relative;
}

.share-count {
  position: absolute;
  top: -14px;
  right: -15px;
  height: 30px;
  width: 30px;
  margin: 0;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border-radius: 15px;
  background-color: #d3401e;
  color: white;
  font-family: "Alegreya Sans", "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, "Nimbus Sans L", sans-serif;
  font-size: 15px;
  line-height: 30px;
  text-align: center;
}
.share-count:focus, .share-count:hover {
  -webkit-transition: all 0.12s ease-in-out;
  -moz-transition: all 0.12s ease-in-out;
  -o-transition: all 0.12s ease-in-out;
  transition: all 0.12s ease-in-out;
  background: #4188bc;
}
.share-count:focus:before, .share-count:hover:before {
  content: 'Social Shares';
  display: block;
  position: absolute;
  right: 33px;
  bottom: 14px;
  width: 1000px;
  color: #4188bc;
  text-align: right;
}

.story-list .share-count {
  top: -2px;
}
@media (min-width: 601px) {
  .story-list .share-count {
    top: -14px;
  }
}

/**
 * @file
 * Sharing links.
 */
/* Hide the gigya sharing field. */
.field-sharing {
  display: none;
}

.sharing-links {
  display: block;
}
@media (min-width: 741px) {
  .sharing-links {
    display: block;
  }
}

.sharing-links--fixed {
  position: fixed;
  top: 50%;
  right: 6px;
  display: none;
  z-index: 1000;
}
@media (min-width: 741px) {
  .sharing-links--fixed {
    display: block;
  }
}

.sharing-links--fixed__list {
  position: relative;
  bottom: 54px;
}

.sharing-links__list {
  line-height: 36px;
  list-style-type: none;
  margin: 0;
  padding: 0 0 36px 0;
}

.sharing-links__item {
  float: left;
}

.sharing-links--fixed__item {
  float: none;
  word-wrap: normal;
}

.sharing-links--header__item {
  float: left;
  padding: 12px 0 0;
}

.sharing-links--body__item {
  float: left;
  padding: 0;
}

.sharing-links__link,
.sharing-links__count,
.sharing-links__facebook:link,
.sharing-links__facebook:visited,
.sharing-links__twitter:link,
.sharing-links__twitter:visited,
.sharing-links__googleplus:link,
.sharing-links__googleplus:visited,
.sharing-links__comment:link,
.sharing-links__comment:visited,
.sharing-links__share:link,
.sharing-links__share:visited {
  display: block;
  width: 36px;
  height: 36px;
  text-align: center;
}

.sharing-links__count {
  margin: 0;
  font-size: 14px;
  line-height: 36px;
  font-weight: 700;
  background-color: #d3401e;
  color: white;
  font-family: "Alegreya Sans", "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, "Nimbus Sans L", sans-serif;
}

.sharing-links__facebook:link, .sharing-links__facebook:visited {
  background-color: #3b5998;
  color: white;
}

.sharing-links__facebook:hover, .sharing-links__facebook:focus {
  background-color: white;
  color: #3b5998;
}

.sharing-links__twitter:link, .sharing-links__twitter:visited {
  background-color: #4099ff;
  color: white;
}

.sharing-links__twitter:hover, .sharing-links__twitter:focus {
  background-color: white;
  color: #4099ff;
}

.sharing-links__googleplus:link, .sharing-links__googleplus:visited {
  background-color: #0057c8;
  color: white;
}

.sharing-links__googleplus:hover, .sharing-links__googleplus:focus {
  background-color: white;
  color: #0057c8;
}

.sharing-links__comment:link, .sharing-links__comment:visited {
  background-color: #4188bc;
  color: white;
}

.sharing-links__comment:hover, .sharing-links__comment:focus {
  background-color: white;
  color: #4188bc;
}

.sharing-links__share:link, .sharing-links__share:visited {
  background-color: #c3d600;
  color: white;
}

.sharing-links__share:hover, .sharing-links__share:focus {
  background-color: white;
  color: #c3d600;
}

.sharing-links__icon {
  position: relative;
  top: 3px;
}

.sharing-links__comment:link, .sharing-links__comment:visited {
  display: none;
}

.node-type-story .sharing-links__comment:link, .node-type-story .sharing-links__comment:visited {
  display: block;
}

.sharing-links--body,
.sharing-links--header {
  margin: 0 0 1em;
}

.share__text {
  display: none;
  font-size: .75em;
  font-style: italic;
  line-height: 1em;
}

.sharing-links--body .share-count-update,
.sharing-links--header .share-count-update {
  font-style: italic;
  width: 95px;
  font-size: 15px;
}
.sharing-links--body .share-count-update:after,
.sharing-links--header .share-count-update:after {
  content: "shares";
  margin: 0 0 0 3px;
  font-size: 13px;
}

.node-type-playlist .sharing-links--header,
.node-type-user-audio .sharing-links--header,
.node-type-person .sharing-links--header,
.node-type-music-heard-on-air .sharing-links--header,
.node-type-episode .sharing-links--header,
.node-type-page .sharing-links--header {
  clear: both;
}
@media (min-width: 1161px) {
  .node-type-playlist .sharing-links--header .googleplus.sharing-links--header__item,
  .node-type-playlist .sharing-links--header .sharing-links__googleplus,
  .node-type-user-audio .sharing-links--header .googleplus.sharing-links--header__item,
  .node-type-user-audio .sharing-links--header .sharing-links__googleplus,
  .node-type-person .sharing-links--header .googleplus.sharing-links--header__item,
  .node-type-person .sharing-links--header .sharing-links__googleplus,
  .node-type-music-heard-on-air .sharing-links--header .googleplus.sharing-links--header__item,
  .node-type-music-heard-on-air .sharing-links--header .sharing-links__googleplus,
  .node-type-episode .sharing-links--header .googleplus.sharing-links--header__item,
  .node-type-episode .sharing-links--header .sharing-links__googleplus,
  .node-type-page .sharing-links--header .googleplus.sharing-links--header__item,
  .node-type-page .sharing-links--header .sharing-links__googleplus {
    display: inline-block;
  }
  .node-type-playlist .sharing-links--header .comment.sharing-links--header__item,
  .node-type-user-audio .sharing-links--header .comment.sharing-links--header__item,
  .node-type-person .sharing-links--header .comment.sharing-links--header__item,
  .node-type-music-heard-on-air .sharing-links--header .comment.sharing-links--header__item,
  .node-type-episode .sharing-links--header .comment.sharing-links--header__item,
  .node-type-page .sharing-links--header .comment.sharing-links--header__item {
    display: none;
  }
}

.sharing-links--header {
  width: 100%;
}
.sharing-links--header .sharing-links__list {
  width: 100%;
}
.sharing-links--header .sharing-links--header__item {
  width: 13%;
}
.sharing-links--header .sharing-links--header__item.first {
  width: 35%;
}
.sharing-links--header .share-count-update,
.sharing-links--header .sharing-links__facebook,
.sharing-links--header .sharing-links__twitter,
.sharing-links--header .sharing-links__googleplus,
.sharing-links--header .sharing-links__comment,
.sharing-links--header .sharing-links__share {
  width: 100%;
}
@media (min-width: 1161px) {
  .sharing-links--header {
    clear: both;
  }
  .sharing-links--header .sharing-links--header__item {
    width: 22%;
  }
  .sharing-links--header .sharing-links--header__item.first {
    width: 24%;
  }
  .sharing-links--header .sharing-links--header__item.last {
    width: 10%;
  }
  .sharing-links--header .sharing-links--header__item.googleplus {
    display: none;
  }
  .sharing-links--header .share__text {
    display: inline-block;
  }
  .sharing-links--header .share-count-update,
  .sharing-links--header .sharing-links__facebook,
  .sharing-links--header .sharing-links__twitter,
  .sharing-links--header .sharing-links__comment,
  .sharing-links--header .sharing-links__googleplus,
  .sharing-links--header .sharing-links__share {
    width: 100%;
  }
  .sharing-links--header .sharing-links__googleplus {
    display: none;
  }
}

.sharing-links--body {
  width: 100%;
}
.sharing-links--body .sharing-links__list {
  width: 100%;
}
.sharing-links--body .sharing-links--body__item {
  width: 16%;
}
.sharing-links--body .sharing-links--body__item.first {
  width: 35%;
}
.sharing-links--body .sharing-links--body__item.comment {
  display: none;
}
.sharing-links--body .share-count-update,
.sharing-links--body .sharing-links__facebook,
.sharing-links--body .sharing-links__twitter,
.sharing-links--body .sharing-links__googleplus,
.sharing-links--body .sharing-links__share {
  width: 100%;
}
@media (min-width: 1161px) {
  .sharing-links--body .sharing-links--body__item {
    width: 22%;
  }
  .sharing-links--body .sharing-links--body__item.first {
    width: 24%;
  }
  .sharing-links--body .sharing-links--body__item.last {
    width: 10%;
  }
  .sharing-links--body .share__text {
    display: inline-block;
  }
}

@media (min-width: 741px) {
  .sharing-links--body,
  .sharing-links--header {
    display: block;
  }
}
#slidebox {
  width: 250px;
  height: auto;
  padding: 15px;
  border-top: 3px solid #d3401e;
  background-color: #fff;
  position: fixed;
  bottom: 0px;
  right: -630px;
  -moz-box-shadow: -2px 0px 5px #aaa;
  -webkit-box-shadow: -2px 0px 5px #aaa;
  box-shadow: 0 4px 10px #555555;
  z-index: 1000;
}
@media (min-width: 601px) {
  #slidebox {
    width: 425px;
  }
}
#slidebox h3 {
  margin: 0 0 .5em;
  padding: 0;
  font-size: 0.88889em;
  line-height: 1.6875em;
}
#slidebox .field-image {
  float: left;
  margin: 6px 12px 0 0;
  display: none;
}
@media (min-width: 601px) {
  #slidebox .field-image {
    display: block;
  }
}
#slidebox .views-field-title {
  min-height: 60px;
  font-size: 0.80em;
  line-height: 1.6em;
}
#slidebox .views-field-title a {
  font-weight: bold;
}
#slidebox .close {
  background: url(https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/close_gif-1433771001) no-repeat top left;
  display: block;
  height: 13px;
  margin: 3px;
  float: right;
  width: 13px;
  text-indent: -99999px;
}
#slidebox .close:hover {
  background: url(https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/close_gif-1433771001) no-repeat bottom left;
}

/**
 * @file
 * The skip-link link will be completely hidden until a user tabs to the link.
 */
#skip-link {
  margin: 0;
}
#skip-link a,
#skip-link a:visited {
  display: block;
  width: 100%;
  padding: 2px 0 3px 0;
  text-align: center;
  background-color: #666;
  color: #fff;
}

/* Prevent focus outline on main content div. */
#main-content[tabindex="-1"] {
  outline: 0;
}

.node-type-page.section-social-media .pane-menu-follow-sub-menu .menu .menu {
  margin-left: 4%;
}

.view-social-media-landing-page h2 {
  margin: 0.5em 0;
  font-size: 1em;
}
.view-social-media-landing-page .field-collection-view {
  margin: 0;
  padding: 0 0 1em;
}
.view-social-media-landing-page i.icomoon:after,
.view-social-media-landing-page i.ss-icon:after {
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, "Nimbus Sans L", sans-serif;
  font-weight: normal;
  margin-left: 5px;
  position: relative;
  top: -3px;
}
.view-social-media-landing-page .field-facebook i.ss-icon:after {
  content: "Facebook";
}
.view-social-media-landing-page .field-twitter i.ss-icon:after {
  content: "Twitter";
}
.view-social-media-landing-page .field-tumblr i.ss-icon:after {
  content: "Tumblr";
}
.view-social-media-landing-page .field-soundcloud i.ss-icon:after {
  content: "SoundCloud";
}
.view-social-media-landing-page .field-get-in-touch i.ss-icon:after {
  content: "Instagram";
}
.view-social-media-landing-page .field-rss i.ss-icon:after {
  content: "RSS";
}
.view-social-media-landing-page .field-website i.ss-icon:after {
  content: "Website";
}
.view-social-media-landing-page .field-blog i.ss-icon:after {
  content: "Blog";
}
.view-social-media-landing-page .field-podcast i.icon-podcast:after,
.view-social-media-landing-page .field-podcast i.ss-icon:after {
  content: "Podcast on iTunes";
}

/**
 * @file
 * Sponsors styling.
 */
.sponsors {
  padding-bottom: 24px;
  background-color: #fafafa;
  border-top: 1px solid #eeeeef;
  text-align: center;
  font-weight: 500;
  font-size: 0.75em;
  line-height: 2em;
  color: #8c8c94;
}
.sponsors p {
  margin: 0;
}

.sponsors__pri-logo {
  margin: 24px 0;
}

.sponsors-logo-group {
  margin: 0 auto;
}

.sponsors-logo {
  width: 149px;
  margin: 12px 6px;
  display: inline-block;
  height: 52px;
 /* img {
    opacity: .75;

    &:hover {
      opacity: 1;
    }
  }*/
}

/*.sponsors-logo--medtronic {
  background-image: image-url("logo-medtronic-color.jpg");
}
.sponsors-logo--billmelinda {
  background-image: image-url("logo-gates.jpg");
}
.sponsors-logo--ford {
  background-image: image-url("logo-ford.jpg");
}
.sponsors-logo--luce {
  background-image: image-url("logo-luce.jpg");
}*/
.pane-node-field-ref-special-coverage h2, .node-story.view-mode-special_coverage {
  padding: 12px;
}

.pane-node-field-ref-special-coverage h2 {
  background-color: #e8f1f7;
  font-size: 90%;
  margin-bottom: 0;
}
.pane-node-field-ref-special-coverage .odd {
  background-color: #f7fafc;
}
.pane-node-field-ref-special-coverage .even {
  background-color: #e8f1f7;
}

.node-story.view-mode-special_coverage .field-image {
  float: left;
  margin-right: 14px;
  margin-bottom: 0;
}
.node-story.view-mode-special_coverage h4 {
  margin: 0;
  font-size: 80%;
}

/**
 * @file
 * Story.
 */
.l-story__full .field-terms-sections {
  margin-bottom: 0;
  font-weight: bold;
  list-style-type: none;
  font-size: 0.75em;
  line-height: 2em;
  margin-top: 2em;
}

.l-story__full .field-terms-sections li {
  padding: 0;
  margin: 0;
}

.l-story__full h1 {
  margin: 0;
  font-size: 1.38889em;
  line-height: 1.35em;
}
@media (min-width: 321px) {
  .l-story__full h1 {
    font-size: 1.72222em;
    line-height: 1.15403em;
  }
}
@media (min-width: 481px) {
  .l-story__full h1 {
    font-size: 2.11111em;
    line-height: 1.15461em;
  }
}
@media (min-width: 1201px) {
  .l-story__full h1 {
    font-size: 2.27778em;
    line-height: 1.15244em;
  }
}

.story__program {
  font-weight: bold;
}

.story__meta, .field-fc-story-creators,
.field-date-published {
  font-size: .75em;
  margin: 0;
}

.story__deck {
  margin-top: 0;
  font-size: 1.11111em;
  line-height: 1.35em;
}
@media (min-width: 481px) {
  .story__deck {
    font-size: 1.22222em;
    line-height: 1.38068em;
  }
}
.story__deck > p {
  margin-top: 0;
}

.node-type-story .l-story__full .pane-custom-social-networking-links-header {
  width: 65%;
  float: left;
}
@media (min-width: 600px) {
  .node-type-story .l-story__full .pane-custom-social-networking-links-header {
    width: 73%;
  }
}
@media (min-width: 1161px) {
  .node-type-story .l-story__full .pane-custom-social-networking-links-header {
    width: 78%;
  }
}
.node-type-story .l-story__full .sharing-links--header {
  margin: 15px 0 15px;
}
.node-type-story .l-story__full .sharing-links--header .sharing-links__list {
  width: 100%;
}
.node-type-story .l-story__full .sharing-links--header .sharing-links--header__item {
  width: 18.5%;
  margin: 0;
  padding: 0;
}
.node-type-story .l-story__full .sharing-links--header .sharing-links--header__item.first {
  width: 43%;
}
.node-type-story .l-story__full .sharing-links--header .sharing-links__googleplus {
  display: none;
}
.node-type-story .l-story__full .sharing-links--header .share-count-update,
.node-type-story .l-story__full .sharing-links--header .sharing-links__facebook,
.node-type-story .l-story__full .sharing-links--header .sharing-links__twitter,
.node-type-story .l-story__full .sharing-links--header .sharing-links__googleplus,
.node-type-story .l-story__full .sharing-links--header .sharing-links__comment,
.node-type-story .l-story__full .sharing-links--header .sharing-links__share {
  width: 100%;
}
@media (min-width: 1161px) {
  .node-type-story .l-story__full .sharing-links--header {
    clear: both;
  }
  .node-type-story .l-story__full .sharing-links--header .sharing-links--header__item {
    width: 30%;
  }
  .node-type-story .l-story__full .sharing-links--header .sharing-links--header__item.first {
    width: 30%;
  }
  .node-type-story .l-story__full .sharing-links--header .sharing-links--header__item.last {
    width: 10%;
  }
  .node-type-story .l-story__full .sharing-links--header .sharing-links--header__item.googleplus {
    display: none;
  }
  .node-type-story .l-story__full .sharing-links--header .share__text {
    display: inline-block;
  }
  .node-type-story .l-story__full .sharing-links--header .share-count-update,
  .node-type-story .l-story__full .sharing-links--header .sharing-links__facebook,
  .node-type-story .l-story__full .sharing-links--header .sharing-links__twitter,
  .node-type-story .l-story__full .sharing-links--header .sharing-links__comment,
  .node-type-story .l-story__full .sharing-links--header .sharing-links__googleplus,
  .node-type-story .l-story__full .sharing-links--header .sharing-links__share {
    width: 100%;
  }
  .node-type-story .l-story__full .sharing-links--header .sharing-links__googleplus {
    display: none;
  }
}
.node-type-story .l-story__full .pane-comments-jumplink {
  float: right;
  width: 35%;
  margin-top: 15px;
  padding: 0;
  border: none;
}
@media (min-width: 600px) {
  .node-type-story .l-story__full .pane-comments-jumplink {
    width: 25%;
  }
}
@media (min-width: 1161px) {
  .node-type-story .l-story__full .pane-comments-jumplink {
    width: 20%;
  }
}
.node-type-story .l-story__full .pane-comments-jumplink .comments__jumplink {
  padding: 12px 0 0;
  height: 24px;
  font-size: .75em;
  font-style: italic;
  line-height: 1em;
}
.node-type-story .l-story__full .pane-comments-jumplink .comments__jumplink .comments__count {
  font-size: 15px;
  width: auto;
  display: inline;
}
.node-type-story .l-story__full .pane-comments-jumplink .comments__jumplink:hover {
  color: white;
}
@media (min-width: 600px) {
  .node-type-story .l-story__full .pane-comments-jumplink .comments__jumplink {
    width: 100%;
  }
}

.pane-comments-jumplink {
  width: 35%;
  display: inline-block;
  border-top: 1px solid #eeeeef;
  padding: 25px 0 0 0;
  vertical-align: top;
  float: left;
}
@media (min-width: 600px) {
  .pane-comments-jumplink {
    width: 20%;
  }
}
@media (min-width: 790px) {
  .pane-comments-jumplink {
    width: 15%;
  }
}
.pane-comments-jumplink .comments__jumplink {
  display: block;
  position: relative;
  background: #4188bc;
  color: #eee;
  height: 24px;
  padding: 12px 0 0;
  font-size: .75em;
  font-style: italic;
  line-height: 1em;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  font-family: "Alegreya Sans", "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, "Nimbus Sans L", sans-serif;
  font-style: italic;
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  outline: none;
}
@media (min-width: 600px) {
  .pane-comments-jumplink .comments__jumplink {
    padding: 15px 5% 8px;
    width: 75%;
    margin: 0;
    font-size: .9em;
    line-height: 1.8em;
    height: auto;
  }
  .pane-comments-jumplink .comments__jumplink.comments__none {
    padding: 13px 5% 0px;
    width: 75%;
    margin: 0;
    height: 23px;
    line-height: .7em;
  }
}
.pane-comments-jumplink .comments__jumplink .comments__count {
  font-size: 15px;
  width: auto;
  display: inline;
}
@media (min-width: 600px) {
  .pane-comments-jumplink .comments__jumplink .comments__count {
    font-size: 2em;
    line-height: .5em;
    display: block;
  }
}
.pane-comments-jumplink .comments__jumplink:hover, .pane-comments-jumplink .comments__jumplink:active {
  color: white;
}
.pane-comments-jumplink .comments__jumplink:after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 43%;
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 11px solid #4188bc;
}
@media (min-width: 600px) {
  .pane-comments-jumplink .comments__jumplink:after {
    left: 44%;
  }
}

.pane-node-custom-rendered-terms {
  display: inline-block;
  float: right;
  width: 100%;
}
@media (min-width: 600px) {
  .pane-node-custom-rendered-terms {
    width: 80%;
  }
}
@media (min-width: 790px) {
  .pane-node-custom-rendered-terms {
    width: 85%;
  }
}

.l-story__main .pane-custom-social-networking-links-body {
  padding: 25px 0 0;
  border-top: 1px solid #eeeeef;
  width: 64%;
  float: right;
  display: inline-block;
}
@media (min-width: 600px) {
  .l-story__main .pane-custom-social-networking-links-body {
    width: 80%;
  }
}
@media (min-width: 790px) {
  .l-story__main .pane-custom-social-networking-links-body {
    width: 85%;
  }
}
.l-story__main .pane-custom-social-networking-links-body .sharing-links--body {
  margin-bottom: 0;
}

.pane-node-custom-rendered-terms .story__tags {
  margin-top: 15px;
  padding: 0;
}

.story__tags {
  font-size: 0.77778em;
  line-height: 1.44643em;
  padding: 21px 0 0;
  color: #8c8c94;
}
.story__tags:before, .story__tags:after {
  content: "";
  display: table;
}
.story__tags:after {
  clear: both;
}

.story__tag-list {
  margin: 0;
}

.story__tags a {
  font-weight: 700;
}

.l-story__full .field-date-published.story__meta,
.l-story__full .field-date-published {
  display: inline;
}
.l-story__full .field-updated {
  display: inline;
  margin: 0 0 0 10px;
}
.l-story__full .field-updated.content {
  font-size: 80%;
  /*color: #33333c;*/
  margin: 0;
}

a.story__program-the-world,
.story__program-the-world {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}

.node-story .file-video {
  margin: 0 0 1.5em;
}

.l-story__main .pane-node-field-image {
  margin-top: -15px;
}
@media (min-width: 1161px) {
  .l-story__main .pane-node-field-image {
    margin-left: -10.5%;
    width: 110.5%;
  }
}

@media (min-width: 961px) {
  .media-image_on_left,
  .image-left {
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -100%;
    margin-right: 30px;
    margin-top: 7px;
    margin-bottom: 1em;
  }
}
@media (min-width: 1161px) {
  .media-image_on_left,
  .image-left {
    float: left;
    width: 50%;
    margin-left: -12.5%;
    margin-right: -100%;
    margin-right: 30px;
  }
}

@media (min-width: 961px) {
  .media-image_on_right,
  .image-right {
    float: right;
    width: 50%;
    margin-right: -37.5%;
    margin-left: -100%;
    margin-left: 30px;
    margin-top: 7px;
    margin-bottom: 1em;
  }
}
@media (min-width: 1161px) {
  .media-image_on_right,
  .image-right {
    float: right;
    width: 50%;
    margin-right: -53.125%;
    margin-left: -100%;
    margin-left: 30px;
  }
}

.pane-node-field-files-additional h3 {
  font-size: 0.88889em;
  line-height: 1.6875em;
  margin-top: 1.125em;
  margin-bottom: 0em;
  border-bottom: 1px solid #eeeeef;
}

@media (min-width: 961px) {
  .node-type-story .pane-dfp-pri-ros-btf-300x250 {
    float: right;
    width: 43.75%;
    margin-right: -37.5%;
    margin-left: -100%;
    margin-left: 30px;
    min-width: 300px;
  }
}
@media (min-width: 1161px) {
  .node-type-story .pane-dfp-pri-ros-btf-300x250 {
    float: right;
    width: 46.875%;
    margin-right: -53.125%;
    margin-left: -100%;
    margin-top: -6.5em;
  }
}

@media (min-width: 961px) {
  .node-type-story .pane-dfp-pri-atf-300x100 {
    float: right;
    width: 43.75%;
    margin-right: -37.5%;
    margin-left: -100%;
    margin-left: 30px;
    min-width: 300px;
  }
}
@media (min-width: 1161px) {
  .node-type-story .pane-dfp-pri-atf-300x100 {
    float: right;
    width: 46.875%;
    margin-right: -53.125%;
    margin-left: -100%;
  }
}

.pane-dfp-pri-atf-300x100.promo-box--ad {
  background-color: #d3401e;
  padding-top: 0;
  padding-bottom: 0;
}

@media (min-width: 961px) {
  .node-type-story .audio-player__wrapper {
    width: 87%;
  }
}
@media (min-width: 1161px) {
  .node-type-story .audio-player__wrapper {
    width: 100%;
  }
}

.l-story__full .pane-story-association {
  background: #fff;
  border: 1px solid #eeeeef;
  padding: 5px 2% 15px;
  margin: 0;
  width: 96%;
  clear: both;
}
.l-story__full .pane-story-association.mobile {
  display: block;
}
.l-story__full .pane-story-association.desktop {
  display: none;
}
@media (min-width: 700px) {
  .l-story__full .pane-story-association {
    float: right;
    clear: none;
    width: 50%;
  }
  .l-story__full .pane-story-association.mobile {
    display: none;
  }
  .l-story__full .pane-story-association.desktop {
    display: block;
  }
}
@media (min-width: 1161px) {
  .l-story__full .pane-story-association {
    width: 35%;
  }
}
.l-story__full .pane-story-association .view-header p {
  font-size: 13px;
  margin: 0;
}

/* Story Pagination */
.l-story__main .pane-story-association {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}
.l-story__main article.teaser-list__item {
  font-size: .875em;
  line-height: 1.25em;
}
.l-story__main .teaser-list__item-title {
  margin-top: 0.5em;
}
.l-story__main ul .teaser-list__item-title a {
  color: #4188bc;
}
.l-story__main ul .field-terms-sections a {
  color: #9696a5;
}

.pane-node-field-links h2.pane-title {
  font-size: 0.88889em;
  line-height: 1.6875em;
  margin-top: 1.125em;
  margin-bottom: 0em;
  border-bottom: 1px solid #eeeeef;
}
.pane-node-field-links ul {
  list-style-type: none;
  margin-top: 0;
  margin-left: 0;
}
.pane-node-field-links ul li {
  list-style-type: none;
}
.pane-node-field-links ul li a {
  font-weight: bold;
  font-size: .75em;
  line-height: 1.26563em;
  margin-top: .5em;
  margin-bottom: 0em;
}

.pane-node-field-sharing {
  clear: both;
}

ul.flippy {
  margin: 0 0 1em;
  padding: 0;
  width: 100%;
  position: relative;
  float: left;
  background: #eeeeef;
  border: 1px solid #ddd;
}
ul.flippy li {
  margin: 0;
  padding: 2%;
  display: inline-block;
  width: 100%;
  list-style-type: none;
  list-style-image: none;
  background: none;
  float: left;
  font-size: 80%;
  line-height: 1.5em;
  overflow: hidden;
}
ul.flippy li a {
  white-space: pre-wrap;
  /* css-3 */
  white-space: -moz-pre-wrap;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  word-wrap: break-word;
}
ul.flippy li.prev {
  border-bottom: 1px solid #ddd;
}
ul.flippy li.empty .pager-title {
  display: none;
}
ul.flippy li.empty .pager-label:after {
  content: "You are reading the latest story";
  float: left;
  width: 100%;
  font-style: italic;
  font-weight: normal;
  position: relative;
}
@media (min-width: 601px) {
  ul.flippy li {
    width: 45%;
    min-height: 80px;
  }
  ul.flippy li.next .pager-title,
  ul.flippy li.next .pager-label {
    text-align: right;
  }
  ul.flippy li.prev {
    border-right: 1px solid #ddd;
    border-bottom: none;
  }
}
ul.flippy .pager-label {
  color: #9696a5;
  float: left;
  width: 100%;
}
ul.flippy .pager-title {
  font-weight: 700;
  clear: both;
  float: left;
  width: 100%;
}

.section-give.node-type-page #main-content .field-image {
  float: left;
  max-width: 500px;
  margin: 0 25px 0 0;
}

a.sidebar-donate-link {
  background: #d3401e;
  border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  color: white;
  width: 98%;
  padding: 5px 0;
  display: block;
  text-align: center;
  margin: 15px 1%;
  font-weight: bold;
}
a.sidebar-donate-link .links-utility__text {
  display: inline;
}
@media (min-width: 601px) {
  a.sidebar-donate-link {
    float: right;
    margin: 15px 0 0;
    width: 200px;
  }
}

@media (min-width: 601px) {
  .l-general__sidebar a.sidebar-donate-link {
    float: none;
    width: 100%;
    margin: 0 0 1em;
  }
}

a.sidebar-donate-link:hover,
a.sidebar-donate-link:active {
  background: #4188bc;
}

.secondary .pane-node-field-ref-related-stories .pane-title,
.secondary .pane-news-stories-latest .pane-title {
  font-size: 1.25em;
  line-height: 1em;
  margin: 0 0 1em;
  border: none;
}
.secondary .pane-node-field-ref-related-stories {
  float: left;
  width: 92%;
  margin-left: 0%;
  border-top: 1px solid #eeeeef;
  padding: 20px 4%;
}
@media (min-width: 480px) {
  .secondary .pane-node-field-ref-related-stories {
    border: none;
    padding: 0 4%;
  }
}
@media (min-width: 700px) {
  .secondary .pane-node-field-ref-related-stories {
    padding: 0;
    margin-right: -100%;
    width: 100%;
  }
}
@media (min-width: 1161px) {
  .secondary .pane-node-field-ref-related-stories {
    float: left;
    width: 71.875%;
    margin-left: 0%;
    margin-right: -100%;
  }
}
.secondary .pane-node-field-ref-related-stories li {
  width: 47%;
  margin: 0 4% 1em 0;
  min-height: 250px;
  display: inline-block;
  vertical-align: top;
}
.secondary .pane-node-field-ref-related-stories li:nth-child(2n+2) {
  margin-right: 0;
}
@media (min-width: 741px) {
  .secondary .pane-node-field-ref-related-stories li {
    width: 31%;
    margin: 0 2% 1em 0;
    min-height: 100px;
  }
  .secondary .pane-node-field-ref-related-stories li:nth-child(2n+2) {
    margin: 0 2% 1em 0;
  }
  .secondary .pane-node-field-ref-related-stories li:nth-child(3n+3) {
    margin-right: 0;
  }
}
.secondary .pane-node-field-ref-related-stories li .field-terms-sections,
.secondary .pane-node-field-ref-related-stories li .field-ref-program {
  display: none;
}
.secondary .pane-node-field-ref-related-stories li .teaser-list__item-big-title {
  font-size: 0.88889em;
  line-height: 1.26563em;
  margin-top: 0.5em;
  margin-bottom: 0em;
}
.secondary .pane-news-stories-latest {
  display: none;
}
@media (min-width: 1161px) {
  .secondary .pane-news-stories-latest {
    display: block;
    float: right;
    width: 25%;
    margin-right: 0%;
    margin-left: -100%;
    padding-bottom: 2em;
  }
  .secondary .pane-news-stories-latest .views-row {
    display: block;
    width: 100%;
    padding: 0.5em 0;
    float: left;
    border-bottom: 1px solid #eeeeef;
  }
  .secondary .pane-news-stories-latest .views-row.views-row-first {
    padding: 0 0 0.5em;
  }
  .secondary .pane-news-stories-latest .views-row-last {
    margin-bottom: 0;
  }
  .secondary .pane-news-stories-latest .teaser-list__item-title {
    margin-top: 0;
  }
  .secondary .pane-news-stories-latest .teaser-list__item-big-title {
    font-size: 0.88889em;
    line-height: 1.26563em;
    margin: 0;
  }
  .secondary .pane-news-stories-latest .field-image {
    width: 100px;
    margin: 0 0 0 10px;
    padding: 0;
    float: right;
    display: inline-block;
  }
}

/***** Story Full Width Template in _story.scss ******/
.l-story__full .pane-story-association.special-header {
  width: 89%;
  margin: 1em 0 0;
  background: #fff;
}
.l-story__full .pane-story-association.special-header .field-text-tagline {
  border: none;
}
.l-story__full .pane-story-association.special-header .views-field-field-file-vertical-logo-1 p {
  margin-top: 0;
  font-size: 80%;
}
.l-story__full .pane-story-association.special-header .vertical__summary-text {
  margin: 0;
}
.l-story__full .pane-story-association.special-header .vertical__summary-text span,
.l-story__full .pane-story-association.special-header .vertical__summary-text div {
  display: inline;
}
.l-story__full .pane-story-association.special-header .vertical__summary-text a {
  margin: 0 0 0 3px;
  display: inline;
  font-size: 20px;
}
.l-story__full .special-sidebar {
  width: 100%;
  display: block;
  margin: 1em 0;
}
.l-story__full .pane-node-field-image {
  clear: both;
}
@media (min-width: 801px) {
  .l-story__full .pane-story-association.special-header {
    float: left;
    width: 48%;
    min-height: 250px;
    margin: 1em 0;
  }
  .l-story__full .special-sidebar {
    float: right;
    width: 43%;
    margin: 1em 0;
    min-width: 300px;
  }
}
@media (min-width: 1001px) {
  .l-story__full .pane-story-association.special-header.special-header {
    width: 60.66666%;
  }
  .l-story__full .special-sidebar {
    width: 33.33333%;
  }
}
.l-story__full .field-terms-sections {
  clear: both;
}

.field-ref-related-stories {
  margin-left: 0;
}

.story-full-width .l-section--main {
  max-width: 1100px;
  margin: 0 auto;
}
.story-full-width .l-story__full .field-terms-sections {
  display: inline-block;
}
.story-full-width .recent-stories {
  clear: both;
}
@media (min-width: 750px) {
  .story-full-width .pane-quicktabs-latest-content {
    clear: both;
  }
  .story-full-width .pane-node-field-ref-related-stories,
  .story-full-width .pane-story-association,
  .story-full-width .pane-quicktabs-latest-content,
  .story-full-width .pane-block-3 {
    float: left;
    width: 45%;
    border: 1px solid #eeeeef;
    margin: 0 0 0 0;
  }
  .story-full-width .pane-node-field-ref-related-stories .quicktabs-tabs,
  .story-full-width .pane-story-association .quicktabs-tabs,
  .story-full-width .pane-quicktabs-latest-content .quicktabs-tabs,
  .story-full-width .pane-block-3 .quicktabs-tabs {
    margin-top: 0;
  }
  .story-full-width #gigya-comments {
    clear: both;
  }
}
@media (min-width: 900px) {
  .story-full-width .pane-node-field-ref-related-stories,
  .story-full-width .pane-story-association,
  .story-full-width .pane-quicktabs-latest-content,
  .story-full-width .pane-block-3 {
    float: left;
    width: 41%;
    margin: 0 1.5% 2em 3%;
    padding: 2%;
  }
  .story-full-width .pane-block.pane-quicktabs-latest-content {
    padding: 0;
    width: 45%;
    border: none;
  }
  .story-full-width .node-story.view-mode-full p, .story-full-width .node-story.view-mode-full ol, .story-full-width .node-story.view-mode-full ul, .story-full-width .node-story.view-mode-full blockquote, .story-full-width .node-story.view-mode-full h2, .story-full-width .node-story.view-mode-full h3, .story-full-width .node-story.view-mode-full h4, .story-full-width .node-story.view-mode-full h5, .story-full-width .node-story.view-mode-full h6, .story-full-width .node-story.view-mode-full .audio-player__wrapper {
    padding: 0 2%;
    margin: .5em auto;
    max-width: 900px;
  }
  .story-full-width .node-story.view-mode-full .file-video {
    margin: 1em 0;
  }
  .story-full-width .pane-page-content {
    padding: 0 0 2em;
  }
}

.first-days ol {
  margin: 0;
  padding: 0;
}
.first-days ol li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.first-days ol .tumblr_title {
  font-weight: bold;
  font-size: 1.125em;
  margin: 0 0 10px;
}

.pane-social-posts {
  clear: both;
  display: block;
  background: #FFFBD9;
  padding: 0.25em 0.5em;
  margin: 0 0 2em;
  border: 1px solid #FFEBC5;
  color: #666;
}
.pane-social-posts .pane-title {
  margin: 0.5em 0;
  font-size: 1.25em;
  color: #444;
}
.pane-social-posts .views-field {
  margin: 15px 0 0;
}
.pane-social-posts .views-field .views-label {
  font-weight: bold;
  font-style: italic;
  margin: 0 0 5px;
  display: block;
  color: #444;
}
.pane-social-posts .views-field .field-content {
  background: #fefefe;
  border: 1px solid #ddd;
  padding: 5px 10px;
  margin: 0 0;
  display: block;
  color: #444;
}
.pane-social-posts .views-field .field-content p {
  margin: 15px 0 0;
}
.pane-social-posts .views-field .field-content strong {
  font-size: 1.15em;
  color: #444;
}

/* Styles the Story Act content type within stories */
.edit-entity {
  float: left;
  width: 100%;
  margin: 1em 0;
  padding: 0;
  position: relative;
}
.edit-entity.cta_border {
  border: 1px solid #eeeeef;
  padding: 15px 2% 0;
  width: 96%;
}
@media (min-width: 961px) {
  .edit-entity.cta_border {
    padding: 2%;
  }
}
@media (min-width: 961px) {
  .edit-entity.cta_align-left {
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -100%;
    margin-right: 30px;
    margin-top: 7px;
    margin-bottom: 1em;
  }
}
@media (min-width: 1161px) {
  .edit-entity.cta_align-left {
    float: left;
    width: 50%;
    margin-left: -12.5%;
    margin-right: -100%;
    margin-right: 30px;
  }
}
@media (min-width: 961px) {
  .edit-entity.cta_align-right {
    float: right;
    width: 50%;
    margin-right: -37.5%;
    margin-left: -100%;
    margin-left: 30px;
    margin-top: 7px;
    margin-bottom: 1em;
  }
}
@media (min-width: 1161px) {
  .edit-entity.cta_align-right {
    float: right;
    width: 50%;
    margin-right: -53.125%;
    margin-left: -100%;
    margin-left: 30px;
  }
}
.edit-entity.cta_icon-engagement:before {
  content: "";
  background: url(https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/callout_png-1433770985) no-repeat right top;
  position: absolute;
  right: -13px;
  top: -8px;
  height: 30px;
  width: 25px;
}
.edit-entity.cta_bg-gray {
  background: #f5f5f5;
  padding: 15px 2% 0;
}
.edit-entity.cta_bg-blue {
  background: #e8f1f7;
  padding: 15px 2% 0;
}
.edit-entity.cta_bg-yellow {
  background: #faf292;
  padding: 15px 2% 0;
}

.node-story-act .field-display-title {
  font-size: .875em;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: .1em;
  line-height: 1.25em;
}
.node-story-act .field-story-act-image {
  display: inline-block;
  float: right;
  margin: 0 0 5px 15px;
}
.node-story-act .field-story-act-teaser {
  font-size: .875em;
  line-height: 1.5em;
  margin: 5px 0 1em;
}
.node-story-act .field-story-act-external-link a {
  padding: 5px 10px;
  background: #4188bc;
  color: white;
  font-size: .875em;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: .1em;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
.node-story-act .field-story-act-external-link a:hover {
  background: #d3401e;
}
.node-story-act blockquote {
  margin: 0;
  padding: 0;
}
.node-story-act #subscription_form_wrapper {
  margin: 1em 0 0;
}
.node-story-act #subscription_form_wrapper p {
  margin: 0;
  display: inline;
}
.node-story-act #subscription_form_wrapper br {
  display: none;
}
.node-story-act #subscription_form_wrapper .form-item {
  display: inline;
}
.node-story-act #subscription_form_wrapper .form-item .form-text {
  width: 65%;
}
.node-story-act.cta-type-newsletter .field-story-act-teaser {
  margin: 15px 0 0;
}
.node-story-act.cta-type-poll .field-display-title {
  font-size: 0.95em;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 10px;
}
.node-story-act.cta-type-poll br {
  display: none;
}
.node-story-act.cta-type-poll #pri-poll-answer-form {
  font-size: 0.875em;
  font-style: italic;
}
.node-story-act.cta-type-poll #pri-poll-answer-form label[for="edit-answer"] {
  display: none;
}
.node-story-act.cta-type-poll #pri-poll-answer-form .form-item {
  display: block;
  width: 100%;
  margin: 5px 0;
}
.node-story-act.cta-type-poll #pri-poll-answer-form label, .node-story-act.cta-type-poll #pri-poll-answer-form input {
  display: inline;
  margin: 0 5px 0 0;
  font-size: 1em;
  font-style: normal;
}
.node-story-act.cta-type-poll p {
  margin: 1em 0 0;
}
.node-story-act.cta-type-poll p .form-submit {
  padding: 10px 0;
  background: #4188bc;
  color: white;
  font-size: .875em;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: .1em;
  border: none;
  width: 100%;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
.node-story-act.cta-type-meetup-widget .field-display-title {
  margin: 0 0 1em;
}
.node-story-act.cta-type-meetup-widget br {
  display: none;
}
.node-story-act.cta-type-meetup-widget ul {
  margin-top: 1em;
}
.node-story-act.cta-type-meetup-widget ul li {
  margin: 0 0 3px;
  color: #555;
  font-style: italic;
}
.node-story-act.cta-type-meetup-widget ul a {
  font-weight: bold;
  font-style: normal;
}
.node-story-act.cta-type-meetup-widget .form-text {
  width: 100%;
  margin: 0 0 15px;
}
.node-story-act.cta-type-meetup-widget .form-submit {
  display: inline;
  padding: 10px 0;
  background: #4188bc;
  color: white;
  font-size: .875em;
  text-transform: uppercase;
  font-weight: bold;
  width: 100%;
  text-align: center;
  border: none;
  letter-spacing: .1em;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
.node-story-act.cta-type-meetup-widget .form-submit:hover {
  background: #d3401e;
}
.node-story-act.cta-type-custom-text ul {
  margin: .25em 0;
  padding: 0;
}
.node-story-act.cta-type-custom-text ul li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.node-story-act.cta-type-custom-text ul li a {
  display: block;
  width: 96%;
  border-top: 1px solid #eeeeef;
  padding: 5px 2%;
  font-weight: bold;
}
.node-story-act.cta-type-internal-link .field-story-act-internal-link {
  margin: 20px 0 0;
}
.node-story-act.cta-type-internal-link .story-list__group-1 {
  width: 100px;
}
.node-story-act.cta-type-internal-link .story-list__group-1 p {
  margin: 0;
}
.node-story-act.cta-type-internal-link .story-list__group-1 .field-image {
  margin: 0;
  padding: 0;
}
.node-story-act.cta-type-internal-link .story-list__group-1 .field-image br {
  display: none;
}
.node-story-act.cta-type-internal-link article.teaser-list__item {
  font-size: 1em;
}
.node-story-act.cta-type-internal-link article.teaser-list__item h2 {
  font-size: 0.9em;
  margin: 0;
}
.node-story-act.cta-type-internal-link article.teaser-list__item p {
  margin: 0;
  padding: 0;
}
.node-story-act.cta-type-internal-link article.teaser-list__item p.field-terms-sections {
  padding-right: 5px;
}

.cta_align-left .mejs-controls div.mejs-time-rail,
.cta_align-right .mejs-controls div.mejs-time-rail {
  display: none !important;
}

/**
 * @file
 * Story bio.
 */
.bio {
  margin-top: 1.5em;
  border-top: 1px solid #eeeeef;
  margin-top: 36px;
  padding: 36px 0 36px 108px;
  font-size: 0.83333em;
  line-height: 1.35em;
  color: #8c8c94;
}
.bio:before, .bio:after {
  content: "";
  display: table;
}
.bio:after {
  clear: both;
}
.bio p {
  margin: 0;
  font-size: 16px;
  line-height: 22px;
}
.bio .field-teaser {
  margin: 0;
  font-size: 16px;
  line-height: 22px;
}
.bio--no-image {
  padding-left: 0;
}

.bio .about__image {
  width: 100px;
  float: left;
  margin: 0 0 0 -100px;
}

/**
 * @file
 * Story list styling.
 */
.story-list {
  padding: 24px 0;
  border-bottom: 1px solid #eeeeef;
}

.page-taxonomy .pane-term-description {
  display: block;
  width: 100%;
  margin: 0 0 24px;
}

.page-taxonomy .pane-term-description img {
  width: 100% !important;
  height: auto !important;
  max-width: 429px !important;
}

.page-taxonomy .pane-quicktabs-taxonomy-list {
  clear: both;
}

@media (min-width: 601px) {
  .story-list__group-1 {
    float: right;
    margin-left: 24px;
    width: 216px;
  }
}

@media (min-width: 601px) {
  .view-all-programs {
    margin-left: 0;
  }
}

.story-list__image {
  display: none;
  margin: 0;
}
@media (min-width: 601px) {
  .story-list__image {
    display: block;
  }
}

.story-list__title {
  margin-top: 0em;
  margin-bottom: 0em;
  font-size: 1em;
  line-height: 1.3125em;
}
@media (min-width: 421px) {
  .story-list__title {
    font-size: 1.33333em;
    line-height: 1.26563em;
  }
}

.story-list__title-link:link, .story-list__title-link:visited {
  color: #33333c;
}

.story-list__title-link:hover, .story-list__title-link:focus {
  color: #d3401e;
}

.story-list .field-updated {
  margin: 0 0 0 10px;
}

.story-list .field-updated,
.story-list .field-updated div,
.story-list .field-updated h3 {
  display: inline;
  font-size: 14px;
  line-height: 18px;
}

.story-list__format {
  font-size: 13px;
  color: #777;
  background: #eee;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #fff;
  text-align: center;
  margin: 5px 5px 0 0;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  text-shadow: 0 1px 0 #fff;
  font-style: italic;
  display: inline-block;
  padding: 0px 15px;
}

.home__secondary .quicktabs-wrapper .story-list .field-date-published {
  display: inline-block;
}
.home__secondary .quicktabs-wrapper .story-list .field-teaser {
  margin: .5em 0;
}
.home__secondary .pager-load-more {
  padding: 0 24px;
  margin-top: 0;
}
.home__secondary .pager-load-more li {
  background: #fafafa;
  width: 66.66667%;
}

.pager-load-more {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 300px;
  max-width: 1480px;
  margin: 1em auto 0;
  padding: 0;
}
.pager-load-more li {
  width: 100%;
  margin: 0 auto 36px;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 24px;
}
.pager-load-more li a {
  width: 100%;
  background: #4188bc;
  color: white;
  font-weight: bold;
  display: block;
  margin: 0 auto;
  padding: 15px 0;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
}
.pager-load-more li a:hover {
  background: #d3401e;
}

/*
* Symbolset
* www.symbolset.com
* Copyright © 2012 Oak Studios LLC
*
* Upload this file to your web server
* and place this within your <head> tags.
* <link href="webfonts/ss-standard.css" rel="stylesheet" />
*/
@font-face {
  font-family: "SSStandard";
  src: url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/ss-standard_eot-1433771002');
  src: url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/ss-standard_eot-1433771002?#iefix') format("embedded-opentype"), url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/ss-standard_woff-1433771004') format("woff"), url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/ss-standard_ttf-1433771005') format("truetype"), url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/ss-standard_svg-1433771005') format("svg");
  font-weight: normal;
  font-style: normal;
}

/* This triggers a redraw in IE to Fix IE8's :before content rendering. */
html:hover [class^="ss-"] {
  -ms-zoom: 1;
}

.ss-icon, .ss-icon.ss-standard,
[class^="ss-"]:before, [class*=" ss-"]:before,
[class^="ss-"].ss-standard:before, [class*=" ss-"].ss-standard:before,
[class^="ss-"].right:after, [class*=" ss-"].right:after,
[class^="ss-"].ss-standard.right:after, [class*=" ss-"].ss-standard.right:after {
  font-family: "SSStandard";
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
  text-rendering: optimizeLegibility;
  white-space: nowrap;
  /*-webkit-font-feature-settings: "liga"; Currently broken in Chrome >= v22. Falls back to text-rendering. Safari is unaffected. */
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  -o-font-feature-settings: "liga";
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

[class^="ss-"].right:before,
[class*=" ss-"].right:before {
  display: none;
  content: '';
}

.ss-cursor:before, .ss-cursor.right:after {
  content: '';
}

.ss-crosshair:before, .ss-crosshair.right:after {
  content: '⌖';
}

.ss-search:before, .ss-search.right:after {
  content: '🔎';
}

.ss-zoomin:before, .ss-zoomin.right:after {
  content: '';
}

.ss-zoomout:before, .ss-zoomout.right:after {
  content: '';
}

.ss-view:before, .ss-view.right:after {
  content: '👀';
}

.ss-attach:before, .ss-attach.right:after {
  content: '📎';
}

.ss-link:before, .ss-link.right:after {
  content: '🔗';
}

.ss-move:before, .ss-move.right:after {
  content: '';
}

.ss-write:before, .ss-write.right:after {
  content: '✎';
}

.ss-writingdisabled:before, .ss-writingdisabled.right:after {
  content: '';
}

.ss-erase:before, .ss-erase.right:after {
  content: '✐';
}

.ss-compose:before, .ss-compose.right:after {
  content: '📝';
}

.ss-lock:before, .ss-lock.right:after {
  content: '🔒';
}

.ss-unlock:before, .ss-unlock.right:after {
  content: '🔓';
}

.ss-key:before, .ss-key.right:after {
  content: '🔑';
}

.ss-backspace:before, .ss-backspace.right:after {
  content: '⌫';
}

.ss-ban:before, .ss-ban.right:after {
  content: '🚫';
}

.ss-trash:before, .ss-trash.right:after {
  content: '';
}

.ss-target:before, .ss-target.right:after {
  content: '◎';
}

.ss-tag:before, .ss-tag.right:after {
  content: '';
}

.ss-bookmark:before, .ss-bookmark.right:after {
  content: '🔖';
}

.ss-flag:before, .ss-flag.right:after {
  content: '⚑';
}

.ss-like:before, .ss-like.right:after {
  content: '👍';
}

.ss-dislike:before, .ss-dislike.right:after {
  content: '👎';
}

.ss-heart:before, .ss-heart.right:after {
  content: '♥';
}

.ss-halfheart:before, .ss-halfheart.right:after {
  content: '';
}

.ss-star:before, .ss-star.right:after {
  content: '⋆';
}

.ss-halfstar:before, .ss-halfstar.right:after {
  content: '';
}

.ss-sample:before, .ss-sample.right:after {
  content: '';
}

.ss-crop:before, .ss-crop.right:after {
  content: '';
}

.ss-layers:before, .ss-layers.right:after {
  content: '';
}

.ss-fill:before, .ss-fill.right:after {
  content: '';
}

.ss-stroke:before, .ss-stroke.right:after {
  content: '';
}

.ss-phone:before, .ss-phone.right:after {
  content: '📞';
}

.ss-phonedisabled:before, .ss-phonedisabled.right:after {
  content: '';
}

.ss-rss:before, .ss-rss.right:after {
  content: '';
}

.ss-facetime:before, .ss-facetime.right:after {
  content: '';
}

.ss-reply:before, .ss-reply.right:after {
  content: '↩';
}

.ss-send:before, .ss-send.right:after {
  content: '';
}

.ss-mail:before, .ss-mail.right:after {
  content: '✉';
}

.ss-inbox:before, .ss-inbox.right:after {
  content: '📥';
}

.ss-chat:before, .ss-chat.right:after {
  content: '💬';
}

.ss-ellipsischat:before, .ss-ellipsischat.right:after {
  content: '';
}

.ss-ellipsis:before, .ss-ellipsis.right:after {
  content: '…';
}

.ss-user:before, .ss-user.right:after {
  content: '👤';
}

.ss-femaleuser:before, .ss-femaleuser.right:after {
  content: '👧';
}

.ss-users:before, .ss-users.right:after {
  content: '👥';
}

.ss-cart:before, .ss-cart.right:after {
  content: '';
}

.ss-creditcard:before, .ss-creditcard.right:after {
  content: '💳';
}

.ss-dollarsign:before, .ss-dollarsign.right:after {
  content: '💲';
}

.ss-barchart:before, .ss-barchart.right:after {
  content: '📊';
}

.ss-piechart:before, .ss-piechart.right:after {
  content: '';
}

.ss-box:before, .ss-box.right:after {
  content: '📦';
}

.ss-home:before, .ss-home.right:after {
  content: '⌂';
}

.ss-buildings:before, .ss-buildings.right:after {
  content: '🏢';
}

.ss-warehouse:before, .ss-warehouse.right:after {
  content: '';
}

.ss-globe:before, .ss-globe.right:after {
  content: '🌎';
}

.ss-navigate:before, .ss-navigate.right:after {
  content: '';
}

.ss-compass:before, .ss-compass.right:after {
  content: '';
}

.ss-signpost:before, .ss-signpost.right:after {
  content: '';
}

.ss-map:before, .ss-map.right:after {
  content: '';
}

.ss-location:before, .ss-location.right:after {
  content: '';
}

.ss-pin:before, .ss-pin.right:after {
  content: '📍';
}

.ss-database:before, .ss-database.right:after {
  content: '';
}

.ss-hdd:before, .ss-hdd.right:after {
  content: '';
}

.ss-music:before, .ss-music.right:after {
  content: '♫';
}

.ss-mic:before, .ss-mic.right:after {
  content: '🎤';
}

.ss-volume:before, .ss-volume.right:after {
  content: '🔈';
}

.ss-lowvolume:before, .ss-lowvolume.right:after {
  content: '🔉';
}

.ss-highvolume:before, .ss-highvolume.right:after {
  content: '🔊';
}

.ss-airplay:before, .ss-airplay.right:after {
  content: '';
}

.ss-camera:before, .ss-camera.right:after {
  content: '📷';
}

.ss-picture:before, .ss-picture.right:after {
  content: '🌄';
}

.ss-video:before, .ss-video.right:after {
  content: '📹';
}

.ss-play:before, .ss-play.right:after {
  content: '▶';
}

.ss-pause:before, .ss-pause.right:after {
  content: '';
}

.ss-stop:before, .ss-stop.right:after {
  content: '■';
}

.ss-record:before, .ss-record.right:after {
  content: '●';
}

.ss-rewind:before, .ss-rewind.right:after {
  content: '⏪';
}

.ss-fastforward:before, .ss-fastforward.right:after {
  content: '⏩';
}

.ss-skipback:before, .ss-skipback.right:after {
  content: '⏮';
}

.ss-skipforward:before, .ss-skipforward.right:after {
  content: '⏭';
}

.ss-eject:before, .ss-eject.right:after {
  content: '⏏';
}

.ss-repeat:before, .ss-repeat.right:after {
  content: '🔁';
}

.ss-replay:before, .ss-replay.right:after {
  content: '↺';
}

.ss-shuffle:before, .ss-shuffle.right:after {
  content: '🔀';
}

.ss-book:before, .ss-book.right:after {
  content: '📕';
}

.ss-openbook:before, .ss-openbook.right:after {
  content: '📖';
}

.ss-notebook:before, .ss-notebook.right:after {
  content: '📓';
}

.ss-newspaper:before, .ss-newspaper.right:after {
  content: '📰';
}

.ss-grid:before, .ss-grid.right:after {
  content: '';
}

.ss-rows:before, .ss-rows.right:after {
  content: '';
}

.ss-columns:before, .ss-columns.right:after {
  content: '';
}

.ss-thumbnails:before, .ss-thumbnails.right:after {
  content: '';
}

.ss-filter:before, .ss-filter.right:after {
  content: '';
}

.ss-desktop:before, .ss-desktop.right:after {
  content: '💻';
}

.ss-laptop:before, .ss-laptop.right:after {
  content: '';
}

.ss-tablet:before, .ss-tablet.right:after {
  content: '';
}

.ss-cell:before, .ss-cell.right:after {
  content: '📱';
}

.ss-battery:before, .ss-battery.right:after {
  content: '🔋';
}

.ss-highbattery:before, .ss-highbattery.right:after {
  content: '';
}

.ss-mediumbattery:before, .ss-mediumbattery.right:after {
  content: '';
}

.ss-lowbattery:before, .ss-lowbattery.right:after {
  content: '';
}

.ss-emptybattery:before, .ss-emptybattery.right:after {
  content: '';
}

.ss-lightbulb:before, .ss-lightbulb.right:after {
  content: '💡';
}

.ss-downloadcloud:before, .ss-downloadcloud.right:after {
  content: '';
}

.ss-download:before, .ss-download.right:after {
  content: '';
}

.ss-uploadcloud:before, .ss-uploadcloud.right:after {
  content: '';
}

.ss-upload:before, .ss-upload.right:after {
  content: '';
}

.ss-fork:before, .ss-fork.right:after {
  content: '';
}

.ss-merge:before, .ss-merge.right:after {
  content: '';
}

.ss-transfer:before, .ss-transfer.right:after {
  content: '⇆';
}

.ss-refresh:before, .ss-refresh.right:after {
  content: '↻';
}

.ss-sync:before, .ss-sync.right:after {
  content: '';
}

.ss-loading:before, .ss-loading.right:after {
  content: '';
}

.ss-wifi:before, .ss-wifi.right:after {
  content: '';
}

.ss-connection:before, .ss-connection.right:after {
  content: '';
}

.ss-file:before, .ss-file.right:after {
  content: '📄';
}

.ss-folder:before, .ss-folder.right:after {
  content: '📁';
}

.ss-quote:before, .ss-quote.right:after {
  content: '“';
}

.ss-text:before, .ss-text.right:after {
  content: '';
}

.ss-font:before, .ss-font.right:after {
  content: '';
}

.ss-print:before, .ss-print.right:after {
  content: '⎙';
}

.ss-fax:before, .ss-fax.right:after {
  content: '📠';
}

.ss-list:before, .ss-list.right:after {
  content: '';
}

.ss-layout:before, .ss-layout.right:after {
  content: '';
}

.ss-action:before, .ss-action.right:after {
  content: '';
}

.ss-redirect:before, .ss-redirect.right:after {
  content: '↪';
}

.ss-expand:before, .ss-expand.right:after {
  content: '⤢';
}

.ss-contract:before, .ss-contract.right:after {
  content: '';
}

.ss-help:before, .ss-help.right:after {
  content: '❓';
}

.ss-info:before, .ss-info.right:after {
  content: 'ℹ';
}

.ss-alert:before, .ss-alert.right:after {
  content: '⚠';
}

.ss-caution:before, .ss-caution.right:after {
  content: '⛔';
}

.ss-logout:before, .ss-logout.right:after {
  content: '';
}

.ss-plus:before, .ss-plus.right:after {
  content: '+';
}

.ss-hyphen:before, .ss-hyphen.right:after {
  content: '-';
}

.ss-check:before, .ss-check.right:after {
  content: '✓';
}

.ss-delete:before, .ss-delete.right:after {
  content: '␡';
}

.ss-settings:before, .ss-settings.right:after {
  content: '⚙';
}

.ss-dashboard:before, .ss-dashboard.right:after {
  content: '';
}

.ss-notifications:before, .ss-notifications.right:after {
  content: '🔔';
}

.ss-notificationsdisabled:before, .ss-notificationsdisabled.right:after {
  content: '🔕';
}

.ss-clock:before, .ss-clock.right:after {
  content: '⏲';
}

.ss-stopwatch:before, .ss-stopwatch.right:after {
  content: '⏱';
}

.ss-calendar:before, .ss-calendar.right:after {
  content: '📅';
}

.ss-addcalendar:before, .ss-addcalendar.right:after {
  content: '';
}

.ss-removecalendar:before, .ss-removecalendar.right:after {
  content: '';
}

.ss-checkcalendar:before, .ss-checkcalendar.right:after {
  content: '';
}

.ss-deletecalendar:before, .ss-deletecalendar.right:after {
  content: '';
}

.ss-briefcase:before, .ss-briefcase.right:after {
  content: '💼';
}

.ss-cloud:before, .ss-cloud.right:after {
  content: '☁';
}

.ss-droplet:before, .ss-droplet.right:after {
  content: '💧';
}

.ss-flask:before, .ss-flask.right:after {
  content: '';
}

.ss-up:before, .ss-up.right:after {
  content: '⬆';
}

.ss-upright:before, .ss-upright.right:after {
  content: '⬈';
}

.ss-right:before, .ss-right.right:after {
  content: '➡';
}

.ss-downright:before, .ss-downright.right:after {
  content: '⬊';
}

.ss-down:before, .ss-down.right:after {
  content: '⬇';
}

.ss-downleft:before, .ss-downleft.right:after {
  content: '⬋';
}

.ss-left:before, .ss-left.right:after {
  content: '⬅';
}

.ss-upleft:before, .ss-upleft.right:after {
  content: '⬉';
}

.ss-navigateup:before, .ss-navigateup.right:after {
  content: '';
}

.ss-navigateright:before, .ss-navigateright.right:after {
  content: '▻';
}

.ss-navigatedown:before, .ss-navigatedown.right:after {
  content: '';
}

.ss-navigateleft:before, .ss-navigateleft.right:after {
  content: '◅';
}

.ss-directup:before, .ss-directup.right:after {
  content: '▴';
}

.ss-directright:before, .ss-directright.right:after {
  content: '▹';
}

.ss-dropdown:before, .ss-dropdown.right:after {
  content: '▾';
}

.ss-directleft:before, .ss-directleft.right:after {
  content: '◃';
}

.ss-retweet:before, .ss-retweet.right:after {
  content: '';
}

/* Legacy classes */
.ss-volumelow:before, .ss-volumelow.right:after {
  content: '🔉';
}

.ss-volumehigh:before, .ss-volumehigh.right:after {
  content: '🔊';
}

.ss-batteryhigh:before, .ss-batteryhigh.right:after {
  content: '';
}

.ss-batterymedium:before, .ss-batterymedium.right:after {
  content: '';
}

.ss-batterylow:before, .ss-batterylow.right:after {
  content: '';
}

.ss-batteryempty:before, .ss-batteryempty.right:after {
  content: '';
}

.ss-clouddownload:before, .ss-clouddownload.right:after {
  content: '';
}

.ss-cloudupload:before, .ss-cloudupload.right:after {
  content: '';
}

.ss-calendaradd:before, .ss-calendaradd.right:after {
  content: '';
}

.ss-calendarremove:before, .ss-calendarremove.right:after {
  content: '';
}

.ss-calendarcheck:before, .ss-calendarcheck.right:after {
  content: '';
}

.ss-calendardelete:before, .ss-calendardelete.right:after {
  content: '';
}

/*
* Symbolset
* www.symbolset.com
* Copyright © 2012 Oak Studios LLC
*
* Upload this file to your web server
* and place this within your <head> tags.
* <link href="webfonts/ss-social-circle.css" rel="stylesheet" />
*/
@font-face {
  font-family: "SSSocial";
  src: url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/ss-social-circle_eot-1433771006');
  src: url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/ss-social-circle_eot-1433771006?#iefix') format("embedded-opentype"), url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/ss-social-circle_woff-1433771008') format("woff"), url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/ss-social-circle_ttf-1433771009') format("truetype"), url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/ss-social-circle_svg-1433771010') format("svg");
  font-weight: bold;
  font-style: normal;
}

.ss-icon, .ss-icon.ss-social-circle,
[class^="ss-"]:before, [class*=" ss-"]:before,
[class^="ss-"].ss-social-circle:before, [class*=" ss-"].ss-social-circle:before,
[class^="ss-"].right:after, [class*=" ss-"].right:after,
[class^="ss-"].ss-social-circle.right:after, [class*=" ss-"].ss-social-circle.right:after {
  font-family: "SSSocial";
  font-style: normal;
  font-weight: bold;
  text-decoration: none;
  text-rendering: optimizeLegibility;
  white-space: nowrap;
  /*-webkit-font-feature-settings: "liga"; Currently broken in Chrome >= v22. Falls back to text-rendering. Safari is unaffected. */
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  -o-font-feature-settings: "liga";
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.ss-facebook:before, .ss-facebook.right:after {
  content: '';
}

.ss-twitter:before, .ss-twitter.right:after {
  content: '';
}

.ss-linkedin:before, .ss-linkedin.right:after {
  content: '';
}

.ss-googleplus:before, .ss-googleplus.right:after {
  content: '';
}

.ss-appdotnet:before, .ss-appdotnet.right:after {
  content: '';
}

.ss-zerply:before, .ss-zerply.right:after {
  content: '';
}

.ss-reddit:before, .ss-reddit.right:after {
  content: '';
}

.ss-tumblr:before, .ss-tumblr.right:after {
  content: '';
}

.ss-wordpress:before, .ss-wordpress.right:after {
  content: '';
}

.ss-blogger:before, .ss-blogger.right:after {
  content: '';
}

.ss-posterous:before, .ss-posterous.right:after {
  content: '';
}

.ss-youtube:before, .ss-youtube.right:after {
  content: '';
}

.ss-vimeo:before, .ss-vimeo.right:after {
  content: '';
}

.ss-flickr:before, .ss-flickr.right:after {
  content: '';
}

.ss-instagram:before, .ss-instagram.right:after {
  content: '';
}

.ss-fivehundredpx:before, .ss-fivehundredpx.right:after {
  content: '';
}

.ss-pinterest:before, .ss-pinterest.right:after {
  content: '';
}

.ss-svpply:before, .ss-svpply.right:after {
  content: '';
}

.ss-readmill:before, .ss-readmill.right:after {
  content: '';
}

.ss-dropbox:before, .ss-dropbox.right:after {
  content: '';
}

.ss-pinboard:before, .ss-pinboard.right:after {
  content: '';
}

.ss-dribbble:before, .ss-dribbble.right:after {
  content: '';
}

.ss-behance:before, .ss-behance.right:after {
  content: '';
}

.ss-github:before, .ss-github.right:after {
  content: '';
}

.ss-octocat:before, .ss-octocat.right:after {
  content: '';
}

.ss-stackoverflow:before, .ss-stackoverflow.right:after {
  content: '';
}

.ss-paypal:before, .ss-paypal.right:after {
  content: '';
}

.ss-kickstarter:before, .ss-kickstarter.right:after {
  content: '';
}

.ss-foursquare:before, .ss-foursquare.right:after {
  content: '';
}

.ss-yelp:before, .ss-yelp.right:after {
  content: '';
}

.ss-skype:before, .ss-skype.right:after {
  content: '';
}

.ss-rdio:before, .ss-rdio.right:after {
  content: '';
}

.ss-spotify:before, .ss-spotify.right:after {
  content: '';
}

.ss-lastfm:before, .ss-lastfm.right:after {
  content: '';
}

.ss-soundcloud:before, .ss-soundcloud.right:after {
  content: '';
}

.ss-mail:before, .ss-mail.right:after {
  content: '✉';
}

.ss-like:before, .ss-like.right:after {
  content: '';
}

.ss-rss:before, .ss-rss.right:after {
  content: '';
}

.ss-share:before, .ss-share.right:after {
  content: '';
}

.ss-apple:before, .ss-apple.right:after {
  content: '';
}

.ss-microsoft:before, .ss-microsoft.right:after {
  content: '';
}

.ss-windows:before, .ss-windows.right:after {
  content: '';
}

.ss-android:before, .ss-android.right:after {
  content: '';
}

.ss-blackberry:before, .ss-blackberry.right:after {
  content: '';
}

@font-face {
  font-family: 'icomoon';
  src: url("https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/icomoon_eot-1433771010");
  src: url("https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/icomoon_eot-1433771010?#iefix") format("embedded-opentype"), url("https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/icomoon_woff-1433771011") format("woff"), url("https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/icomoon_ttf-1433771012") format("truetype"), url("https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/icomoon_svg-1433771012") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-podcast:before {
  content: "\e603";
}

.icon-flipboard:before {
  content: "\e602";
}

.icon-give:before {
  content: "\e604";
}

.icon-pri:before {
  content: "\e601";
}

.icon-tw:before {
  content: "\e600";
}

/**
 * @file
 * Tabs
 */
/* Basic positioning styles shared by primary and secondary tabs. */
.tabs-primary, .tabs-secondary {
  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);
  background-image: linear-gradient(to top, #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;
  font-size: 0.77778em;
  line-height: 1.92857em;
  font-weight: bold;
}
.tabs-primary:before, .tabs-secondary:before, .tabs-primary:after, .tabs-secondary:after {
  content: "";
  display: table;
}
.tabs-primary:after, .tabs-secondary:after {
  clear: both;
}

.tabs-primary__tab, .tabs-primary__tab.is-active, .tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  float: left;
  margin: 0 3px;
}

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. */
.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;
}

.is-active.tabs-primary__tab {
  border-bottom-color: #f0f5f9;
}

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: #33333c;
  background-color: #dedede;
  letter-spacing: 1px;
  padding: 0 1em;
  text-align: center;
}

a.tabs-primary__tab-link:hover, a.tabs-primary__tab-link:focus {
  background-color: #e9e9e9;
  border-color: #f2f2f2;
}

a.tabs-primary__tab-link:active, a.tabs-primary__tab-link.is-active {
  background-color: transparent;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #f0f5f9));
  background-image: -webkit-linear-gradient(#ffffff, #f0f5f9);
  background-image: -moz-linear-gradient(#ffffff, #f0f5f9);
  background-image: -o-linear-gradient(#ffffff, #f0f5f9);
  background-image: linear-gradient(#ffffff, #f0f5f9);
  background-image: linear-gradient(#ffffff, #f0f5f9);
  border-color: #fff;
}

/* Secondary tabs. */
.tabs-secondary {
  font-size: .9em;
  /* Collapse bottom margin of ul.primary. */
  margin-top: -1.5em;
}

.tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  margin: 0.75em 3px;
}

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: #33333c;
  padding: 0 .5em;
}

a.tabs-secondary__tab-link:hover, a.tabs-secondary__tab-link:focus {
  background-color: #dedede;
  border-color: #999;
  color: #33333c;
}

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;
}

/**
 * @file
 * Team Page pri.org/team.
 */
.view-staff .bio {
  border: none;
  margin: 0 4% 1em 0;
  padding: 0;
  float: left;
  width: 46%;
}
@media (min-width: 601px) {
  .view-staff .bio {
    width: 21%;
  }
}
.view-staff .bio .about__image {
  width: 100%;
  float: left;
  margin: 0 0 .5em;
  padding: 0;
}
.view-staff .bio h2 {
  margin: 0;
}
.view-staff .bio .field-position {
  font-style: italic;
}

/**
 * @file
 * Teaser list.
 */
.teaser-list__title,
.pane-node-field-ref-related-stories .pane-title {
  font-size: 0.88889em;
  line-height: 1.6875em;
  margin-top: 1.125em;
  margin-bottom: 0em;
  border-bottom: 1px solid #eeeeef;
}

.teaser-list__list,
.pane-node-field-ref-related-stories .field-ref-related-stories {
  list-style-type: none;
  margin-top: 0;
}

.teaser-list__section {
  margin: 0 0 8px 0;
  list-style-type: none;
  font-size: 0.75em;
  line-height: 2em;
  font-weight: bold;
  color: #4188bc;
}

.teaser-list__item-image {
  margin: 0;
}

.teaser-list__item-big-title {
  font-size: 1.33333em;
  line-height: 1.26563em;
  margin-top: 0.5625em;
  margin-bottom: 0.36563em;
}

.teaser-list__item-title {
  font-size: 0.88889em;
  line-height: 1.26563em;
  margin-top: 1.125em;
  margin-bottom: 0em;
}

/*
.teaser-list__item-link:link,
.teaser-list__item-link:visited,
%teaser-list__item-link {
  color: #33333c;
  @include mediaquery(961px) {
    color: lighten($drk-gray, 40%);
  }
  .teaser-list__item-big-title & {
    color: #33333c;
  }
}*/
.teaser-list__item .field-terms-sections a {
  color: #9696a5;
}

.teaser-list__item-link:hover,
.teaser-list__item-link:focus,
.teaser-list__item-link:active {
  color: #d3401e;
}

.teaser-list__item-big-title .teaser-list__item-link:hover,
.teaser-list__item-big-title .teaser-list__item-link:focus,
.teaser-list__item-big-title .teaser-list__item-link:active {
  color: #d3401e;
}

.teaser-list__item-meta,
.teaser-list__item .field-date-published {
  margin: 0;
  font-weight: bold;
  display: inline;
  font-size: 0.75em;
  line-height: 2em;
  line-height: 18px;
}
.teaser-list__item-meta li,
.teaser-list__item .field-date-published li {
  display: inline;
}

.teaser-list__item-program {
  border-right: 1px solid #8c8c94;
  margin-right: 9px;
  padding-right: 9px;
}

.teaser-list__item-date,
.teaser-list__item .field-date-published {
  font-weight: 500;
  color: #8c8c94;
}

.pane-node-field-ref-related-stories h2.pane-title {
  margin-top: 0;
}
.pane-node-field-ref-related-stories .teaser-list__item-title {
  font-size: 1em;
}

.teaser-list__item .field-updated,
.teaser-list__item .field-updated div,
.teaser-list__item .field-updated h3 {
  display: inline;
  font-size: 14px;
  line-height: 18px;
}

/**
 * @file
 * Tokens.
 */
.token-tree {
  font-size: 0.85em;
  margin-left: 19px;
  /* Prevent the token columns from being wrapped. */
}
.ui-dialog-content .token-tree {
  margin-left: 0;
}
.token-tree td,
.token-tree th {
  padding-top: 0;
  padding-bottom: 0;
}
.token-tree td.token-key {
  white-space: nowrap;
}

.token-group {
  font-weight: bold;
}
.js .token-group {
  font-weight: normal;
}

/**
 * jQuery TreeTable Core 2.0 stylesheet
 *
 * This file contains styles that are used to display the tree table. Each tree
 * table is assigned the +treeTable+ class.
 */
.treeTable .ui-draggable-dragging {
  color: #000;
  z-index: 1;
}
.treeTable tr {
  /**
   * token.module doesn't come with these images. Remove them to prevent 404
   * errors.
   */
    /*
    &.collapsed.selected td .expander,
    &.collapsed.accept td .expander {
      background-image: image-url("toggle-expand-light.png");
    }

    &.expanded.selected td .expander,
    &.expanded.accept td .expander {
      background-image: image-url("toggle-collapse-light.png");
    }
    */
}
.treeTable tr td .expander {
  background-position: left center;
  background-repeat: no-repeat;
  cursor: pointer;
  padding: 0;
}
.treeTable tr.collapsed td .expander {
  background-image: url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/arrow-right_png-1433771013');
}
.treeTable tr.expanded td .expander {
  background-image: url('https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/arrow-down_png-1433771014');
}
.treeTable tr.selected, .treeTable tr.accept {
  background-color: #3875d7;
  color: #fff;
}

.flag-i-enjoy-this a.flag-link-toggle i {
  color: #fff;
  text-shadow: 0px 0px 3px #333;
}
.flag-i-enjoy-this a.flag-link-toggle.unflag-action i {
  color: yellow;
  text-shadow: 0px 0px 3px #333;
}

.pane-songs-from-playlist {
  background: #e8f1f7;
  padding: 2%;
  margin: 2em 0 1em;
}
.pane-songs-from-playlist h2 {
  display: inline-block;
  margin: 0 15px 0 0;
}
.pane-songs-from-playlist .favorite-playall {
  display: inline-block;
  cursor: pointer;
  background: #fff;
  padding: 5px 10px;
  border-radius: 10px;
  margin: 0 0 1em;
  vertical-align: top;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
.pane-songs-from-playlist .favorite-playall i {
  font-size: .75em;
  color: #555;
  margin: 2px 0 0;
}
.pane-songs-from-playlist .view-songs-from-playlist .views-row,
.pane-songs-from-playlist .view-songs-from-playlist .views-row-first {
  border-color: #fff;
  min-height: 0;
}
.pane-songs-from-playlist .view-songs-from-playlist .views-field-comment-count {
  margin: 3px 0 0 15px;
  vertical-align: top;
}
.pane-songs-from-playlist .view-songs-from-playlist .views-field-title h3 {
  margin: 5px 0 0;
  font-size: 1em;
}
.pane-songs-from-playlist .view-songs-from-playlist .views-field-name,
.pane-songs-from-playlist .view-songs-from-playlist .views-field-field-your-name,
.pane-songs-from-playlist .view-songs-from-playlist .views-field-country {
  margin: 3px 0 0;
  font-size: .875em;
  display: inline-block;
}
.pane-songs-from-playlist .view-footer {
  display: block;
  width: 100%;
  text-align: left;
}
.pane-songs-from-playlist .view-footer p {
  margin: 1em 0 0;
}
.pane-songs-from-playlist .view-footer p a {
  display: inline-block;
  background: #fff;
  padding: 5px 10px;
  margin: 0 0 1em;
  vertical-align: top;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
.pane-songs-from-playlist .view-footer p a i {
  font-size: .75em;
  display: inline-block;
  margin: 0 0 0 3px;
}
.pane-songs-from-playlist .view-footer p a:hover,
.pane-songs-from-playlist .view-footer p a:active {
  background: #d3401e;
  color: white;
}

.view-audio-search,
.view-songs-from-playlist {
    /*.views-short-player {
        width: 150px;
        display: inline-block;
        margin: 0 25px 0 0;
    }

    .audio-player__wrapper {

        margin: 0 15px 0 0; 
        display: inline-block;
        width: 150px;

        .mejs-container {width: 150px !important;}
        .mejs-time-rail,
        .mejs-volume-button,
        .mejs-horizontal-volume-slider  {display: none;}

        .item-list .player-utilities li.last {position:relative; z-index:1000;}
    }*/
}
.view-audio-search .views-row,
.view-songs-from-playlist .views-row {
  border-bottom: 1px solid #eeeeef;
  padding: 1.25em 0;
  min-height: 157px;
  position: relative;
}
.view-audio-search .views-row-first,
.view-songs-from-playlist .views-row-first {
  border-top: 1px solid #eeeeef;
  padding-top: 25px;
}
.view-audio-search .audio-player__wrapper,
.view-songs-from-playlist .audio-player__wrapper {
  margin-bottom: 0;
}
.view-audio-search .share-count,
.view-songs-from-playlist .share-count {
  top: 0;
}
.view-audio-search .field-photo,
.view-songs-from-playlist .field-photo {
  float: right;
  margin: 15px 0 0 10px;
  display: none;
}
@media (min-width: 800px) {
  .view-audio-search .field-photo,
  .view-songs-from-playlist .field-photo {
    display: block;
  }
}
.view-audio-search .views-field-title,
.view-songs-from-playlist .views-field-title {
  display: inline-block;
  margin: 0 10px 0 0;
  vertical-align: top;
}
.view-audio-search .views-field-title h3,
.view-songs-from-playlist .views-field-title h3 {
  margin: 0;
}
.view-audio-search .views-field-name,
.view-audio-search .views-field-country,
.view-audio-search .views-field-field-your-name,
.view-songs-from-playlist .views-field-name,
.view-songs-from-playlist .views-field-country,
.view-songs-from-playlist .views-field-field-your-name {
  display: block;
  font-style: italic;
  vertical-align: top;
  margin: 2px 0 0;
}
.view-audio-search .field-body p,
.view-songs-from-playlist .field-body p {
  max-width: 650px;
  font-size: .90em;
  line-height: 1.4em;
}
.view-audio-search .views-field-ops,
.view-audio-search .views-field-comment-count,
.view-songs-from-playlist .views-field-ops,
.view-songs-from-playlist .views-field-comment-count {
  display: inline-block;
  font-size: .85em;
  font-style: italic;
  margin: 0 25px 0 0;
  vertical-align: top;
}

.view-audio-search div.views-field-name {
  display: block;
}

.pane-views-exp-audio-search-page .views-exposed-form {
  background: #e8f1f7;
  padding: 2%;
}
.pane-views-exp-audio-search-page .views-widget-filter-field_type_tid {
  display: block;
  margin: 0 0 1.5em;
}
@media (min-width: 720px) {
  .pane-views-exp-audio-search-page .views-widget-filter-shs_term_node_tid_depth {
    display: inline-block;
    width: 372px;
    margin: 0 15px 0 0;
  }
  .pane-views-exp-audio-search-page .views-widget-filter-field_type_tid {
    margin: 0 15px 0 0;
    display: inline-block;
  }
}

.pane-views-exp-audio-search-page-1 .views-exposed-form {
  background: #e8f1f7;
  padding: 2%;
}
.pane-views-exp-audio-search-page-1 .views-exposed-widget {
  width: 100%;
  display: inline-block;
  margin: 0 0 15px;
}
@media (min-width: 720px) {
  .pane-views-exp-audio-search-page-1 .views-exposed-widget {
    width: 48%;
  }
}
.pane-views-exp-audio-search-page-1 .views-exposed-widget.views-submit-button,
.pane-views-exp-audio-search-page-1 .views-exposed-widget.views-reset-button {
  width: auto;
  margin: 15px 0;
}

.node-type-user-audio .field-terms-sections,
.node-type-playlist .field-terms-sections {
  margin-bottom: 0;
  font-weight: bold;
  list-style-type: none;
  font-size: 0.75em;
  line-height: 2em;
  margin-top: 0;
  font-style: normal;
}
.node-type-user-audio .field-terms-sections p,
.node-type-playlist .field-terms-sections p {
  margin: 0;
}
.node-type-user-audio h1,
.node-type-playlist h1 {
  margin: 0;
}
.node-type-user-audio .submit-info,
.node-type-user-audio .pane-node-created,
.node-type-playlist .submit-info,
.node-type-playlist .pane-node-created {
  font-style: italic;
  display: inline-block;
  margin: 0 0 1em;
  font-size: .90em;
}
.node-type-user-audio .submit-info p,
.node-type-user-audio .pane-node-created p,
.node-type-playlist .submit-info p,
.node-type-playlist .pane-node-created p {
  margin: 0;
  padding: 0;
}
.node-type-user-audio .field-photo,
.node-type-playlist .field-photo {
  float: right;
  margin: 0 0 15px 15px;
}
.node-type-user-audio .field-body p:first-of-type,
.node-type-playlist .field-body p:first-of-type {
  margin-top: 0;
}
.node-type-user-audio .audio-player__wrapper,
.node-type-playlist .audio-player__wrapper {
  clear: both;
}
.node-type-user-audio .links.inline,
.node-type-playlist .links.inline {
  margin: 0 0 1em;
  display: block;
}
.node-type-user-audio .pane-entity-field,
.node-type-playlist .pane-entity-field {
  font-size: .95em;
  display: block;
  width: 100%;
  padding: 5px;
  background: #fafafa;
  border-top: 1px solid #fff;
}
.node-type-user-audio .pane-entity-field .field-label,
.node-type-playlist .pane-entity-field .field-label {
  font-style: italic;
  width: 100%;
  margin: 0;
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
@media (min-width: 720px) {
  .node-type-user-audio .pane-entity-field .field-label,
  .node-type-playlist .pane-entity-field .field-label {
    text-align: right;
    width: 300px;
  }
}
.node-type-user-audio .pane-entity-field .field-who-was-with-you-at-birth-:after,
.node-type-user-audio .pane-entity-field .field-do-you-intend-to-use-medic.inline:after,
.node-type-playlist .pane-entity-field .field-who-was-with-you-at-birth-:after,
.node-type-playlist .pane-entity-field .field-do-you-intend-to-use-medic.inline:after {
  content: ",";
  margin: 0;
  padding: 0;
}
.node-type-user-audio .pane-entity-field .field-who-was-with-you-at-birth-:last-of-type:after,
.node-type-user-audio .pane-entity-field .field-do-you-intend-to-use-medic.inline:last-of-type:after,
.node-type-playlist .pane-entity-field .field-who-was-with-you-at-birth-:last-of-type:after,
.node-type-playlist .pane-entity-field .field-do-you-intend-to-use-medic.inline:last-of-type:after {
  content: "";
}
.node-type-user-audio .pane-entity-field h2,
.node-type-playlist .pane-entity-field h2 {
  display: none;
}
.node-type-user-audio .field-lullaby-upload,
.node-type-playlist .field-lullaby-upload {
  margin: 0 0 2em;
}

.page-node-add-user-audio {
  position: relative;
}
.page-node-add-user-audio .pane-custom.pane-2 {
  margin: 0 0 2em;
  /*p {max-width: 800px;}*/
}
.page-node-add-user-audio .form-item {
  margin: 0 0 1.5em;
}
@media (min-width: 601px) {
  .page-node-add-user-audio .form-item {
    margin: 0 8% 1.5em;
  }
  .page-node-add-user-audio .form-item label {
    display: inline-block;
    width: 300px;
    vertical-align: top;
  }
}
@media (min-width: 601px) {
  .page-node-add-user-audio .form-item .form-checkboxes {
    display: inline-block;
  }
}
.page-node-add-user-audio .form-item .form-checkboxes .form-item {
  margin: 0 0 10px;
}
.page-node-add-user-audio .form-item .form-checkboxes label {
  font-weight: normal;
  display: inline;
  margin: 0;
  padding: 0;
}
.page-node-add-user-audio textarea {
  padding: 5px;
  border: 1px solid #ccc;
  border-top-color: #aaa;
  background: #fff;
  color: #555;
}
.page-node-add-user-audio .image-widget {
  display: inline-block;
}
.page-node-add-user-audio .image-widget .form-file {
  padding: 2px;
  border: 1px solid #ccc;
  border-top-color: #aaa;
  background: #fff;
  color: #333;
  font-size: .875em;
}
.page-node-add-user-audio .media-widget {
  margin: 0;
}
@media (min-width: 960px) {
  .page-node-add-user-audio .media-widget {
    margin: 0 8% 1.5em;
  }
}
.page-node-add-user-audio .media-widget .form-item {
  margin: 0;
  display: inline-block;
  width: 300px;
}
.page-node-add-user-audio .media-widget .button {
  display: inline-block;
  width: 250px;
  line-height: 50px;
  height: 50px;
}
.page-node-add-user-audio .media-widget .button.remove {
  background: none;
  color: #d3401e;
  font-weight: normal;
  height: 20px;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 15px;
}
.page-node-add-user-audio .description,
.page-node-add-user-audio .fieldset-description {
  font-style: italic;
  font-size: .875em;
  line-height: 1em;
  margin: 3px 0;
}
.page-node-add-user-audio .fieldset-description {
  margin: 10px 0 2em;
}
.page-node-add-user-audio .form-textarea-wrapper {
  display: inline-block;
}
.page-node-add-user-audio .form-textarea-wrapper textarea {
  width: 100%;
  max-height: 200px;
}
.page-node-add-user-audio .filter-wrapper.form-wrapper,
.page-node-add-user-audio .wysiwyg-toggle-wrapper {
  display: none;
}
.page-node-add-user-audio .field-group-fieldset {
  padding: 5px 20px 20px;
  background: #f5f5f5;
  border: none;
  margin: 0 0 2em;
}
@media (min-width: 960px) {
  .page-node-add-user-audio .field-group-fieldset {
    padding: 6% 2% 2%;
  }
  .page-node-add-user-audio .field-group-fieldset legend {
    position: relative;
    top: 40px;
  }
}
.page-node-add-user-audio .fieldset-legend {
  font-weight: bold;
  font-size: 1.25em;
}
.page-node-add-user-audio .form-field-name-field-lullaby-record,
.page-node-add-user-audio .form-field-name-field-lullaby-upload,
.page-node-add-user-audio .form-field-name-field-lullaby-video {
  display: inline-block;
  vertical-align: top;
  margin: 0 0 2em;
  padding: 0 0 1em;
  width: 100%;
  border-bottom: 1px solid #eeeeef;
}
@media (min-width: 960px) {
  .page-node-add-user-audio .form-field-name-field-lullaby-record,
  .page-node-add-user-audio .form-field-name-field-lullaby-upload,
  .page-node-add-user-audio .form-field-name-field-lullaby-video {
    width: 33%;
    margin: 0;
    padding: 0;
    border: none;
  }
}
.page-node-add-user-audio .form-field-name-field-lullaby-record .form-item,
.page-node-add-user-audio .form-field-name-field-lullaby-upload .form-item,
.page-node-add-user-audio .form-field-name-field-lullaby-video .form-item {
  margin: 0;
}
.page-node-add-user-audio #edit-field-lullaby-record--2 {
  width: 100%;
}
.page-node-add-user-audio .vertical-tabs, .page-node-add-user-audio #edit-preview {
  display: none;
}
.page-node-add-user-audio #edit-submit {
  display: block;
  width: 100%;
  text-align: center;
  background: #9cc666;
  color: white;
  margin: 3em 0 0;
  line-height: 60px;
  border-radius: 30px;
  font-weight: 700;
  border: none;
}
.page-node-add-user-audio #edit-submit:hover, .page-node-add-user-audio #edit-submit:active {
  background: #75873d;
}
.page-node-add-user-audio .pane-3 {
  text-align: center;
  max-width: 600px;
  font-size: .875em;
  line-height: 1.4em;
  margin: 0 auto 3em;
}

.story-full-width .pane-page-content {
  padding: 0;
}

.section-lullabies .messages__list li {
  display: block;
}

.section-lullabies .messages__list li + li {
  display: none;
}

.section-ideal-birth.story-full-width .pane-page-content,
.section-lullabies.story-full-width .pane-page-content {
  margin: 0;
}

.section-ideal-birth h1 {
  margin-bottom: 0;
}

.page-node-add-user-audio-pregnancy .field-type-text-with-summary {
  margin: 1em 0 0;
}

.page-node-71530 {
  background: #fafafa;
  /*.sponsors {background: #333; border-top: 2px solid #fff;}
  .footer {background: #222; border-top: 2px solid #fff;}*/
}
.page-node-71530 .vertical__header {
  margin: 0;
}
.page-node-71530 .home__main .l-centered {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
}
.page-node-71530 .home__secondary {
  clear: both;
  background: #fff;
  padding: 1em 20px;
  border-top: 1px solid #eeeeef;
}
.page-node-71530 .pane-messages {
  display: block;
  clear: both;
}

.field-select-awl-sections {
  position: relative;
  background: #fafafa;
  clear: both;
  border-bottom: 1px solid white;
  float: left;
  width: 100%;
}
.field-select-awl-sections.even {
  background: #eee;
}
.field-select-awl-sections.even .vb__media:after {
  background-image: url(https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/awl_triangle-eee_png-1433771014);
  /*fallback*/
  background-image: url(https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/awl_triangle-eee_svg-1433771015);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.field-select-awl-sections .vb__media {
  position: relative;
  width: 100%;
}
.field-select-awl-sections .vb__media:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  background-image: url(https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/awl_triangle-fafafa_png-1433771016);
  /*fallback*/
  background-image: url(https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/awl_triangle-fafafa_svg-1433771017);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  z-index: 10;
  fill: #222;
}
.field-select-awl-sections .vb__media .file-video {
  position: relative;
  z-index: 20;
  padding: 20px 20px 0;
}
.field-select-awl-sections .vb__content {
  position: relative;
  padding: 1em 20px;
  z-index: 20;
}
@media (min-width: 961px) {
  .field-select-awl-sections .vb__content {
    padding-bottom: 0;
  }
}
@media (min-width: 961px) {
  .field-select-awl-sections .vb__media {
    overflow: hidden;
    width: 45%;
  }
  .field-select-awl-sections .vb__media .file-video {
    padding: 2em 2em 1em;
  }
  .field-select-awl-sections .vb__media img {
    min-width: 882px;
    margin-left: -45%;
  }
  .field-select-awl-sections .vb__content {
    width: 51%;
  }
  .field-select-awl-sections.odd .vb__media {
    float: right;
  }
  .field-select-awl-sections.odd .vb__content {
    float: left;
    padding: 2em 0 1em 2%;
  }
  .field-select-awl-sections.even .vb__media {
    float: left;
  }
  .field-select-awl-sections.even .vb__content {
    float: right;
    padding: 2em 2% 1em 0;
  }
}
@media (min-width: 961px) and (min-width: 1301px) {
  .field-select-awl-sections .vb__media img {
    margin-left: 0;
  }
}

.node-vertical-block h2 {
  font-size: 2em;
  line-height: 1.2em;
  margin: 0 0 0.5em;
}
.node-vertical-block h2 a {
  color: #33333c;
}
.node-vertical-block h2 a:hover, .node-vertical-block h2 a:active {
  color: #96c93e;
}
.node-vertical-block .field-body {
  font-size: 16px;
  line-height: 24px;
}
.node-vertical-block .field-body a:hover,
.node-vertical-block .field-body a:active {
  color: #96c93e;
}
.node-vertical-block .field-body .edit-entity {
  margin-top: 0;
}
.node-vertical-block .field-body .node-story-act #subscription_form_wrapper {
  margin-top: 0;
}
.node-vertical-block .field-body .node-story-act #subscription_form_wrapper .form-item .form-text {
  padding: 4px;
}
.node-vertical-block .field-body .subscription-submit {
  background: #96c93e;
  color: #000;
}
.node-vertical-block .field-body .subscription-submit:hover, .node-vertical-block .field-body .subscription-submit:active {
  background: #e8f1f7;
}

.field-section-stories .story-list {
  border-top: 1px dotted #ddd;
  border-bottom: none;
  padding: 0.5em 0;
}
.field-section-stories .story-list__title {
  font-size: 16px;
  width: 94%;
}
@media (min-width: 961px) {
  .field-section-stories .story-list__title {
    width: 100%;
  }
}
.field-section-stories .field-teaser {
  display: none;
}
@media (min-width: 961px) {
  .field-section-stories .story-list__group-1 {
    width: 115px;
  }
}
.field-section-stories .story-list__group-1 .field-image {
  display: none;
}
@media (min-width: 961px) {
  .field-section-stories .story-list__group-1 .field-image {
    display: block;
  }
}

.awl__button a {
  display: block;
  width: 100%;
  background: #96c93e;
  color: #111;
  text-align: center;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
  margin: 0 auto;
  padding: 10px 0;
  max-width: 800px;
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  -o-border-radius: 20px;
}
@media (min-width: 660px) {
  .awl__button a {
    font-size: 20px;
  }
}
.awl__button a:hover, .awl__button a:active {
  background: #fff;
}

/* Dark background

.page-node-71530 {
	background: #222;

	.vertical__header {margin: 0;}

	.home__main {
		.l-centered {
			margin: 0;
			padding: 0;
			width: 100%;
			max-width: 100%;
		}
	}
	.home__secondary {
		clear: both;
		background: #111;
		padding: 1em 20px;
	}

	.sponsors {background: #333; border-top: 2px solid #fff;}
	.footer {background: #222; border-top: 2px solid #fff;}


	.pane-messages {background: #333; display: block; clear: both;}
}
.field-select-awl-sections {
	position: relative;
	background: #222;
	color: #999;
	clear: both;
	border-bottom: 2px solid #fff;
	float: left;
	width: 100%;

	&.odd {}
	&.even {
		background: #333;

		.vb__media {
			&:after {
				background-image: url(https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/awl_triangle_png-1433771018); 
				background-image: url(https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/awl_triangle_svg-1433771018);
				-moz-transform: rotate(180deg);
		    -ms-transform: rotate(180deg); 
		    -webkit-transform: rotate(180deg);
		    transform: rotate(180deg);
			}
		}
	}	

	.vb__media {
		position: relative;
		width: 100%;

		&:after {
			content: '';
			position: absolute;
			top: 0;
			bottom: 0;
			background-image: url(https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/awl_triangle-222_png-1433771031); 
			background-image: url(https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/awl_triangle-222_svg-1433771031);
			background-repeat: no-repeat;
			background-size: cover;
			width: 100%;
			z-index: 10;
			fill: #222;
		}

		.file-video {
			position: relative;
			z-index: 20;
			padding: 20px 20px 0;
		}
	}
	.vb__content {
		position: relative;
		padding: 1em 20px;
		z-index: 20;

		@include mediaquery(961px) {
			padding-bottom: 0;
		}
	}


	@include mediaquery(961px) {
		.vb__media {
			overflow: hidden;
			width: 45%;
				
			.file-video {padding: 2em 2em 1em; }
			img {
				min-width: 882px;
				margin-left: -45%;

					@include mediaquery(1301px) {
						margin-left: 0;
					}
			}
		}
		.vb__content {width: 51%; }

		&.odd {
			.vb__media {float: right;}
			.vb__content {float: left; padding: 2em 0 1em 2%;}
		}
		&.even {
			.vb__media {float: left;}
			.vb__content {float: right; padding: 2em 2% 1em 0;}
		}
	}
}

.node-vertical-block {
	h2 {
		color: #eee;
		margin: 0 0 0.5em;
		font-size: 24px;

		a {color: #eee;}
		a:hover, a:active {color: #96c93e;}
	}
	.field-body {
		font-size: 16px;
		line-height: 24px;

		strong, b {color: #eee;}

		a {color: #96c93e;}
		a:hover, a:active {color: #eee;}

		.edit-entity {margin-top: 0;}

		.node-story-act #subscription_form_wrapper {
			margin-top: 0;

			.form-item .form-text {
				background: #999;
				padding: 4px;
				border: 1px solid #000;

				&:active,
				&:focus {background: #eee;}
			}
		}

		.subscription-submit {
			background: #96c93e;
			color: #000;

			&:hover, &:active {background: #eee;}
		}
	}
}
.field-section-stories {
	.story-list {
		border-top: 1px dotted #000;
		border-bottom: none;
		padding: 0.5em 0;
	}
	.story-list__title {
		font-size: 16px;
		width: 94%;

		@include mediaquery(961px) {
			width: 100%;
		}
		
		a {color: #96c93e;}
		a:hover {color: $lt-blue;}
	}
	.field-teaser {display: none;}
	.story-list__group-1 {
		
		@include mediaquery(961px) {
			width: 115px;
		}

		
		.field-image {display: none;
			@include mediaquery(961px) {
				display: block;
			}
		}
	}
}
.awl__button {
	a {
		display: block;
		width: 100%;
		background: #96c93e;
		color: #111;
		text-align: center;
		font-size: 18px;
		text-transform: uppercase;
		font-weight: bold;
		padding: 10px 0;
		border-radius: 20px;
		-moz-border-radius: 20px;
		-webkit-border-radius: 20px;
		-o-border-radius: 20px;

		@include mediaquery(660px) {
			font-size: 20px;
		}

		&:hover, &:active {
			background: #fff;
		}
	}
}
*/
/**
 * @file
 * Vertical.
 */
.vertical__header {
  background-size: cover;
  margin: 0 0 1em;
}

.l-centered.l-vertical {
  padding: 0 24px;
}

.l-vertical__summary {
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -100%;
}
@media (min-width: 801px) {
  .l-vertical__summary {
    clear: none;
    float: left;
    width: 310px;
    margin-left: 0%;
    margin-right: -100%;
  }
}
@media (min-width: 1001px) {
  .l-vertical__summary {
    float: left;
    width: 31.25%;
    margin-left: 0%;
    margin-right: -100%;
  }
}

.l-vertical__prompt {
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -100%;
  clear: both;
}
@media (min-width: 801px) {
  .l-vertical__prompt {
    clear: none;
    float: left;
    width: 56.5%;
    margin-left: 40.5%;
    margin-right: -100%;
    clear: none;
  }
}
@media (min-width: 1001px) {
  .l-vertical__prompt {
    clear: none;
    float: left;
    width: 62.5%;
    margin-left: 34.375%;
    margin-right: -100%;
  }
}

.vertical__summary {
  padding: 24px;
}
@media (min-width: 601px) {
  .vertical__summary {
    margin-top: 36px;
    margin-bottom: 0px;
  }
}

.l-vertical__summary-wrapper {
  background: white;
}

.field-text-tagline {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(51, 51, 60, 0.2);
  margin-bottom: 12px;
  margin-top: 0.45em;
  font-size: 80%;
}

.vertical__summary-text {
  font-size: 0.83333em;
  line-height: 1.35em;
  margin-top: 0.45em;
  margin-bottom: 0.45em;
}

.vertical__prompt {
  margin-top: 36px;
  margin-bottom: 36px;
  text-align: center;
}

.prompt {
  font-size: 1.38889em;
  line-height: 1.35em;
}
@media (min-width: 321px) {
  .prompt {
    font-size: 1.72222em;
    line-height: 1.15403em;
  }
}
@media (min-width: 961px) {
  .prompt {
    font-size: 2.11111em;
    line-height: 1.15461em;
    margin-top: 0em;
    margin-bottom: 0.35526em;
  }
}
@media (min-width: 1201px) {
  .prompt {
    font-size: 2.27778em;
    line-height: 1.15244em;
  }
}

.prompt-story {
  font-weight: 700;
  font-size: 0.83333em;
  line-height: 0.9em;
}

.prompt-story .ss-icon {
  margin-right: 6px;
  position: relative;
  top: 3px;
  font-size: 16px;
}

.steps {
  text-align: left;
  font-weight: 700;
}

.steps__circle {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 6px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border-radius: 15px;
  background: #c3d600;
  color: #f0ff57;
  text-align: center;
}

.ss-icon--vertical {
  margin: 0 2px;
}

.field-editor-s-note {
  width: 98%;
  padding: 1px 1%;
  margin: 0 0 2em;
  background: #faf292;
}
@media (min-width: 961px) {
  .field-editor-s-note {
    margin: 0 24px 2em;
    width: 94.5%;
  }
}

.vertical__summary .node__title {
  display: none;
}

.l-vertical-recent__title {
  margin-top: 0;
  margin-bottom: 0em;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 481px) {
  .l-vertical-recent__title {
    float: left;
    margin-bottom: 0;
  }
}

.vertical-more-link {
  font-size: 0.77778em;
  line-height: 1.92857em;
  font-weight: 700;
}
@media (min-width: 481px) {
  .vertical-more-link {
    float: right;
    margin-right: 24px;
  }
}
.vertical-more-link .ss-icon {
  margin-left: 3px;
  position: relative;
  top: 2px;
}

@media (max-width: 600px) {
  .vertical__summary {
    padding: 0px;
  }

  .l-vertical__summary-wrapper {
    padding: 24px;
  }
}
@media (min-width: 601px) {
  .l-vertical__main,
  .steps.is-first,
  .l-vertical__sidebar {
    margin-top: 0px;
  }
}
.node-type-vertical .field-terms-sections {
  display: none;
}
@media (min-width: 961px) {
  .node-type-vertical .vertical__header {
    height: 350px;
    padding: 0;
  }
}
.node-type-vertical .vertical__header .l-centered.l-vertical {
  padding: 0;
  background: white;
}
@media (min-width: 800px) {
  .node-type-vertical .vertical__header .l-centered.l-vertical {
    background: none;
  }
}
@media (min-width: 961px) {
  .node-type-vertical .vertical__header .l-centered.l-vertical {
    padding: 0 48px;
  }
}
.node-type-vertical .l-vertical__summary {
  background: white;
  margin: 0;
  padding: 4%;
  width: 92%;
}
@media (min-width: 800px) {
  .node-type-vertical .l-vertical__summary {
    padding: 2%;
    width: 29%;
  }
}
@media (min-width: 961px) {
  .node-type-vertical .l-vertical__summary {
    margin: 15px 0 0;
    padding: 2%;
    width: 27%;
  }
}
@media (min-width: 1140px) {
  .node-type-vertical .l-vertical__summary {
    margin: 30px 0 0;
  }
}
.node-type-vertical .home__main {
  margin-top: -4em;
}
@media (min-width: 800px) {
  .node-type-vertical .home__main {
    margin-top: 0;
  }
}
.node-type-vertical.section-verticals .vertical__summary .pane-series-items {
  background: none;
  margin: 0;
  padding: 0;
  border: none;
}
.node-type-vertical.section-verticals .vertical__summary .field-file-vertical-logo {
  margin: 0 0 0.5em;
}
@media (min-width: 800px) {
  .node-type-vertical.section-verticals .vertical__summary .field-file-vertical-logo {
    display: none;
  }
}
.node-type-vertical.section-verticals .vertical__summary h2 {
  margin: 0 0 0.25em;
  font-size: 18px;
  line-height: 1.3em;
}
.node-type-vertical.section-verticals .vertical__summary .field-text-tagline {
  padding: 0;
  margin: 0 0 1em;
  line-height: 1.3em;
}
.node-type-vertical.section-verticals .vertical__summary .field-social {
  border: none;
  margin: 0.5em 0;
  padding: 0;
}
.node-type-vertical.section-verticals .vertical__summary .field-social span {
  font-size: 16px;
  font-style: italic;
}
.node-type-vertical.section-verticals .vertical__summary .person {
  line-height: 1.3em;
}
.node-type-vertical.section-verticals .vertical__summary .pane-newsletter-registration {
  padding: 0;
  margin: 1em 0 0;
  border: none;
}
.node-type-vertical.section-verticals .vertical__summary .pane-newsletter-registration h2 {
  margin: 0 0 0.25em;
  font-size: 16px;
  line-height: 1.3em;
}
.node-type-vertical.section-verticals .vertical__summary .pane-newsletter-registration #subscription_form_wrapper .form-item {
  display: inline-block;
  width: 60%;
}
.node-type-vertical.section-verticals .vertical__summary .pane-newsletter-registration #subscription_form_wrapper .form-item .form-text {
  width: 100%;
  font-size: 16px;
}

.page-node-50 .field-text-tagline {
  display: none;
}
@media (min-width: 800px) {
  .page-node-50 .field-text-tagline {
    display: block;
  }
}

.section-verticals .home__secondary.tertiary {
  padding: 2em 0;
  float: left;
  width: 100%;
}

.tertiary .l-centered {
  padding: 0 24px;
}
@media (min-width: 961px) {
  .tertiary .l-centered {
    padding: 0 48px;
  }
}
.tertiary .panel-pane {
  margin: 0 0 2em;
  display: block;
}
@media (min-width: 961px) {
  .tertiary .panel-pane {
    width: 32%;
    float: left;
    margin: 0;
  }
}
.tertiary .panel-pane h2 {
  margin: 0 0 0.5em;
  font-size: 22px;
}
.tertiary .pane-node-field-series-in-vertical .field-series-in-vertical a {
  display: block;
  padding: 5px;
  background: #fff;
  margin: 0 0 10px;
}
@media (min-width: 961px) {
  .tertiary .pane-node-field-series-in-vertical {
    margin-right: 1%;
  }
}
.tertiary .pane-node-field-vertical-sponsor-with-logo .field-collection-container {
  border: none;
  margin: 0;
}
.tertiary .pane-node-field-vertical-sponsor-with-logo .field-collection-view {
  margin: 0;
  padding: 0;
}
.tertiary .pane-node-field-vertical-sponsor-with-logo .field-sponsor-logo a {
  display: block;
  padding: 5px;
  background: #fff;
  margin: 0 0 10px;
}
@media (min-width: 961px) {
  .tertiary .pane-node-field-vertical-sponsor-with-logo {
    margin-left: 1%;
    min-width: 250px;
  }
}
@media (min-width: 961px) {
  .tertiary .promo-box--ad {
    min-width: 300px;
    float: right;
  }
}

.node-type-vertical .sponsors {
  clear: both;
}

.page-node-71530 .vertical__header,
.vertical-awl .vertical__header {
  background: #222222 url(https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/logo_awl-mobile_png-1433771033) no-repeat center top;
  border-bottom: 2px solid #fff;
  height: auto;
  text-align: center;
}
@media (min-width: 660px) {
  .page-node-71530 .vertical__header,
  .vertical-awl .vertical__header {
    background: #222222 url(https://87334ffec493a03fec40-ca788dbe1e8c617c7ba848bfe1949a46.ssl.cf2.rackcdn.com/awl_banner_png-1433771053) no-repeat center top;
    height: auto;
    text-align: center;
  }
}
.page-node-71530 .vertical__header .l-centered.l-vertical.l-vertical--top,
.vertical-awl .vertical__header .l-centered.l-vertical.l-vertical--top {
  background: none;
}
.page-node-71530 .l-vertical__prompt.vertical__prompt,
.vertical-awl .l-vertical__prompt.vertical__prompt {
  margin: 0 0 0 1%;
  width: 98%;
  color: #999;
  text-align: center;
}
.page-node-71530.node-type-vertical .home__main,
.vertical-awl.node-type-vertical .home__main {
  margin-top: 0;
}
.page-node-71530 .view-vertical-list-tabs .field-terms-sections,
.vertical-awl .view-vertical-list-tabs .field-terms-sections {
  display: none;
}

.pane-menu__awl {
  padding: 15px 0;
}
.pane-menu__awl h2 {
  font-size: 15px;
  color: #999;
  font-style: italic;
  line-height: 5px;
  margin: 10px 0;
}
.pane-menu__awl ul {
  margin: 0;
  padding: 0;
}
.pane-menu__awl ul li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.pane-menu__awl ul li:nth-child(even) {
  background: #222;
}
.pane-menu__awl ul li:nth-child(odd) {
  background: #333;
}
.pane-menu__awl ul a {
  padding: 5px 0;
  display: block;
  width: 100%;
  color: #96c93e;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
}
.pane-menu__awl ul a:hover, .pane-menu__awl ul a:active {
  background: #444;
}
.pane-menu__awl ul a i {
  font-size: 22px;
  line-height: 24px;
  vertical-align: middle;
}
@media (min-width: 660px) {
  .pane-menu__awl h2 {
    display: inline-block;
    font-size: 14px;
  }
  .pane-menu__awl ul {
    display: inline-block;
  }
  .pane-menu__awl ul li {
    display: inline-block;
  }
  .pane-menu__awl ul li:nth-child(even), .pane-menu__awl ul li:nth-child(odd) {
    background: none;
  }
  .pane-menu__awl ul a {
    width: auto;
    display: inline-block;
    padding: 0 10px;
    vertical-align: middle;
  }
  .pane-menu__awl ul a:hover {
    background: none;
    color: #fff;
  }
  .pane-menu__awl ul a span {
    display: none;
  }
}

.pane-menu-menu-awl-follow-menu {
  padding-top: 202px;
}
@media (min-width: 660px) {
  .pane-menu-menu-awl-follow-menu {
    padding: 195px 0 0 15px;
  }
  .pane-menu-menu-awl-follow-menu ul li a {
    padding: 0 5px 0 0;
  }
  .pane-menu-menu-awl-follow-menu h2 {
    display: none;
  }
}
@media (min-width: 1075px) {
  .pane-menu-menu-awl-follow-menu {
    padding: 195px 15px 15px;
    float: right;
  }
}
@media (min-width: 1120px) {
  .pane-menu-menu-awl-follow-menu h2 {
    display: inline-block;
    margin-right: 5px;
    vertical-align: middle;
    font-weight: normal;
  }
}

@media (min-width: 660px) {
  .pane-menu-menu-across-women-s-lives-menu h2 {
    display: none;
  }
}
@media (min-width: 1075px) {
  .pane-menu-menu-across-women-s-lives-menu {
    padding-top: 195px;
    float: left;
  }
}
@media (min-width: 1120px) {
  .pane-menu-menu-across-women-s-lives-menu h2 {
    display: inline-block;
    vertical-align: middle;
    font-weight: normal;
  }
}

.node-type-video-gallery .home__featured,
.node-type-video-gallery .home__main .feature-divider {
  display: none;
}

.home__secondary .pane-video-gallery {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 300px;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2em;
  padding-bottom: 2em;
}
@media (min-width: 721px) {
  .home__secondary .pane-video-gallery {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.view-video-gallery .views-row {
  width: 96%;
  float: left;
  margin-left: 2%;
  margin-right: 2%;
  margin-bottom: 2em;
}
@media (min-width: 721px) {
  .view-video-gallery .views-row {
    width: 49%;
    margin-left: 0;
    margin-right: 1%;
    margin-bottom: 1em;
    min-height: 370px;
  }
}
@media (min-width: 1000px) {
  .view-video-gallery .views-row {
    width: 32%;
    min-height: 400px;
  }
}

@media (min-width: 721px) {
  .video__featured .views-row-first {
    width: 99%;
  }
}
@media (min-width: 1000px) {
  .video__featured .views-row-first {
    width: 32%;
  }
}

/**
 * @file
 * Watermark.
 *
 * Make the element appear beneath sibling elements, like a watermark.
 */
.unpublished {
  height: 0;
  overflow: visible;
}

.unpublished {
  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;
  word-wrap: break-word;
}

/**
 * @file
 * WYSIWYG linebreaks.
 */
/* Remove CKEditor/TinyMCE toolbar button from Wysiwyg Editor toolbars. */
.cke_wrapper .cke_toolgroup .cke_button .cke_button_linebreaks,
.text-format-wrapper .wysiwygToolbar .mce_linebreaks {
  display: none;
}

.page-user-me-edit .tabs-secondary,
.page-user-me-message-subscribe .tabs-secondary {
  display: none;
}

.section-user .tabs-primary {
  display: none;
}
@media (min-width: 768px) {
  .section-user .l-general__featured {
    float: left;
    width: 25%;
    margin-left: 0%;
    margin-right: -100%;
    padding: 0 0 0 20px;
    margin: 1em 0;
  }
}
@media (min-width: 768px) {
  .section-user .l-general__full {
    float: right;
    width: 75%;
    margin-right: 0%;
    margin-left: -100%;
    clear: none;
    background: #fff;
    margin-top: 1em;
    min-height: 300px;
  }
}

.pane-menu-menu-user-pages-menu {
  background: #fff;
}
.pane-menu-menu-user-pages-menu ul {
  margin: 1em 0 0;
  padding: 0;
}
.pane-menu-menu-user-pages-menu ul li {
  margin: 0;
  padding: 0px;
  list-style-type: none;
  border-bottom: 1px solid #fff;
  background: #eee;
  display: block;
}
.pane-menu-menu-user-pages-menu ul li.first {
  border-top: 1px solid #fff;
}
.pane-menu-menu-user-pages-menu ul li.active-trail {
  border-right: none;
  border-bottom: 1px solid #ddd;
  background: #fff;
}
.pane-menu-menu-user-pages-menu ul li.first.active-trail {
  border-top: 1px solid #ddd;
}
.pane-menu-menu-user-pages-menu ul li a {
  padding: 10px;
  display: block;
  width: 90%;
  font-weight: bold;
  font-size: .875em;
}

#campaignmonitor-user-form label {
  font-size: 1.5em;
  margin: 1em 0;
}
#campaignmonitor-user-form .description {
  font-style: italic;
  margin: 1em 0;
  display: block;
  width: 100%;
  text-align: center;
  display: none;
}
#campaignmonitor-user-form #edit-lists {
  display: block;
  background: #fff;
  margin: .5em 0;
}
#campaignmonitor-user-form #edit-lists .form-item {
  display: block;
  padding: 1%;
  border-bottom: 1px dotted #ddd;
}
#campaignmonitor-user-form #edit-lists .form-item:first-child {
  border-top: 1px dotted #ddd;
}
#campaignmonitor-user-form #edit-lists .form-item:nth-child(odd) {
  background: #f5f5f5;
}
#campaignmonitor-user-form #edit-lists .form-item input, #campaignmonitor-user-form #edit-lists .form-item label {
  display: inline;
  font-weight: normal;
  font-size: .875em;
}
#campaignmonitor-user-form .form-submit {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #4188bc;
  color: white;
  margin-top: 12px;
  margin-bottom: 12px;
  line-height: 60px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
  border: none;
  font-weight: normal;
  padding: 0;
}
#campaignmonitor-user-form .form-submit:hover, #campaignmonitor-user-form .form-submit:active, #campaignmonitor-user-form .form-submit.is-active {
  background: #d3401e;
}

.view-following-story-creators tr,
.view-following-story-sections tr {
  border-bottom: 1px dotted #ddd;
  font-size: .875em;
  font-weight: bold;
}
.view-following-story-creators tr.views-row-first,
.view-following-story-sections tr.views-row-first {
  border-top: 1px dotted #ddd;
}
.view-following-story-creators tr.odd,
.view-following-story-sections tr.odd {
  background: #f5f5f5;
}
.view-following-story-creators tr td,
.view-following-story-sections tr td {
  padding: 1%;
}
.view-following-story-creators tr td.views-field-ops,
.view-following-story-sections tr td.views-field-ops {
  width: 60%;
}
.view-following-story-creators tr td.views-field-ops .flag-wrapper .flag-message,
.view-following-story-sections tr td.views-field-ops .flag-wrapper .flag-message {
  font-size: .875em;
}

/**
 * @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. */
  a:link,
  a:visited {
    text-decoration: underline !important;
    /* Don't underline header. */
  }
  a:link.header--site-link,
  a:visited.header--site-link {
    text-decoration: none !important;
  }

  #content {
    /* Add visible URL after links. */
    /* Only display useful links. */
    /* Add visible title after abbreviations. */
  }
  #content a[href]:after {
    content: " (" attr(href) ")";
    font-weight: normal;
    font-size: 18px;
  }
  #content a[href^="javascript:"]:after,
  #content a[href^="#"]:after {
    content: "";
  }
  #content abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* Un-float the content. */
  #content {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Turn off any background colors or images. */
  body,
  #page,
  #main,
  #content {
    color: #000;
    background-color: transparent !important;
    background-image: none !important;
  }

  /* Hide sidebars and nav elements. */
  #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;
  }
}
