@charset "UTF-8";
/*------------------------------------*\
    INUIT.CSS
\*------------------------------------*/
/**
 *
 * inuitcss.com -- @inuitcss -- @csswizardry
 *
 */
/**
 * inuit.css acts as a base stylesheet which you should extend with your own
 * theme stylesheet.
 *
 * inuit.css aims to do the heavy lifting; sorting objects and abstractions,
 * design patterns and fiddly bits of CSS, whilst leaving as much design as
 * possible to you. inuit.css is the scaffolding to your decorator.
 *
 * This stylesheet is heavily documented and contains lots of comments, please
 * take care to read and refer to them as you build. For further support please
 * tweet at @inuitcss.
 *
 * Owing to the amount of comments please only ever use minified CSS in
 * production. This file is purely a dev document.
 *
 * The table of contents below maps to section titles of the same name, to jump
 * to any section simply run a find for $[SECTION-TITLE].
 *
 * Most objects and abstractions come with a chunk of markup that you should be
 * able to paste into any view to quickly see how the CSS works in conjunction
 * with the correct HTML.
 *
 * inuit.css is written to this standard: github.com/csswizardry/CSS-Guidelines
 *
 * LICENSE
 *
 * Copyright 2013 Harry Roberts
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * Thank you for choosing inuit.css. May your web fonts render perfectly.
 */
/*------------------------------------*\
    $CONTENTS
\*------------------------------------*/
/**
 * CONTENTS............YouΓÇÖre reading it!
 * WARNING.............Here be dragons!
 * IMPORTS.............Begin importing the sections below
 *
 * MIXINS..............Super-simple Sass stuff
 * NORMALIZE...........normalize.css
 * RESET...............Set some defaults
 * CLEARFIX............
 * SHARED..............Shared declarations
 *
 * MAIN................High-level elements like `html`, `body`, etc.
 * HEADINGS............Double-stranded heading hierarchy
 * PARAGRAPHS..........
 * SMALLPRINT..........Smaller text elements like `small`
 * QUOTES..............
 * CODE................
 * LISTS...............
 * IMAGES..............
 * TABLES..............
 * FORMS...............
 *
 * GRIDS...............Fluid, proportional and nestable grids
 * FLEXBOX.............Crudely emulate flexbox
 * COLUMNS.............CSS3 columns
 * NAV.................A simple abstraction to put a list in horizontal nav mode
 * OPTIONS.............Grouped nav items
 * PAGINATION..........Very stripped back, basic paginator
 * BREADCRUMB..........Simple breadcrumb trail object
 * MEDIA...............Media object
 * MARGINALIA..........Simple marginalia content
 * ISLAND..............Boxed off content
 * BLOCK-LIST..........Blocky lists of content
 * MATRIX..............Gridded lists
 * SPLIT...............A simple split-in-two object
 * THIS-OR-THIS........Options object
 * LINK-COMPLEX........
 * FLYOUT..............Flyout-on-hover object
 * ARROWS..............CSS arrows
 * SPRITE..............Generic spriting element
 * ICON-TEXT...........Icon and text couplings
 * BEAUTONS............Use the beautons micro library
 * LOZENGES............Basic lozenge styles
 * RULES...............Horizontal rules
 * STATS...............Simple stats object
 * GREYBOX.............Wireframing styles
 *
 * WIDTHS..............Width classes for use alongside the grid system etc.
 * PUSH................Push classes for manipulating grids
 * PULL................Pull classes for manipulating grids
 * BRAND...............Helper class to apply brand treatment to elements
 * HELPER..............A series of helper classes to use arbitrarily
 * DEBUG...............Enable to add visual flags for debugging purposes
 */
/*------------------------------------*\
    $WARNING
\*------------------------------------*/
/*
 * inuit.css, being an OO framework, works in keeping with the open/closed
 * principle. The variables you set previously are now being used throughout
 * inuit.css to style everything we need for a base. Any custom styles SHOULD
 * NOT be added or modified in inuit.css directly, but added via your theme
 * stylesheet as per the open/closed principle:
 *
 * csswizardry.com/2012/06/the-open-closed-principle-applied-to-css
 *
 * Try not to edit any CSS beyond this point; if you find you need to do so
 * it is a failing of the framework so please tweet at @inuitcss.
 */
/*------------------------------------*\
    $IMPORTS
\*------------------------------------*/
/**
 * Generic utility styles etc.
 */
/*------------------------------------*\
    $DEFAULTS
\*------------------------------------*/
/**
 * inuit.cssΓÇÖ default variables. Redefine these in your `_vars.scss` file (found
 * in the inuit.css-web-template) to override them.
 */
/*------------------------------------*\
    $DEBUG
\*------------------------------------*/
/**
 * Debug mode will visually highlight any potential markup/accessibility quirks
 * in the browser. Set to `true` or `false`.
 */
/*------------------------------------*\
    $BORDER-BOX
\*------------------------------------*/
/**
 * Do you want all elements to adopt `box-sizing:border-box;` as per
 * paulirish.com/2012/box-sizing-border-box-ftw ?
 */
/*------------------------------------*\
    $BASE
\*------------------------------------*/
/**
 * Base stuff
 */
/**
 * Base font-family. 
 */
/**
 * Default colour for objectsΓÇÖ borders etc.
 */
/*------------------------------------*\
    $RESPONSIVE
\*------------------------------------*/
/**
 * Responsiveness?
 */
/**
 * Responsiveness for widescreen/high resolution desktop monitors and beyond?
 * Note: `$responsive` variable above must be set to true before enabling this.
 */
/**
 * Responsive push and pull produce a LOT of code, only turn them on if you
 * definitely need them.
 */
/**
 * Note: `$push` variable above must be set to true before enabling these.
 */
/**
 * Note: `$pull` variable above must be set to true before enabling these.
 */
/**
 * Tell inuit.css when breakpoints start.
 */
/*------------------------------------*\
    $FONT-SIZES
\*------------------------------------*/
/**
 * Font-sizes (in pixels). Refer to relevant sections for their implementations.
 */
/*------------------------------------*\
    $QUOTES
\*------------------------------------*/
/**
 * English quote marks?
 */
/**
 * If you want English quotes then please do not edit these; theyΓÇÖre only here
 * because Sass needs them.
 */
/**
 * If you need non-English quotes, please alter the following values accordingly:
 */
/*------------------------------------*\
    $BRAND
\*------------------------------------*/
/**
 * Brand stuff
 */
/**
 * How big would you like round corners to be by default?
 */
/*------------------------------------*\
    $OBJECTS AND ABSTRACTIONS
\*------------------------------------*/
/**
 * Which objects and abstractions would you like to use?
 */
/*------------------------------------*\
    $FRAMEWORK
\*------------------------------------*/
/**
 * inuit.css will work these next ones out for use within the framework.
 *
 * Assign our `$base-line-height` to a new spacing var for more transparency.
 */
/*------------------------------------*\
    $MIXINS
\*------------------------------------*/
/**
 * Create a fully formed type style (sizing and vertical rhythm) by passing in a
 * single value, e.g.:
 *
   `@include font-size(10px);`
 *
 * Thanks to @redclov3r for the `line-height` Sass:
 * twitter.com/redclov3r/status/250301539321798657
 */
/**
 * Style any number of headings in one fell swoop, e.g.:
 *
   .foo{
       @include headings(1, 3){
           color:#BADA55;
       }
    }
 *
 * With thanks to @lar_zzz, @paranoida and @rowanmanning for refining and
 * improving my initial mixin.
 */
/**
 * Create vendor-prefixed CSS in one go, e.g.
 *
   `@include vendor(border-radius, 4px);`
 *
 */
/**
 * Create CSS keyframe animations for all vendors in one go, e.g.:
 *
   .foo{
       @include vendor(animation, shrink 3s);
   }

   @include keyframe(shrink){
       from{
           font-size:5em;
       }
   }
 *
 * Courtesy of @integralist: twitter.com/integralist/status/260484115315437569
 */
/**
 * Force overly long spans of text to truncate, e.g.:
 *
   `@include truncate(100%);`
 *
 * Where `$truncation-boundary` is a united measurement.
 */
/**
 * CSS arrows!!! But... before you read on, you might want to grab a coffee...
 *
 * This mixin creates a CSS arrow on a given element. We can have the arrow
 * appear in one of 12 locations, thus:
 *
 *       01    02    03
 *    +------------------+
 * 12 |                  | 04
 *    |                  |
 * 11 |                  | 05
 *    |                  |
 * 10 |                  | 06
 *    +------------------+
 *       09    08    07
 *
 * You pass this position in along with a desired arrow color and optional
 * border color, for example:
 *
 * `@include arrow(top, left, red)`
 *
 * for just a single, red arrow, or:
 *
 * `@include arrow(bottom, center, red, black)`
 *
 * which will create a red triangle with a black border which sits at the bottom
 * center of the element. Call the mixin thus:
 *
   .foo{
       background-color:#BADA55;
       border:1px solid #ACE;
       @include arrow(top, left, #BADA55, #ACE);
   }
 *
 */
/**
 * Media query mixin.
 *
 * ItΓÇÖs not great practice to define solid breakpoints up-front, preferring to
 * modify your design when it needs it, rather than assuming youΓÇÖll want a
 * change at ΓÇÿmobileΓÇÖ. However, as inuit.css is required to take a hands off
 * approach to design decisions, this is the closest we can get to baked-in
 * responsiveness. ItΓÇÖs flexible enough to allow you to set your own breakpoints
 * but solid enough to be frameworkified.
 *
 * We define some broad breakpoints in our vars file that are picked up here
 * for use in a simple media query mixin. Our options are:
 *
 * palm
 * lap
 * lap-and-up
 * portable
 * desk
 * desk-wide
 *
 * Not using a media query will, naturally, serve styles to all devices.
 *
 * `@include media-query(palm){ [styles here] }`
 *
 * We work out your end points for you:
 */
/* normalize.css v2.1.0 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
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
   ========================================================================== */
/*
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */ }

/*
 * Remove default margin.
 */
body {
  margin: 0; }

/* ==========================================================================
   Links
   ========================================================================== */
/*
 * 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
   ========================================================================== */
/*
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/*
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/*
 * 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 {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 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 {
  font-family: monospace, serif;
  font-size: 1em; }

/*
 * 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; }

/* ==========================================================================
   Embedded content
   ========================================================================== */
/*
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0; }

/*
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden; }

/* ==========================================================================
   Figures
   ========================================================================== */
/*
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0; }

/* ==========================================================================
   Forms
   ========================================================================== */
/*
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/*
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
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.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */ }

/*
 * 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.
 */
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.
 */
input[type="checkbox"],
input[type="radio"] {
  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 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/*
 * 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 */ }

/* ==========================================================================
   Tables
   ========================================================================== */
/*
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

/*------------------------------------*\
    $RESET
\*------------------------------------*/
/**
 * A more considered reset; more of a restart...
 * As per: csswizardry.com/2011/10/reset-restarted
 */
/**
* LetΓÇÖs make the box model all nice, shall we...?
*/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; }

/**
 * The usual...
 */
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dd, ol, ul,
form, fieldset, legend,
table, th, td, caption,
hr {
  margin: 0;
  padding: 0; }

/**
 * Give a help cursor to elements that give extra info on `:hover`.
 */
abbr[title], dfn[title] {
  cursor: help; }

/**
 * Remove underlines from potentially troublesome elements.
 */
u, ins {
  text-decoration: none; }

/**
 * Apply faux underline via `border-bottom`.
 */
ins {
  border-bottom: 1px solid; }

/**
 * So that `alt` text is visually offset if images donΓÇÖt load.
 */
img {
  font-style: italic; }

/**
 * Give form elements some cursor interactions...
 */
label,
input,
textarea,
button,
select,
option {
  cursor: pointer; }

.text-input:active,
.text-input:focus,
textarea:active,
textarea:focus {
  cursor: text;
  outline: none; }

/*------------------------------------*\
    $CLEARFIX
\*------------------------------------*/
/**
 * Micro clearfix, as per: css-101.org/articles/clearfix/latest-new-clearfix-so-far.php
 * Extend the clearfix class with Sass to avoid the `.cf` class appearing over
 * and over in your markup.
 */
.cf:after, .nav:after, .category-nav:after, .photo-gallery .slider:after, .archive .recent ul:after, .archive .months ul:after, .archive .quarters ul:after, .archive .years ul:after, .media-links:after, .media-thumbnails:after, .downloads ul:after, footer .links:after, .link-list:after, .social-list:after, .matrix:after, .search-result--table ul:after, .search-result--videos ul:after, .media-type-filter:after, .multi-list:after, .reading-page:after, .media-assets:after {
  content: "";
  display: table;
  clear: both; }

/*------------------------------------*\
    $SHARED
\*------------------------------------*/
/**
 * Where `margin-bottom` is concerned, this value will be the same as the
 * base line-height. This allows us to keep a consistent vertical rhythm.
 * As per: csswizardry.com/2012/06/single-direction-margin-declarations
 */
/**
 * Base elements
 */
h1, h2, h3, h4, h5, h6, hgroup,
ul, ol, dl,
blockquote, p, address,
table,
fieldset, figure,
pre,
.form-fields > li,
.media,
.island,
.islet {
  margin-bottom: 5px;
  margin-bottom: 0.3125rem; }
  .islet h1, .islet h2, .islet h3, .islet h4, .islet h5, .islet h6, .islet hgroup, .islet
  ul, .islet ol, .islet dl, .islet
  blockquote, .islet p, .islet address, .islet
  table, .islet
  fieldset, .islet figure, .islet
  pre, .islet .form-fields > li, .islet
  .media, .islet
  .island, .islet
  .islet {
    margin-bottom: 2.5px;
    margin-bottom: 0.15625rem; }

/**
 * Doubled up `margin-bottom` helper class.
 */
.landmark {
  margin-bottom: 10px;
  margin-bottom: 0.625rem; }

/**
 * `hr` elements only take up a few pixels, so we need to give them special
 * treatment regarding vertical rhythm.
 */
hr {
  margin-bottom: 3px;
  margin-bottom: 0.1875rem; }

/**
 * Where `margin-left` is concerned we want to try and indent certain elements
 * by a consistent amount. Define that amount once, here.
 */
ul, ol, dd {
  margin-left: 10px;
  margin-left: 0.625rem; }

/**
 * Base styles; unclassed HTML elements etc.
 */
/*------------------------------------*\
    $MAIN
\*------------------------------------*/
html {
  font: 1em/1.5 sans-serif; }

body {
  overflow-y: scroll;
  min-height: 100%; }

/*------------------------------------*\
    $HEADINGS
\*------------------------------------*/
/**
 * As per: csswizardry.com/2012/02/pragmatic-practical-font-sizing-in-css
 *
 * When we define a heading we also define a corresponding class to go with it.
 * This allows us to apply, say, `class=alpha` to a `h3`; a double-stranded
 * heading hierarchy.
 */
h1, .alpha, .milestone .content .title {
  font-size: 60px;
  font-size: 3.75rem;
  line-height: 1.2; }

h2, .beta, .search-controls .title, .reading-page .title, .media-assets .title, .media .title, .about-authors .title {
  font-size: 48px;
  font-size: 3rem;
  line-height: 1; }

h3, .gamma, .gallery-tile .title, .trending .title, .sidebar .title, .pagenotfound .title, .maintenance .title, .main-gallery .title, .main-video-gallery .title, .article blockquote {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.5; }

h4, .delta, .search-controls .result-count, .welcome-contact .welcome, .search-result .title, .return-to-main {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1; }

h5, .epsilon, .welcome-contact .contact .title {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.33333; }

h6, .zeta, .search-result--videos ul li .title, .search-result--videos ul li .link {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2; }

/**
 * Heading groups and generic any-heading class.
 * To target any heading of any level simply apply a class of `.hN`, e.g.:
 *
   <hgroup>
       <h1 class=hN>inuit.css</h1>
       <h2 class=hN>Best. Framework. Ever!</h2>
   </hgroup>
 *
 */
hgroup .hN {
  margin-bottom: 0; }

/**
 * A series of classes for setting massive type; for use in heroes, mastheads,
 * promos, etc.
 */
.giga {
  font-size: 96px;
  font-size: 6rem;
  line-height: 1; }

.mega {
  font-size: 72px;
  font-size: 4.5rem;
  line-height: 1; }

.kilo {
  font-size: 48px;
  font-size: 3rem;
  line-height: 1; }

/*------------------------------------*\
    $PARAGRAPHS
\*------------------------------------*/
/**
 * The `.lede` class is used to make the introductory text (usually a paragraph)
 * of a document slightly larger.
 */
