/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
/* line 6, ../../../sass/src/_reset.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
/* line 27, ../../../sass/src/_reset.scss */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* line 31, ../../../sass/src/_reset.scss */
body {
  line-height: 1;
}

/* line 34, ../../../sass/src/_reset.scss */
ol, ul {
  list-style: none;
}

/* line 37, ../../../sass/src/_reset.scss */
blockquote, q {
  quotes: none;
}
/* line 39, ../../../sass/src/_reset.scss */
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

/* line 44, ../../../sass/src/_reset.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* line 26, ../../../sass/src/_animations.scss */
.turning {
  animation-name: turning;
  -webkit-animation-name: turning;
  animation-duration: 5s;
  -webkit-animation-duration: 5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
}

@keyframes turning {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes turning {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================

Made by Justin Aguilar

www.justinaguilar.com/animations/

Questions, comments, concerns, love letters:
justin@justinaguilar.com
==============================================
*/
/*
==============================================
slideDown
==============================================
*/
/* line 79, ../../../sass/src/_animations.scss */
.slideDown {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(8%);
  }
  65% {
    transform: translateY(-4%);
  }
  80% {
    transform: translateY(4%);
  }
  95% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  65% {
    -webkit-transform: translateY(-4%);
  }
  80% {
    -webkit-transform: translateY(4%);
  }
  95% {
    -webkit-transform: translateY(-2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideUp
==============================================
*/
/* line 141, ../../../sass/src/_animations.scss */
.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(-8%);
  }
  65% {
    transform: translateY(4%);
  }
  80% {
    transform: translateY(-4%);
  }
  95% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }
  50% {
    -webkit-transform: translateY(-8%);
  }
  65% {
    -webkit-transform: translateY(4%);
  }
  80% {
    -webkit-transform: translateY(-4%);
  }
  95% {
    -webkit-transform: translateY(2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideLeft
==============================================
*/
/* line 203, ../../../sass/src/_animations.scss */
.slideLeft {
  animation-name: slideLeft;
  -webkit-animation-name: slideLeft;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes slideLeft {
  0% {
    transform: translateX(150%);
  }
  50% {
    transform: translateX(-8%);
  }
  65% {
    transform: translateX(4%);
  }
  80% {
    transform: translateX(-4%);
  }
  95% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(150%);
  }
  50% {
    -webkit-transform: translateX(-8%);
  }
  65% {
    -webkit-transform: translateX(4%);
  }
  80% {
    -webkit-transform: translateX(-4%);
  }
  95% {
    -webkit-transform: translateX(2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideRight
==============================================
*/
/* line 265, ../../../sass/src/_animations.scss */
.slideRight {
  animation-name: slideRight;
  -webkit-animation-name: slideRight;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes slideRight {
  0% {
    transform: translateX(-150%);
  }
  50% {
    transform: translateX(8%);
  }
  65% {
    transform: translateX(-4%);
  }
  80% {
    transform: translateX(4%);
  }
  95% {
    transform: translateX(-2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(-150%);
  }
  50% {
    -webkit-transform: translateX(8%);
  }
  65% {
    -webkit-transform: translateX(-4%);
  }
  80% {
    -webkit-transform: translateX(4%);
  }
  95% {
    -webkit-transform: translateX(-2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideExpandUp
==============================================
*/
/* line 327, ../../../sass/src/_animations.scss */
.slideExpandUp {
  animation-name: slideExpandUp;
  -webkit-animation-name: slideExpandUp;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease -out;
  visibility: visible !important;
}

@keyframes slideExpandUp {
  0% {
    transform: translateY(100%) scaleX(0.5);
  }
  30% {
    transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    transform: translateY(2%) scaleX(0.5);
  }
  50% {
    transform: translateY(0%) scaleX(1.1);
  }
  60% {
    transform: translateY(0%) scaleX(0.9);
  }
  70% {
    transform: translateY(0%) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleX(0.95);
  }
  90% {
    transform: translateY(0%) scaleX(1.02);
  }
  100% {
    transform: translateY(0%) scaleX(1);
  }
}
@-webkit-keyframes slideExpandUp {
  0% {
    -webkit-transform: translateY(100%) scaleX(0.5);
  }
  30% {
    -webkit-transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    -webkit-transform: translateY(2%) scaleX(0.5);
  }
  50% {
    -webkit-transform: translateY(0%) scaleX(1.1);
  }
  60% {
    -webkit-transform: translateY(0%) scaleX(0.9);
  }
  70% {
    -webkit-transform: translateY(0%) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleX(0.95);
  }
  90% {
    -webkit-transform: translateY(0%) scaleX(1.02);
  }
  100% {
    -webkit-transform: translateY(0%) scaleX(1);
  }
}
/*
==============================================
expandUp
==============================================
*/
/* line 407, ../../../sass/src/_animations.scss */
.expandUp {
  animation-name: expandUp;
  -webkit-animation-name: expandUp;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes expandUp {
  0% {
    transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    transform: translateY(3%);
  }
  100% {
    transform: translateY(0%) scale(1) scaleY(1);
  }
}
@-webkit-keyframes expandUp {
  0% {
    -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    -webkit-transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    -webkit-transform: translateY(3%);
  }
  100% {
    -webkit-transform: translateY(0%) scale(1) scaleY(1);
  }
}
/*
==============================================
fadeIn
==============================================
*/
/* line 456, ../../../sass/src/_animations.scss */
.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0.0;
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: scale(0);
    opacity: 0.0;
  }
  60% {
    -webkit-transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.9);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
/*
==============================================
expandOpen
==============================================
*/
/* line 512, ../../../sass/src/_animations.scss */
.expandOpen {
  animation-name: expandOpen;
  -webkit-animation-name: expandOpen;
  animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}

@keyframes expandOpen {
  0% {
    transform: scale(1.8);
  }
  50% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes expandOpen {
  0% {
    -webkit-transform: scale(1.8);
  }
  50% {
    -webkit-transform: scale(0.95);
  }
  80% {
    -webkit-transform: scale(1.05);
  }
  90% {
    -webkit-transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
/*
==============================================
bigEntrance
==============================================
*/
/* line 568, ../../../sass/src/_animations.scss */
.bigEntrance {
  animation-name: bigEntrance;
  -webkit-animation-name: bigEntrance;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}

@keyframes bigEntrance {
  0% {
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes bigEntrance {
  0% {
    -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
/*
==============================================
hatch
==============================================
*/
/* line 649, ../../../sass/src/_animations.scss */
.hatch {
  animation-name: hatch;
  -webkit-animation-name: hatch;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  visibility: visible !important;
}

@keyframes hatch {
  0% {
    transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    transform: rotate(2deg) scaleY(1);
  }
  50% {
    transform: rotate(-2deg);
  }
  65% {
    transform: rotate(1deg);
  }
  80% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes hatch {
  0% {
    -webkit-transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    -webkit-transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    -webkit-transform: rotate(2deg) scaleY(1);
  }
  50% {
    -webkit-transform: rotate(-2deg);
  }
  65% {
    -webkit-transform: rotate(1deg);
  }
  80% {
    -webkit-transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
/*
==============================================
pulse
==============================================
*/
/* line 720, ../../../sass/src/_animations.scss */
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.95);
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
  }
  50% {
    -webkit-transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.95);
  }
}
/*
==============================================
floating
==============================================
*/
/* line 767, ../../../sass/src/_animations.scss */
.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(8%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
tossing
==============================================
*/
/* line 808, ../../../sass/src/_animations.scss */
.tossing {
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes tossing {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
  }
  100% {
    -webkit-transform: rotate(-4deg);
  }
}
/*
==============================================
pullUp
==============================================
*/
/* line 849, ../../../sass/src/_animations.scss */
.pullUp {
  animation-name: pullUp;
  -webkit-animation-name: pullUp;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}

@keyframes pullUp {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullUp {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
pullDown
==============================================
*/
/* line 918, ../../../sass/src/_animations.scss */
.pullDown {
  animation-name: pullDown;
  -webkit-animation-name: pullDown;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}

@keyframes pullDown {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullDown {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
stretchLeft
==============================================
*/
/* line 987, ../../../sass/src/_animations.scss */
.stretchLeft {
  animation-name: stretchLeft;
  -webkit-animation-name: stretchLeft;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}

@keyframes stretchLeft {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchLeft {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
/*
==============================================
stretchRight
==============================================
*/
/* line 1056, ../../../sass/src/_animations.scss */
.stretchRight {
  animation-name: stretchRight;
  -webkit-animation-name: stretchRight;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
}

@keyframes stretchRight {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchRight {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
/* line 3, ../../../sass/src/_typography.scss */
html {
  font-size: 100%;
}

/* line 5, ../../../sass/src/_typography.scss */
a, a:link, a:visited, a:active {
  color: #333333;
  text-decoration: none;
}

/* line 9, ../../../sass/src/_typography.scss */
a:hover {
  color: #5cad5e;
  text-decoration: none;
}

/* line 14, ../../../sass/src/_typography.scss */
h1, h2, h3, h4, h5, h6, legend {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  font-family: "proxima-nova-extra-condensed", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #333333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}
/* line 19, ../../../sass/src/_typography.scss */
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong, legend strong {
  font-weight: 700;
}
/* line 20, ../../../sass/src/_typography.scss */
h1:first-of-type, h2:first-of-type, h3:first-of-type, h4:first-of-type, h5:first-of-type, h6:first-of-type, legend:first-of-type {
  margin-top: 0;
}

/* line 27, ../../../sass/src/_typography.scss */
h1, h2, legend {
  font-size: 2.3rem;
  margin: 30px 0 30px 0;
  line-height: 2.6rem;
  font-weight: 700;
}
@media screen and (max-width: 430px) {
  /* line 27, ../../../sass/src/_typography.scss */
  h1, h2, legend {
    font-size: 1.8rem;
    line-height: 2.0rem;
    margin: 20px 0 25px 0;
  }
}

/* line 39, ../../../sass/src/_typography.scss */
h3 {
  color: #2a4e73;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 20px 0;
}

/* line 48, ../../../sass/src/_typography.scss */
.metadata {
  margin: 0 0 0 0;
  font-family: "proxima-nova-extra-condensed", Helvetica, Arial, sans-serif;
}
/* line 52, ../../../sass/src/_typography.scss */
.metadata .postCategory {
  color: #2a4e73;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 0 0;
}
/* line 59, ../../../sass/src/_typography.scss */
.metadata .postCategory a, .metadata .postCategory a:link, .metadata .postCategory a:visited, .metadata .postCategory a:active {
  color: #2a4e73;
}

/* line 64, ../../../sass/src/_typography.scss */
h4 {
  font-size: 1.4rem;
  margin: 20px 0 20px 0;
}

/* line 68, ../../../sass/src/_typography.scss */
h5 {
  font-size: 1.2rem;
  margin: 15px 0 15px 0;
}

/* line 72, ../../../sass/src/_typography.scss */
h6 {
  font-size: 1.1rem;
  margin: 12px 0 12px 0;
}

/* line 77, ../../../sass/src/_typography.scss */
body, p, li, td, th {
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #333333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}
/* line 80, ../../../sass/src/_typography.scss */
body strong, p strong, li strong, td strong, th strong {
  font-weight: 700;
}
/* line 86, ../../../sass/src/_typography.scss */
body a, body a:link, body a:visited, body a:active, p a, p a:link, p a:visited, p a:active, li a, li a:link, li a:visited, li a:active, td a, td a:link, td a:visited, td a:active, th a, th a:link, th a:visited, th a:active {
  color: #fbb116;
  text-decoration: none;
}
/* line 90, ../../../sass/src/_typography.scss */
body a:hover, p a:hover, li a:hover, td a:hover, th a:hover {
  color: #5cad5e;
}

/* line 95, ../../../sass/src/_typography.scss */
p, li {
  font-size: 1.2rem;
  margin: 0 0 1.6rem 0;
  line-height: 1.8rem;
}
@media screen and (max-width: 430px) {
  /* line 95, ../../../sass/src/_typography.scss */
  p, li {
    font-size: 1rem;
    margin: 0 0 1.2rem 0;
    line-height: 1.45rem;
  }
}

/* line 107, ../../../sass/src/_typography.scss */
p.hilite {
  color: #fbb116;
  font-weight: 700;
  font-size: 1.4rem;
}

/* line 113, ../../../sass/src/_typography.scss */
td, th {
  font-size: 1.2rem;
}

/* line 117, ../../../sass/src/_typography.scss */
li {
  list-style: disc;
  margin: 0 0 1rem 2rem;
}

/* line 122, ../../../sass/src/_typography.scss */
ul {
  margin: 0 0 1.6rem 0;
}

/* line 126, ../../../sass/src/_typography.scss */
table {
  width: 100%;
}
/* line 129, ../../../sass/src/_typography.scss */
table td, table th {
  padding: 8px 10px;
  border-bottom: 1px solid #e6e6e6;
  vertical-align: middle;
}
/* line 137, ../../../sass/src/_typography.scss */
table td img, table th img {
  display: block;
}
/* line 142, ../../../sass/src/_typography.scss */
table td.thumb img, table th.thumb img {
  max-width: 75px;
}
/* line 148, ../../../sass/src/_typography.scss */
table th {
  font-style: italic;
}

/* line 155, ../../../sass/src/_typography.scss */
table.vertical-table th {
  width: 25%;
  text-align: right;
}
/* line 160, ../../../sass/src/_typography.scss */
table.vertical-table td {
  text-align: left;
}

/* line 165, ../../../sass/src/_typography.scss */
.edit {
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-left: 10px;
}
/* line 169, ../../../sass/src/_typography.scss */
.edit a, .edit a:link, .edit a:visited, .edit a:active {
  color: #fbb116;
}

/* line 174, ../../../sass/src/_typography.scss */
.alignLeft, .widgImage {
  float: left;
  margin: 7px 15px 5px 0;
}

/* line 179, ../../../sass/src/_typography.scss */
div.editText {
  display: none;
}
/* line 182, ../../../sass/src/_typography.scss */
div.editText a {
  display: block;
  width: 20px;
  height: 20px;
  background: transparent url("/img/edit.png") no-repeat scroll top left;
}

/* line 190, ../../../sass/src/_typography.scss */
div.paging {
  background: #fff;
  color: #ccc;
  float: left;
  clear: both;
  margin: 0px 0px 10px 0px;
  padding: 5px 0px 10px 0px;
  width: 100%;
  font-weight: 700;
}
/* line 200, ../../../sass/src/_typography.scss */
div.paging div.disabled {
  color: #ddd;
  display: inline;
}
/* line 205, ../../../sass/src/_typography.scss */
div.paging span.current {
  color: #000;
}

/* line 1, ../../../sass/src/_layout.scss */
#page {
  margin: 20px auto;
  width: 100%;
  display: block;
  overflow: hidden;
}
/* line 7, ../../../sass/src/_layout.scss */
#page #header {
  display: block;
  width: 95%;
  padding: 0 2.5%;
  max-width: 940px;
  margin: 0 auto;
  clear: both;
  overflow: hidden;
}
/* line 17, ../../../sass/src/_layout.scss */
#page #header #mobileMenuSwitch {
  display: none;
}
/* line 21, ../../../sass/src/_layout.scss */
#page #header #navBar {
  display: block;
  clear: both;
  width: 100%;
  text-align: right;
}
/* line 27, ../../../sass/src/_layout.scss */
#page #header #navBar li {
  list-style: none;
  display: inline-block;
  margin: 0 10px 0 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2rem;
}
@media screen and (max-width: 768px) {
  /* line 27, ../../../sass/src/_layout.scss */
  #page #header #navBar li {
    margin: 0 5px 0 5px;
  }
}
/* line 40, ../../../sass/src/_layout.scss */
#page #header #navBar li:last-of-type {
  margin-right: 0;
}
/* line 44, ../../../sass/src/_layout.scss */
#page #header #navBar li a, #page #header #navBar li a:link, #page #header #navBar li a:visited, #page #header #navBar li a:active {
  color: #2a4e73;
}
/* line 49, ../../../sass/src/_layout.scss */
#page #header #navBar li.selected a, #page #header #navBar li.selected a:link, #page #header #navBar li.selected a:visited, #page #header #navBar li.selected a:active {
  color: #fbb116;
}
/* line 54, ../../../sass/src/_layout.scss */
#page #header #navBar li i {
  font-size: 1.1rem;
}
/* line 60, ../../../sass/src/_layout.scss */
#page #header #artworks {
  position: relative;
}
/* line 26, ../../../sass/src/_mixins.scss */
#page #header #artworks:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 64, ../../../sass/src/_layout.scss */
#page #header #artworks #logo {
  width: 45%;
  float: left;
}
/* line 68, ../../../sass/src/_layout.scss */
#page #header #artworks #logo img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  /* line 64, ../../../sass/src/_layout.scss */
  #page #header #artworks #logo {
    width: 55%;
  }
}
/* line 77, ../../../sass/src/_layout.scss */
#page #header #artworks #mainSponsor {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  display: block;
  width: 30%;
  right: 0;
}
/* line 84, ../../../sass/src/_layout.scss */
#page #header #artworks #mainSponsor img {
  display: block;
  margin: 0 auto;
  width: 50%;
}
@media screen and (max-width: 768px) {
  /* line 77, ../../../sass/src/_layout.scss */
  #page #header #artworks #mainSponsor {
    width: 40%;
  }
}
/* line 97, ../../../sass/src/_layout.scss */
#page #band {
  display: block;
  width: 95%;
  padding: 35px 2.5%;
  margin: 0 auto;
  clear: both;
  background-color: #2a4e73;
}
/* line 105, ../../../sass/src/_layout.scss */
#page #band .pageSize {
  display: block;
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  clear: both;
}
/* line 111, ../../../sass/src/_layout.scss */
#page #band .pageSize h1 {
  font-family: "proxima-nova-extra-condensed", Helvetica, Arial, sans-serif;
  text-align: center;
  font-weight: 700;
  font-size: 36pt;
  line-height: 36pt;
  margin: 0 0 0 0;
  color: white;
}
/* line 120, ../../../sass/src/_layout.scss */
#page #band .pageSize h1 .hilite {
  color: #fbb116;
}
@media screen and (max-width: 430px) {
  /* line 111, ../../../sass/src/_layout.scss */
  #page #band .pageSize h1 {
    font-size: 28pt;
    line-height: 29pt;
  }
}
/* line 132, ../../../sass/src/_layout.scss */
#page #stage {
  display: block;
  width: 95%;
  padding: 0 2.5%;
  max-width: 940px;
  margin: 0 auto;
  clear: both;
}
/* line 140, ../../../sass/src/_layout.scss */
#page #stage #content {
  margin: 50px 0 0 0;
}
/* line 143, ../../../sass/src/_layout.scss */
#page #stage #content .columnMain {
  display: block;
  clear: both;
  float: left;
  width: 60%;
}
@media screen and (max-width: 768px) {
  /* line 143, ../../../sass/src/_layout.scss */
  #page #stage #content .columnMain {
    width: 100%;
  }
}
/* line 153, ../../../sass/src/_layout.scss */
#page #stage #content .columnSide {
  display: block;
  float: right;
  width: 30%;
}
@media screen and (max-width: 768px) {
  /* line 153, ../../../sass/src/_layout.scss */
  #page #stage #content .columnSide {
    clear: both;
    float: left;
    width: 100%;
    margin-top: 30px;
  }
}
/* line 165, ../../../sass/src/_layout.scss */
#page #stage #content .columnSide h3 {
  text-align: center;
  width: 100%;
}
/* line 170, ../../../sass/src/_layout.scss */
#page #stage #content .columnSide .sidebarList {
  margin: 0 0 40px 0;
  overflow: hidden;
}
/* line 174, ../../../sass/src/_layout.scss */
#page #stage #content .columnSide .sidebarList li {
  list-style: none;
  display: block;
  width: 100%;
  clear: both;
  margin: 0 0 20px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  /* line 174, ../../../sass/src/_layout.scss */
  #page #stage #content .columnSide .sidebarList li {
    width: 40%;
    clear: none;
    float: left;
    margin: 0 5% 20px 5%;
  }
  /* line 187, ../../../sass/src/_layout.scss */
  #page #stage #content .columnSide .sidebarList li img {
    width: 75%;
  }
}
/* line 196, ../../../sass/src/_layout.scss */
#page #stage #content .columnSide #podcastChannels img {
  width: 50%;
}
/* line 202, ../../../sass/src/_layout.scss */
#page #stage #content .columnSide #sponsors img {
  width: 71%;
}
/* line 212, ../../../sass/src/_layout.scss */
#page #footer {
  display: block;
  width: 95%;
  max-width: 940px;
  margin: 0 auto;
  clear: both;
  padding: 20px 2.5% 40px 2.5%;
}
/* line 221, ../../../sass/src/_layout.scss */
#page #footer #footerContent p {
  font-size: 0.8rem;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}

