/*
Theme Name: CYCLE Custom
Theme URI: http://cycle-interactive.com
Author: CYCLE Interactive LLC
Author URI: http://cycle-interactive.com
Description: This is a custom WordPress theme created by CYCLE Interactive in New York City.
Version: 1.0
License: All Rights Reserved.
Text Domain: cycle-interactive
*/
/* 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 10, sass/src/_typography.scss */
html {
  font-size: 100%;
}

/* line 12, sass/src/_typography.scss */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  font-family: smoothy, sans-serif;
  font-weight: 400;
  color: #333333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}
/* line 21, sass/src/_typography.scss */
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
  font-weight: 700;
}
/* line 22, 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 {
  margin-top: 0;
}

/* line 29, sass/src/_typography.scss */
h1, h2 {
  font-size: 3rem;
  margin: 0px 0 30px 0;
  line-height: 3.4rem;
}
@media screen and (max-width: 600px) {
  /* line 29, sass/src/_typography.scss */
  h1, h2 {
    font-size: 2.4rem;
    line-height: 3rem;
  }
}
/* line 39, sass/src/_typography.scss */
h1 .small, h2 .small {
  font-size: 1.3rem;
}

/* line 44, sass/src/_typography.scss */
h3 {
  font-size: 2.6rem;
  line-height: 3rem;
  margin: 25px 0 25px 0;
}

/* line 49, sass/src/_typography.scss */
h4 {
  font-family: freight-macro-pro, serif;
  font-size: 1.8rem;
  line-height: 2.2rem;
  margin: 20px 0 20px 0;
}

/* line 55, sass/src/_typography.scss */
h5 {
  font-size: 1.7rem;
  line-height: 2rem;
  margin: 15px 0 15px 0;
}

/* line 60, sass/src/_typography.scss */
h6 {
  font-size: 1.4rem;
  line-height: 1.6rem;
  margin: 12px 0 12px 0;
}

