@charset "UTF-8";
/*------------------------------------*\
    $CSSWIZARDRY-GRIDS
\*------------------------------------*/
/**
 * CONTENTS
 * INTRODUCTION.........How the grid system works.
 * VARIABLES............Your settings.
 * MIXINS...............Library mixins.
 * GRID SETUP...........Build the grid structure.
 * WIDTHS...............Build our responsive widths around our breakpoints.
 * PUSH.................Push classes.
 * PULL.................Pull classes.
 */
/*------------------------------------*\
    $INTRODUCTION
\*------------------------------------*/
/**
 * csswizardry grids provides you with widths to suit a number of breakpoints
 * designed around devices of a size you specify. Out of the box, csswizardry
 * grids caters to the following types of device:
 *
 * palm     --  palm-based devices, like phones and small tablets
 * lap      --  lap-based devices, like iPads or laptops
 * portable --  all of the above
 * desk     --  stationary devices, like desktop computers
 * regular  --  any/all types of device
 *
 * These namespaces are then used in the library to give you the ability to
 * manipulate your layouts based around them, for example:
 *
   <div class="grid__item  one-whole  lap--one-half  desk--one-third">
 *
 * This would give you a grid item which is 100% width unless it is on a lap
 * device, at which point it become 50% wide, or it is on a desktop device, at
 * which point it becomes 33.333% width.
 *
 * csswizardry grids also has push and pull classes which allow you to nudge
 * grid items left and right by a defined amount. These follow the same naming
 * convention as above, but are prepended by either `push--` or `pull--`, for
 * example:
 *
   `class="grid__item  one-half  push--one-half"`
 *
 * This would give you a grid item which is 50% width and pushed over to the
 * right by 50%.
 *
 * All classes in csswizardry grids follow this patten, so you should fairly
 * quickly be able to piece together any combinations you can imagine, for
 * example:
 *
   `class="grid__item  one-whole  lap--one-half  desk--one-third  push--desk--one-third"`
 *
   `class="grid__item  one-quarter  palm--one-half  push--palm--one-half"`
 *
   `class="grid__item  palm--one-third  desk--five-twelfths"`
 */
/*------------------------------------*\
    $VARIABLES
\*------------------------------------*/
/**
 * If you are building a non-responsive site but would still like to use
 * csswizardry-grids, set this to 'false':
 */
/**
 * Is this build mobile first? Setting to 'true' means that all grids will be
 * 100% width if you do not apply a more specific class to them.
 */
/**
 * Set the spacing between your grid items.
 */
/**
 * Would you like Sass' silent classes, or regular CSS classes?
 */
/**
 * Would you like push and pull classes enabled?
 */
/**
 * Using `inline-block` means that the grid items need their whitespace removing
 * in order for them to work correctly. Set the following to true if you are
 * going to achieve this by manually removing/commenting out any whitespace in
 * your HTML yourself.
 *
 * Setting this to false invokes a hack which cannot always be guaranteed,
 * please see the following for more detail:
 *
 * github.com/csswizardry/csswizardry-grids/commit/744d4b23c9d2b77d605b5991e54a397df72e0688
 * github.com/csswizardry/inuit.css/issues/170#issuecomment-14859371
 */
/**
 * Define your breakpoints. The first value is the prefix that shall be used for
 * your classes (e.g. `.palm--one-half`), the second value is the media query
 * that the breakpoint fires at.
 */
/**
 * Define which namespaced breakpoints you would like to generate for each of
 * widths, push and pull. This is handy if you only need pull on, say, desk, or
 * you only need a new width breakpoint at mobile sizes. It allows you to only
 * compile as much CSS as you need. All are turned on by default, but you can
 * add and remove breakpoints at will.
 *
 * Push and pull shall only be used if `$push` and/or `$pull` and `$responsive`
 * have been set to 'true'.
 */
/**
 * You do not need to edit anything from this line onward; csswizardry-grids is
 * good to go. Happy griddin'!
 */