/* line 231, ../../../sass/src/_layout.scss */
.columnParent {
  width: 100%;
  clear: both;
  display: block;
}
/* line 235, ../../../sass/src/_layout.scss */
.columnParent .columnLeft {
  clear: both;
  width: 45%;
  float: left;
}
@media screen and (max-width: 768px) {
  /* line 235, ../../../sass/src/_layout.scss */
  .columnParent .columnLeft {
    width: 100%;
  }
}
/* line 244, ../../../sass/src/_layout.scss */
.columnParent .columnRight {
  width: 45%;
  float: right;
}
@media screen and (max-width: 768px) {
  /* line 244, ../../../sass/src/_layout.scss */
  .columnParent .columnRight {
    clear: both;
    float: left;
    width: 100%;
    margin-top: 30px;
  }
}

/* line 256, ../../../sass/src/_layout.scss */
#homeIntro {
  margin-bottom: 30px;
}

/* line 1, ../../../sass/src/_header.scss */
#stick {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 100;
  background-color: #333333;
  overflow: hidden;
}
/* line 10, ../../../sass/src/_header.scss */
#stick #header {
  position: relative;
  width: 100%;
  max-width: 940px;
  height: 260px;
  min-height: 260px;
  display: block;
  overflow: hidden;
  text-align: right;
  padding: 0 0 0 0;
  margin: 0 auto;
}
@media screen and (max-width: 430px) {
  /* line 10, ../../../sass/src/_header.scss */
  #stick #header {
    height: 170px;
    min-height: 170px;
    padding: 0px 0 0px 0;
  }
}
/* line 29, ../../../sass/src/_header.scss */
#stick #header #logo {
  position: absolute;
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 0;
  width: 200px;
}
@media screen and (max-width: 430px) {
  /* line 29, ../../../sass/src/_header.scss */
  #stick #header #logo {
    width: 110px;
  }
}
/* line 41, ../../../sass/src/_header.scss */
#stick #header #mobileMenu {
  display: none;
}
@media screen and (max-width: 430px) {
  /* line 41, ../../../sass/src/_header.scss */
  #stick #header #mobileMenu {
    display: none;
    position: absolute;
    top: 100px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 20px;
    padding: 5px;
    z-index: 8;
    cursor: pointer;
  }
}
/* line 56, ../../../sass/src/_header.scss */
#stick #header #nav {
  display: none;
  margin: 116px 0 0 0;
  padding: 0 0px 0 0px;
}
@media screen and (max-width: 430px) {
  /* line 56, ../../../sass/src/_header.scss */
  #stick #header #nav {
    display: none;
  }
}
/* line 66, ../../../sass/src/_header.scss */
#stick #header #nav li {
  display: inline-block;
  list-style: none;
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  line-height: 1.6rem;
  margin: 0 0 0 0;
  padding: 0 8px 0 8px;
}
/* line 75, ../../../sass/src/_header.scss */
#stick #header #nav li:first-of-type {
  padding-left: 0;
}
/* line 79, ../../../sass/src/_header.scss */
#stick #header #nav li:last-of-type {
  padding-right: 0;
}
/* line 83, ../../../sass/src/_header.scss */
#stick #header #nav li a, #stick #header #nav li a:link, #stick #header #nav li a:visited {
  color: #b71c1c;
  font-size: 1.2rem;
  text-transform: uppercase;
}
@media screen and (max-width: 430px) {
  /* line 66, ../../../sass/src/_header.scss */
  #stick #header #nav li {
    display: block;
    width: 40%;
    padding: 0 0 0 0;
    margin: 10px 4% 10px 4%;
    border-radius: 3px;
  }
  /* line 96, ../../../sass/src/_header.scss */
  #stick #header #nav li:nth-child(odd) {
    float: left;
    margin: 10px 0 10px 7%;
  }
  /* line 100, ../../../sass/src/_header.scss */
  #stick #header #nav li:nth-child(even) {
    float: right;
    margin: 10px 7% 10px 0;
  }
  /* line 105, ../../../sass/src/_header.scss */
  #stick #header #nav li a, #stick #header #nav li a:link, #stick #header #nav li a:visited {
    color: #333333;
    padding: 20px 0;
    display: block;
    width: 100%;
    float: left;
  }
}
/* line 127, ../../../sass/src/_header.scss */
#stick.minimized #header {
  position: relative;
  margin: 0 auto;
  height: 50px;
  min-height: 50px;
  width: 90%;
  max-width: 720px;
  text-align: right;
  padding: 0 5%;
}
/* line 139, ../../../sass/src/_header.scss */
#stick.minimized #header #logo {
  position: relative;
  float: left;
  margin-top: 0;
  top: 13px;
  left: 0;
  width: 100px;
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}
/* line 148, ../../../sass/src/_header.scss */
#stick.minimized #header #nav {
  margin: 11px 0 0 0;
  padding: 0 0px 0 5px;
}

