﻿/*@include exports("global") {
    // Meta styles are a dependancy of the Javascript.
    // Used to provide media query values for javascript components.
    // Forward slash placed around everything to convince PhantomJS to read the value.
    @if $include-js-meta-styles {

        meta.foundation-version {
            font-family: "/{{VERSION}}/";
        }

        meta.foundation-mq-small {
            font-family: "/" + unquote($small-up) + "/";
            width: lower-bound($small-range);
        }

        meta.foundation-mq-small-only {
            font-family: "/" + unquote($small-only) + "/";
            width: lower-bound($small-range);
        }

        meta.foundation-mq-medium {
            font-family: "/" + unquote($medium-up) + "/";
            width: lower-bound($medium-range);
        }

        meta.foundation-mq-medium-only {
            font-family: "/" + unquote($medium-only) + "/";
            width: lower-bound($medium-range);
        }

        meta.foundation-mq-large {
            font-family: "/" + unquote($large-up) + "/";
            width: lower-bound($large-range);
        }

        meta.foundation-mq-large-only {
            font-family: "/" + unquote($large-only) + "/";
            width: lower-bound($large-range);
        }

        meta.foundation-mq-xlarge {
            font-family: "/" + unquote($xlarge-up) + "/";
            width: lower-bound($xlarge-range);
        }

        meta.foundation-mq-xlarge-only {
            font-family: "/" + unquote($xlarge-only) + "/";
            width: lower-bound($xlarge-range);
        }

        meta.foundation-mq-xxlarge {
            font-family: "/" + unquote($xxlarge-up) + "/";
            width: lower-bound($xxlarge-range);
        }

        meta.foundation-data-attribute-namespace {
            font-family: false;
        }
    }

    @if $include-html-global-classes {
        // Must be 100% for off canvas to work
        html, body {
            height: 100%;
        }
        // Set box-sizing globally to handle padding and border widths
        html {
            box-sizing: border-box;
        }

        *,
        *:before,
        *:after {
            @include box-sizing(inherit);
        }

        html,
        body {
            font-size: $base-font-size;
        }
        // Default body styles
        body {
            background: $body-bg;
            color: $body-font-color;
            cursor: $cursor-auto-value;
            font-family: $body-font-family;
            font-style: $body-font-style;
            font-weight: $body-font-weight;
            line-height: $base-line-height; // Set to $base-line-height to take on browser default of 150%
            margin: 0;
            padding: 0;
            position: relative;
        }

        a:hover {
            cursor: $cursor-pointer-value;
        }
        // Grid Defaults to get images and embeds to work properly
        img {
            max-width: 100%;
            height: auto;
        }

        img {
            -ms-interpolation-mode: bicubic;
        }

        #map_canvas,
        .map_canvas,
        .mqa-display {
            img,
            embed,
            object {
                max-width: none !important;
            }
        }
        // Miscellaneous useful HTML classes
        .left {
            float: left !important;
        }

        .right {
            float: right !important;
        }

        .clearfix {
            @include clearfix;
        }
        // Hide visually and from screen readers
        .hide {
            display: none;
        }
        // Hide visually and from screen readers, but maintain layout
        .invisible {
            visibility: hidden;
        }
        // Font smoothing
        // Antialiased font smoothing works best for light text on a dark background.
        // Apply to single elements instead of globally to body.
        // Note this only applies to webkit-based desktop browsers and Firefox 25 (and later) on the Mac.
        .antialiased {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        // Get rid of gap under images by making them display: inline-block; by default
        img {
            display: inline-block;
            vertical-align: middle;
        }
        //
        // Global resets for forms
        //
        // Make sure textarea takes on height automatically
        textarea {
            height: auto;
            min-height: 50px;
        }
        // Make select elements 100% width by default
        select {
            width: 100%;
        }
    }
}*/
.zf-row {
  margin: 0 auto;
  max-width: 62.5rem;
  width: 100%; }
  .zf-row:before, .zf-row:after {
    content: " ";
    display: table; }
  .zf-row:after {
    clear: both; }
  .zf-row.collapse > .column, .zf-row.collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .zf-row.collapse .zf-row {
    margin-left: 0;
    margin-right: 0; }
  .zf-row .zf-row {
    margin: 0 -0.9375rem;
    max-width: none;
    width: auto; }
    .zf-row .zf-row:before, .zf-row .zf-row:after {
      content: " ";
      display: table; }
    .zf-row .zf-row:after {
      clear: both; }
    .zf-row .zf-row.collapse {
      margin: 0;
      max-width: none;
      width: auto; }
      .zf-row .zf-row.collapse:before, .zf-row .zf-row.collapse:after {
        content: " ";
        display: table; }
      .zf-row .zf-row.collapse:after {
        clear: both; }

