/*
*
* Responsive grid-based system using SASS
* Jason Rodriguez December 23,2014
*
*/
/*
*
* Defaulted global variables
*
*/
/*
*
* Utility and helper functions to setup mixin parameters as well as fetch
* parameter data
*
*/
/*
*
* Base-level mixins used in the composition of the primary mixins
*
*/
/*
*
* Main mixins for defining the responsive grid system
*
*/
/*! 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; }

/*
 * Web Fonts from fontspring.com
 *
 * All OpenType features and all extended glyphs have been removed.
 * Fully installable fonts can be purchased at http://www.fontspring.com
 *
 * The fonts included in this stylesheet are subject to the End User License you purchased
 * from Fontspring. The fonts are protected under domestic and international trademark and 
 * copyright law. You are prohibited from modifying, reverse engineering, duplicating, or
 * distributing this font software.
 *
 * (c) 2010-2012 Fontspring
 *
 *
 *
 *
 * The fonts included are copyrighted by the vendor listed below.
 *
 * Vendor:      Mark Simonson Studio
 * License URL: http://www.fontspring.com/fflicense/mark-simonson-studio
 *
 *
 */
@font-face {
  font-family: "proximanova-bold";
  src: url("/noindex/fonts/proximanova_bold_macroman/ProximaNova-Bold-webfont.eot");
  src: url("/noindex/fonts/proximanova_bold_macroman/ProximaNova-Bold-webfont.eot?#iefix") format("embedded-opentype"), url("/noindex/fonts/proximanova_bold_macroman/ProximaNova-Bold-webfont.woff") format("woff"), url("/noindex/fonts/proximanova_bold_macroman/ProximaNova-Bold-webfont.ttf") format("truetype"), url("/noindex/fonts/proximanova_bold_macroman/ProximaNova-Bold-webfont.svg#proximanova-bold") format("svg");
  font-weight: normal;
  font-style: normal; }
.proximanova-bold {
  font-family: "proximanova-bold", Arial, sans-serif; }

@font-face {
  font-family: "proximanova-regular";
  src: url("/noindex/fonts/proximanova_regular_macroman/ProximaNova-Reg-webfont.eot");
  src: url("/noindex/fonts/proximanova_regular_macroman/ProximaNova-Reg-webfont.eot?#iefix") format("embedded-opentype"), url("/noindex/fonts/proximanova_regular_macroman/ProximaNova-Reg-webfont.woff") format("woff"), url("/noindex/fonts/proximanova_regular_macroman/ProximaNova-Reg-webfont.ttf") format("truetype"), url("/noindex/fonts/proximanova_regular_macroman/ProximaNova-Reg-webfont.svg#proximanova-regular") format("svg");
  font-weight: normal;
  font-style: normal; }
.proximanova-regular {
  font-family: "proximanova-regular", Arial, sans-serif; }

@font-face {
  font-family: "proximanova-black";
  src: url("/noindex/fonts/proximanova_black_macroman/ProximaNova-Black-webfont.eot");
  src: url("/noindex/fonts/proximanova_black_macroman/ProximaNova-Black-webfont.eot?#iefix") format("embedded-opentype"), url("/noindex/fonts/proximanova_black_macroman/ProximaNova-Black-webfont.woff") format("woff"), url("/noindex/fonts/proximanova_black_macroman/ProximaNova-Black-webfont.ttf") format("truetype"), url("/noindex/fonts/proximanova_black_macroman/ProximaNova-Black-webfont.svg#proximanova-black") format("svg");
  font-weight: normal;
  font-style: normal; }
.proximanova-black {
  font-family: "proximanova-black", Arial, sans-serif; }