/* line 1, ../../../sass/src/_forms.scss */
input, button, select, textarea, label {
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}

/* line 7, ../../../sass/src/_forms.scss */
form {
  display: block;
}

/* line 11, ../../../sass/src/_forms.scss */
input {
  height: 30px;
  line-height: 30px;
  display: block;
  color: #333333;
  background-color: white;
  font-size: 1rem;
  font-weight: 400;
  border-radius: 0;
}

/* line 22, ../../../sass/src/_forms.scss */
select {
  height: 30px;
  line-height: 30px;
  padding: 0;
  border: 0;
  border-radius: 0;
  display: block;
  font-size: 1rem;
  font-weight: 400;
  background-color: #f6f6f6;
  width: 100%;
}

/* line 36, ../../../sass/src/_forms.scss */
textarea {
  width: 100%;
  padding: 5px 0;
  border: 0;
  font-size: 1rem;
  line-height: 1.4rem;
  height: 8.4rem;
  font-weight: 400;
  border-radius: 0;
  -webkit-appearance: none;
}

/* line 49, ../../../sass/src/_forms.scss */
label a, label a:link, label a:visited {
  color: #b71c1c;
  font-weight: 400;
}

/* line 55, ../../../sass/src/_forms.scss */
button,
a.button,
input[type=submit] {
  font-family: "proxima-nova-extra-condensed", Helvetica, Arial, sans-serif;
  font-weight: 700;
  background-color: #2a4e73;
  color: white;
  display: inline-block;
  border: 0;
  height: 36px;
  line-height: 36px;
  padding: 0 20px;
  margin: 0 0 0 0;
  text-align: center;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 5px;
  -webkit-appearance: none;
}
/* line 73, ../../../sass/src/_forms.scss */
button.stickToRight,
a.button.stickToRight,
input[type=submit].stickToRight {
  position: relative;
  float: right;
  top: -5px;
}