.column, .columns {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  width: 100%;
  float: left; }

[class*="column"] + [class*="column"]:last-child {
  float: right; }

[class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  .small-push-0 {
    position: relative;
    left: 0;
    right: auto; }

  .small-pull-0 {
    position: relative;
    right: 0;
    left: auto; }

  .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  .column, .columns {
    position: relative;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left; }

  .small-1 {
    width: 8.33333%; }

  .small-2 {
    width: 16.66667%; }

  .small-3 {
    width: 25%; }

  .small-4 {
    width: 33.33333%; }

  .small-5 {
    width: 41.66667%; }

  .small-6 {
    width: 50%; }

  .small-7 {
    width: 58.33333%; }

  .small-8 {
    width: 66.66667%; }

  .small-9 {
    width: 75%; }

  .small-10 {
    width: 83.33333%; }

  .small-11 {
    width: 91.66667%; }

  .small-12 {
    width: 100%; }

  .small-offset-0 {
    margin-left: 0 !important; }

  .small-offset-1 {
    margin-left: 8.33333% !important; }

  .small-offset-2 {
    margin-left: 16.66667% !important; }

  .small-offset-3 {
    margin-left: 25% !important; }

  .small-offset-4 {
    margin-left: 33.33333% !important; }

  .small-offset-5 {
    margin-left: 41.66667% !important; }

  .small-offset-6 {
    margin-left: 50% !important; }

  .small-offset-7 {
    margin-left: 58.33333% !important; }

  .small-offset-8 {
    margin-left: 66.66667% !important; }

  .small-offset-9 {
    margin-left: 75% !important; }

  .small-offset-10 {
    margin-left: 83.33333% !important; }

  .small-offset-11 {
    margin-left: 91.66667% !important; }

  .small-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto; }

  .column.small-centered, .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  .column.small-uncentered, .columns.small-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0; }

  .column.small-centered:last-child, .columns.small-centered:last-child {
    float: none; }

  .column.small-uncentered:last-child, .columns.small-uncentered:last-child {
    float: left; }

  .column.small-uncentered.opposite, .columns.small-uncentered.opposite {
    float: right; }

  .zf-row.small-collapse > .column, .zf-row.small-collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .zf-row.small-collapse .zf-row {
    margin-left: 0;
    margin-right: 0; }
  .zf-row.small-uncollapse > .column, .zf-row.small-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left; }
 }

