html, body {
  margin: 0;
  padding: 0;
}

.wrapper {
  max-width: 340px;
  margin: 0 auto;
  padding: 0 0.5em;
  box-sizing: border-box;
}
@media (min-width: 580px) {
  .wrapper {
    max-width: 767px;
  }
  .wrapper::after {
    content: "";
    clear: both;
    display: table;
  }
}
@media (min-width: 768px) {
  .wrapper {
    max-width: 992px;
  }
}
@media (min-width: 992px) {
  .wrapper {
    max-width: 1482px;
  }
}

/* Link Color Mixin 
  Who Likes being able to quickly over-ride default link static and hover colors?! You Do!
  use on the <a> selector (or whatever you are hovering) passing a $static and/or $hover color or neither (uses site defaults):
  @include link-color(color(swatch-one), color(swatch-two));
    OR
  @include link-color;
 */
/* Graceful degredations from http://cssfontstack.com */
*[class*=fa-] {
  opacity: 0;
  transition: opacity ease-in 0.3s;
  display: inline-block;
  width: 0.875em;
}
.wf-active *[class*=fa-] {
  opacity: 1;
}
.wf-inactive *[class*=fa-] {
  opacity: 1;
}
.wf-active *[class*=fa-]:not(.fa-fw, .fa-li) {
  width: auto;
}

*[class*=font-effects] {
  opacity: 0;
  transition: opacity ease 0.3s;
}
*[class*=font-effects] .wf-gfx-loaded {
  opacity: 1;
}

body {
  color: rgb(76, 76, 76);
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 1.8;
}

.link, a {
  font-weight: 700;
  text-decoration: none;
  will-change: color, text-shadow;
  transition: all 0.3s ease;
}
.link, a, .link:visited, .link:active, .link:visited:active {
  color: rgb(151, 201, 61);
}
.link:hover, a:hover, .link:visited:hover {
  color: rgb(45, 38, 25);
}

.italic, i, em {
  font-style: italic;
}

.bold, b, strong, .h1, h1, .h2, h2, .h3, h3, .h4, h4, .h5, h5, .h6, h6 {
  font-weight: 700;
}

.h1, h1 {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  font-size: 18px;
  /* 2x body copy size = 32px */
  line-height: 1.25;
  /* 45px / 36px */
}
.wf-active .h1, .wf-active h1 {
  opacity: 1;
}
.wf-inactive .h1, .wf-inactive h1 {
  opacity: 1;
}
@media (min-width: 768px) {
  .h1, h1 {
    font-size: 20px;
    /* 2.5x body copy size = 40px */
    line-height: 1.125;
  }
}

.h2, h2 {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  font-size: 16px;
  /* 1.625x body copy size = 26px */
  line-height: 1.15384615;
  /* 30px / 26px */
}
.wf-active .h2, .wf-active h2 {
  opacity: 1;
}
.wf-inactive .h2, .wf-inactive h2 {
  opacity: 1;
}

.h3, h3 {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  font-size: 14px;
  /* 1.375x body copy size = 22px */
  line-height: 1.13636364;
  /* 25px / 22px */
}
.wf-active .h3, .wf-active h3 {
  opacity: 1;
}
.wf-inactive .h3, .wf-inactive h3 {
  opacity: 1;
}

.h4, h4 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  font-size: 1em;
  /* 1.125x body copy size = 18px */
  line-height: 1.11111111;
}
.wf-active .h4, .wf-active h4 {
  opacity: 1;
}
.wf-inactive .h4, .wf-inactive h4 {
  opacity: 1;
}
@media (min-width: 768px) {
  .h4, h4 {
    line-height: 1.22222222;
    /* (22px / 18px) */
  }
}

.h5, h5 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  font-size: 1.0625em;
  /* 1.0625x body copy size = 17px */
  line-height: 1.11111111;
}
.wf-active .h5, .wf-active h5 {
  opacity: 1;
}
.wf-inactive .h5, .wf-inactive h5 {
  opacity: 1;
}

.h6, h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  font-size: 1em;
  line-height: 1.11111111;
}
.wf-active .h6, .wf-active h6 {
  opacity: 1;
}
.wf-inactive .h6, .wf-inactive h6 {
  opacity: 1;
}

.h1, h1, .h2, h2, .h3, h3, .h4, h4, .h5, h5, .h6, h6 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.block-margins, ul, ol, pre, blockquote {
  margin: 1rem 0;
}

p {
  margin: 0 0 1rem 0;
}

blockquote {
  margin-left: 1em;
  margin-right: 1em;
}

/* overrides */
.intro-text {
  font-size: 1.5em;
  line-height: 1.375;
}

article ul {
  list-style: square;
}

.contact h3 {
  margin-top: 0;
}

.blockify {
  display: block !important;
}

.inlinify {
  display: inline-block !important;
}

.clearfix {
  overflow: hidden;
}

.pie-clearfix {
  overflow: visible;
}

.clear {
  clear: both;
}

.clear-left {
  clear: left;
}

.clear-right {
  clear: right;
}

.float-left {
  float: left;
}

img.float-left {
  margin-right: gutter();
}

.float-right {
  float: right;
}

img.float-right {
  margin-left: gutter();
}

.no-float {
  float: none !important;
}

.headroom {
  margin-top: 2em !important;
}

.more-headroom {
  margin-top: 3em !important;
}

.less-headroom {
  margin-top: 1em;
}

.more-less-headroom {
  margin-top: 0.5em;
}

.no-headroom {
  margin-top: 0 !important;
}

.legroom {
  margin-bottom: 2em !important;
}

.more-legroom {
  margin-bottom: 3em !important;
}

.less-legroom {
  margin-bottom: 1em;
}

.more-less-legroom {
  margin-bottom: 0.5em;
}

.no-legroom {
  margin-bottom: 0;
}

.no-margin {
  margin: 0 !important;
}

.no-border {
  border: none !important;
}

.center,
.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.uppercase {
  text-transform: uppercase;
}

.notice {
  border: 1px solid rgb(217, 19, 80);
  padding: 1.5em;
  background-color: tint(rgb(151, 201, 61), 75%);
}
.notice h2 {
  margin-top: 0;
}

.board-listing, .file-list {
  list-style: none;
  padding: 0;
}
.board-listing li, .file-list li {
  padding: 0;
}

ul.file-list {
  margin-top: 0;
}

.hide-text {
  font: 0/0 serif;
  text-shadow: none;
  color: transparent;
}