/* line 80, ../../../sass/src/_forms.scss */
.input, .submit {
  display: block;
  padding: 0 0 0 0;
  clear: both;
  background-color: transparent;
}

/* line 87, ../../../sass/src/_forms.scss */
.input {
  margin: 0 0 5px 0;
  border-bottom: 1px solid #a6a8ab;
}
/* line 90, ../../../sass/src/_forms.scss */
.input label {
  display: inline-block;
  font-size: 0.9rem;
  color: #999;
}

/* line 98, ../../../sass/src/_forms.scss */
.input input[type=text],
.input input[type=password],
.input input[type=tel],
.input input[type=email],
.input input[type=number] {
  width: 100%;
  border: 0;
  -webkit-appearance: none;
}

/* line 112, ../../../sass/src/_forms.scss */
.input.textarea {
  padding-bottom: 1px;
}

/* line 115, ../../../sass/src/_forms.scss */
.textInputLabel {
  color: #ccc;
}

/* line 118, ../../../sass/src/_forms.scss */
.textarea.noPad {
  margin: 0 0 0 0;
}

/* line 122, ../../../sass/src/_forms.scss */
input[type=checkbox] {
  display: inline-block;
  border: 1px solid #333333;
  width: 1rem;
  height: 1rem;
  margin: 0 6px 0 0;
  padding: 0 0 0 0;
  vertical-align: top;
  color: #333333;
}
/* line 132, ../../../sass/src/_forms.scss */
input[type=checkbox]:checked {
  background-color: #333333;
}