/*------------------------------------*\
    $MIXINS
\*------------------------------------*/
/**
 * These mixins are for the library to use only, you should not need to modify
 * them at all.
 *
 * Enclose a block of code with a media query as named in `$breakpoints`.
 */
/**
 * Drop relative positioning into silent classes which can't take advantage of
 * the `[class*="push--"]` and `[class*="pull--"]` selectors.
 */
/*------------------------------------*\
    $GRID SETUP
\*------------------------------------*/
/**
 * 1. Allow the grid system to be used on lists.
 * 2. Remove any margins and paddings that might affect the grid system.
 * 3. Apply a negative `margin-left` to negate the columns' gutters.
 */
.grid {
  list-style: none;
  /* [1] */
  margin: 0;
  /* [2] */
  padding: 0;
  /* [2] */
  margin-left: -1.25em;
  /* [3] */ }

/**
 * 1. Cause columns to stack side-by-side.
 * 2. Space columns apart.
 * 3. Align columns to the tops of each other.
 * 4. Full-width unless told to behave otherwise.
 * 5. Required to combine fluid widths and fixed gutters.
 */
.grid__item {
  display: inline-block;
  /* [1] */
  padding-left: 1.25em;
  /* [2] */
  vertical-align: top;
  /* [3] */
  width: 100%;
  /* [4] */
  -webkit-box-sizing: border-box;
  /* [5] */
  -moz-box-sizing: border-box;
  /* [5] */
  box-sizing: border-box;
  /* [5] */ }

/**
 * Reversed grids allow you to structure your source in the opposite order to
 * how your rendered layout will appear. Extends `.grid`.
 */
.grid--rev {
  direction: rtl;
  text-align: left; }
  .grid--rev > .grid__item {
    direction: ltr;
    text-align: left; }

/**
 * Gutterless grids have all the properties of regular grids, minus any spacing.
 * Extends `.grid`.
 */
.grid--full {
  margin-left: 0; }
  .grid--full > .grid__item {
    padding-left: 0; }

/**
 * Align the entire grid to the right. Extends `.grid`.
 */
.grid--right {
  text-align: right; }
  .grid--right > .grid__item {
    text-align: left; }

/**
 * Centered grids align grid items centrally without needing to use push or pull
 * classes. Extends `.grid`.
 */
.grid--center {
  text-align: center; }
  .grid--center > .grid__item {
    text-align: left; }

/**
 * Align grid cells vertically (`.grid--middle` or `.grid--bottom`). Extends
 * `.grid`.
 */
.grid--middle > .grid__item {
  vertical-align: middle; }

.grid--bottom > .grid__item {
  vertical-align: bottom; }

/**
 * Create grids with narrower gutters. Extends `.grid`.
 */
.grid--narrow {
  margin-left: -0.625em; }
  .grid--narrow > .grid__item {
    padding-left: 0.625em; }

/**
 * Create grids with wider gutters. Extends `.grid`.
 */
.grid--wide {
  margin-left: -2.5em; }
  .grid--wide > .grid__item {
    padding-left: 2.5em; }

/*------------------------------------*\
    $WIDTHS
\*------------------------------------*/
/**
 * Create our width classes, prefixed by the specified namespace.
 */
/**
 * Our regular, non-responsive width classes.
 */
/**
 * 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%; }

/**
 * Our responsive classes, if we have enabled them.
 */