.lede,
.lead {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.33333; }

/*------------------------------------*\
    $SMALLPRINT
\*------------------------------------*/
/**
 * A series of classes for setting tiny type; for use in smallprint etc.
 */
.smallprint,
.milli {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2; }

.micro {
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 2.4; }

/*------------------------------------*\
    $QUOTES
\*------------------------------------*/
/**
 * If English quotes are set in `_vars.scss`, define them here.
 */
/**
 * Big up @boblet: html5doctor.com/blockquote-q-cite
 */
/**
 * Inline quotes.
 */
q {
  quotes: "\201C" "\201D"; }
  q:before {
    content: "ΓÇÿ";
    content: open-quote; }
  q:after {
    content: "ΓÇÖ";
    content: close-quote; }
  q q:before {
    content: "ΓÇ£";
    content: open-quote; }
  q q:after {
    content: "ΓÇ¥";
    content: close-quote; }

blockquote {
  quotes: "\201C" "\201D"; }
  blockquote p:before {
    content: "\201C";
    content: open-quote; }
  blockquote p:after {
    content: "";
    content: no-close-quote; }
  blockquote p:last-of-type:after {
    content: "\201D";
    content: close-quote; }
  blockquote q:before {
    content: "ΓÇÿ";
    content: open-quote; }
  blockquote q:after {
    content: "ΓÇÖ";
    content: close-quote; }

/**
 *
   <blockquote>
       <p>Insanity: doing the same thing over and over again and expecting
       different results.</p>
       <b class=source>Albert Einstein</b>
   </blockquote>
 *
 */
blockquote {
  /**
   * .4em is roughly equal to the width of the opening ΓÇ£ that we wish to hang.
   */
  text-indent: -0.41em; }
  blockquote p:last-of-type {
    margin-bottom: 0; }

.source {
  display: block;
  text-indent: 0; }
  .source:before {
    content: "ΓÇö"; }

/*------------------------------------*\
    $CODE
\*------------------------------------*/
/**
 * Use an explicit font stack to ensure browsers render correct `line-height`.
 */
pre {
  overflow: auto; }

pre mark {
  background: none;
  border-bottom: 1px solid;
  color: inherit; }

/**
 * Add comments to your code examples, e.g.:
 *
   <code>&lt;/div&gt;<span class=code-comment>&lt;!-- /wrapper --&gt;</span></code>
 *
 */
.code-comment {
  /**
   * Override this setting in your theme stylesheet
   */
  opacity: 0.75;
  filter: alpha(opacity=75); }

/**
 * You can add line numbers to your code examples but be warned, it requires
 * some pretty funky looking markup, e.g.:
 *
   <ol class=line-numbers>
       <li><code>.nav{</code></li>
       <li><code>    list-style:none;</code></li>
       <li><code>    margin-left:0;</code></li>
       <li><code>}</code></li>
       <li><code>    .nav > li,</code></li>
       <li><code>        .nav > li > a{</code></li>
       <li><code>            display:inline-block;</code></li>
       <li><code>           *display:inline-block;</code></li>
       <li><code>            zoom:1;</code></li>
       <li><code>        }</code></li>
   </ol>
 *
 * 1. Make the list look like code.
 * 2. Give the list flush numbers with a leading zero.
 * 3. Make sure lines of code donΓÇÖt wrap.
 * 4. Give the code form by forcing the `code` to honour white-space.
 */
.line-numbers {
  font-family: monospace, serif;
  /* [1] */
  list-style: decimal-leading-zero inside;
  /* [2] */
  white-space: nowrap;
  /* [3] */
  overflow: auto;
  /* [3] */
  margin-left: 0; }

.line-numbers code {
  white-space: pre;
  /* [4] */ }

/*------------------------------------*\
    $IMAGES
\*------------------------------------*/
/**
 * Demo: jsfiddle.net/inuitcss/yMtur
 */
/**
 * Fluid images.
 */
img {
  max-width: 100%; }

/**
 * Non-fluid images if you specify `width` and/or `height` attributes.
 */
img[width],
img[height] {
  max-width: none; }

/**
 * Rounded images.
 */
.img--round {
  border-radius: 0; }

/**
 * Image placement variations.
 */
.img--right {
  float: right;
  margin-bottom: 5px;
  margin-left: 5px; }

.img--left {
  float: left;
  margin-right: 5px;
  margin-bottom: 5px; }

.img--center {
  display: block;
  margin-right: auto;
  margin-bottom: 5px;
  margin-left: auto; }

/**
 * Keep your images on your baseline.
 *
 * Please note, these will not work too nicely with fluid images and will
 * distort when resized below a certain width. Use with caution.
 */
.img--short {
  height: 25px; }

.img--medium {
  height: 50px; }

.img--tall {
  height: 75px; }

/**
 * Images in `figure` elements.
 */
figure > img {
  display: block; }

/*------------------------------------*\
    $LISTS
\*------------------------------------*/
/**
 * Remove vertical spacing from nested lists.
 */
li > ul,
li > ol {
  margin-bottom: 0; }

/**
 * Have a numbered `ul` without the semantics implied by using an `ol`.
 */
/*ul*/
.numbered-list {
  list-style-type: decimal; }

/*------------------------------------*\
    $TABLES
\*------------------------------------*/
/**
 * We have a lot at our disposal for making very complex table constructs, e.g.:
 *
   <table class="table--bordered  table--striped  table--data">
       <colgroup>
           <col class=t10>
           <col class=t10>
           <col class=t10>
           <col>
       </colgroup>
       <thead>
           <tr>
               <th colspan=3>Foo</th>
               <th>Bar</th>
           </tr>
           <tr>
               <th>Lorem</th>
               <th>Ipsum</th>
               <th class=numerical>Dolor</th>
               <th>Sit</th>
           </tr>
       </thead>
       <tbody>
           <tr>
               <th rowspan=3>Sit</th>
               <td>Dolor</td>
               <td class=numerical>03.788</td>
               <td>Lorem</td>
           </tr>
           <tr>
               <td>Dolor</td>
               <td class=numerical>32.210</td>
               <td>Lorem</td>
           </tr>
           <tr>
               <td>Dolor</td>
               <td class=numerical>47.797</td>
               <td>Lorem</td>
           </tr>
           <tr>
               <th rowspan=2>Sit</th>
               <td>Dolor</td>
               <td class=numerical>09.640</td>
               <td>Lorem</td>
           </tr>
           <tr>
               <td>Dolor</td>
               <td class=numerical>12.117</td>
               <td>Lorem</td>
           </tr>
       </tbody>
   </table>
 *
 */
table {
  width: 100%; }

th,
td {
  padding: 1.25px;
  text-align: left; }
  @media screen and (min-width: 480px) {
    th,
    td {
      padding: 2.5px; } }

/**
 * Cell alignments
 */
[colspan] {
  text-align: center; }

[colspan="1"] {
  text-align: left; }

[rowspan] {
  vertical-align: middle; }

[rowspan="1"] {
  vertical-align: top; }

.numerical {
  text-align: right; }

/**
 * In the HTML above we see several `col` elements with classes whose numbers
 * represent a percentage width for that column. We leave one column free of a
 * class so that column can soak up the effects of any accidental breakage in
 * the table.
 */
.t5 {
  width: 5%; }

.t10 {
  width: 10%; }

.t12 {
  width: 12.5%; }

/* 1/8 */
.t15 {
  width: 15%; }

.t20 {
  width: 20%; }

.t25 {
  width: 25%; }

/* 1/4 */
.t30 {
  width: 30%; }

.t33 {
  width: 33.333%; }

/* 1/3 */
.t35 {
  width: 35%; }

.t37 {
  width: 37.5%; }

/* 3/8 */
.t40 {
  width: 40%; }

.t45 {
  width: 45%; }

.t50 {
  width: 50%; }

/* 1/2 */
.t55 {
  width: 55%; }

.t60 {
  width: 60%; }

.t62 {
  width: 62.5%; }

/* 5/8 */
.t65 {
  width: 65%; }

.t66 {
  width: 66.666%; }

/* 2/3 */
.t70 {
  width: 70%; }

.t75 {
  width: 75%; }

/* 3/4*/
.t80 {
  width: 80%; }

.t85 {
  width: 85%; }

.t87 {
  width: 87.5%; }

/* 7/8 */
.t90 {
  width: 90%; }

.t95 {
  width: 95%; }

/**
 * Bordered tables
 */
.table--bordered th,
.table--bordered td {
  border: 1px solid transparent; }
  .table--bordered th:empty,
  .table--bordered td:empty {
    border: none; }
.table--bordered thead tr:last-child th {
  border-bottom-width: 2px; }
.table--bordered tbody tr th:last-of-type {
  border-right-width: 2px; }

/**
 * Striped tables
 */
.table--striped tbody tr:nth-of-type(odd) {
  background-color: #ffc;
  /* Override this color in your theme stylesheet */ }

/**
 * Data table
 */
.table--data {
  font: 12px/1.5 sans-serif; }

/*------------------------------------*\
    $FORMS
\*------------------------------------*/
/**
 *
 * Demo: jsfiddle.net/inuitcss/MhHHU
 *
 */
fieldset {
  padding: 5px; }

/**
 * Text inputs
 *
 * Instead of a `[type]` selector for each kind of form input, we just use a
 * class to target any/every one, e.g.:
   <input type=text class=text-input>
   <input type=email class=text-input>
   <input type=password class=text-input>
 *
 */
.text-input,
textarea {
  /**
   * Style these via your theme stylesheet.
   */ }

/**
 * Group sets of form fields in a list, e.g.:
 *
   <ul class=form-fields>
       <li>
           <label />
           <input />
       </li>
       <li>
           <label />
           <select />
       </li>
       <li>
           <label />
           <input />
       </li>
   </ul>
 *
 */
.form-fields {
  list-style: none;
  margin: 0; }

.form-fields > li:last-child {
  margin-bottom: 0; }

/**
 * Labels
 *
 * Define a `.label` class as well as a `label` element. This means we can apply
 * label-like styling to meta-labels for groups of options where a `label`
 * element is not suitable, e.g.:
 *
   <li>
       <span class=label>Select an option below:</span>
       <ul class="multi-list  four-cols">
           <li>
               <input /> <label />
           </li>
           <li>
               <input /> <label />
           </li>
           <li>
               <input /> <label />
           </li>
           <li>
               <input /> <label />
           </li>
       </ul>
   </li>
 *
 */
label,
.label {
  display: block; }

/**
 * Extra help text in `label`s, e.g.:
 *
   <label>Card number <small class=additional>No spaces</small></label>
 *
 */
.additional {
  display: block;
  font-weight: normal; }

/*
 * Groups of checkboxes and radios, e.g.:
 *
   <li>
       <ul class=check-list>
           <li>
               <input /> <label />
           </li>
           <li>
               <input /> <label />
           </li>
       </ul>
   </li>
 *
 */
.check-list {
  list-style: none;
  margin: 0; }

/*
 * Labels in check-lists
 */
.check-label,
.check-list label,
.check-list .label {
  display: inline-block; }

/**
 * Spoken forms are for forms that read like spoken word, e.g.:
 *
   <li class=spoken-form>
       Hello, my <label for=spoken-name>name</label> is
       <input type=text class=text-input id=spoken-name>. My home
       <label for=country>country</label> is
       <select id=country>
           <option>UK</option>
           <option>US</option>
           <option>Other</option>
       </select>
   </li>
 *
 */
.spoken-form label {
  display: inline-block;
  font: inherit; }

/**
 * Extra help text displayed after a field when that field is in focus, e.g.:
 *
   <label for=email>Email:</label>
   <input type=email class=text-input id=email>
   <small class=extra-help>.edu emails only</small>
 *
 * We leave the help text in the document flow and merely set it to
 * `visibility:hidden;`. This means that it wonΓÇÖt interfere with anything once
 * it reappears.
 *
 */
/*small*/
.extra-help {
  display: inline-block;
  visibility: hidden; }

.text-input:active + .extra-help,
.text-input:focus + .extra-help {
  visibility: visible; }

/**
 * Objects and abstractions
 */
/*------------------------------------*\
    $GRIDS
\*------------------------------------*/
/**
 * Fluid and nestable grid system, e.g.:
 *
   <div class="grid">

       <div class="grid__item  one-third">
           <p>One third grid</p>
       </div><!--

    --><div class="grid__item  two-thirds">
           <p>Two thirds grid</p>
       </div><!--

    --><div class="grid__item  one-half">
           <p>One half grid</p>
       </div><!--

    --><div class="grid__item  one-quarter">
           <p>One quarter grid</p>
       </div><!--

    --><div class="grid__item  one-quarter">
           <p>One quarter grid</p>
       </div>

   </div>
 *
 * Demo: jsfiddle.net/inuitcss/CLYUC
 *
 */
/**
 * Grid wrapper
 */
.grid {
  margin-left: -5px;
  list-style: none;
  margin-bottom: 0; }

/**
 * Very infrequently occuring grid wrappers as children of grid wrappers.
 */
.grid > .grid {
  margin-left: 0; }

/**
 * Grid
 */
.grid__item {
  display: inline-block;
  width: 100%;
  padding-left: 5px;
  vertical-align: top; }

/*------------------------------------*\
    $FLEXBOX
\*------------------------------------*/
/**
 * Until we can utilise flexbox natively we can kinda, sorta, attempt to emulate
 * it, in a way... e.g.:
 *
   <header class=flexbox>

       <div class=flexbox__item>
           <b>Welcome to</b>
       </div>

       <div class=flexbox__item>
           <img src="//csswizardry.com/inuitcss/img/logo.jpg" alt="inuit.css">
       </div>

   </header>
 *
 * We can also combine our grid system classes with `.flexbox__item` classes,
 * e.g.:
 *
   <div class=flexbox>
       <div class="flexbox__item  one-quarter">
       </div>
       <div class="flexbox__item  three-quarters">
       </div>
   </div>
 *
 * ItΓÇÖs pretty poorly named IΓÇÖm afraid, but it works...
 *
 * Demo: jsfiddle.net/inuitcss/ufUh2
 *
 */
.flexbox, .trending .top-section ul, .trending .middle-section ul, .trending .bottom-section ul {
  display: table;
  width: 100%; }

/**
 * Nasty hack to circumvent Modernizr conflicts.
 */
html.flexbox {
  display: block;
  width: auto; }

.flexbox__item, .trending .top-section li, .trending .middle-section li, .trending .bottom-section li {
  display: table-cell;
  vertical-align: middle; }

/*------------------------------------*\
    $NAV
\*------------------------------------*/
/**
 * Nav abstraction as per: csswizardry.com/2011/09/the-nav-abstraction
 * When used on an `ol` or `ul`, this class throws the list into horizontal mode
 * e.g.:
 *
   <ul class=nav>
       <li><a href=#>Home</a></li>
       <li><a href=#>About</a></li>
       <li><a href=#>Portfolio</a></li>
       <li><a href=#>Contact</a></li>
   </ul>
 *
 * Demo: jsfiddle.net/inuitcss/Vnph4
 *
 */
.nav, .category-nav, .photo-gallery .slider, .archive .recent ul, .archive .months ul, .archive .quarters ul, .archive .years ul, .media-links, .media-thumbnails, .downloads ul, footer .links, .link-list, .social-list {
  list-style: none;
  margin-left: 0; }
  .nav > li, .category-nav > li, .photo-gallery .slider > li, .archive .recent ul > li, .archive .months ul > li, .archive .quarters ul > li, .archive .years ul > li, .media-links > li, .media-thumbnails > li, .downloads ul > li, footer .links > li, .link-list > li, .social-list > li,
  .nav > li > a,
  .category-nav > li > a,
  .photo-gallery .slider > li > a,
  .archive .recent ul > li > a,
  .archive .months ul > li > a,
  .archive .quarters ul > li > a,
  .archive .years ul > li > a,
  .media-links > li > a,
  .media-thumbnails > li > a,
  .downloads ul > li > a,
  footer .links > li > a,
  .link-list > li > a,
  .social-list > li > a {
    display: inline-block;
    *display: inline;
    zoom: 1; }

/**
 * `.nav--stacked` extends `.nav` and throws the list into vertical mode, e.g.:
 *
   <ul class="nav  nav--stacked">
       <li><a href=#>Home</a></li>
       <li><a href=#>About</a></li>
       <li><a href=#>Portfolio</a></li>
       <li><a href=#>Contact</a></li>
   </ul>
 *
 */
.nav--stacked > li, .archive .recent ul > li, .archive .months ul > li, .archive .quarters ul > li, .archive .years ul > li {
  display: list-item; }
  .nav--stacked > li > a, .archive .recent ul > li > a, .archive .months ul > li > a, .archive .quarters ul > li > a, .archive .years ul > li > a {
    display: block; }