/* line 136, ../../../sass/src/_forms.scss */
.input.checkbox {
  padding: 10px 0 15px 0;
}
/* line 139, ../../../sass/src/_forms.scss */
.input.checkbox label {
  display: inline-block;
  line-height: 1rem;
  vertical-align: top;
  margin: 0 0 0 0;
  color: #333333;
}

/* line 148, ../../../sass/src/_forms.scss */
.input.datetime,
.input.date {
  overflow: hidden;
}
/* line 152, ../../../sass/src/_forms.scss */
.input.datetime label,
.input.date label {
  display: block;
  float: left;
}
/* line 157, ../../../sass/src/_forms.scss */
.input.datetime select,
.input.date select {
  display: block;
  float: left;
  width: 14%;
  margin: 0 2% 0 0;
}
/* line 164, ../../../sass/src/_forms.scss */
.input.datetime select:first-of-type,
.input.date select:first-of-type {
  clear: both;
}

/* line 169, ../../../sass/src/_forms.scss */
.combo {
  border-top: 0;
  padding: 0;
}
/* line 172, ../../../sass/src/_forms.scss */
.combo input {
  float: left;
}
/* line 175, ../../../sass/src/_forms.scss */
.combo input[type=text] {
  padding: 0 0 0 0;
  border: 0;
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
  width: 80%;
  height: 34px;
  -webkit-appearance: none;
}
/* line 184, ../../../sass/src/_forms.scss */
.combo input[type=submit] {
  padding: 0 0 0 0;
  width: 20%;
  -webkit-appearance: none;
}