@media only screen and (min-width: 31.25em) {
  /**
   * Whole
   */
  .phablet--one-whole {
    width: 100%; }

  /**
   * Halves
   */
  .phablet--one-half, .phablet--two-quarters, .phablet--three-sixths, .phablet--four-eighths, .phablet--five-tenths, .phablet--six-twelfths {
    width: 50%; }

  /**
   * Thirds
   */
  .phablet--one-third, .phablet--two-sixths, .phablet--four-twelfths {
    width: 33.333%; }

  .phablet--two-thirds, .phablet--four-sixths, .phablet--eight-twelfths {
    width: 66.666%; }

  /**
   * Quarters
   */
  .phablet--one-quarter, .phablet--two-eighths, .phablet--three-twelfths {
    width: 25%; }

  .phablet--three-quarters, .phablet--six-eighths, .phablet--nine-twelfths {
    width: 75%; }

  /**
   * Fifths
   */
  .phablet--one-fifth, .phablet--two-tenths {
    width: 20%; }

  .phablet--two-fifths, .phablet--four-tenths {
    width: 40%; }

  .phablet--three-fifths, .phablet--six-tenths {
    width: 60%; }

  .phablet--four-fifths, .phablet--eight-tenths {
    width: 80%; }

  /**
   * Sixths
   */
  .phablet--one-sixth, .phablet--two-twelfths {
    width: 16.666%; }

  .phablet--five-sixths, .phablet--ten-twelfths {
    width: 83.333%; }

  /**
   * Eighths
   */
  .phablet--one-eighth {
    width: 12.5%; }

  .phablet--three-eighths {
    width: 37.5%; }

  .phablet--five-eighths {
    width: 62.5%; }

  .phablet--seven-eighths {
    width: 87.5%; }

  /**
   * Tenths
   */
  .phablet--one-tenth {
    width: 10%; }

  .phablet--three-tenths {
    width: 30%; }

  .phablet--seven-tenths {
    width: 70%; }

  .phablet--nine-tenths {
    width: 90%; }

  /**
   * Twelfths
   */
  .phablet--one-twelfth {
    width: 8.333%; }

  .phablet--five-twelfths {
    width: 41.666%; }

  .phablet--seven-twelfths {
    width: 58.333%; }

  .phablet--eleven-twelfths {
    width: 91.666%; } }
@media only screen and (min-width: 48em) {
  /**
   * Whole
   */
  .portrait--one-whole {
    width: 100%; }

  /**
   * Halves
   */
  .portrait--one-half, .portrait--two-quarters, .portrait--three-sixths, .portrait--four-eighths, .portrait--five-tenths, .portrait--six-twelfths {
    width: 50%; }

  /**
   * Thirds
   */
  .portrait--one-third, .portrait--two-sixths, .portrait--four-twelfths {
    width: 33.333%; }

  .portrait--two-thirds, .portrait--four-sixths, .portrait--eight-twelfths {
    width: 66.666%; }

  /**
   * Quarters
   */
  .portrait--one-quarter, .portrait--two-eighths, .portrait--three-twelfths {
    width: 25%; }

  .portrait--three-quarters, .portrait--six-eighths, .portrait--nine-twelfths {
    width: 75%; }

  /**
   * Fifths
   */
  .portrait--one-fifth, .portrait--two-tenths {
    width: 20%; }

  .portrait--two-fifths, .portrait--four-tenths {
    width: 40%; }

  .portrait--three-fifths, .portrait--six-tenths {
    width: 60%; }

  .portrait--four-fifths, .portrait--eight-tenths {
    width: 80%; }

  /**
   * Sixths
   */
  .portrait--one-sixth, .portrait--two-twelfths {
    width: 16.666%; }

  .portrait--five-sixths, .portrait--ten-twelfths {
    width: 83.333%; }

  /**
   * Eighths
   */
  .portrait--one-eighth {
    width: 12.5%; }

  .portrait--three-eighths {
    width: 37.5%; }

  .portrait--five-eighths {
    width: 62.5%; }

  .portrait--seven-eighths {
    width: 87.5%; }

  /**
   * Tenths
   */
  .portrait--one-tenth {
    width: 10%; }

  .portrait--three-tenths {
    width: 30%; }

  .portrait--seven-tenths {
    width: 70%; }

  .portrait--nine-tenths {
    width: 90%; }

  /**
   * Twelfths
   */
  .portrait--one-twelfth {
    width: 8.333%; }

  .portrait--five-twelfths {
    width: 41.666%; }

  .portrait--seven-twelfths {
    width: 58.333%; }

  .portrait--eleven-twelfths {
    width: 91.666%; } }