.hyphenate {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

.list-reset {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.list-reset li {
  margin: 0;
}

.list-inline li {
  display: inline-block;
  float: left;
}
.list-inline li:not(:first-child) {
  margin-left: 0.5em;
}
.list-inline li:not(:last-child) {
  margin-right: 0.5em;
}

.return-link {
  font-size: 0.8em;
}

/* ghost button */
.ghost-button {
  cursor: pointer;
  display: inline-block;
  padding: 0.5em 1em !important;
  color: rgb(255, 255, 255) !important;
  background-color: rgb(151, 201, 61);
  border: 2px solid rgb(151, 201, 61) !important;
  border-radius: 2px;
  text-align: center;
  outline: none;
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  line-height: 1.2;
  transition: color 0.3s ease-out, background-color 0.3s ease-out, background-image 0.3s ease-out, border-color 0.3s ease-out;
}
.wf-active .ghost-button {
  opacity: 1;
}
.wf-inactive .ghost-button {
  opacity: 1;
}
.ghost-button:link, .ghost-button:visited {
  color: rgb(255, 255, 255);
}
.ghost-button:hover, .ghost-button:active {
  background-color: rgb(255, 255, 255) !important;
  border-color: rgb(151, 201, 61) !important;
  color: rgb(151, 201, 61) !important;
  transition: color 0.3s ease-in, background-color 0.3s ease-in, background-image 0.3s ease-in, border-color 0.3s ease-in;
}
.ghost-button.small {
  font-size: 0.85em;
}

/* striped table */
table.striped {
  border: 1px solid rgb(76, 76, 76);
  border-radius: 2px;
  line-height: 1.2;
}
table.striped a {
  text-decoration: underline;
}
table.striped th {
  font-weight: 600;
  background-color: rgb(76, 76, 76);
  color: rgb(255, 255, 255);
  border-right: 1px solid rgba(255, 255, 255, 0.75);
}
table.striped th:first-child {
  border-radius: 1px 0 0 0;
}
table.striped th:last-child {
  border-radius: 0 1px 0 0;
}
table.striped td {
  background-color: rgba(255, 255, 255, 0.75);
  border-right: 1px solid rgba(76, 76, 76, 0.5);
  border-bottom: 1px solid rgba(76, 76, 76, 0.5);
}
table.striped th,
table.striped td {
  padding: 0.5em;
  vertical-align: top;
}
table.striped th:last-child,
table.striped td:last-child {
  border-right: none;
}
table.striped tbody tr:last-child td {
  border-bottom: none;
}
table.striped tbody tr:nth-child(even) td {
  background-color: rgba(151, 201, 61, 0.1);
}
table.striped tfoot td {
  background-color: rgba(76, 76, 76, 0.1);
  border-top: 1px solid rgba(76, 76, 76, 0.5);
  border-bottom: none;
  text-align: center;
  font-size: 0.8em;
}
table.striped tfoot td:first-child {
  border-radius: 0 0 0 1px;
}
table.striped tfoot td:last-child {
  border-radius: 0 0 1px 0;
}
table.striped tfoot td:only-child {
  border-radius: 0 0 1px 1px;
}
table.striped caption {
  position: absolute;
  left: -9000px;
}

@media only screen and (max-width: 768px) {
  table.striped {
    display: block;
  }
  table.striped thead, table.striped tbody, table.striped th, table.striped td, table.striped tr {
    display: block;
  }
  table.striped thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  table.striped tr {
    border: 1px solid rgba(76, 76, 76, 0.5);
  }
  table.striped td {
    border: none;
    border-bottom: 1px solid rgba(76, 76, 76, 0.5);
    position: relative;
    padding-left: 50%;
    min-height: 24px;
  }
  table.striped td:before {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
  }
  table.striped.jobs td:nth-of-type(1):before {
    content: "Date Posted";
  }
  table.striped.jobs td:nth-of-type(2):before {
    content: "Job Title";
  }
  table.striped.jobs td:nth-of-type(3):before {
    content: "Employer";
  }
  table.striped.article-review td:nth-of-type(1):before {
    content: "Title";
  }
  table.striped.article-review td:nth-of-type(2):before {
    content: "Author";
  }
  table.striped.article-review td:nth-of-type(3):before {
    content: "Created Date";
  }
  table.striped.article-review td:nth-of-type(4):before {
    content: "Edited Date";
  }
  table.striped.article-review td:nth-of-type(5):before {
    content: "Status";
  }
  table.striped.article-review td:nth-of-type(6):before {
    content: "Edit";
  }
}
td.postdate {
  white-space: nowrap;
}

@media (min-width: 768px) {
  .mobile-only {
    display: none;
  }
}

.no-mobile {
  display: none;
}
@media (min-width: 768px) {
  .no-mobile {
    display: block;
  }
  .no-mobile ul li {
    display: list-item;
  }
}

section.accordion-content :after {
  content: "";
  display: table;
  clear: both;
}
section.accordion-content article {
  width: 100% !important;
}
section.accordion-content h4 {
  padding-left: 1.6em;
  cursor: pointer;
  margin-top: 0.5em;
  margin-bottom: 0;
}
section.accordion-content svg.trigger-plus {
  display: inline-block;
  float: left;
  width: 1.5em;
  height: 1.5em;
  margin-top: -5px;
  margin-left: -1.5em;
}
section.accordion-content div {
  padding-left: 1.6em;
}

/* Plus sign expand list trigger */
.trigger-plus {
  fill: rgb(24, 24, 24);
  transition: transform ease 0.5s;
  transform: scale(0.5, 0.5);
  transform-origin: 50% 50%;
  will-change: transform;
}

.trigger-plus .vertical {
  transition: transform ease 0.5s;
  will-change: transform;
  transform-origin: 50% 50%;
}

.trigger-plus:hover,
*:hover > .trigger-plus {
  transform: scale(0.75, 0.75);
}

.open > * > .trigger-plus {
  transform: scale(0.5, 0.5);
}

.open > * > .trigger-plus .vertical {
  transform: scaleY(0);
}

.open > * > .trigger-plus:hover {
  transform: rotate(90deg) scale(0.5, 0.5);
}

/* debug */
div.debug {
  font-size: 10px;
  position: relative;
  background-color: rgb(217, 19, 80);
  border: 1px dotted rgb(217, 19, 80);
  color: rgb(255, 255, 255);
  padding: 2em 1em 1em 1em;
  border-radius: 1em;
  opacity: 0.5;
}
div.debug:hover {
  opacity: 1;
}
div.debug::before {
  content: "debug";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1em;
  line-height: 1em;
  color: rgb(217, 19, 80);
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px dotted rgb(255, 255, 255);
  border-radius: 1em 1em 0 0;
  padding: 0.25em 1em;
}

.social-media a {
  display: block;
  float: left;
  width: 48px;
  height: 48px;
  border: 1px solid rgb(255, 255, 255);
  font: 0/0 serif;
  text-shadow: none;
  color: transparent;
  background-color: rgb(255, 255, 255);
  background-size: cover;
  background-repeat: no-repeat;
}
.social-media a.Facebook {
  background-image: url(/images/site-images/facebook.svg);
}
.social-media a.Twitter {
  background-image: url(/images/site-images/twitter.svg);
}
.social-media a.Instagram {
  background-image: url(/images/site-images/instagram.svg);
}

.calendarBG {
  background-color: rgb(255, 255, 255);
  width: 100%;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  border-bottom: 1px solid tint(#96938c, 80%);
}
.wf-active .calendarBG {
  opacity: 1;
}
.wf-inactive .calendarBG {
  opacity: 1;
}
.calendarBG th {
  font-weight: 300;
}
.calendarBG td {
  border-top: 1px solid tint(#96938c, 80%);
  border-left: 1px solid tint(#96938c, 80%);
}
.calendarBG td:last-of-type {
  border-right: 1px solid tint(#96938c, 80%);
}

td.event-day {
  background-color: tint(rgb(151, 201, 61), 90%);
}
td.event-day a {
  display: block;
  width: 100%;
  height: 100%;
}
td.event-day:hover {
  background-color: tint(rgb(151, 201, 61), 33%);
}

.calendarHeader {
  text-align: center;
  font-size: 1em;
  line-height: 3.5em;
}

.calendarMonthLabel {
  font-size: 20px;
}

.calendarMonthLinks a, .calendarMonthLinks a:visited {
  font-size: 24px;
  color: #96938c;
  text-decoration: none;
  background-color: transparent;
  padding: 2px 20px;
  border: 1px solid tint(#96938c, 80%);
  border-radius: 2px;
}

.calendarMonthLinks a:hover {
  color: shade(#96938c, 25%);
  border-color: shade(#96938c, 25%);
}

.calendarDayHeading {
  font-size: 14px;
  line-height: 3.5em;
  text-align: center;
  vertical-align: middle;
}

.calendarBlank, .calendarCell, .calendarToday {
  height: 50px;
  width: 13.2%;
  padding: 1%;
  font-size: 12px;
  vertical-align: top;
  text-align: right;
}

.calendarBlank {
  color: tint(#96938c, 50%);
}

.calendarToday, .calendarToday.event-day {
  background-color: tint(rgb(151, 201, 61), 75%);
  color: rgb(76, 76, 76);
}

.calendarCell {
  color: rgb(76, 76, 76);
}
.calendarCell > div {
  margin-bottom: 1em;
}

.calendarCell a.plant-o-rama, .calendarCell a.tri-state-events, .calendarCell a.monthly-meetings, .calendarCell a.mhg-field-trips {
  text-decoration: none;
  position: relative;
}
.calendarCell a.plant-o-rama:hover, .calendarCell a.tri-state-events:hover, .calendarCell a.monthly-meetings:hover, .calendarCell a.mhg-field-trips:hover {
  box-shadow: 1px 1px 2px rgb(45, 38, 25);
  color: rgb(255, 255, 255) !important;
}
.calendarCell a.plant-o-rama > .sold-out, .calendarCell a.tri-state-events > .sold-out, .calendarCell a.monthly-meetings > .sold-out, .calendarCell a.mhg-field-trips > .sold-out {
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 30px;
  background: url(/images/site-images/sold-out-notice-gry.png) no-repeat;
}

a.plant-o-rama {
  color: rgb(255, 255, 255);
  background-color: rgb(151, 201, 59);
  padding: 2px 4px;
  line-height: 1.4;
  display: block;
}

a.tri-state-events {
  color: rgb(255, 255, 255);
  background-color: rgb(255, 102, 0);
  padding: 2px 4px;
  line-height: 1.4;
  display: block;
}

a.monthly-meetings {
  color: rgb(255, 255, 255);
  background-color: rgb(198, 15, 247);
  padding: 2px 4px;
  line-height: 1.4;
  display: block;
}

a.mhg-field-trips {
  color: rgb(255, 255, 255);
  background-color: rgb(0, 203, 241);
  padding: 2px 4px;
  line-height: 1.4;
  display: block;
}

.event-category-legend {
  text-align: center;
}
.event-category-legend a {
  display: inline-block;
  padding: 0.25em 0.5em;
  margin: 0 0.25em;
  font-weight: bold;
  color: rgb(255, 255, 255) !important;
}
.event-category-legend a:hover {
  text-decoration: underline;
}
.event-category-legend a.plant-o-rama-block {
  background-color: rgb(151, 201, 59);
}
.event-category-legend a.tri-state-block {
  background-color: rgb(255, 102, 0);
}
.event-category-legend a.general-meetings-block {
  background-color: rgb(198, 15, 247);
}
.event-category-legend a.mhg-field-trips-block {
  background-color: rgb(0, 203, 241);
}

.fancybox-bg {
  background: #fff !important;
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.95 !important;
}

ul.pagination {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.pagination li {
  display: inline-block;
  padding: 2px;
}
ul.pagination li a {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  font-size: 18px;
  color: #96938c;
  border-radius: 50%;
  border: 1px solid tint(#96938c, 80%);
  padding: 2px 8px;
}
.wf-active ul.pagination li a {
  opacity: 1;
}
.wf-inactive ul.pagination li a {
  opacity: 1;
}
ul.pagination li a:hover {
  color: rgb(45, 38, 25);
  border-color: rgb(45, 38, 25);
}
ul.pagination li a.active {
  color: rgb(45, 38, 25);
  background-color: tint(rgb(151, 201, 61), 75%);
}

/* header */
.tablesorter th,
.tablesorter thead td {
  padding: 4px;
  font: 12px/20px Arial, Sans-serif;
  font-weight: bold;
  color: #fff;
  background-color: #000;
  border-collapse: collapse;
}

.tablesorter thead th {
  border-bottom: #333 2px solid;
}

.tablesorter .header,
.tablesorter .tablesorter-header {
  padding: 4px 20px 4px 4px;
  cursor: pointer;
  background-image: url(data:image/gif;base64,R0lGODlhFQAJAIAAAP///////yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==);
  background-position: center right;
  background-repeat: no-repeat;
}

.tablesorter thead .headerSortUp,
.tablesorter thead .tablesorter-headerSortUp,
.tablesorter thead .tablesorter-headerAsc {
  background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7);
  border-bottom: #888 1px solid;
}

.tablesorter thead .headerSortDown,
.tablesorter thead .tablesorter-headerSortDown,
.tablesorter thead .tablesorter-headerDesc {
  background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7);
  border-bottom: #888 1px solid;
}

.tablesorter thead .sorter-false {
  background-image: none;
  cursor: default;
  padding: 4px;
}

@-webkit-keyframes animate-shadow {
  0% {
    box-shadow: 0px 0px 50px 25px shade(rgb(76, 76, 76), 25%);
  }
  100% {
    box-shadow: 0px 0px 0px 0px shade(rgb(76, 76, 76), 25%);
  }
}
@keyframes animate-shadow {
  0% {
    box-shadow: 0px 0px 50px 25px shade(rgb(76, 76, 76), 25%);
  }
  100% {
    box-shadow: 0px 0px 0px 0px shade(rgb(76, 76, 76), 25%);
  }
}
form {
  font-family: "Roboto", sans-serif;
  font-size: 1em;
  font-weight: 400;
  overflow: visible;
}
form *,
form *::before,
form *::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
form .group.radio.inline label {
  margin-right: 1.5em;
}

input[type=email],
input[type=date],
input[type=text],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
textarea {
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #96938c;
  font-size: 1em;
  min-height: 2em;
  padding: 0.5em 6px;
  width: 100%;
  color: rgba(45, 38, 25, 0.9);
}
input[type=email]:focus, input[type=email]:target,
input[type=date]:focus,
input[type=date]:target,
input[type=text]:focus,
input[type=text]:target,
input[type=datetime]:focus,
input[type=datetime]:target,
input[type=datetime-local]:focus,
input[type=datetime-local]:target,
input[type=email]:focus,
input[type=email]:target,
input[type=month]:focus,
input[type=month]:target,
input[type=number]:focus,
input[type=number]:target,
input[type=password]:focus,
input[type=password]:target,
input[type=tel]:focus,
input[type=tel]:target,
input[type=text]:focus,
input[type=text]:target,
input[type=time]:focus,
input[type=time]:target,
input[type=url]:focus,
input[type=url]:target,
input[type=week]:focus,
input[type=week]:target,
textarea:focus,
textarea:target {
  color: rgb(45, 38, 25);
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #96938c;
}
.error input[type=email]:focus, div.formError[style*="opacity: 0."] + input[type=email]:focus, div.formError[style*="opacity: 0."] + input[type=email], input[type=email]:focus.error,
.error input[type=date]:focus,
div.formError[style*="opacity: 0."] + input[type=date]:focus,
div.formError[style*="opacity: 0."] + input[type=date],
input[type=date]:focus.error,
.error input[type=text]:focus,
div.formError[style*="opacity: 0."] + input[type=text]:focus,
div.formError[style*="opacity: 0."] + input[type=text],
input[type=text]:focus.error,
.error input[type=datetime]:focus,
div.formError[style*="opacity: 0."] + input[type=datetime]:focus,
div.formError[style*="opacity: 0."] + input[type=datetime],
input[type=datetime]:focus.error,
.error input[type=datetime-local]:focus,
div.formError[style*="opacity: 0."] + input[type=datetime-local]:focus,
div.formError[style*="opacity: 0."] + input[type=datetime-local],
input[type=datetime-local]:focus.error,
.error input[type=email]:focus,
div.formError[style*="opacity: 0."] + input[type=email]:focus,
div.formError[style*="opacity: 0."] + input[type=email],
input[type=email]:focus.error,
.error input[type=month]:focus,
div.formError[style*="opacity: 0."] + input[type=month]:focus,
div.formError[style*="opacity: 0."] + input[type=month],
input[type=month]:focus.error,
.error input[type=number]:focus,
div.formError[style*="opacity: 0."] + input[type=number]:focus,
div.formError[style*="opacity: 0."] + input[type=number],
input[type=number]:focus.error,
.error input[type=password]:focus,
div.formError[style*="opacity: 0."] + input[type=password]:focus,
div.formError[style*="opacity: 0."] + input[type=password],
input[type=password]:focus.error,
.error input[type=tel]:focus,
div.formError[style*="opacity: 0."] + input[type=tel]:focus,
div.formError[style*="opacity: 0."] + input[type=tel],
input[type=tel]:focus.error,
.error input[type=text]:focus,
div.formError[style*="opacity: 0."] + input[type=text]:focus,
div.formError[style*="opacity: 0."] + input[type=text],
input[type=text]:focus.error,
.error input[type=time]:focus,
div.formError[style*="opacity: 0."] + input[type=time]:focus,
div.formError[style*="opacity: 0."] + input[type=time],
input[type=time]:focus.error,
.error input[type=url]:focus,
div.formError[style*="opacity: 0."] + input[type=url]:focus,
div.formError[style*="opacity: 0."] + input[type=url],
input[type=url]:focus.error,
.error input[type=week]:focus,
div.formError[style*="opacity: 0."] + input[type=week]:focus,
div.formError[style*="opacity: 0."] + input[type=week],
input[type=week]:focus.error,
.error textarea:focus,
div.formError[style*="opacity: 0."] + textarea:focus,
div.formError[style*="opacity: 0."] + textarea,
textarea:focus.error {
  color: rgb(217, 19, 80);
}
input[type=email]:focus,
input[type=date]:focus,
input[type=text]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=email]:focus,
input[type=month]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=time]:focus,
input[type=url]:focus,
input[type=week]:focus,
textarea:focus {
  outline-color: shade(rgb(76, 76, 76), 10%);
  outline-width: 2px;
  outline-style: solid;
  outline-offset: 1px;
}
.error input[type=email]:focus, div.formError[style^="opacity: 0."] + input[type=email]:focus, input[type=email]:focus.error,
.error input[type=date]:focus,
div.formError[style^="opacity: 0."] + input[type=date]:focus,
input[type=date]:focus.error,
.error input[type=text]:focus,
div.formError[style^="opacity: 0."] + input[type=text]:focus,
input[type=text]:focus.error,
.error input[type=datetime]:focus,
div.formError[style^="opacity: 0."] + input[type=datetime]:focus,
input[type=datetime]:focus.error,
.error input[type=datetime-local]:focus,
div.formError[style^="opacity: 0."] + input[type=datetime-local]:focus,
input[type=datetime-local]:focus.error,
.error input[type=email]:focus,
div.formError[style^="opacity: 0."] + input[type=email]:focus,
input[type=email]:focus.error,
.error input[type=month]:focus,
div.formError[style^="opacity: 0."] + input[type=month]:focus,
input[type=month]:focus.error,
.error input[type=number]:focus,
div.formError[style^="opacity: 0."] + input[type=number]:focus,
input[type=number]:focus.error,
.error input[type=password]:focus,
div.formError[style^="opacity: 0."] + input[type=password]:focus,
input[type=password]:focus.error,
.error input[type=tel]:focus,
div.formError[style^="opacity: 0."] + input[type=tel]:focus,
input[type=tel]:focus.error,
.error input[type=text]:focus,
div.formError[style^="opacity: 0."] + input[type=text]:focus,
input[type=text]:focus.error,
.error input[type=time]:focus,
div.formError[style^="opacity: 0."] + input[type=time]:focus,
input[type=time]:focus.error,
.error input[type=url]:focus,
div.formError[style^="opacity: 0."] + input[type=url]:focus,
input[type=url]:focus.error,
.error input[type=week]:focus,
div.formError[style^="opacity: 0."] + input[type=week]:focus,
input[type=week]:focus.error,
.error textarea:focus,
div.formError[style^="opacity: 0."] + textarea:focus,
textarea:focus.error {
  outline-width: 2px;
  outline-style: solid;
  outline-offset: 1px;
}
input[type=email][size="1"],
input[type=date][size="1"],
input[type=text][size="1"],
input[type=datetime][size="1"],
input[type=datetime-local][size="1"],
input[type=email][size="1"],
input[type=month][size="1"],
input[type=number][size="1"],
input[type=password][size="1"],
input[type=tel][size="1"],
input[type=text][size="1"],
input[type=time][size="1"],
input[type=url][size="1"],
input[type=week][size="1"],
textarea[size="1"] {
  width: 1em;
}
input[type=email][size="2"],
input[type=date][size="2"],
input[type=text][size="2"],
input[type=datetime][size="2"],
input[type=datetime-local][size="2"],
input[type=email][size="2"],
input[type=month][size="2"],
input[type=number][size="2"],
input[type=password][size="2"],
input[type=tel][size="2"],
input[type=text][size="2"],
input[type=time][size="2"],
input[type=url][size="2"],
input[type=week][size="2"],
textarea[size="2"] {
  width: 2em;
}
input[type=email][size="3"],
input[type=date][size="3"],
input[type=text][size="3"],
input[type=datetime][size="3"],
input[type=datetime-local][size="3"],
input[type=email][size="3"],
input[type=month][size="3"],
input[type=number][size="3"],
input[type=password][size="3"],
input[type=tel][size="3"],
input[type=text][size="3"],
input[type=time][size="3"],
input[type=url][size="3"],
input[type=week][size="3"],
textarea[size="3"] {
  width: 3em;
}
input[type=email][size="4"],
input[type=date][size="4"],
input[type=text][size="4"],
input[type=datetime][size="4"],
input[type=datetime-local][size="4"],
input[type=email][size="4"],
input[type=month][size="4"],
input[type=number][size="4"],
input[type=password][size="4"],
input[type=tel][size="4"],
input[type=text][size="4"],
input[type=time][size="4"],
input[type=url][size="4"],
input[type=week][size="4"],
textarea[size="4"] {
  width: 4em;
}
input[type=email][size="5"],
input[type=date][size="5"],
input[type=text][size="5"],
input[type=datetime][size="5"],
input[type=datetime-local][size="5"],
input[type=email][size="5"],
input[type=month][size="5"],
input[type=number][size="5"],
input[type=password][size="5"],
input[type=tel][size="5"],
input[type=text][size="5"],
input[type=time][size="5"],
input[type=url][size="5"],
input[type=week][size="5"],
textarea[size="5"] {
  width: 5em;
}
input[type=email][type=submit], input[type=email][type=reset],
input[type=date][type=submit],
input[type=date][type=reset],
input[type=text][type=submit],
input[type=text][type=reset],
input[type=datetime][type=submit],
input[type=datetime][type=reset],
input[type=datetime-local][type=submit],
input[type=datetime-local][type=reset],
input[type=email][type=submit],
input[type=email][type=reset],
input[type=month][type=submit],
input[type=month][type=reset],
input[type=number][type=submit],
input[type=number][type=reset],
input[type=password][type=submit],
input[type=password][type=reset],
input[type=tel][type=submit],
input[type=tel][type=reset],
input[type=text][type=submit],
input[type=text][type=reset],
input[type=time][type=submit],
input[type=time][type=reset],
input[type=url][type=submit],
input[type=url][type=reset],
input[type=week][type=submit],
input[type=week][type=reset],
textarea[type=submit],
textarea[type=reset] {
  background-color: rgb(151, 201, 61);
  background-image: none;
  color: rgb(255, 255, 255);
}
input[type=email][type=submit]:hover, input[type=email][type=reset]:hover,
input[type=date][type=submit]:hover,
input[type=date][type=reset]:hover,
input[type=text][type=submit]:hover,
input[type=text][type=reset]:hover,
input[type=datetime][type=submit]:hover,
input[type=datetime][type=reset]:hover,
input[type=datetime-local][type=submit]:hover,
input[type=datetime-local][type=reset]:hover,
input[type=email][type=submit]:hover,
input[type=email][type=reset]:hover,
input[type=month][type=submit]:hover,
input[type=month][type=reset]:hover,
input[type=number][type=submit]:hover,
input[type=number][type=reset]:hover,
input[type=password][type=submit]:hover,
input[type=password][type=reset]:hover,
input[type=tel][type=submit]:hover,
input[type=tel][type=reset]:hover,
input[type=text][type=submit]:hover,
input[type=text][type=reset]:hover,
input[type=time][type=submit]:hover,
input[type=time][type=reset]:hover,
input[type=url][type=submit]:hover,
input[type=url][type=reset]:hover,
input[type=week][type=submit]:hover,
input[type=week][type=reset]:hover,
textarea[type=submit]:hover,
textarea[type=reset]:hover {
  background-color: rgb(45, 38, 25);
  background-image: none;
}
input[type=email][readonly],
input[type=date][readonly],
input[type=text][readonly],
input[type=datetime][readonly],
input[type=datetime-local][readonly],
input[type=email][readonly],
input[type=month][readonly],
input[type=number][readonly],
input[type=password][readonly],
input[type=tel][readonly],
input[type=text][readonly],
input[type=time][readonly],
input[type=url][readonly],
input[type=week][readonly],
textarea[readonly] {
  background-color: rgba(242, 242, 241, 0.805);
  color: rgba(54, 47, 34, 0.895);
  font-size: 0.8em;
}

input[type=radio]:not(old),
input[type=checkbox]:not(old) {
  width: 2em;
  margin: 0;
  padding: 0;
  opacity: 0;
}
input[type=radio]:not(old) + label,
input[type=checkbox]:not(old) + label {
  line-height: 2em;
  vertical-align: middle;
}
input[type=radio]:not(old) + label::before,
input[type=checkbox]:not(old) + label::before {
  display: inline-block;
  font-family: "FontAwesome";
  font-size: 2em;
  color: rgb(76, 76, 76);
  height: 2em;
  line-height: 2em;
  margin-left: -1em;
  margin-right: 0.5em;
  vertical-align: middle;
}
input[type=radio]:not(old):checked + label::before,
input[type=checkbox]:not(old):checked + label::before {
  color: rgb(151, 201, 61);
}
input[type=radio]:not(old):focus + label,
input[type=checkbox]:not(old):focus + label {
  box-shadow: 0px 0px 2px 0px shade(rgb(76, 76, 76), 10%);
}

input[type=radio]:not(old) + label::before {
  content: "\f10c";
}
input[type=radio]:not(old):checked + label::before {
  content: "\f192";
}

input[type=checkbox]:not(old) + label::before {
  content: "\f096";
}
input[type=checkbox]:not(old):checked + label::before {
  content: "\f046";
}

textarea {
  resize: vertical;
}

label {
  font-size: 0.85em;
}

p.instructions {
  font-size: 0.8em !important;
  font-style: italic !important;
}

/* Group control */
.group.sized {
  float: left;
  width: 100%;
  margin-bottom: 0.5em;
}
@media (min-width: 768px) {
  .group.sized.half {
    width: 50%;
  }
  *[class*=sized] ~ .group.sized.half {
    width: 48%;
    margin-left: 2%;
  }
  *[class*=sized] ~ .group.sized.half.new-row {
    width: 50%;
    margin-left: 0;
    clear: both;
  }
  .group:not(*[class*=sized]) + .group.sized.half, .group.sized.half.new-row {
    width: 50%;
    margin-left: 0;
    clear: both;
  }
}
@media (min-width: 768px) {
  .group.sized.third {
    width: 33%;
  }
  *[class*=sized] ~ .group.sized.third {
    width: 31%;
    margin-left: 2%;
  }
  *[class*=sized] ~ .group.sized.third.new-row {
    width: 33%;
    margin-left: 0;
    clear: both;
  }
  .group:not(*[class*=sized]) + .group.sized.third, .group.sized.third.new-row {
    width: 33%;
    margin-left: 0;
    clear: both;
  }
}
@media (min-width: 768px) {
  .group.sized.quarter {
    width: 25%;
  }
  *[class*=sized] ~ .group.sized.quarter {
    width: 23%;
    margin-left: 2%;
  }
  *[class*=sized] ~ .group.sized.quarter.new-row {
    width: 25%;
    margin-left: 0;
    clear: both;
  }
  .group:not(*[class*=sized]) + .group.sized.quarter, .group.sized.quarter.new-row {
    width: 25%;
    margin-left: 0;
    clear: both;
  }
}
@media (min-width: 768px) {
  .group.sized.three-quarter {
    width: 75%;
  }
  *[class*=sized] ~ .group.sized.three-quarter {
    width: 73%;
    margin-left: 2%;
  }
  *[class*=sized] ~ .group.sized.three-quarter.new-row {
    width: 75%;
    margin-left: 0;
    clear: both;
  }
  .group:not(*[class*=sized]) + .group.sized.three-quarter, .group.sized.three-quarter.new-row {
    width: 75%;
    margin-left: 0;
    clear: both;
  }
}
.group.sized + *:not(*[class*=sized]) {
  clear: both;
}
.group.readonly label::after {
  display: inline-block;
  height: 1em;
  bottom: -1em;
  content: "(Read Only)";
  color: rgba(45, 38, 25, 0.85);
  font-size: 0.75em;
  line-height: 1em;
}

/* Fancy Stylized Inputs 
 * inspired by http://tympanus.net/Development/TextInputEffects/ */
.group.pulse-on-focus {
  display: block;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
}
.group.pulse-on-focus input[type=email]:focus,
.group.pulse-on-focus input[type=date]:focus,
.group.pulse-on-focus input[type=text]:focus,
.group.pulse-on-focus input[type=datetime]:focus,
.group.pulse-on-focus input[type=datetime-local]:focus,
.group.pulse-on-focus input[type=email]:focus,
.group.pulse-on-focus input[type=month]:focus,
.group.pulse-on-focus input[type=number]:focus,
.group.pulse-on-focus input[type=password]:focus,
.group.pulse-on-focus input[type=tel]:focus,
.group.pulse-on-focus input[type=text]:focus,
.group.pulse-on-focus input[type=time]:focus,
.group.pulse-on-focus input[type=url]:focus,
.group.pulse-on-focus input[type=week]:focus,
.group.pulse-on-focus textarea:focus,
.group.pulse-on-focus select:focus {
  outline-width: 1px;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-animation: animate-shadow 0.3s normal;
  animation: animate-shadow 0.3s normal;
}

.group.radio.switcher {
  /*  insipired by http://cssdeck.com/labs/radio-button
    <div class="group radio switcher">
      <!-- #blank is optional, but recommended - it allows users to not answer the question-->
      <label for="blank">So here's the Yes or No Question...</label>
      <input type="radio" name="field_name" id="blank" value="" checked>
      <input type="radio" name="field_name" id="yes"   value="yes">
      <input type="radio" name="field_name" id="no"    value="no">
      <div class="switch">
        <label for="yes">Yes</label>
        <label for="no" >No</label>
        <span></span>
      </div>
    </div>
    */
  position: relative;
}
.group.radio.switcher > label {
  display: block;
  text-align: center;
}
.group.radio.switcher input[type=radio] {
  display: none;
}
.group.radio.switcher .switch {
  width: calc(100% - 2em);
  height: 2em;
  text-align: center;
  margin: 0 auto;
  background: rgb(151, 201, 61);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-radius: 1em;
  position: relative;
}
.group.radio.switcher .switch span {
  position: absolute;
  width: 20px;
  height: 4px;
  top: 50%;
  left: 50%;
  margin: -2px 0px 0px -4px;
  background: rgb(255, 255, 255);
  display: block;
  -webkit-transform: rotate(-45deg);
  -webkit-transition: all 0.2s ease;
  transform: rotate(-45deg);
  transition: all 0.2s ease;
}
.group.radio.switcher .switch span:after {
  content: "";
  display: block;
  position: absolute;
  width: 4px;
  height: 12px;
  margin-top: -8px;
  background: rgb(255, 255, 255);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.group.radio.switcher .switch span:before {
  content: "or";
  -webkit-transform: rotate(45deg);
  display: block;
  position: absolute;
  top: -17px;
  left: -2px;
  z-index: 100;
  color: #96938c;
  font-size: 0.8em;
  text-transform: uppercase;
}
.group.radio.switcher .switch label {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  width: 50%;
  line-height: 2.3529411765 em;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.group.radio.switcher .switch label[for*=yes] {
  position: absolute;
  left: 0px;
  height: 20px;
}
.group.radio.switcher .switch label[for*=no] {
  position: absolute;
  right: 0px;
}
.group.radio.switcher label[for*=blank]:after {
  content: " (reset)";
  font-size: 0.8em;
  font-style: italic;
  cursor: pointer;
}
.group.radio.switcher #no:checked ~ .switch {
  background: #96938c;
}
.group.radio.switcher #no:checked ~ .switch span {
  background: rgb(151, 201, 61);
  margin-left: -8px;
}
.group.radio.switcher #no:checked ~ .switch span:after {
  background: rgb(151, 201, 61);
  height: 20px;
  margin-top: -8px;
  margin-left: 8px;
}
.group.radio.switcher #no:checked ~ .switch span:before {
  display: none;
}
.group.radio.switcher #no:checked ~ .switch label[for*=no] {
  color: rgb(255, 255, 255);
  font-weight: 700;
}
.group.radio.switcher #yes:checked ~ .switch span:before {
  display: none;
}
.group.radio.switcher #yes:checked ~ .switch label[for*=yes] {
  color: rgb(255, 255, 255);
  font-weight: 700;
}
.group.radio.switcher #blank:checked ~ .switch {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #96938c;
}
.group.radio.switcher #blank:checked ~ .switch label {
  color: rgba(45, 38, 25, 0.9);
}

.error {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  color: rgb(217, 19, 80);
}
.wf-active .error {
  opacity: 1;
}
.wf-inactive .error {
  opacity: 1;
}

fieldset:last-of-type {
  border: none !important;
}

/* honey pot */
.screen-reader {
  display: block !important;
  left: -9999px !important;
  position: absolute !important;
}

/* body */
body {
  margin-top: 180px;
}
@media (min-width: 768px) {
  body {
    margin-top: 230px;
  }
}
@media (min-width: 992px) {
  body {
    margin-top: 260px;
  }
}

html.js-nav,
html.js-nav body {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* header */
body > header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 180px;
  background-color: rgb(255, 255, 255);
  transition: background-color 0.3s ease;
  box-shadow: 0px 0px 3px rgb(76, 76, 76);
  z-index: 1000;
}
body > header.smaller {
  height: 48px;
}
body > header.smaller .brand a {
  height: 0;
}
body > header .brand a {
  display: block;
  margin: 42px 0 0 0;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  text-align: center;
  color: rgb(76, 76, 76) !important;
  text-transform: uppercase;
  font-size: 1.9em;
  line-height: 1.2 !important;
  background-image: url(/images/site-images/Ailanthus3web.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 86px 54px;
  height: 130px;
  overflow: hidden;
  transition: height 0.3s ease;
  transition: padding 0.3s ease;
}
.wf-active body > header .brand a {
  opacity: 1;
}
.wf-inactive body > header .brand a {
  opacity: 1;
}
body > header .brand a .tagline {
  text-transform: initial;
  font-size: 12px;
}
@media (min-width: 768px) {
  body > header {
    background-color: rgb(255, 255, 255);
    height: 230px;
    box-shadow: none;
  }
  body > header .brand a {
    margin: 0;
    text-align: left;
    font-size: 2.8em;
    background-size: 120px 79px;
    background-position: top left;
    height: 100px;
    padding-top: 80px;
  }
  body > header .brand a .tagline {
    font-size: 14px;
  }
  body > header.smaller {
    height: 130px;
    background-color: rgb(255, 255, 255);
  }
  body > header.smaller .brand a {
    height: 80px;
    padding-top: 0;
    padding-left: 140px;
  }
  body > header.smaller nav.main {
    top: 43px;
  }
}
@media (min-width: 992px) {
  body > header {
    height: 260px;
  }
  body > header .brand a {
    background-size: 137px 87px;
    font-size: 3.6em;
    height: 110px;
    padding-top: 100px;
    line-height: 1.2;
  }
  body > header .brand a .tagline {
    font-size: 16px;
  }
  body > header.smaller {
    height: 150px;
  }
  body > header.smaller .brand a {
    height: 100px;
    padding-left: 150px;
  }
}

@media (min-width: 768px) {
  header .wrapper {
    position: relative;
  }
}

.member-login {
  display: none;
}
@media (min-width: 768px) {
  .member-login {
    display: block;
    position: absolute;
    top: 14px;
    right: 14px;
  }
  .member-login ul {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity ease-in 0.3s;
    margin: 0;
    padding: 0;
    list-style: none;
    text-transform: uppercase;
  }
  .wf-active .member-login ul {
    opacity: 1;
  }
  .wf-inactive .member-login ul {
    opacity: 1;
  }
  .member-login ul li {
    display: inline-block;
    padding: 0 1em;
  }
  .member-login ul li a {
    color: rgb(76, 76, 76);
    font-weight: 400;
  }
  .member-login ul li a:hover {
    color: rgb(151, 201, 61);
  }
}

/* Navigation components */
a.skip-navigation {
  height: 28px;
  padding: 6px;
  position: absolute;
  top: -90px;
  left: 0px;
  color: rgb(255, 255, 255);
  line-height: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom-right-radius: 2px;
  background: transparent;
  -webkit-transition: top 1s ease-out, background 1s linear;
  transition: top 1s ease-out, background 1s linear;
  z-index: 10001;
}
a.skip-navigation:focus {
  position: absolute;
  left: 0px;
  top: 0px;
  background: rgba(151, 201, 61, 0.8);
  outline: 0;
  -webkit-transition: top 0.1s ease-in, background 0.5s linear;
  transition: top 0.1s ease-in, background 0.5s linear;
}

a.nav-toggle {
  display: block;
  position: absolute;
  top: 12px;
  right: 8px;
  width: 32px;
  height: 1.5em;
  font-size: 1.5em;
  z-index: 3000;
}
@media (min-width: 768px) {
  a.nav-toggle {
    display: none;
  }
}

#nav-icon {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: rgb(151, 201, 61);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#nav-icon span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon span:nth-child(2) {
  top: 9px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon span:nth-child(3) {
  top: 18px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon.open span:nth-child(1) {
  -webkit-transform: translate(8px, -2px) rotate(45deg);
  -moz-transform: translate(8px, -2px) rotate(45deg);
  -o-transform: translate(8px, -2px) rotate(45deg);
  transform: translate(8px, -2px) rotate(45deg);
}

#nav-icon.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#nav-icon.open span:nth-child(3) {
  -webkit-transform: translate(8px, 2px) rotate(-45deg);
  -moz-transform: translate(8px, 2px) rotate(-45deg);
  -o-transform: translate(8px, 2px) rotate(-45deg);
  transform: translate(8px, 2px) rotate(-45deg);
}

nav.main {
  display: none;
}

.smaller nav.main.active {
  top: 48px;
}

nav.main.active {
  display: block;
  position: absolute;
  top: 180px;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  background-color: rgb(255, 255, 255);
  font-size: 1.2em;
}
nav.main.active ul,
nav.main.active li {
  margin: 0;
  padding: 0;
  list-style: none;
  text-transform: uppercase;
}
nav.main.active li,
nav.main.active li a {
  display: block;
  width: auto;
  min-height: 36px;
  line-height: 36px;
}
nav.main.active li a {
  padding: 0 1em;
}
nav.main.active li.current > a {
  font-weight: 400;
  background-color: rgb(151, 201, 61);
}
nav.main.active li.no-mobile {
  display: none;
}
nav.main.active ul {
  position: relative;
  margin-top: 24px;
}
nav.main.active ul li {
  border-bottom: 1px solid tint(#96938c, 80%);
}
nav.main.active ul li.current > a {
  color: rgb(255, 255, 255) !important;
}
nav.main.active ul li > ul {
  display: none;
}
nav.main.active ul li:hover > ul {
  display: block;
}
nav.main.active ul li.current > ul {
  display: block;
}
nav.main.active ul ul {
  margin: 0;
}
nav.main.active ul ul li > a {
  padding-left: 36px;
}
nav.main.active ul ul li:last-child {
  border-bottom: none;
}
nav.main.active ul > li a {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity ease-in 0.3s;
}
.wf-active nav.main.active ul > li a {
  opacity: 1;
}
.wf-inactive nav.main.active ul > li a {
  opacity: 1;
}
nav.main.active ul > li a, nav.main.active ul > li a:visited, nav.main.active ul > li a:active, nav.main.active ul > li a:visited:active {
  color: rgb(76, 76, 76);
}
nav.main.active ul > li a:hover, nav.main.active ul > li a:visited:hover {
  color: rgb(45, 38, 25);
}
nav.main.active ul > li a:hover, nav.main.active ul > li a:visited:hover {
  font-weight: bold;
  text-decoration: none;
  color: rgb(76, 76, 76);
}
nav.main.active ul > li a.ghost-button {
  margin: 0.5em;
  white-space: nowrap;
}
nav.main.active ul > li a.ghost-button:hover, nav.main.active ul > li a.ghost-button:visited:hover {
  text-decoration: none;
  color: shade(rgb(76, 76, 76), 33%);
}

.mobile-alpha-nav-button {
  position: absolute;
  right: 0;
  bottom: -40px;
}
.mobile-alpha-nav-button a {
  display: block;
  padding: 2px 8px;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  background-color: rgb(151, 201, 61);
  color: rgb(255, 255, 255);
}

.mobile-alpha-nav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(151, 201, 61);
  overflow-x: hidden;
  transition: 0.5s;
}
.mobile-alpha-nav ul {
  list-style: none;
  margin: 8px 0 0 0;
  padding: 0;
}
.mobile-alpha-nav ul li:hover {
  background-color: shade(rgb(151, 201, 61), 25%);
}
.mobile-alpha-nav ul li > a {
  color: rgb(255, 255, 255);
  display: block;
  text-align: center;
}
.mobile-alpha-nav ul li > a:visited {
  color: rgb(255, 255, 255);
}
.mobile-alpha-nav a.close-button {
  color: rgb(255, 255, 255);
  font-size: 2em;
  position: absolute;
  top: 1px;
  right: 14px;
}

@media (min-width: 768px) {
  nav.main .wrapper {
    display: table;
  }
}

nav.main {
  border-top: 1px solid rgb(212, 230, 213);
  border-bottom: 1px solid rgb(212, 230, 213);
  line-height: 1.375;
}
@media (min-width: 768px) {
  nav.main {
    display: block;
    transition: top 0.3s ease-in;
  }
  nav.main ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    height: 36px;
    position: relative;
    text-align: center;
    display: table-cell;
  }
  nav.main ul li {
    margin: 0;
  }
  nav.main ul li {
    display: inline-block;
    float: left;
  }
  nav.main ul li:not(:first-child) {
    margin-left: 0;
  }
  nav.main ul li:not(:last-child) {
    margin-right: 0;
  }
  nav.main ul li {
    display: block;
    float: left;
    padding: 0;
    margin: 0;
    position: relative;
  }
  nav.main ul li:hover {
    background-color: rgb(76, 76, 76);
  }
  nav.main ul li:hover > a {
    color: rgb(255, 255, 255);
  }
  nav.main ul li a {
    display: block;
    padding: 1em;
    font-family: "Lato", sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity ease-in 0.3s;
    font-size: 1em 1.2em;
    color: rgb(76, 76, 76);
    text-transform: uppercase;
    white-space: nowrap;
  }
  .wf-active nav.main ul li a {
    opacity: 1;
  }
  .wf-inactive nav.main ul li a {
    opacity: 1;
  }
  nav.main ul li.current {
    background-color: rgb(151, 201, 61);
  }
  nav.main ul li.current a {
    color: rgb(255, 255, 255);
  }
  nav.main ul li ul {
    position: absolute;
    display: none;
    overflow: hidden;
    background-color: rgb(255, 255, 255);
    top: 47px;
    left: 0px;
    height: auto;
    border: 1px solid rgb(212, 230, 213);
  }
  nav.main ul li ul > li {
    float: none;
    font-size: 0.9em;
    text-align: left;
    height: 28px;
    line-height: 28px;
    padding: 0 8px;
  }
  nav.main ul li ul > li:hover {
    background-color: rgb(255, 255, 255);
  }
  nav.main ul li ul > li:hover a {
    color: rgb(151, 201, 61);
  }
  nav.main ul li ul > li > a {
    padding: 0;
    color: rgb(76, 76, 76);
    display: block;
    background-color: transparent;
    min-height: 36px;
    height: 36px;
    width: 100%;
  }
  nav.main ul li:hover ul {
    display: block;
  }
  nav.main ul li.current ul > li {
    background-color: rgb(255, 255, 255);
  }
  nav.main ul li.current ul > li > a {
    color: rgb(76, 76, 76);
  }
  nav.main ul li.current ul > li:hover > a {
    color: rgb(151, 201, 61);
  }
  nav.main ul li.current ul > li.current > a {
    color: rgb(151, 201, 61);
    font-family: "Lato", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity ease-in 0.3s;
  }
  .wf-active nav.main ul li.current ul > li.current > a {
    opacity: 1;
  }
  .wf-inactive nav.main ul li.current ul > li.current > a {
    opacity: 1;
  }
}
@media (min-width: 992px) {
  nav.main ul li a {
    padding: 1em 2.2em;
  }
  nav.main ul ul {
    left: unset;
  }
}

nav.alpha-nav ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  padding: 0;
}
nav.alpha-nav ul :after {
  content: "";
  display: table;
  clear: both;
}
nav.alpha-nav ul li {
  margin: 0;
  padding: 0;
  flex-grow: 1;
}
nav.alpha-nav ul li a {
  display: inline-block;
  width: 100%;
  text-align: center;
  background-color: rgb(151, 201, 61);
  color: rgb(255, 255, 255);
}
nav.alpha-nav ul li a:hover {
  background-color: shade(rgb(151, 201, 61), 25%);
  color: rgb(255, 255, 255);
}
nav.alpha-nav ul li a:visited {
  color: rgb(255, 255, 255);
}
nav.alpha-nav ul li.current a {
  background-color: shade(rgb(151, 201, 61), 25%);
}

/* main */
body > main {
  width: 100%;
}

main.interior {
  padding-top: 1.5em;
  padding-bottom: 2em;
}
main.interior aside img {
  width: 100%;
}
main.interior aside .img-caption {
  font-size: 0.8em;
}
@media (min-width: 580px) {
  main.interior.one-column article {
    width: 100%;
    margin-right: 0;
  }
  main.interior.one-column article h1 {
    text-align: center;
  }
  main.interior.one-column article p {
    text-align: center;
  }
  main.interior.directory article {
    width: 100%;
    margin-right: 0;
  }
  main.interior.two-column article {
    width: 47%;
    margin-right: 2.5%;
    float: left;
  }
  main.interior.two-column aside {
    width: 47%;
    margin-left: 2.5%;
    float: right;
    padding-top: 4.5em;
  }
  main.interior.two-column aside img {
    width: 100%;
  }
  main.interior.two-column-offcenter article {
    width: 60%;
    margin-right: 2.5%;
    float: left;
  }
  main.interior.two-column-offcenter aside {
    width: 34%;
    padding-left: 2.5%;
    float: right;
    padding-top: 4.5em;
  }
  main.interior.two-column-offcenter aside.border-left {
    border-left: 1px solid tint(rgb(151, 201, 61), 25%);
  }
  main.interior.two-column-offcenter aside img {
    width: 100%;
  }
}
@media (min-width: 992px) {
  main.interior.directory article {
    width: 60%;
    margin-right: auto;
    margin-left: auto;
  }
}

.horizontal-image {
  margin-top: -1.5em;
}
.horizontal-image img {
  width: 100%;
}

.home-hero {
  margin: 0 0 1.5em 0;
  width: 100%;
}
.home-hero .slideshow-slide {
  overflow: hidden;
}
.home-hero .slideshow-slide img {
  width: 100%;
}

.home-content .home-column {
  margin: 0 0 1.5em 0;
  padding: 5em 1em 1em 1em;
  border: 1px solid rgb(212, 230, 213);
  background-repeat: no-repeat;
  background-position: center 14px;
  background-size: 44px 44px;
}
.home-content .home-column.home-text {
  background-image: url(/images/site-images/group.svg);
}
.home-content .home-column.home-text img.full-column {
  width: 100%;
}
.home-content .home-column.mini-cal {
  background-image: url(/images/site-images/calendar.svg);
}
.home-content .home-column.news {
  background-image: url(/images/site-images/newspaper.svg);
}
.home-content .home-column.news img.full-column {
  width: 100%;
}
.home-content .home-column h1, .home-content .home-column h2 {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.14em;
}
.wf-active .home-content .home-column h1, .wf-active .home-content .home-column h2 {
  opacity: 1;
}
.wf-inactive .home-content .home-column h1, .wf-inactive .home-content .home-column h2 {
  opacity: 1;
}
@media (min-width: 768px) {
  .home-content {
    display: flex;
    justify-content: space-between;
  }
  .home-content .home-column {
    width: 26%;
  }
}
@media (min-width: 992px) {
  .home-content .home-column {
    width: 28%;
  }
}

.gallery {
  text-align: center;
}
.gallery a.gallery-thumb {
  display: inline-block;
  width: 30%;
  margin: 1%;
}
.gallery a.gallery-thumb img {
  width: 100%;
}
@media (min-width: 580px) {
  .gallery a.gallery-thumb {
    width: 23%;
  }
}
@media (min-width: 768px) {
  .gallery a.gallery-thumb {
    width: 197px;
  }
}

.member-listing {
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid tint(rgb(151, 201, 61), 25%);
  overflow: auto;
}

.contact p, .expertise p {
  margin: 0 0 0 8px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .contact {
    width: 48%;
    margin-right: 2%;
    float: left;
  }
  .expertise {
    width: 48%;
    float: left;
  }
}
@media (min-width: 580px) {
  .half-column {
    width: 48%;
    float: left;
    margin-right: 2%;
  }
}
nav.archive-nav {
  padding: 10px 20px;
}
nav.archive-nav h2 {
  margin-top: 10px;
}

nav.list-cal-view {
  text-align: center;
}
nav.list-cal-view.list-view-nav {
  text-align: left;
}
nav.list-cal-view.list-view-nav ul {
  margin: 0 0 20px 0;
}
nav.list-cal-view ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  width: 230px;
}
nav.list-cal-view ul li {
  display: inline-block;
}
nav.list-cal-view ul li a {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  color: #96938c;
  padding: 6px 12px;
}
.wf-active nav.list-cal-view ul li a {
  opacity: 1;
}
.wf-inactive nav.list-cal-view ul li a {
  opacity: 1;
}
nav.list-cal-view ul li a:hover {
  color: rgb(45, 38, 25);
}
nav.list-cal-view ul li.list-view {
  border: 1px solid tint(#96938c, 80%);
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
nav.list-cal-view ul li.cal-view {
  border-top: 1px solid tint(#96938c, 80%);
  border-bottom: 1px solid tint(#96938c, 80%);
  border-left: 1px solid tint(#96938c, 80%);
  margin-right: -4px;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
nav.list-cal-view ul li.current {
  background-color: tint(rgb(151, 201, 61), 75%);
}
nav.list-cal-view ul li.current a {
  color: rgb(45, 38, 25);
}

.calendar-list-item {
  margin: 0 0 2em 0;
  overflow: auto;
}
.calendar-list-item .h3, .calendar-list-item h3 {
  margin-top: 0;
}
.calendar-list-item .h3:first-of-type, .calendar-list-item h3:first-of-type {
  margin-top: 1em;
}
.calendar-list-item .date-block {
  float: left;
  margin: 0 12px 0 0;
  text-align: center;
  border: 2px solid;
  border-radius: 2px;
  width: 75px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
}
.wf-active .calendar-list-item .date-block {
  opacity: 1;
}
.wf-inactive .calendar-list-item .date-block {
  opacity: 1;
}
.calendar-list-item .date-block .day {
  text-transform: uppercase;
  color: rgb(255, 255, 255);
}
.calendar-list-item .date-block .date {
  font-size: 2em;
}
.calendar-list-item .date-block .year {
  color: rgb(255, 255, 255);
}
.calendar-list-item .date-block.plant-o-rama {
  border-color: rgb(151, 201, 59);
}
.calendar-list-item .date-block.plant-o-rama .day, .calendar-list-item .date-block.plant-o-rama .year {
  background-color: rgb(151, 201, 59);
}
.calendar-list-item .date-block.monthly-meetings {
  border-color: rgb(198, 15, 247);
}
.calendar-list-item .date-block.monthly-meetings .day, .calendar-list-item .date-block.monthly-meetings .year {
  background-color: rgb(198, 15, 247);
}
.calendar-list-item .date-block.tri-state-events {
  border-color: rgb(255, 102, 0);
}
.calendar-list-item .date-block.tri-state-events .day, .calendar-list-item .date-block.tri-state-events .year {
  background-color: rgb(255, 102, 0);
}
.calendar-list-item .date-block.mhg-field-trips {
  border-color: rgb(0, 203, 241);
}
.calendar-list-item .date-block.mhg-field-trips .day, .calendar-list-item .date-block.mhg-field-trips .year {
  background-color: rgb(0, 203, 241);
}
.calendar-list-item .calendar-list-event-info {
  float: left;
  width: 70%;
}
.calendar-list-item .calendar-list-event-info .sold-out-notice {
  width: 100px;
  height: 30px;
  background: url(/images/site-images/sold-out-notice-gry.png) no-repeat;
}

.tabs {
  list-style-type: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
}
.tabs li {
  float: left;
}

.tab-content {
  display: none;
}
.tab-content p:last-child, .tab-content ul:last-child, .tab-content ol:last-child {
  margin-bottom: 0;
}

.tab-open {
  display: block;
}

.tabs {
  margin-top: 20px;
  border-bottom: 1px solid rgb(151, 201, 61);
}
.tabs a {
  display: inline-block;
  line-height: 1;
  padding: 10px;
}
.tabs a.act {
  color: rgb(255, 255, 255);
  background-color: rgb(151, 201, 61);
}

.tab-content {
  margin-bottom: 20px;
}
.tab-content .tab-content {
  background-color: #FFFFFF;
  margin-bottom: 0;
}
.hours-column {
  width: 25%;
}

a.sponsor-links {
  display: inline-block;
  width: 35%;
  margin: 0.5em 2.5%;
}

.inline-image-full-column img, .inline-image-half-column-left img, .inline-image-half-column-right img {
  width: 100%;
}

@media (min-width: 768px) {
  .inline-image-half-column-left {
    width: 45%;
    margin: 0.5em;
    float: left;
  }
  .inline-image-half-column-right {
    width: 45%;
    margin: 0.5em;
    float: right;
  }
}
.image-gallery {
  border: 1px solid tint(#96938c, 80%);
  padding: 1em 1.2% 0.5em 1.2%;
}
.image-gallery h3 {
  margin: 0;
}
.image-gallery a.gallery-thumb img {
  margin: 1.2%;
  width: 30%;
}
@media (min-width: 768px) {
  .image-gallery a.gallery-thumb img {
    width: 22%;
  }
}

p.entry-date {
  margin-bottom: 0;
}

/* basic form stuff */
form fieldset {
  padding: 0 0 20px 0 !important;
  margin: 0;
}
form fieldset legend {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity ease-in 0.3s;
}
.wf-active form fieldset legend {
  opacity: 1;
}
.wf-inactive form fieldset legend {
  opacity: 1;
}
@media (min-width: 768px) {
  form {
    width: 400px;
    padding: 1em 0 0 0;
  }
  form.profile {
    width: 100%;
  }
}

aside > form, .half-column > form, form.profile {
  background-color: rgb(173, 201, 132);
  padding: 1em;
}
aside > form .ghost-button, .half-column > form .ghost-button, form.profile .ghost-button {
  border-color: rgb(255, 255, 255) !important;
}
aside > form h2:first-of-type, .half-column > form h2:first-of-type, form.profile h2:first-of-type {
  margin-top: 0;
}

.half-column > form {
  width: 90%;
}

/* Button Definitions */
.button-box :after {
  content: "";
  display: table;
  clear: both;
}
.button-box a, .button-box button, .button-box input[type=submit] {
  float: right;
}

a.button, button.button, input.button[type=submit] {
  text-align: center;
  border: none;
  margin: 0.5em 0;
  height: auto;
}
a.button.small, button.button.small, input.button.small[type=submit] {
  font-size: 0.8em;
}
a.button.large, button.button.large, input.button.large[type=submit] {
  font-size: 1.33em;
}
a.button.full-width, button.button.full-width, input.button.full-width[type=submit] {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
a.float-right, button.float-right, input.float-right[type=submit] {
  margin-left: 1em;
}

nav.dashboard {
  border-bottom: 2px solid rgb(76, 76, 76);
}
nav.dashboard ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
nav.dashboard ul li {
  display: inline-block;
}
nav.dashboard ul li a {
  display: block;
  border: 2px solid rgb(151, 201, 61);
  border-bottom: none;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  color: rgb(76, 76, 76);
  padding: 8px;
}
nav.dashboard ul li a span {
  font-size: 2em;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  line-height: 1;
}
.wf-active nav.dashboard ul li a span {
  opacity: 1;
}
.wf-inactive nav.dashboard ul li a span {
  opacity: 1;
}
nav.dashboard ul li.current a, nav.dashboard ul li:hover a {
  border-color: rgb(76, 76, 76);
  background-color: rgb(76, 76, 76);
  color: rgb(255, 255, 255);
}

.download-links {
  border: 1px solid rgb(151, 201, 61);
  padding: 12px;
  background-color: #eee;
}
.download-links p {
  text-align: left !important;
  max-width: 500px;
  margin-top: 24px;
}
.download-links ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.download-links ul li {
  display: inline-block;
}
.download-links ul li a {
  display: block;
  margin-right: 12px;
  border: 2px solid rgb(151, 201, 61);
  color: rgb(76, 76, 76);
  padding: 8px;
  background-color: rgb(255, 255, 255);
}
.download-links ul li a span {
  font-size: 2em;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  line-height: 1;
}
.wf-active .download-links ul li a span {
  opacity: 1;
}
.wf-inactive .download-links ul li a span {
  opacity: 1;
}
.download-links ul li:hover a {
  border-color: rgb(76, 76, 76);
  background-color: rgb(76, 76, 76);
  color: rgb(255, 255, 255);
}

th.name-col {
  width: 120px;
}

th.phone-col {
  width: 100px;
}

/* footer */
footer > .wrapper {
  position: relative;
}

body > footer {
  border-top: 5px solid rgb(151, 201, 61);
  background-color: rgb(76, 76, 76);
  color: rgb(255, 255, 255);
  text-align: center;
  font-size: 0.857em;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity ease-in 0.3s;
}
.wf-active body > footer {
  opacity: 1;
}
.wf-inactive body > footer {
  opacity: 1;
}
body > footer .indicia p {
  margin: 1em 0 0 0;
  line-height: 1.2em;
}
body > footer .indicia p.footer-email a {
  text-transform: lowercase;
}
body > footer .indicia p.footer-email a:hover {
  color: rgb(255, 255, 255);
}
body > footer p.credits {
  line-height: 2;
  width: 100%;
  max-width: 580px;
  display: inline-block;
  margin-bottom: 0;
}
body > footer p.credits:first-of-type {
  margin-top: 32px;
  padding-top: 18px;
  border-top: none;
}
body > footer p.credits:last-of-type {
  padding-bottom: 24px;
}
body > footer p.credits span {
  font-size: 0.8em;
  line-height: 36px;
}
body > footer p.credits a.spiritdesign {
  padding-top: 6px;
  margin-bottom: 10px;
  text-indent: -9999px;
  display: inline-block;
  width: 150px;
  height: 30px;
  background-image: url(/images/site-images/SID_Logo.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
}
body > footer p.credits a.hopstudios {
  padding-top: 6px;
  text-indent: -9999px;
  display: inline-block;
  width: 46px;
  height: 30px;
  background-image: url(/images/site-images/icon_hop_footer.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
}
body > footer .social-media {
  display: inline-block;
  margin: 1em auto;
}
@media (min-width: 768px) {
  body > footer {
    font-size: 1em;
    min-height: 260px;
  }
  body > footer .indicia {
    width: 250px;
    float: left;
    margin-top: 20px;
  }
  body > footer .social-media {
    width: 200px;
    float: right;
    margin-top: 36px;
  }
  body > footer .credits-container {
    position: absolute;
    top: 160px;
    right: 0;
    left: 0;
    width: 415px;
    margin: 0 auto;
  }
  body > footer .credits-container p.credits {
    border: none;
    margin-bottom: 0;
    font-size: 0.8em;
    padding: 0;
  }
  body > footer .credits-container p.credits:first-of-type {
    margin-top: 0;
    padding-top: 0;
  }
  body > footer .credits-container p.credits a.hopstudios {
    padding: 0;
  }
}

/* Z-INDEX */
.formError {
  z-index: 990;
}

.formError .formErrorContent {
  z-index: 991;
}

.formError .formErrorArrow {
  z-index: 996;
}

.ui-dialog .formError {
  z-index: 5000;
}

.ui-dialog .formError .formErrorContent {
  z-index: 5001;
}

.ui-dialog .formError .formErrorArrow {
  z-index: 5006;
}

.inputContainer {
  position: relative;
  float: left;
}

.formError {
  position: absolute;
  top: 300px;
  left: 300px;
  display: block;
  cursor: pointer;
  text-align: left;
}

.formError.inline {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block;
}

.ajaxSubmit {
  padding: 20px;
  background: #55ea55;
  border: 1px solid #999;
  display: none;
}

.formError .formErrorContent {
  width: 100%;
  background: #ee0101;
  position: relative;
  color: #fff;
  min-width: 120px;
  font-size: 11px;
  border: 2px solid #ddd;
  box-shadow: 0 0 6px #000;
  -moz-box-shadow: 0 0 6px #000;
  -webkit-box-shadow: 0 0 6px #000;
  -o-box-shadow: 0 0 6px #000;
  padding: 4px 10px 4px 10px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -o-border-radius: 6px;
}

.formError.inline .formErrorContent {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  border: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
}

.greenPopup .formErrorContent {
  background: #33be40;
}

.blackPopup .formErrorContent {
  background: #393939;
  color: #FFF;
}

.formError .formErrorArrow {
  width: 15px;
  margin: -2px 0 0 13px;
  position: relative;
}

body[dir=rtl] .formError .formErrorArrow,
body.rtl .formError .formErrorArrow {
  margin: -2px 13px 0 0;
}

.formError .formErrorArrowBottom {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  margin: 0px 0 0 12px;
  top: 2px;
}

.formError .formErrorArrow div {
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  box-shadow: 0 2px 3px #444;
  -moz-box-shadow: 0 2px 3px #444;
  -webkit-box-shadow: 0 2px 3px #444;
  -o-box-shadow: 0 2px 3px #444;
  font-size: 0px;
  height: 1px;
  background: #ee0101;
  margin: 0 auto;
  line-height: 0;
  font-size: 0;
  display: block;
}

.formError .formErrorArrowBottom div {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
}

.greenPopup .formErrorArrow div {
  background: #33be40;
}

.blackPopup .formErrorArrow div {
  background: #393939;
  color: #FFF;
}

.formError .formErrorArrow .line10 {
  width: 15px;
  border: none;
}

.formError .formErrorArrow .line9 {
  width: 13px;
  border: none;
}

.formError .formErrorArrow .line8 {
  width: 11px;
}

.formError .formErrorArrow .line7 {
  width: 9px;
}

.formError .formErrorArrow .line6 {
  width: 7px;
}

.formError .formErrorArrow .line5 {
  width: 5px;
}

.formError .formErrorArrow .line4 {
  width: 3px;
}

.formError .formErrorArrow .line3 {
  width: 1px;
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  border-bottom: 0 solid #ddd;
}

.formError .formErrorArrow .line2 {
  width: 3px;
  border: none;
  background: #ddd;
}

.formError .formErrorArrow .line1 {
  width: 1px;
  border: none;
  background: #ddd;
}

/*!
Chosen, a Select Box Enhancer for jQuery and Prototype
by Patrick Filler for Harvest, http://getharvest.com

Version 1.4.2
Full source at https://github.com/harvesthq/chosen
Copyright (c) 2011-2015 Harvest http://getharvest.com

MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
This file is generated by `grunt build`, do not edit it by hand.
*/
/* @group Base */
.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  zoom: 1;
  *display: inline;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.chosen-container * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  left: -9999px;
  z-index: 1010;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}

.chosen-container.chosen-with-drop .chosen-drop {
  left: 0;
}

.chosen-container a {
  cursor: pointer;
}

.chosen-container .search-choice .group-name, .chosen-container .chosen-single .group-name {
  margin-right: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: normal;
  color: #999999;
}

.chosen-container .search-choice .group-name:after, .chosen-container .chosen-single .group-name:after {
  content: ":";
  padding-left: 2px;
  vertical-align: top;
}

/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 8px;
  height: 25px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: #fff;
  background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #ffffff), color-stop(50%, #f6f6f6), color-stop(52%, #eeeeee), color-stop(100%, #f4f4f4));
  background: -webkit-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  background: -moz-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  background: -o-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  background: linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  background-clip: padding-box;
  box-shadow: 0 0 3px white inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  line-height: 24px;
}

.chosen-container-single .chosen-default {
  color: #999;
}

.chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px;
}

.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  background: url("/images/site_images/chosen/chosen-sprite.png") -42px 1px no-repeat;
  font-size: 1px;
}

.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px;
}

.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px;
}

.chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 18px;
  height: 100%;
}

.chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
  background: url("/images/site_images/chosen/chosen-sprite.png") no-repeat 0px 2px;
}

.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap;
}

.chosen-container-single .chosen-search input[type=text] {
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #aaa;
  background: white url("/images/site_images/chosen/chosen-sprite.png") no-repeat 100% -20px;
  background: url("/images/site_images/chosen/chosen-sprite.png") no-repeat 100% -20px;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}

.chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box;
}

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  left: -9999px;
}

