/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
@import url(https://fonts.googleapis.com/css?family=Work+Sans:400,500,700);
@import url(https://fonts.googleapis.com/css?family=Bitter:400,400italic);
@import url(https://fonts.googleapis.com/css?family=Chivo:400italic,900italic);
/* 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, 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 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, body {
  font-size: 100%;
  font-family: "myriad-pro", sans-serif;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}

/* line 17, ../../sass/src/_typography.scss */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-weight: 400;
  color: #333333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  -webkit-font-feature-settings: "kern";
  -moz-font-feature-settings: "kern";
  -moz-font-feature-settings: "kern=1";
}
/* line 26, ../../sass/src/_typography.scss */
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
  font-weight: 700;
}
/* line 27, ../../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 33, ../../sass/src/_typography.scss */
h1 a, h1 a:link, h1 a:visited, h1 a:active, h2 a, h2 a:link, h2 a:visited, h2 a:active, h3 a, h3 a:link, h3 a:visited, h3 a:active, h4 a, h4 a:link, h4 a:visited, h4 a:active, h5 a, h5 a:link, h5 a:visited, h5 a:active, h6 a, h6 a:link, h6 a:visited, h6 a:active {
  color: #333333;
  text-decoration: none;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
}
/* line 38, ../../sass/src/_typography.scss */
h1 a i, h1 a:link i, h1 a:visited i, h1 a:active i, h2 a i, h2 a:link i, h2 a:visited i, h2 a:active i, h3 a i, h3 a:link i, h3 a:visited i, h3 a:active i, h4 a i, h4 a:link i, h4 a:visited i, h4 a:active i, h5 a i, h5 a:link i, h5 a:visited i, h5 a:active i, h6 a i, h6 a:link i, h6 a:visited i, h6 a:active i {
  color: #6d6e71;
}
/* line 42, ../../sass/src/_typography.scss */
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
  color: #dd340c;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
}
/* line 46, ../../sass/src/_typography.scss */
h1 span.small, h2 span.small, h3 span.small, h4 span.small, h5 span.small, h6 span.small {
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-size: 60%;
  color: #86c041;
}
/* line 50, ../../sass/src/_typography.scss */
h1 span.small a, h1 span.small a:link, h1 span.small a:visited, h1 span.small a:active, h2 span.small a, h2 span.small a:link, h2 span.small a:visited, h2 span.small a:active, h3 span.small a, h3 span.small a:link, h3 span.small a:visited, h3 span.small a:active, h4 span.small a, h4 span.small a:link, h4 span.small a:visited, h4 span.small a:active, h5 span.small a, h5 span.small a:link, h5 span.small a:visited, h5 span.small a:active, h6 span.small a, h6 span.small a:link, h6 span.small a:visited, h6 span.small a:active {
  color: #dd340c;
}
/* line 55, ../../sass/src/_typography.scss */
h1.padding, h2.padding, h3.padding, h4.padding, h5.padding, h6.padding {
  padding-left: 20px;
  padding-right: 20px;
}
/* line 60, ../../sass/src/_typography.scss */
h1.nomargin, h2.nomargin, h3.nomargin, h4.nomargin, h5.nomargin, h6.nomargin {
  margin: 0 0 0 0;
}

/* line 65, ../../sass/src/_typography.scss */
h1 {
  font-size: 3rem;
  line-height: 3.3rem;
  margin: 0px 0 48px 0;
}
/* line 70, ../../sass/src/_typography.scss */
h1 .small {
  font-size: 1.3rem;
}
/* line 74, ../../sass/src/_typography.scss */
h1 .link {
  margin-left: 20px;
}

/* line 79, ../../sass/src/_typography.scss */
h2 {
  font-size: 2.2rem;
  line-height: 2.5rem;
  margin: 40px 0 25px 0;
  color: #80b72f;
}
/* line 83, ../../sass/src/_typography.scss */
h2 .small {
  font-size: 1.1rem;
}
/* line 88, ../../sass/src/_typography.scss */
h2.more {
  cursor: pointer;
}
/* line 91, ../../sass/src/_typography.scss */
h2.more:before {
  font-family: FontAwesome;
  content: "\f078";
  display: inline-block;
  padding: 0 7px 0 10px;
  vertical-align: middle;
  font-size: 1rem;
  color: #333333;
}
/* line 102, ../../sass/src/_typography.scss */
h2.less {
  cursor: pointer;
}
/* line 105, ../../sass/src/_typography.scss */
h2.less:before {
  font-family: FontAwesome;
  content: "\f077";
  display: inline-block;
  padding: 0 7px 0 10px;
  vertical-align: middle;
  font-size: 1rem;
  color: #333333;
}

/* line 117, ../../sass/src/_typography.scss */
h3 {
  font-size: 1.9rem;
  line-height: 2.2rem;
  margin: 40px 0 25px 0;
  color: #CC9E2E;
}

/* line 123, ../../sass/src/_typography.scss */
h4 {
  font-size: 1.6rem;
  line-height: 1.9rem;
  margin: 20px 0 20px 0;
  color: #CC9E2E;
}

/* line 129, ../../sass/src/_typography.scss */
h5 {
  font-size: 1.4rem;
  line-height: 1.6rem;
  margin: 15px 0 15px 0;
}

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

/* line 140, ../../sass/src/_typography.scss */
p, li, td, th, dt, dd {
  font-family: "myriad-pro", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.6rem;
  color: #333333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}
/* line 158, ../../sass/src/_typography.scss */
p a, p a:link, p a:visited, p a:active, li a, li a:link, li a:visited, li a:active, td a, td a:link, td a:visited, td a:active, th a, th a:link, th a:visited, th a:active, dt a, dt a:link, dt a:visited, dt a:active, dd a, dd a:link, dd a:visited, dd a:active {
  color: #dd340c;
  text-decoration: none;
}
/* line 163, ../../sass/src/_typography.scss */
p.small, li.small, td.small, th.small, dt.small, dd.small {
  font-size: 0.8rem;
  line-height: 1.2rem;
}

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

/* line 174, ../../sass/src/_typography.scss */
p.dropcap {
  position: relative;
}
/* line 177, ../../sass/src/_typography.scss */
p.dropcap:first-letter {
  color: #444;
  float: left;
  font-size: 4rem;
  line-height: 3rem;
  padding-top: 0.1rem;
  padding-right: 0.3rem;
  padding-left: 0;
}
/* line 200, ../../sass/src/_typography.scss */
p.byline {
  font-size: 1.5rem;
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-weight: 400;
  margin-top: -3rem;
  color: #6d6e71;
}
/* line 206, ../../sass/src/_typography.scss */
p.byline.forH2 {
  margin-top: -1.6rem;
}
@media screen and (max-width: 430px) {
  /* line 212, ../../sass/src/_typography.scss */
  p.byline {
    margin-top: -2rem;
  }
  /* line 214, ../../sass/src/_typography.scss */
  p.byline.forH2 {
    margin-top: -1.6rem;
  }
}

/* line 221, ../../sass/src/_typography.scss */
strong {
  font-weight: 700;
}

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

/* line 228, ../../sass/src/_typography.scss */
.instruction {
  font-family: "myriad-pro", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.1em;
  line-height: 1.4rem;
  margin: 0 0 15px 0;
}

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

/* line 242, ../../sass/src/_typography.scss */
ul, ol {
  margin: 0 0 1.3rem 0;
}

/* line 246, ../../sass/src/_typography.scss */
li {
  margin: 0 0 0.5rem 3rem;
}
/* line 249, ../../sass/src/_typography.scss */
li ul, li ol {
  margin-top: 1rem;
}

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

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

/* line 268, ../../sass/src/_typography.scss */
blockquote p, blockquote li {
  font-style: italic;
  padding-left: 25px;
  border-left: 3px solid #e6e6e6;
}

/* line 275, ../../sass/src/_typography.scss */
table {
  width: 100%;
  margin: 0 0 1.6rem 0;
}
/* line 281, ../../sass/src/_typography.scss */
table thead {
  border-bottom: 1px solid #d3d3d3;
}
/* line 286, ../../sass/src/_typography.scss */
table thead tr th a.asc:after {
  font-family: FontAwesome;
  content: "\f0d8";
  display: inline-block;
  padding-left: 3px;
  vertical-align: middle;
  font-style: normal;
}
/* line 294, ../../sass/src/_typography.scss */
table thead tr th a.desc:after {
  font-family: FontAwesome;
  content: "\f0d7";
  display: inline-block;
  padding-left: 3px;
  vertical-align: middle;
  font-style: normal;
}
/* line 307, ../../sass/src/_typography.scss */
table tr.ui-sortable-helper {
  background-color: #fff;
}
/* line 312, ../../sass/src/_typography.scss */
table tr:hover.clickable td, table tr:hover.clickable th {
  background-color: red;
}
/* line 318, ../../sass/src/_typography.scss */
table td, table th {
  padding: 8px 15px;
  border-bottom: 1px solid #d3d3d3;
  position: relative;
  vertical-align: top;
}
/* line 332, ../../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 334, ../../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 339, ../../sass/src/_typography.scss */
table td img, table th img {
  display: block;
  width: 100%;
}
/* line 344, ../../sass/src/_typography.scss */
table td p:last-of-type, table th p:last-of-type {
  margin-bottom: 0;
}
/* line 349, ../../sass/src/_typography.scss */
table td.thumb img, table th.thumb img {
  max-height: 75px;
}
/* line 354, ../../sass/src/_typography.scss */
table td.number, table th.number {
  text-align: right;
}
/* line 358, ../../sass/src/_typography.scss */
table td.code, table th.code {
  text-align: center;
}
/* line 362, ../../sass/src/_typography.scss */
table td.date, table th.date {
  text-align: center;
  width: 90px;
  font-size: 1rem;
}
/* line 368, ../../sass/src/_typography.scss */
table td.datetime, table th.datetime {
  text-align: center;
  width: 160px;
  font-size: 1rem;
}
/* line 374, ../../sass/src/_typography.scss */
table td.actions, table th.actions {
  min-width: 90px;
  width: 90px;
  text-align: center;
}
/* line 379, ../../sass/src/_typography.scss */
table td.actions i, table th.actions i {
  color: #6d6e71;
  font-size: 1.6rem;
  line-height: 1.6rem;
}
/* line 385, ../../sass/src/_typography.scss */
table td.actions.wider, table th.actions.wider {
  width: 120px;
}
/* line 390, ../../sass/src/_typography.scss */
table td.autowidth, table th.autowidth {
  width: auto;
}
/* line 394, ../../sass/src/_typography.scss */
table td.sortHandle, table th.sortHandle {
  text-align: center;
  cursor: pointer;
}
/* line 400, ../../sass/src/_typography.scss */
table th {
  font-style: italic;
}
/* line 405, ../../sass/src/_typography.scss */
table td label {
  display: none;
}

/* line 416, ../../sass/src/_typography.scss */
.index table td:nth-child(odd):before, .view table td:nth-child(odd):before, .related table td:nth-child(odd):before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #d3d3d3;
  width: 1px;
  height: 10px;
}
/* line 427, ../../sass/src/_typography.scss */
.index table td:nth-child(even):before, .view table td:nth-child(even):before, .related table td:nth-child(even):before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #d3d3d3;
  width: 1px;
  height: 10px;
}

/* line 445, ../../sass/src/_typography.scss */
.postBody table thead tr th {
  border: 1px solid #d3d3d3;
}
/* line 453, ../../sass/src/_typography.scss */
.postBody table tbody tr td {
  border: 1px solid #d3d3d3;
}
/* line 457, ../../sass/src/_typography.scss */
.postBody table tbody tr td:nth-child(odd):before {
  display: none;
}
/* line 462, ../../sass/src/_typography.scss */
.postBody table tbody tr td:nth-child(even):before {
  display: none;
}

