/*
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.9);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.9);
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.9);
  }
  50% {
    -webkit-transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
  }
}
/*
==============================================
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 */
a, a:link, a:visited, a:active {
  color: #3187ac;
  text-decoration: none;
  cursor: pointer;
}

/* line 17, sass/src/_typography.scss */
a:hover {
  color: #9fcb3c;
}

/* line 25, sass/src/_typography.scss */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #babab3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}
/* line 34, sass/src/_typography.scss */
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
  color: #3187ac;
}
/* line 36, sass/src/_typography.scss */
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}
/* line 43, sass/src/_typography.scss */
h1 .blue, h2 .blue, h3 .blue, h4 .blue, h5 .blue, h6 .blue {
  color: #3187ac;
}

/* line 48, sass/src/_typography.scss */
h1, h2 {
  font-size: 2.6rem;
  line-height: 2.8rem;
  margin: 0 0 2.4rem 0;
}
@media screen and (max-width: 880px) {
  /* line 48, sass/src/_typography.scss */
  h1, h2 {
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.8rem;
  }
}

/* line 59, sass/src/_typography.scss */
h3 {
  font-size: 2rem;
  line-height: 2.3rem;
  margin: 2.8rem 0 1.8rem 0;
  color: #839e38;
  font-weight: 400;
}

/* line 67, sass/src/_typography.scss */
h4 {
  font-size: 1.7rem;
  line-height: 2rem;
  margin: 2.5rem 0 1.5rem 0;
  color: #839e38;
  font-weight: 400;
}

/* line 75, sass/src/_typography.scss */
h5 {
  font-size: 1.4rem;
  line-height: 1.6rem;
  margin: 2.2rem 0 1.2rem 0;
  color: #839e38;
  font-weight: 400;
}

/* line 83, sass/src/_typography.scss */
h6 {
  font-size: 1.4rem;
  line-height: 1.6rem;
  margin: 2.2rem 0 1.2rem 0;
  color: #839e38;
  font-weight: 400;
}