@media only screen and (min-width:40.0625em) {
  .medium-push-0 {
    position: relative;
    left: 0;
    right: auto; }

  .medium-pull-0 {
    position: relative;
    right: 0;
    left: auto; }

  .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  .column, .columns {
    position: relative;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left; }

  .medium-1 {
    width: 8.33333%; }

  .medium-2 {
    width: 16.66667%; }

  .medium-3 {
    width: 25%; }

  .medium-4 {
    width: 33.33333%; }

  .medium-5 {
    width: 41.66667%; }

  .medium-6 {
    width: 50%; }

  .medium-7 {
    width: 58.33333%; }

  .medium-8 {
    width: 66.66667%; }

  .medium-9 {
    width: 75%; }

  .medium-10 {
    width: 83.33333%; }

  .medium-11 {
    width: 91.66667%; }

  .medium-12 {
    width: 100%; }

  .medium-offset-0 {
    margin-left: 0 !important; }

  .medium-offset-1 {
    margin-left: 8.33333% !important; }

  .medium-offset-2 {
    margin-left: 16.66667% !important; }

  .medium-offset-3 {
    margin-left: 25% !important; }

  .medium-offset-4 {
    margin-left: 33.33333% !important; }

  .medium-offset-5 {
    margin-left: 41.66667% !important; }

  .medium-offset-6 {
    margin-left: 50% !important; }

  .medium-offset-7 {
    margin-left: 58.33333% !important; }

  .medium-offset-8 {
    margin-left: 66.66667% !important; }

  .medium-offset-9 {
    margin-left: 75% !important; }

  .medium-offset-10 {
    margin-left: 83.33333% !important; }

  .medium-offset-11 {
    margin-left: 91.66667% !important; }

  .medium-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto; }

  .column.medium-centered, .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  .column.medium-uncentered, .columns.medium-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0; }

  .column.medium-centered:last-child, .columns.medium-centered:last-child {
    float: none; }

  .column.medium-uncentered:last-child, .columns.medium-uncentered:last-child {
    float: left; }

  .column.medium-uncentered.opposite, .columns.medium-uncentered.opposite {
    float: right; }

  .zf-row.medium-collapse > .column, .zf-row.medium-collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .zf-row.medium-collapse .zf-row {
    margin-left: 0;
    margin-right: 0; }
  .zf-row.medium-uncollapse > .column, .zf-row.medium-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left; }

  .push-0 {
    position: relative;
    left: 0;
    right: auto; }

  .pull-0 {
    position: relative;
    right: 0;
    left: auto; }

  .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
 }

@media only screen and (min-width:64.0625em) {
  .large-push-0 {
    position: relative;
    left: 0;
    right: auto; }

  .large-pull-0 {
    position: relative;
    right: 0;
    left: auto; }

  .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  .column, .columns {
    position: relative;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left; }

  .large-1 {
    width: 8.33333%; }

  .large-2 {
    width: 16.66667%; }

  .large-3 {
    width: 25%; }

  .large-4 {
    width: 33.33333%; }

  .large-5 {
    width: 41.66667%; }

  .large-6 {
    width: 50%; }

  .large-7 {
    width: 58.33333%; }

  .large-8 {
    width: 66.66667%; }

  .large-9 {
    width: 75%; }

  .large-10 {
    width: 83.33333%; }

  .large-11 {
    width: 91.66667%; }

  .large-12 {
    width: 100%; }

  .large-offset-0 {
    margin-left: 0 !important; }

  .large-offset-1 {
    margin-left: 8.33333% !important; }

  .large-offset-2 {
    margin-left: 16.66667% !important; }

  .large-offset-3 {
    margin-left: 25% !important; }

  .large-offset-4 {
    margin-left: 33.33333% !important; }

  .large-offset-5 {
    margin-left: 41.66667% !important; }

  .large-offset-6 {
    margin-left: 50% !important; }

  .large-offset-7 {
    margin-left: 58.33333% !important; }

  .large-offset-8 {
    margin-left: 66.66667% !important; }

  .large-offset-9 {
    margin-left: 75% !important; }

  .large-offset-10 {
    margin-left: 83.33333% !important; }

  .large-offset-11 {
    margin-left: 91.66667% !important; }

  .large-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto; }

  .column.large-centered, .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  .column.large-uncentered, .columns.large-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0; }

  .column.large-centered:last-child, .columns.large-centered:last-child {
    float: none; }

  .column.large-uncentered:last-child, .columns.large-uncentered:last-child {
    float: left; }

  .column.large-uncentered.opposite, .columns.large-uncentered.opposite {
    float: right; }

  .zf-row.large-collapse > .column, .zf-row.large-collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .zf-row.large-collapse .zf-row {
    margin-left: 0;
    margin-right: 0; }
  .zf-row.large-uncollapse > .column, .zf-row.large-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left; }

  .push-0 {
    position: relative;
    left: 0;
    right: auto; }

  .pull-0 {
    position: relative;
    right: 0;
    left: auto; }

  .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }
 }