@media screen and (max-width: 768px) {
  /* line 474, ../../sass/src/_typography.scss */
  .postBody table {
    overflow-x: auto;
    display: block;
  }
}
/* line 482, ../../sass/src/_typography.scss */
table.vertical-table th {
  width: 25%;
  text-align: right;
}
/* line 488, ../../sass/src/_typography.scss */
table.vertical-table tr td {
  text-align: left;
}

/* line 495, ../../sass/src/_typography.scss */
hr {
  display: block;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid #d3d3d3;
  height: 1px;
  width: 100%;
  margin: 0 0 2rem 0;
  padding: 0.6rem 0 0 0;
}

/* line 507, ../../sass/src/_typography.scss */
.done {
  text-decoration: line-through;
}

@media screen and (max-width: 430px) {
  /* line 512, ../../sass/src/_typography.scss */
  p, li, td, th, dt, dd {
    font-size: 1.1rem;
    margin: 0 0 1.1rem 0;
    line-height: 1.4rem;
  }

  /* line 519, ../../sass/src/_typography.scss */
  p.dropcap {
    position: relative;
  }
  /* line 522, ../../sass/src/_typography.scss */
  p.dropcap:first-letter {
    color: #444;
    float: left;
    font-size: 3.7rem;
    line-height: 3rem;
    padding-top: 0rem;
    padding-right: 0.3rem;
    padding-left: 0;
  }

  /* line 536, ../../sass/src/_typography.scss */
  li {
    margin: 0 0 0.5rem 28px;
  }

  /* line 540, ../../sass/src/_typography.scss */
  h1 {
    font-size: 2rem;
    line-height: 2.3rem;
    margin: 0px 0 30px 0;
  }

  /* line 546, ../../sass/src/_typography.scss */
  h2 {
    font-size: 1.8rem;
    line-height: 2rem;
    margin: 25px 0 25px 0;
  }

  /* line 552, ../../sass/src/_typography.scss */
  h3 {
    color: #aaaaaa;
    font-size: 1.3rem;
    line-height: 1.5rem;
    margin: 40px 0 1rem 0;
    font-weight: 700;
  }

  /* line 563, ../../sass/src/_typography.scss */
  .index table thead, .view table thead, .related table thead {
    display: none;
  }
  /* line 567, ../../sass/src/_typography.scss */
  .index table th, .view table th, .related table th {
    display: none;
  }
  /* line 571, ../../sass/src/_typography.scss */
  .index table tbody, .view table tbody, .related table tbody {
    display: block;
    width: 100%;
    padding: 0 0 0 0;
    border-top: 3px solid #d3d3d3;
  }
  /* line 577, ../../sass/src/_typography.scss */
  .index table tbody tr, .view table tbody tr, .related table tbody tr {
    display: block;
    position: relative;
    border-bottom: 1px solid #d3d3d3;
    margin: 0 0 0px 0;
    padding: 0 0 0px 0;
  }
  /* line 584, ../../sass/src/_typography.scss */
  .index table tbody td, .view table tbody td, .related table tbody td {
    display: block;
    position: relative;
    width: 100%;
    margin: 0 0 0 0;
    padding: 3px 0;
    border: 0;
    text-align: left !important;
  }
  /* line 594, ../../sass/src/_typography.scss */
  .index table tbody td label, .view table tbody td label, .related table tbody td label {
    display: block;
    width: 100%;
    color: #aaaaaa;
    font-size: 1rem;
    line-height: 1.2rem;
    text-transform: uppercase;
    font-family: "acumin-pro-extra-condensed", sans-serif;
  }
  /* line 604, ../../sass/src/_typography.scss */
  .index table tbody td.number, .view table tbody td.number, .related table tbody td.number {
    text-align: left;
  }
  /* line 608, ../../sass/src/_typography.scss */
  .index table tbody td.actions, .view table tbody td.actions, .related table tbody td.actions {
    text-align: left;
  }
  /* line 610, ../../sass/src/_typography.scss */
  .index table tbody td.actions i, .view table tbody td.actions i, .related table tbody td.actions i {
    margin-right: 20px;
  }
  /* line 613, ../../sass/src/_typography.scss */
  .index table tbody td.actions.wide, .view table tbody td.actions.wide, .related table tbody td.actions.wide {
    width: 100%;
  }
  /* line 618, ../../sass/src/_typography.scss */
  .index table tbody td:first-of-type, .view table tbody td:first-of-type, .related table tbody td:first-of-type {
    padding-top: 20px;
  }
  /* line 622, ../../sass/src/_typography.scss */
  .index table tbody td:last-of-type, .view table tbody td:last-of-type, .related table tbody td:last-of-type {
    padding-bottom: 17px;
  }
  /* line 627, ../../sass/src/_typography.scss */
  .index table tbody td:nth-child(odd):before, .view table tbody td:nth-child(odd):before, .related table tbody td:nth-child(odd):before {
    display: none;
  }
  /* line 632, ../../sass/src/_typography.scss */
  .index table tbody td:nth-child(even):before, .view table tbody td:nth-child(even):before, .related table tbody td:nth-child(even):before {
    display: none;
  }
  /* line 640, ../../sass/src/_typography.scss */
  .index table.vertical-table th, .view table.vertical-table th, .related table.vertical-table th {
    width: 100%;
    text-align: left;
    border: 0;
    padding: 5px 0 0 0;
    margin: 0 0 0 0;
    display: block;
    color: #aaaaaa;
    font-size: 1rem;
    line-height: 1.2rem;
    text-transform: uppercase;
    font-family: "acumin-pro-extra-condensed", sans-serif;
    font-style: normal;
  }
  /* line 656, ../../sass/src/_typography.scss */
  .index table.vertical-table tr, .view table.vertical-table tr, .related table.vertical-table tr {
    border-bottom: none;
  }
  /* line 658, ../../sass/src/_typography.scss */
  .index table.vertical-table tr td, .view table.vertical-table tr td, .related table.vertical-table tr td {
    text-align: left;
    padding: 0px 0 5px 0;
  }
}
/* line 669, ../../sass/src/_typography.scss */
.small {
  font-family: "myriad-pro", sans-serif;
  font-size: 1rem;
}

/* line 674, ../../sass/src/_typography.scss */
.dimmed {
  color: #aaaaaa;
}

/* line 678, ../../sass/src/_typography.scss */
.handle {
  cursor: move;
}

/* line 3, ../../sass/src/_layout.scss */
html, body {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
}

/* line 10, ../../sass/src/_layout.scss */
body {
  padding: 0;
  margin: 0;
  background-color: white;
  position: relative;
  width: 100%;
}

/* line 18, ../../sass/src/_layout.scss */
#stage {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0px 0% 0px 0%;
  z-index: 0;
  overflow: hidden;
}
/* line 29, ../../sass/src/_layout.scss */
#stage.background {
  background-image: url("/img/background2.png");
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 1600px 2000px;
}

/* line 37, ../../sass/src/_layout.scss */
#page {
  background-color: transparent;
  clear: both;
  position: relative;
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  z-index: 1;
  padding: 71px 0% 0 0%;
}
/* line 47, ../../sass/src/_layout.scss */
#page.disableNav {
  padding-top: 0;
}

/* line 61, ../../sass/src/_layout.scss */
.container {
  padding: 50px 5%;
}

/* line 65, ../../sass/src/_layout.scss */
.block {
  padding: 50px 5% 50px 5%;
  position: relative;
  width: 90%;
  max-width: 90%;
  margin: 0 auto;
}
/* line 39, ../../sass/src/_mixins.scss */
.block:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
@media screen and (max-width: 430px) {
  /* line 65, ../../sass/src/_layout.scss */
  .block {
    padding: 25px 5% 50px 5%;
  }
}
/* line 80, ../../sass/src/_layout.scss */
.block.view, .block.form, .block.lessons, .block.intro {
  max-width: 720px;
}
/* line 87, ../../sass/src/_layout.scss */
.block.intro {
  padding-bottom: 0;
}
/* line 92, ../../sass/src/_layout.scss */
.block.posts.index {
  max-width: 720px;
}
/* line 96, ../../sass/src/_layout.scss */
.block.posts.view {
  max-width: 720px;
}
/* line 100, ../../sass/src/_layout.scss */
.block.posts.lessons {
  max-width: 720px;
}
/* line 106, ../../sass/src/_layout.scss */
.block.events.view {
  padding-top: 0;
}
/* line 110, ../../sass/src/_layout.scss */
.block.events img.poster {
  width: 100%;
  margin: 0 0 30px 0;
}
/* line 115, ../../sass/src/_layout.scss */
.block.events .eventData {
  margin: 0 0 10px 0;
}
/* line 118, ../../sass/src/_layout.scss */
.block.events .eventData p {
  color: #6d6e71;
  line-height: 1.7rem;
  margin: 0 0 10px 0;
}
/* line 124, ../../sass/src/_layout.scss */
.block.events .eventData .label {
  color: #333333;
  font-size: 0.8rem;
  line-height: 1rem;
  color: #6d6e71;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 0 0;
}
/* line 134, ../../sass/src/_layout.scss */
.block.events .eventData .date {
  color: #333333;
  font-weight: 700;
  margin: 0 5px 0 0;
}
/* line 141, ../../sass/src/_layout.scss */
.block.events .eventData .time {
  color: #333333;
  font-weight: 700;
  margin: 0 5px 0 0;
}
/* line 148, ../../sass/src/_layout.scss */
.block.events .eventData .datetime {
  color: #333333;
  font-weight: 700;
  margin: 0 5px 0 0;
}
/* line 155, ../../sass/src/_layout.scss */
.block.events .eventData .address {
  color: #333333;
  font-weight: 700;
}
/* line 160, ../../sass/src/_layout.scss */
.block.events .eventData .price {
  color: #333333;
  font-weight: 700;
}
/* line 167, ../../sass/src/_layout.scss */
.block.tinted {
  background-color: #f1f1f1;
}

/* line 173, ../../sass/src/_layout.scss */
.wide {
  margin: 0 auto;
  position: relative;
  width: calc(100% - 20px);
  max-width: 1360px;
  padding: 20px 10px 50px 10px;
}
/* line 39, ../../sass/src/_mixins.scss */
.wide:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
@media screen and (max-width: 430px) {
  /* line 173, ../../sass/src/_layout.scss */
  .wide {
    padding: 25px 10px 50px 10px;
  }
}

/* line 187, ../../sass/src/_layout.scss */
.admin {
  margin: 40px 0;
  padding: 15px 2%;
  width: 96%;
  background-color: #f1f1f1;
  border-radius: 5px;
}
/* line 194, ../../sass/src/_layout.scss */
.admin h2 {
  font-size: 1.1rem;
  color: #6d6e71;
  margin: 0 0 15px 0;
  padding: 0 0 0 0;
  line-height: 1.2rem;
}

/* line 203, ../../sass/src/_layout.scss */
.emailDumpData {
  width: 80%;
  clear: both;
  position: relative;
  padding: 40px 10%;
  border-top: 10px solid #d3d3d3;
}
/* line 210, ../../sass/src/_layout.scss */
.emailDumpData .headers {
  font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
  font-size: 0.9rem;
  line-height: 1.2rem;
  color: #444;
}
/* line 217, ../../sass/src/_layout.scss */
.emailDumpData table {
  width: 100%;
  padding: 0;
  margin: 0;
}
/* line 222, ../../sass/src/_layout.scss */
.emailDumpData table tr td {
  border: none;
  padding: 0;
  width: 100%;
}
/* line 228, ../../sass/src/_layout.scss */
.emailDumpData table tr td p {
  font-family: "Helvetica Neue", Helvetica, sans-serif;
}
/* line 233, ../../sass/src/_layout.scss */
.emailDumpData table tr td:nth-child(odd):before {
  display: none;
}
/* line 238, ../../sass/src/_layout.scss */
.emailDumpData table tr td:nth-child(even):before {
  display: none;
}
/* line 243, ../../sass/src/_layout.scss */
.emailDumpData table tr td img {
  width: auto;
}