/* line 91, sass/src/_typography.scss */
p, li, td, th {
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.7rem;
  color: #babab3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}
/* line 104, sass/src/_typography.scss */
p strong, li strong, td strong, th strong {
  font-weight: 700;
}
@media screen and (max-width: 880px) {
  /* line 91, sass/src/_typography.scss */
  p, li, td, th {
    font-size: 1rem;
    line-height: 1.6rem;
  }
}

/* line 116, sass/src/_typography.scss */
em {
  font-style: italic;
}

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

/* line 124, sass/src/_typography.scss */
li {
  margin: 0 0 0.5rem 2rem;
}
/* line 126, sass/src/_typography.scss */
li ul, li ol {
  margin-top: 1rem;
}

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

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

/* line 143, sass/src/_typography.scss */
ul, ol {
  margin-bottom: 1.6rem;
}

/* line 147, sass/src/_typography.scss */
blockquote {
  margin-left: 2rem;
}
/* line 149, sass/src/_typography.scss */
blockquote p {
  font-style: italic;
}

/* line 154, sass/src/_typography.scss */
table {
  width: 100%;
}
/* line 157, sass/src/_typography.scss */
table thead {
  border-bottom: 2px solid #babab3;
}
/* line 162, sass/src/_typography.scss */
table tr.ui-sortable-helper {
  background-color: #fff;
}
/* line 167, sass/src/_typography.scss */
table td, table th {
  padding: 8px 10px;
  border-bottom: 1px solid #babab3;
  vertical-align: top;
}
/* line 172, 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 174, 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 179, sass/src/_typography.scss */
table td img, table th img {
  display: block;
}
/* line 184, sass/src/_typography.scss */
table td.thumb img, table th.thumb img {
  max-height: 75px;
}
/* line 189, sass/src/_typography.scss */
table td.number, table th.number {
  text-align: right;
}
/* line 193, sass/src/_typography.scss */
table td.code, table th.code {
  text-align: center;
}
/* line 197, sass/src/_typography.scss */
table td.date, table th.date {
  text-align: center;
}
/* line 201, sass/src/_typography.scss */
table td.actions, table th.actions {
  text-align: center;
}
/* line 205, sass/src/_typography.scss */
table td.sortHandle, table th.sortHandle {
  text-align: center;
  cursor: pointer;
}
/* line 211, sass/src/_typography.scss */
table th {
  font-style: italic;
}

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

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

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

/* line 249, 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;
  background-color: #444;
}

/* line 10, sass/src/_layout.scss */
#stage {
  top: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
  margin: 0;
  padding: 0px 0% 0px 0%;
  z-index: 0;
}
/* line 21, sass/src/_layout.scss */
#stage #page {
  display: block;
  position: relative;
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
  z-index: 1;
  padding: 0 0 0 0;
  min-height: 100% !important;
  /* browser fill */
  height: auto;
  /*content fill */
}
/* line 39, 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 45, sass/src/_layout.scss */
#stage #page .block .contain {
  padding: 175px 0 0 0;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 440px) {
  /* line 45, sass/src/_layout.scss */
  #stage #page .block .contain {
    padding: 120px 0 0 0;
  }
}
/* line 39, sass/src/_mixins.scss */
#stage #page .block .contain:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 56, 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 60, sass/src/_layout.scss */
#stage #page .block .contain img.floatRight {
  display: block;
  float: right;
  margin: 5px 0 3px 10px;
  width: 40.77892325%;
}
/* line 67, sass/src/_layout.scss */
#stage #page .block .contain .readMore {
  max-height: 390px;
  overflow: hidden;
  position: relative;
}
/* line 72, 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(204, 0, 0, 0);
  background-image: -webkit-linear-gradient(top, rgba(204, 0, 0, 0), #cc0000);
  background-image: linear-gradient(to bottom,rgba(204, 0, 0, 0), #cc0000);
}
/* line 92, 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 105, sass/src/_layout.scss */
#stage #page .block .doubles {
  display: block;
  width: 100%;
  overflow: hidden;
  clear: both;
}
/* line 111, sass/src/_layout.scss */
#stage #page .block .doubles .double {
  display: block;
  width: 45%;
  float: left;
}
/* line 116, sass/src/_layout.scss */
#stage #page .block .doubles .double:nth-child(even) {
  float: right;
}
@media screen and (max-width: 440px) {
  /* line 111, sass/src/_layout.scss */
  #stage #page .block .doubles .double {
    width: 100%;
    float: none;
    clear: both;
    margin: 0 0 50px 0;
  }
  /* line 125, sass/src/_layout.scss */
  #stage #page .block .doubles .double:nth-child(even) {
    float: none;
  }
}
/* line 133, sass/src/_layout.scss */
#stage #page #footer {
  display: block;
  width: 100%;
  margin: 0 0 0 0;
  position: relative;
  padding: 100px 0 20px 0;
}
/* line 147, sass/src/_layout.scss */
#stage #page #footer #footerContent p {
  font-size: 0.8rem;
  margin: 0 0 0.5rem 0;
  padding: 0 0;
  line-height: 1.2rem;
  color: #8a8a83;
}
/* line 158, sass/src/_layout.scss */
#stage .container {
  padding: 50px 0;
}

/* line 165, sass/src/_layout.scss */
.bordered {
  border: 1px solid #babab3;
  background-color: white;
}

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

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

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

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

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

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

/* line 221, 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 225, sass/src/_layout.scss */
.imageTitle {
  display: block;
  margin: 15px auto;
  width: 30%;
  max-width: 500px;
}

/* line 233, sass/src/_layout.scss */
.altBackground:nth-child(odd) {
  background-color: rgba(49, 135, 172, 0.05);
}
/* line 236, sass/src/_layout.scss */
.altBackground:nth-child(even) {
  background-color: white;
}

/* line 241, sass/src/_layout.scss */
#debug {
  width: 100%;
  padding: 60px 0;
  color: #babab3;
  overflow-x: hidden;
}

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