@font-face {
  font-family: "proximanova-black-italic";
  src: url("/noindex/fonts/proximanova_blackitalic_macroman/ProximaNova-BlackIt-webfont.eot");
  src: url("/noindex/fonts/proximanova_blackitalic_macroman/ProximaNova-BlackIt-webfont.eot?#iefix") format("embedded-opentype"), url("/noindex/fonts/proximanova_blackitalic_macroman/ProximaNova-BlackIt-webfont.woff") format("woff"), url("/noindex/fonts/proximanova_blackitalic_macroman/ProximaNova-BlackIt-webfont.ttf") format("truetype"), url("/noindex/fonts/proximanova_blackitalic_macroman/ProximaNova-BlackIt-webfont.svg#proximanova-black-italic") format("svg");
  font-weight: normal;
  font-style: normal; }
.proximanova-black-italic {
  font-family: "proximanova-black-italic", Arial, sans-serif; }

@font-face {
  font-family: "proximanova-bold-italic";
  src: url("/noindex/fonts/proximanova_bolditalic_macroman/ProximaNova-BoldIt-webfont.eot");
  src: url("/noindex/fonts/proximanova_bolditalic_macroman/ProximaNova-BoldIt-webfont.eot?#iefix") format("embedded-opentype"), url("/noindex/fonts/proximanova_bolditalic_macroman/ProximaNova-BoldIt-webfont.woff") format("woff"), url("/noindex/fonts/proximanova_bolditalic_macroman/ProximaNova-BoldIt-webfont.ttf") format("truetype"), url("/noindex/fonts/proximanova_bolditalic_macroman/ProximaNova-BoldIt-webfont.svg#proximanova-bold-italic") format("svg");
  font-weight: normal;
  font-style: normal; }
.proximanova-bold-italic {
  font-family: "proximanova-bold-italic", Arial, sans-serif; }

@font-face {
  font-family: "proximanova-extrabold";
  src: url("/noindex/fonts/proximanova_extrabold_macroman/ProximaNova-XBold-webfont.eot");
  src: url("/noindex/fonts/proximanova_extrabold_macroman/ProximaNova-XBold-webfont.eot?#iefix") format("embedded-opentype"), url("/noindex/fonts/proximanova_extrabold_macroman/ProximaNova-XBold-webfont.woff") format("woff"), url("/noindex/fonts/proximanova_extrabold_macroman/ProximaNova-XBold-webfont.ttf") format("truetype"), url("/noindex/fonts/proximanova_extrabold_macroman/ProximaNova-XBold-webfont.svg#proximanova-extrabold") format("svg");
  font-weight: normal;
  font-style: normal; }
.proximanova-extrabold {
  font-family: "proximanova-extrabold", Arial, sans-serif; }

@font-face {
  font-family: "proximanova-extrabold-italic";
  src: url("/noindex/fonts/proximanova_extrabold_macroman/ProximaNova-XBoldIt-webfont.eot");
  src: url("/noindex/fonts/proximanova_extrabold_macroman/ProximaNova-XBoldIt-webfont.eot?#iefix") format("embedded-opentype"), url("/noindex/fonts/proximanova_extrabold_macroman/ProximaNova-XBoldIt-webfont.woff") format("woff"), url("/noindex/fonts/proximanova_extrabold_macroman/ProximaNova-XBoldIt-webfont.ttf") format("truetype"), url("/noindex/fonts/proximanova_extrabold_macroman/ProximaNova-XBoldIt-webfont.svg#proximanova-extrabold-italic") format("svg");
  font-weight: normal;
  font-style: normal; }
.proximanova-extrabold-italic {
  font-family: "proximanova-extrabold-italic", Arial, sans-serif; }

@font-face {
  font-family: "proximanova-regular-italic";
  src: url("/noindex/fonts/proximanova_italic_macroman/ProximaNova-RegIt-webfont.eot");
  src: url("/noindex/fonts/proximanova_italic_macroman/ProximaNova-RegIt-webfont.eot?#iefix") format("embedded-opentype"), url("/noindex/fonts/proximanova_italic_macroman/ProximaNova-RegIt-webfont.woff") format("woff"), url("/noindex/fonts/proximanova_italic_macroman/ProximaNova-RegIt-webfont.ttf") format("truetype"), url("/noindex/fonts/proximanova_italic_macroman/ProximaNova-RegIt-webfont.svg#proximanova-regular-italic") format("svg");
  font-weight: normal;
  font-style: normal; }