/* line 252, ../../sass/src/_layout.scss */
.slideShow {
  display: block;
  width: 100%;
  clear: both;
  padding: 1.6rem 0;
  margin-bottom: 1.6rem;
  overflow: hidden;
}

/* line 261, ../../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 266, ../../sass/src/_layout.scss */
.altBackground:nth-child(odd) {
  background-color: rgba(221, 52, 12, 0.05);
}
/* line 269, ../../sass/src/_layout.scss */
.altBackground:nth-child(even) {
  background-color: white;
}

/* line 274, ../../sass/src/_layout.scss */
div.actions {
  display: block;
  width: 100%;
  margin: 40px 0;
}
/* line 278, ../../sass/src/_layout.scss */
div.actions a {
  font-size: 2rem;
  line-height: 2rem;
}
/* line 281, ../../sass/src/_layout.scss */
div.actions a i {
  color: #6d6e71;
}

/* line 287, ../../sass/src/_layout.scss */
#google-map {
  display: block;
  width: 100%;
  height: 100%;
}
/* line 294, ../../sass/src/_layout.scss */
#google-map .mapInfo h2 {
  font-size: 1.8rem;
  line-height: 2.2rem;
  margin: 0 0 0 0;
}
/* line 298, ../../sass/src/_layout.scss */
#google-map .mapInfo h2 a, #google-map .mapInfo h2 a:link, #google-map .mapInfo h2 a:visited {
  color: #dd340c;
}
/* line 302, ../../sass/src/_layout.scss */
#google-map .mapInfo p {
  margin: 0 0 0 0;
  font-size: 1rem;
  line-height: 1.2rem;
}

/* line 310, ../../sass/src/_layout.scss */
.row {
  display: block;
  width: 100%;
}
/* line 39, ../../sass/src/_mixins.scss */
.row:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}

/* line 316, ../../sass/src/_layout.scss */
#therapist {
  display: block;
  margin: 0 auto;
  width: 366px;
  height: 486px;
}

/* line 324, ../../sass/src/_layout.scss */
#homeWelcome.block.solid {
  position: relative;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,4aeaff+100 */
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ffffff 0%, #4aeaff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, #4aeaff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, #4aeaff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#4aeaff',GradientType=0 );
  /* IE6-9 */
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#e51a77+0,9e74ed+100 */
  overflow-x: hidden;
  overflow-y: hidden;
}
/* line 331, ../../sass/src/_layout.scss */
#homeWelcome.block.solid #welcome {
  display: block;
  margin: 10px auto 30px;
  width: 90%;
  max-width: 380px;
}
/* line 338, ../../sass/src/_layout.scss */
#homeWelcome.block.solid #trianglePair {
  display: block;
  width: 102%;
  position: absolute;
  bottom: -2px;
  left: -1%;
}

/* line 348, ../../sass/src/_layout.scss */
div.alert {
  display: block;
  padding: 26px 5% 0;
  margin: 0 0 20px 0;
  overflow: hidden;
  background-color: #dd340c;
  border-radius: 10px;
}

/* line 357, ../../sass/src/_layout.scss */
.tinted {
  background-color: #FCFCFC;
}

/* line 361, ../../sass/src/_layout.scss */
.toggleHide {
  display: none;
}

/* line 365, ../../sass/src/_layout.scss */
ul.anchors {
  display: block;
  width: 100%;
  text-align: center;
  margin: 0 0 0 0;
  padding: 10px 0;
}
/* line 372, ../../sass/src/_layout.scss */
ul.anchors li {
  margin: 0 5px;
  padding: 0 0 0 0;
  display: inline-block;
  list-style: none;
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.8rem;
}
/* line 382, ../../sass/src/_layout.scss */
ul.anchors li a, ul.anchors li a:link, ul.anchors li a:visited {
  display: block;
}

/* line 388, ../../sass/src/_layout.scss */
ul.grid {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-content: flex-start;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
  background-size: 1360px 480px;
  background-repeat: repeat;
  background-position: left top;
}
/* line 402, ../../sass/src/_layout.scss */
ul.grid.alt1 {
  background-image: url("/img/grid-background1.png");
}
/* line 406, ../../sass/src/_layout.scss */
ul.grid.alt2 {
  background-image: url("/img/grid-background2.png");
}
/* line 410, ../../sass/src/_layout.scss */
ul.grid.alt3 {
  background-image: url("/img/grid-background3.png");
}
/* line 414, ../../sass/src/_layout.scss */
ul.grid li {
  display: inline-block;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}
@media screen and (max-width: 440px) {
  /* line 414, ../../sass/src/_layout.scss */
  ul.grid li {
    width: 100%;
  }
}
/* line 423, ../../sass/src/_layout.scss */
ul.grid li .cardwrap {
  display: inline-block;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}
@media screen and (max-width: 440px) {
  /* line 423, ../../sass/src/_layout.scss */
  ul.grid li .cardwrap {
    width: 100%;
  }
}
/* line 432, ../../sass/src/_layout.scss */
ul.grid li .cardwrap .card {
  display: inline-block;
  margin: 20px;
  width: 300px;
  height: 300px;
  padding: 0 0 0 0;
  vertical-align: top;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 20px 20px 0px;
  background-color: white;
  overflow: hidden;
  -webkit-transition: box-shadow 0.5s;
  transition: box-shadow 0.5s;
}
@media screen and (max-width: 440px) {
  /* line 432, ../../sass/src/_layout.scss */
  ul.grid li .cardwrap .card {
    width: calc(100% - 40px);
    max-width: 300px;
  }
}
/* line 444, ../../sass/src/_layout.scss */
ul.grid li .cardwrap .card.short {
  height: 200px;
}
/* line 448, ../../sass/src/_layout.scss */
ul.grid li .cardwrap .card.event {
  height: 450px;
}
/* line 451, ../../sass/src/_layout.scss */
ul.grid li .cardwrap .card.event img.poster {
  width: 100%;
  margin: 0 0 0 0;
}
/* line 467, ../../sass/src/_layout.scss */
ul.grid li .cardwrap .card:hover {
  box-shadow: rgba(228, 88, 44, 0.2) 0px 20px 20px 0px;
}
/* line 471, ../../sass/src/_layout.scss */
ul.grid li .cardwrap .card .tree {
  display: inline-block;
  width: calc(100% - 40px);
  padding: 10px 20px 10px 20px;
  margin: 0 0 0px 0;
  border-bottom: 1px solid #E9EBEE;
}
/* line 478, ../../sass/src/_layout.scss */
ul.grid li .cardwrap .card .tree li {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  display: block;
  width: 100%;
  list-style: none;
  color: #CC9E2E;
  font-size: 0.9rem;
  line-height: 1.2rem;
}
/* line 490, ../../sass/src/_layout.scss */
ul.grid li .cardwrap .card .nycss {
  color: white;
  background-color: #86c041;
  font-weight: 700;
  padding: 5px 20px 5px 20px;
  font-size: 0.9rem;
  line-height: 1rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/* line 501, ../../sass/src/_layout.scss */
ul.grid li .cardwrap .card .nycss .label {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  margin: 0 5px 0 0;
}
/* line 508, ../../sass/src/_layout.scss */
ul.grid li .cardwrap .card .amplify {
  color: white;
  background-color: #f47422;
  font-weight: 700;
  padding: 5px 20px 5px 20px;
  font-size: 0.9rem;
  line-height: 1rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/* line 519, ../../sass/src/_layout.scss */
ul.grid li .cardwrap .card .amplify .label {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  margin: 0 5px 0 0;
}
/* line 526, ../../sass/src/_layout.scss */
ul.grid li .cardwrap .card .title {
  color: #333333;
  font-weight: 300;
  padding: 15px 20px 5px 20px;
  font-size: 1.4rem;
  line-height: 1.6rem;
}
/* line 534, ../../sass/src/_layout.scss */
ul.grid li .cardwrap .card .ghc {
  color: #333333;
  font-weight: 400;
  padding: 0px 20px 5px 20px;
  font-size: 0.8rem;
  line-height: 1rem;
}
/* line 540, ../../sass/src/_layout.scss */
ul.grid li .cardwrap .card .ghc .label {
  color: #CC9E2E;
  font-weight: 700;
  margin: 0 5px 0 0;
}
/* line 547, ../../sass/src/_layout.scss */
ul.grid li .cardwrap .card .sustainability {
  color: #333333;
  font-weight: 400;
  padding: 0px 20px 5px 20px;
  font-size: 0.8rem;
  line-height: 1rem;
}
/* line 553, ../../sass/src/_layout.scss */
ul.grid li .cardwrap .card .sustainability .label {
  color: #CC9E2E;
  font-weight: 700;
  margin: 0 5px 0 0;
}
/* line 560, ../../sass/src/_layout.scss */
ul.grid li .cardwrap .card .date {
  color: #86c041;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 20px 0px 20px;
  font-size: 0.9rem;
  line-height: 1.1rem;
  margin: 0 0 10px 0;
}
/* line 570, ../../sass/src/_layout.scss */
ul.grid li .cardwrap .card .description {
  padding: 0px 20px 20px 20px;
  color: #6d6e71;
  font-size: 0.8rem;
  line-height: 1.1rem;
  margin: 0 0 0 0;
}
/* line 577, ../../sass/src/_layout.scss */
ul.grid li .cardwrap .card .description h2, ul.grid li .cardwrap .card .description h3, ul.grid li .cardwrap .card .description h4, ul.grid li .cardwrap .card .description h5 {
  font-family: "myriad-pro", sans-serif;
  font-weight: 400;
  color: #6d6e71;
  font-size: 0.8rem;
  line-height: 1.1rem;
  margin: 0 0 0 0;
}
/* line 586, ../../sass/src/_layout.scss */
ul.grid li .cardwrap .card .description p {
  color: #6d6e71;
  font-size: 0.8rem;
  line-height: 1.1rem;
  margin: 0 0 0 0;
}
/* line 595, ../../sass/src/_layout.scss */
ul.grid li .cardwrap .card .fadeBottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 50px 0 0 0;
  background-color: rgba(255, 255, 255, 0);
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), white);
  background-image: linear-gradient(to bottom,rgba(255, 255, 255, 0), white);
}

@media screen and (max-width: 430px) {
  /* line 620, ../../sass/src/_layout.scss */
  div.alert {
    padding: 16px 5% 0;
  }
}
/* line 1, ../../sass/src/_header.scss */
#stick {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 100;
  background-color: white;
  overflow: visible;
  height: 71px;
  border-bottom: 1px solid #d3d3d3;
  -webkit-transition: top 0.5s;
  transition: top 0.5s;
}
/* line 15, ../../sass/src/_header.scss */
#stick #header {
  display: block;
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
}
/* line 21, ../../sass/src/_header.scss */
#stick #header .contain {
  width: 90%;
  padding: 0 0 0 0;
  display: block;
  overflow: visible;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 110;
}
/* line 39, ../../sass/src/_mixins.scss */
#stick #header .contain:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 32, ../../sass/src/_header.scss */
#stick #header .contain #logo {
  position: absolute;
  left: 0;
  top: 15px;
  margin: 0;
  padding: 0;
}
/* line 39, ../../sass/src/_header.scss */
#stick #header .contain #logo img {
  width: 170px;
}
/* line 44, ../../sass/src/_header.scss */
#stick #header .contain #mobileMenu {
  display: none;
  position: absolute;
  top: 19px;
  right: 0;
  width: 32px;
  height: 32px;
  z-index: 110;
}
/* line 53, ../../sass/src/_header.scss */
#stick #header .contain #mobileMenu img {
  display: block;
  width: 32px;
  height: 32px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* line 73, ../../sass/src/_header.scss */