/* line 2, sass/src/_post.scss */
#stage .poster {
  display: block;
  width: 100%;
  height: 300px;
}
/* line 12, sass/src/_post.scss */
#stage #page .block .contain iframe {
  display: block;
  width: 100% !important;
  height: auto;
  margin-bottom: 40px;
}
/* line 21, sass/src/_post.scss */
#stage #page .block .contain .posts {
  width: 100%;
  display: block;
  overflow: hidden;
}
/* line 26, sass/src/_post.scss */
#stage #page .block .contain .posts .post {
  border-top: 4px solid #8a8a83;
  padding-top: 60px;
  margin-bottom: 60px;
}
/* line 31, sass/src/_post.scss */
#stage #page .block .contain .posts .post:first-child {
  border-top: none;
  padding-top: 10px;
}
/* line 36, sass/src/_post.scss */
#stage #page .block .contain .posts .post h2 {
  margin: 0 0 60px 0;
}
/* line 39, sass/src/_post.scss */
#stage #page .block .contain .posts .post h2 a, #stage #page .block .contain .posts .post h2 a:link, #stage #page .block .contain .posts .post h2 a:visited, #stage #page .block .contain .posts .post h2 a:active {
  color: #839e38;
}
/* line 42, sass/src/_post.scss */
#stage #page .block .contain .posts .post h2 a:hover {
  color: #9fcb3c;
}
/* line 47, sass/src/_post.scss */
#stage #page .block .contain .posts .post *:last-child {
  margin-bottom: 0;
}
/* line 54, sass/src/_post.scss */
#stage #page .block .contain .post {
  width: 100%;
  max-width: 720px;
  display: block;
  overflow: hidden;
  position: relative;
  padding-top: 10px;
}
/* line 62, sass/src/_post.scss */
#stage #page .block .contain .post h1, #stage #page .block .contain .post h2 {
  margin: 0 0 60px 0;
}
/* line 65, sass/src/_post.scss */
#stage #page .block .contain .post h1 span.meta, #stage #page .block .contain .post h2 span.meta {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: #839e38;
  line-height: 1.6rem;
}
/* line 83, sass/src/_post.scss */
#stage #page .block .contain .post p.entry-date {
  font-size: 0.8rem;
  margin: 0 0 5px 0;
  text-transform: uppercase;
  color: #8a8a83;
}
/* line 90, sass/src/_post.scss */
#stage #page .block .contain .post img {
  display: block;
  width: 100%;
  height: auto !important;
  float: none;
  margin: 40px 0 40px 0;
}
/* line 97, sass/src/_post.scss */
#stage #page .block .contain .post img.size-thumbnail {
  width: 30% !important;
}
/* line 110, sass/src/_post.scss */
#stage #page .block .contain .post img.alignleft {
  width: 45%;
  float: left;
  margin: 0px 30px 40px 0px;
}
/* line 115, sass/src/_post.scss */
#stage #page .block .contain .post img.alignright {
  width: 45%;
  float: right;
  margin: 0px 0 40px 30px;
}
/* line 122, sass/src/_post.scss */
#stage #page .block .contain .post .wp-caption {
  background-color: #555;
  margin: 0 0 40px 0;
}
/* line 126, sass/src/_post.scss */
#stage #page .block .contain .post .wp-caption img {
  margin-bottom: 0px;
}
/* line 130, sass/src/_post.scss */
#stage #page .block .contain .post .wp-caption p {
  font-size: 0.9rem;
  line-height: 1.2rem;
  padding: 10px 15px;
}

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

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

/* line 176, sass/src/_post.scss */
.anchor {
  position: absolute;
  top: -130px;
}
@media screen and (max-width: 880px) {
  /* line 176, sass/src/_post.scss */
  .anchor {
    top: -30px;
  }
}

/* line 186, sass/src/_post.scss */
.postThumbnail {
  display: block;
  float: left;
  padding: 0 0 20px 0;
  text-decoration: none;
  width: 33%;
  margin: 0 0.3% 0 0;
}
/* line 39, sass/src/_mixins.scss */
.postThumbnail:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 196, sass/src/_post.scss */
.postThumbnail:nth-child(3n+1) {
  clear: both;
}
/* line 200, sass/src/_post.scss */
.postThumbnail .thumbnail {
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  padding: 56.25% 0 0 0;
  margin: 0 0 7px 0;
  background-color: #8a8a83;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* line 214, sass/src/_post.scss */
.postThumbnail p.title {
  font-size: 0.9rem;
  line-height: 1.2rem;
}

@media screen and (max-width: 880px) {
  /* line 222, sass/src/_post.scss */
  .postThumbnail {
    width: 49%;
    margin: 0 0.45% 0 0;
  }
  /* line 226, sass/src/_post.scss */
  .postThumbnail:nth-child(3n+1) {
    clear: none;
  }
  /* line 230, sass/src/_post.scss */
  .postThumbnail:nth-child(2n+1) {
    clear: both;
  }
}
@media screen and (max-width: 440px) {
  /* line 237, sass/src/_post.scss */
  .postThumbnail {
    width: 100%;
    margin: 0 0 0 0;
    clear: both;
  }
  /* line 241, sass/src/_post.scss */
  .postThumbnail:nth-child(2n+1) {
    clear: none;
  }
  /* line 245, sass/src/_post.scss */
  .postThumbnail:nth-child(3n+1) {
    clear: none;
  }
}
/* line 254, sass/src/_post.scss */
.pagination {
  display: block;
  width: 100%;
  overflow: hidden;
  margin: 0 0 30px 0;
}
/* line 261, sass/src/_post.scss */
.pagination h2.screen-reader-text {
  display: none;
}
/* line 266, sass/src/_post.scss */
.pagination .nav-links .page-numbers {
  float: left;
  display: block;
  padding: 8px 20px;
  margin: 0 0 0 0;
  text-transform: uppercase;
  background-color: #8a8a83;
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 400;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.7);
}
/* line 281, sass/src/_post.scss */
.pagination .nav-links .page-numbers.current {
  background-color: #3187ac;
}
/* line 285, sass/src/_post.scss */
.pagination .nav-links .page-numbers i {
  font-size: 0.8rem;
}