/* line 66, sass/src/_typography.scss */
p, li, td, th {
  font-family: freight-macro-pro, serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.9rem;
  color: #333333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}
/* line 79, sass/src/_typography.scss */
p strong, li strong, td strong, th strong {
  font-weight: 700;
}
/* line 80, sass/src/_typography.scss */
p em, li em, td em, th em {
  font-style: italic;
}

/* line 87, sass/src/_typography.scss */
p, li {
  margin: 0 0 1.6rem 0;
}

/* line 91, sass/src/_typography.scss */
ul, ol {
  margin: 0 0 1.6rem 0;
}
/* line 94, sass/src/_typography.scss */
ul li, ol li {
  margin: 0 0 0.8rem 2.5rem;
}
/* line 97, sass/src/_typography.scss */
ul li ul, ul li ol, ol li ul, ol li ol {
  margin-top: 1rem;
}

/* line 104, sass/src/_typography.scss */
ul li {
  list-style: disc;
}

/* line 110, sass/src/_typography.scss */
ol li {
  list-style: decimal;
}

@media screen and (max-width: 600px) {
  /* line 116, sass/src/_typography.scss */
  p, li, td, th {
    font-size: 1rem;
    line-height: 1.4rem;
  }

  /* line 121, sass/src/_typography.scss */
  p, li {
    margin: 0 0 1.2rem 0;
  }

  /* line 126, sass/src/_typography.scss */
  ul li, ol li {
    margin: 0 0 0.8rem 1.5rem;
  }
}
/* line 133, sass/src/_typography.scss */
table {
  width: 100%;
}
/* line 136, sass/src/_typography.scss */
table thead {
  border-bottom: 2px solid #e6e6e6;
}
/* line 141, sass/src/_typography.scss */
table tr.ui-sortable-helper {
  background-color: #fff;
}
/* line 146, sass/src/_typography.scss */
table td, table th {
  padding: 8px 10px;
  border-bottom: 1px solid #e6e6e6;
  vertical-align: top;
}
/* line 151, sass/src/_typography.scss */
table td a, table td a:link, table td a:visited, table td a:active, table th a, table th a:link, table th a:visited, table th a:active {
  box-shadow: none;
}
/* line 153, sass/src/_typography.scss */
table td a i, table td a:link i, table td a:visited i, table td a:active i, table th a i, table th a:link i, table th a:visited i, table th a:active i {
  box-shadow: none;
}
/* line 158, sass/src/_typography.scss */
table td img, table th img {
  display: block;
}
/* line 163, sass/src/_typography.scss */
table td.thumb img, table th.thumb img {
  max-height: 75px;
}
/* line 168, sass/src/_typography.scss */
table td.number, table th.number {
  text-align: right;
}
/* line 172, sass/src/_typography.scss */
table td.code, table th.code {
  text-align: center;
}
/* line 176, sass/src/_typography.scss */
table td.date, table th.date {
  text-align: center;
}
/* line 180, sass/src/_typography.scss */
table td.actions, table th.actions {
  text-align: center;
}
/* line 184, sass/src/_typography.scss */
table td.sortHandle, table th.sortHandle {
  text-align: center;
  cursor: pointer;
}
/* line 190, sass/src/_typography.scss */
table th {
  font-style: italic;
}

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

/* line 210, sass/src/_typography.scss */
hr {
  display: block;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  background-color: #e6e6e6;
  height: 1px;
  width: 100%;
  margin: 0 0 1.6rem 0;
}

/* line 222, sass/src/_typography.scss */
pre {
  font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
  font-size: 0.8rem;
  line-height: 1rem;
}

/* line 228, sass/src/_typography.scss */
code {
  font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
  font-size: 0.8rem;
  line-height: 1rem;
}

/* line 3, sass/src/_layout.scss */
body, html {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

/* line 9, sass/src/_layout.scss */
#stage {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0px 0% 50px 0%;
  z-index: 0;
  overflow: hidden;
  background-color: white;
  background: url(img/white-brick-wall.jpg);
  background-repeat: repeat-y;
  background-size: 100% auto;
}
/* line 24, sass/src/_layout.scss */
#stage #grad {
  background-color: rgba(255, 255, 255, 0.7);
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
  background-image: linear-gradient(to bottom,rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
  display: block;
  width: 100%;
  height: 300px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
}
/* line 35, sass/src/_layout.scss */
#stage #page {
  background-color: transparent;
  clear: both;
  position: relative;
  width: 100%;
  margin: 0;
  z-index: 1;
  padding: 230px 0% 0 0%;
}
@media screen and (max-width: 400px) {
  /* line 35, sass/src/_layout.scss */
  #stage #page {
    padding: 180px 0% 0 0%;
  }
}
/* line 48, sass/src/_layout.scss */
#stage #page .block {
  padding: 0 0 0 0;
  width: 100%;
}
/* line 39, sass/src/_mixins.scss */
#stage #page .block:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 54, sass/src/_layout.scss */
#stage #page .block.green {
  background-color: #77bd00;
}
/* line 56, sass/src/_layout.scss */
#stage #page .block.green p, #stage #page .block.green h2 {
  color: white;
}
/* line 61, sass/src/_layout.scss */
#stage #page .block.greenDark {
  background-color: #499917;
}
/* line 63, sass/src/_layout.scss */
#stage #page .block.greenDark p, #stage #page .block.greenDark h2 {
  color: white;
}
/* line 68, sass/src/_layout.scss */
#stage #page .block .contain {
  padding: 0;
  position: relative;
  width: 90%;
  max-width: 980px;
  margin: 0 auto;
}
/* line 39, sass/src/_mixins.scss */
#stage #page .block .contain:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 81, sass/src/_layout.scss */
#stage #page .block .contain.narrow {
  max-width: 600px;
}
/* line 85, sass/src/_layout.scss */
#stage #page .block .contain h3, #stage #page .block .contain h4, #stage #page .block .contain p, #stage #page .block .contain li {
  text-align: left;
}
/* line 89, sass/src/_layout.scss */
#stage #page .block .contain img.floatRight {
  display: block;
  float: right;
  margin: 5px 0 3px 10px;
  width: 40.77892325%;
}
/* line 96, sass/src/_layout.scss */
#stage #page .block .contain .readMore {
  max-height: 390px;
  overflow: hidden;
  position: relative;
}
/* line 101, sass/src/_layout.scss */
#stage #page .block .contain .readMore .readMoreButton {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 120px 0 0 0;
  background-color: rgba(219, 0, 0, 0);
  background-image: -webkit-linear-gradient(top, rgba(219, 0, 0, 0), #db0000);
  background-image: linear-gradient(to bottom,rgba(219, 0, 0, 0), #db0000);
}
/* line 121, sass/src/_layout.scss */
#stage #page .block .contain .readMore .readMoreButton img {
  float: none;
  display: block;
  margin: 0 auto;
  width: 31px;
  height: 31px;
  border: 0;
  cursor: pointer;
}
/* line 134, sass/src/_layout.scss */
#stage #page .block .doubles {
  display: block;
  width: 100%;
  overflow: hidden;
  clear: both;
}
/* line 140, sass/src/_layout.scss */
#stage #page .block .doubles .double {
  display: block;
  width: 45%;
  float: left;
}
/* line 145, sass/src/_layout.scss */
#stage #page .block .doubles .double:nth-child(even) {
  float: right;
}
@media screen and (max-width: 600px) {
  /* line 140, sass/src/_layout.scss */
  #stage #page .block .doubles .double {
    width: 100%;
    float: none;
    clear: both;
    margin: 0 0 50px 0;
  }
  /* line 154, sass/src/_layout.scss */
  #stage #page .block .doubles .double:nth-child(even) {
    float: none;
  }
}
/* line 162, sass/src/_layout.scss */
#stage #page #footer {
  width: 100%;
  max-width: 100%;
  padding: 0px 0 0px 0;
}
/* line 170, sass/src/_layout.scss */
#stage #page #footer #copyright {
  padding: 10px 5%;
  position: relative;
  width: 90%;
  max-width: 980px;
  margin: 0 auto;
  background-color: #007a99;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 20px 0px;
}
/* line 39, sass/src/_mixins.scss */
#stage #page #footer #copyright:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 184, sass/src/_layout.scss */
#stage #page #footer #copyright p {
  font-size: 0.9rem;
  margin: 0 0 0 0;
  color: white;
  text-align: center;
  line-height: 1.2rem;
}
/* line 203, sass/src/_layout.scss */
#stage .container {
  padding: 50px 0;
}