@media only screen and (max-width: 899px) {
  /**
   * Whole
   */
  .less-med-small--one-whole {
    width: 100%; }

  /**
   * Halves
   */
  .less-med-small--one-half, .less-med-small--two-quarters, .less-med-small--three-sixths, .less-med-small--four-eighths, .less-med-small--five-tenths, .less-med-small--six-twelfths {
    width: 50%; }

  /**
   * Thirds
   */
  .less-med-small--one-third, .less-med-small--two-sixths, .less-med-small--four-twelfths {
    width: 33.333%; }

  .less-med-small--two-thirds, .less-med-small--four-sixths, .less-med-small--eight-twelfths {
    width: 66.666%; }

  /**
   * Quarters
   */
  .less-med-small--one-quarter, .less-med-small--two-eighths, .less-med-small--three-twelfths {
    width: 25%; }

  .less-med-small--three-quarters, .less-med-small--six-eighths, .less-med-small--nine-twelfths {
    width: 75%; }

  /**
   * Fifths
   */
  .less-med-small--one-fifth, .less-med-small--two-tenths {
    width: 20%; }

  .less-med-small--two-fifths, .less-med-small--four-tenths {
    width: 40%; }

  .less-med-small--three-fifths, .less-med-small--six-tenths {
    width: 60%; }

  .less-med-small--four-fifths, .less-med-small--eight-tenths {
    width: 80%; }

  /**
   * Sixths
   */
  .less-med-small--one-sixth, .less-med-small--two-twelfths {
    width: 16.666%; }

  .less-med-small--five-sixths, .less-med-small--ten-twelfths {
    width: 83.333%; }

  /**
   * Eighths
   */
  .less-med-small--one-eighth {
    width: 12.5%; }

  .less-med-small--three-eighths {
    width: 37.5%; }

  .less-med-small--five-eighths {
    width: 62.5%; }

  .less-med-small--seven-eighths {
    width: 87.5%; }

  /**
   * Tenths
   */
  .less-med-small--one-tenth {
    width: 10%; }

  .less-med-small--three-tenths {
    width: 30%; }

  .less-med-small--seven-tenths {
    width: 70%; }

  .less-med-small--nine-tenths {
    width: 90%; }

  /**
   * Twelfths
   */
  .less-med-small--one-twelfth {
    width: 8.333%; }

  .less-med-small--five-twelfths {
    width: 41.666%; }

  .less-med-small--seven-twelfths {
    width: 58.333%; }

  .less-med-small--eleven-twelfths {
    width: 91.666%; } }
@media only screen and (min-width: 900px) {
  /**
   * Whole
   */
  .med-small--one-whole {
    width: 100%; }

  /**
   * Halves
   */
  .med-small--one-half, .med-small--two-quarters, .med-small--three-sixths, .med-small--four-eighths, .med-small--five-tenths, .med-small--six-twelfths {
    width: 50%; }

  /**
   * Thirds
   */
  .med-small--one-third, .med-small--two-sixths, .med-small--four-twelfths {
    width: 33.333%; }

  .med-small--two-thirds, .med-small--four-sixths, .med-small--eight-twelfths {
    width: 66.666%; }

  /**
   * Quarters
   */
  .med-small--one-quarter, .med-small--two-eighths, .med-small--three-twelfths {
    width: 25%; }

  .med-small--three-quarters, .med-small--six-eighths, .med-small--nine-twelfths {
    width: 75%; }

  /**
   * Fifths
   */
  .med-small--one-fifth, .med-small--two-tenths {
    width: 20%; }

  .med-small--two-fifths, .med-small--four-tenths {
    width: 40%; }

  .med-small--three-fifths, .med-small--six-tenths {
    width: 60%; }

  .med-small--four-fifths, .med-small--eight-tenths {
    width: 80%; }

  /**
   * Sixths
   */
  .med-small--one-sixth, .med-small--two-twelfths {
    width: 16.666%; }

  .med-small--five-sixths, .med-small--ten-twelfths {
    width: 83.333%; }

  /**
   * Eighths
   */
  .med-small--one-eighth {
    width: 12.5%; }

  .med-small--three-eighths {
    width: 37.5%; }

  .med-small--five-eighths {
    width: 62.5%; }

  .med-small--seven-eighths {
    width: 87.5%; }

  /**
   * Tenths
   */
  .med-small--one-tenth {
    width: 10%; }

  .med-small--three-tenths {
    width: 30%; }

  .med-small--seven-tenths {
    width: 70%; }

  .med-small--nine-tenths {
    width: 90%; }

  /**
   * Twelfths
   */
  .med-small--one-twelfth {
    width: 8.333%; }

  .med-small--five-twelfths {
    width: 41.666%; }

  .med-small--seven-twelfths {
    width: 58.333%; }

  .med-small--eleven-twelfths {
    width: 91.666%; } }