#sideTray {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 71px;
  padding: 0;
  z-index: 105;
}
/* line 39, ../../sass/src/_mixins.scss */
#sideTray:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 84, ../../sass/src/_header.scss */
#sideTray #nav {
  display: block;
  position: relative;
  clear: both;
  width: 100%;
  max-width: 2000px;
  padding: 0;
  margin: 0 auto;
}
/* line 39, ../../sass/src/_mixins.scss */
#sideTray #nav:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 94, ../../sass/src/_header.scss */
#sideTray #nav .menu-primary-container {
  display: block;
  position: relative;
  clear: both;
  width: 90%;
  margin: 0 auto;
  padding: 0 5%;
}
/* line 39, ../../sass/src/_mixins.scss */
#sideTray #nav .menu-primary-container:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 103, ../../sass/src/_header.scss */
#sideTray #nav .menu-primary-container #menu-primary {
  display: block;
  clear: both;
  margin: 0 0 0 0;
  height: 71px;
  text-align: right;
  background-color: transparent;
}
/* line 39, ../../sass/src/_mixins.scss */
#sideTray #nav .menu-primary-container #menu-primary:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 112, ../../sass/src/_header.scss */
#sideTray #nav .menu-primary-container #menu-primary li {
  display: inline-block;
  list-style: none;
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-weight: 700;
  line-height: 71px;
  margin: 0 0 0 0;
  padding: 0 7px;
  position: relative;
}
/* line 122, ../../sass/src/_header.scss */
#sideTray #nav .menu-primary-container #menu-primary li:first-of-type {
  padding-left: 0;
}
/* line 126, ../../sass/src/_header.scss */
#sideTray #nav .menu-primary-container #menu-primary li:last-of-type, #sideTray #nav .menu-primary-container #menu-primary li.last {
  padding-right: 0;
}
/* line 130, ../../sass/src/_header.scss */
#sideTray #nav .menu-primary-container #menu-primary li a, #sideTray #nav .menu-primary-container #menu-primary li a:link, #sideTray #nav .menu-primary-container #menu-primary li a:visited {
  display: inline-block;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #333333;
  line-height: 71px;
  position: relative;
}
/* line 139, ../../sass/src/_header.scss */
#sideTray #nav .menu-primary-container #menu-primary li a.menu-new:before, #sideTray #nav .menu-primary-container #menu-primary li a:link.menu-new:before, #sideTray #nav .menu-primary-container #menu-primary li a:visited.menu-new:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  height: 15px;
  width: 40px;
  transform: translateX(-50%);
  display: block;
  background-image: url("/img/menu-new.png");
  background-size: 40px 15px;
  background-repeat: none;
  background-position: left top;
}
/* line 158, ../../sass/src/_header.scss */
#sideTray #nav .menu-primary-container #menu-primary li.current-menu-ancestor > a,
#sideTray #nav .menu-primary-container #menu-primary li.current-menu-ancestor > a:link,
#sideTray #nav .menu-primary-container #menu-primary li.current-menu-ancestor > a:visited, #sideTray #nav .menu-primary-container #menu-primary li.current-menu-item > a,
#sideTray #nav .menu-primary-container #menu-primary li.current-menu-item > a:link,
#sideTray #nav .menu-primary-container #menu-primary li.current-menu-item > a:visited {
  color: #dd340c;
}
/* line 165, ../../sass/src/_header.scss */
#sideTray #nav .menu-primary-container #menu-primary li a:hover {
  color: #dd340c;
}
/* line 169, ../../sass/src/_header.scss */
#sideTray #nav .menu-primary-container #menu-primary li ul {
  display: none;
  position: absolute;
  top: 72px;
  left: -5px;
  width: 200px;
  background-color: white;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  border-left: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
}
/* line 181, ../../sass/src/_header.scss */
#sideTray #nav .menu-primary-container #menu-primary li ul li {
  display: block;
  float: left;
  width: 100%;
  clear: both;
  border-bottom: 1px solid #d3d3d3;
  list-style: none;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}
/* line 191, ../../sass/src/_header.scss */
#sideTray #nav .menu-primary-container #menu-primary li ul li a, #sideTray #nav .menu-primary-container #menu-primary li ul li a:link, #sideTray #nav .menu-primary-container #menu-primary li ul li a:visited {
  display: block;
  float: left;
  width: 90%;
  text-align: left;
  text-transform: none;
  line-height: 3rem;
  padding: 0 5%;
}
/* line 201, ../../sass/src/_header.scss */
#sideTray #nav .menu-primary-container #menu-primary li ul li a:hover {
  color: #dd340c;
}
/* line 208, ../../sass/src/_header.scss */
#sideTray #nav .menu-primary-container #menu-primary li:last-of-type ul, #sideTray #nav .menu-primary-container #menu-primary li.last ul {
  left: auto;
  right: 0px;
}

@media screen and (max-width: 1000px) {
  /* line 227, ../../sass/src/_header.scss */
  #stick #header .contain #mobileMenu {
    display: block;
  }

  /* line 241, ../../sass/src/_header.scss */
  #sideTray {
    display: none;
    width: 300px;
    height: auto;
    top: 71px;
    right: -310px;
    left: auto;
    padding: 0 0 0 0;
    background-color: white;
    border-top: 1px solid #d3d3d3;
    border-left: 1px solid #d3d3d3;
    z-index: 90;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #f1f1f1;
  }
  /* line 39, ../../sass/src/_mixins.scss */
  #sideTray:after {
    content: ".";
    clear: both;
    height: 0;
    visibility: hidden;
    display: block;
  }
  /* line 258, ../../sass/src/_header.scss */
  #sideTray #nav {
    position: relative;
    display: block;
    float: left;
    clear: both;
    height: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
  }
  /* line 39, ../../sass/src/_mixins.scss */
  #sideTray #nav:after {
    content: ".";
    clear: both;
    height: 0;
    visibility: hidden;
    display: block;
  }
  /* line 264, ../../sass/src/_header.scss */
  #sideTray #nav .menu-primary-container {
    position: relative;
    display: block;
    float: left;
    clear: both;
    height: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
  }
  /* line 39, ../../sass/src/_mixins.scss */
  #sideTray #nav .menu-primary-container:after {
    content: ".";
    clear: both;
    height: 0;
    visibility: hidden;
    display: block;
  }
  /* line 270, ../../sass/src/_header.scss */
  #sideTray #nav .menu-primary-container #menu-primary {
    position: relative;
    display: block;
    float: left;
    clear: both;
    height: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    background-color: white;
  }
  /* line 39, ../../sass/src/_mixins.scss */
  #sideTray #nav .menu-primary-container #menu-primary:after {
    content: ".";
    clear: both;
    height: 0;
    visibility: hidden;
    display: block;
  }
  /* line 277, ../../sass/src/_header.scss */
  #sideTray #nav .menu-primary-container #menu-primary li {
    position: relative;
    display: block;
    float: left;
    clear: both;
    height: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    font-size: 1.1rem;
    width: 100%;
    border-bottom: 1px solid #d3d3d3;
    list-style: none;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    text-align: right;
  }
  /* line 39, ../../sass/src/_mixins.scss */
  #sideTray #nav .menu-primary-container #menu-primary li:after {
    content: ".";
    clear: both;
    height: 0;
    visibility: hidden;
    display: block;
  }
  /* line 289, ../../sass/src/_header.scss */
  #sideTray #nav .menu-primary-container #menu-primary li.menu-item-has-children ul {
    display: none;
  }
  /* line 294, ../../sass/src/_header.scss */
  #sideTray #nav .menu-primary-container #menu-primary li a, #sideTray #nav .menu-primary-container #menu-primary li a:link, #sideTray #nav .menu-primary-container #menu-primary li a:visited {
    display: block;
    position: relative;
    display: block;
    float: left;
    clear: both;
    height: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 90%;
    line-height: 3rem;
    padding: 0 5%;
    margin: 0 0 0 0;
  }
  /* line 39, ../../sass/src/_mixins.scss */
  #sideTray #nav .menu-primary-container #menu-primary li a:after, #sideTray #nav .menu-primary-container #menu-primary li a:link:after, #sideTray #nav .menu-primary-container #menu-primary li a:visited:after {
    content: ".";
    clear: both;
    height: 0;
    visibility: hidden;
    display: block;
  }
  /* line 303, ../../sass/src/_header.scss */
  #sideTray #nav .menu-primary-container #menu-primary li a.menu-new:before, #sideTray #nav .menu-primary-container #menu-primary li a:link.menu-new:before, #sideTray #nav .menu-primary-container #menu-primary li a:visited.menu-new:before {
    top: 18px;
    left: auto;
    right: 44px;
    height: 15px;
    width: 40px;
  }
  /* line 314, ../../sass/src/_header.scss */
  #sideTray #nav .menu-primary-container #menu-primary li ul {
    position: relative;
    display: block;
    float: left;
    clear: both;
    height: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    padding: 0 0 15px 0;
    margin: 0 0 0 0;
    border-left: 0;
    border-right: 0;
  }
  /* line 39, ../../sass/src/_mixins.scss */
  #sideTray #nav .menu-primary-container #menu-primary li ul:after {
    content: ".";
    clear: both;
    height: 0;
    visibility: hidden;
    display: block;
  }
  /* line 322, ../../sass/src/_header.scss */
  #sideTray #nav .menu-primary-container #menu-primary li ul li {
    position: relative;
    display: block;
    float: left;
    clear: both;
    height: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0 0 0 0;
    border-bottom: 0;
    font-weight: 400;
  }
  /* line 39, ../../sass/src/_mixins.scss */
  #sideTray #nav .menu-primary-container #menu-primary li ul li:after {
    content: ".";
    clear: both;
    height: 0;
    visibility: hidden;
    display: block;
  }
  /* line 328, ../../sass/src/_header.scss */
  #sideTray #nav .menu-primary-container #menu-primary li ul li a, #sideTray #nav .menu-primary-container #menu-primary li ul li a:link, #sideTray #nav .menu-primary-container #menu-primary li ul li a:visited {
    position: relative;
    display: block;
    float: left;
    clear: both;
    height: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 90%;
    padding: 0 5%;
    line-height: 2rem;
    text-align: right;
  }
  /* line 39, ../../sass/src/_mixins.scss */
  #sideTray #nav .menu-primary-container #menu-primary li ul li a:after, #sideTray #nav .menu-primary-container #menu-primary li ul li a:link:after, #sideTray #nav .menu-primary-container #menu-primary li ul li a:visited:after {
    content: ".";
    clear: both;
    height: 0;
    visibility: hidden;
    display: block;
  }
}
/* line 345, ../../sass/src/_header.scss */
#tabs {
  text-align: center;
}
@media screen and (max-width: 768px) {
  /* line 345, ../../sass/src/_header.scss */
  #tabs {
    display: none;
  }
}
/* line 352, ../../sass/src/_header.scss */
#tabs ul {
  display: inline-block;
  margin: 0 0 0 0;
  padding: 0 0px 0 0;
}
/* line 357, ../../sass/src/_header.scss */
#tabs ul li {
  display: inline-block;
  list-style: none;
  line-height: 1.6rem;
  margin: 0 5px;
  padding: 0 0 0 0;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
}
/* line 372, ../../sass/src/_header.scss */
#tabs ul li a, #tabs ul li a:link, #tabs ul li a:visited {
  display: inline-block;
  color: #333333;
  font-size: 0.9rem;
  line-height: 2.6rem;
  text-transform: uppercase;
  font-family: "myriad-pro", sans-serif;
  font-weight: 400;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}