/* line 210, sass/src/_layout.scss */
.bordered {
  border: 1px solid #e6e6e6;
}

/* line 214, sass/src/_layout.scss */
.portraitRight {
  display: block;
  float: right;
  width: 30%;
  margin: 5px 0 15px 15px;
}

/* line 221, sass/src/_layout.scss */
.portraitLeft {
  display: block;
  float: left;
  width: 30%;
  margin: 5px 15px 15px 0;
}

/* line 228, sass/src/_layout.scss */
.floatParent {
  display: block;
  overflow: hidden;
  width: 100%;
}

/* line 234, sass/src/_layout.scss */
.floatRight {
  display: block;
  float: right;
  width: 48%;
  margin: 5px 0 15px 15px;
}

/* line 241, sass/src/_layout.scss */
.floatLeft {
  display: block;
  float: left;
  width: 48%;
  margin: 5px 15px 15px 0;
}

@media screen and (max-width: 600px) {
  /* line 249, sass/src/_layout.scss */
  .floatRight,
  .floatLeft {
    width: 100%;
    margin: 5px 0 15px 0;
  }
}
/* line 256, sass/src/_layout.scss */
.slideShow {
  display: block;
  width: 100%;
  clear: both;
  padding: 1.6rem 0;
  margin-bottom: 1.6rem;
  overflow: hidden;
}