@media only screen and (min-width: 68.75em) {
  /**
   * Whole
   */
  .landscape--one-whole {
    width: 100%; }

  /**
   * Halves
   */
  .landscape--one-half, .landscape--two-quarters, .landscape--three-sixths, .landscape--four-eighths, .landscape--five-tenths, .landscape--six-twelfths {
    width: 50%; }

  /**
   * Thirds
   */
  .landscape--one-third, .landscape--two-sixths, .landscape--four-twelfths {
    width: 33.333%; }

  .landscape--two-thirds, .landscape--four-sixths, .landscape--eight-twelfths {
    width: 66.666%; }

  /**
   * Quarters
   */
  .landscape--one-quarter, .landscape--two-eighths, .landscape--three-twelfths {
    width: 25%; }

  .landscape--three-quarters, .landscape--six-eighths, .landscape--nine-twelfths {
    width: 75%; }

  /**
   * Fifths
   */
  .landscape--one-fifth, .landscape--two-tenths {
    width: 20%; }

  .landscape--two-fifths, .landscape--four-tenths {
    width: 40%; }

  .landscape--three-fifths, .landscape--six-tenths {
    width: 60%; }

  .landscape--four-fifths, .landscape--eight-tenths {
    width: 80%; }

  /**
   * Sixths
   */
  .landscape--one-sixth, .landscape--two-twelfths {
    width: 16.666%; }

  .landscape--five-sixths, .landscape--ten-twelfths {
    width: 83.333%; }

  /**
   * Eighths
   */
  .landscape--one-eighth {
    width: 12.5%; }

  .landscape--three-eighths {
    width: 37.5%; }

  .landscape--five-eighths {
    width: 62.5%; }

  .landscape--seven-eighths {
    width: 87.5%; }

  /**
   * Tenths
   */
  .landscape--one-tenth {
    width: 10%; }

  .landscape--three-tenths {
    width: 30%; }

  .landscape--seven-tenths {
    width: 70%; }

  .landscape--nine-tenths {
    width: 90%; }

  /**
   * Twelfths
   */
  .landscape--one-twelfth {
    width: 8.333%; }

  .landscape--five-twelfths {
    width: 41.666%; }

  .landscape--seven-twelfths {
    width: 58.333%; }

  .landscape--eleven-twelfths {
    width: 91.666%; } }
/*------------------------------------*\
    $PUSH
\*------------------------------------*/
/**
 * Push classes, to move grid items over to the right by certain amounts.
 */
/*------------------------------------*\
    $PULL
\*------------------------------------*/
/**
 * Pull classes, to move grid items back to the left by certain amounts.
 */
@font-face {
  font-family: 'fontello';
  src: url("../../../fonts/");
  src: url("../../../fonts/fontello.eot?66746799#iefix") format("embedded-opentype"), url("../../../fonts/fontello.woff?66746799") format("woff"), url("../../../fonts/fontello.ttf?66746799") format("truetype"), url("../../../fonts/fontello.svg?66746799#fontello") format("svg");
  font-weight: normal;
  font-style: normal; }
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('../font/fontello.svg?66746799#fontello') format('svg');
  }
}
*/
[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }

.icon-search:before {
  content: '\e800'; }

/* '' */
.icon-left-dir:before {
  content: '\e801'; }