/* line 383, ../../sass/src/_header.scss */
#tabs ul li a:hover {
  color: #dd340c;
}
/* line 387, ../../sass/src/_header.scss */
#tabs ul li.current-menu-item {
  border-bottom: 2px solid #dd340c;
}

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

/* line 7, ../../sass/src/_forms.scss */
label {
  font-family: "myriad-pro", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}

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

/* line 17, ../../sass/src/_forms.scss */
div.error-message {
  font-family: "myriad-pro", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #dd340c;
  line-height: 1.4rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}

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

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

/* line 51, ../../sass/src/_forms.scss */
textarea {
  width: 100%;
  padding: 5px 0;
  border: 0;
  font-size: 1.2rem;
  line-height: 1.6rem;
  height: 300px;
  font-weight: 400;
  border-radius: 0;
  -webkit-appearance: none;
}
/* line 62, ../../sass/src/_forms.scss */
textarea.short {
  height: 150px;
}

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

/* line 74, ../../sass/src/_forms.scss */
button,
input[type=submit],
a.button,
a.button:link,
a.button:visited {
  font-family: "myriad-pro", sans-serif;
  font-weight: 700;
  background-color: #e4582c;
  color: white;
  display: inline-block;
  border: 0;
  height: 40px;
  line-height: 37px;
  padding: 0 20px 3px 20px;
  margin: 0 0 0 0;
  text-align: center;
  text-decoration: none;
  font-size: 1.3rem;
  cursor: pointer;
  border-radius: 7px;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}
/* line 100, ../../sass/src/_forms.scss */
button.stickToRight,
input[type=submit].stickToRight,
a.button.stickToRight,
a.button:link.stickToRight,
a.button:visited.stickToRight {
  position: relative;
  float: right;
  top: -5px;
}

/* line 107, ../../sass/src/_forms.scss */
a.button,
a.button:link,
a.button:visited {
  height: 37px;
}

/* line 113, ../../sass/src/_forms.scss */
button.small,
input[type=submit].small,
a.button.small,
a.button.small:link,
a.button.small:visited,
ul.actions li a {
  font-family: "myriad-pro", sans-serif;
  font-weight: 700;
  background-color: #e4582c;
  color: white;
  display: inline-block;
  border: 0;
  height: 28px;
  line-height: 26px;
  padding: 0 10px 2px 10px;
  margin: 0 0 0 0;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}
/* line 138, ../../sass/src/_forms.scss */
button.small.stickToRight,
input[type=submit].small.stickToRight,
a.button.small.stickToRight,
a.button.small:link.stickToRight,
a.button.small:visited.stickToRight,
ul.actions li a.stickToRight {
  position: relative;
  float: right;
  top: -5px;
}

/* line 145, ../../sass/src/_forms.scss */
a.button.small,
a.button.small:link,
a.button.small:visited,
ul.actions li a {
  height: 26px;
}

/* line 153, ../../sass/src/_forms.scss */
h1 .actions {
  margin: 0 0 0 20px;
}
/* line 155, ../../sass/src/_forms.scss */
h1 .actions a.button.small,
h1 .actions a.button.small:link,
h1 .actions a.button.small:visited {
  position: relative;
  top: -8px;
}

/* line 164, ../../sass/src/_forms.scss */
ul.actions {
  display: block;
  width: 100%;
  font-size: 0;
}
/* line 169, ../../sass/src/_forms.scss */
ul.actions li {
  list-style: none;
  display: inline-block;
  margin: 0 10px 10px 0;
  padding: 0 0 0 0;
  border-bottom: 0;
}
/* line 176, ../../sass/src/_forms.scss */
ul.actions li.icon {
  list-style: none;
  display: inline-block;
  margin: 0 15px 0 0;
  padding: 0 0 0 0;
  border-bottom: 0;
}
/* line 183, ../../sass/src/_forms.scss */
ul.actions li.icon a {
  font-size: 2rem;
  height: 2rem;
  line-height: 2rem;
  padding: 0 0 0 0;
  margin: 0 0 0 0;
  background-color: transparent;
  color: #6d6e71;
  border-radius: 0;
}
/* line 192, ../../sass/src/_forms.scss */
ul.actions li.icon a:hover {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}

/* line 200, ../../sass/src/_forms.scss */
input[type="submit"]:disabled,
.preventRepeat:disabled,
button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* line 207, ../../sass/src/_forms.scss */
a.button:hover {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}

/* line 211, ../../sass/src/_forms.scss */
a.button.disabled {
  background-color: #aaaaaa;
  cursor: not-allowed;
}

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

/* line 224, ../../sass/src/_forms.scss */
.input {
  margin: 0 0 20px 0;
  padding-left: 10px;
  border-bottom: 1px solid #d3d3d3;
  border-left: 3px solid #d3d3d3;
  overflow: visible;
}
/* line 231, ../../sass/src/_forms.scss */
.input label {
  display: inline-block;
  font-size: 0.9rem;
  color: #aaa;
}

/* line 239, ../../sass/src/_forms.scss */
.submit {
  margin-top: 20px;
}

/* line 243, ../../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 253, ../../sass/src/_forms.scss */
.input input[type=file] {
  font-size: 1rem;
  padding: 11px 0 2px 0px;
  line-height: 20px;
  background-color: transparent;
}

/* line 263, ../../sass/src/_forms.scss */
.input.textarea {
  padding-bottom: 0px;
  border-bottom: 0;
}
/* line 266, ../../sass/src/_forms.scss */
.input.textarea label {
  margin-bottom: 7px;
}

/* line 271, ../../sass/src/_forms.scss */
.input.select {
  border-bottom: 0;
  padding-bottom: 3px;
}
/* line 274, ../../sass/src/_forms.scss */
.input.select label {
  margin-bottom: 5px;
}
/* line 279, ../../sass/src/_forms.scss */
.input.select .checkbox label {
  color: #333333;
}
/* line 284, ../../sass/src/_forms.scss */
.input.select.multicheckbox {
  border-bottom: 1px solid #d3d3d3;
}

/* line 290, ../../sass/src/_forms.scss */
.input.radio label {
  display: inline-block;
  margin: 0 20px 0 0;
  line-height: 30px;
  height: 30px;
  padding: 0 0 0 0;
  color: #333333;
}
/* line 298, ../../sass/src/_forms.scss */
.input.radio label input[type=radio] {
  float: left;
  line-height: 30px;
  height: 30px;
  margin: 0 5px 0 0;
  padding: 0 0 0 0;
}

/* line 308, ../../sass/src/_forms.scss */
input[type=image].paypal,
img.paypal {
  width: 240px;
  height: 60px;
}

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

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

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

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

/* line 347, ../../sass/src/_forms.scss */
.input.datepair > input {
  display: inline-block;
  border-radius: 4px;
  border: 1px solid #ced0dd;
  margin: 3px 5px 8px 0;
  padding: 5px;
  line-height: 1.42857143;
  font-size: 18px;
  width: 17%;
}

/* line 358, ../../sass/src/_forms.scss */
.input.datepair > label {
  margin-right: 10px;
}

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

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

/* line 391, ../../sass/src/_forms.scss */
.toolbar {
  width: 100%;
  margin: 0 0 20px 0;
}

/* line 396, ../../sass/src/_forms.scss */
:focus {
  outline-color: transparent;
  outline-style: none;
}

/* line 401, ../../sass/src/_forms.scss */
.mce-container {
  white-space: normal !important;
}

/* line 405, ../../sass/src/_forms.scss */
div.mce-tinymce-inline {
  width: 100% !important;
  height: auto !important;
  top: 0 !important;
  left: 0 !important;
  margin: 0 0 0 0 !important;
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-bottom: 1px solid #d3d3d3 !important;
}
/* line 39, ../../sass/src/_mixins.scss */
div.mce-tinymce-inline:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 418, ../../sass/src/_forms.scss */
div.mce-tinymce-inline .mce-container-body.mce-abs-layout {
  width: auto !important;
  height: auto !important;
  margin: 0 0 0 0 !important;
}
/* line 39, ../../sass/src/_mixins.scss */
div.mce-tinymce-inline .mce-container-body.mce-abs-layout:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 424, ../../sass/src/_forms.scss */
div.mce-tinymce-inline .mce-container-body.mce-abs-layout .mce-abs-layout-item, div.mce-tinymce-inline .mce-container-body.mce-abs-layout .mce-abs-end {
  width: auto !important;
  height: auto !important;
  position: relative !important;
  white-space: normal !important;
  margin: 0 0 0 0 !important;
}
/* line 431, ../../sass/src/_forms.scss */
div.mce-tinymce-inline .mce-container-body.mce-abs-layout .mce-abs-layout-item .mce-container, div.mce-tinymce-inline .mce-container-body.mce-abs-layout .mce-abs-layout-item .mce-container-body, div.mce-tinymce-inline .mce-container-body.mce-abs-layout .mce-abs-end .mce-container, div.mce-tinymce-inline .mce-container-body.mce-abs-layout .mce-abs-end .mce-container-body {
  width: auto !important;
  height: auto !important;
  white-space: normal !important;
  margin: 0 0 0 0 !important;
  text-align: center;
}
/* line 438, ../../sass/src/_forms.scss */
div.mce-tinymce-inline .mce-container-body.mce-abs-layout .mce-abs-layout-item .mce-container div, div.mce-tinymce-inline .mce-container-body.mce-abs-layout .mce-abs-layout-item .mce-container-body div, div.mce-tinymce-inline .mce-container-body.mce-abs-layout .mce-abs-end .mce-container div, div.mce-tinymce-inline .mce-container-body.mce-abs-layout .mce-abs-end .mce-container-body div {
  margin: 0 0 0 0 !important;
  white-space: normal !important;
}
/* line 443, ../../sass/src/_forms.scss */
div.mce-tinymce-inline .mce-container-body.mce-abs-layout .mce-abs-layout-item .mce-container .mce-btn-group, div.mce-tinymce-inline .mce-container-body.mce-abs-layout .mce-abs-layout-item .mce-container-body .mce-btn-group, div.mce-tinymce-inline .mce-container-body.mce-abs-layout .mce-abs-end .mce-container .mce-btn-group, div.mce-tinymce-inline .mce-container-body.mce-abs-layout .mce-abs-end .mce-container-body .mce-btn-group {
  white-space: normal !important;
}

/* line 452, ../../sass/src/_forms.scss */
.btn {
  text-transform: uppercase;
  padding: 6px 25px 5px 25px;
  font-size: 16px;
}