/* line 265, sass/src/_layout.scss */
.valign {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* line 269, sass/src/_layout.scss */
.imageTitle {
  display: block;
  margin: 15px auto;
  width: 30%;
  max-width: 500px;
}

/* line 277, sass/src/_layout.scss */
.altBackground:nth-child(odd) {
  background-color: rgba(119, 189, 0, 0.05);
}

/* line 284, sass/src/_layout.scss */
#debug {
  width: 90%;
  padding: 60px 5%;
  color: black;
}

/* line 290, sass/src/_layout.scss */
#embedTwitter {
  width: 30%;
}

/* line 2, sass/src/_post.scss */
#stage .poster {
  display: block;
  width: 100%;
  height: 300px;
}
/* line 11, sass/src/_post.scss */
#stage #page .block .contain .post {
  width: 90%;
  padding: 40px 5% 50px 5%;
  margin: 0 0 50px 0;
  overflow: hidden;
  background-color: white;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 20px 20px 0px;
}
/* line 24, sass/src/_post.scss */
#stage #page .block .contain .post > h1.entry-title a, #stage #page .block .contain .post > h1.entry-title a:link, #stage #page .block .contain .post > h1.entry-title a:visited, #stage #page .block .contain .post > h1.entry-title a:active,
#stage #page .block .contain .post > h2.entry-title a,
#stage #page .block .contain .post > h2.entry-title a:link,
#stage #page .block .contain .post > h2.entry-title a:visited,
#stage #page .block .contain .post > h2.entry-title a:active {
  color: #007a99;
  text-decoration: none;
}
/* line 32, sass/src/_post.scss */
#stage #page .block .contain .post > p:last-child {
  margin-bottom: 0;
}
/* line 36, sass/src/_post.scss */
#stage #page .block .contain .post > p.entry-date {
  font-size: 1rem;
  margin: 0 0 5px 0;
  color: #77bd00;
  font-weight: 700;
}
/* line 45, sass/src/_post.scss */
#stage #page .block .contain .post p a, #stage #page .block .contain .post p a:link, #stage #page .block .contain .post p a:visited, #stage #page .block .contain .post p a:active, #stage #page .block .contain .post li a, #stage #page .block .contain .post li a:link, #stage #page .block .contain .post li a:visited, #stage #page .block .contain .post li a:active {
  color: #db0000;
  text-decoration: none;
}
/* line 50, sass/src/_post.scss */
#stage #page .block .contain .post p a:hover, #stage #page .block .contain .post li a:hover {
  box-shadow: 0 2px 0 0 #db0000;
}
/* line 53, sass/src/_post.scss */
#stage #page .block .contain .post p a:hover i, #stage #page .block .contain .post li a:hover i {
  box-shadow: 0 4px 0 0 white;
}
/* line 59, sass/src/_post.scss */
#stage #page .block .contain .post img {
  display: block;
}
/* line 62, sass/src/_post.scss */
#stage #page .block .contain .post img.size-full {
  width: 100%;
  padding: 0px 0 10px 0;
}
/* line 73, sass/src/_post.scss */
#stage #page .block .contain .post img.alignleft {
  width: 45%;
  float: left;
  margin: 5px 30px 10px 0px;
}
/* line 78, sass/src/_post.scss */
#stage #page .block .contain .post img.aligncenter {
  width: 100%;
  float: none;
  margin: 0 auto 20px;
}
/* line 83, sass/src/_post.scss */
#stage #page .block .contain .post img.alignright {
  width: 45%;
  float: right;
  margin: 5px 0 10px 30px;
}
/* line 89, sass/src/_post.scss */
#stage #page .block .contain .post img.size-thumbnail {
  width: 30% !important;
}
/* line 94, sass/src/_post.scss */
#stage #page .block .contain .post .thumbnail {
  width: 112%;
  position: relative;
  left: -6%;
  top: -41px;
}
/* line 99, sass/src/_post.scss */
#stage #page .block .contain .post .thumbnail img {
  width: 100%;
}
/* line 104, sass/src/_post.scss */
#stage #page .block .contain .post .podcast_player {
  margin-bottom: 0;
}
/* line 107, sass/src/_post.scss */
#stage #page .block .contain .post .podcast_player .ssp-player.ssp-player-large {
  margin-bottom: 0;
}
/* line 112, sass/src/_post.scss */
#stage #page .block .contain .post .podcast_meta {
  background-color: #eaeaea;
  padding: 5px 15px;
  margin: 0 0 30px 0;
}
/* line 116, sass/src/_post.scss */
#stage #page .block .contain .post .podcast_meta p {
  font-size: 1.1rem;
  margin-bottom: 0;
}
/* line 123, sass/src/_post.scss */
#stage #page .block .contain .post h3.episode-title {
  font-family: freight-macro-pro, serif;
}
/* line 127, sass/src/_post.scss */
#stage #page .block .contain .post .videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  margin-bottom: 40px;
}
/* line 134, sass/src/_post.scss */
#stage #page .block .contain .post .videoWrapper.floatRight, #stage #page .block .contain .post .videoWrapper.floatLeft {
  padding-bottom: 27%;
}
@media screen and (max-width: 600px) {
  /* line 134, sass/src/_post.scss */
  #stage #page .block .contain .post .videoWrapper.floatRight, #stage #page .block .contain .post .videoWrapper.floatLeft {
    padding-bottom: 56.25%;
  }
}
/* line 142, sass/src/_post.scss */
#stage #page .block .contain .post .videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* line 151, sass/src/_post.scss */
#stage #page .block .contain .post.pagination {
  background-color: #77bd00;
  padding: 20px 5% 20px 5%;
}