/**
 * `.nav--banner` extends `.nav` and centres the list, e.g.:
 *
   <ul class="nav  nav--banner">
       <li><a href=#>Home</a></li>
       <li><a href=#>About</a></li>
       <li><a href=#>Portfolio</a></li>
       <li><a href=#>Contact</a></li>
   </ul>
 *
 */
.nav--banner {
  text-align: center; }

/**
 * Give nav links a big, blocky hit area. Extends `.nav`, e.g.:
 *
   <ul class="nav  nav--block">
       <li><a href=#>Home</a></li>
       <li><a href=#>About</a></li>
       <li><a href=#>Portfolio</a></li>
       <li><a href=#>Contact</a></li>
   </ul>
 *
 */
.nav--block {
  line-height: 1;
  /**
   * Remove whitespace caused by `inline-block`.
   */
  letter-spacing: -0.31em;
  word-spacing: -0.43em;
  white-space: nowrap; }
  .nav--block > li {
    letter-spacing: normal;
    word-spacing: normal; }
    .nav--block > li > a {
      padding: 2.5px; }

/**
 * Force a nav to occupy 100% of the available width of its parent. Extends
 * `.nav`, e.g.:
 *
   <ul class="nav  nav--fit">
       <li><a href=#>Home</a></li>
       <li><a href=#>About</a></li>
       <li><a href=#>Portfolio</a></li>
       <li><a href=#>Contact</a></li>
   </ul>
 *
 * Thanks to @pimpl for this idea!
 */
.nav--fit, .social-list {
  display: table;
  width: 100%; }
  .nav--fit > li, .social-list > li {
    display: table-cell; }
    .nav--fit > li > a, .social-list > li > a {
      display: block; }

/**
 * Make a list of keywords. Extends `.nav`, e.g.:
 *
   `<ul class="nav  nav--keywords>`
 *
 */
.nav--keywords > li:after {
  content: ", "; }
.nav--keywords > li:last-child:after {
  display: none; }

/*------------------------------------*\
    $BLOCK-LIST
\*------------------------------------*/
/**
 * Create big blocky lists of content, e.g.:
 *
   <ul class=block-list>
      <li>Foo</li>
      <li>Bar</li>
      <li>Baz</li>
      <li><a href=# class=block-list__link>Foo Bar Baz</a></li>
   </ul>
 *
 * Extend this object in your theme stylesheet.
 *
 * Demo: jsfiddle.net/inuitcss/hR57q
 *
 */
.block-list, .matrix, .search-result--table ul, .search-result--videos ul, .media-type-filter,
.block-list > li,
.matrix > li,
.search-result--table ul > li,
.search-result--videos ul > li,
.media-type-filter > li {
  border: 0 solid transparent; }

.block-list, .matrix, .search-result--table ul, .search-result--videos ul, .media-type-filter {
  list-style: none;
  margin-left: 0;
  border-top-width: 1px; }
  .block-list > li, .matrix > li, .search-result--table ul > li, .search-result--videos ul > li, .media-type-filter > li {
    border-bottom-width: 1px;
    padding: 2.5px; }

.block-list__link, .matrix__link {
  display: block;
  padding: 2.5px;
  margin: -2.5px; }

/*------------------------------------*\
    $MATRIX
\*------------------------------------*/
/**
 * Create a grid of items out of a single list, e.g.:
 *
   <ul class="matrix  three-cols">
       <li class=all-cols>Lorem</li>
       <li>Ipsum <a href=#>dolor</a></li>
       <li><a href=# class=matrix__link>Sit</a></li>
       <li>Amet</li>
       <li class=all-cols>Consectetuer</li>
   </ul>
 *
 * Extend this object in your theme stylesheet.
 *
 * Demo: jsfiddle.net/inuitcss/Y2zrU
 *
 */
.matrix, .search-result--table ul, .search-result--videos ul, .media-type-filter {
  border-left-width: 1px; }
  .matrix > li, .search-result--table ul > li, .search-result--videos ul > li, .media-type-filter > li {
    float: left;
    border-right-width: 1px; }

/**
 * The `.multi-list` object is a lot like the `.matrix` object only without the
 * blocky borders and padding.
 *
   <ul class="multi-list  four-cols">
       <li>Lorem</li>
       <li>Ipsum</li>
       <li>Dolor</li>
       <li>Sit</li>
   </ul>
 *
 * Demo: jsfiddle.net/inuitcss/Y2zrU
 *
 */
.multi-list {
  list-style: none;
  margin-left: 0; }

.multi-list > li {
  float: left; }

/**
 * Apply these classes alongside the `.matrix` or `.multi-list` classes on
 * lists to determine how wide their columns are.
 */
.two-cols > li, .search-result--table ul > li, .search-result--videos ul > li, .media-type-filter > li {
  width: 50%; }

.three-cols > li {
  width: 33.333%; }

.four-cols > li {
  width: 25%; }

.five-cols > li {
  width: 20%; }

/**
 * Unfortunately we have to qualify this selector in order to bring its
 * specificity above the `.[number]-cols > li` selectors above.
 */
.matrix > .all-cols, .search-result--table ul > .all-cols, .search-result--videos ul > .all-cols, .media-type-filter > .all-cols,
.multi-list > .all-cols {
  width: 100%; }

/**
 * Style trumps; helper and brand classes
 */
/*------------------------------------*\
    $WIDTHS
\*------------------------------------*/
/**
 * Sizes in human readable format. These are used in conjunction with other
 * objects and abstractions found in inuit.css, most commonly the grid system
 * and faux flexbox.
 *
 * We have a mixin to generate our widths and their breakpoint-specific
 * variations.
 */
/**
* Whole
*/
.one-whole {
  width: 100%; }

/**
* Halves
*/
.one-half, .two-quarters, .three-sixths, .four-eighths, .five-tenths, .six-twelfths {
  width: 50%; }

/**
* Thirds
*/
.one-third, .two-sixths, .four-twelfths {
  width: 33.333%; }

.two-thirds, .four-sixths, .eight-twelfths {
  width: 66.666%; }

/**
* Quarters
*/
.one-quarter, .two-eighths, .three-twelfths {
  width: 25%; }

.three-quarters, .six-eighths, .nine-twelfths {
  width: 75%; }

/**
* Fifths
*/
.one-fifth, .two-tenths {
  width: 20%; }

.two-fifths, .four-tenths {
  width: 40%; }

.three-fifths, .six-tenths {
  width: 60%; }

.four-fifths, .eight-tenths {
  width: 80%; }

/**
* Sixths
*/
.one-sixth, .two-twelfths {
  width: 16.666%; }

.five-sixths, .ten-twelfths {
  width: 83.333%; }

/**
* Eighths
*/
.one-eighth {
  width: 12.5%; }

.three-eighths {
  width: 37.5%; }

.five-eighths {
  width: 62.5%; }

.seven-eighths {
  width: 87.5%; }

/**
* Tenths
*/
.one-tenth {
  width: 10%; }

.three-tenths {
  width: 30%; }

.seven-tenths {
  width: 70%; }

.nine-tenths {
  width: 90%; }

/**
* Twelfths
*/
.one-twelfth {
  width: 8.333%; }

.five-twelfths {
  width: 41.666%; }

.seven-twelfths {
  width: 58.333%; }

.eleven-twelfths {
  width: 91.666%; }

/**
 * If you have set `$responsive` to ΓÇÿtrueΓÇÖ in `_vars.scss` then you now have
 * access to these classes. You can define at which breakpoint youΓÇÖd like an
 * element to be a certain size, e.g.:
 *
 * `<div class="g  one-quarter  lap-one-half  palm-one-whole"> ... </div>`
 *
 * This would create a `div` that, at ΓÇÿdesktopΓÇÖ sizes, takes up a quarter of the
 * horizontal space, a half of that space at ΓÇÿtabletΓÇÖ sizes, and goes full width
 * at ΓÇÿmobileΓÇÖ sizes.
 *
 * Demo: jsfiddle.net/inuitcss/WS4Ge
 *
 */
/* endif */
/*------------------------------------*\
    $PUSH
\*------------------------------------*/
/**
 * Push classes, to move grid items over to the right by certain amounts.
 */
/*------------------------------------*\
    $PULL
\*------------------------------------*/
/**
 * Pull classes, to move grid items over to the right by certain amounts.
 */
/*------------------------------------*\
    $BRAND
\*------------------------------------*/
/**
 * `.brand` is a quick and simple way to apply your brand face and/or color to
 * any element using a handy helper class.
 */