.proximanova-regular-italic {
  font-family: "proximanova-regular-italic", Arial, sans-serif; }

@font-face {
  font-family: "proximanova-light";
  src: url("/noindex/fonts/proximanova_light_macroman/ProximaNova-Light-webfont.eot");
  src: url("/noindex/fonts/proximanova_light_macroman/ProximaNova-Light-webfont.eot?#iefix") format("embedded-opentype"), url("/noindex/fonts/proximanova_light_macroman/ProximaNova-Light-webfont.woff") format("woff"), url("/noindex/fonts/proximanova_light_macroman/ProximaNova-Light-webfont.ttf") format("truetype"), url("/noindex/fonts/proximanova_light_macroman/ProximaNova-Light-webfont.svg#proximanova-light") format("svg");
  font-weight: normal;
  font-style: normal; }
.proximanova-light {
  font-family: "proximanova-light", Arial, sans-serif; }

@font-face {
  font-family: "proximanova-light-italic";
  src: url("/noindex/fonts/proximanova_lightitalic_macroman/ProximaNova-LightIt-webfont.eot");
  src: url("/noindex/fonts/proximanova_lightitalic_macroman/ProximaNova-LightIt-webfont.eot?#iefix") format("embedded-opentype"), url("/noindex/fonts/proximanova_lightitalic_macroman/ProximaNova-LightIt-webfont.woff") format("woff"), url("/noindex/fonts/proximanova_lightitalic_macroman/ProximaNova-LightIt-webfont.ttf") format("truetype"), url("/noindex/fonts/proximanova_lightitalic_macroman/ProximaNova-LightIt-webfont.svg#proximanova-light-italic") format("svg");
  font-weight: normal;
  font-style: normal; }
.proximanova-light-italic {
  font-family: "proximanova-light-italic", Arial, sans-serif; }

@font-face {
  font-family: "proximanova-semibold";
  src: url("/noindex/fonts/proximanova_semibold_macroman/ProximaNova-Sbold-webfont.eot");
  src: url("/noindex/fonts/proximanova_semibold_macroman/ProximaNova-Sbold-webfont.eot?#iefix") format("embedded-opentype"), url("/noindex/fonts/proximanova_semibold_macroman/ProximaNova-Sbold-webfont.woff") format("woff"), url("/noindex/fonts/proximanova_semibold_macroman/ProximaNova-Sbold-webfont.ttf") format("truetype"), url("/noindex/fonts/proximanova_semibold_macroman/ProximaNova-Sbold-webfont.svg#proximanova-semibold") format("svg");
  font-weight: normal;
  font-style: normal; }
.proximanova-semibold {
  font-family: "proximanova-semibold", Arial, sans-serif; }

@font-face {
  font-family: "proximanova-semibold-italic";
  src: url("/noindex/fonts/proximanova_semibolditalic_macroman/ProximaNova-SboldIt-webfont.eot");
  src: url("/noindex/fonts/proximanova_semibolditalic_macroman/ProximaNova-SboldIt-webfont.eot?#iefix") format("embedded-opentype"), url("/noindex/fonts/proximanova_semibolditalic_macroman/ProximaNova-SboldIt-webfont.woff") format("woff"), url("/noindex/fonts/proximanova_semibolditalic_macroman/ProximaNova-SboldIt-webfont.ttf") format("truetype"), url("/noindex/fonts/proximanova_semibolditalic_macroman/ProximaNova-SboldIt-webfont.svg#proximanova-semibold-italic") format("svg");
  font-weight: normal;
  font-style: normal; }
.proximanova-semibold-italic {
  font-family: "proximanova-semibold-italic", Arial, sans-serif; }