/* @end */
/* @group Results */
.chosen-container .chosen-results {
  color: #444;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch;
}

.chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  word-wrap: break-word;
  -webkit-touch-callout: none;
}

.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer;
}

.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default;
}

.chosen-container .chosen-results li.highlighted {
  background-color: #3875d7;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
  background-image: -webkit-linear-gradient(#3875d7 20%, #2a62bc 90%);
  background-image: -moz-linear-gradient(#3875d7 20%, #2a62bc 90%);
  background-image: -o-linear-gradient(#3875d7 20%, #2a62bc 90%);
  background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
  color: #fff;
}

.chosen-container .chosen-results li.no-results {
  color: #777;
  display: list-item;
  background: #f4f4f4;
}

.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: bold;
  cursor: default;
}

.chosen-container .chosen-results li.group-option {
  padding-left: 15px;
}

.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline;
}

/* @end */
/* @group Multi Chosen */
.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0 5px;
  width: 100%;
  height: auto !important;
  height: 1%;
  border: 1px solid #aaa;
  background-color: #fff;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
  background-image: -webkit-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background-image: -moz-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background-image: -o-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background-image: linear-gradient(#eeeeee 1%, #ffffff 15%);
  cursor: text;
}

.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none;
}

.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.chosen-container-multi .chosen-choices li.search-field input[type=text] {
  margin: 1px 0;
  padding: 0;
  height: 25px;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none;
  color: #999;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}

.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 5px 3px 0;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  max-width: 100%;
  border-radius: 3px;
  background-color: #eeeeee;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
  background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-size: 100% 19px;
  background-repeat: repeat-x;
  background-clip: padding-box;
  box-shadow: 0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 13px;
  cursor: default;
}