/* line 191, ../../../sass/src/_forms.scss */
.copyValue {
  border: 0;
  background-color: transparent;
  padding: 0px 0;
  width: 100%;
}

/* line 1, ../../../sass/src/_system.scss */
#systemMessage {
  position: fixed;
  display: none;
  left: 0;
  top: -55px;
  /* Hide by default */
  width: 100%;
  color: #fff;
  padding: 0px 0px 0px 0px;
  z-index: 20;
  text-align: center;
  pointer-events: none;
}
/* line 13, ../../../sass/src/_system.scss */
#systemMessage div.block {
  position: relative;
  margin: 0 auto;
  display: inline-block;
  color: #fff;
  padding: 29px 35px 10px 15px;
  z-index: 10;
  /*	cursor: pointer; */
  background-color: #DE0000;
  -moz-box-shadow: 0px 0px 4px #000;
  -webkit-box-shadow: 0px 0px 4px #000;
  box-shadow: 0px 0px 4px #000;
  border-radius: 0 0 5px 5px;
}
/* line 27, ../../../sass/src/_system.scss */
#systemMessage div.block #messageContent {
  display: block;
  overflow: hidden;
}
/* line 31, ../../../sass/src/_system.scss */
#systemMessage div.block #messageContent div.message {
  font-family: "proxima-nova-extra-condensed", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.8rem;
  border: 0;
  background-color: transparent;
  overflow: hidden;
  clear: both;
  color: white;
  margin: 0 0 0 0;
  padding: 0;
  white-space: nowrap;
}
/* line 47, ../../../sass/src/_system.scss */
#systemMessage div.block #click2close {
  position: absolute;
  top: 35px;
  right: 10px;
  font-size: 17px;
  color: #fff;
  cursor: pointer;
  pointer-events: auto;
}