/* '' */
.icon-right-dir:before {
  content: '\e802'; }

/* '' */
.icon-down-open:before {
  content: '\e803'; }

/* '' */
.icon-menu:before {
  content: '\e804'; }

/* '' */
.icon-up-dir:before {
  content: '\e805'; }

/* '' */
.icon-down-dir:before {
  content: '\e806'; }

/* '' */
@media only screen and (max-width: 499px) {
  .less-phablet--hide {
    display: none; } }
@media only screen and (min-width: 31.25em) {
  .phablet--hide {
    display: none; } }
@media only screen and (max-width: 47.9375em) {
  .less-portrait--hide {
    display: none; } }
@media only screen and (min-width: 48em) {
  .portrait--hide {
    display: none; } }
@media only screen and (max-width: 899px) {
  .less-med-small--hide {
    display: none; } }
@media only screen and (min-width: 900px) {
  .med-small--hide {
    display: none; } }
@media only screen and (min-width: 948px) {
  .med-small-landscape--hide {
    display: none; } }
@media only screen and (max-width: 68.6875em) {
  .less-landscape--hide {
    display: none; } }
@media only screen and (min-width: 68.75em) {
  .landscape--hide {
    display: none; } }
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

body {
  font-family: 'Open Sans', sans-serif;
  font-style: normal;
  font-weight: 400; }

.hidden {
  display: none !important;
  visibility: hidden; }

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }
  .visuallyhidden.focusable:active, .visuallyhidden.focusable:active {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto; }

.invisible {
  visibility: hidden; }

.clearfix,
.page-width {
  *zoom: 1; }
  .clearfix:after, .clearfix:before,
  .page-width:after,
  .page-width:before {
    content: " ";
    display: table; }
  .clearfix:after,
  .page-width:after {
    clear: both; }

.text-centered {
  text-align: center; }

.text-right {
  text-align: right; }

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4; }

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none; }

::selection {
  background: #b3d4fc;
  text-shadow: none; }

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

textarea {
  resize: vertical; }

body {
  font-size: 16px;
  line-height: 26px; }

a {
  color: #6195ED;
  text-decoration: none; }
  a:hover {
    text-decoration: underline; }
  a:active {
    color: black; }

h2, .h2 {
  color: #14243C;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.08333;
  font-weight: bold; }

h3, .h3 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.44444;
  font-weight: bold; }

.page-width {
  max-width: 973px;
  margin: 0 auto;
  padding-left: 0.625em;
  padding-right: 0.625em; }
  @media only screen and (min-width: 48em) {
    .page-width {
      padding-left: 1.25em;
      padding-right: 1.25em; } }

.header-container {
  background-color: white; }

.header-bar {
  height: 80px;
  background-color: white; }
  .header-bar .logo {
    padding: 0;
    margin: 0; }
    .header-bar .logo img {
      height: 60px;
      margin-top: 10px; }