@font-face {
  font-family: "proximanova-thin";
  src: url("/noindex/fonts/proximanova_thin_macroman/ProximaNova-Thin-webfont.eot");
  src: url("/noindex/fonts/proximanova_thin_macroman/ProximaNova-Thin-webfont.eot?#iefix") format("embedded-opentype"), url("/noindex/fonts/proximanova_thin_macroman/ProximaNova-Thin-webfont.woff") format("woff"), url("/noindex/fonts/proximanova_thin_macroman/ProximaNova-Thin-webfont.ttf") format("truetype"), url("/noindex/fonts/proximanova_thin_macroman/ProximaNova-Thin-webfont.svg#proximanova-thin") format("svg");
  font-weight: normal;
  font-style: normal; }
.proximanova-thin {
  font-family: "proximanova-thin", Arial, sans-serif; }

@font-face {
  font-family: "proximanova-thin-italic";
  src: url("/noindex/fonts/proximanova_thinitalic_macroman/ProximaNova-ThinIt-webfont.eot");
  src: url("/noindex/fonts/proximanova_thinitalic_macroman/ProximaNova-ThinIt-webfont.eot?#iefix") format("embedded-opentype"), url("/noindex/fonts/proximanova_thinitalic_macroman/ProximaNova-ThinIt-webfont.woff") format("woff"), url("/noindex/fonts/proximanova_thinitalic_macroman/ProximaNova-ThinIt-webfont.ttf") format("truetype"), url("/noindex/fonts/proximanova_thinitalic_macroman/ProximaNova-ThinIt-webfont.svg#proximanova-thin-italic") format("svg");
  font-weight: normal;
  font-style: normal; }
.proximanova-thin-italic {
  font-family: "proximanova-thin-italic", Arial, sans-serif; }