/* Paging *******************************************/
/* line 3, ../../../sass/src/_paging.scss */
.paginator {
  clear: both;
  margin: 0px 0px 0px 0px;
  padding: 15px 0;
  text-align: center;
  font-weight: 700;
}
/* line 10, ../../../sass/src/_paging.scss */
.paginator .pagination {
  display: inline-block;
  margin: 0 15px;
}
/* line 15, ../../../sass/src/_paging.scss */
.paginator .pagination li {
  list-style: none;
  display: inline-block;
  margin: 0 0 0 0;
  padding: 0 10px;
  font-weight: 700;
  font-family: "proxima-nova-extra-condensed", Helvetica, Arial, sans-serif;
}
/* line 23, ../../../sass/src/_paging.scss */
.paginator .pagination li a, .paginator .pagination li a:visited, .paginator .pagination li a:link {
  color: #333333;
  text-transform: uppercase;
  font-size: 1rem;
  box-shadow: 0 0 0 0;
}
/* line 28, ../../../sass/src/_paging.scss */
.paginator .pagination li a i, .paginator .pagination li a:visited i, .paginator .pagination li a:link i {
  position: relative;
  top: 0px;
}
/* line 35, ../../../sass/src/_paging.scss */
.paginator .pagination li.active a, .paginator .pagination li.active a:visited, .paginator .pagination li.active a:link {
  color: #b71c1c;
}
/* line 41, ../../../sass/src/_paging.scss */
.paginator .pagination li.disabled a, .paginator .pagination li.disabled a:visited, .paginator .pagination li.disabled a:link {
  color: #ddd;
}