/* line 458, ../../sass/src/_forms.scss */
#searchBar {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  padding: 10px 5%;
  margin: 0 auto;
  width: 90%;
  border-bottom: 1px solid #d3d3d3;
  overflow: hidden;
}
/* line 469, ../../sass/src/_forms.scss */
#searchBar .displayFormats {
  display: block;
  float: left;
  width: 23%;
  margin: 0 1% 0 0;
}
/* line 474, ../../sass/src/_forms.scss */
#searchBar .displayFormats p {
  line-height: 34px;
  font-size: 1rem;
  font-family: "myriad-pro", sans-serif;
  margin: 0 0 0 0;
}
/* line 479, ../../sass/src/_forms.scss */
#searchBar .displayFormats p a {
  color: #aaaaaa;
}
/* line 482, ../../sass/src/_forms.scss */
#searchBar .displayFormats p a.selected {
  color: #333333;
}
/* line 485, ../../sass/src/_forms.scss */
#searchBar .displayFormats p a i {
  font-size: 1.4rem;
  position: relative;
  top: 3px;
}
/* line 494, ../../sass/src/_forms.scss */
#searchBar .input.select {
  clear: none;
  display: block;
  float: left;
  width: 37%;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  border: 0;
}
/* line 503, ../../sass/src/_forms.scss */
#searchBar .input.select label {
  display: none;
}
/* line 506, ../../sass/src/_forms.scss */
#searchBar .input.select select {
  width: 100%;
  height: 34px;
}
/* line 512, ../../sass/src/_forms.scss */
#searchBar .searchGroup {
  display: block;
  float: right;
  width: 37%;
}
/* line 517, ../../sass/src/_forms.scss */
#searchBar .searchGroup .searchText {
  float: left;
  border: 1px solid #d3d3d3;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  border-right: 0;
  padding: 0 0 0 2%;
  height: 32px;
  width: 66%;
  -webkit-appearance: none;
}
/* line 528, ../../sass/src/_forms.scss */
#searchBar .searchGroup .searchRemove {
  display: block;
  float: left;
  width: 5%;
  height: 32px;
  padding: 0 0.5%;
  border-top: 1px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
  background-color: white;
}
/* line 537, ../../sass/src/_forms.scss */
#searchBar .searchGroup .searchRemove i {
  color: #333333;
  line-height: 32px;
}
/* line 542, ../../sass/src/_forms.scss */
#searchBar .searchGroup .searchSubmit {
  float: left;
  border-radius: 0px;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  height: 34px;
  line-height: 34px;
  width: 25%;
  padding-right: 1%;
  padding-left: 1%;
  font-size: 1rem;
}

/* line 558, ../../sass/src/_forms.scss */
.clickable {
  cursor: pointer;
}

/* line 562, ../../sass/src/_forms.scss */
.embedForm {
  border: 1px solid #d3d3d3;
  border-radius: 20px;
  padding: 20px 20px;
  margin: 0 0 40px 0;
  width: calc(100% - 42px);
}

@media screen and (max-width: 768px) {
  /* line 575, ../../sass/src/_forms.scss */
  #searchBar .displayFormats {
    float: none;
    width: 100%;
    margin: 0 0 7px 0;
  }
  /* line 581, ../../sass/src/_forms.scss */
  #searchBar .input.select {
    float: none;
    width: 100%;
    margin: 0 0 10px 0;
  }
  /* line 587, ../../sass/src/_forms.scss */
  #searchBar .searchGroup {
    float: none;
    width: 100%;
  }
}
/* Rating Star Widgets Style */
/* line 597, ../../sass/src/_forms.scss */
.rating-stars ul {
  list-style-type: none;
  padding: 0;
  -moz-user-select: none;
  -webkit-user-select: none;
}

/* line 604, ../../sass/src/_forms.scss */
.rating-stars ul > li.star {
  display: inline-block;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}

/* Idle State of the stars */
/* line 611, ../../sass/src/_forms.scss */
.rating-stars ul > li.star > i.fa {
  font-size: 2.5em;
  /* Change the size of the stars */
  color: #ccc;
  /* Color on idle state */
}

/* Hover state of the stars */
/* line 617, ../../sass/src/_forms.scss */
.rating-stars ul > li.star.hover > i.fa {
  color: #e4582c;
}

/* Selected state of the stars */
/* line 622, ../../sass/src/_forms.scss */
.rating-stars ul > li.star.selected > i.fa {
  color: #86c041;
}

/* line 627, ../../sass/src/_forms.scss */
.input.datetime,
.input.date,
.input.time {
  overflow: hidden;
}
/* line 632, ../../sass/src/_forms.scss */
.input.datetime label,
.input.date label,
.input.time label {
  display: block;
  float: left;
}
/* line 637, ../../sass/src/_forms.scss */
.input.datetime input,
.input.date input,
.input.time input {
  border: 0;
  float: left;
  clear: both;
  width: 100%;
  max-width: 300px;
}

/* line 1, ../../sass/src/_system.scss */
#systemMessage {
  position: fixed;
  display: none;
  top: -55px;
  /* Hide by default */
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: auto;
  color: #fff;
  padding: 0px 0px 0px 0px;
  z-index: 200;
  text-align: center;
}
/* line 14, ../../sass/src/_system.scss */
#systemMessage div.block {
  position: relative;
  margin: 0 auto;
  display: inline-block;
  color: #fff;
  padding: 29px 35px 10px 15px;
  z-index: 100;
  /*	cursor: pointer; */
  background-color: #dd340c;
  -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 28, ../../sass/src/_system.scss */
#systemMessage div.block #messageContent {
  display: block;
  overflow: hidden;
}
/* line 32, ../../sass/src/_system.scss */
#systemMessage div.block #messageContent div.message {
  font-family: "myriad-pro", sans-serif;
  font-weight: 400;
  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 48, ../../sass/src/_system.scss */
#systemMessage div.block #click2close {
  position: absolute;
  top: 35px;
  right: 10px;
  font-size: 17px;
  color: #fff;
  cursor: pointer;
  pointer-events: auto;
}

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

/* line 2, ../../sass/src/_posts.scss */
.prevNext {
  display: block;
  width: 100%;
  height: 2rem;
  overflow: hidden;
  position: relative;
}
/* line 9, ../../sass/src/_posts.scss */
.prevNext.top {
  margin: 0 0 20px 0;
}
/* line 13, ../../sass/src/_posts.scss */
.prevNext.bottom {
  margin: 30px 0 -25px 0;
}
/* line 17, ../../sass/src/_posts.scss */
.prevNext a {
  display: block;
  position: absolute;
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #86c041;
  text-decoration: none;
  font-weight: 700;
}
/* line 28, ../../sass/src/_posts.scss */
.prevNext a.prev {
  left: 0px;
}
/* line 32, ../../sass/src/_posts.scss */
.prevNext a.next {
  right: 0px;
}

/* line 40, ../../sass/src/_posts.scss */
ul.breadcrumb {
  display: block;
  width: 100%;
  border-top: 1px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
  padding: 5px 0 6px 0;
  margin: 0 0 7px 0;
}
/* line 48, ../../sass/src/_posts.scss */
ul.breadcrumb li {
  display: inline-block;
  list-style: none;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-size: 1.4rem;
}
/* line 56, ../../sass/src/_posts.scss */
ul.breadcrumb li:after {
  font-family: FontAwesome;
  content: "\f0da";
  display: inline-block;
  padding: 0 7px 0 10px;
  vertical-align: middle;
  font-size: 1rem;
}
/* line 66, ../../sass/src/_posts.scss */
ul.breadcrumb li:last-of-type:after {
  display: none;
}

@media screen and (max-width: 768px) {
  /* line 74, ../../sass/src/_posts.scss */
  ul.breadcrumb {
    padding: 5px 0 6px 0;
    margin: 0 0 7px 0;
  }
  /* line 78, ../../sass/src/_posts.scss */
  ul.breadcrumb li {
    font-size: 1rem;
  }
}
/* line 84, ../../sass/src/_posts.scss */
.grade {
  display: block;
  width: 100%;
  overflow: visible;
  border-top: 1px solid #d3d3d3;
  margin: 0 0 0 0;
  padding: 20px 0 10px 0;
}

/* line 93, ../../sass/src/_posts.scss */
.unitDetail, .gradeDetail {
  margin: 10px 0 10px 0;
  padding: 15px 20px 5px 20px;
  background-color: #edf4e4;
  border-radius: 8px;
}
/* line 100, ../../sass/src/_posts.scss */
.unitDetail p, .unitDetail li, .gradeDetail p, .gradeDetail li {
  font-size: 1rem;
  line-height: 1.4rem;
  margin: 0 0 1rem 0;
}
/* line 107, ../../sass/src/_posts.scss */
.unitDetail .adminOnly h2, .gradeDetail .adminOnly h2 {
  font-size: 1.1rem;
  color: #6d6e71;
  margin: 40px 0 0 0;
  padding: 5px 0 0 0;
  line-height: 1.2rem;
  width: 100%;
  display: inline-block;
  border-top: 1px solid #d3d3d3;
}

/* line 120, ../../sass/src/_posts.scss */
.clickExpand {
  color: #6d6e71;
  font-size: 1.5rem;
}

/* line 126, ../../sass/src/_posts.scss */
h2 .clickExpand {
  font-size: 1.5rem;
}

/* line 131, ../../sass/src/_posts.scss */
ol.lessons {
  border-top: 1px solid #d3d3d3;
  display: block;
  padding-top: 20px;
}
/* line 136, ../../sass/src/_posts.scss */
ol.lessons li {
  display: block;
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #d3d3d3;
}
/* line 143, ../../sass/src/_posts.scss */
ol.lessons li h3 {
  display: inline-block;
  width: 100%;
  position: relative;
  margin: 0 0 5px 0;
}
/* line 149, ../../sass/src/_posts.scss */
ol.lessons li h3 a.title {
  display: inline-block;
  width: 95%;
}
/* line 154, ../../sass/src/_posts.scss */
ol.lessons li h3 a.clickExpand {
  width: 5%;
  position: absolute;
  top: 3px;
  right: 0;
  text-align: right;
}
/* line 163, ../../sass/src/_posts.scss */
ol.lessons li ol {
  border-bottom: 0;
  margin: 0 0 0 5%;
  width: 95%;
  padding: 0 0 0 0;
}
/* line 169, ../../sass/src/_posts.scss */
ol.lessons li ol li {
  border-bottom: 0;
  margin: 5px 0 0 0;
  padding: 5px 0 0 0;
}

@media screen and (max-width: 768px) {
  /* line 182, ../../sass/src/_posts.scss */
  ol.lessons li h3 {
    margin: 0 0 0px 0;
  }
}
/* line 194, ../../sass/src/_posts.scss */
#fullEditor .postBody {
  margin: 40px 0 40px 0;
  padding: 0 0 0 0;
  border-bottom: 0;
  border-left: 0;
  overflow: hidden;
}
/* line 201, ../../sass/src/_posts.scss */
#fullEditor .postBody.mce-edit-focus {
  outline: 0;
}
/* line 206, ../../sass/src/_posts.scss */
#fullEditor .postBody.empty p {
  color: #aaa;
}

/* line 213, ../../sass/src/_posts.scss */
.abstract {
  display: block;
  width: 100%;
  padding: 0 0 1.7rem 0;
  border-bottom: 1px solid #d3d3d3;
  margin: 0 0 3rem 0;
}

/* line 221, ../../sass/src/_posts.scss */
.fileDownloads {
  display: block;
  width: 100%;
}
/* line 39, ../../sass/src/_mixins.scss */
.fileDownloads:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 226, ../../sass/src/_posts.scss */
.fileDownloads .fileDownload {
  display: block;
  width: 100%;
  position: relative;
  padding: 0 0 0 0;
  border-bottom: 1px solid #d3d3d3;
  margin: 0 0 10px 0;
}
/* line 236, ../../sass/src/_posts.scss */
.fileDownloads .fileDownload h3 {
  font-family: "myriad-pro", sans-serif;
  margin: 0 0 0 0;
  font-size: 1.2rem;
  font-weight: 700;
}
/* line 244, ../../sass/src/_posts.scss */
.fileDownloads .fileDownload .description p {
  margin: 0 0 0 0;
}
/* line 249, ../../sass/src/_posts.scss */
.fileDownloads .fileDownload .meta {
  color: #aaaaaa;
  margin: 0 0 10px 0;
}
/* line 260, ../../sass/src/_posts.scss */
.fileDownloads .fileDownload img.downloadImage {
  display: block;
  width: 100%;
  margin: 10px 0;
}