.brand {
  font-family: "Helvetica Neue", sans-serif!important;
  color: #4a8ec2!important; }

.brand-face {
  font-family: "Helvetica Neue", sans-serif!important; }

.brand-color,
.brand-colour {
  color: #4a8ec2!important; }

/*------------------------------------*\
    $HELPER
\*------------------------------------*/
/**
 * A series of helper classes to use arbitrarily. Only use a helper class if an
 * element/component doesnΓÇÖt already have a class to which you could apply this
 * styling, e.g. if you need to float `.main-nav` left then add `float:left;` to
 * that ruleset as opposed to adding the `.float--left` class to the markup.
 *
 * A lot of these classes carry `!important` as you will always want them to win
 * out over other selectors.
 */
/**
 * Add/remove floats
 */
.float--right {
  float: right !important; }

.float--left {
  float: left !important; }

.float--none {
  float: none !important; }

/**
 * Text alignment
 */
.text--left {
  text-align: left !important; }

.text--center {
  text-align: center !important; }

.text--right {
  text-align: right !important; }

/**
 * Font weights
 */
.weight--light {
  font-weight: 300 !important; }

.weight--normal {
  font-weight: 400 !important; }

.weight--semibold {
  font-weight: 600 !important; }

/**
 * Add/remove margins
 */
.push {
  margin: 5px !important; }

.push--top {
  margin-top: 5px !important; }

.push--right {
  margin-right: 5px !important; }

.push--bottom {
  margin-bottom: 5px !important; }

.push--left {
  margin-left: 5px !important; }

.push--ends {
  margin-top: 5px !important;
  margin-bottom: 5px !important; }

.push--sides {
  margin-right: 5px !important;
  margin-left: 5px !important; }

.push-half {
  margin: 2.5px !important; }

.push-half--top {
  margin-top: 2.5px !important; }

.push-half--right {
  margin-right: 2.5px !important; }

.push-half--bottom {
  margin-bottom: 2.5px !important; }

.push-half--left {
  margin-left: 2.5px !important; }

.push-half--ends {
  margin-top: 2.5px !important;
  margin-bottom: 2.5px !important; }

.push-half--sides {
  margin-right: 2.5px !important;
  margin-left: 2.5px !important; }

.flush {
  margin: 0 !important; }

.flush--top {
  margin-top: 0 !important; }

.flush--right {
  margin-right: 0 !important; }

.flush--bottom {
  margin-bottom: 0 !important; }

.flush--left {
  margin-left: 0 !important; }

.flush--ends {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

.flush--sides {
  margin-right: 0 !important;
  margin-left: 0 !important; }

/**
 * Add/remove paddings
 */
.soft {
  padding: 5px !important; }

.soft--top {
  padding-top: 5px !important; }

.soft--right {
  padding-right: 5px !important; }

.soft--bottom {
  padding-bottom: 5px !important; }

.soft--left {
  padding-left: 5px !important; }

.soft--ends {
  padding-top: 5px !important;
  padding-bottom: 5px !important; }

.soft--sides {
  padding-right: 5px !important;
  padding-left: 5px !important; }

.soft-half {
  padding: 2.5px !important; }

.soft-half--top {
  padding-top: 2.5px !important; }

.soft-half--right {
  padding-right: 2.5px !important; }

.soft-half--bottom {
  padding-bottom: 2.5px !important; }

.soft-half--left {
  padding-left: 2.5px !important; }

.soft-half--ends {
  padding-top: 2.5px !important;
  padding-bottom: 2.5px !important; }

.soft-half--sides {
  padding-right: 2.5px !important;
  padding-left: 2.5px !important; }

.hard {
  padding: 0 !important; }

.hard--top {
  padding-top: 0 !important; }

.hard--right {
  padding-right: 0 !important; }

.hard--bottom {
  padding-bottom: 0 !important; }

.hard--left {
  padding-left: 0 !important; }

.hard--ends {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

.hard--sides {
  padding-right: 0 !important;
  padding-left: 0 !important; }

/**
 * Pull items full width of `.island` parents.
 */
.full-bleed {
  margin-right: -5px !important;
  margin-left: -5px !important; }
  .islet .full-bleed {
    margin-right: -2.5px !important;
    margin-left: -2.5px !important; }

/**
 * Add a help cursor to any element that gives the user extra information on
 * `:hover`.
 */
.informative {
  cursor: help !important; }

/**
 * Mute an object by reducing its opacity.
 */
.muted {
  opacity: 0.5 !important;
  filter: alpha(opacity=50) !important; }

/**
 * Align items to the right where they imply progression/movement forward, e.g.:
 *
   <p class=proceed><a href=#>Read more...</a></p>
 *
 */
.proceed {
  text-align: right !important; }

/**
 * Add a right-angled quote to links that imply movement, e.g.:
 *
   <a href=# class=go>Read more</a>
 *
 */
.go:after {
  content: "\00A0┬╗" !important; }

/**
 * Apply capital case to an element (usually a `strong`).
 */
.caps {
  text-transform: uppercase !important; }

/**
 * Hide content off-screen without resorting to `display:none;`, also provide
 * breakpoint specific hidden elements.
 */
.accessibility,
.visuallyhidden {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important; }

/* endif */
.info-tile, .info-bite, .service-alert, .gallery-tile--sm {
  width: 300px;
  height: 300px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  float: right; }
  .info-tile .caption a:hover, .info-bite .caption a:hover, .service-alert .caption a:hover, .gallery-tile--sm .caption a:hover, .info-tile .caption--sub a:hover, .info-bite .caption--sub a:hover, .service-alert .caption--sub a:hover, .gallery-tile--sm .caption--sub a:hover, .info-tile .caption--dark a:hover, .info-bite .caption--dark a:hover, .service-alert .caption--dark a:hover, .gallery-tile--sm .caption--dark a:hover, .info-tile .media .show-more a:hover, .media .info-tile .show-more a:hover, .info-bite .media .show-more a:hover, .media .info-bite .show-more a:hover, .service-alert .media .show-more a:hover, .media .service-alert .show-more a:hover, .gallery-tile--sm .media .show-more a:hover, .media .gallery-tile--sm .show-more a:hover {
    color: inherit; }

.trending {
  width: 300px;
  height: 620px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  float: right; }
  .trending .caption a:hover, .trending .caption--sub a:hover, .trending .caption--dark a:hover, .trending .media .show-more a:hover, .media .trending .show-more a:hover {
    color: inherit; }

.tweets, .gallery-tile {
  width: 620px;
  height: 300px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  float: left;
  margin-right: 20px; }
  .tweets .caption a:hover, .gallery-tile .caption a:hover, .tweets .caption--sub a:hover, .gallery-tile .caption--sub a:hover, .tweets .caption--dark a:hover, .gallery-tile .caption--dark a:hover, .tweets .media .show-more a:hover, .media .tweets .show-more a:hover, .gallery-tile .media .show-more a:hover, .media .gallery-tile .show-more a:hover {
    color: inherit; }

.featured {
  width: 620px;
  height: 620px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  float: left;
  margin-right: 20px; }
  .featured .caption a:hover, .featured .caption--sub a:hover, .featured .caption--dark a:hover, .featured .media .show-more a:hover, .media .featured .show-more a:hover {
    color: inherit; }

.milestone {
  width: 940px;
  height: 620px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  float: left;
  margin-right: 20px; }
  .milestone .caption a:hover, .milestone .caption--sub a:hover, .milestone .caption--dark a:hover, .milestone .media .show-more a:hover, .media .milestone .show-more a:hover {
    color: inherit; }

.media-type-filter, .main-gallery {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none; }

/*
 * Generic rules for base elements
 */
a {
  color: #2dab11;
  text-decoration: none; }
  a:hover {
    color: #107c10; }

p {
  font-size: 15px; }

@font-face {
  font-family: 'GoblynIconFont';
  src: url("iconFont/iconfont.eot");
  src: url("iconFont/iconfont.eot?#iefix") format("embedded-opentype"), url("iconFont/iconfont.woff") format("woff"), url("iconFont/iconfont.ttf") format("truetype"), url("iconFont/iconfont.svg#iconFont") format("svg");
  font-weight: normal;
  font-style: normal; }

.tweets .caption:before, .tweets .caption--sub:before, .tweets .caption--dark:before, .tweets .media .show-more:before, .media .tweets .show-more:before, .citation-social .twitter:before {
  font-family: 'GoblynIconFont';
  font-style: normal;
  speak: none;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  content: "\e0c0"; }

.media-links a:after {
  font-family: 'GoblynIconFont';
  font-style: normal;
  speak: none;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  content: "\e09d"; }

.return-to-main:before {
  font-family: 'GoblynIconFont';
  font-style: normal;
  speak: none;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  content: "\e09f"; }

.search button:before {
  font-family: 'GoblynIconFont';
  font-style: normal;
  speak: none;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  content: "\e041"; }

.metroui input[type=checkbox]:checked:after, .media-type-filter input[type=checkbox]:checked:after {
  font-family: 'GoblynIconFont';
  font-style: normal;
  speak: none;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  content: "\e08a"; }

.media .download-button:before {
  font-family: 'GoblynIconFont';
  font-style: normal;
  speak: none;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  content: "\e001"; }

.link-list .rss:before {
  font-family: 'GoblynIconFont';
  font-style: normal;
  speak: none;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  content: "\e0c1"; }

/*
 * Microsoft brand fonts
 * Font family for all is 'Segoe UI', which is the default set to the HTML element
 * Style is controlled by font-style and font-weight
 * Silent classes for each font are included
 */
.info-bite .caption--dark, .archive .months, .archive .quarters, .archive .years, .search-result .title, .search-result--table ul li a span, .media .show-more, .pagenotfound .button, .maintenance .button, .main-gallery .download-all-button, .main-gallery .download-button {
  font-family: 'Segoe UI Regular', Segoe, 'Segoe WP', Tahoma, Verdana, Arial, sans-serif;
  font-style: normal;
  font-weight: normal; }

.caption .accent--sm, .caption--sub .accent--sm, .caption--dark .accent--sm, .media .show-more .accent--sm, .info-bite .caption--dark div, .service-alert a, .story .caption a, .story .caption--sub a, .story .caption--dark a, .story .media .show-more a, .media .story .show-more a, .search-result--table ul li {
  font-family: 'Segoe UI Bold', Segoe, 'Segoe WP', Tahoma, Verdana, Arial, sans-serif;
  font-style: normal;
  font-weight: bold; }

.story summary, .milestone .content .title, .search-controls .title, .reading-page .title, .media-assets .title, .media .title, .about-authors .title, .gallery-tile .title, .trending .title, .sidebar .title, .pagenotfound .title, .maintenance .title, .main-gallery .title, .main-video-gallery .title, .search-controls .result-count, .welcome-contact .welcome, .welcome-contact .contact .title, .site-title, .featured article h2, .service-alert .caption, .service-alert .caption--sub, .service-alert .caption--dark, .service-alert .media .show-more, .media .service-alert .show-more, .tweets .caption, .tweets .caption--sub, .tweets .caption--dark, .tweets .media .show-more, .media .tweets .show-more, .archive h3, .archive .recent, .load-more, .article p:first-child, .media-assets .sidebar > label {
  font-family: 'Segoe UI Light', Segoe, 'Segoe WP', Tahoma, Verdana, Arial, sans-serif;
  font-style: normal;
  font-weight: 300; }

.article blockquote {
  font-family: 'Segoe UI Light Italic', Segoe, 'Segoe WP', Tahoma, Verdana, Arial, sans-serif;
  font-style: italic;
  font-weight: 300; }

.category-nav .icon-category a, .info-bite.pull-quote .caption--dark, .info-bite.pull-quote .caption--dark div, .service-alert .caption .accent, .service-alert .caption--sub .accent, .service-alert .caption--dark .accent, .service-alert .media .show-more .accent, .media .service-alert .show-more .accent, .service-alert .caption .accent--sm, .service-alert .caption--sub .caption .accent--sm, .caption .service-alert .caption--sub .accent--sm, .service-alert .caption--dark .caption .accent--sm, .caption .service-alert .caption--dark .accent--sm, .service-alert .media .show-more .caption .accent--sm, .caption .service-alert .media .show-more .accent--sm, .media .service-alert .show-more .caption .accent--sm, .caption .media .service-alert .show-more .accent--sm, .service-alert .caption .caption--sub .accent--sm, .caption--sub .service-alert .caption .accent--sm, .service-alert .caption--sub .accent--sm, .service-alert .caption--dark .caption--sub .accent--sm, .caption--sub .service-alert .caption--dark .accent--sm, .service-alert .media .show-more .caption--sub .accent--sm, .caption--sub .service-alert .media .show-more .accent--sm, .media .service-alert .show-more .caption--sub .accent--sm, .caption--sub .media .service-alert .show-more .accent--sm, .service-alert .caption .caption--dark .accent--sm, .caption--dark .service-alert .caption .accent--sm, .service-alert .caption--sub .caption--dark .accent--sm, .caption--dark .service-alert .caption--sub .accent--sm, .service-alert .caption--dark .accent--sm, .service-alert .media .show-more .caption--dark .accent--sm, .caption--dark .service-alert .media .show-more .accent--sm, .media .service-alert .show-more .caption--dark .accent--sm, .caption--dark .media .service-alert .show-more .accent--sm, .service-alert .caption .media .show-more .accent--sm, .media .show-more .service-alert .caption .accent--sm, .service-alert .caption--sub .media .show-more .accent--sm, .media .show-more .service-alert .caption--sub .accent--sm, .service-alert .caption--dark .media .show-more .accent--sm, .media .show-more .service-alert .caption--dark .accent--sm, .service-alert .media .show-more .accent--sm, .media .service-alert .show-more .accent--sm, .trending .subtitle, .welcome-contact .contact .title {
  font-family: 'Segoe UI Semibold', Segoe, 'Segoe WP', Tahoma, Verdana, Arial, sans-serif;
  font-style: normal;
  font-weight: 600; }

@font-face {
  font-family: "Segoe UI Regular";
  src: url("brand-fonts/Segoe-UI/3ca1af51-981a-4e1c-b9c6-a66d0a5fe3c0-2.eot");
  src: url("brand-fonts/Segoe-UI/3ca1af51-981a-4e1c-b9c6-a66d0a5fe3c0-2.eot?") format("embedded-opentype"), url("brand-fonts/Segoe-UI/3ca1af51-981a-4e1c-b9c6-a66d0a5fe3c0-3.woff") format("woff"), url("brand-fonts/Segoe-UI/3ca1af51-981a-4e1c-b9c6-a66d0a5fe3c0-1.ttf") format("truetype"), url("brand-fonts/Segoe-UI/3ca1af51-981a-4e1c-b9c6-a66d0a5fe3c0-4.svg#web") format("svg");
  font-style: normal;
  font-weight: normal; }

@font-face {
  font-family: "Segoe UI Bold";
  src: url("brand-fonts/Segoe-UI-Bold/f5dd91f1-2016-48f8-a46c-e3418a52c859-2.eot");
  src: url("brand-fonts/Segoe-UI-Bold/f5dd91f1-2016-48f8-a46c-e3418a52c859-2.eot?") format("embedded-opentype"), url("brand-fonts/Segoe-UI-Bold/f5dd91f1-2016-48f8-a46c-e3418a52c859-3.woff") format("woff"), url("brand-fonts/Segoe-UI-Bold/f5dd91f1-2016-48f8-a46c-e3418a52c859-1.ttf") format("truetype"), url("brand-fonts/Segoe-UI-Bold/f5dd91f1-2016-48f8-a46c-e3418a52c859-4.svg#web") format("svg");
  font-style: normal;
  font-weight: bold; }

@font-face {
  font-family: "Segoe UI Light";
  src: url("brand-fonts/Segoe-UI-Light/45a13f65-5199-4a22-821e-9b7d7795518e-2.eot");
  src: url("brand-fonts/Segoe-UI-Light/45a13f65-5199-4a22-821e-9b7d7795518e-2.eot?") format("embedded-opentype"), url("brand-fonts/Segoe-UI-Light/45a13f65-5199-4a22-821e-9b7d7795518e-3.woff") format("woff"), url("brand-fonts/Segoe-UI-Light/45a13f65-5199-4a22-821e-9b7d7795518e-1.ttf") format("truetype"), url("brand-fonts/Segoe-UI-Light/45a13f65-5199-4a22-821e-9b7d7795518e-4.svg#web") format("svg");
  font-style: normal;
  font-weight: 300; }

@font-face {
  font-family: "Segoe UI Light Italic";
  src: url("brand-fonts/Segoe-UI-Light-Italic/e23dde0e-e91f-41e0-b78c-ebb9e232e98d-2.eot");
  src: url("brand-fonts/Segoe-UI-Light-Italic/e23dde0e-e91f-41e0-b78c-ebb9e232e98d-2.eot?") format("embedded-opentype"), url("brand-fonts/Segoe-UI-Light-Italic/e23dde0e-e91f-41e0-b78c-ebb9e232e98d-3.woff") format("woff"), url("brand-fonts/Segoe-UI-Light-Italic/e23dde0e-e91f-41e0-b78c-ebb9e232e98d-1.ttf") format("truetype"), url("brand-fonts/Segoe-UI-Light-Italic/e23dde0e-e91f-41e0-b78c-ebb9e232e98d-4.svg#web") format("svg");
  font-style: italic;
  font-weight: 300; }

@font-face {
  font-family: "Segoe UI Semibold";
  src: url("brand-fonts/Segoe-UI-Semibold/afae52c9-5d08-4193-8984-bb4346fd493c-2.eot");
  src: url("brand-fonts/Segoe-UI-Semibold/afae52c9-5d08-4193-8984-bb4346fd493c-2.eot?") format("embedded-opentype"), url("brand-fonts/Segoe-UI-Semibold/afae52c9-5d08-4193-8984-bb4346fd493c-3.woff") format("woff"), url("brand-fonts/Segoe-UI-Semibold/afae52c9-5d08-4193-8984-bb4346fd493c-1.ttf") format("truetype"), url("brand-fonts/Segoe-UI-Semibold/afae52c9-5d08-4193-8984-bb4346fd493c-4.svg#web") format("svg");
  font-style: normal;
  font-weight: 600; }

/*
 * Generic rule for a story title with an image taking the left side
 */
.story img, .story .img {
  float: left;
  width: 30%; }
.story .caption, .story .caption--sub, .story .caption--dark, .story .media .show-more, .media .story .show-more {
  float: left;
  width: 70%;
  color: #5dc21e; }
.story summary {
  float: left;
  width: 70%;
  color: #000;
  font-size: 20px;
  line-height: 22px;
  padding: 13px 15px; }

input[type=text] {
  border: 1px solid #000;
  background-color: #d2d2d2;
  padding: 2px; }
  input[type=text].placeholder {
    color: #818181;
    font-size: 12px;
    line-height: 22px;
    text-indent: 5px; }
  input[type=text]::-webkit-input-placeholder {
    color: #818181;
    font-size: 12px;
    line-height: 22px;
    text-indent: 5px; }
  input[type=text] :-moz-placeholder {
    color: #818181;
    font-size: 12px;
    line-height: 22px;
    text-indent: 5px; }
  input[type=text] ::-moz-placeholder {
    color: #818181;
    font-size: 12px;
    line-height: 22px;
    text-indent: 5px; }
  input[type=text]:-ms-input-placeholder {
    color: #818181;
    font-size: 12px;
    line-height: 22px;
    text-indent: 5px; }
  input[type=text]:-ms-input-placeholder {
    line-height: 18px; }
  input[type=text]:hover {
    background-color: #e2e2e2; }
  input[type=text]:focus, input[type=text]:active {
    background-color: #fff;
    outline: 0; }
  input[type=text][disabled] {
    border: 2px solid #777777;
    background-color: #1d1d1d;
    padding: 1px;
    color: #939393; }
    input[type=text][disabled].placeholder {
      color: #616161; }
    input[type=text][disabled]::-webkit-input-placeholder {
      color: #616161; }
    input[type=text][disabled] :-moz-placeholder {
      color: #616161; }
    input[type=text][disabled] ::-moz-placeholder {
      color: #616161; }
    input[type=text][disabled]:-ms-input-placeholder {
      color: #616161; }
  .ie input[type=text] {
    line-height: 18px; }

/*
 * Styles checkboxes inside a wrapper of .metroui
 * Wrapper is needed as several checkboxes remain unstyled
 */
.metroui input[type=checkbox], .media-type-filter input[type=checkbox] {
  height: 21px;
  width: 21px; }
  .metroui input[type=checkbox]:after, .media-type-filter input[type=checkbox]:after {
    display: block;
    content: '';
    height: 21px;
    width: 21px;
    font-size: 19px;
    text-indent: 1px;
    background-color: #f3f3f3; }
  .metroui input[type=checkbox]:checked:after, .media-type-filter input[type=checkbox]:checked:after {
    color: #202020;
    background-color: #d6d6d6; }
  .metroui input[type=checkbox]:hover:after, .media-type-filter input[type=checkbox]:hover:after {
    background-color: #e1e1e1; }
  .metroui input[type=checkbox]:active:after, .media-type-filter input[type=checkbox]:active:after {
    background-color: #fff; }
  .metroui input[type=checkbox][disabled]:after, .media-type-filter input[type=checkbox][disabled]:after {
    background-color: #767676; }
  .metroui input[type=checkbox][disabled]:checked:after, .media-type-filter input[type=checkbox][disabled]:checked:after {
    color: #4c4c4c; }
.metroui label > input[type=checkbox], .media-type-filter label > input[type=checkbox] {
  position: relative;
  top: 4px;
  margin-right: 9px; }

.milestone .content .title {
  color: #107c10; }

.search-controls .title, .reading-page .title, .media-assets .title, .media .title, .about-authors .title {
  color: #107c10; }

.gallery-tile .title, .trending .title, .sidebar .title, .pagenotfound .title, .maintenance .title, .main-gallery .title, .main-video-gallery .title {
  color: #107c10; }

.search-controls .result-count, .welcome-contact .welcome {
  color: #107c10; }

.welcome-contact .contact .title {
  color: #107c10; }

header {
  overflow: hidden;
  position: relative;
  margin-bottom: 32px; }

.site-title {
  font-size: 0px;
  float: left;
  margin: 49px 0 0;
  height: 61px;
  width: 350px;
  background: url(/~/media/images/Logos/site-logo.ashx) left top no-repeat;
  background-size: 307px auto;
  color: transparent; }
  .site-title.nhome:hover {
    background-position: left bottom;
    color: transparent; }
  .ie8 .site-title {
    background: url(/~/media/images/Logos/site-logo-ie8.ashx) left top no-repeat; }

@media all and (min-device-width: 768px) and (max-device-width: 1024px) {
  header .search button {
    text-indent: 4px; } }
.search {
  position: absolute;
  bottom: 0;
  right: 0; }
  .search input {
    font-size: 16px;
    width: 300px;
    float: left;
    background-color: #fff;
    border-color: #d5d5d9;
    height: 25px; }
    .search input:hover {
      background-color: #fff; }
  .search button {
    font-size: 15px;
    color: #FFF;
    height: 25px;
    width: 25px;
    background-color: #107c10;
    border: none;
    position: absolute;
    right: 0;
    text-indent: -1px; }
    .search button:before {
      height: 25px;
      width: 25px;
      line-height: 25px;
      position: absolute;
      left: 0;
      top: 0; }
      .ie8 .search button:before {
        left: 6px;
        top: -12px; }

.header-logo {
  height: 34px;
  width: 111px;
  position: absolute;
  top: 27px;
  right: 0; }

/*
 * Category Navigation - header bar - .category-nav
 *      Icon Category - .icon-category
 *      Media Assets - .media-assets
 */
.category-nav {
  overflow: hidden;
  margin: 0 0 20px 0; }
  .category-nav .icon-category {
    width: 124px;
    height: 124px;
    float: left;
    border: 1px solid #005804; }
    .category-nav .icon-category a {
      background-position: left 0; }
    .category-nav .icon-category:hover a {
      background-position: left -122px; }
    .category-nav .icon-category.active a {
      background-position: left -244px; }
    .category-nav .icon-category a {
      display: block;
      color: inherit;
      text-decoration: none;
      height: 100%;
      width: 100%;
      padding-top: 65px;
      background-repeat: no-repeat; }
    .category-nav .icon-category + .icon-category {
      border-right: 1px solid #005804;
      margin-left: -1px;
      width: 125px; }
      .category-nav .icon-category + .icon-category a {
        background-position: left 0; }
      .category-nav .icon-category + .icon-category:hover a {
        background-position: left -122px; }
      .category-nav .icon-category + .icon-category.active a {
        background-position: left -244px; }
    .category-nav .icon-category.active {
      border: 1px solid #dbdce0;
      border-bottom: none;
      z-index: 1;
      position: relative; }
  .category-nav .media-assets {
    width: 300px;
    height: 124px;
    background: url("/~/media/images/Category Icons/media-assets-new.jpg") no-repeat top left;
    margin: 0 0 0 18px;
    float: right; }
    .category-nav .media-assets:hover {
      background-position: left -124px; }
    .category-nav .media-assets a {
      display: block;
      height: 100%;
      width: 100%; }

/*
 * Branded Label for tile - .caption
 *     Accent text for caption - .accent
 *     Accent text with small caps - .accent--sm
 *   Alternate light gray styling for caption/accent - .caption--sub
 *   Alternate dark gray styling for caption/accent - .caption--dark
 * Slide on Share Overlay - .share-overlay
 * Tile size silent classes - %tile-$w-$h
 */
/*
 * Branded Label for tile - .caption
 *     Accent text for caption - .accent
 *     Accent text with small caps - .accent--sm
 */
.caption, .caption--sub, .caption--dark, .media .show-more {
  color: #fff;
  background: #107c10;
  font-size: 16px;
  line-height: 19px;
  padding: 9px 15px;
  width: 100%; }
  .caption .accent, .caption--sub .accent, .caption--dark .accent, .media .show-more .accent, .caption .accent--sm, .caption--sub .caption .accent--sm, .caption .caption--sub .accent--sm, .caption--dark .caption .accent--sm, .caption .caption--dark .accent--sm, .media .show-more .caption .accent--sm, .caption .media .show-more .accent--sm, .caption .caption--sub .accent--sm, .caption--sub .caption .accent--sm, .caption--sub .accent--sm, .caption--dark .caption--sub .accent--sm, .caption--sub .caption--dark .accent--sm, .media .show-more .caption--sub .accent--sm, .caption--sub .media .show-more .accent--sm, .caption .caption--dark .accent--sm, .caption--dark .caption .accent--sm, .caption--sub .caption--dark .accent--sm, .caption--dark .caption--sub .accent--sm, .caption--dark .accent--sm, .media .show-more .caption--dark .accent--sm, .caption--dark .media .show-more .accent--sm, .caption .media .show-more .accent--sm, .media .show-more .caption .accent--sm, .caption--sub .media .show-more .accent--sm, .media .show-more .caption--sub .accent--sm, .caption--dark .media .show-more .accent--sm, .media .show-more .caption--dark .accent--sm, .media .show-more .accent--sm {
    color: #67ca28; }
    .caption .accent a, .caption--sub .accent a, .caption--dark .accent a, .media .show-more .accent a, .caption .accent--sm a, .caption--sub .caption .accent--sm a, .caption .caption--sub .accent--sm a, .caption--dark .caption .accent--sm a, .caption .caption--dark .accent--sm a, .media .show-more .caption .accent--sm a, .caption .media .show-more .accent--sm a, .caption .caption--sub .accent--sm a, .caption--sub .caption .accent--sm a, .caption--sub .accent--sm a, .caption--dark .caption--sub .accent--sm a, .caption--sub .caption--dark .accent--sm a, .media .show-more .caption--sub .accent--sm a, .caption--sub .media .show-more .accent--sm a, .caption .caption--dark .accent--sm a, .caption--dark .caption .accent--sm a, .caption--sub .caption--dark .accent--sm a, .caption--dark .caption--sub .accent--sm a, .caption--dark .accent--sm a, .media .show-more .caption--dark .accent--sm a, .caption--dark .media .show-more .accent--sm a, .caption .media .show-more .accent--sm a, .media .show-more .caption .accent--sm a, .caption--sub .media .show-more .accent--sm a, .media .show-more .caption--sub .accent--sm a, .caption--dark .media .show-more .accent--sm a, .media .show-more .caption--dark .accent--sm a, .media .show-more .accent--sm a {
      color: #67ca28; }
      .caption .accent a:hover, .caption--sub .accent a:hover, .caption--dark .accent a:hover, .media .show-more .accent a:hover, .caption .accent--sm a:hover, .caption--sub .caption .accent--sm a:hover, .caption .caption--sub .accent--sm a:hover, .caption--dark .caption .accent--sm a:hover, .caption .caption--dark .accent--sm a:hover, .media .show-more .caption .accent--sm a:hover, .caption .media .show-more .accent--sm a:hover, .caption .caption--sub .accent--sm a:hover, .caption--sub .caption .accent--sm a:hover, .caption--sub .accent--sm a:hover, .caption--dark .caption--sub .accent--sm a:hover, .caption--sub .caption--dark .accent--sm a:hover, .media .show-more .caption--sub .accent--sm a:hover, .caption--sub .media .show-more .accent--sm a:hover, .caption .caption--dark .accent--sm a:hover, .caption--dark .caption .accent--sm a:hover, .caption--sub .caption--dark .accent--sm a:hover, .caption--dark .caption--sub .accent--sm a:hover, .caption--dark .accent--sm a:hover, .media .show-more .caption--dark .accent--sm a:hover, .caption--dark .media .show-more .accent--sm a:hover, .caption .media .show-more .accent--sm a:hover, .media .show-more .caption .accent--sm a:hover, .caption--sub .media .show-more .accent--sm a:hover, .media .show-more .caption--sub .accent--sm a:hover, .caption--dark .media .show-more .accent--sm a:hover, .media .show-more .caption--dark .accent--sm a:hover, .media .show-more .accent--sm a:hover {
        color: #5dc21e; }
  .caption .accent--sm, .caption--sub .accent--sm, .caption--dark .accent--sm, .media .show-more .accent--sm {
    text-transform: uppercase;
    font-size: 10px;
    line-height: 10px;
    margin-bottom: 4px; }

.caption a, .caption--sub a, .caption--dark a, .media .show-more a {
  color: #fff; }

/*
 * Alternate light gray styling for caption/accent - .caption--sub
 */
.caption--sub {
  background: #ebebeb;
  color: #6b6b6b;
  margin: 7px 0; }
  .caption--sub .accent, .caption--sub .caption .accent--sm, .caption .caption--sub .accent--sm, .caption--sub .accent--sm, .caption--sub .caption--dark .accent--sm, .caption--dark .caption--sub .accent--sm, .caption--sub .media .show-more .accent--sm, .media .show-more .caption--sub .accent--sm {
    color: #b8b8b8; }

/*
 * Alternate dark gray styling for caption/accent - .caption--dark
 */
.caption--dark {
  background: #3a3a3a;
  color: #a0a0a0;
  position: absolute;
  padding: 6px 10px;
  bottom: 6px;
  font-size: 12px;
  height: 90px; }
  .caption--dark .accent, .caption--dark .caption .accent--sm, .caption .caption--dark .accent--sm, .caption--dark .caption--sub .accent--sm, .caption--sub .caption--dark .accent--sm, .caption--dark .accent--sm, .caption--dark .media .show-more .accent--sm, .media .show-more .caption--dark .accent--sm {
    color: #fff; }

/*
 * Slide on Share Overlay - .share-overlay
 */
.share-overlay {
  -webkit-transition: right 250ms ease-out 0ms;
  -moz-transition: right 250ms ease-out 0ms;
  -ms-transition: right 250ms ease-out 0ms;
  -o-transition: right 250ms ease-out 0ms;
  transition: right 250ms ease-out 0ms;
  background: url(/Goblyn_Presentation/includes/img/tile-images/share-overlay-bg.png);
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  padding: 15px 22px 16px 24px;
  height: 71px;
  width: 160px;
  right: -160px;
  z-index: 250; }
  .share-overlay img {
    cursor: pointer; }
  .share-overlay img + img {
    margin-left: 23px; }

/*
 * Activates when direct parent is hovered
 */
:hover > .share-overlay {
  right: 0; }

/*
 * Tile size silent classes - %tile-$w-$h
 *   Outputs all sizes between 1 and 3
 */
.info-tile, .info-bite, .service-alert, .gallery-tile--sm {
  width: 300px;
  height: 300px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  float: right; }
  .info-tile .caption a:hover, .info-bite .caption a:hover, .service-alert .caption a:hover, .gallery-tile--sm .caption a:hover, .info-tile .caption--sub a:hover, .info-bite .caption--sub a:hover, .service-alert .caption--sub a:hover, .gallery-tile--sm .caption--sub a:hover, .info-tile .caption--dark a:hover, .info-bite .caption--dark a:hover, .service-alert .caption--dark a:hover, .gallery-tile--sm .caption--dark a:hover, .info-tile .media .show-more a:hover, .media .info-tile .show-more a:hover, .info-bite .media .show-more a:hover, .media .info-bite .show-more a:hover, .service-alert .media .show-more a:hover, .media .service-alert .show-more a:hover, .gallery-tile--sm .media .show-more a:hover, .media .gallery-tile--sm .show-more a:hover {
    color: inherit; }

.trending {
  width: 300px;
  height: 620px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  float: right; }
  .trending .caption a:hover, .trending .caption--sub a:hover, .trending .caption--dark a:hover, .trending .media .show-more a:hover, .media .trending .show-more a:hover {
    color: inherit; }

.tweets, .gallery-tile {
  width: 620px;
  height: 300px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  float: left;
  margin-right: 20px; }
  .tweets .caption a:hover, .gallery-tile .caption a:hover, .tweets .caption--sub a:hover, .gallery-tile .caption--sub a:hover, .tweets .caption--dark a:hover, .gallery-tile .caption--dark a:hover, .tweets .media .show-more a:hover, .media .tweets .show-more a:hover, .gallery-tile .media .show-more a:hover, .media .gallery-tile .show-more a:hover {
    color: inherit; }

.featured {
  width: 620px;
  height: 620px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  float: left;
  margin-right: 20px; }
  .featured .caption a:hover, .featured .caption--sub a:hover, .featured .caption--dark a:hover, .featured .media .show-more a:hover, .media .featured .show-more a:hover {
    color: inherit; }

.milestone {
  width: 940px;
  height: 620px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  float: left;
  margin-right: 20px; }
  .milestone .caption a:hover, .milestone .caption--sub a:hover, .milestone .caption--dark a:hover, .milestone .media .show-more a:hover, .media .milestone .show-more a:hover {
    color: inherit; }

/*
 * Homepage Wrapper - .news-section
 * Milestone (3x2) - .milestone
 * Featured (2x2) - .featured
 * Info Tile (1x1) - .info-tile
 * Info Bite (1x1) - .info-bite
 * Service Alert (1x1) - .service-alert [red styled callouts]
 * Tweets (2x1) - .tweets
 *     Tweet row - .tweet
 * Gallery Tile (2x1) - .gallery-tile
 *     Photo slide rotator - .photo-gallery
 * Trending (1x2) - .trending
 */
.featured article, .service-alert article, .tweets, .trending .title, .story summary, .search-result {
  background: url(/Goblyn_Presentation/includes/img/tile-images/bottom-gradient.jpg) repeat-x bottom left; }

.news-section {
  overflow: hidden; }

/*
 * Milestone (3x2) - .milestone
 */
.milestone .content-wrapper {
  position: relative;
  width: 100%;
  height: 529px; }
.milestone .caption, .milestone .caption--sub, .milestone .caption--dark, .milestone .media .show-more, .media .milestone .show-more {
  height: 91px;
  position: absolute;
  padding: 13px 15px;
  bottom: 0; }
  .milestone .caption .accent--sm, .milestone .caption--sub .accent--sm, .milestone .caption--dark .accent--sm, .milestone .media .show-more .accent--sm, .media .milestone .show-more .accent--sm {
    margin-bottom: 7px; }
  .milestone .caption p, .milestone .caption--sub p, .milestone .caption--dark p, .milestone .media .show-more p, .media .milestone .show-more p {
    max-height: 40px; }
.milestone .share-overlay {
  bottom: 0; }
.milestone .content {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=95)";
  opacity: 0.95;
  position: absolute;
  top: 0;
  right: 0;
  height: 530px;
  width: 480px;
  padding: 24px 31px;
  background-color: #fff; }
  .milestone .content .title {
    line-height: 1;
    margin-bottom: 20px; }
  .milestone .content .body-content {
    overflow: hidden;
    height: 272px;
    line-height: 24px;
    font-size: 17px; }
    .milestone .content .body-content p {
      font-size: 17px; }

/*
 * Featured (2x2) - .featured
 */
.featured .content-wrapper {
  height: 320px;
  overflow: hidden;
  position: relative; }
  .featured .content-wrapper .content {
    width: 620px;
    height: 320px;
    float: left; }
  .featured .content-wrapper .caption, .featured .content-wrapper .caption--sub, .featured .content-wrapper .caption--dark, .featured .content-wrapper .media .show-more, .media .featured .content-wrapper .show-more {
    position: absolute;
    bottom: 0;
    height: 71px;
    z-index: 200;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=95)";
    opacity: 0.95; }
    .featured .content-wrapper .caption .description, .featured .content-wrapper .caption--sub .description, .featured .content-wrapper .caption--dark .description, .featured .content-wrapper .media .show-more .description, .media .featured .content-wrapper .show-more .description {
      overflow: hidden;
      max-height: 40px; }
      .featured .content-wrapper .caption .description a, .featured .content-wrapper .caption--sub .description a, .featured .content-wrapper .caption--dark .description a, .featured .content-wrapper .media .show-more .description a, .media .featured .content-wrapper .show-more .description a {
        color: #fff; }
    .featured .content-wrapper .caption .accent--sm, .featured .content-wrapper .caption--sub .accent--sm, .featured .content-wrapper .caption--dark .accent--sm, .featured .content-wrapper .media .show-more .accent--sm, .media .featured .content-wrapper .show-more .accent--sm {
      margin-top: 2px;
      margin-bottom: 2px; }
.featured .caption, .featured .caption--sub, .featured .caption--dark, .featured .media .show-more, .media .featured .show-more {
  height: 30px; }
.featured article {
  border: 1px solid #DBDDE0;
  padding: 11px 15px 12px;
  height: 270px;
  overflow: hidden; }
  .featured article > a {
    display: inline-block; }
  .featured article h2 {
    color: #3a3a3a;
    font-size: 32px;
    line-height: 34px;
    margin-bottom: 12px; }
  .featured article .description {
    height: 165px;
    visibility: hidden;
    font-size: 15px;
    line-height: 21px; }
    .featured article .description .column {
      float: left;
      width: 280px; }
      .featured article .description .column + .column {
        margin-left: 20px; }
.featured .share-overlay {
  top: 0; }

.featured.slim {
  height: 300px; }
  .featured.slim .content-wrapper {
    height: 300px; }
    .featured.slim .content-wrapper .content {
      height: 300px; }

/*
 * Info Tile (1x1) - .info-tile
 */
.info-tile .video-container {
  height: 230px; }
  .info-tile .video-container .lightbox-iframe {
    display: block;
    height: 100%;
    width: 100%; }
.info-tile .caption, .info-tile .caption--sub, .info-tile .caption--dark, .info-tile .media .show-more, .media .info-tile .show-more {
  position: absolute;
  bottom: 0;
  height: 71px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=95)";
  opacity: 0.95; }
  .info-tile .caption .description, .info-tile .caption--sub .description, .info-tile .caption--dark .description, .info-tile .media .show-more .description, .media .info-tile .show-more .description {
    overflow: hidden;
    max-height: 40px; }
    .info-tile .caption .description a, .info-tile .caption--sub .description a, .info-tile .caption--dark .description a, .info-tile .media .show-more .description a, .media .info-tile .show-more .description a {
      color: #fff; }
.info-tile .share-overlay {
  bottom: 0; }

/*
 * Info Bite (1x1) - .info-bite
 */
.info-bite .caption .accent--sm, .info-bite .caption--sub .accent--sm, .info-bite .caption--dark .accent--sm, .info-bite .media .show-more .accent--sm, .media .info-bite .show-more .accent--sm {
  margin-top: 2px;
  margin-bottom: 2px; }
.info-bite .caption--dark {
  position: absolute;
  font-size: 16px;
  bottom: 0;
  height: 71px;
  color: #888888;
  padding: 11px 15px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=95)";
  opacity: 0.95; }
  .info-bite .caption--dark div {
    text-transform: uppercase;
    font-size: 10px;
    color: #67ca28; }
  .info-bite .caption--dark a:hover {
    color: #5dc21e; }

.info-bite.pull-quote .caption--dark {
  padding: 14px 0 0 50px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1; }
  .info-bite.pull-quote .caption--dark div {
    text-transform: none;
    font-size: inherit;
    color: inherit; }
  .info-bite.pull-quote .caption--dark div:before {
    content: ' ';
    padding-top: 10px;
    width: 15px;
    border-bottom: 1px solid #888888;
    height: 0;
    display: inline-block;
    position: absolute;
    margin-left: -15px; }
  .info-bite.pull-quote .caption--dark a:hover {
    color: #5dc21e; }

/*
 * Service Alert (1x1) - .service-alert [red styled callouts]
 */
.service-alert {
  background: url(/Goblyn_Presentation/includes/img/symbols/service-alert.png) 15px 94px no-repeat;
  background-size: 29px; }
  .service-alert article {
    height: 226px;
    padding: 15px 15px 15px 55px;
    border: 1px solid #DBDDE0;
    border-top: 0; }
  .service-alert p {
    font-size: 18px;
    line-height: 21px;
    color: #6b6b6b; }
  .service-alert .contact, .service-alert .contact p {
    font-size: 13px;
    line-height: 17px; }
  .service-alert a {
    color: #ec1c23; }
  .service-alert .caption, .service-alert .caption--sub, .service-alert .caption--dark, .service-alert .media .show-more, .media .service-alert .show-more {
    background: #e32a2a;
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #e32a2a), color-stop(100%, #f71d1d));
    background: -webkit-linear-gradient(left, #e32a2a, #f71d1d);
    background: -moz-linear-gradient(left, #e32a2a, #f71d1d);
    background: -o-linear-gradient(left, #e32a2a, #f71d1d);
    background: -ms-linear-gradient(left, #e32a2a, #f71d1d);
    background: linear-gradient(top, #e32a2a, #f71d1d);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFE32A2A', endColorstr='#FFF71D1D',GradientType=1 );
    padding: 18px; }
    .service-alert .caption .accent, .service-alert .caption--sub .accent, .service-alert .caption--dark .accent, .service-alert .media .show-more .accent, .media .service-alert .show-more .accent, .service-alert .caption .accent--sm, .service-alert .caption--sub .caption .accent--sm, .caption .service-alert .caption--sub .accent--sm, .service-alert .caption--dark .caption .accent--sm, .caption .service-alert .caption--dark .accent--sm, .service-alert .media .show-more .caption .accent--sm, .caption .service-alert .media .show-more .accent--sm, .media .service-alert .show-more .caption .accent--sm, .caption .media .service-alert .show-more .accent--sm, .service-alert .caption .caption--sub .accent--sm, .caption--sub .service-alert .caption .accent--sm, .service-alert .caption--sub .accent--sm, .service-alert .caption--dark .caption--sub .accent--sm, .caption--sub .service-alert .caption--dark .accent--sm, .service-alert .media .show-more .caption--sub .accent--sm, .caption--sub .service-alert .media .show-more .accent--sm, .media .service-alert .show-more .caption--sub .accent--sm, .caption--sub .media .service-alert .show-more .accent--sm, .service-alert .caption .caption--dark .accent--sm, .caption--dark .service-alert .caption .accent--sm, .service-alert .caption--sub .caption--dark .accent--sm, .caption--dark .service-alert .caption--sub .accent--sm, .service-alert .caption--dark .accent--sm, .service-alert .media .show-more .caption--dark .accent--sm, .caption--dark .service-alert .media .show-more .accent--sm, .media .service-alert .show-more .caption--dark .accent--sm, .caption--dark .media .service-alert .show-more .accent--sm, .service-alert .caption .media .show-more .accent--sm, .media .show-more .service-alert .caption .accent--sm, .service-alert .caption--sub .media .show-more .accent--sm, .media .show-more .service-alert .caption--sub .accent--sm, .service-alert .caption--dark .media .show-more .accent--sm, .media .show-more .service-alert .caption--dark .accent--sm, .service-alert .media .show-more .accent--sm, .media .service-alert .show-more .accent--sm {
      color: #fff;
      font-size: 16px; }

/*
 * Tweets (2x1) - .tweets
 */
.tweets .caption, .tweets .caption--sub, .tweets .caption--dark, .tweets .media .show-more, .media .tweets .show-more {
  background: #00aced;
  color: #fff;
  height: 71px;
  padding: 23px;
  font-size: 32px;
  line-height: 22px;
  z-index: 5;
  position: relative; }
  .tweets .caption:before, .tweets .caption--sub:before, .tweets .caption--dark:before, .tweets .media .show-more:before, .media .tweets .show-more:before {
    position: relative;
    top: 1px;
    font-size: 29px; }

/*
 *     Tweet row - .tweet
 */
.tweet {
  height: 115px;
  width: 100%;
  padding: 12px 18px;
  border: 1px solid #DBDDE0;
  margin-top: -1px;
  font-size: 14.5px;
  line-height: 18px; }
  .tweet > img, .tweet > .content, .tweet > .controls {
    float: left; }
  .tweet > img {
    margin-top: 4px; }
  .tweet .content {
    width: 390px;
    padding-left: 12px; }
  .tweet .content span.name {
    font-weight: bold;
    color: #3a3a3a;
    padding-right: 5px; }
  .tweet .content span.handle {
    color: #a1a1a1;
    font-size: 12px; }
  .tweet .content span.date {
    float: right;
    color: #a1a1a1;
    font-size: 12px; }
  .tweet .view-media {
    background: url(/Goblyn_Presentation/includes/img/social/view-media.jpg) left no-repeat;
    padding-left: 16px;
    font-size: 12px; }
  .tweet .controls {
    margin-top: 0px;
    list-style-type: none;
    color: #999999; }
    .tweet .controls li {
      margin-bottom: 10px; }
      .tweet .controls li a {
        color: #a1a1a1;
        padding-left: 25px; }
    .tweet .controls .reply {
      background: url(/Goblyn_Presentation/includes/img/social/twitter-reply.png) 1px no-repeat; }
    .tweet .controls .retweet {
      background: url(/Goblyn_Presentation/includes/img/social/twitter-retweet.png) left no-repeat; }
    .tweet .controls .favorite {
      background: url(/Goblyn_Presentation/includes/img/social/twitter-favorite.png) 4px no-repeat; }

/*
 * Photo Gallery (2x1) - .gallery-tile
 */
.gallery-tile {
  background: #3a3a3a; }
  .gallery-tile .caption, .gallery-tile .caption--sub, .gallery-tile .caption--dark, .gallery-tile .media .show-more, .media .gallery-tile .show-more {
    height: 28px; }
  .gallery-tile .title {
    max-width: 60%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
    display: inline-block;
    line-height: 63px;
    margin-left: 15px;
    margin-right: 10px; }
  .gallery-tile .subtitle {
    font-size: 15px;
    color: #8d8d8d;
    display: inline-block;
    height: 48px;
    line-height: 78px;
    position: absolute;
    top: 28px; }
  .gallery-tile .photo-gallery {
    height: 183px; }

.gallery-tile--sm {
  background: #3a3a3a; }
  .gallery-tile--sm .photo-gallery {
    height: 300px; }
  .gallery-tile--sm .caption, .gallery-tile--sm .caption--sub, .gallery-tile--sm .caption--dark, .gallery-tile--sm .media .show-more, .media .gallery-tile--sm .show-more {
    position: absolute;
    bottom: 0;
    height: 71px;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=95)";
    opacity: 0.95;
    padding-top: 10px;
    padding-bottom: 10px;
    z-index: 8000; }
    .gallery-tile--sm .caption a.lightbox-iframe, .gallery-tile--sm .caption--sub a.lightbox-iframe, .gallery-tile--sm .caption--dark a.lightbox-iframe, .gallery-tile--sm .media .show-more a.lightbox-iframe, .media .gallery-tile--sm .show-more a.lightbox-iframe {
      color: white; }

/*
 *     Photo slide rotator - .photo-gallery
 */
.photo-gallery {
  width: 100%;
  position: relative;
  margin: 0 auto; }
  .photo-gallery .slide-nav.next a, .photo-gallery .slide-nav.prev a, .photo-gallery .main-gallery .slide-nav.next a, .main-gallery .slide-nav.next .photo-gallery a, .photo-gallery .main-gallery .slide-nav.prev a, .main-gallery .slide-nav.prev .photo-gallery a {
    display: block;
    height: 47px;
    width: 83px; }
  .photo-gallery .bx-wrapper .bx-viewport {
    background-color: #3a3a3a; }
  .photo-gallery .ie8 .bxslider li a.lightboxlink {
    display: block; }
  .photo-gallery ul {
    margin-left: 0px; }
    .photo-gallery ul li {
      left: 40px; }
  .photo-gallery .slide-nav {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;
    cursor: pointer;
    height: 47px;
    width: 83px;
    background: url(/Goblyn_Presentation/includes/img/photo-gallery/nav.png) no-repeat;
    position: absolute;
    top: 50%;
    margin-top: -23px; }
    .photo-gallery .slide-nav.next {
      background-position: bottom left;
      right: 0; }
  .photo-gallery:hover .slide-nav {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    opacity: 0.7; }
    .photo-gallery:hover .slide-nav:hover {
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
      opacity: 0.9; }
  .photo-gallery .slider {
    height: 100%;
    position: relative;
    width: 2000px; }

/*
 * Trending (1x2) - .trending
 */
.trending .top-section, .trending .middle-section, .trending .bottom-section {
  padding: 15px 0 15px 20px;
  font-size: 14px; }
  .trending .top-section img, .trending .middle-section img, .trending .bottom-section img {
    display: block; }
  .trending .top-section ul, .trending .middle-section ul, .trending .bottom-section ul {
    margin: 5px 0 0 0; }
  .trending .top-section li + li, .trending .middle-section li + li, .trending .bottom-section li + li {
    margin-left: 14px; }

.trending {
  color: #fff; }
  .trending .title {
    background-position: left 15px;
    padding: 8px 14px;
    border: 1px solid #DBDDE0;
    border-bottom: 0;
    height: 71px; }
  .trending .subtitle img {
    display: inline; }
  .trending .subtitle span {
    position: relative;
    top: -2px; }
  .trending a {
    color: #FFF; }
    .trending a:hover {
      color: #FFF; }
  .trending .top-section {
    background-color: #107c10;
    height: 185px; }
  .trending .middle-section {
    background-color: #2dab11;
    height: 188px; }
  .trending .bottom-section {
    background-color: #5dc21e;
    height: 176px; }

/*
 * Archive Section General Rules - %archive-section
 * Archive - .archive
 *     Stories List - .stories
 *     Story Tile - .story
 */
.archive .recent, .archive .months, .archive .quarters, .archive .years {
  color: #fff;
  margin: 0 auto; }
  .archive .recent ul li span, .archive .months ul li span, .archive .quarters ul li span, .archive .years ul li span {
    -webkit-transition: background-color 250ms ease-out 0s;
    -moz-transition: background-color 250ms ease-out 0s;
    -ms-transition: background-color 250ms ease-out 0s;
    -o-transition: background-color 250ms ease-out 0s;
    transition: background-color 250ms ease-out 0s;
    height: 41px;
    line-height: 41px;
    display: block; }
  .archive .recent ul li + li, .archive .months ul li + li, .archive .quarters ul li + li, .archive .years ul li + li {
    margin-top: 9px;
    position: relative; }
    .archive .recent ul li + li:before, .archive .months ul li + li:before, .archive .quarters ul li + li:before, .archive .years ul li + li:before {
      content: '';
      display: block;
      background: url(/Goblyn_Presentation/includes/img/archive/archive-separator.png) center -100px no-repeat;
      height: 9px;
      width: 480px;
      position: absolute;
      top: -9px;
      left: 50%;
      margin-left: -240px; }
  .archive .recent ul li.open + li, .archive .months ul li.open + li, .archive .quarters ul li.open + li, .archive .years ul li.open + li {
    margin-top: 58px; }
    .archive .recent ul li.open + li:before, .archive .months ul li.open + li:before, .archive .quarters ul li.open + li:before, .archive .years ul li.open + li:before {
      top: -32px;
      height: 32px; }
  .archive .recent ul .open, .archive .months ul .open, .archive .quarters ul .open, .archive .years ul .open {
    height: auto;
    position: relative;
    overflow: visible; }
    .archive .recent ul .open:after, .archive .months ul .open:after, .archive .quarters ul .open:after, .archive .years ul .open:after {
      content: '';
      display: block;
      background: url(/Goblyn_Presentation/includes/img/archive/archive-separator.png) center -100px no-repeat;
      height: 32px;
      width: 480px;
      position: absolute;
      top: 41px;
      left: 50%;
      margin-left: -240px; }

.archive .recent:before, .archive .months:before, .archive .quarters:before, .archive .years:before {
  content: '';
  display: block;
  background-image: url(/Goblyn_Presentation/includes/img/archive/archive-separator.png);
  background-repeat: no-repeat;
  width: 100%;
  margin-top: -5px; }

.archive {
  text-align: center;
  margin-bottom: 100px; }
  .archive h3 {
    font-size: 32px;
    color: #107c10;
    padding-bottom: 15px;
    background: url(/Goblyn_Presentation/includes/img/archive/title-bottom.jpg) center bottom no-repeat; }
  .archive .recent {
    width: 210px;
    font-size: 24px; }
    .archive .recent:before {
      background-position: center -100px;
      height: 22px; }
    .archive .recent li > span, .archive .recent .open > span {
      background-color: #107c10;
      cursor: pointer; }
      .archive .recent li > span:hover, .archive .recent .open > span:hover {
        background-color: #2dab11; }
    .archive .recent .load-more:hover {
      background-color: #107c10; }
      .archive .recent .load-more:hover:after {
        border-top-color: #107c10; }
  .archive .months {
    width: 178px;
    font-size: 19px; }
    .archive .months:before {
      background-position: center 0px;
      height: 33px; }
    .archive .months li > span, .archive .months .open > span {
      background-color: #2dab11;
      cursor: pointer; }
      .archive .months li > span:hover, .archive .months .open > span:hover {
        background-color: #5dc21e; }
    .archive .months .load-more:hover {
      background-color: #2dab11; }
      .archive .months .load-more:hover:after {
        border-top-color: #2dab11; }
  .archive .quarters {
    width: 89px;
    font-size: 16px; }
    .archive .quarters:before {
      background-position: center -25px;
      height: 33px; }
    .archive .quarters li > span, .archive .quarters .open > span {
      background-color: #5dc21e;
      cursor: pointer; }
      .archive .quarters li > span:hover, .archive .quarters .open > span:hover {
        background-color: #67ca28; }
    .archive .quarters .load-more:hover {
      background-color: #5dc21e; }
      .archive .quarters .load-more:hover:after {
        border-top-color: #5dc21e; }
  .archive .years {
    width: 54px;
    font-size: 14px; }
    .archive .years:before {
      background-position: center -50px;
      height: 33px; }
    .archive .years li > span, .archive .years .open > span {
      background-color: #5dc21e;
      cursor: pointer; }
      .archive .years li > span:hover, .archive .years .open > span:hover {
        background-color: #67ca28; }
    .archive .years .load-more:hover {
      background-color: #5dc21e; }
      .archive .years .load-more:hover:after {
        border-top-color: #5dc21e; }
  .archive.opened li > span {
    background-color: #e5e5e5; }
  .archive.opened .years li > span:hover {
    background-color: #5dc21e; }
  .archive.opened .quarters li > span:hover {
    background-color: #5dc21e; }
  .archive.opened .months li > span:hover {
    background-color: #2dab11; }
  .archive.opened .recent li > span:hover {
    background-color: #107c10; }
  .archive.opened .recent + .recent:before, .archive.opened .months + .recent:before, .archive.opened .quarters + .recent:before, .archive.opened .years + .recent:before, .archive.opened .recent + .months:before, .archive.opened .months + .months:before, .archive.opened .quarters + .months:before, .archive.opened .years + .months:before, .archive.opened .recent + .quarters:before, .archive.opened .months + .quarters:before, .archive.opened .quarters + .quarters:before, .archive.opened .years + .quarters:before, .archive.opened .recent + .years:before, .archive.opened .months + .years:before, .archive.opened .quarters + .years:before, .archive.opened .years + .years:before {
    background-position: center -75px; }

.stories {
  width: 960px;
  position: relative;
  left: -480px;
  margin-left: 50%;
  top: 29px;
  overflow: hidden;
  margin-bottom: 27px;
  display: none;
  padding-bottom: 20px; }
  .open .stories {
    display: block; }
  .stories.hasmore {
    padding-bottom: 35px; }
  .stories:before {
    content: '';
    border: 3px solid #D0D0D0;
    position: absolute;
    left: 25%;
    width: 50%;
    height: 100%; }

.story {
  width: 460px;
  height: 138px;
  float: left;
  margin: 22px 10px 0;
  background: white;
  text-align: left;
  z-index: 1;
  position: relative; }
  .story:before {
    content: '';
    display: block;
    height: 25px;
    width: 100%;
    margin-top: -25px; }
  .story > a > img {
    float: left;
    width: 30%;
    border: 1px solid #ddd;
    border-right: none; }
  .story a.description {
    max-height: 66px;
    min-height: 66px;
    color: #000;
    display: block;
    white-space: normal; }
  .story .date {
    color: #b6b7b8;
    font-size: 13px;
    line-height: 24px; }
  .story .caption, .story .caption--sub, .story .caption--dark, .story .media .show-more, .media .story .show-more {
    height: 31px;
    padding: 5px 15px;
    overflow: hidden; }
    .story .caption a, .story .caption--sub a, .story .caption--dark a, .story .media .show-more a, .media .story .show-more a {
      font-size: 10px;
      text-transform: uppercase;
      color: #67ca28;
      position: relative;
      top: -2px; }
      .story .caption a:hover, .story .caption--sub a:hover, .story .caption--dark a:hover, .story .media .show-more a:hover, .media .story .show-more a:hover {
        color: #5dc21e; }
  .story summary {
    border-right: 1px solid #dbdde0;
    border-bottom: 1px solid #dbdde0;
    height: 107px;
    padding-top: 8px; }

.load-more {
  background-color: #8d8d8d;
  cursor: pointer;
  padding: 10px 0;
  height: 40px;
  width: 308px;
  margin: -17px 0 22px -154px;
  left: 50%;
  position: relative;
  font-size: 21px;
  line-height: 18px; }
  .load-more:before {
    content: '';
    display: block;
    position: absolute;
    height: 26px;
    width: 480px;
    left: -83px;
    bottom: -28px;
    background: url(/Goblyn_Presentation/includes/img/archive/archive-separator.png) 232px -100px no-repeat; }
  .load-more:after {
    content: '';
    border: 13px solid transparent;
    border-top: 13px solid #8d8d8d;
    border-bottom: 0px;
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -13px; }
  .islast .load-more:before {
    display: none; }

/*
 * Result count / category filter wrapper- .search-controls
 * Search Results tile wrapper - .search-results
 *     Generic rules Result Tile - .search-result
 *         Tabular Results (2x2) - .search-result--table => Used for Related tile
 *         Tabular Results with thumbnail (2x1) - .search-result--videos => Used for Video tile
 *         Thumbnail Results - .search-result--images => Used for Image tile
 */
/*
 * Result count / category filter wrapper- .search-controls
 */
.search-controls {
  position: relative; }
  .search-controls .bing-logo {
    width: 68px;
    height: 24px;
    position: absolute;
    right: -5px;
    top: 34px;
    background: url(/Goblyn_Presentation/includes/img/branding/bing.svg);
    background-size: 68px 24px; }
  .search-controls .result-count {
    margin: 20px 0; }
    .search-controls .result-count span {
      color: #c2c2c2; }

/*
 * Search Results tile wrapper - .search-results
 */
.search-results {
  width: 1020px;
  margin-left: -40px;
  margin-bottom: 120px;
  padding: 30px 30px 10px;
  background-color: #3a3a3a;
  overflow: hidden; }

/*
 * Generic rules Result Tile - .search-result
 */
.search-result {
  width: 460px;
  height: 140px;
  float: left;
  background-color: #fff;
  margin: 0 10px 20px;
  padding: 18px;
  overflow: hidden;
  position: relative; }
  .search-result .search-container {
    height: 100%; }
  .search-result .title {
    color: #3a3a3a;
    max-height: 48px;
    overflow: hidden;
    cursor: pointer; }
  .search-result .link {
    cursor: default;
    display: block;
    margin: 0 0 5px;
    max-height: 18px;
    max-width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
    .search-result .link span {
      color: #3a3a3a; }
  .search-result .summary {
    max-height: 60px; }
  .search-result .summary, .search-result .summary p {
    font-size: 12px; }

/*
 * Tabular Results (2x2) - .search-result--table => Used for Related tile
 */
.search-result--table .title {
  max-height: 24px;
  margin: -7px 0 11px; }
.search-result--table ul {
  margin: 0 0 0 -19px;
  width: 464px; }
  .search-result--table ul li {
    border-top: 1px solid #dddfe2;
    border-left: 1px solid #dddfe2;
    height: 48px;
    margin-left: -1px;
    margin-top: -1px;
    font-size: 12px;
    line-height: 41px; }
    .search-result--table ul li a {
      max-width: 95%;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      padding-left: 18px;
      color: #000;
      display: block;
      width: 100%;
      height: 100%;
      font-weight: bold; }

/*
 * Tabular Results with thumbnail (2x1) - .search-result--videos => Used for Video tile
 */
.search-result--videos ul {
  margin: 0 0 0 -19px;
  width: 464px; }
  .search-result--videos ul li {
    border-top: 1px solid #dddfe2;
    border-left: 1px solid #dddfe2;
    height: 93px;
    margin-left: -1px;
    margin-top: -1px;
    padding: 8px; }
    .search-result--videos ul li .img {
      float: left;
      padding-right: 8px; }
    .search-result--videos ul li .title {
      float: left;
      width: 100px;
      line-height: 1.2;
      height: 75%;
      overflow: hidden; }
    .search-result--videos ul li .link {
      float: left; }

/*
 * Thumbnail Results - .search-result--images => Used for Image tile
 */
.search-result--images ul {
  display: table;
  margin: 0;
  width: 460px;
  margin-left: -18px;
  position: absolute;
  bottom: -6px; }
  .search-result--images ul li {
    display: table-cell; }
    .search-result--images ul li img {
      max-height: 92px; }

/*
 * Reading Page wrapper - .reading-page
 * Subtitle wrapper - .citation-social
 *     Author name - .citation
 *     Twitter link - .twitter
 *     Post date - .post-date
 *     Social media links - .social
 * Article body - .article
 * Right Sidebar - .sidebar
 * Link list to media - .media-links
 * Media thumbnails - .media-thumbnails
 * Press Release download tile - .downloads
 * Disqus iframe - #disqus_thread
 * Return to Homepage link - .return-to-main
 * ESRB icons and game information - .esrb
 */
/*
 * Reading Page wrapper - .reading-page
 */
.reading-page .title {
  color: #585858; }

/*
 * Subtitle wrapper - .citation-social
 *     Author name - .citation
 *     Twitter link - .twitter
 *     Post date - .post-date
 *     Social media links - .social
 */
.citation-social {
  width: 100%;
  height: 46px;
  background: url(/Goblyn_Presentation/includes/img/reading-page/citation-bg.jpg) repeat-x;
  margin: 20px 0;
  padding: 8px 16px;
  font-size: 18px;
  color: #585858; }
  .citation-social .citation {
    float: left; }
  .citation-social .twitter {
    font-size: 12px;
    height: 16px;
    width: 16px;
    display: inline-block;
    text-align: center;
    background-color: #28aae1;
    color: #fff;
    margin: 0 4px; }
  .citation-social .post-date {
    color: #bdbcc0;
    font-size: 14px; }
  .citation-social .social {
    float: right; }
    .citation-social .social ul {
      display: table; }
      .citation-social .social ul li {
        display: table-cell;
        padding: 4px 7px; }
        .citation-social .social ul li:last-child {
          padding-left: 6px; }
  .citation-social .twitter-share-button {
    width: 80px !important; }
  .citation-social .fb-like {
    z-index: 10000; }

.hero-wrapper {
  height: 529px;
  width: 940px;
  position: relative;
  overflow: hidden; }

/*
 * Article body - .article
 */
.article {
  width: 620px;
  float: left;
  margin: 29px 20px 30px 0; }
  .article > * {
    margin-bottom: 12px; }
  .article p:first-child {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 16px; }
  .article blockquote {
    color: #107c10;
    line-height: 39px;
    text-indent: -11px; }
    .article blockquote:before {
      content: open-quote; }
    .article blockquote:after {
      content: close-quote; }

/*
 * Right Sidebar - .sidebar
 */
.sidebar {
  width: 300px;
  float: left; }
  .reading-page .sidebar {
    margin-top: 23px; }
  .sidebar .title {
    color: #107c10;
    text-indent: -3px;
    margin-bottom: 9px; }

/*
 * Link list to media - .media-links
 */
.media-links li + li {
  margin-top: 7px; }
.media-links a {
  width: 300px;
  height: 48px;
  padding: 11px 13px;
  color: #fff;
  background-color: #107c10;
  position: relative;
  cursor: pointer; }
  .media-links a:hover {
    color: #fff;
    background-color: #2dab11; }
  .media-links a:after {
    font-size: 20px;
    position: absolute;
    top: 8px;
    right: 13px; }

/*
 * Media thumbnails - .media-thumbnails
 */
.media-thumbnails {
  margin-top: 16px; }
  .media-thumbnails li {
    margin: 8px;
    position: relative; }

.sidebar .media-thumbnails {
  margin-left: -8px;
  width: 317px; }
  .sidebar .media-thumbnails a:before, .sidebar .media-thumbnails a .hover-border {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=15)";
    opacity: 0.15;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 140px;
    width: 140px;
    border: 1px solid #000;
    z-index: 3; }
    .sidebar .media-thumbnails a:hover:before, .sidebar .media-thumbnails a .hover-border:hover {
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
      opacity: 1;
      border: 4px solid #107c10; }
  .sidebar .media-thumbnails a:before {
    content: ''; }

/*
 * Press Release download tile - .downloads
 */
.downloads {
  background: white;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #f2f2f2));
  background: -webkit-linear-gradient(top, white, #f2f2f2);
  background: -moz-linear-gradient(top, white, #f2f2f2);
  background: -o-linear-gradient(top, white, #f2f2f2);
  background: -ms-linear-gradient(top, white, #f2f2f2);
  background: linear-gradient(top, white, #f2f2f2);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF2F2F2',GradientType=0 ); }
  .downloads .caption, .downloads .caption--sub, .downloads .caption--dark, .downloads .media .show-more, .media .downloads .show-more {
    height: 25px;
    padding: 3px 15px 3px 13px; }
  .downloads ul {
    padding: 10px 15px; }
    .downloads ul li a {
      padding-left: 25px;
      margin-right: 15px;
      color: #000;
      font-size: 12px; }
      .downloads ul li a.html {
        background: url(/Goblyn_Presentation/includes/img/reading-page/download-html.png) no-repeat center left; }
      .downloads ul li a.word {
        padding-left: 17px;
        background: url(/Goblyn_Presentation/includes/img/reading-page/download-word.png) no-repeat center left; }
      .downloads ul li a.pdf {
        background: url(/Goblyn_Presentation/includes/img/reading-page/download-pdf.png) no-repeat center left; }

/*
 * Disqus iframe - #disqus_thread
 */
#disqus_thread {
  width: 620px; }

/*
 * Return to Homepage link - .return-to-main
 */
.return-to-main {
  margin-bottom: 150px;
  display: inline-block; }
  .return-to-main:before {
    margin-right: 10px;
    position: relative;
    top: 2px; }
  .return-to-main span {
    color: #000; }

/*
 * ESRB icons and game information - .esrb
 */
.esrb {
  width: 315px;
  position: absolute; }
  .esrb p {
    color: #3a3a3a;
    font-size: 9pt;
    line-height: 15px;
    display: inline-block;
    position: relative;
    bottom: 8px; }
  .esrb strong {
    font-size: 8pt; }
  .esrb img {
    margin-right: 5px; }

/*
 * Media Assets page wrapper - .media-assets
 * Header Welcome section - .welcome-contact
 *     Welcome summary - .welcome
 *     Contact information - .contact
 * Left Sidebar - .sidebar - Extends .sidebar => _reading-page.scss
 *     Show Media checklist - .media-type-filter
 *     Date filter link list - .date-filter
 * Right Content - .media
 * Media Thumbnails - extends .media-thumbnails => _reading-page.scss
 */
/*
 * Media Assets page wrapper - .media-assets
 */
/*
 * Header Welcome section - .welcome-contact
 *     Welcome summary - .welcome
 *     Contact information - .contact
 */
.welcome-contact {
  color: #585858;
  overflow: hidden;
  margin-bottom: 12px;
  border-bottom: 1px solid #c9c9c9;
  background: url(/Goblyn_Presentation/includes/img/media-assets/header-divider.png) 635px top no-repeat; }
  .welcome-contact .welcome {
    color: inherit;
    width: 620px;
    float: left;
    padding: 10px 0 0 0;
    line-height: 28px; }
  .welcome-contact .contact {
    width: 300px;
    float: right;
    font-size: 14px;
    padding: 10px 0 20px 20px; }
    .welcome-contact .contact p {
      font-size: 14px; }

/*
 * Left Sidebar - .sidebar - Extends .sidebar => _reading-page.scss
 */
.media-assets .sidebar > label {
  font-size: 28px; }
.media-assets .sidebar select {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 30px;
  display: block;
  -moz-box-sizing: border-box;
  /* for Firefox */
  -webkit-box-sizing: border-box;
  /* for Safari */ }

/*
 * Show Media checklist - .media-type-filter
 */
.media-type-filter {
  margin-bottom: 30px; }
  .media-type-filter ul, .media-type-filter li {
    border: 0; }

/*
 * Date filter link list - .date-filter
 */
.date-filter {
  margin: 0;
  list-style-type: none; }
  .date-filter .active {
    font-weight: bold; }
  .date-filter span {
    font-weight: normal;
    color: #c2c2c2; }

/*
 * Right Content - .media
 */
.media {
  width: 620px;
  float: left;
  margin: 0 0 100px 20px; }
  .media .download-button {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    opacity: 0.5;
    cursor: pointer;
    float: right;
    font-size: 18px;
    color: #585858;
    position: relative;
    top: -4px; }
    .media .download-button:before {
      font-size: 30px;
      position: relative;
      top: 8px;
      left: -5px; }
    .media .download-button.active {
      color: #000;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
      opacity: 1; }
      .media .download-button.active:before {
        color: #107c10; }
    .media .download-button label {
      display: inline; }
  .media .title-area {
    clear: both; }
  .media .mediaset-select {
    float: right; }
    .media .mediaset-select input {
      margin-left: 5px; }
    .media .mediaset-select label {
      display: inline; }
  .media .mediaitem-select {
    float: left;
    width: 50%; }
    .media .mediaitem-select input {
      margin-right: 2px; }
  .media .title {
    margin: 15px 0 20px 0; }
  .media .box-art {
    float: left;
    margin-right: 20px; }
  .media p {
    font-size: 14px; }
  .media .disclaimer {
    font-size: 12px;
    margin: 20px 0; }
  .media .show-more {
    position: relative;
    cursor: pointer;
    font-size: 21px;
    background: #8d8d8d;
    color: #fff;
    text-align: center;
    height: auto;
    padding: 9px 15px 13px;
    margin-bottom: 32px; }
    .media .show-more:after {
      content: '';
      border-top: 13px solid #8d8d8d;
      border-left: 13px solid transparent;
      border-right: 13px solid transparent;
      position: absolute;
      top: 100%;
      left: 50%;
      margin-left: -16px; }
    .media .show-more:hover {
      background: #656565; }
      .media .show-more:hover:after {
        border-top: 13px solid #656565; }
    .media .show-more .accent, .media .show-more .caption .accent--sm, .caption .media .show-more .accent--sm, .media .show-more .caption--sub .accent--sm, .caption--sub .media .show-more .accent--sm, .media .show-more .caption--dark .accent--sm, .caption--dark .media .show-more .accent--sm, .media .show-more .accent--sm {
      color: #c8c8c8; }

/*
 * Media Thumbnails - extends .media-thumbnails => _reading-page.scss
 */
.media-assets .media-thumbnails {
  margin-left: -14px;
  width: 635px; }
  .media-assets .media-thumbnails li {
    margin: 0 0 13px 13px;
    position: relative;
    height: 195px;
    width: 195px; }
    .media-assets .media-thumbnails li .caption, .media-assets .media-thumbnails li .caption--sub, .media-assets .media-thumbnails li .caption--dark, .media-assets .media-thumbnails li .media .show-more, .media .media-assets .media-thumbnails li .show-more {
      position: absolute;
      bottom: 0;
      left: 0; }
    .media-assets .media-thumbnails li .caption--dark {
      line-height: 15px;
      padding-top: 8px; }
      .media-assets .media-thumbnails li .caption--dark .accent, .media-assets .media-thumbnails li .caption--dark .caption .accent--sm, .caption .media-assets .media-thumbnails li .caption--dark .accent--sm, .media-assets .media-thumbnails li .caption--dark .caption--sub .accent--sm, .caption--sub .media-assets .media-thumbnails li .caption--dark .accent--sm, .media-assets .media-thumbnails li .caption--dark .accent--sm, .media-assets .media-thumbnails li .caption--dark .media .show-more .accent--sm, .media .show-more .media-assets .media-thumbnails li .caption--dark .accent--sm {
        margin-top: 8px; }
      .media-assets .media-thumbnails li .caption--dark .media-title {
        display: inline-block;
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; }
      .media-assets .media-thumbnails li .caption--dark .media-size {
        font-size: 11px;
        position: relative;
        bottom: 2px; }
    .media-assets .media-thumbnails li .mediaitem-select label span {
      margin-top: -3px; }
    .media-assets .media-thumbnails li img {
      border: 1px solid #ddd;
      border-bottom: none;
      max-height: 100%; }

.media-type .caption--category {
  font-size: 21px;
  padding: 9px 11px 13px; }

.media-type .caption--sub span + span {
  margin-left: 6px; }

footer {
  color: #fff;
  font-size: 12px;
  overflow: hidden;
  background-color: #107C10; }
  footer .branding {
    padding: 20px 20px 10px;
    overflow: hidden;
    position: relative; }
    footer .branding:after {
      content: '';
      border-bottom: 1px solid #2fa60f;
      width: 900px;
      display: block;
      position: absolute;
      bottom: 0; }
  footer .links {
    list-style-type: none;
    padding: 20px;
    margin: 0; }
    footer .links a {
      color: #fff; }
    footer .links .link-list li a {
      padding-right: 10px; }
    footer .links .link-list li + li a {
      padding: 0 10px; }
    footer .links > li {
      float: left; }
    footer .links > li + li {
      float: right; }
  footer .xbox {
    float: left; }
  footer .microsoft {
    float: right;
    width: 500px; }
    footer .microsoft > ul, footer .microsoft img {
      float: right;
      width: auto; }
      footer .microsoft > ul + ul, footer .microsoft > ul + img, footer .microsoft img + ul, footer .microsoft img + img {
        margin-right: 20px; }

.link-list li {
  float: left;
  text-align: center; }
  .link-list li + li {
    border-left: 1px solid #2fa60f; }
.link-list .rss:before {
  font-size: 9px;
  top: -1px;
  position: relative;
  padding-right: 4px;
  padding-left: 1px; }

.social-list {
  margin-right: 20px; }
  .social-list li {
    height: 30px;
    padding-left: 10px;
    text-align: center; }

.pagenotfoundoverlay {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
  opacity: 0.85;
  background-color: #000;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9000; }

.pagenotfound, .maintenance {
  width: 100%;
  position: fixed;
  top: 256px;
  left: 0;
  background-color: #fff;
  z-index: 9001;
  color: #3a3a3a; }
  .pagenotfound p, .maintenance p {
    width: 740px; }
  .pagenotfound a, .maintenance a {
    text-decoration: underline; }
  .pagenotfound .button, .maintenance .button {
    text-decoration: none;
    background: #107c10;
    color: #fff;
    border: 0;
    padding: 5px 10px;
    float: right; }
  .pagenotfound .content, .maintenance .content {
    width: 1020px;
    padding: 40px;
    margin: 0 auto;
    position: relative;
    overflow: hidden; }
  .pagenotfound .title, .maintenance .title {
    margin-bottom: 20px;
    color: #3a3a3a; }
  .pagenotfound .accent, .maintenance .accent, .pagenotfound .caption .accent--sm, .caption .pagenotfound .accent--sm, .maintenance .caption .accent--sm, .caption .maintenance .accent--sm, .pagenotfound .caption--sub .accent--sm, .caption--sub .pagenotfound .accent--sm, .maintenance .caption--sub .accent--sm, .caption--sub .maintenance .accent--sm, .pagenotfound .caption--dark .accent--sm, .caption--dark .pagenotfound .accent--sm, .maintenance .caption--dark .accent--sm, .caption--dark .maintenance .accent--sm, .pagenotfound .media .show-more .accent--sm, .media .show-more .pagenotfound .accent--sm, .maintenance .media .show-more .accent--sm, .media .show-more .maintenance .accent--sm {
    color: #107c10; }

.pagenotfoundoverlay {
  display: none; }

.pagenotfound {
  display: none; }

.main-gallery {
  background: #3a3a3a;
  overflow: hidden; }
  .main-gallery h2 {
    margin: 24px 0; }
  .main-gallery .title {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1;
    color: #fff;
    display: inline-block;
    margin-left: 15px;
    margin-right: 10px;
    max-width: 88%; }
  .main-gallery .subtitle {
    font-size: 15px;
    color: #8d8d8d;
    display: inline-block;
    line-height: 1; }
  .main-gallery .caption .accent--sm, .main-gallery .caption--sub .accent--sm, .main-gallery .caption--dark .accent--sm, .main-gallery .media .show-more .accent--sm, .media .main-gallery .show-more .accent--sm {
    margin: 2px 0; }
  .main-gallery .description {
    -webkit-transition: opacity 500ms ease-out 0s;
    -moz-transition: opacity 500ms ease-out 0s;
    -ms-transition: opacity 500ms ease-out 0s;
    -o-transition: opacity 500ms ease-out 0s;
    transition: opacity 500ms ease-out 0s;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;
    font-size: 21px;
    line-height: 26px;
    padding: 13px 20px 16px;
    position: absolute;
    bottom: 6px;
    left: 10px;
    right: 10px;
    background-color: #000;
    color: #fff; }
  .main-gallery .active .description {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    opacity: 0.8; }
  .main-gallery .back-button2 {
    display: block;
    float: left;
    position: relative;
    top: 0;
    right: 0;
    margin: 22px 0px 20px 38px;
    background: url(/Goblyn_Presentation/includes/img/photo-gallery/back-button.png) no-repeat -3px -3px;
    background-size: 47px auto;
    width: 41px;
    height: 40px;
    z-index: 100; }
    .main-gallery .back-button2:hover {
      background-position: -3px -48px; }
    .main-gallery .back-button2:active {
      background-position: -3px -93px; }
  .main-gallery .download-all-button, .main-gallery .download-button {
    font-size: 12px;
    color: #FFF;
    display: block;
    float: left;
    white-space: nowrap;
    padding-top: 40px;
    height: 41px;
    line-height: 2.5;
    cursor: pointer; }
    .main-gallery .download-all-button:hover, .main-gallery .download-button:hover {
      background-position: center -41px; }
    .main-gallery .download-all-button:active, .main-gallery .download-button:active {
      background-position: center -82px; }
  .main-gallery .download-all-button {
    margin: 30px 0px 33px 38px;
    background: url(/Goblyn_Presentation/includes/img/photo-gallery/btn-download-all.png) no-repeat center top;
    background-size: 41px auto; }
  .main-gallery .download-wrapper {
    margin: 0 auto;
    width: 40px; }
  .main-gallery .download-button {
    margin: 30px 0px 33px 0px;
    background: url(/Goblyn_Presentation/includes/img/photo-gallery/btn-download.png) no-repeat center top;
    background-size: 40px auto; }
  .main-gallery .social {
    float: right;
    margin: 30px 31px 0 0;
    text-align: center;
    cursor: pointer;
    color: #fff;
    font-size: 11px; }
    .main-gallery .social div {
      width: 41px;
      float: left; }
      .main-gallery .social div img {
        padding-bottom: 3px; }
    .main-gallery .social div + div {
      margin-left: 15px; }
  .ie8 .main-gallery .social {
    min-width: 110px; }
  .main-gallery .scrollbar {
    cursor: pointer;
    position: relative;
    top: 14px;
    height: 17px;
    background-color: #707070;
    margin: 0 29px; }
    .main-gallery .scrollbar .button {
      content: '';
      display: block;
      position: absolute;
      height: 17px;
      width: 29px;
      z-index: 2;
      top: 0; }
      .main-gallery .scrollbar .button.next {
        right: -29px;
        background: url(/Goblyn_Presentation/includes/img/photo-gallery/slider-next.png) no-repeat; }
      .main-gallery .scrollbar .button.prev {
        left: -29px;
        background: url(/Goblyn_Presentation/includes/img/photo-gallery/slider-prev.png) no-repeat; }
    .main-gallery .scrollbar .scroll-wrapper {
      width: 300%;
      height: 17px;
      overflow: hidden;
      position: absolute;
      left: 0; }
      .main-gallery .scrollbar .scroll-wrapper .prev, .main-gallery .scrollbar .scroll-wrapper .next {
        width: 33.33333%;
        float: left;
        height: 17px; }
      .main-gallery .scrollbar .scroll-wrapper .custom-scroller {
        background-color: #bdbdbd;
        height: 15px;
        margin-top: 1px;
        float: left; }
  .main-gallery .date {
    margin-right: 15px; }
  .main-gallery .slide-nav {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;
    cursor: pointer;
    height: 47px;
    width: 83px;
    background: url(/Goblyn_Presentation/includes/img/photo-gallery/nav.png) no-repeat;
    position: absolute;
    top: 50%;
    margin-top: -23px; }
    .main-gallery .slide-nav.next {
      background-position: bottom left;
      right: 0; }
  .main-gallery:hover .slide-nav {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    opacity: 0.7; }
    .main-gallery:hover .slide-nav:hover {
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
      opacity: 0.9; }

.main-gallery.single-img #scrollable .items {
  left: 50%; }

.main-gallery.single-img #scrollable .items img {
  position: relative;
  left: -50%; }

.fancybox-overlay {
  overflow: hidden !important; }

/*
root element for the scrollable.  when scrolling occurs this
element stays still.
*/
.scrollable {
  /* required settings */
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 538px; }

.scrollable img {
  margin: 0 10px;
  height: 100%;
  max-width: none; }

/*
root element for scrollable items. Must be absolutely positioned
and it should have a extremely large width to accommodate scrollable
items.  it's enough that you set width and height for the root element
and not for this element.
*/
.scrollable .items {
  /* this cannot be too large */
  width: 20000em;
  position: absolute; }

/*
a single item. must be floated in horizontal scrolling.  typically,
this element is the one that *you* will style the most.
*/
.items div {
  float: left;
  position: relative; }

.main-video-gallery {
  background: #3a3a3a;
  min-height: auto;
  max-width: 100%; }
  .main-video-gallery h2 {
    margin: 17px 0; }
  .main-video-gallery .title {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1;
    display: inline-block;
    margin-left: 15px;
    margin-right: 10px;
    max-width: 89%; }
    .main-video-gallery .title a {
      color: #fff; }
  .main-video-gallery .subtitle {
    font-size: 15px;
    color: #8d8d8d;
    display: inline-block;
    line-height: 1; }
  .main-video-gallery .footer {
    height: 100px;
    color: #fff;
    font-size: 11px;
    padding-top: 10px; }
    .main-video-gallery .footer .icons {
      float: right;
      margin-right: 30px;
      margin-top: 15px;
      text-align: center;
      cursor: pointer; }
      .main-video-gallery .footer .icons div {
        width: 41px;
        float: left; }
      .main-video-gallery .footer .icons div + div {
        margin-left: 15px; }
  .main-video-gallery .textarea {
    display: none; }
  .main-video-gallery textarea {
    max-width: 50%;
    width: 450px;
    height: 80px;
    font-size: 16px;
    text-align: left;
    margin-top: 4px; }
  .main-video-gallery .video {
    position: relative;
    width: 1020px !important;
    height: 575px !important; }
    .main-video-gallery .video .minplayer-player-youtube {
      left: 0;
      position: absolute; }
  .main-video-gallery .download {
    cursor: pointer;
    left: 43%;
    margin: auto;
    text-align: center;
    width: 122px; }
  .main-video-gallery .back-button {
    background: url(/Goblyn_Presentation/includes/img/photo-gallery/back-button.png) no-repeat top left;
    background-size: 47px auto;
    width: 45px;
    height: 47px;
    cursor: pointer;
    overflow: hidden;
    float: left;
    margin: 11px 0 0 38px; }
    .main-video-gallery .back-button:hover {
      background-position: 0 -45px; }
    .main-video-gallery .back-button:active {
      background-position: 0 -90px; }
  .main-video-gallery .embed-button {
    background: url(/Goblyn_Presentation/includes/img/photo-gallery/embed-button.png) no-repeat top left;
    width: 122px;
    height: 75px;
    cursor: pointer;
    overflow: hidden;
    float: left;
    margin-left: 10px; }
    .main-video-gallery .embed-button:hover {
      background-position: 0 -75px; }
    .main-video-gallery .embed-button:active {
      background-position: 0 -150px; }
  .main-video-gallery .download-button {
    background: url(/Goblyn_Presentation/includes/img/photo-gallery/download-button.png) no-repeat top left;
    width: 122px;
    height: 75px;
    cursor: pointer;
    overflow: hidden;
    margin: 0; }
    .main-video-gallery .download-button:hover {
      background-position: 0 -75px; }
    .main-video-gallery .download-button:active {
      background-position: 0 -150px; }

.about-authors .contact .title {
  font-family: 'Segoe UI Light';
  padding-bottom: 6px; }
.about-authors .contact p {
  line-height: 1.4; }
.about-authors .authors {
  width: 1060px;
  position: relative;
  left: -40px; }
.about-authors .author {
  overflow: hidden;
  background: url(/Goblyn_Presentation/includes/img/authors/author-bottom-bg.png) no-repeat bottom left; }
  .about-authors .author + .author {
    margin-top: 12px; }
.about-authors .headshot, .about-authors .author-content {
  float: left; }
.about-authors .headshot {
  margin: 13px 0 0 40px; }
.about-authors .author-content {
  color: #6b6b6b;
  font-size: 15px;
  width: 450px;
  margin-left: 21px;
  padding-bottom: 18px;
  line-height: 21px; }
  .about-authors .author-content div p {
    margin: 0; }
  .about-authors .author-content .name h2 {
    color: #107c10;
    font: 32px 'Segoe UI Light';
    display: inline-block;
    margin: 0 16px 4px 0; }
  .about-authors .author-content .name span {
    color: #8d8d8d;
    font-size: 18px; }
  .about-authors .author-content .email {
    margin: 20px 0; }
.about-authors .related-posts {
  width: 330px;
  float: right;
  margin: 9px 40px 0 0; }
  .about-authors .related-posts .title {
    color: #107c10;
    font: 24px 'Segoe UI Light';
    margin-bottom: 13px; }
  .about-authors .related-posts .post {
    overflow: hidden;
    margin-bottom: 10px; }
    .about-authors .related-posts .post img {
      width: 91px;
      float: left; }
    .about-authors .related-posts .post .caption, .about-authors .related-posts .post .caption--sub, .about-authors .related-posts .post .caption--dark, .about-authors .related-posts .post .media .show-more, .media .about-authors .related-posts .post .show-more, .about-authors .related-posts .post summary {
      width: 60%;
      float: left; }
    .about-authors .related-posts .post .caption, .about-authors .related-posts .post .caption--sub, .about-authors .related-posts .post .caption--dark, .about-authors .related-posts .post .media .show-more, .media .about-authors .related-posts .post .show-more {
      height: 28px;
      overflow: hidden;
      padding: 10px 10px 0; }
      .about-authors .related-posts .post .caption a, .about-authors .related-posts .post .caption--sub a, .about-authors .related-posts .post .caption--dark a, .about-authors .related-posts .post .media .show-more a, .media .about-authors .related-posts .post .show-more a {
        color: #2dab11;
        font-size: 10px;
        text-transform: uppercase;
        position: relative;
        top: -5px; }
    .about-authors .related-posts .post summary {
      height: 63px;
      padding: 0 10px 10px;
      line-height: 18px;
      background: #107c10; }
      .about-authors .related-posts .post summary a {
        color: #fff;
        font-size: 15px;
        display: block;
        max-height: 55px; }

html {
  background: #ceced2 url(/Goblyn_Presentation/includes/img/site-bg.jpg) top left repeat-x;
  font-family: wf_SegoeUI, 'Segoe UI', Segoe, 'Segoe WP', Tahoma, Verdana, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility; }

body {
  background-repeat: no-repeat;
  background-position: center top;
  color: #3a3a3a; }

div.landing-layout {
  margin: 0 auto;
  width: 1020px;
  padding: 0 40px;
  background: white url(/Goblyn_Presentation/includes/img/content-rail-bg.jpg) top left no-repeat; }

.ie8 .fancybox-type-iframe .fancybox-inner {
  min-height: 740px; }

@media all and (min-device-width: 768px) and (max-device-width: 1024px) {
  body {
    font-size: 90%; } }