/* line 166, sass/src/_post.scss */
body.archive.category .post {
  padding: 20px 0 20px 0;
  margin: 20px 0 20px 0;
  border-bottom: 1px solid #ddd;
}
/* line 171, sass/src/_post.scss */
body.archive.category .post:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* line 179, sass/src/_post.scss */
#googleMap {
  display: block;
  width: 48%;
  float: right;
}
/* line 184, sass/src/_post.scss */
#googleMap iframe {
  display: block;
  width: 100%;
  height: 400px;
}

/* line 191, sass/src/_post.scss */
nav.pagination {
  width: 100%;
  display: inline-block;
  text-align: center;
}
/* line 196, sass/src/_post.scss */
nav.pagination h2.screen-reader-text {
  display: none;
}
/* line 200, sass/src/_post.scss */
nav.pagination .nav-links {
  width: 100%;
  display: inline-block;
}
/* line 205, sass/src/_post.scss */
nav.pagination .nav-links .page-numbers {
  display: inline-block;
  font-family: freight-macro-pro, serif;
  font-size: 2rem;
  color: white;
  text-decoration: none;
  padding: 0 10px;
}
/* line 213, sass/src/_post.scss */
nav.pagination .nav-links .page-numbers.current {
  color: #333333;
}

/* line 1, sass/src/_header.scss */
#stick {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 100;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  overflow: visible;
  -webkit-transition: all 0.5s;
  /* Safari */
  transition: all 0.5s;
}
/* line 14, sass/src/_header.scss */
#stick #header {
  width: 90%;
  max-width: 980px;
  padding: 0 0 0 0;
  height: 230px;
  display: block;
  overflow: visible;
  text-align: center;
  margin: 0 auto;
  position: relative;
  -webkit-transition: all 0.5s;
  /* Safari */
  transition: all 0.5s;
}
@media screen and (max-width: 400px) {
  /* line 14, sass/src/_header.scss */
  #stick #header {
    height: 180px;
  }
}
/* line 33, sass/src/_header.scss */
#stick #header .logo {
  position: absolute;
  display: block;
  z-index: 0;
  width: 100%;
  max-width: 470px;
  overflow: hidden;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* line 42, sass/src/_header.scss */