@media screen and (max-width: 768px) {
  /* line 271, ../../sass/src/_posts.scss */
  .fileDownloads .fileDownload h3 {
    font-size: 1rem;
    color: #333333;
    text-transform: none;
  }
}
/* line 280, ../../sass/src/_posts.scss */
.postBody {
  display: block;
  width: 100%;
  overflow: visible;
}
/* line 285, ../../sass/src/_posts.scss */
.postBody img {
  display: block;
  width: 100%;
  position: relative;
  padding: 0 0 0 0;
  margin: 0 0 20px 0;
}
/* line 296, ../../sass/src/_posts.scss */
.postBody img.over {
  display: block;
  position: relative;
  width: 140%;
  left: -20%;
  padding: 30px 0;
  margin: 0 0 1.2rem 0;
}
@media screen and (max-width: 1000px) {
  /* line 296, ../../sass/src/_posts.scss */
  .postBody img.over {
    width: 100%;
    left: 0;
  }
}
@media screen and (min-width: 1500px) {
  /* line 296, ../../sass/src/_posts.scss */
  .postBody img.over {
    width: 180%;
    left: -40%;
  }
}
/* line 312, ../../sass/src/_posts.scss */
.postBody img.center {
  display: block;
  padding: 0 0 0 0;
  margin: 0 auto 15px;
  max-width: 100%;
  width: auto;
  /* Set the max-width inline to the exact size of each image. */
}
/* line 320, ../../sass/src/_posts.scss */
.postBody img.left {
  display: block;
  float: left;
  padding: 0 0 0 0;
  margin: 7px 20px 15px 0;
  width: 35%;
}
/* line 327, ../../sass/src/_posts.scss */
.postBody img.right {
  display: block;
  float: right;
  padding: 0 0 0 0;
  margin: 7px 0 15px 20px;
  width: 35%;
}

/* line 337, ../../sass/src/_posts.scss */
.footer {
  display: block;
  margin: 2rem 0 0 0;
  border-top: 1px solid #d3d3d3;
  padding: 5px 0 0 0;
}
/* line 342, ../../sass/src/_posts.scss */
.footer p {
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #6d6e71;
}

/* line 350, ../../sass/src/_posts.scss */
.searchResults li {
  display: block;
  width: 100%;
  list-style: none;
  margin: 0 0 20px 0;
  border-bottom: 1px solid #d3d3d3;
  padding: 0 0 10px 0;
}
/* line 358, ../../sass/src/_posts.scss */
.searchResults li p.gradeUnit {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  font-size: 1rem;
  line-height: 1.3rem;
  color: #333333;
  font-weight: 700;
}
/* line 368, ../../sass/src/_posts.scss */
.searchResults li h2 {
  margin: 0 0 5px 0;
}
/* line 372, ../../sass/src/_posts.scss */
.searchResults li p.extract {
  color: #6d6e71;
  font-size: 1rem;
  line-height: 1.3rem;
  margin: 0 0 0.5rem 0;
}
/* line 379, ../../sass/src/_posts.scss */
.searchResults li.disallowed {
  cursor: not-allowed;
}
/* line 380, ../../sass/src/_posts.scss */
.searchResults li.disallowed h2, .searchResults li.disallowed p {
  color: #aaaaaa;
}

/* line 390, ../../sass/src/_posts.scss */
.expand {
  display: none;
}

/* line 394, ../../sass/src/_posts.scss */
.mce-object-iframe,
.videoWrapper {
  display: block;
  position: relative;
  padding-bottom: 78.75%;
  padding-top: 0;
  width: 140%;
  left: -20%;
  height: 0;
  margin: 0 0 40px 0;
}
/* line 405, ../../sass/src/_posts.scss */
.mce-object-iframe iframe,
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100%;
}
@media screen and (max-width: 1000px) {
  /* line 394, ../../sass/src/_posts.scss */
  .mce-object-iframe,
  .videoWrapper {
    width: 100%;
    padding-bottom: 56.25%;
    left: 0;
  }
}

/* line 421, ../../sass/src/_posts.scss */
#fullEditorBody .mce-object-iframe {
  width: 100%;
  padding-bottom: 56.25%;
  left: 0;
}

/* line 1, ../../sass/src/_gallery.scss */
.thumbnails {
  display: block;
  width: 100%;
  margin: 0 0 30px 0;
}
/* line 39, ../../sass/src/_mixins.scss */
.thumbnails:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 7, ../../sass/src/_gallery.scss */
.thumbnails .thumbnail {
  display: block;
  width: 200px;
  height: 200px;
  float: left;
  background-color: white;
  padding: 15px;
  margin: 1px;
  position: relative;
}
/* line 17, ../../sass/src/_gallery.scss */
.thumbnails .thumbnail.nopad {
  padding: 0 0 0 0;
  background-image: url("/img/stripe-background-ccc.png");
  background-size: 200px 200px;
  background-repeat: repeat;
  background-position: left top;
}
/* line 28, ../../sass/src/_gallery.scss */
.thumbnails .thumbnail a.linkImage {
  display: block;
  width: 200px;
  height: 200px;
  float: left;
  position: relative;
}
/* line 36, ../../sass/src/_gallery.scss */
.thumbnails .thumbnail img {
  display: block;
  margin: 0 auto;
  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/_gallery.scss */
.thumbnails .thumbnail .handle {
  cursor: move;
}
/* line 46, ../../sass/src/_gallery.scss */
.thumbnails .thumbnail .delete {
  position: absolute;
  bottom: 0px;
  font-size: 0.8rem;
  text-align: center;
  font-family: "myriad-pro", sans-serif;
  font-weight: 400;
  width: 200px;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  line-height: 1rem;
}
/* line 61, ../../sass/src/_gallery.scss */
.thumbnails.selectOne .thumbnail {
  opacity: 0.3;
}
/* line 63, ../../sass/src/_gallery.scss */
.thumbnails.selectOne .thumbnail.selected {
  opacity: 1;
}
/* line 67, ../../sass/src/_gallery.scss */
.thumbnails.selectOne .thumbnail:hover {
  opacity: 1;
}

/* line 2, ../../sass/src/_directory.scss */
.block.users.index h1 {
  margin: 0px 0 60px 0;
}

/* line 7, ../../sass/src/_directory.scss */
.profiles {
  display: block;
  width: 100%;
  margin: 0 0 30px 0;
}
/* line 39, ../../sass/src/_mixins.scss */
.profiles:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 13, ../../sass/src/_directory.scss */
.profiles .profile {
  display: block;
  float: left;
  width: 48%;
  height: 150px;
  margin: 0 0 80px 0;
  padding: 20px 0 0 0;
  border-top: 1px solid #d3d3d3;
  overflow: hidden;
  cursor: pointer;
}
/* line 24, ../../sass/src/_directory.scss */
.profiles .profile:nth-child(odd) {
  float: left;
}
/* line 27, ../../sass/src/_directory.scss */
.profiles .profile:nth-child(even) {
  float: right;
}
/* line 31, ../../sass/src/_directory.scss */
.profiles .profile h2 {
  font-size: 1.4rem;
  line-height: 1.6rem;
  font-weight: 700;
  margin: 0px 0 0.3rem 0;
}
/* line 38, ../../sass/src/_directory.scss */
.profiles .profile p.title {
  color: rgba(51, 51, 51, 0.5);
  font-size: 1.1rem;
  line-height: 1.3rem;
  margin: 0 0 0.7rem 0;
}
/* line 43, ../../sass/src/_directory.scss */
.profiles .profile p.title strong {
  color: rgba(51, 51, 51, 0.7);
}
/* line 48, ../../sass/src/_directory.scss */
.profiles .profile .bio {
  display: block;
}
/* line 51, ../../sass/src/_directory.scss */
.profiles .profile .bio p {
  font-family: "myriad-pro", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4rem;
}
/* line 59, ../../sass/src/_directory.scss */
.profiles .profile .profilePhoto {
  display: block;
  width: 150px;
  height: 150px;
  float: left;
  overflow: hidden;
  background-color: #f1f1f1;
  padding: 0;
  margin: 0 4% 0 0;
  position: relative;
}
/* line 76, ../../sass/src/_directory.scss */
.profiles .profile .profilePhoto img {
  display: block;
  height: 150px;
  margin: 0 auto;
}

@media screen and (max-width: 1000px) {
  /* line 87, ../../sass/src/_directory.scss */
  .profiles .profile {
    width: 100%;
  }
}
@media screen and (max-width: 430px) {
  /* line 95, ../../sass/src/_directory.scss */
  .profiles .profile {
    height: auto;
    max-height: 240px;
    min-height: 140px;
    margin-bottom: 30px;
    padding-top: 30px;
    position: relative;
  }
  /* line 103, ../../sass/src/_directory.scss */
  .profiles .profile:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    display: block;
    background-color: rgba(255, 255, 255, 0);
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), white);
    background-image: linear-gradient(to bottom,rgba(255, 255, 255, 0), white);
  }
  /* line 114, ../../sass/src/_directory.scss */
  .profiles .profile .profilePhoto {
    position: relative;
    top: 5px;
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
  }
  /* line 121, ../../sass/src/_directory.scss */
  .profiles .profile .profilePhoto img {
    height: 100px;
  }
}
@media screen and (min-width: 1500px) {
  /* line 138, ../../sass/src/_directory.scss */
  .profiles .profile {
    width: 31.33333333%;
    float: left;
    margin-right: 3%;
  }
  /* line 143, ../../sass/src/_directory.scss */
  .profiles .profile:nth-child(odd) {
    float: left;
  }
  /* line 146, ../../sass/src/_directory.scss */
  .profiles .profile:nth-child(even) {
    float: left;
  }
  /* line 149, ../../sass/src/_directory.scss */
  .profiles .profile:nth-child(3n) {
    float: right;
    margin-right: 0;
  }
}
/* line 158, ../../sass/src/_directory.scss */
#profile.block {
  max-width: 970px;
}
/* line 162, ../../sass/src/_directory.scss */
#profile.block h1 {
  margin-bottom: 5px;
}
/* line 166, ../../sass/src/_directory.scss */
#profile.block p.title {
  color: rgba(51, 51, 51, 0.5);
  font-size: 1.3rem;
  line-height: 1.6rem;
  margin: 0 0 60px 0;
}
/* line 172, ../../sass/src/_directory.scss */
#profile.block p.title strong {
  color: rgba(51, 51, 51, 0.7);
}
/* line 39, ../../sass/src/_mixins.scss */
#profile.block .doubles:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 180, ../../sass/src/_directory.scss */
#profile.block .doubles .summary {
  display: block;
  float: left;
  width: 25%;
  padding: 40px 0 0 0;
  border-top: 1px solid #d3d3d3;
}
/* line 39, ../../sass/src/_mixins.scss */
#profile.block .doubles .summary:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 188, ../../sass/src/_directory.scss */
#profile.block .doubles .summary .profilePhoto {
  margin: 0 0 27px 0;
  min-height: 150px;
  background-image: url("/img/stripe-background-ccc.png");
  background-size: 200px 200px;
  background-repeat: repeat;
  background-position: left top;
}
/* line 39, ../../sass/src/_mixins.scss */
#profile.block .doubles .summary .profilePhoto:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 197, ../../sass/src/_directory.scss */
#profile.block .doubles .summary .profilePhoto img {
  display: block;
  width: 100%;
  float: left;
}
/* line 205, ../../sass/src/_directory.scss */
#profile.block .doubles .summary .data p, #profile.block .doubles .summary .data li {
  font-family: "myriad-pro", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.8rem;
}
/* line 215, ../../sass/src/_directory.scss */
#profile.block .doubles .detail {
  display: block;
  float: right;
  width: 68%;
  padding: 36px 0 0 0;
  border-top: 1px solid #d3d3d3;
}
/* line 39, ../../sass/src/_mixins.scss */
#profile.block .doubles .detail:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 226, ../../sass/src/_directory.scss */
#profile.block .slick {
  background-image: url("/img/stripe-background-ccc.png");
  background-size: 200px 200px;
  background-repeat: repeat;
  background-position: left top;
}
/* line 233, ../../sass/src/_directory.scss */
#profile.block .slick .slick-slide {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  /* Safari */
  transition: opacity 0.5s;
}
/* line 240, ../../sass/src/_directory.scss */
#profile.block .slick .slick-slide.slick-center {
  opacity: 1;
}
/* line 245, ../../sass/src/_directory.scss */
#profile.block .slick img {
  height: 450px;
  margin: 0 0px;
}