/* line 1, sass/src/_header.scss */
#stick {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 90;
  background-color: transparent;
  overflow: visible;
  -webkit-transition: top 1s, background-color 1s;
  /* Safari */
  transition: top 1s, background-color 1s;
}
/* line 13, sass/src/_header.scss */
#stick #header {
  width: 90%;
  max-width: 1180px;
  padding: 0 0 0 0;
  height: 130px;
  display: block;
  overflow: visible;
  text-align: center;
  margin: 0px auto 0;
  position: relative;
  -webkit-transition: height 1s;
  /* Safari */
  transition: height 1s;
}
@media screen and (max-width: 880px) {
  /* line 13, sass/src/_header.scss */
  #stick #header {
    height: 66px;
  }
}
/* line 32, sass/src/_header.scss */
#stick #header .logo {
  position: absolute;
  display: block;
  top: 40px;
  left: 0;
  z-index: 0;
  width: 66px;
  -webkit-transition: top 1s, width 1s;
  /* Safari */
  transition: top 1s, width 1s;
}
/* line 43, sass/src/_header.scss */
#stick #header .logo img {
  display: block;
  width: 100%;
}
/* line 49, sass/src/_header.scss */
#stick #header #descriptor {
  position: absolute;
  display: block;
  top: 40px;
  left: 110px;
  z-index: 0;
  width: 286px;
  -webkit-transition: top 1s, width 1s;
  /* Safari */
  transition: top 1s, width 1s;
}
@media screen and (max-width: 482px) {
  /* line 62, sass/src/_header.scss */
  #stick #header .logo {
    top: 25px;
    width: 40px;
  }
  /* line 70, sass/src/_header.scss */
  #stick #header #descriptor {
    top: 70px;
    width: 230px;
    left: auto;
    right: 0;
  }
}
/* line 78, sass/src/_header.scss */
#stick #header #headerContent {
  display: block;
  position: absolute;
  top: 82px;
  left: 110px;
  right: auto;
  opacity: 1;
  -webkit-transition: top 1s, opacity 1s;
  /* Safari */
  transition: top 1s, opacity 1s;
}
/* line 89, sass/src/_header.scss */
#stick #header #headerContent #menu-main {
  display: block;
  margin: 0 0 0 0;
  width: 100%;
  margin-top: 0px;
  background-color: #8a8a83;
  height: 48px;
}
/* line 98, sass/src/_header.scss */
#stick #header #headerContent #menu-main li {
  display: block;
  float: left;
  list-style: none;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  position: relative;
}
/* line 106, sass/src/_header.scss */
#stick #header #headerContent #menu-main li a, #stick #header #headerContent #menu-main li a:link, #stick #header #headerContent #menu-main li a:visited {
  position: relative;
  display: block;
  padding: 8px 20px;
  margin: 0 0 0 0;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 32px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  background-color: #8a8a83;
  -webkit-transition: background-color 1s, font-size 1s;
  /* Safari */
  transition: background-color 1s, font-size 1s;
}
/* line 120, sass/src/_header.scss */
#stick #header #headerContent #menu-main li a:hover, #stick #header #headerContent #menu-main li a:link:hover, #stick #header #headerContent #menu-main li a:visited:hover {
  color: rgba(255, 255, 255, 0.7);
  background-color: #839e38;
}
/* line 128, sass/src/_header.scss */
#stick #header #headerContent #menu-main li a::after, #stick #header #headerContent #menu-main li a:link::after, #stick #header #headerContent #menu-main li a:visited::after {
  display: none;
  content: "";
  position: absolute;
  top: 48px;
  left: 0;
  width: 14px;
  height: 34px;
  background-image: url(/wp-content/themes/kskstudios/img/triangle.png);
  background-repeat: no-repeat;
  background-size: 14px 34px;
  -webkit-transition: top 1s;
  /* Safari */
  transition: top 1s;
}
/* line 144, sass/src/_header.scss */
#stick #header #headerContent #menu-main li a.open, #stick #header #headerContent #menu-main li a:link.open, #stick #header #headerContent #menu-main li a:visited.open {
  color: #3187ac;
}
/* line 151, sass/src/_header.scss */
#stick #header #headerContent #menu-main li.current-menu-item a, #stick #header #headerContent #menu-main li.current-menu-item a:link, #stick #header #headerContent #menu-main li.current-menu-item a:visited, #stick #header #headerContent #menu-main li.current_page_parent a, #stick #header #headerContent #menu-main li.current_page_parent a:link, #stick #header #headerContent #menu-main li.current_page_parent a:visited {
  background-color: #3187ac;
}
/* line 158, sass/src/_header.scss */
#stick #header #headerContent #menu-main li#menu-item-46.current_page_parent a::after, #stick #header #headerContent #menu-main li#menu-item-46.current_page_parent a:link::after, #stick #header #headerContent #menu-main li#menu-item-46.current_page_parent a:visited::after {
  display: block;
}
/* line 176, sass/src/_header.scss */
#stick #header #headerContent #menu-main li ul {
  display: none;
  position: absolute;
  top: 50px;
  left: -5px;
  width: 200px;
  background-color: #3187ac;
  margin: 0 0 0 0;
  padding: 10px 15px 15px 15px;
}
/* line 186, sass/src/_header.scss */
#stick #header #headerContent #menu-main li ul li {
  display: block;
  float: left;
  width: 100%;
  clear: both;
  padding: 0 0 0 0;
}
/* line 193, sass/src/_header.scss */
#stick #header #headerContent #menu-main li ul li a, #stick #header #headerContent #menu-main li ul li a:link, #stick #header #headerContent #menu-main li ul li a:visited {
  display: block;
  float: left;
  width: 100%;
  text-align: left;
  text-transform: none;
  color: white;
}
/* line 205, sass/src/_header.scss */
#stick #header #headerContent #menu-main li:last-of-type ul, #stick #header #headerContent #menu-main li.last ul {
  left: auto;
  right: 0px;
}
/* line 214, sass/src/_header.scss */
#stick #header #headerContent #menu-sub {
  display: none;
  margin-top: 19px;
}
/* line 218, 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: 880px) {
  /* line 13, sass/src/_header.scss */
  #stick #header {
    width: 90%;
    max-width: 1180px;
    position: relative;
    top: 0;
    left: 0;
    right: auto;
    padding: 0 0;
  }
  /* line 235, sass/src/_header.scss */
  #stick #header #headerContent {
    width: 180px;
    position: fixed;
    left: auto;
    right: -180px;
  }
  /* line 241, sass/src/_header.scss */
  #stick #header #headerContent #menu-main {
    display: block;
  }
  /* line 244, sass/src/_header.scss */
  #stick #header #headerContent #menu-main li {
    display: block;
    list-style: none;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    text-align: left;
    float: left;
    clear: both;
    width: 100%;
  }
  /* line 255, sass/src/_header.scss */
  #stick #header #headerContent #menu-main li.menu-item-has-children ul {
    display: none;
  }
  /* line 259, sass/src/_header.scss */
  #stick #header #headerContent #menu-main 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(186, 186, 179, 0.3);
  }
  /* line 273, sass/src/_header.scss */
  #stick #header #headerContent #menu-main li a, #stick #header #headerContent #menu-main li a:link, #stick #header #headerContent #menu-main li a:visited {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 2.3rem;
    color: white;
    display: block;
    width: 100%;
    float: left;
  }
  /* line 285, sass/src/_header.scss */
  #stick #header #headerContent #menu-main 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 #menu-main li ul:after {
    content: ".";
    clear: both;
    height: 0;
    visibility: hidden;
    display: block;
  }
  /* line 295, sass/src/_header.scss */
  #stick #header #headerContent #menu-main li ul li {
    padding-left: 20px;
    border-left: 1px solid rgba(186, 186, 179, 0.2);
  }
  /* line 299, sass/src/_header.scss */
  #stick #header #headerContent #menu-main li ul li a, #stick #header #headerContent #menu-main li ul li a:link, #stick #header #headerContent #menu-main li ul li a:visited {
    font-size: 1rem;
    font-weight: 400;
    text-transform: none;
    color: #babab3;
  }
}
/* line 313, sass/src/_header.scss */
#stick.minimized {
  background-color: #333;
  -webkit-transition: top 1s, background-color 1s;
  /* Safari */
  transition: top 1s, background-color 1s;
}
/* line 321, sass/src/_header.scss */
#stick.minimized #header {
  position: relative;
  margin: 0 auto;
  height: 69px;
  width: 90%;
  max-width: 1180px;
  text-align: right;
  overflow: visible;
  -webkit-transition: height 1s;
  /* Safari */
  transition: height 1s;
}
/* line 334, sass/src/_header.scss */
#stick.minimized #header .logo {
  top: 0;
  width: 50px;
}
/* line 342, sass/src/_header.scss */
#stick.minimized #header #descriptor {
  top: 4px;
}
/* line 346, sass/src/_header.scss */
#stick.minimized #header #headerContent {
  top: 21px;
  opacity: 1;
}
@media screen and (max-width: 880px) {
  /* line 346, sass/src/_header.scss */
  #stick.minimized #header #headerContent {
    top: 42px;
    opacity: 1;
  }
}
/* line 358, sass/src/_header.scss */
#stick.minimized #header #headerContent #menu-main li a, #stick.minimized #header #headerContent #menu-main li a:link, #stick.minimized #header #headerContent #menu-main li a:visited {
  -webkit-transition: color 1s, font-size 1s;
  /* Safari */
  transition: color 1s, font-size 1s;
}
/* line 364, sass/src/_header.scss */
#stick.minimized #header #headerContent #menu-main li a::after, #stick.minimized #header #headerContent #menu-main li a:link::after, #stick.minimized #header #headerContent #menu-main li a:visited::after {
  top: 0;
}