#stick #header .logo img {
  display: block;
  width: 100%;
  -webkit-transition: all 0.5s;
  /* Safari */
  transition: all 0.5s;
}
/* line 57, sass/src/_header.scss */
#stick #header #mobileMenu {
  display: none;
}
@media screen and (max-width: 1024px) {
  /* line 57, sass/src/_header.scss */
  #stick #header #mobileMenu {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 17px;
    height: 32px;
    cursor: pointer;
  }
  /* line 68, sass/src/_header.scss */
  #stick #header #mobileMenu p {
    font-size: 1rem;
    font-weight: 700;
    line-height: 32px;
    margin: 0 0 0 0;
    padding: 0;
  }
  /* line 75, sass/src/_header.scss */
  #stick #header #mobileMenu p i {
    vertical-align: middle;
    display: inline-block;
    font-size: 32px;
    height: 32px;
    margin: 0 0 0 10px;
  }
}
/* line 92, sass/src/_header.scss */
#stick #header #headerContent {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
}
/* line 99, sass/src/_header.scss */
#stick #header #headerContent #menu-primary {
  display: block;
  margin: 0 0 0 0;
  width: 100%;
  text-align: right;
  margin-top: 17px;
}
/* line 109, sass/src/_header.scss */
#stick #header #headerContent #menu-primary li {
  display: inline-block;
  list-style: none;
  font-weight: 700;
  line-height: 2rem;
  margin: 0 0 0 0;
  padding: 0 7px;
  position: relative;
}
/* line 118, sass/src/_header.scss */
#stick #header #headerContent #menu-primary li:first-of-type {
  padding-left: 0;
}
/* line 122, sass/src/_header.scss */
#stick #header #headerContent #menu-primary li:last-of-type, #stick #header #headerContent #menu-primary li.last {
  padding-right: 0;
}
/* line 126, sass/src/_header.scss */
#stick #header #headerContent #menu-primary li a, #stick #header #headerContent #menu-primary li a:link, #stick #header #headerContent #menu-primary li a:visited {
  font-size: 1.1rem;
  color: #333333;
  text-decoration: none;
  -webkit-transition: all 0.5s;
  /* Safari */
  transition: all 0.5s;
}
/* line 135, sass/src/_header.scss */
#stick #header #headerContent #menu-primary li a.open, #stick #header #headerContent #menu-primary li a:link.open, #stick #header #headerContent #menu-primary li a:visited.open {
  color: #db0000;
}
/* line 153, sass/src/_header.scss */
#stick #header #headerContent #menu-primary li a:hover {
  color: #db0000;
}
/* line 158, sass/src/_header.scss */
#stick #header #headerContent #menu-primary li.current-menu-item a, #stick #header #headerContent #menu-primary li.current-menu-item a:link, #stick #header #headerContent #menu-primary li.current-menu-item a:visited {
  color: #db0000;
}
/* line 163, sass/src/_header.scss */
#stick #header #headerContent #menu-primary li ul {
  display: none;
  position: absolute;
  top: 50px;
  left: -5px;
  width: 200px;
  background-color: #77bd00;
  margin: 0 0 0 0;
  padding: 10px 15px 15px 15px;
}
/* line 173, sass/src/_header.scss */
#stick #header #headerContent #menu-primary li ul li {
  display: block;
  float: left;
  width: 100%;
  clear: both;
  padding: 0 0 0 0;
}
/* line 180, sass/src/_header.scss */
#stick #header #headerContent #menu-primary li ul li a, #stick #header #headerContent #menu-primary li ul li a:link, #stick #header #headerContent #menu-primary li ul li a:visited {
  display: block;
  float: left;
  width: 100%;
  text-align: left;
  text-transform: none;
  color: white;
}
/* line 192, sass/src/_header.scss */
#stick #header #headerContent #menu-primary li:last-of-type ul, #stick #header #headerContent #menu-primary li.last ul {
  left: auto;
  right: 0px;
}
/* line 201, sass/src/_header.scss */
#stick #header #headerContent #menu-sub {
  display: none;
  margin-top: 19px;
}
/* line 205, sass/src/_header.scss */
#stick #header #headerContent #menu-sub li a, #stick #header #headerContent #menu-sub li a:link, #stick #header #headerContent #menu-sub li a:visited {
  font-size: 0.8rem;
}
@media screen and (max-width: 1024px) {
  /* line 14, sass/src/_header.scss */
  #stick #header {
    width: 90%;
    max-width: 980px;
    margin: 0 auto;
    text-align: left;
    display: block;
    position: relative;
    top: 0;
    left: 0;
    right: auto;
    padding: 0 0;
  }
  /* line 225, sass/src/_header.scss */
  #stick #header #headerContent {
    display: block;
    width: 100%;
    position: absolute;
    top: 66px;
    left: 0;
  }
  /* line 234, sass/src/_header.scss */
  #stick #header #headerContent #nav .menu-primary-container {
    display: block;
  }
  /* line 238, sass/src/_header.scss */
  #stick #header #headerContent #nav .menu-primary-container #menu-primary {
    position: absolute;
    right: 0;
    top: 0;
    width: 90%;
    max-width: 210px;
    display: none;
    margin: 0 0 0 0;
    padding: 15px 24px;
    border-radius: 20px 0px 20px 20px;
    background-color: #77bd00;
  }
  /* line 39, sass/src/_mixins.scss */
  #stick #header #headerContent #nav .menu-primary-container #menu-primary:after {
    content: ".";
    clear: both;
    height: 0;
    visibility: hidden;
    display: block;
  }
  /* line 251, sass/src/_header.scss */
  #stick #header #headerContent #nav .menu-primary-container #menu-primary li {
    display: block;
    list-style: none;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    text-align: left;
  }
  /* line 39, sass/src/_mixins.scss */
  #stick #header #headerContent #nav .menu-primary-container #menu-primary li:after {
    content: ".";
    clear: both;
    height: 0;
    visibility: hidden;
    display: block;
  }
  /* line 260, sass/src/_header.scss */
  #stick #header #headerContent #nav .menu-primary-container #menu-primary li.menu-item-has-children ul {
    display: none;
  }
  /* line 264, sass/src/_header.scss */
  #stick #header #headerContent #nav .menu-primary-container #menu-primary li.menu-item-has-children > a:after {
    position: relative;
    content: '\f0d7';
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 12px;
    margin: 0px 0px 0px 5px;
    top: -3px;
    text-decoration: none;
    color: rgba(51, 51, 51, 0.3);
  }
  /* line 278, sass/src/_header.scss */
  #stick #header #headerContent #nav .menu-primary-container #menu-primary li a, #stick #header #headerContent #nav .menu-primary-container #menu-primary li a:link, #stick #header #headerContent #nav .menu-primary-container #menu-primary li a:visited {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 2.3rem;
    color: white;
  }
  /* line 287, sass/src/_header.scss */
  #stick #header #headerContent #nav .menu-primary-container #menu-primary li.current-menu-item a, #stick #header #headerContent #nav .menu-primary-container #menu-primary li.current-menu-item a:link, #stick #header #headerContent #nav .menu-primary-container #menu-primary li.current-menu-item a:visited {
    color: #333333;
  }
  /* line 292, sass/src/_header.scss */
  #stick #header #headerContent #nav .menu-primary-container #menu-primary li ul {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    background-color: transparent;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
  }
  /* line 39, sass/src/_mixins.scss */
  #stick #header #headerContent #nav .menu-primary-container #menu-primary li ul:after {
    content: ".";
    clear: both;
    height: 0;
    visibility: hidden;
    display: block;
  }
  /* line 302, sass/src/_header.scss */
  #stick #header #headerContent #nav .menu-primary-container #menu-primary li ul li {
    padding-left: 20px;
    border-left: 1px solid rgba(51, 51, 51, 0.2);
  }
  /* line 306, sass/src/_header.scss */
  #stick #header #headerContent #nav .menu-primary-container #menu-primary li ul li a, #stick #header #headerContent #nav .menu-primary-container #menu-primary li ul li a:link, #stick #header #headerContent #nav .menu-primary-container #menu-primary li ul li a:visited {
    font-size: 1rem;
    font-weight: 400;
    text-transform: none;
    color: #333333;
  }
}
/* line 322, sass/src/_header.scss */
#stick.minimized {
  background-color: white;
  border-bottom: 1px solid #e6e6e6;
  -webkit-transition: all 0.5s;
  /* Safari */
  transition: all 0.5s;
}
/* line 331, sass/src/_header.scss */
#stick.minimized #header {
  position: relative;
  margin: 0 auto;
  height: 66px;
  width: 90%;
  max-width: 980px;
  text-align: right;
  overflow: visible;
  -webkit-transition: all 0.5s;
  /* Safari */
  transition: all 0.5s;
}
/* line 345, sass/src/_header.scss */
#stick.minimized #header .logo img {
  width: 220px;
  -webkit-transition: all 0.5s;
  /* Safari */
  transition: all 0.5s;
}
/* line 353, sass/src/_header.scss */
#stick.minimized #header #headerContent #menu-sub {
  display: none;
}
/* line 357, sass/src/_header.scss */
#stick.minimized #header #headerContent #menu-primary {
  padding: 0 0px 0 0px;
}
/* line 362, sass/src/_header.scss */
#stick.minimized #header #headerContent #menu-primary li a, #stick.minimized #header #headerContent #menu-primary li a:link, #stick.minimized #header #headerContent #menu-primary li a:visited {
  -webkit-transition: all 0.5s;
  /* Safari */
  transition: all 0.5s;
}
/* line 372, sass/src/_header.scss */
#stick.minimized #header #headerContent #headerInfo {
  display: none;
}