/* line 4, ../../../sass/src/_posts.scss */
#stage #content .posts.view:nth-child(even) {
  background-color: rgba(42, 78, 115, 0.05);
}
/* line 7, ../../../sass/src/_posts.scss */
#stage #content .posts.view:nth-child(odd) {
  background-color: white;
}
/* line 11, ../../../sass/src/_posts.scss */
#stage #content .posts.view img.scaleToFit {
  width: 100%;
}
/* line 15, ../../../sass/src/_posts.scss */
#stage #content .posts.view h2 {
  font-size: 1.8rem;
  margin: 28px 0 25px 0;
}
/* line 22, ../../../sass/src/_posts.scss */
#stage #content .meta p {
  font-size: 0.9rem;
  color: #aaaaaa;
}
/* line 26, ../../../sass/src/_mixins.scss */
#stage #content .posts:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 32, ../../../sass/src/_posts.scss */
#stage #content .post {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin: 0 0 40px 0;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #e6e6e6;
}
/* line 26, ../../../sass/src/_mixins.scss */
#stage #content .post:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 45, ../../../sass/src/_posts.scss */
#stage #content .post .postImage {
  display: none;
}
/* line 50, ../../../sass/src/_posts.scss */
#stage #content .post h1 a, #stage #content .post h1 a:visited, #stage #content .post h1 a:link, #stage #content .post h2 a, #stage #content .post h2 a:visited, #stage #content .post h2 a:link {
  color: #2a4e73;
}
/* line 55, ../../../sass/src/_posts.scss */
#stage #content .post iframe {
  margin-bottom: 20px;
}
/* line 59, ../../../sass/src/_posts.scss */
#stage #content .post .smallVideo, #stage #content .post .bigVideo {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}
/* line 65, ../../../sass/src/_posts.scss */
#stage #content .post .smallVideo iframe, #stage #content .post .bigVideo iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