.chosen-container-multi .chosen-choices li.search-choice span {
  word-wrap: break-word;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  background: url("/images/site_images/chosen/chosen-sprite.png") -42px 1px no-repeat;
  font-size: 1px;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px;
}

.chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
  background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  color: #666;
}

.chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4;
}

.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px;
}

.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0;
}

.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default;
}

/* @end */
/* @group Active  */
.chosen-container-active .chosen-single {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #aaa;
  -moz-border-radius-bottomright: 0;
  border-bottom-right-radius: 0;
  -moz-border-radius-bottomleft: 0;
  border-bottom-left-radius: 0;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #eeeeee), color-stop(80%, #ffffff));
  background-image: -webkit-linear-gradient(#eeeeee 20%, #ffffff 80%);
  background-image: -moz-linear-gradient(#eeeeee 20%, #ffffff 80%);
  background-image: -o-linear-gradient(#eeeeee 20%, #ffffff 80%);
  background-image: linear-gradient(#eeeeee 20%, #ffffff 80%);
  box-shadow: 0 1px 0 #fff inset;
}

.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
  background: transparent;
}

.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 2px;
}

.chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.chosen-container-active .chosen-choices li.search-field input[type=text] {
  color: #222 !important;
}

/* @end */
/* @group Disabled Support */
.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default;
}

.chosen-disabled .chosen-single {
  cursor: default;
}

.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default;
}