/* line 1, sass/src/_forms.scss */
input, button, select, textarea, label {
  font-family: freight-macro-pro, 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 21, sass/src/_forms.scss */
input.buynow {
  width: 228px;
  height: auto;
}

/* line 27, 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 41, 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 54, sass/src/_forms.scss */
label a, label a:link, label a:visited {
  color: #db0000;
  font-weight: 400;
}

/* line 60, sass/src/_forms.scss */
button,
a.button,
input[type=submit] {
  font-family: smoothy, sans-serif;
  font-weight: 700;
  background-color: #333333;
  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 78, sass/src/_forms.scss */
button.stickToRight,
a.button.stickToRight,
input[type=submit].stickToRight {
  position: relative;
  float: right;
  top: -5px;
}

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

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

/* line 103, 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 117, sass/src/_forms.scss */
.input.textarea {
  padding-bottom: 1px;
}

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

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

/* line 127, 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 137, sass/src/_forms.scss */
input[type=checkbox]:checked {
  background-color: #333333;
}

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

/* line 153, sass/src/_forms.scss */
.input.datetime {
  overflow: hidden;
}
/* line 156, sass/src/_forms.scss */
.input.datetime label {
  display: block;
  float: left;
}
/* line 161, sass/src/_forms.scss */
.input.datetime select {
  display: block;
  float: left;
  width: 18%;
  margin: 0 2% 0 0;
}
/* line 168, sass/src/_forms.scss */
.input.datetime select:first-of-type {
  clear: both;
}

/* line 173, sass/src/_forms.scss */
.combo {
  border-top: 0;
  padding: 0;
}
/* line 176, sass/src/_forms.scss */
.combo input {
  float: left;
}
/* line 179, 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 188, sass/src/_forms.scss */
.combo input[type=submit] {
  padding: 0 0 0 0;
  width: 20%;
  -webkit-appearance: none;
}

/* line 195, 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: smoothy, 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;
}