/*@include exports("global") {
    // Meta styles are a dependancy of the Javascript.
    // Used to provide media query values for javascript components.
    // Forward slash placed around everything to convince PhantomJS to read the value.
    @if $include-js-meta-styles {

        meta.foundation-version {
            font-family: "/{{VERSION}}/";
        }

        meta.foundation-mq-small {
            font-family: "/" + unquote($small-up) + "/";
            width: lower-bound($small-range);
        }

        meta.foundation-mq-small-only {
            font-family: "/" + unquote($small-only) + "/";
            width: lower-bound($small-range);
        }

        meta.foundation-mq-medium {
            font-family: "/" + unquote($medium-up) + "/";
            width: lower-bound($medium-range);
        }

        meta.foundation-mq-medium-only {
            font-family: "/" + unquote($medium-only) + "/";
            width: lower-bound($medium-range);
        }

        meta.foundation-mq-large {
            font-family: "/" + unquote($large-up) + "/";
            width: lower-bound($large-range);
        }

        meta.foundation-mq-large-only {
            font-family: "/" + unquote($large-only) + "/";
            width: lower-bound($large-range);
        }

        meta.foundation-mq-xlarge {
            font-family: "/" + unquote($xlarge-up) + "/";
            width: lower-bound($xlarge-range);
        }

        meta.foundation-mq-xlarge-only {
            font-family: "/" + unquote($xlarge-only) + "/";
            width: lower-bound($xlarge-range);
        }

        meta.foundation-mq-xxlarge {
            font-family: "/" + unquote($xxlarge-up) + "/";
            width: lower-bound($xxlarge-range);
        }

        meta.foundation-data-attribute-namespace {
            font-family: false;
        }
    }

    @if $include-html-global-classes {
        // Must be 100% for off canvas to work
        html, body {
            height: 100%;
        }
        // Set box-sizing globally to handle padding and border widths
        html {
            box-sizing: border-box;
        }

        *,
        *:before,
        *:after {
            @include box-sizing(inherit);
        }

        html,
        body {
            font-size: $base-font-size;
        }
        // Default body styles
        body {
            background: $body-bg;
            color: $body-font-color;
            cursor: $cursor-auto-value;
            font-family: $body-font-family;
            font-style: $body-font-style;
            font-weight: $body-font-weight;
            line-height: $base-line-height; // Set to $base-line-height to take on browser default of 150%
            margin: 0;
            padding: 0;
            position: relative;
        }

        a:hover {
            cursor: $cursor-pointer-value;
        }
        // Grid Defaults to get images and embeds to work properly
        img {
            max-width: 100%;
            height: auto;
        }

        img {
            -ms-interpolation-mode: bicubic;
        }

        #map_canvas,
        .map_canvas,
        .mqa-display {
            img,
            embed,
            object {
                max-width: none !important;
            }
        }
        // Miscellaneous useful HTML classes
        .left {
            float: left !important;
        }

        .right {
            float: right !important;
        }

        .clearfix {
            @include clearfix;
        }
        // Hide visually and from screen readers
        .hide {
            display: none;
        }
        // Hide visually and from screen readers, but maintain layout
        .invisible {
            visibility: hidden;
        }
        // Font smoothing
        // Antialiased font smoothing works best for light text on a dark background.
        // Apply to single elements instead of globally to body.
        // Note this only applies to webkit-based desktop browsers and Firefox 25 (and later) on the Mac.
        .antialiased {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        // Get rid of gap under images by making them display: inline-block; by default
        img {
            display: inline-block;
            vertical-align: middle;
        }
        //
        // Global resets for forms
        //
        // Make sure textarea takes on height automatically
        textarea {
            height: auto;
            min-height: 50px;
        }
        // Make select elements 100% width by default
        select {
            width: 100%;
        }
    }
}*/
/*@import 'grid';*/
.reveal-modal-bg {
  background: #FFFFFF;
  background: rgba(255, 255, 255, 0.45);
  bottom: 0;
  display: none;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1039;
  left: 0; }