/* @end */
/* @group Right to Left */
.chosen-rtl {
  text-align: right;
}

.chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0;
}

.chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl;
}

.chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px;
}

.chosen-rtl .chosen-single div {
  right: auto;
  left: 3px;
}

.chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px;
}

.chosen-rtl .chosen-choices li {
  float: right;
}

.chosen-rtl .chosen-choices li.search-field input[type=text] {
  direction: rtl;
}

.chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px;
}

.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px;
}

.chosen-rtl.chosen-container-single-nosearch .chosen-search,
.chosen-rtl .chosen-drop {
  left: 9999px;
}

.chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0;
}

.chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0;
}

.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: none;
}

.chosen-rtl .chosen-search input[type=text] {
  padding: 4px 5px 4px 20px;
  background: white url("/images/site_images/chosen/chosen-sprite.png") no-repeat -30px -20px;
  background: url("/images/site_images/chosen/chosen-sprite.png") no-repeat -30px -20px;
  direction: rtl;
}

.chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px 2px;
}

.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px 2px;
}

/* @end */
/* @group Retina compatibility */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
  .chosen-rtl .chosen-search input[type=text],
  .chosen-container-single .chosen-single abbr,
  .chosen-container-single .chosen-single div b,
  .chosen-container-single .chosen-search input[type=text],
  .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
  .chosen-container .chosen-results-scroll-down span,
  .chosen-container .chosen-results-scroll-up span {
    background-image: url("chosen-sprite@2x.png") !important;
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important;
  }
}
/* @end */

/*# sourceMappingURL=screen.css.map */