@-webkit-keyframes preloader-data {
  0% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    opacity: 1; }
  9.09091% {
    -webkit-transform: matrix3d(0.86603, 0.5, 0, 0, -0.5, 0.86603, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    opacity: 1; }
  18.1818% {
    -webkit-transform: matrix3d(0.5, 0.86603, 0, 0, -0.86603, 0.5, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    opacity: 1; }
  27.2727% {
    -webkit-transform: matrix3d(0.0, 1, 0, 0, -1, 0.0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    opacity: 1; }
  36.3636% {
    -webkit-transform: matrix3d(-0.5, 0.86603, 0, 0, -0.86603, -0.5, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    opacity: 1; }
  45.4545% {
    -webkit-transform: matrix3d(-0.86603, 0.5, 0, 0, -0.5, -0.86603, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    opacity: 1; }
  54.5455% {
    -webkit-transform: matrix3d(-1, 0.0, 0, 0, 0.0, -1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    opacity: 1; }
  63.6364% {
    -webkit-transform: matrix3d(-0.86603, -0.5, 0, 0, 0.5, -0.86603, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    opacity: 1; }
  72.7273% {
    -webkit-transform: matrix3d(-0.5, -0.86603, 0, 0, 0.86603, -0.5, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    opacity: 1; }
  81.8182% {
    -webkit-transform: matrix3d(0.0, -1, 0, 0, 1, 0.0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    opacity: 1; }
  90.9091% {
    -webkit-transform: matrix3d(0.5, -0.86603, 0, 0, 0.86603, 0.5, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    opacity: 1; }
  100% {
    -webkit-transform: matrix3d(0.86603, -0.5, 0, 0, 0.5, 0.86603, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    opacity: 1; } }
@keyframes preloader-data {
  0% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    opacity: 1; }
  9.09091% {
    transform: matrix3d(0.86603, 0.5, 0, 0, -0.5, 0.86603, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    opacity: 1; }
  18.1818% {
    transform: matrix3d(0.5, 0.86603, 0, 0, -0.86603, 0.5, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    opacity: 1; }
  27.2727% {
    transform: matrix3d(0.0, 1, 0, 0, -1, 0.0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    opacity: 1; }
  36.3636% {
    transform: matrix3d(-0.5, 0.86603, 0, 0, -0.86603, -0.5, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    opacity: 1; }
  45.4545% {
    transform: matrix3d(-0.86603, 0.5, 0, 0, -0.5, -0.86603, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    opacity: 1; }
  54.5455% {
    transform: matrix3d(-1, 0.0, 0, 0, 0.0, -1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    opacity: 1; }
  63.6364% {
    transform: matrix3d(-0.86603, -0.5, 0, 0, 0.5, -0.86603, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    opacity: 1; }
  72.7273% {
    transform: matrix3d(-0.5, -0.86603, 0, 0, 0.86603, -0.5, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    opacity: 1; }
  81.8182% {
    transform: matrix3d(0.0, -1, 0, 0, 1, 0.0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    opacity: 1; }
  90.9091% {
    transform: matrix3d(0.5, -0.86603, 0, 0, 0.86603, 0.5, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    opacity: 1; }
  100% {
    transform: matrix3d(0.86603, -0.5, 0, 0, 0.5, 0.86603, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    opacity: 1; } }
* {
  box-sizing: border-box; }

body {
  background-color: #ccc;
  color: #333;
  font-family: "proximanova-regular", Arial, sans-serif; }

h1, h2, h3 {
  font-family: "proximanova-bold", Arial, sans-serif;
  letter-spacing: -1px; }

h2 {
  font-size: 30px; }

a {
  text-decoration: none; }

.clearfix:before, .clearfix:after {
  display: table;
  content: " "; }
.clearfix:after {
  clear: both; }

.bottom-half, #analytics {
  width: 100%;
  background-color: #ccc; }

.header, .main-body, .reporters, .footer, .container {
  width: 90%;
  display: block;
  padding: 0px 0px;
  margin: 0px 0px;
  border: none;
  border-width: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  overflow: hidden;
  position: static; }

.main-body-root {
  background: url(../_img/page-bkg%5B1%5D.jpg) no-repeat scroll center top;
  background-color: #fff;
  width: 100%; }

.header {
  width: 100%;
  height: 30px;
  background-color: #222;
  margin-bottom: 0px; }

.cbn-logo {
  width: 100px;
  margin-top: 7px; }

.title-image {
  margin-top: 15px;
  margin-bottom: 10px; }

.title-description {
  margin-top: 10px;
  margin-bottom: 25px;
  font-size: 18px; }

.row {
  display: block;
  padding: 0px 0px;
  margin: 0px 0px;
  border: none;
  border-width: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: -15px;
  margin-right: -15px; }
  .row:before, .row:after {
    display: table;
    content: " "; }
  .row:after {
    clear: both; }

.thumbnail-row {
  display: block;
  padding: 0px 0px;
  margin: 0px 0px;
  border: none;
  border-width: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: -10px;
  margin-right: -10px; }
  .thumbnail-row:before, .thumbnail-row:after {
    display: table;
    content: " "; }
  .thumbnail-row:after {
    clear: both; }

.reporter-row {
  display: block;
  padding: 0px 0px;
  margin: 0px 0px;
  border: none;
  border-width: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: -5px;
  margin-right: -5px; }
  .reporter-row:before, .reporter-row:after {
    display: table;
    content: " "; }
  .reporter-row:after {
    clear: both; }

.left-column {
  display: block;
  padding: 0px 0px;
  margin: 0px 0px;
  border: none;
  border-width: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  width: 71.42857%;
  float: left;
  margin-right: -100%;
  margin-left: 0%; }
  @media only screen and (max-width: 800px) {
    .left-column {
      display: block;
      padding: 0px 0px;
      margin: 0px 0px;
      border: none;
      border-width: 0px;
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      padding-left: 15px;
      padding-right: 15px;
      width: 100%;
      float: right;
      margin-left: -100%;
      margin-right: 0%; } }

.right-column {
  display: block;
  padding: 0px 0px;
  margin: 0px 0px;
  border: none;
  border-width: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  width: 28.57143%;
  float: right;
  margin-left: -100%;
  margin-right: 0%; }
  @media only screen and (max-width: 800px) {
    .right-column {
      clear: both;
      display: block;
      padding: 0px 0px;
      margin: 0px 0px;
      border: none;
      border-width: 0px;
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      padding-left: 15px;
      padding-right: 15px;
      width: 100%;
      float: right;
      margin-left: -100%;
      margin-right: 0%; } }

.video-container-type {
  background-color: #000; }

.video-thumbnail-block {
  margin-top: 25px; }

.video-thumbnail {
  margin-bottom: 20px;
  position: relative;
  float: left;
  width: calc(25% - 20px);
  width: 23.3% \9;
  margin-left: 10px;
  margin-right: 10px; }
  @media only screen and (max-width: 1100px) {
    .video-thumbnail {
      width: calc(33.333% - 20px); } }
  @media only screen and (max-width: 800px) {
    .video-thumbnail {
      width: calc(50% - 20px); } }

.video-overlay {
  opacity: 0;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  transition-property: opacity;
  transition-duration: .2s; }
  .video-overlay:hover {
    opacity: .5; }
  .video-overlay:active {
    opacity: 1; }

.twitter-timeline {
  width: 100% !important;
  height: 750px; }
  @media only screen and (max-width: 800px) {
    .twitter-timeline {
      margin-bottom: 25px;
      height: 400px; } }
  @media only screen and (max-width: 400px) {
    .twitter-timeline {
      width: 98% !important; } }

.giving-button {
  background-color: #0ca3d4;
  background: linear-gradient(#0ca3d4, #0a95c3);
  padding: 15px;
  border-bottom-width: 5px;
  border-bottom-color: #097fa6;
  border-bottom-style: solid;
  text-align: center;
  color: #fff;
  font-size: 30px;
  font-family: "proximanova-semibold", Arial, sans-serif;
  transition-property: background-color;
  transition-duration: .2s;
  margin-bottom: 25px; }
  .giving-button:hover {
    background-color: #21bff2; }
  @media only screen and (max-width: 1150px) {
    .giving-button {
      font-size: 25px; } }
  @media only screen and (max-width: 980px) {
    .giving-button {
      font-size: 20px; } }
  @media only screen and (max-width: 800px) {
    .giving-button {
      display: none; } }

.iphone-size {
  display: none; }
  @media only screen and (max-width: 800px) {
    .iphone-size {
      display: block;
      margin-left: auto;
      margin-right: auto;
      font-size: 30px; } }

.thumbnail-title {
  margin-top: 5px;
  margin-bottom: 0px;
  height: 50px;
  font-size: 14px;
  text-align: center;
  overflow: hidden; }

.img-responsive {
  max-width: 100%;
  display: block; }

.thumbnail-col-1 {
  display: block;
  padding: 0px 0px;
  margin: 0px 0px;
  border: none;
  border-width: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 10px;
  padding-right: 10px;
  width: 25%;
  float: left;
  margin-right: -100%;
  margin-left: 0%; }

.thumbnail-col-2 {
  display: block;
  padding: 0px 0px;
  margin: 0px 0px;
  border: none;
  border-width: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 10px;
  padding-right: 10px;
  width: 25%;
  float: left;
  margin-right: -100%;
  margin-left: 25%; }

.thumbnail-col-3 {
  display: block;
  padding: 0px 0px;
  margin: 0px 0px;
  border: none;
  border-width: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 10px;
  padding-right: 10px;
  width: 25%;
  float: left;
  margin-right: -100%;
  margin-left: 50%; }

.thumbnail-col-4 {
  display: block;
  padding: 0px 0px;
  margin: 0px 0px;
  border: none;
  border-width: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 10px;
  padding-right: 10px;
  width: 25%;
  float: right;
  margin-left: -100%;
  margin-right: 0%; }

.reporter-col-1 {
  display: block;
  padding: 0px 0px;
  margin: 0px 0px;
  border: none;
  border-width: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 10px;
  padding-right: 10px;
  width: 25%;
  float: left;
  margin-right: -100%;
  margin-left: 0%; }

.reporter-col-2 {
  display: block;
  padding: 0px 0px;
  margin: 0px 0px;
  border: none;
  border-width: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 10px;
  padding-right: 10px;
  width: 25%;
  float: left;
  margin-right: -100%;
  margin-left: 25%; }

.reporter-col-3 {
  display: block;
  padding: 0px 0px;
  margin: 0px 0px;
  border: none;
  border-width: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 10px;
  padding-right: 10px;
  width: 25%;
  float: left;
  margin-right: -100%;
  margin-left: 50%; }

.reporter-col-4 {
  display: block;
  padding: 0px 0px;
  margin: 0px 0px;
  border: none;
  border-width: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 10px;
  padding-right: 10px;
  width: 25%;
  float: right;
  margin-left: -100%;
  margin-right: 0%; }

.reporter-pic {
  width: 100%; }
  .reporter-pic img {
    width: 100%;
    display: block; }

.reporter-info {
  width: 100%;
  padding-left: 5px;
  text-align: center; }

.reporter-wrapper {
  margin-bottom: 25px;
  padding: 10px;
  float: left;
  width: calc(25% - 10px);
  width: 23.3% \9;
  margin-left: 5px;
  margin-right: 5px;
  background-color: #ddd;
  border-radius: 5px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1); }
  @media only screen and (max-width: 1450px) {
    .reporter-wrapper {
      width: calc(33.33% - 10px); } }
  @media only screen and (max-width: 1050px) {
    .reporter-wrapper {
      width: calc(50% - 10px); } }
  @media only screen and (max-width: 675px) {
    .reporter-wrapper {
      width: calc(100% - 10px); } }

.reporter-name {
  margin-top: 0px;
  margin-bottom: 15px;
  font-size: 20px;
  font-family: "proximanova-semibold", Arial, sans-serif;
  font-weight: 100;
  letter-spacing: -1px; }
  @media only screen and (max-width: 1100px) {
    .reporter-name {
      font-size: 17px; } }
  @media only screen and (max-width: 1050px) {
    .reporter-name {
      font-size: 19px; } }
  @media only screen and (max-width: 675px) {
    .reporter-name {
      font-size: 21px; } }

.follow-button {
  color: #fff;
  background-color: #444;
  background: linear-gradient(#444, #333);
  padding: 10px;
  padding-bottom: 15px;
  padding-right: 10px;
  border-radius: 5px;
  width: 85%;
  width: 100% \9;
  margin: 0 auto;
  margin-top: 10px;
  position: relative;
  text-align: center; }
  .follow-button:hover {
    background-color: #008dc6;
    background: linear-gradient(#008dc6, #006993); }
  .follow-button img {
    display: block;
    width: 50px;
    position: absolute;
    top: 16px;
    left: -25px; }
  .follow-button p {
    margin: 0 auto;
    display: block;
    position: relative;
    text-align: left;
    padding-left: 35px; }

.reporter-handles {
  display: inline-block;
  margin: 0 auto;
  margin-bottom: 0px;
  margin-top: 15px; }

.fb-logo {
  display: block;
  width: 50px;
  float: left;
  margin-right: 10px;
  margin-top: -5px; }

.preloader {
  width: 80px;
  margin: 0;
  overflow: hidden;
  float: right;
  -webkit-animation-name: preloader-data;
  -webkit-animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: step-end;
  animation-name: preloader-data;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: step-end; }

.loading-text {
  color: #333;
  font-size: 20px;
  float: left;
  margin-top: 17px; }

.preloader-wrapper {
  background-color: #eee;
  width: 100%;
  max-width: 190px;
  margin: 0 auto;
  margin-bottom: 45px;
  padding: 15px;
  padding-left: 16px;
  padding-right: 0px;
  border-radius: 5px; }
  .preloader-wrapper:before, .preloader-wrapper:after {
    display: table;
    content: " "; }
  .preloader-wrapper:after {
    clear: both; }

/*# sourceMappingURL=cbnnewssupersunday.css.map */