.reveal-modal {
  border-radius: 3px;
  display: none;
  position: absolute;
  top: 10vh;
  visibility: hidden;
  width: 100%;
  z-index: 1040;
  left: 0;
  /*@media only screen and (min-width:40.0625em) and (max-width:64em) {
            min-height: 100vh;
            top: 0;
        }*/ }
  @media only screen and (max-width: 40em) {
    .reveal-modal {
      height: 100vh;
      min-height: 100vh;
      top: 0; } }
  .reveal-modal .column, .reveal-modal .columns {
    min-width: 0; }
  .reveal-modal > :first-child {
    margin-top: 0; }
  .reveal-modal > :last-child {
    margin-bottom: 0; }
  @media only screen and (min-width:64.0625em) {
    .reveal-modal {
      left: 0;
      margin: 0 auto;
      max-width: 62.5rem;
      right: 0;
      width: 80%; } }
  .reveal-modal .reveal-content {
    background-color: #FFFFFF;
    padding: 0;
    border: solid 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.4);
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 100vh; }
    @media only screen and (min-width:40.0625em) {
      .reveal-modal .reveal-content {
        top: 6.25rem; } }
    .reveal-modal .reveal-content .reveal-header {
      padding: 0 1.875rem;
      top: 0;
      border-bottom: 1px solid #e5e5e5; }
      .reveal-modal .reveal-content .reveal-header .title {
        font-size: large;
        font-weight: bold; }
    .reveal-modal .reveal-content .reveal-body {
      padding: 1.875rem; }
    .reveal-modal .reveal-content .reveal-footer {
      padding: 0 1.875rem;
      top: 0;
      border-top: 1px solid #e5e5e5; }
    .reveal-modal .reveal-content.radius {
      border-radius: 3px; }
    .reveal-modal .reveal-content.round {
      border-radius: 1000px; }
    .reveal-modal .reveal-content.reveal-collapse {
      padding: 0; }
  @media only screen and (min-width:64.0625em) {
    .reveal-modal.tiny {
      left: 0;
      margin: 0 auto;
      max-width: 30%;
      right: 0;
      width: 30%; } }
  @media only screen and (min-width:64.0625em) {
    .reveal-modal.small {
      left: 0;
      margin: 0 auto;
      max-width: 40%;
      right: 0;
      width: 40%; } }
  @media only screen and (min-width:64.0625em) {
    .reveal-modal.medium {
      left: 0;
      margin: 0 auto;
      max-width: 60%;
      right: 0;
      width: 60%; } }
  @media only screen and (min-width:64.0625em) {
    .reveal-modal.large {
      left: 0;
      margin: 0 auto;
      max-width: 70%;
      right: 0;
      width: 70%; } }
  @media only screen and (min-width:64.0625em) {
    .reveal-modal.xlarge {
      left: 0;
      margin: 0 auto;
      max-width: 75vw;
      right: 0;
      width: 75vw; } }
  .reveal-modal.full {
    height: 100vh;
    height: 100%;
    left: 0;
    margin-left: 0 !important;
    max-width: none !important;
    min-height: 100vh;
    top: 0; }
    @media only screen and (min-width:64.0625em) {
      .reveal-modal.full {
        left: 0;
        margin: 0 auto;
        max-width: 62.5rem;
        right: 0;
        width: 100%; } }
  .reveal-modal.toback {
    z-index: 1038; }
  .reveal-modal .close-reveal-modal {
    padding: 0 10px;
    color: #AAAAAA;
    cursor: pointer;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
    position: absolute;
    top: 0.625rem;
    right: 1.375rem;
    -webkit-transition: 0.3s ease-in-out all;
    -o-transition: 0.3s ease-in-out all;
    -moz-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all; }
    .reveal-modal .close-reveal-modal:hover {
      -webkit-transform: scale(1.3);
      -ms-transform: scale(1.3);
      -o-transform: scale(1.3);
      -moz-transform: scale(1.3);
      transform: scale(1.3);
      color: red; }

/*# sourceMappingURL=foundation.css.map */