/* line 375, sass/src/_header.scss */
#mobileMenu {
  display: none;
}
@media screen and (max-width: 880px) {
  /* line 375, sass/src/_header.scss */
  #mobileMenu {
    position: fixed;
    display: block;
    top: 0px;
    right: 0px;
    width: 32px;
    height: 32px;
    padding: 5px 10px;
    z-index: 100;
    background-color: #3187ac;
  }
  /* line 390, sass/src/_header.scss */
  #mobileMenu img {
    display: block;
    width: 32px;
    height: 32px;
    cursor: pointer;
  }
}

/* line 400, sass/src/_header.scss */
.button-group {
  display: none;
  position: absolute;
  top: 130px;
  left: 202px;
  overflow: hidden;
}
/* line 407, sass/src/_header.scss */
.button-group button {
  display: block;
  float: left;
  background-color: transparent;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  outline: none;
  padding: 0 10px;
}

@media screen and (min-width: 880px) {
  /* line 423, sass/src/_header.scss */
  .button-group {
    display: block;
  }
}
/* 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: #000;
  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: #cc0000;
  font-weight: 400;
}

/* line 55, sass/src/_forms.scss */
button,
a.button,
input[type=submit] {
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  font-weight: 700;
  background-color: #000;
  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 #babab3;
}
/* 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 #000;
  width: 1rem;
  height: 1rem;
  margin: 0 6px 0 0;
  padding: 0 0 0 0;
  vertical-align: top;
  color: #000;
}
/* line 132, sass/src/_forms.scss */
input[type=checkbox]:checked {
  background-color: #000;
}

/* 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: #000;
}

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

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

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

/* line 198, sass/src/_forms.scss */
.post-password-form label {
  display: block;
  float: left;
  width: 50%;
  border-top: 0;
  padding: 0;
  font-size: 0;
}
/* line 206, sass/src/_forms.scss */
.post-password-form label input[type=password] {
  float: left;
  padding: 0 3%;
  border: 0;
  width: 94%;
  height: 36px;
  -webkit-appearance: none;
}
/* line 217, sass/src/_forms.scss */
.post-password-form input[type=submit] {
  float: left;
  padding: 0 0 0 0;
  width: 20%;
  -webkit-appearance: none;
  border-radius: 0;
  background-color: #3187ac;
}

/* 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", 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;
}