@media screen and (max-width: 768px) {
  /* line 259, ../../sass/src/_directory.scss */
  #profile.block .doubles .summary {
    width: 100%;
    float: left;
    padding-bottom: 10px;
  }
  /* line 264, ../../sass/src/_directory.scss */
  #profile.block .doubles .summary .profilePhoto {
    width: 30%;
    float: left;
  }
  /* line 269, ../../sass/src/_directory.scss */
  #profile.block .doubles .summary .data {
    position: relative;
    top: -7px;
    width: 65%;
    float: right;
  }
  /* line 275, ../../sass/src/_directory.scss */
  #profile.block .doubles .summary .data h3 {
    font-size: 1.5rem;
    line-height: 1.9rem;
    margin-bottom: 15px;
  }
  /* line 281, ../../sass/src/_directory.scss */
  #profile.block .doubles .summary .data p, #profile.block .doubles .summary .data li {
    font-size: 1rem;
    line-height: 1.4rem;
  }
  /* line 288, ../../sass/src/_directory.scss */
  #profile.block .doubles .detail {
    width: 100%;
    float: left;
  }
}
@media screen and (max-width: 430px) {
  /* line 300, ../../sass/src/_directory.scss */
  #profile.block h1 {
    font-size: 1.8rem;
    line-height: 2.1rem;
  }
  /* line 305, ../../sass/src/_directory.scss */
  #profile.block p.title {
    font-size: 1.1rem;
    line-height: 1.3rem;
  }
  /* line 311, ../../sass/src/_directory.scss */
  #profile.block .doubles .summary {
    border-top: 0;
    padding-top: 0;
    padding-bottom: 18px;
  }
  /* line 316, ../../sass/src/_directory.scss */
  #profile.block .doubles .summary .profilePhoto {
    width: 100%;
    float: left;
    margin-bottom: 0;
  }
  /* line 322, ../../sass/src/_directory.scss */
  #profile.block .doubles .summary .data {
    position: relative;
    top: 0;
    width: 100%;
    float: left;
  }
  /* line 328, ../../sass/src/_directory.scss */
  #profile.block .doubles .summary .data h2 {
    font-size: 1.6rem;
    line-height: 1.8rem;
    margin: 25px 0 25px 0;
    font-weight: 700;
  }
  /* line 335, ../../sass/src/_directory.scss */
  #profile.block .doubles .summary .data h3 {
    text-transform: uppercase;
    color: #aaaaaa;
    font-size: 1.1rem;
    line-height: 1.3rem;
    margin: 25px 0 1rem 0;
    font-weight: 700;
  }
  /* line 346, ../../sass/src/_directory.scss */
  #profile.block .doubles .detail {
    width: 100%;
    float: left;
  }
  /* line 350, ../../sass/src/_directory.scss */
  #profile.block .doubles .detail h2 {
    font-size: 1.6rem;
    line-height: 1.8rem;
    margin: 25px 0 25px 0;
    font-weight: 700;
  }
  /* line 357, ../../sass/src/_directory.scss */
  #profile.block .doubles .detail h3 {
    text-transform: uppercase;
    color: #aaaaaa;
    font-size: 1.1rem;
    line-height: 1.3rem;
    margin: 25px 0 1rem 0;
    font-weight: 700;
  }
}
/* line 1, ../../sass/src/_account.scss */
#membershipSteps {
  display: block;
  width: 100%;
  border-top: 1px solid #d3d3d3;
}
/* line 39, ../../sass/src/_mixins.scss */
#membershipSteps:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 7, ../../sass/src/_account.scss */
#membershipSteps .row {
  display: block;
  width: 100%;
  float: left;
  border-bottom: 1px solid #d3d3d3;
  padding: 20px 0;
}
/* line 39, ../../sass/src/_mixins.scss */
#membershipSteps .row:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
/* line 18, ../../sass/src/_account.scss */
#membershipSteps .row.done .number p {
  opacity: 0.5;
}
/* line 22, ../../sass/src/_account.scss */
#membershipSteps .row.done .number img {
  display: block;
}
/* line 28, ../../sass/src/_account.scss */
#membershipSteps .row.done .description p {
  opacity: 0.5;
}
/* line 34, ../../sass/src/_account.scss */
#membershipSteps .row .number {
  display: block;
  float: left;
  width: 10%;
  position: relative;
}
/* line 40, ../../sass/src/_account.scss */
#membershipSteps .row .number img {
  display: none;
  position: absolute;
  top: 5px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
}
/* line 49, ../../sass/src/_account.scss */
#membershipSteps .row .number p {
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  line-height: 3rem;
  margin: 0 0 0 0;
  text-align: center;
}
/* line 59, ../../sass/src/_account.scss */
#membershipSteps .row .description {
  display: block;
  float: right;
  width: 88%;
}
/* line 64, ../../sass/src/_account.scss */
#membershipSteps .row .description p:last-of-type {
  margin-bottom: 0;
}

/* line 2, ../../sass/src/_audit.scss */
div.auditlog del {
  background-color: #f2dede;
}
/* line 6, ../../sass/src/_audit.scss */
div.auditlog ins {
  color: #3c763d;
  background-color: #dff0d8;
  text-decoration: none;
  border: 1px solid #d6e9c6;
}
/* line 13, ../../sass/src/_audit.scss */
div.auditlog table.Differences {
  width: 100%;
  font-weight: normal;
}
/* line 18, ../../sass/src/_audit.scss */
div.auditlog table.Differences th,
div.auditlog table.Differences td,
div.auditlog .table tbody tbody {
  border-top: none;
  font-weight: normal;
}
/* line 25, ../../sass/src/_audit.scss */
div.auditlog td.Left {
  width: 40%;
  margin-right: 0px;
}
/* line 30, ../../sass/src/_audit.scss */
div.auditlog td.Right {
  width: 40%;
  margin-left: 5px;
}
/* line 35, ../../sass/src/_audit.scss */
div.auditlog tbody.ChangeInsert {
  background-color: #dff0d8;
}
/* line 39, ../../sass/src/_audit.scss */
div.auditlog tbody.ChangeDelete {
  background-color: #f2dede;
}
/* line 43, ../../sass/src/_audit.scss */
div.auditlog tbody.ChangeReplace {
  background-color: #fcf8e3;
}
/* line 47, ../../sass/src/_audit.scss */
div.auditlog tbody.ChangeInsert th,
div.auditlog tbody.ChangeDelete th,
div.auditlog tbody.ChangeReplace th {
  width: 2%;
  background-color: #eee;
  text-align: center;
}
/* line 55, ../../sass/src/_audit.scss */
div.auditlog tbody.ChangeInsert td,
div.auditlog tbody.ChangeDelete td,
div.auditlog tbody.ChangeReplace td {
  width: 48%;
}
/* line 61, ../../sass/src/_audit.scss */
div.auditlog dl {
  display: block;
  overflow: hidden;
}
/* line 66, ../../sass/src/_audit.scss */
div.auditlog dl.altrow {
  background: #f4f4f4;
}
/* line 70, ../../sass/src/_audit.scss */
div.auditlog dt, div.auditlog dd {
  font-size: 10pt;
  border-top: 1px solid #ddd;
  padding: 5px 0px 0px 0px;
  margin: 0px 0px 5px 0px;
}
/* line 77, ../../sass/src/_audit.scss */
div.auditlog dt {
  clear: both;
  float: left;
  width: 20%;
  color: #999;
  margin: 0 2% 0 0;
}
/* line 85, ../../sass/src/_audit.scss */
div.auditlog dd {
  float: left;
  width: 78%;
}

/* line 1, ../../sass/src/_login.scss */
#verticalLogo {
  display: block;
  position: absolute;
  top: 0;
  left: 5%;
  width: 90px;
  z-index: 1;
}

/* line 10, ../../sass/src/_login.scss */
#horizontalLogo {
  display: block;
  width: 100px;
  margin: 0 auto 10px;
}

/* line 17, ../../sass/src/_login.scss */
#cover {
  width: 100%;
  height: 100vh;
  display: block;
  overflow: hidden;
  position: relative;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
}
/* line 44, ../../sass/src/_login.scss */
#cover #loginFormArea {
  width: 280px;
  background-color: white;
  display: block;
  margin: auto;
  padding: 20px 40px 30px 40px;
  border-radius: 20px;
}
/* line 52, ../../sass/src/_login.scss */
#cover #loginFormArea h1 {
  margin: 0px 0 10px 0;
}
/* line 60, ../../sass/src/_login.scss */
#cover #loginFormArea #loginForm {
  padding: 20px 0;
}

@media screen and (max-width: 540px) {
  /* line 67, ../../sass/src/_login.scss */
  #verticalLogo {
    display: none;
  }

  /* line 71, ../../sass/src/_login.scss */
  #horizontalLogo {
    display: block;
    margin: 0px auto 20px;
  }

  /* line 77, ../../sass/src/_login.scss */
  #cover #loginFormArea {
    width: 80%;
    padding: 30px 10%;
    border-radius: 0;
  }
}
/* line 1, ../../sass/src/_fancytree.scss */
ul.fancytree-container {
  line-height: normal;
  border: 0;
  padding: 0 0 0 0;
  margin: 0 0 0 0;
}
/* line 7, ../../sass/src/_fancytree.scss */
ul.fancytree-container li {
  padding: 0 0 0 0;
  margin: 0 0 0 0;
}

/* line 13, ../../sass/src/_fancytree.scss */
span.fancytree-node {
  overflow-x: hidden;
  background-color: rgba(100, 100, 100, 0.1);
  border-radius: 8px;
  cursor: pointer;
}
/* line 19, ../../sass/src/_fancytree.scss */
span.fancytree-node span {
  vertical-align: middle;
  line-height: 40px;
  white-space: nowrap;
}
/* line 26, ../../sass/src/_fancytree.scss */
span.fancytree-node.fancytree-focused span.fancytree-title {
  outline: none;
}
/* line 31, ../../sass/src/_fancytree.scss */
span.fancytree-node.fancytree-active {
  background-color: #e4582c;
}
/* line 33, ../../sass/src/_fancytree.scss */
span.fancytree-node.fancytree-active span.fancytree-title {
  color: white;
  background-color: transparent;
  outline: none;
}

/* line 43, ../../sass/src/_fancytree.scss */
span.fancytree-selected span.fancytree-title {
  background-color: transparent;
}

/* line 1, ../../sass/src/_comments.scss */
.comments {
  width: 100%;
}
/* line 3, ../../sass/src/_comments.scss */
.comments .comment {
  width: 100%;
  margin: 0 0 20px 0;
}
/* line 7, ../../sass/src/_comments.scss */
.comments .comment .body {
  background-color: #f1f1f1;
  border-radius: 20px;
  padding: 15px 20px;
  width: calc(100% - 40px);
  overflow: hidden;
}
/* line 14, ../../sass/src/_comments.scss */
.comments .comment .body p:last-of-type {
  margin-bottom: 0;
}
/* line 19, ../../sass/src/_comments.scss */
.comments .comment .meta {
  padding: 3px 20px;
  margin: 0 0 0 0;
}
/* line 22, ../../sass/src/_comments.scss */
.comments .comment .meta p {
  font-size: 0.8rem;
  line-height: 1rem;
  margin: 0 0 0 0;
}