header {
  position: relative; }
  header .menu-icon {
    position: absolute;
    top: 20px;
    right: 10px;
    font-size: 2em; }
  header nav {
    display: none; }
    header nav.isOpen {
      display: block; }
    @media only screen and (min-width: 900px) {
      header nav {
        display: block;
        position: absolute;
        right: 0;
        top: 0; } }

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0; }
  .menu-list .menu-item {
    margin: 1em 1em;
    background-color: white; }
    .menu-list .menu-item a {
      padding: 1em;
      display: block;
      color: #01BDED; }
      @media only screen and (max-width: 899px) {
        .menu-list .menu-item a:hover {
          background-color: #14243C; } }
    @media only screen and (min-width: 900px) {
      .menu-list .menu-item {
        float: left;
        font-size: 14px;
        font-size: 0.875rem;
        line-height: 1.85714; } }

.categories-links ul {
  padding: 0;
  margin: 0; }
  .categories-links ul li.header {
    text-align: center;
    border-right: 1.5px dashed gray; }
    .categories-links ul li.header:hover, .categories-links ul li.header.active {
      background-color: #688BC3; }
      .categories-links ul li.header:hover > a, .categories-links ul li.header.active > a {
        color: white;
        text-decoration: none; }
  .categories-links ul li:last-child {
    border: none; }
.categories-links a {
  color: #688BC3;
  display: inline-block;
  padding: 5px; }
  .categories-links a:hover, .categories-links a.active {
    background-color: #688BC3;
    color: white;
    text-decoration: none; }

.button {
  background-color: #6195ED;
  color: white;
  position: relative;
  display: inline-block;
  border: solid 1px #6195ED; }
  .button:active {
    background-color: #6195ED;
    border: solid 1px #6195ED;
    color: black;
    text-decoration: none; }
  .button.search {
    text-align: center; }
  .button.more-links {
    width: 120px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none; }
  .button.feedback {
    width: 120px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none; }
  .button.submit {
    width: 125px;
    text-align: center; }

.footer-container {
  background-color: #5A636A; }

footer .categories-links ul {
  padding: 0;
  margin: 0; }
footer .categories-links a {
  color: #01BDED;
  display: inline-block;
  line-height: 3em;
  padding: 5px; }
  footer .categories-links a:hover {
    background-color: #01BDED;
    color: white;
    text-decoration: none; }
footer .footer-links {
  height: 150px;
  background-color: #6B747D; }
  footer .footer-links a {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 2.16667; }
footer .copyright {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2.16667;
  color: white; }

input {
  width: 100%;
  height: 36px;
  border-radius: 5px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

select {
  width: 100%;
  height: 36px;
  border-radius: 5px;
  background-color: white; }

textarea {
  width: 100%; }

.input-container {
  margin: 16px 0; }

.search-container {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: inset 0px 11px 8px -10px #CCC, inset 0px -11px 8px -10px #CCC;
  border-top: 1px solid #A0A0A0;
  border-bottom: 1px solid #A0A0A0;
  	/*h2 {
  		display: none;
  		width: 100%;
  		font-size: 1.3em;
  
  		@include grid-media-query( portrait ) {
  			display: block;
  			text-align: center;
  			margin-top: 3%;
  			line-height: 1.6em;
  		}
  
  		@include grid-media-query( landscape ){
  			width: 30%;
  			font-size: 1.6em;
  		}
  	}*/ }
  .search-container .search-info {
    position: absolute;
    top: 0; }
  .search-container > img {
    width: 100%; }

.search-wrapper {
  height: 0; }
  .search-wrapper .search-box {
    background: #90C4EB;
    width: 100%;
    border-radius: 10px;
    box-shadow: 5px 5px 7px #696969;
    position: relative;
    top: -70px; }
    .search-wrapper .search-box .search-input {
      padding-left: 10px; }
    @media only screen and (min-width: 48em) {
      .search-wrapper .search-box .heading {
        padding: 20px 20px 0 20px; } }
    .search-wrapper .search-box .heading h2 {
      font-size: 1.2em; }
      @media only screen and (min-width: 48em) {
        .search-wrapper .search-box .heading h2 {
          margin-top: 0;
          margin-bottom: 0; } }
    @media only screen and (min-width: 48em) {
      .search-wrapper .search-box .first {
        padding: 10px 0 20px 20px; } }
    @media only screen and (min-width: 48em) {
      .search-wrapper .search-box .second {
        padding: 10px 10px 20px 10px; } }
    @media only screen and (min-width: 48em) {
      .search-wrapper .search-box .third {
        padding: 10px 20px 20px 0; } }
    .search-wrapper .search-box div {
      padding: 0 0.3125em; }
      @media only screen and (min-width: 48em) {
        .search-wrapper .search-box div:first-child {
          padding-right: 0; } }
      @media only screen and (min-width: 48em) {
        .search-wrapper .search-box div:last-child {
          padding-left: 0; } }
  .search-wrapper .search-box-item .search-form {
    margin: 0.3125em 0;
    position: relative; }
    .search-wrapper .search-box-item .search-form .search-icon {
      position: absolute;
      top: 5px;
      right: 5px; }

.article-block {
  padding: 0.625em; }
  @media only screen and (min-width: 48em) {
    .article-block.mobile-only {
      display: none; } }
  .article-block .inner {
    background-color: white;
    padding: 10px 30px 30px 30px;
    border: solid 1px #CCC;
    border-radius: 5px;
    box-shadow: 3px 3px 5px #888; }
    @media only screen and (min-width: 48em) {
      .article-block .inner {
        min-height: 442px; } }
    .article-block .inner.author {
      min-height: 550px; }
  .article-block .article-description {
    color: #666666; }
    @media only screen and (min-width: 48em) {
      .article-block .article-description.same-height {
        height: 200px; } }
  .article-block .article-author {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.85714; }
  .article-block .article-related {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.85714; }
    .article-block .article-related ul {
      list-style: none;
      display: inline-block;
      padding: 0;
      margin: 0; }
      .article-block .article-related ul li {
        float: left;
        margin-right: 5px;
        padding-right: 5px; }
        .article-block .article-related ul li:not(:last-child) {
          border-right: solid 1px #D8D8D8; }

.pagination-block .inner {
  float: right; }
.pagination-block .pagination-list {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0; }
  .pagination-block .pagination-list > li {
    display: inline; }
    .pagination-block .pagination-list > li a {
      position: relative;
      float: left;
      padding: 6px 12px;
      margin-left: -1px;
      line-height: 1.42857143;
      text-decoration: none;
      background-color: white;
      border: 1px solid #CCC;
      width: 10px;
      height: 20px; }
      .pagination-block .pagination-list > li a.active {
        background-color: #6195ED;
        color: white; }
      .pagination-block .pagination-list > li a:hover {
        background-color: #b0caf6;
        color: white; }
    .pagination-block .pagination-list > li:first-child > a {
      margin-left: 0; }
    .pagination-block .pagination-list > li .icon:before {
      margin: 0 -5px;
      font-size: 1.5em; }

.ad-container {
  padding-right: 0; }
  .ad-container .small-ads {
    display: block; }
    @media only screen and (min-width: 948px) {
      .ad-container .small-ads {
        display: none; } }
  .ad-container .large-ads {
    display: none; }
    @media only screen and (min-width: 948px) {
      .ad-container .large-ads {
        display: block; } }
  .ad-container .text-right, .ad-container .text-center {
    background-color: white;
    padding: 10px 10px 30px 10px;
    border: solid 1px #CCC;
    border-radius: 5px;
    box-shadow: 3px 3px 5px #888; }

.page-homepage .main-description {
  text-align: center;
  border-bottom: solid 1px white;
  margin-bottom: 1.25em;
  padding-bottom: 1.25em; }
.page-homepage .useful-links {
  padding: 0.625em; }
  .page-homepage .useful-links > div {
    margin-bottom: 10px; }

@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important; }

  a,
  a:visited {
    text-decoration: underline; }

  a[href]:after {
    content: " (" attr(href) ")"; }

  abbr[title]:after {
    content: " (" attr(title) ")"; }

  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: ""; }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }

  thead {
    display: table-header-group; }

  tr,
  img {
    page-break-inside: avoid; }

  img {
    max-width: 100% !important; }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }

  h2,
  h3 {
    page-break-after: avoid; } }
.editorial {
  padding-top: 20px; }

.link-container {
  margin-bottom: 1.25em; }
  .link-container > p {
    margin: 0; }
  .link-container a {
    text-decoration: underline; }

.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0; }

.main-container {
  background-color: #AFCDE9;
  background-image: -webkit-linear-gradient(#AFCDE9, white);
  background-image: linear-gradient(#AFCDE9, white); }

.content-container {
  padding-top: 135px;
  padding-bottom: 1.25em; }
  @media only screen and (min-width: 48em) {
    .content-container {
      padding-top: 60px; } }

.page-inner {
  background-color: white;
  padding: 0.5em;
  border: solid 1px #CCC;
  border-radius: 5px;
  box-shadow: 3px 3px 5px #888; }

/*# sourceMappingURL=main.css.map */
