@charset "UTF-8";
/*!
Theme Name: Echo Chicago Theme
Theme URI: http://www.ideamktg.com
Template: idea-framework
Author: Idea Marketing Group
Author URI: http://www.ideamktg.com
Description:
Version: 1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Tags: featured-images, fluid-layout, responsive-layout
Text Domain: ideafw
Domain Path: /languages
*/
/**
 * Vertical Align (VA) Middle SASS Mixins
 *
 * Example Usage:
 *
 * .va-container {
 *      @include va-container();
 *
 *      .va-content {
 *          @include va-content();
 *      }
 *  }
 *
 * <div class="va-container">
 *     <div class="va-content">
 *         <h6>Example Title</h6>
 *         <p>Example Content</p>
 *     </div>
 * </div>
 */
/**
 * Global settings
 */
/**
 * Font families are defined using the $fonts map and accessed via the font-family() function.
 * For example, if you wanted to access the font 'Open Sans', you would use font-family('open-sans')
 * The fonts used here must be setup in theme.config.php in order to be usable
 */
/**
 * Colors are defined using the $palette map and accessed via the palette() function.
 * For example, if you wanted to access the color blue, you would use palette('blue')
 * Colors could be nested as well and accessed via palette( 'key', 'color' )
 * The colors defined here will automagically create css ready classes for font and background colors
 */
/**
 * Breakpoints are used to specify when different screen styles are to take affect. Example Usage:
 *
 * @media ( max-width: $breakpoint-1 ) {
 *    .class {
 *        color: red;
 *    }
 * }
 *
 */
/*
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("library/fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("library/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("library/fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("library/fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("library/fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("library/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14286em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14286em;
  width: 2.14286em;
  top: 0.14286em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714em;
}

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: .3em;
}

.fa.fa-pull-right {
  margin-left: .3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: .3em;
}

.fa.pull-right {
  margin-left: .3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "";
}

.fa-music:before {
  content: "";
}

.fa-search:before {
  content: "";
}

.fa-envelope-o:before {
  content: "";
}

.fa-heart:before {
  content: "";
}

.fa-star:before {
  content: "";
}

.fa-star-o:before {
  content: "";
}

.fa-user:before {
  content: "";
}

.fa-film:before {
  content: "";
}

.fa-th-large:before {
  content: "";
}

.fa-th:before {
  content: "";
}

.fa-th-list:before {
  content: "";
}

.fa-check:before {
  content: "";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "";
}

.fa-search-plus:before {
  content: "";
}

.fa-search-minus:before {
  content: "";
}

.fa-power-off:before {
  content: "";
}

.fa-signal:before {
  content: "";
}

.fa-gear:before,
.fa-cog:before {
  content: "";
}

.fa-trash-o:before {
  content: "";
}

.fa-home:before {
  content: "";
}

.fa-file-o:before {
  content: "";
}

.fa-clock-o:before {
  content: "";
}

.fa-road:before {
  content: "";
}

.fa-download:before {
  content: "";
}

.fa-arrow-circle-o-down:before {
  content: "";
}

.fa-arrow-circle-o-up:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-play-circle-o:before {
  content: "";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "";
}

.fa-refresh:before {
  content: "";
}

.fa-list-alt:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

.fa-volume-off:before {
  content: "";
}

.fa-volume-down:before {
  content: "";
}

.fa-volume-up:before {
  content: "";
}

.fa-qrcode:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-book:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-print:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

.fa-font:before {
  content: "";
}

.fa-bold:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

.fa-text-height:before {
  content: "";
}

.fa-text-width:before {
  content: "";
}

.fa-align-left:before {
  content: "";
}

.fa-align-center:before {
  content: "";
}

.fa-align-right:before {
  content: "";
}

.fa-align-justify:before {
  content: "";
}

.fa-list:before {
  content: "";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "";
}

.fa-indent:before {
  content: "";
}

.fa-video-camera:before {
  content: "";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "";
}

.fa-pencil:before {
  content: "";
}

.fa-map-marker:before {
  content: "";
}

.fa-adjust:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "";
}

.fa-share-square-o:before {
  content: "";
}

.fa-check-square-o:before {
  content: "";
}

.fa-arrows:before {
  content: "";
}

.fa-step-backward:before {
  content: "";
}

.fa-fast-backward:before {
  content: "";
}

.fa-backward:before {
  content: "";
}

.fa-play:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

.fa-fast-forward:before {
  content: "";
}

.fa-step-forward:before {
  content: "";
}

.fa-eject:before {
  content: "";
}

.fa-chevron-left:before {
  content: "";
}

.fa-chevron-right:before {
  content: "";
}

.fa-plus-circle:before {
  content: "";
}

.fa-minus-circle:before {
  content: "";
}

.fa-times-circle:before {
  content: "";
}

.fa-check-circle:before {
  content: "";
}

.fa-question-circle:before {
  content: "";
}

.fa-info-circle:before {
  content: "";
}

.fa-crosshairs:before {
  content: "";
}

.fa-times-circle-o:before {
  content: "";
}

.fa-check-circle-o:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

.fa-arrow-left:before {
  content: "";
}

.fa-arrow-right:before {
  content: "";
}

.fa-arrow-up:before {
  content: "";
}

.fa-arrow-down:before {
  content: "";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "";
}

.fa-expand:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

.fa-minus:before {
  content: "";
}

.fa-asterisk:before {
  content: "";
}

.fa-exclamation-circle:before {
  content: "";
}

.fa-gift:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-eye:before {
  content: "";
}

.fa-eye-slash:before {
  content: "";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "";
}

.fa-plane:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

.fa-chevron-up:before {
  content: "";
}

.fa-chevron-down:before {
  content: "";
}

.fa-retweet:before {
  content: "";
}

.fa-shopping-cart:before {
  content: "";
}

.fa-folder:before {
  content: "";
}

.fa-folder-open:before {
  content: "";
}

.fa-arrows-v:before {
  content: "";
}

.fa-arrows-h:before {
  content: "";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-camera-retro:before {
  content: "";
}

.fa-key:before {
  content: "";
}

.fa-gears:before,
.fa-cogs:before {
  content: "";
}

.fa-comments:before {
  content: "";
}

.fa-thumbs-o-up:before {
  content: "";
}

.fa-thumbs-o-down:before {
  content: "";
}

.fa-star-half:before {
  content: "";
}

.fa-heart-o:before {
  content: "";
}

.fa-sign-out:before {
  content: "";
}

.fa-linkedin-square:before {
  content: "";
}

.fa-thumb-tack:before {
  content: "";
}

.fa-external-link:before {
  content: "";
}

.fa-sign-in:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-github-square:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-lemon-o:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-square-o:before {
  content: "";
}

.fa-bookmark-o:before {
  content: "";
}

.fa-phone-square:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

.fa-credit-card:before {
  content: "";
}

.fa-feed:before,
.fa-rss:before {
  content: "";
}

.fa-hdd-o:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bell:before {
  content: "";
}

.fa-certificate:before {
  content: "";
}

.fa-hand-o-right:before {
  content: "";
}

.fa-hand-o-left:before {
  content: "";
}

.fa-hand-o-up:before {
  content: "";
}

.fa-hand-o-down:before {
  content: "";
}

.fa-arrow-circle-left:before {
  content: "";
}

.fa-arrow-circle-right:before {
  content: "";
}

.fa-arrow-circle-up:before {
  content: "";
}

.fa-arrow-circle-down:before {
  content: "";
}

.fa-globe:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-tasks:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

.fa-arrows-alt:before {
  content: "";
}

.fa-group:before,
.fa-users:before {
  content: "";
}

.fa-chain:before,
.fa-link:before {
  content: "";
}

.fa-cloud:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-cut:before,
.fa-scissors:before {
  content: "";
}

.fa-copy:before,
.fa-files-o:before {
  content: "";
}

.fa-paperclip:before {
  content: "";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "";
}

.fa-square:before {
  content: "";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "";
}

.fa-list-ul:before {
  content: "";
}

.fa-list-ol:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-table:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

.fa-pinterest-square:before {
  content: "";
}

.fa-google-plus-square:before {
  content: "";
}

.fa-google-plus:before {
  content: "";
}

.fa-money:before {
  content: "";
}

.fa-caret-down:before {
  content: "";
}

.fa-caret-up:before {
  content: "";
}

.fa-caret-left:before {
  content: "";
}

.fa-caret-right:before {
  content: "";
}

.fa-columns:before {
  content: "";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "";
}

.fa-legal:before,
.fa-gavel:before {
  content: "";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "";
}

.fa-comment-o:before {
  content: "";
}

.fa-comments-o:before {
  content: "";
}

.fa-flash:before,
.fa-bolt:before {
  content: "";
}

.fa-sitemap:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "";
}

.fa-lightbulb-o:before {
  content: "";
}

.fa-exchange:before {
  content: "";
}

.fa-cloud-download:before {
  content: "";
}

.fa-cloud-upload:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-stethoscope:before {
  content: "";
}

.fa-suitcase:before {
  content: "";
}

.fa-bell-o:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-cutlery:before {
  content: "";
}

.fa-file-text-o:before {
  content: "";
}

.fa-building-o:before {
  content: "";
}

.fa-hospital-o:before {
  content: "";
}

.fa-ambulance:before {
  content: "";
}

.fa-medkit:before {
  content: "";
}

.fa-fighter-jet:before {
  content: "";
}

.fa-beer:before {
  content: "";
}

.fa-h-square:before {
  content: "";
}

.fa-plus-square:before {
  content: "";
}

.fa-angle-double-left:before {
  content: "";
}

.fa-angle-double-right:before {
  content: "";
}

.fa-angle-double-up:before {
  content: "";
}

.fa-angle-double-down:before {
  content: "";
}

.fa-angle-left:before {
  content: "";
}

.fa-angle-right:before {
  content: "";
}

.fa-angle-up:before {
  content: "";
}

.fa-angle-down:before {
  content: "";
}

.fa-desktop:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-tablet:before {
  content: "";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "";
}

.fa-circle-o:before {
  content: "";
}

.fa-quote-left:before {
  content: "";
}

.fa-quote-right:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "";
}

.fa-github-alt:before {
  content: "";
}

.fa-folder-o:before {
  content: "";
}

.fa-folder-open-o:before {
  content: "";
}

.fa-smile-o:before {
  content: "";
}

.fa-frown-o:before {
  content: "";
}

.fa-meh-o:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-keyboard-o:before {
  content: "";
}

.fa-flag-o:before {
  content: "";
}

.fa-flag-checkered:before {
  content: "";
}

.fa-terminal:before {
  content: "";
}

.fa-code:before {
  content: "";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "";
}

.fa-location-arrow:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

.fa-code-fork:before {
  content: "";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "";
}

.fa-question:before {
  content: "";
}

.fa-info:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-subscript:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-puzzle-piece:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

.fa-microphone-slash:before {
  content: "";
}

.fa-shield:before {
  content: "";
}

.fa-calendar-o:before {
  content: "";
}

.fa-fire-extinguisher:before {
  content: "";
}

.fa-rocket:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

.fa-chevron-circle-left:before {
  content: "";
}

.fa-chevron-circle-right:before {
  content: "";
}

.fa-chevron-circle-up:before {
  content: "";
}

.fa-chevron-circle-down:before {
  content: "";
}

.fa-html5:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

.fa-ellipsis-h:before {
  content: "";
}

.fa-ellipsis-v:before {
  content: "";
}

.fa-rss-square:before {
  content: "";
}

.fa-play-circle:before {
  content: "";
}

.fa-ticket:before {
  content: "";
}

.fa-minus-square:before {
  content: "";
}

.fa-minus-square-o:before {
  content: "";
}

.fa-level-up:before {
  content: "";
}

.fa-level-down:before {
  content: "";
}

.fa-check-square:before {
  content: "";
}

.fa-pencil-square:before {
  content: "";
}

.fa-external-link-square:before {
  content: "";
}

.fa-share-square:before {
  content: "";
}

.fa-compass:before {
  content: "";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "";
}

.fa-euro:before,
.fa-eur:before {
  content: "";
}

.fa-gbp:before {
  content: "";
}

.fa-dollar:before,
.fa-usd:before {
  content: "";
}

.fa-rupee:before,
.fa-inr:before {
  content: "";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "";
}

.fa-won:before,
.fa-krw:before {
  content: "";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "";
}

.fa-file:before {
  content: "";
}

.fa-file-text:before {
  content: "";
}

.fa-sort-alpha-asc:before {
  content: "";
}

.fa-sort-alpha-desc:before {
  content: "";
}

.fa-sort-amount-asc:before {
  content: "";
}

.fa-sort-amount-desc:before {
  content: "";
}

.fa-sort-numeric-asc:before {
  content: "";
}

.fa-sort-numeric-desc:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-youtube-play:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-stack-overflow:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-bitbucket:before {
  content: "";
}

.fa-bitbucket-square:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-long-arrow-down:before {
  content: "";
}

.fa-long-arrow-up:before {
  content: "";
}

.fa-long-arrow-left:before {
  content: "";
}

.fa-long-arrow-right:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "";
}

.fa-sun-o:before {
  content: "";
}

.fa-moon-o:before {
  content: "";
}

.fa-archive:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-vk:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-stack-exchange:before {
  content: "";
}

.fa-arrow-circle-o-right:before {
  content: "";
}

.fa-arrow-circle-o-left:before {
  content: "";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "";
}

.fa-dot-circle-o:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "";
}

.fa-plus-square-o:before {
  content: "";
}

.fa-space-shuttle:before {
  content: "";
}

.fa-slack:before {
  content: "";
}

.fa-envelope-square:before {
  content: "";
}

.fa-wordpress:before {
  content: "";
}

.fa-openid:before {
  content: "";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "";
}

.fa-yahoo:before {
  content: "";
}

.fa-google:before {
  content: "";
}

.fa-reddit:before {
  content: "";
}

.fa-reddit-square:before {
  content: "";
}

.fa-stumbleupon-circle:before {
  content: "";
}

.fa-stumbleupon:before {
  content: "";
}

.fa-delicious:before {
  content: "";
}

.fa-digg:before {
  content: "";
}

.fa-pied-piper-pp:before {
  content: "";
}

.fa-pied-piper-alt:before {
  content: "";
}

.fa-drupal:before {
  content: "";
}

.fa-joomla:before {
  content: "";
}

.fa-language:before {
  content: "";
}

.fa-fax:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-child:before {
  content: "";
}

.fa-paw:before {
  content: "";
}

.fa-spoon:before {
  content: "";
}

.fa-cube:before {
  content: "";
}

.fa-cubes:before {
  content: "";
}

.fa-behance:before {
  content: "";
}

.fa-behance-square:before {
  content: "";
}

.fa-steam:before {
  content: "";
}

.fa-steam-square:before {
  content: "";
}

.fa-recycle:before {
  content: "";
}

.fa-automobile:before,
.fa-car:before {
  content: "";
}

.fa-cab:before,
.fa-taxi:before {
  content: "";
}

.fa-tree:before {
  content: "";
}

.fa-spotify:before {
  content: "";
}

.fa-deviantart:before {
  content: "";
}

.fa-soundcloud:before {
  content: "";
}

.fa-database:before {
  content: "";
}

.fa-file-pdf-o:before {
  content: "";
}

.fa-file-word-o:before {
  content: "";
}

.fa-file-excel-o:before {
  content: "";
}

.fa-file-powerpoint-o:before {
  content: "";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "";
}

.fa-file-code-o:before {
  content: "";
}

.fa-vine:before {
  content: "";
}

.fa-codepen:before {
  content: "";
}

.fa-jsfiddle:before {
  content: "";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "";
}

.fa-circle-o-notch:before {
  content: "";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "";
}

.fa-ge:before,
.fa-empire:before {
  content: "";
}

.fa-git-square:before {
  content: "";
}

.fa-git:before {
  content: "";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "";
}

.fa-tencent-weibo:before {
  content: "";
}

.fa-qq:before {
  content: "";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "";
}

.fa-history:before {
  content: "";
}

.fa-circle-thin:before {
  content: "";
}

.fa-header:before {
  content: "";
}

.fa-paragraph:before {
  content: "";
}

.fa-sliders:before {
  content: "";
}

.fa-share-alt:before {
  content: "";
}

.fa-share-alt-square:before {
  content: "";
}

.fa-bomb:before {
  content: "";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "";
}

.fa-tty:before {
  content: "";
}

.fa-binoculars:before {
  content: "";
}

.fa-plug:before {
  content: "";
}

.fa-slideshare:before {
  content: "";
}

.fa-twitch:before {
  content: "";
}

.fa-yelp:before {
  content: "";
}

.fa-newspaper-o:before {
  content: "";
}

.fa-wifi:before {
  content: "";
}

.fa-calculator:before {
  content: "";
}

.fa-paypal:before {
  content: "";
}

.fa-google-wallet:before {
  content: "";
}

.fa-cc-visa:before {
  content: "";
}

.fa-cc-mastercard:before {
  content: "";
}

.fa-cc-discover:before {
  content: "";
}

.fa-cc-amex:before {
  content: "";
}

.fa-cc-paypal:before {
  content: "";
}

.fa-cc-stripe:before {
  content: "";
}

.fa-bell-slash:before {
  content: "";
}

.fa-bell-slash-o:before {
  content: "";
}

.fa-trash:before {
  content: "";
}

.fa-copyright:before {
  content: "";
}

.fa-at:before {
  content: "";
}

.fa-eyedropper:before {
  content: "";
}

.fa-paint-brush:before {
  content: "";
}

.fa-birthday-cake:before {
  content: "";
}

.fa-area-chart:before {
  content: "";
}

.fa-pie-chart:before {
  content: "";
}

.fa-line-chart:before {
  content: "";
}

.fa-lastfm:before {
  content: "";
}

.fa-lastfm-square:before {
  content: "";
}

.fa-toggle-off:before {
  content: "";
}

.fa-toggle-on:before {
  content: "";
}

.fa-bicycle:before {
  content: "";
}

.fa-bus:before {
  content: "";
}

.fa-ioxhost:before {
  content: "";
}

.fa-angellist:before {
  content: "";
}

.fa-cc:before {
  content: "";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "";
}

.fa-meanpath:before {
  content: "";
}

.fa-buysellads:before {
  content: "";
}

.fa-connectdevelop:before {
  content: "";
}

.fa-dashcube:before {
  content: "";
}

.fa-forumbee:before {
  content: "";
}

.fa-leanpub:before {
  content: "";
}

.fa-sellsy:before {
  content: "";
}

.fa-shirtsinbulk:before {
  content: "";
}

.fa-simplybuilt:before {
  content: "";
}

.fa-skyatlas:before {
  content: "";
}

.fa-cart-plus:before {
  content: "";
}

.fa-cart-arrow-down:before {
  content: "";
}

.fa-diamond:before {
  content: "";
}

.fa-ship:before {
  content: "";
}

.fa-user-secret:before {
  content: "";
}

.fa-motorcycle:before {
  content: "";
}

.fa-street-view:before {
  content: "";
}

.fa-heartbeat:before {
  content: "";
}

.fa-venus:before {
  content: "";
}

.fa-mars:before {
  content: "";
}

.fa-mercury:before {
  content: "";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "";
}

.fa-transgender-alt:before {
  content: "";
}

.fa-venus-double:before {
  content: "";
}

.fa-mars-double:before {
  content: "";
}

.fa-venus-mars:before {
  content: "";
}

.fa-mars-stroke:before {
  content: "";
}

.fa-mars-stroke-v:before {
  content: "";
}

.fa-mars-stroke-h:before {
  content: "";
}

.fa-neuter:before {
  content: "";
}

.fa-genderless:before {
  content: "";
}

.fa-facebook-official:before {
  content: "";
}

.fa-pinterest-p:before {
  content: "";
}

.fa-whatsapp:before {
  content: "";
}

.fa-server:before {
  content: "";
}

.fa-user-plus:before {
  content: "";
}

.fa-user-times:before {
  content: "";
}

.fa-hotel:before,
.fa-bed:before {
  content: "";
}

.fa-viacoin:before {
  content: "";
}

.fa-train:before {
  content: "";
}

.fa-subway:before {
  content: "";
}

.fa-medium:before {
  content: "";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "";
}

.fa-optin-monster:before {
  content: "";
}

.fa-opencart:before {
  content: "";
}

.fa-expeditedssl:before {
  content: "";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "";
}

.fa-mouse-pointer:before {
  content: "";
}

.fa-i-cursor:before {
  content: "";
}

.fa-object-group:before {
  content: "";
}

.fa-object-ungroup:before {
  content: "";
}

.fa-sticky-note:before {
  content: "";
}

.fa-sticky-note-o:before {
  content: "";
}

.fa-cc-jcb:before {
  content: "";
}

.fa-cc-diners-club:before {
  content: "";
}

.fa-clone:before {
  content: "";
}

.fa-balance-scale:before {
  content: "";
}

.fa-hourglass-o:before {
  content: "";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "";
}

.fa-hourglass:before {
  content: "";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "";
}

.fa-hand-scissors-o:before {
  content: "";
}

.fa-hand-lizard-o:before {
  content: "";
}

.fa-hand-spock-o:before {
  content: "";
}

.fa-hand-pointer-o:before {
  content: "";
}

.fa-hand-peace-o:before {
  content: "";
}

.fa-trademark:before {
  content: "";
}

.fa-registered:before {
  content: "";
}

.fa-creative-commons:before {
  content: "";
}

.fa-gg:before {
  content: "";
}

.fa-gg-circle:before {
  content: "";
}

.fa-tripadvisor:before {
  content: "";
}

.fa-odnoklassniki:before {
  content: "";
}

.fa-odnoklassniki-square:before {
  content: "";
}

.fa-get-pocket:before {
  content: "";
}

.fa-wikipedia-w:before {
  content: "";
}

.fa-safari:before {
  content: "";
}

.fa-chrome:before {
  content: "";
}

.fa-firefox:before {
  content: "";
}

.fa-opera:before {
  content: "";
}

.fa-internet-explorer:before {
  content: "";
}

.fa-tv:before,
.fa-television:before {
  content: "";
}

.fa-contao:before {
  content: "";
}

.fa-500px:before {
  content: "";
}

.fa-amazon:before {
  content: "";
}

.fa-calendar-plus-o:before {
  content: "";
}

.fa-calendar-minus-o:before {
  content: "";
}

.fa-calendar-times-o:before {
  content: "";
}

.fa-calendar-check-o:before {
  content: "";
}

.fa-industry:before {
  content: "";
}

.fa-map-pin:before {
  content: "";
}

.fa-map-signs:before {
  content: "";
}

.fa-map-o:before {
  content: "";
}

.fa-map:before {
  content: "";
}

.fa-commenting:before {
  content: "";
}

.fa-commenting-o:before {
  content: "";
}

.fa-houzz:before {
  content: "";
}

.fa-vimeo:before {
  content: "";
}

.fa-black-tie:before {
  content: "";
}

.fa-fonticons:before {
  content: "";
}

.fa-reddit-alien:before {
  content: "";
}

.fa-edge:before {
  content: "";
}

.fa-credit-card-alt:before {
  content: "";
}

.fa-codiepie:before {
  content: "";
}

.fa-modx:before {
  content: "";
}

.fa-fort-awesome:before {
  content: "";
}

.fa-usb:before {
  content: "";
}

.fa-product-hunt:before {
  content: "";
}

.fa-mixcloud:before {
  content: "";
}

.fa-scribd:before {
  content: "";
}

.fa-pause-circle:before {
  content: "";
}

.fa-pause-circle-o:before {
  content: "";
}

.fa-stop-circle:before {
  content: "";
}

.fa-stop-circle-o:before {
  content: "";
}

.fa-shopping-bag:before {
  content: "";
}

.fa-shopping-basket:before {
  content: "";
}

.fa-hashtag:before {
  content: "";
}

.fa-bluetooth:before {
  content: "";
}

.fa-bluetooth-b:before {
  content: "";
}

.fa-percent:before {
  content: "";
}

.fa-gitlab:before {
  content: "";
}

.fa-wpbeginner:before {
  content: "";
}

.fa-wpforms:before {
  content: "";
}

.fa-envira:before {
  content: "";
}

.fa-universal-access:before {
  content: "";
}

.fa-wheelchair-alt:before {
  content: "";
}

.fa-question-circle-o:before {
  content: "";
}

.fa-blind:before {
  content: "";
}

.fa-audio-description:before {
  content: "";
}

.fa-volume-control-phone:before {
  content: "";
}

.fa-braille:before {
  content: "";
}

.fa-assistive-listening-systems:before {
  content: "";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "";
}

.fa-glide:before {
  content: "";
}

.fa-glide-g:before {
  content: "";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "";
}

.fa-low-vision:before {
  content: "";
}

.fa-viadeo:before {
  content: "";
}

.fa-viadeo-square:before {
  content: "";
}

.fa-snapchat:before {
  content: "";
}

.fa-snapchat-ghost:before {
  content: "";
}

.fa-snapchat-square:before {
  content: "";
}

.fa-pied-piper:before {
  content: "";
}

.fa-first-order:before {
  content: "";
}

.fa-yoast:before {
  content: "";
}

.fa-themeisle:before {
  content: "";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "";
}

.fa-handshake-o:before {
  content: "";
}

.fa-envelope-open:before {
  content: "";
}

.fa-envelope-open-o:before {
  content: "";
}

.fa-linode:before {
  content: "";
}

.fa-address-book:before {
  content: "";
}

.fa-address-book-o:before {
  content: "";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "";
}

.fa-user-circle:before {
  content: "";
}

.fa-user-circle-o:before {
  content: "";
}

.fa-user-o:before {
  content: "";
}

.fa-id-badge:before {
  content: "";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "";
}

.fa-quora:before {
  content: "";
}

.fa-free-code-camp:before {
  content: "";
}

.fa-telegram:before {
  content: "";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "";
}

.fa-shower:before {
  content: "";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "";
}

.fa-podcast:before {
  content: "";
}

.fa-window-maximize:before {
  content: "";
}

.fa-window-minimize:before {
  content: "";
}

.fa-window-restore:before {
  content: "";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "";
}

.fa-bandcamp:before {
  content: "";
}

.fa-grav:before {
  content: "";
}

.fa-etsy:before {
  content: "";
}

.fa-imdb:before {
  content: "";
}

.fa-ravelry:before {
  content: "";
}

.fa-eercast:before {
  content: "";
}

.fa-microchip:before {
  content: "";
}

.fa-snowflake-o:before {
  content: "";
}

.fa-superpowers:before {
  content: "";
}

.fa-wpexplorer:before {
  content: "";
}

.fa-meetup:before {
  content: "";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/* Global Reset
-------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  line-height: 1;
}

html {
  overflow: auto;
  overflow-x: hidden;
  overflow-y: auto;
  background: #8c0f00;
}

body {
  overflow: visible;
  margin: 0;
  padding: 0;
  line-height: 1;
  color: #333333;
  background: #ffffff;
  font-family: Open Sans, sans-serif;
  font-size: 15px;
}

/* Globalized elements
-------------------------------------------------------------- */
article, aside, details, figcaption, figure,
main, footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul, dl, blockquote, pre, table, p,
h1, h2, h3, h4, h5, h6, hr {
  margin: 0 0 20px;
}

*, *:before, *:after {
  outline: none;
}

/* Elements with border-box model
-------------------------------------------------------------- */
input,
textarea,
select,
button,
img {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* General element styles
-------------------------------------------------------------- */
a {
  color: #800000;
  font-size: inherit;
  font-family: inherit;
  text-decoration: none;
}

a:hover {
  color: #0059b3;
}

a:active {
  color: #0059b3;
}

a:focus {
  outline: 1px dotted #666;
}

h1, h2, h3, h4, h5, h6 {
  color: #8c0f00;
  font-family: Montserrat, sans-serif;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
}

h1.line, h2.line, h3.line, h4.line, h5.line, h6.line {
  position: relative;
}

h1.line:after, h2.line:after, h3.line:after, h4.line:after, h5.line:after, h6.line:after {
  content: '';
  position: absolute;
  top: 100%;
  left: -10%;
  right: 35%;
  height: 3px;
  background: #8c0f00;
}

h1 {
  font-size: 2.875em;
  margin-bottom: 0;
}

h2 {
  font-size: 1.500em;
}

h3 {
  font-size: 1.400em;
}

h4 {
  font-size: 1.300em;
}

h5 {
  font-size: 1.200em;
}

h6 {
  font-size: 1.100em;
}

::selection {
  color: #ffffff;
  background: #1a8cff;
}

::-moz-selection {
  color: #ffffff;
  background: #1a8cff;
}

img {
  max-width: 100%;
  height: auto;
}

ol, ul {
  margin-left: 10px;
  padding-left: 10px;
}

ol li, ul li {
  font-size: inherit;
  line-height: 1.5;
}

ol ol, ol ul, ul ol, ul ul {
  margin-bottom: 0;
}

dl {
  margin: 0 0 20px;
  padding: 0;
  overflow: hidden;
}

dl dt, dl dd {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: 1.5;
}

dl dt {
  float: left;
  clear: left;
  padding: 0;
  width: 100px;
  text-align: left;
  font-weight: 600;
  color: inherit;
}

dl dt:after {
  content: none;
}

dl dd {
  margin-left: 120px;
}

dl dd:after {
  content: "";
  display: table;
  clear: both;
}

blockquote {
  quotes: none;
  position: relative;
  padding: 20px;
  background: #d6d6ce;
  color: #f2f2f2;
}

blockquote p {
  margin: 0;
  padding: 0;
}

blockquote strong,
blockquote cite {
  display: block;
  margin: 5px 0 0 0;
  color: #333333;
  line-height: 1.5;
  font-style: normal;
  font-weight: bold;
  white-space: nowrap;
}

blockquote:before, blockquote:after {
  content: '';
  content: none;
}

blockquote > *:last-child {
  margin-bottom: 0;
}

blockquote,
blockquote > p,
q {
  font-style: italic;
  color: #737373;
}

q {
  padding: 0.3em 0.5em;
  background: #ffffff;
}

p,
address {
  font-size: inherit;
  line-height: 1.6 !important;
  color: inherit;
}

p:empty {
  display: none;
}

hr {
  display: block;
  border: none;
  height: 1px;
  border: none;
  background: #333333;
}

strong, em {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

pre, code {
  font-family: Consolas, Courier New, Courier, monospace;
  font-size: inherit;
  font-weight: 300;
}

pre {
  overflow: auto;
  padding: 15px;
  background: #d6d6ce;
  color: #333333;
  font-size: 12px;
  border-left: 5px solid #800000;
  line-height: 1.3;
  text-align: left;
}

code {
  padding: 5px 10px;
  background: #ffffff;
}

/* Table styles
-------------------------------------------------------------- */
table {
  display: table;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1em;
}

table caption {
  padding: 12px 10px;
  margin: 0;
  background: #333333;
  color: #ffffff;
  text-align: left;
  font-size: 1.1em;
  line-height: 1.4;
}

table tr {
  margin: 0;
  padding: 0;
}

table tr th,
table tr td {
  padding: 10px;
  text-align: left;
  font-size: 1em;
  line-height: 1.4;
  border: 1px solid #e6e6e6;
  vertical-align: middle;
}

table tr th {
  color: inherit;
  font-weight: 600;
}

table tr td {
  color: inherit;
}

table thead tr th,
table thead tr td {
  background: #8c0f00;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
}

table tbody tr:nth-child(odd) th {
  background: #ffffff;
}

table tbody tr:nth-child(odd) td {
  background: whitesmoke;
}

table tbody tr:nth-child(even) th {
  background: #ffffff;
}

table tbody tr:nth-child(even) td {
  background: #fcfcfc;
}

/**
 * This script will generate fully resposive grids based on the settings below.
 *
 * $grid-margins: The amount of space (in percent) between grid elements. Default is 1.5%
 * $grid-base-cols: The number of columns to base the grid system after. Default is 12
 * $grid-precision: The number of decimals to round the calculations to. Default is 3
 *
 */
/**
 * Begin style output here
 */
.row {
  margin: 0;
  margin-left: -1.5%;
  margin-right: -1.5%;
  padding: 0;
  clear: both;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.row > [class*="col-"],
.row > [class*="grid-"] {
  float: left;
  clear: none;
  margin-top: 0;
  margin-right: 1.5%;
  margin-bottom: 3%;
  margin-left: 1.5%;
  padding: 0;
  list-style: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.row > [class*="col-"] > *:last-child,
.row > [class*="grid-"] > *:last-child {
  margin-bottom: 0;
}

.row.no-bottom-margins,
.row.no-bottom-margins > * {
  margin-bottom: 0;
}

.row > .col-full {
  width: 97%;
}

.row > .col-12 {
  width: 47%;
}

.row > .col-13 {
  width: 30.333%;
}

.row > .col-23 {
  width: 63.666%;
}

.row > .col-14 {
  width: 22%;
}

.row > .col-34 {
  width: 72%;
}

.row > .col-15 {
  width: 17%;
}

.row > .col-25 {
  width: 37%;
}

.row > .col-35 {
  width: 57%;
}

.row > .col-45 {
  width: 77%;
}

.row > .grid-1 {
  width: 5.333%;
}

.row > .grid-2 {
  width: 13.666%;
}

.row > .grid-3 {
  width: 22%;
}

.row > .grid-4 {
  width: 30.333%;
}

.row > .grid-5 {
  width: 38.666%;
}

.row > .grid-6 {
  width: 47%;
}

.row > .grid-7 {
  width: 55.333%;
}

.row > .grid-8 {
  width: 63.666%;
}

.row > .grid-9 {
  width: 72%;
}

.row > .grid-10 {
  width: 80.333%;
}

.row > .grid-11 {
  width: 88.666%;
}

.row > .grid-12 {
  width: 97%;
}

@media (max-width: 1024px) {
  .row > .lg-col-full {
    width: 97%;
  }
  .row > .lg-col-12 {
    width: 47%;
  }
  .row > .lg-col-13 {
    width: 30.333%;
  }
  .row > .lg-col-23 {
    width: 63.666%;
  }
  .row > .lg-col-14 {
    width: 22%;
  }
  .row > .lg-col-34 {
    width: 72%;
  }
  .row > .lg-col-15 {
    width: 17%;
  }
  .row > .lg-col-25 {
    width: 37%;
  }
  .row > .lg-col-35 {
    width: 57%;
  }
  .row > .lg-col-45 {
    width: 77%;
  }
  .row > .lg-grid-1 {
    width: 5.333%;
  }
  .row > .lg-grid-2 {
    width: 13.666%;
  }
  .row > .lg-grid-3 {
    width: 22%;
  }
  .row > .lg-grid-4 {
    width: 30.333%;
  }
  .row > .lg-grid-5 {
    width: 38.666%;
  }
  .row > .lg-grid-6 {
    width: 47%;
  }
  .row > .lg-grid-7 {
    width: 55.333%;
  }
  .row > .lg-grid-8 {
    width: 63.666%;
  }
  .row > .lg-grid-9 {
    width: 72%;
  }
  .row > .lg-grid-10 {
    width: 80.333%;
  }
  .row > .lg-grid-11 {
    width: 88.666%;
  }
  .row > .lg-grid-12 {
    width: 97%;
  }
}

@media (max-width: 768px) {
  .row > .md-col-full {
    width: 97%;
  }
  .row > .md-col-12 {
    width: 47%;
  }
  .row > .md-col-13 {
    width: 30.333%;
  }
  .row > .md-col-23 {
    width: 63.666%;
  }
  .row > .md-col-14 {
    width: 22%;
  }
  .row > .md-col-34 {
    width: 72%;
  }
  .row > .md-col-15 {
    width: 17%;
  }
  .row > .md-col-25 {
    width: 37%;
  }
  .row > .md-col-35 {
    width: 57%;
  }
  .row > .md-col-45 {
    width: 77%;
  }
  .row > .md-grid-1 {
    width: 5.333%;
  }
  .row > .md-grid-2 {
    width: 13.666%;
  }
  .row > .md-grid-3 {
    width: 22%;
  }
  .row > .md-grid-4 {
    width: 30.333%;
  }
  .row > .md-grid-5 {
    width: 38.666%;
  }
  .row > .md-grid-6 {
    width: 47%;
  }
  .row > .md-grid-7 {
    width: 55.333%;
  }
  .row > .md-grid-8 {
    width: 63.666%;
  }
  .row > .md-grid-9 {
    width: 72%;
  }
  .row > .md-grid-10 {
    width: 80.333%;
  }
  .row > .md-grid-11 {
    width: 88.666%;
  }
  .row > .md-grid-12 {
    width: 97%;
  }
}

@media (max-width: 640px) {
  .row > .sm-col-full {
    width: 97%;
  }
  .row > .sm-col-12 {
    width: 47%;
  }
  .row > .sm-col-13 {
    width: 30.333%;
  }
  .row > .sm-col-23 {
    width: 63.666%;
  }
  .row > .sm-col-14 {
    width: 22%;
  }
  .row > .sm-col-34 {
    width: 72%;
  }
  .row > .sm-col-15 {
    width: 17%;
  }
  .row > .sm-col-25 {
    width: 37%;
  }
  .row > .sm-col-35 {
    width: 57%;
  }
  .row > .sm-col-45 {
    width: 77%;
  }
  .row > .sm-grid-1 {
    width: 5.333%;
  }
  .row > .sm-grid-2 {
    width: 13.666%;
  }
  .row > .sm-grid-3 {
    width: 22%;
  }
  .row > .sm-grid-4 {
    width: 30.333%;
  }
  .row > .sm-grid-5 {
    width: 38.666%;
  }
  .row > .sm-grid-6 {
    width: 47%;
  }
  .row > .sm-grid-7 {
    width: 55.333%;
  }
  .row > .sm-grid-8 {
    width: 63.666%;
  }
  .row > .sm-grid-9 {
    width: 72%;
  }
  .row > .sm-grid-10 {
    width: 80.333%;
  }
  .row > .sm-grid-11 {
    width: 88.666%;
  }
  .row > .sm-grid-12 {
    width: 97%;
  }
}

@media (max-width: 480px) {
  .row > .xs-col-full {
    width: 97%;
  }
  .row > .xs-col-12 {
    width: 47%;
  }
  .row > .xs-col-13 {
    width: 30.333%;
  }
  .row > .xs-col-23 {
    width: 63.666%;
  }
  .row > .xs-col-14 {
    width: 22%;
  }
  .row > .xs-col-34 {
    width: 72%;
  }
  .row > .xs-col-15 {
    width: 17%;
  }
  .row > .xs-col-25 {
    width: 37%;
  }
  .row > .xs-col-35 {
    width: 57%;
  }
  .row > .xs-col-45 {
    width: 77%;
  }
  .row > .xs-grid-1 {
    width: 5.333%;
  }
  .row > .xs-grid-2 {
    width: 13.666%;
  }
  .row > .xs-grid-3 {
    width: 22%;
  }
  .row > .xs-grid-4 {
    width: 30.333%;
  }
  .row > .xs-grid-5 {
    width: 38.666%;
  }
  .row > .xs-grid-6 {
    width: 47%;
  }
  .row > .xs-grid-7 {
    width: 55.333%;
  }
  .row > .xs-grid-8 {
    width: 63.666%;
  }
  .row > .xs-grid-9 {
    width: 72%;
  }
  .row > .xs-grid-10 {
    width: 80.333%;
  }
  .row > .xs-grid-11 {
    width: 88.666%;
  }
  .row > .xs-grid-12 {
    width: 97%;
  }
}

.row.collapsed {
  margin: 0;
}

.row.collapsed > [class*="col-"],
.row.collapsed > [class*="grid-"] {
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.row.collapsed > .col-full {
  width: 100%;
}

.row.collapsed > .col-12 {
  width: 50%;
}

.row.collapsed > .col-13 {
  width: 33.333%;
}

.row.collapsed > .col-23 {
  width: 66.666%;
}

.row.collapsed > .col-14 {
  width: 25%;
}

.row.collapsed > .col-34 {
  width: 75%;
}

.row.collapsed > .col-15 {
  width: 20%;
}

.row.collapsed > .col-25 {
  width: 40%;
}

.row.collapsed > .col-35 {
  width: 60%;
}

.row.collapsed > .col-45 {
  width: 80%;
}

.row.collapsed > .grid-1 {
  width: 8.333%;
}

.row.collapsed > .grid-2 {
  width: 16.666%;
}

.row.collapsed > .grid-3 {
  width: 25%;
}

.row.collapsed > .grid-4 {
  width: 33.333%;
}

.row.collapsed > .grid-5 {
  width: 41.666%;
}

.row.collapsed > .grid-6 {
  width: 50%;
}

.row.collapsed > .grid-7 {
  width: 58.333%;
}

.row.collapsed > .grid-8 {
  width: 66.666%;
}

.row.collapsed > .grid-9 {
  width: 75%;
}

.row.collapsed > .grid-10 {
  width: 83.333%;
}

.row.collapsed > .grid-11 {
  width: 91.666%;
}

.row.collapsed > .grid-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .row.collapsed > .lg-col-full {
    width: 100%;
  }
  .row.collapsed > .lg-col-12 {
    width: 50%;
  }
  .row.collapsed > .lg-col-13 {
    width: 33.333%;
  }
  .row.collapsed > .lg-col-23 {
    width: 66.666%;
  }
  .row.collapsed > .lg-col-14 {
    width: 25%;
  }
  .row.collapsed > .lg-col-34 {
    width: 75%;
  }
  .row.collapsed > .lg-col-15 {
    width: 20%;
  }
  .row.collapsed > .lg-col-25 {
    width: 40%;
  }
  .row.collapsed > .lg-col-35 {
    width: 60%;
  }
  .row.collapsed > .lg-col-45 {
    width: 80%;
  }
  .row.collapsed > .lg-grid-1 {
    width: 8.333%;
  }
  .row.collapsed > .lg-grid-2 {
    width: 16.666%;
  }
  .row.collapsed > .lg-grid-3 {
    width: 25%;
  }
  .row.collapsed > .lg-grid-4 {
    width: 33.333%;
  }
  .row.collapsed > .lg-grid-5 {
    width: 41.666%;
  }
  .row.collapsed > .lg-grid-6 {
    width: 50%;
  }
  .row.collapsed > .lg-grid-7 {
    width: 58.333%;
  }
  .row.collapsed > .lg-grid-8 {
    width: 66.666%;
  }
  .row.collapsed > .lg-grid-9 {
    width: 75%;
  }
  .row.collapsed > .lg-grid-10 {
    width: 83.333%;
  }
  .row.collapsed > .lg-grid-11 {
    width: 91.666%;
  }
  .row.collapsed > .lg-grid-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .row.collapsed > .md-col-full {
    width: 100%;
  }
  .row.collapsed > .md-col-12 {
    width: 50%;
  }
  .row.collapsed > .md-col-13 {
    width: 33.333%;
  }
  .row.collapsed > .md-col-23 {
    width: 66.666%;
  }
  .row.collapsed > .md-col-14 {
    width: 25%;
  }
  .row.collapsed > .md-col-34 {
    width: 75%;
  }
  .row.collapsed > .md-col-15 {
    width: 20%;
  }
  .row.collapsed > .md-col-25 {
    width: 40%;
  }
  .row.collapsed > .md-col-35 {
    width: 60%;
  }
  .row.collapsed > .md-col-45 {
    width: 80%;
  }
  .row.collapsed > .md-grid-1 {
    width: 8.333%;
  }
  .row.collapsed > .md-grid-2 {
    width: 16.666%;
  }
  .row.collapsed > .md-grid-3 {
    width: 25%;
  }
  .row.collapsed > .md-grid-4 {
    width: 33.333%;
  }
  .row.collapsed > .md-grid-5 {
    width: 41.666%;
  }
  .row.collapsed > .md-grid-6 {
    width: 50%;
  }
  .row.collapsed > .md-grid-7 {
    width: 58.333%;
  }
  .row.collapsed > .md-grid-8 {
    width: 66.666%;
  }
  .row.collapsed > .md-grid-9 {
    width: 75%;
  }
  .row.collapsed > .md-grid-10 {
    width: 83.333%;
  }
  .row.collapsed > .md-grid-11 {
    width: 91.666%;
  }
  .row.collapsed > .md-grid-12 {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .row.collapsed > .sm-col-full {
    width: 100%;
  }
  .row.collapsed > .sm-col-12 {
    width: 50%;
  }
  .row.collapsed > .sm-col-13 {
    width: 33.333%;
  }
  .row.collapsed > .sm-col-23 {
    width: 66.666%;
  }
  .row.collapsed > .sm-col-14 {
    width: 25%;
  }
  .row.collapsed > .sm-col-34 {
    width: 75%;
  }
  .row.collapsed > .sm-col-15 {
    width: 20%;
  }
  .row.collapsed > .sm-col-25 {
    width: 40%;
  }
  .row.collapsed > .sm-col-35 {
    width: 60%;
  }
  .row.collapsed > .sm-col-45 {
    width: 80%;
  }
  .row.collapsed > .sm-grid-1 {
    width: 8.333%;
  }
  .row.collapsed > .sm-grid-2 {
    width: 16.666%;
  }
  .row.collapsed > .sm-grid-3 {
    width: 25%;
  }
  .row.collapsed > .sm-grid-4 {
    width: 33.333%;
  }
  .row.collapsed > .sm-grid-5 {
    width: 41.666%;
  }
  .row.collapsed > .sm-grid-6 {
    width: 50%;
  }
  .row.collapsed > .sm-grid-7 {
    width: 58.333%;
  }
  .row.collapsed > .sm-grid-8 {
    width: 66.666%;
  }
  .row.collapsed > .sm-grid-9 {
    width: 75%;
  }
  .row.collapsed > .sm-grid-10 {
    width: 83.333%;
  }
  .row.collapsed > .sm-grid-11 {
    width: 91.666%;
  }
  .row.collapsed > .sm-grid-12 {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .row.collapsed > .xs-col-full {
    width: 100%;
  }
  .row.collapsed > .xs-col-12 {
    width: 50%;
  }
  .row.collapsed > .xs-col-13 {
    width: 33.333%;
  }
  .row.collapsed > .xs-col-23 {
    width: 66.666%;
  }
  .row.collapsed > .xs-col-14 {
    width: 25%;
  }
  .row.collapsed > .xs-col-34 {
    width: 75%;
  }
  .row.collapsed > .xs-col-15 {
    width: 20%;
  }
  .row.collapsed > .xs-col-25 {
    width: 40%;
  }
  .row.collapsed > .xs-col-35 {
    width: 60%;
  }
  .row.collapsed > .xs-col-45 {
    width: 80%;
  }
  .row.collapsed > .xs-grid-1 {
    width: 8.333%;
  }
  .row.collapsed > .xs-grid-2 {
    width: 16.666%;
  }
  .row.collapsed > .xs-grid-3 {
    width: 25%;
  }
  .row.collapsed > .xs-grid-4 {
    width: 33.333%;
  }
  .row.collapsed > .xs-grid-5 {
    width: 41.666%;
  }
  .row.collapsed > .xs-grid-6 {
    width: 50%;
  }
  .row.collapsed > .xs-grid-7 {
    width: 58.333%;
  }
  .row.collapsed > .xs-grid-8 {
    width: 66.666%;
  }
  .row.collapsed > .xs-grid-9 {
    width: 75%;
  }
  .row.collapsed > .xs-grid-10 {
    width: 83.333%;
  }
  .row.collapsed > .xs-grid-11 {
    width: 91.666%;
  }
  .row.collapsed > .xs-grid-12 {
    width: 100%;
  }
}

.box-grid {
  margin-top: 0;
  margin-right: -1.5%;
  margin-left: -1.5%;
  margin-bottom: 20px;
  padding: 0;
  clear: both;
}

.box-grid:after {
  content: "";
  display: table;
  clear: both;
}

.box-grid > * {
  float: left;
  clear: none;
  margin-top: 0;
  margin-right: 1.5%;
  margin-bottom: 3%;
  margin-left: 1.5%;
  padding: 0;
  width: 22%;
  list-style: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .box-grid > * {
    width: 22%;
  }
}

@media (max-width: 768px) {
  .box-grid > * {
    width: 30.333%;
  }
}

@media (max-width: 640px) {
  .box-grid > * {
    width: 47%;
  }
}

@media (max-width: 480px) {
  .box-grid > * {
    width: 97%;
  }
}

.box-grid.columns-5 > * {
  width: 17%;
}

.box-grid.columns-4 > * {
  width: 22%;
}

.box-grid.columns-3 > * {
  width: 30.333%;
}

.box-grid.columns-2 > * {
  width: 47%;
}

.box-grid.columns-1 > * {
  width: 97%;
}

@media (max-width: 1024px) {
  .box-grid.columns-5 > * {
    width: 22%;
  }
}

@media (max-width: 768px) {
  .box-grid.columns-5 > *,
  .box-grid.columns-4 > * {
    width: 30.333%;
  }
}

@media (max-width: 640px) {
  .box-grid.columns-5 > *,
  .box-grid.columns-4 > *,
  .box-grid.columns-3 > * {
    width: 47%;
  }
}

@media (max-width: 480px) {
  .box-grid.columns-5 > *,
  .box-grid.columns-4 > *,
  .box-grid.columns-3 > *,
  .box-grid.columns-2 > * {
    width: 97%;
  }
}

/* Form/input/button styles
-------------------------------------------------------------- */
input,
textarea,
select,
button,
.input {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: 300;
  line-height: 1.4;
  color: inherit;
  vertical-align: middle;
  border: none;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="url"],
input[type="date"],
input[type="time"],
input[type="datetime"],
input[type="number"],
input[type="range"],
input[type="tel"],
input[type="range"],
input[type="file"],
textarea,
select,
.input {
  padding: 0 10px;
  height: 36px;
  height: 36px;
  background: #fcfcfc;
  border: 1px solid #bfbfbf;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

input[type="text"]:focus, input[type="text"]:active,
input[type="email"]:focus,
input[type="email"]:active,
input[type="password"]:focus,
input[type="password"]:active,
input[type="search"]:focus,
input[type="search"]:active,
input[type="url"]:focus,
input[type="url"]:active,
input[type="date"]:focus,
input[type="date"]:active,
input[type="time"]:focus,
input[type="time"]:active,
input[type="datetime"]:focus,
input[type="datetime"]:active,
input[type="number"]:focus,
input[type="number"]:active,
input[type="range"]:focus,
input[type="range"]:active,
input[type="tel"]:focus,
input[type="tel"]:active,
input[type="range"]:focus,
input[type="range"]:active,
input[type="file"]:focus,
input[type="file"]:active,
textarea:focus,
textarea:active,
select:focus,
select:active,
.input:focus,
.input:active {
  border: 1px solid #8c8c8c;
  background: #f7f7f7;
}

textarea {
  padding: 10px;
  height: auto;
  line-height: 1.2;
}

input[type="radio"],
input[type="checkbox"] {
  position: relative;
}

input[type="submit"],
button,
.btn,
.button {
  display: inline;
  display: inline-block;
  height: 36px;
  padding: 0 25px;
  margin: 0;
  color: #ffffff;
  background: #4b90ab;
  border: none;
  font-size: 1em;
  font-family: inherit;
  font-weight: 500;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-appearance: none;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

input[type="submit"]:hover,
button:hover,
.btn:hover,
.button:hover {
  background-color: #6ba7be;
  color: #ffffff;
  cursor: pointer;
}

input[type="submit"].lg,
button.lg,
.btn.lg,
.button.lg {
  margin: 0.5% 0;
  padding: 0 50px;
  font-size: 1.25em;
  height: 50px;
  line-height: 50px;
}

@media (max-width: 1024px) {
  input[type="submit"].lg,
  button.lg,
  .btn.lg,
  .button.lg {
    margin: 2% 0;
  }
}

@media (max-width: 640px) {
  input[type="submit"].lg,
  button.lg,
  .btn.lg,
  .button.lg {
    padding: 0 15px;
  }
}

input[type="submit"].outline,
button.outline,
.btn.outline,
.button.outline {
  background: none;
  border: 3px solid #4b90ab;
  color: #4b90ab;
  line-height: 48px;
}

input[type="submit"].outline:hover,
button.outline:hover,
.btn.outline:hover,
.button.outline:hover {
  border-color: #6ba7be;
  color: #6ba7be;
}

input[type="submit"].white,
button.white,
.btn.white,
.button.white {
  border: 2px solid #ffffff;
  background: #ffffff;
  color: #000000;
  line-height: 30px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

input[type="submit"].white:hover,
button.white:hover,
.btn.white:hover,
.button.white:hover {
  background: none;
  color: #ffffff;
}

input[type="submit"].txt,
button.txt,
.btn.txt,
.button.txt {
  margin: 0;
  padding: 0;
  background: none;
  color: #4b90ab;
  text-transform: none;
  font-weight: 600;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

input[type="submit"].txt .icon,
button.txt .icon,
.btn.txt .icon,
.button.txt .icon {
  font-size: 0.65em;
}

input[type="submit"].txt:hover,
button.txt:hover,
.btn.txt:hover,
.button.txt:hover {
  color: #6ba7be;
}

a.btn,
a.button {
  line-height: 36px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

::-webkit-input-placeholder {
  color: gray;
}

::-moz-placeholder {
  color: gray;
}

:-ms-input-placeholder {
  color: gray;
}

input:-moz-placeholder {
  color: gray;
}

#hdr {
  z-index: 99;
  margin: 0;
  padding: 1%;
  background: #d6d6ce;
  text-align: center;
}

#hdr:after {
  content: "";
  display: table;
  clear: both;
}

#hdr #nav-expand {
  float: left;
}

#hdr #logo {
  display: inline-block;
}

#hdr .btn {
  float: right;
}

@media (max-width: 768px) {
  #hdr #logo {
    width: 200px;
    padding: 2% 0;
  }
}

@media (max-width: 640px) {
  #hdr #logo {
    width: 200px;
    padding: 2% 0;
  }
  #hdr .btn {
    display: none;
  }
}

.internal-header {
  z-index: 0;
  position: relative;
  background-size: cover;
  height: 250px;
  text-align: center;
}

.internal-header .content {
  padding: 5%;
}

.internal-header .content h1 {
  margin-bottom: 0;
  color: #ffffff;
  font-weight: 600;
}

.internal-header:before {
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(75, 144, 171, 0.85);
}

@media (max-width: 640px) {
  .internal-header {
    height: auto;
  }
  .internal-header .content h1 {
    font-size: 1.5em;
  }
}

#hdr-notification a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

#hdr-notification a:hover {
  color: #ffffff;
}

#hdr-notification p {
  margin: 0;
  padding: 10px;
  color: #ffffff;
  text-align: center;
}

#hdr-notification.warning p:before, #hdr-notification.warning p:after, #hdr-notification.emergency p:before, #hdr-notification.emergency p:after {
  content: "";
  font-family: FontAwesome;
  padding: 0 10px;
  font-size: 0.9em;
}

@media (max-width: 640px) {
  #hdr-notification.warning p:before, #hdr-notification.emergency p:before {
    display: block;
  }
  #hdr-notification.warning p:after, #hdr-notification.emergency p:after {
    display: none;
  }
}

#hdr-notification.default {
  background: #800000;
}

#hdr-notification.warning {
  background: #e1b311;
}

#hdr-notification.emergency {
  background: #f64b2f;
}

#hdr-notification.success {
  background: #7eb62e;
}

#hdr-notification.notice {
  background: #2fa9f6;
}

.full-page {
  overflow: hidden;
}

.full-page .content,
.full-page .sidebar {
  padding-bottom: 5%;
}

.full-page .content {
  padding-top: 5%;
  padding-left: 7%;
  padding-right: 15%;
}

.full-page .sidebar {
  position: relative;
  padding-left: 2%;
  padding-right: 2%;
  background: #d6d6ce;
}

.full-page .sidebar:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  background: #d6d6ce;
  height: 200%;
}

.full-page .sidebar .upcoming,
.full-page .sidebar .staff-members {
  padding-top: 20%;
}

.full-page .sidebar .upcoming h3,
.full-page .sidebar .staff-members h3 {
  margin-bottom: 8%;
  padding-top: 5%;
}

.full-page .sidebar .upcoming .event h6,
.full-page .sidebar .upcoming .post h6,
.full-page .sidebar .staff-members .event h6,
.full-page .sidebar .staff-members .post h6 {
  font-size: 1em;
  font-family: Open Sans, sans-serif;
}

.full-page .sidebar .upcoming .event,
.full-page .sidebar .upcoming .staff,
.full-page .sidebar .staff-members .event,
.full-page .sidebar .staff-members .staff {
  display: block;
  margin-bottom: 7%;
  padding: 6%;
  background: #666666;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.full-page .sidebar .upcoming .event h6,
.full-page .sidebar .upcoming .event .date,
.full-page .sidebar .upcoming .event p,
.full-page .sidebar .upcoming .staff h6,
.full-page .sidebar .upcoming .staff .date,
.full-page .sidebar .upcoming .staff p,
.full-page .sidebar .staff-members .event h6,
.full-page .sidebar .staff-members .event .date,
.full-page .sidebar .staff-members .event p,
.full-page .sidebar .staff-members .staff h6,
.full-page .sidebar .staff-members .staff .date,
.full-page .sidebar .staff-members .staff p {
  color: #ffffff;
}

.full-page .sidebar .upcoming .event h6,
.full-page .sidebar .upcoming .staff h6,
.full-page .sidebar .staff-members .event h6,
.full-page .sidebar .staff-members .staff h6 {
  margin-bottom: 5px;
}

.full-page .sidebar .upcoming .event .date,
.full-page .sidebar .upcoming .staff .date,
.full-page .sidebar .staff-members .event .date,
.full-page .sidebar .staff-members .staff .date {
  margin-bottom: 15px;
}

.full-page .sidebar .upcoming .event .link,
.full-page .sidebar .upcoming .staff .link,
.full-page .sidebar .staff-members .event .link,
.full-page .sidebar .staff-members .staff .link {
  margin-bottom: 0;
  font-weight: 600;
}

.full-page .sidebar .upcoming .event .link .fa-icon,
.full-page .sidebar .upcoming .staff .link .fa-icon,
.full-page .sidebar .staff-members .event .link .fa-icon,
.full-page .sidebar .staff-members .staff .link .fa-icon {
  margin-left: 3px;
  font-size: 0.9em;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.full-page .sidebar .upcoming .event:hover,
.full-page .sidebar .upcoming .staff:hover,
.full-page .sidebar .staff-members .event:hover,
.full-page .sidebar .staff-members .staff:hover {
  background: #4d4d4d;
}

.full-page .sidebar .upcoming .event:hover .link .fa-icon,
.full-page .sidebar .upcoming .staff:hover .link .fa-icon,
.full-page .sidebar .staff-members .event:hover .link .fa-icon,
.full-page .sidebar .staff-members .staff:hover .link .fa-icon {
  margin-left: 5px;
}

.full-page .sidebar .upcoming .post h6,
.full-page .sidebar .staff-members .post h6 {
  margin: 0;
}

.full-page .sidebar .upcoming .post h6 a,
.full-page .sidebar .staff-members .post h6 a {
  color: #4b90ab;
}

.full-page .sidebar .upcoming .post h6 a:hover,
.full-page .sidebar .staff-members .post h6 a:hover {
  color: #438199;
}

.full-page .sidebar .staff-members .staff {
  padding: 2%;
}

.full-page .sidebar .staff-members .staff img {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.full-page .sidebar .staff-members .staff .content {
  padding: 3% 3% 3% 5%;
}

.full-page .sidebar .staff-members .staff .content h5,
.full-page .sidebar .staff-members .staff .content p,
.full-page .sidebar .staff-members .staff .content a {
  margin: 0;
  color: #ffffff;
}

.full-page .sidebar .staff-members .staff .content h5 {
  font-weight: 700;
  font-size: 1em;
  letter-spacing: 0;
  font-family: Open Sans, sans-serif;
}

.full-page .sidebar .staff-members .staff .content p,
.full-page .sidebar .staff-members .staff .content a {
  line-height: 1.6;
}

.full-page .sidebar .staff-members .staff .content a {
  text-decoration: none;
}

@media (max-width: 1750px) {
  .full-page .sidebar .staff-members .staff .content .phone,
  .full-page .sidebar .staff-members .staff .content .email {
    display: none;
  }
}

@media (max-width: 768px) {
  .full-page .sidebar {
    padding: 4%;
  }
  .full-page .sidebar .upcoming,
  .full-page .sidebar .staff-members {
    padding-top: 0;
  }
  .full-page .sidebar .staff-members .staff .content .phone,
  .full-page .sidebar .staff-members .staff .content .email {
    display: block;
  }
}

@media (max-width: 1440px) {
  .full-page .content {
    padding-right: 7%;
  }
}

body.page-template-child-layout .full-page .content {
  padding-right: 7%;
}

body.page-template-child-layout .full-page .content .child-links .page {
  margin: 1%;
  padding: 45px 20px;
  display: inline-block;
  background: #4b90ab;
  vertical-align: middle;
  white-space: nowrap;
}

body.page-template-child-layout .full-page .content .child-links .page:before {
  content: '';
  display: inline-block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 100%;
  margin: 0 0 0 -5px;
  padding: 0;
  vertical-align: middle;
}

body.page-template-child-layout .full-page .content .child-links .page h5 {
  margin: 0;
  color: #ffffff;
  text-align: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  width: 100%;
  white-space: normal;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body.page-template-child-layout .full-page .content .child-links .page h5 > *:last-child {
  margin-bottom: 0;
}

body.page-template-child-layout .full-page .content .child-links .page:hover {
  background: #438199;
}

@media (max-width: 640px) {
  body.page-template-child-layout .full-page .content .child-links .page {
    padding: 15px;
  }
  body.page-template-child-layout .full-page .content .child-links .page h5 {
    font-size: 1em;
  }
}

.social-feed {
  padding: 1% 0;
  background: #666666;
}

body.single-staff .title {
  vertical-align: middle;
  white-space: nowrap;
}

body.single-staff .title:before {
  content: '';
  display: inline-block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 100%;
  margin: 0 0 0 -5px;
  padding: 0;
  vertical-align: middle;
}

body.single-staff .title .ctr-content {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  width: 100%;
  white-space: normal;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body.single-staff .title .ctr-content > *:last-child {
  margin-bottom: 0;
}

body.single-staff .title .ctr-content h3,
body.single-staff .title .ctr-content h5 {
  margin: 0;
}

body.single-staff .title .ctr-content h5 {
  color: #000000;
}

body.single-staff .title .ctr-content a {
  color: #4b90ab;
}

body.single-staff .title .ctr-content a:hover {
  color: #438199;
}

body.single-topic .btn {
  margin: 5px 0;
}

body.single-topic h5 {
  margin: 0 auto;
  padding: 5%;
  max-width: 50%;
  font-size: 1.5em;
  text-align: center;
}

body.single-topic .topic-info {
  padding: 5% 2% 3%;
  background: #8c0f00;
  color: #ffffff;
}

body.single-topic .topic-info h3, body.single-topic .topic-info h4, body.single-topic .topic-info h5, body.single-topic .topic-info h6 {
  color: #ffffff;
}

body.single-topic .topic-info .resources {
  padding: 4% 8%;
  background: #d6d6ce;
  color: #333333;
  text-align: center;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

body.single-topic .topic-info .resources h3 {
  text-align: left;
  color: #8c0f00;
}

body.single-topic .topic-info .resources p {
  padding: 3% 0;
}

body.single-topic .topic-info .resources .btn {
  margin: 2% auto 0;
  width: auto;
  display: block;
}

body.single-topic h2 {
  font-weight: 800;
  text-align: center;
  font-size: 2.75em;
}

body.single-topic .tribe-section {
  padding: 6% 0;
}

body.single-topic .topic-specialist {
  padding: 5% 0;
  background: #d6d6ce;
}

body.single-topic .topic-specialist .specialist {
  margin-top: 4%;
}

body.single-topic .topic-specialist .specialist.full-width {
  margin: 0 auto;
  text-align: center;
}

body.single-topic .topic-specialist .specialist.full-width .info {
  width: 100%;
}

body.single-topic .topic-specialist .specialist .info,
body.single-topic .topic-specialist .specialist .desc {
  display: inline-block;
  vertical-align: top;
}

body.single-topic .topic-specialist .specialist .info {
  width: 30%;
}

body.single-topic .topic-specialist .specialist .info img {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

body.single-topic .topic-specialist .specialist .info h4 {
  margin: 0;
  color: #000000;
  font-weight: 600;
}

body.single-topic .topic-specialist .specialist .info a {
  color: #4b90ab;
}

body.single-topic .topic-specialist .specialist .info a:hover {
  color: #438199;
}

body.single-topic .topic-specialist .specialist .desc {
  width: 60%;
}

@media (max-width: 1024px) {
  body.single-topic h5 {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  body.single-topic .topic-info {
    padding-left: 4%;
    padding-right: 4%;
  }
  body.single-topic h2 {
    font-size: 2em;
  }
  body.single-topic .tribe-section {
    padding: 3%;
  }
  body.single-topic .topic-specialist .specialist .info,
  body.single-topic .topic-specialist .specialist .desc {
    margin: 0 auto;
    width: 95%;
  }
  body.single-topic .topic-specialist .specialist .info {
    margin-bottom: 5%;
    text-align: center;
  }
  body.single-topic .topic-specialist .specialist .desc {
    padding: 2%;
  }
}

section.page-banner {
  z-index: 1;
  padding: 0;
  overflow: hidden;
  height: 75vh;
}

section.page-banner .image {
  height: 100%;
}

section.page-banner .image img {
  height: 100%;
  width: auto;
}

section.page-banner .banner-video {
  position: fixed;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

section.page-banner .banner-video video {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
}

section.page-banner .banner-video:after {
  z-index: 1;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
}

section.page-banner .content {
  z-index: 10;
  position: absolute;
  top: 18%;
  left: 50%;
  margin: 0;
  padding: 0;
  color: #8c0f00;
  font-size: 2.575em;
  text-align: center;
  width: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

section.page-banner .content h1, section.page-banner .content h2, section.page-banner .content h3, section.page-banner .content h4, section.page-banner .content h5, section.page-banner .content h6, section.page-banner .content p {
  font-size: 1.2em;
  color: #8c0f00;
  font-weight: 700;
}

@media (max-width: 1024px) {
  section.page-banner {
    height: 400px;
  }
  section.page-banner .content {
    width: 90%;
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  section.page-banner {
    position: static;
    max-height: none;
    height: 300px;
  }
  section.page-banner .content {
    top: 7%;
    font-size: 1.375em;
  }
  section.page-banner .content h2 {
    margin-top: 25%;
  }
}

@media (max-width: 640px) {
  section.page-banner {
    height: 250px;
  }
}

@media (max-width: 480px) {
  section.page-banner {
    height: 180px;
  }
}

.hp-content {
  z-index: 10;
  position: relative;
  padding: 15% 0 10%;
  text-align: center;
  height: auto;
  background: #8c0f00 url("library/img/curve-shape.png") no-repeat top center;
  background-size: 100% auto;
  -webkit-box-shadow: -1px -1px 10px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: -1px -1px 10px 0px rgba(0, 0, 0, 0.3);
  box-shadow: -1px -1px 10px 0px rgba(0, 0, 0, 0.3);
}

.hp-content .ctr {
  width: 1100px;
}

.hp-content h1 {
  font-size: 1.85em;
  margin-bottom: 10px;
}

.hp-content h1, .hp-content h2, .hp-content h3, .hp-content h4, .hp-content h5, .hp-content h6, .hp-content p, .hp-content li, .hp-content a {
  color: #ffffff;
}

@media (max-width: 640px) {
  .hp-content {
    padding-left: 3%;
    padding-right: 3%;
    width: auto;
  }
  .hp-content .ctr {
    width: auto;
  }
  .hp-content h1 {
    margin-top: 15%;
    font-size: 1.5em;
  }
}

body.home #page {
  display: none;
}

body.home .newsletter {
  position: relative;
}

body.home .newsletter:after {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  width: auto;
  background: #333333;
}

.launches {
  z-index: 10;
  position: relative;
  padding: 8% 0;
  background: #d6d6ce url("library/img/event-bkg.png") no-repeat top center;
  background-size: 100% auto;
  background-attachment: fixed;
  text-align: center;
}

.launches:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100px;
  width: 100%;
  background: transparent;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#d6d6ce));
  background: -webkit-linear-gradient(transparent, #d6d6ce);
  background: -moz-linear-gradient(center top, transparent 0%, #d6d6ce 100%);
  background: -moz-gradient(center top, transparent 0%, #d6d6ce 100%);
}

.launches h3 {
  color: #8c0f00;
  font-size: 2.2em;
}

.launches .upcoming {
  margin: 0 auto;
  padding: 5% 0;
  max-width: 1000px;
}

.launches .upcoming .event {
  padding: 2%;
  background: gray;
  -webkit-box-shadow: 0 3px 5px -2px black;
  -moz-box-shadow: 0 3px 5px -2px black;
  box-shadow: 0 3px 5px -2px black;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.launches .upcoming .event h6 {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.1em;
}

.launches .upcoming .event .date {
  margin: 5% 0 10%;
}

.launches .upcoming .event h6, .launches .upcoming .event p {
  color: #ffffff;
}

@media (max-width: 640px) {
  .launches:after {
    display: none;
  }
}

.newsletter {
  z-index: 5;
  position: relative;
  padding: 2% 0;
  background: #d6d6ce;
  text-align: center;
  text-transform: uppercase;
}

.newsletter .gform_wrapper {
  margin: 0;
}

.newsletter .gform_wrapper.gform_validation_error {
  margin-bottom: 30px;
}

.newsletter .gform_wrapper .gform_heading,
.newsletter .gform_wrapper .gform_body,
.newsletter .gform_wrapper .gform_footer {
  display: inline-block;
  width: 33%;
  vertical-align: middle;
}

.newsletter .gform_wrapper .gform_heading {
  color: #8c0f00;
  font-weight: 600;
  font-size: 1.1em;
  padding: 0 9%;
  line-height: 1.3;
  letter-spacing: 0.5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.newsletter .gform_wrapper .validation_error {
  margin: 0 auto;
  position: absolute;
  width: 60%;
  top: 81%;
  left: 0;
  right: 0;
}

.newsletter .gform_wrapper .gform_body {
  display: inline-block;
  width: 33%;
}

.newsletter .gform_wrapper .gform_body .gfield {
  margin: 0 !important;
}

.newsletter .gform_wrapper .gform_body .gfield input {
  height: 50px;
}

.newsletter .gform_wrapper .gform_body .ginput_container_email input {
  text-align: center;
  text-transform: uppercase;
}

.newsletter .gform_wrapper .gform_footer {
  display: inline-block;
  width: 33%;
}

.newsletter .gform_wrapper .gform_footer input[type="submit"] {
  margin: 0.5% 0;
  padding: 0 50px;
  font-size: 1.25em;
  height: 50px;
  line-height: 50px;
}

@media (max-width: 1024px) {
  .newsletter .gform_wrapper.gform_validation_error {
    margin-bottom: 50px;
  }
  .newsletter .gform_wrapper .validation_error {
    margin: 0 auto;
    padding-bottom: 15%;
    bottom: 0;
    width: 83%;
  }
  .newsletter .gform_wrapper .gform_footer input[type="submit"] {
    margin: 2% 0;
  }
}

@media (max-width: 768px) {
  .newsletter .gform_wrapper .gform_heading,
  .newsletter .gform_wrapper .gform_body,
  .newsletter .gform_wrapper .gform_footer {
    width: 100%;
  }
  .newsletter .gform_wrapper .gform_heading {
    margin-top: 2.5%;
  }
  .newsletter .gform_wrapper .gform_body {
    margin-top: 2%;
  }
}

@media (max-width: 640px) {
  .newsletter .gform_wrapper .gform_footer input[type="submit"] {
    padding: 0 15px;
  }
}

#ftr {
  z-index: 5;
  position: relative;
  padding: 2% 0 0;
  margin: 0;
  background: #8c0f00;
  color: #ffffff;
  text-align: center;
}

#ftr:after {
  content: "";
  display: table;
  clear: both;
}

#ftr .social-icons,
#ftr .uc-med {
  background: #8c0f00;
}

#ftr .social-icons {
  float: left;
}

#ftr .uc-med {
  float: right;
}

#ftr .ftr-cnt {
  margin: 0 auto;
  width: 60%;
}

#ftr .ftr-cnt .copyright {
  margin-top: 3.5%;
  font-size: 0.9em;
}

#ftr .ftr-cnt .copyright a {
  color: #e6e6e6;
}

@media (max-width: 1024px) {
  #ftr .social-icons,
  #ftr .uc-med {
    padding: 2% 5%;
    float: none;
    vertical-align: middle;
  }
  #ftr .uc-med img {
    vertical-align: middle;
  }
  #ftr .ftr-cnt {
    width: 90%;
  }
}

@media (max-width: 768px) {
  #ftr .social-icons,
  #ftr .uc-med {
    padding: 5%;
  }
}

/* Navigation Expand Menu
-------------------------------------------------------------- */
#nav-expand {
  display: none;
  height: 70px;
  width: 70px;
  margin: 0;
  padding: 0;
  background: #8c8c8c;
  color: #ffffff;
  line-height: 70px;
  font-size: 2em;
  text-align: center;
  z-index: 99;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

@media (max-width: 640px) {
  #nav-expand {
    height: 60px;
    width: 60px;
  }
}

/* Main navigation styles
-------------------------------------------------------------- */
#footer-menu {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #ffffff;
}

#footer-menu:after {
  content: "";
  display: table;
  clear: both;
}

#footer-menu li {
  margin: 0;
  padding: 0;
  list-style: none;
}

#footer-menu li a {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.8);
}

#footer-menu li a:hover {
  color: #ffffff;
}

#footer-menu li.mobile-only {
  position: fixed;
  visibility: hidden;
  left: -9999em;
  height: 0;
  width: 0;
  overflow: hidden;
}

#footer-menu > li {
  position: relative;
  display: inline;
  display: inline-block;
  list-style: none;
}

#footer-menu > li > a {
  display: inline;
  display: inline-block;
  margin: 0;
  padding: 10px 20px;
}

#footer-menu > li > ul {
  visibility: hidden;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  position: absolute;
  z-index: 999;
  top: 100%;
  left: 0;
  width: auto;
  margin: 0 0 0 10px;
  padding: 0;
  background: #d6d6ce;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-box-shadow: 0 3px 5px -4px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0 3px 5px -4px rgba(0, 0, 0, 0.75);
  box-shadow: 0 3px 5px -4px rgba(0, 0, 0, 0.75);
}

#footer-menu > li > ul:after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 20px;
  height: 0;
  width: 0;
  margin: 0;
  padding: 0;
}

#footer-menu > li > ul > li {
  display: block;
}

#footer-menu > li > ul > li > a {
  display: block;
  min-width: 180px;
  margin: 0;
  padding: 10px 15px;
  white-space: nowrap;
  text-align: left;
}

#footer-menu > li:hover > ul {
  visibility: visible;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

#footer-menu > li:last-child > ul {
  left: auto;
  right: 0;
}

#footer-menu > li:last-child > ul > li > a {
  text-align: right;
}

@media (max-width: 1366px) {
  #footer-menu {
    padding: 0 0 5%;
  }
}

@media (max-width: 1024px) {
  #footer-menu {
    padding: 5% 0;
  }
}

@media (max-width: 480px) {
  #footer-menu {
    padding: 10% 0;
  }
  #footer-menu li {
    display: block;
  }
}

/* Pager styles
-------------------------------------------------------------- */
.pager {
  margin: 0 0 20px;
  padding: 0;
  text-align: center;
}

.pager:after {
  content: "";
  display: table;
  clear: both;
}

.pager li {
  display: inline-block;
  margin: 0 5px 3px;
  padding: 0;
  list-style: none;
  vertical-align: middle;
}

.pager li a, .pager li span {
  display: block;
  padding: 5px;
  height: 30px;
  width: 30px;
  line-height: 30px;
  background: #d5e6ed;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25em;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.pager li a.dots, .pager li a.next, .pager li span.dots, .pager li span.next {
  height: auto;
  width: auto;
  line-height: 1;
  background: none;
  color: #d5e6ed;
}

.pager li a.next:hover, .pager li span.next:hover {
  background: none;
  color: #8ebcce;
}

.pager li a:hover, .pager li .current {
  background: #8ebcce;
}

/* Breadcrumb styles
-------------------------------------------------------------- */
#breadcrumb-bx {
  background: white;
  padding: 5px;
}

.breadcrumbs {
  margin: 0 0 20px;
  padding: 0;
}

.breadcrumbs:after {
  content: "";
  display: table;
  clear: both;
}

.breadcrumbs li {
  float: left;
  margin: 0 10px 0 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li a {
  display: inline;
  display: inline-block;
}

.breadcrumbs li a:after {
  content: "\f105";
  margin-left: 10px;
  font-family: FontAwesome;
  font-size: 16px;
  color: #333333;
}

.breadcrumbs li, .breadcrumbs li a {
  line-height: 1.4;
}

.tabs {
  display: block;
  margin: 0 0 20px;
}

.tabs .labels {
  display: block;
  margin: 0;
  padding: 0;
}

.tabs .labels:after {
  content: "";
  display: table;
  clear: both;
}

.tabs .labels .label {
  float: left;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tabs .labels .label > a {
  display: block;
  margin: 0;
  padding: 10px 20px;
}

.tabs .labels .label.active {
  background: #d6d6ce;
}

.tabs .labels .label.active > a {
  color: #000000;
}

.tabs .tab {
  margin: 0;
  padding: 20px;
  background: #d6d6ce;
}

.tabs .tab > *:last-child {
  margin-bottom: 0;
}

/* Search Results
-------------------------------------------------------------- */
#search-bar {
  margin: 0 0 20px;
}

/* Search Results
-------------------------------------------------------------- */
body.search-results #page .ctr,
body.search-no-results #page .ctr {
  text-align: left !important;
}

body.search-results #page .ctr #search-bar,
body.search-no-results #page .ctr #search-bar {
  margin: 0;
}

body.search-results #page .ctr #search-bar .search-form,
body.search-no-results #page .ctr #search-bar .search-form {
  float: right;
  margin-top: 0;
}

@media (max-width: 640px) {
  body.search-results #page .ctr #search-bar .search-form,
  body.search-no-results #page .ctr #search-bar .search-form {
    float: none;
    text-align: center;
    margin: 10px 0;
  }
}

#search-results .search-result {
  margin: 0 0 20px;
  padding: 20px;
  border: 1px solid #a8a896;
}

#search-results .search-result .title {
  margin: 0;
  font-size: 1.375em;
}

#search-results .search-result .link {
  margin: 0 0 10px;
  font-size: 0.8675em;
}

#search-results .search-result .link a {
  color: #a8a896;
}

#search-results .search-result .link a:hover {
  color: #90907b;
}

#search-results .search-result > *:last-child {
  margin-bottom: 0;
}

body.single-post h1 {
  display: none;
}

#posts .content > article h3,
#post .content > article h3 {
  font-size: 2em;
  margin-bottom: 0;
}

#posts .content > article.has-post-thumbnail,
#post .content > article.has-post-thumbnail {
  padding-left: 220px;
}

#posts .content > article.has-post-thumbnail:after,
#post .content > article.has-post-thumbnail:after {
  content: "";
  display: table;
  clear: both;
}

#posts .content > article.has-post-thumbnail .post-thumbnail,
#post .content > article.has-post-thumbnail .post-thumbnail {
  float: left;
  display: block;
  margin: 0;
  margin-left: -230px;
  margin-bottom: 20px;
  width: 200px;
  height: auto;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

@media (max-width: 1024px) {
  #posts .content > article.has-post-thumbnail,
  #post .content > article.has-post-thumbnail {
    padding-left: 0;
  }
  #posts .content > article.has-post-thumbnail .post-thumbnail,
  #post .content > article.has-post-thumbnail .post-thumbnail {
    float: none;
    margin: 0 auto 20px;
    width: auto;
    height: auto;
  }
}

#posts .sidebar #widgets,
#post .sidebar #widgets {
  padding-top: 20%;
}

#posts .sidebar #widgets .widget_search,
#post .sidebar #widgets .widget_search {
  margin-bottom: 14%;
  padding: 7%;
  background: #666666;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

#posts .sidebar #widgets .widget_search .widgettitle,
#post .sidebar #widgets .widget_search .widgettitle {
  margin-bottom: 10px;
  color: #ffffff;
}

#posts .sidebar #widgets .widget_search .search-form input,
#post .sidebar #widgets .widget_search .search-form input {
  margin-top: 5px;
}

#posts .sidebar #widgets .widget_search .search-form input[type="submit"],
#post .sidebar #widgets .widget_search .search-form input[type="submit"] {
  margin-left: 5px;
  padding: 0 15px;
}

#posts .sidebar #widgets .widget_nav_menu .widgettitle,
#post .sidebar #widgets .widget_nav_menu .widgettitle {
  position: relative;
}

#posts .sidebar #widgets .widget_nav_menu .widgettitle:after,
#post .sidebar #widgets .widget_nav_menu .widgettitle:after {
  content: '';
  position: absolute;
  top: 100%;
  left: -10%;
  right: 35%;
  height: 3px;
  background: #8c0f00;
}

#posts .sidebar #widgets .widget_nav_menu .menu-blog-menu-container .menu,
#post .sidebar #widgets .widget_nav_menu .menu-blog-menu-container .menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

#posts .sidebar #widgets .widget_nav_menu .menu-blog-menu-container .menu li,
#post .sidebar #widgets .widget_nav_menu .menu-blog-menu-container .menu li {
  font-size: 1.25em;
  line-height: 1.8;
}

#posts .sidebar #widgets .widget_nav_menu .menu-blog-menu-container .menu li a,
#post .sidebar #widgets .widget_nav_menu .menu-blog-menu-container .menu li a {
  color: #333333;
}

#posts .sidebar #widgets .widget_nav_menu .menu-blog-menu-container .menu li a:hover,
#post .sidebar #widgets .widget_nav_menu .menu-blog-menu-container .menu li a:hover {
  color: black;
}

@media (max-width: 1024px) {
  #posts .content .post-thumbnail,
  #post .content .post-thumbnail {
    float: none;
    margin: 0;
  }
}

@media (max-width: 768px) {
  #posts .sidebar,
  #post .sidebar {
    padding: 4%;
  }
  #posts .sidebar #widgets,
  #post .sidebar #widgets {
    padding-top: 0;
  }
  #posts .sidebar #widgets .widget_search,
  #post .sidebar #widgets .widget_search {
    margin-bottom: 5%;
  }
}

@media (max-width: 480px) {
  #posts .content .post-thumbnail,
  #post .content .post-thumbnail {
    float: none;
    margin: 0 auto 2%;
    text-align: center;
    width: 100%;
  }
}

#posts .content > article {
  margin-bottom: 2%;
  padding-bottom: 2%;
  border-bottom: 1px solid #d6d6ce;
}

#posts .content > article:last-child {
  border-bottom: none;
}

/* WordPress Core
-------------------------------------------------------------- */
.wp-caption {
  max-width: 100%;
  margin: 0 0 20px;
  background: #fff;
  border: 2px solid #f0f0f0;
  padding: 10px;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.wp-caption img {
  display: block;
  margin: 0 0 20px;
}

.wp-caption .wp-caption-text {
  margin: 0;
  padding: 0;
  padding-bottom: 10px;
  font-size: 0.8675em;
  font-style: italic;
}

#comments {
  padding: 0;
  margin: 0 0 20px;
}

#comments .comments-title {
  font-size: 1.675em;
}

#comments .comment-list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

#comments .comment-list .comment {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}

#comments .comment-list .comment .comment-body {
  position: relative;
  border: 1px solid #f2f2f2;
  margin: 0 0 10px;
  padding: 20px;
}

#comments .comment-list .comment .comment-body .comment-meta {
  margin: 0 0 20px;
}

#comments .comment-list .comment .comment-body .comment-meta:after {
  content: "";
  display: table;
  clear: both;
}

#comments .comment-list .comment .comment-body .comment-meta .comment-author {
  margin: 0 0 10px;
  vertical-align: middle;
}

#comments .comment-list .comment .comment-body .comment-meta .comment-author > * {
  vertical-align: middle;
  margin: 0;
  padding: 0;
}

#comments .comment-list .comment .comment-body .comment-meta .comment-author img.avatar {
  margin-right: 5px;
}

#comments .comment-list .comment .comment-body .comment-meta .comment-author .fn {
  color: #333333;
}

#comments .comment-list .comment .comment-body .comment-meta .comment-author .says {
  font-style: italic;
  color: #8c8c8c;
}

#comments .comment-list .comment .comment-body .comment-meta .comment-metadata {
  margin: 0;
  font-size: 0.8125em;
}

#comments .comment-list .comment .comment-body .comment-content > *:last-child {
  margin-bottom: 0;
}

#comments .comment-list .comment .comment-body .reply {
  position: absolute;
  top: 20px;
  right: 20px;
  margin: 0;
  padding: 0;
}

#comments .comment-list .comment .children {
  margin-left: 20px;
}

#respond {
  margin: 0 0 20px;
}

#respond #reply-title {
  margin: 0 0 10px;
  font-size: 1.675em;
}

#respond #reply-title > small > a {
  font-size: 0.45em;
  color: #999999;
}

#respond #commentform label {
  display: block;
  padding: 0;
  margin: 0 0 5px;
}

.accordions {
  padding: 20px 0;
}

.accordions .accordion .title {
  position: relative;
  padding-bottom: 10px;
  color: #737373;
  font-family: Open Sans, sans-serif;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0;
  border-bottom: 1px solid #8c8c8c;
}

.accordions .accordion .title .icon {
  display: inline-block;
  margin: 0 5px 0 0;
  vertical-align: middle;
}

.accordions .accordion .title .icon img {
  max-width: 28px;
  max-height: 28px;
}

.accordions .accordion .title:hover {
  cursor: pointer;
}

.accordions .accordion .title:after {
  content: '';
  position: absolute;
  top: 30%;
  right: 0;
  display: block;
  margin: 0;
  padding: 0;
  font-size: 1em;
  color: #4b90ab;
  font-family: FontAwesome;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.accordions .accordion .content {
  padding: 0 1% 2%;
  color: #737373;
}

.accordions .accordion .content a {
  color: #737373;
  text-decoration: underline;
}

.accordions .accordion.expanded .title:after {
  content: '\f068';
}

.accordions .accordion.collapsed .title:after {
  content: '\f067';
}

body.post-type-archive-tribe_events .tribe-bar-disabled,
body.single-tribe_events .tribe-bar-disabled,
body.single-topic .tribe-bar-disabled {
  float: none;
  margin: 0 auto;
  width: 50%;
  z-index: 1;
}

body.post-type-archive-tribe_events .tribe-events-calendar thead th,
body.single-tribe_events .tribe-events-calendar thead th,
body.single-topic .tribe-events-calendar thead th {
  background: #8c0f00;
  font-size: 1.5em;
  border-color: #8c0f00;
}

body.post-type-archive-tribe_events .tribe-events-calendar .tribe-events-tooltip,
body.single-tribe_events .tribe-events-calendar .tribe-events-tooltip,
body.single-topic .tribe-events-calendar .tribe-events-tooltip {
  display: none !important;
}

@media (max-width: 1024px) {
  body.post-type-archive-tribe_events .tribe-events-calendar thead th,
  body.single-tribe_events .tribe-events-calendar thead th,
  body.single-topic .tribe-events-calendar thead th {
    font-size: 1em;
  }
}

@media (max-width: 640px) {
  body.post-type-archive-tribe_events .tribe-bar-disabled,
  body.single-tribe_events .tribe-bar-disabled,
  body.single-topic .tribe-bar-disabled {
    width: 100%;
  }
  body.post-type-archive-tribe_events .tribe-events-page-title,
  body.single-tribe_events .tribe-events-page-title,
  body.single-topic .tribe-events-page-title {
    font-size: 20px;
  }
  body.post-type-archive-tribe_events .tribe-events-calendar thead th,
  body.single-tribe_events .tribe-events-calendar thead th,
  body.single-topic .tribe-events-calendar thead th {
    font-size: 0.75em;
  }
  body.post-type-archive-tribe_events .tribe-events-sub-nav li,
  body.single-tribe_events .tribe-events-sub-nav li,
  body.single-topic .tribe-events-sub-nav li {
    width: 100%;
  }
  body.post-type-archive-tribe_events .tribe-events-sub-nav li a,
  body.single-tribe_events .tribe-events-sub-nav li a,
  body.single-topic .tribe-events-sub-nav li a {
    background: none;
  }
}

body.post-type-archive-tribe_events #page,
body.single-tribe_events #page {
  padding: 5% 0;
}

@media (max-width: 640px) {
  body.post-type-archive-tribe_events #page,
  body.single-tribe_events #page {
    padding: 5% 2%;
  }
}

@media (max-width: 768px) {
  body.single-tribe_events #page .tribe-events-schedule {
    padding: 0;
    background: none;
    border: none;
  }
  body.single-tribe_events #page .tribe-events-sub-nav {
    display: none;
  }
}

#tribe-events a {
  color: #333333;
  font-weight: 600;
}

#tribe-events a:hover {
  color: #404040;
}

#tribe-events #tribe-events-content form,
#tribe-events .tribe-events-event-meta {
  display: none;
}

#tribe-events .tribe-events-schedule h2 {
  color: #333333;
  font-weight: 500;
}

#tribe-events #tribe-bar-form #tribe-bar-views {
  z-index: 1;
}

#tribe-events .tribe-events-notices {
  background: #777777;
  color: #ffffff;
  border-color: #ffffff;
  text-shadow: none;
}

#widgets {
  margin: 0;
  padding: 0;
}

#widgets .widget {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

#widgets .widget .widgettitle {
  font-size: 1.5em;
}

/* Gravity Form Styles */
body .gform_wrapper {
  margin: 0 0 20px;
}

body .gform_wrapper .gform_body .gform_fields {
  margin: 0;
  padding: 0;
}

body .gform_wrapper .gform_body .gform_fields:after {
  content: "";
  display: table;
  clear: both;
}

body .gform_wrapper .gform_body .gform_fields .gfield {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body .gform_wrapper .gform_body .gform_fields .gfield input[type="text"],
body .gform_wrapper .gform_body .gform_fields .gfield input[type="email"],
body .gform_wrapper .gform_body .gform_fields .gfield input[type="password"],
body .gform_wrapper .gform_body .gform_fields .gfield input[type="search"],
body .gform_wrapper .gform_body .gform_fields .gfield input[type="url"],
body .gform_wrapper .gform_body .gform_fields .gfield input[type="date"],
body .gform_wrapper .gform_body .gform_fields .gfield input[type="time"],
body .gform_wrapper .gform_body .gform_fields .gfield input[type="datetime"],
body .gform_wrapper .gform_body .gform_fields .gfield input[type="number"],
body .gform_wrapper .gform_body .gform_fields .gfield input[type="range"],
body .gform_wrapper .gform_body .gform_fields .gfield input[type="tel"],
body .gform_wrapper .gform_body .gform_fields .gfield input[type="range"],
body .gform_wrapper .gform_body .gform_fields .gfield input[type="file"],
body .gform_wrapper .gform_body .gform_fields .gfield textarea, body .gform_wrapper .gform_body .gform_fields .gfield select {
  float: none;
  width: 100%;
  margin-bottom: 5px;
}

body .gform_wrapper .gform_body .gform_fields .gfield input[type="radio"],
body .gform_wrapper .gform_body .gform_fields .gfield input[type="checkbox"] {
  float: none;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
}

body .gform_wrapper .gform_body .gform_fields .gfield input:focus + label,
body .gform_wrapper .gform_body .gform_fields .gfield select:focus + label,
body .gform_wrapper .gform_body .gform_fields .gfield textarea:focus + label {
  font-weight: 600;
}

body .gform_wrapper .gform_body .gform_fields .gfield .gsection_title {
  font-family: Open Sans, sans-serif;
  font-size: 1.675em;
}

body .gform_wrapper .gform_body .gform_fields .gfield .gsection_description {
  padding: 5px 0;
  line-height: 1.3;
}

body .gform_wrapper .gform_body .gform_fields .gfield .gfield_label {
  display: block;
  margin: 0 0 10px;
  font-size: 1em;
  font-weight: 300;
}

body .gform_wrapper .gform_body .gform_fields .gfield .gfield_label .gfield_required {
  margin-left: 5px;
  color: red;
}

body .gform_wrapper .gform_body .gform_fields .gfield .gfield_description {
  padding: 5px 0;
  font-size: .9em;
  line-height: 1.3;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_captcha #recaptcha_area {
  max-width: 450px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_captcha #recaptcha_privacy {
  font-size: 12px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_list table.gfield_list {
  width: 100%;
  max-width: 500px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_list table.gfield_list tr th,
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_list table.gfield_list tr td {
  padding: 0;
  border: none;
  background: none;
  vertical-align: middle;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_list table.gfield_list tr th input[type="text"],
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_list table.gfield_list tr td input[type="text"] {
  display: block;
  margin: 0 0 5px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_list table.gfield_list tr th.gfield_list_icons,
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_list table.gfield_list tr td.gfield_list_icons {
  padding: 0 10px;
  text-align: left;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload input[type="file"], body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_post_image input[type="file"] {
  padding: 0;
  height: auto;
  background: none;
  border: none;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_multiselect select {
  height: auto;
  padding: 0;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_multiselect select option {
  padding: 0 10px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio br, body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox br {
  display: none;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio ul.gfield_radio,
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio ul.gfield_checkbox, body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox ul.gfield_radio,
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox ul.gfield_checkbox {
  margin: 0;
  padding: 0;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio ul.gfield_radio li,
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio ul.gfield_checkbox li, body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox ul.gfield_radio li,
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox ul.gfield_checkbox li {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1.5;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio ul.gfield_radio li label,
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio ul.gfield_checkbox li label, body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox ul.gfield_radio li label,
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox ul.gfield_checkbox li label {
  margin: 0;
  padding: 0;
  font-size: 0.9em;
  vertical-align: middle;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio ul.gfield_radio li input[type="radio"],
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio ul.gfield_radio li input[type="checkbox"],
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio ul.gfield_checkbox li input[type="radio"],
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio ul.gfield_checkbox li input[type="checkbox"], body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox ul.gfield_radio li input[type="radio"],
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox ul.gfield_radio li input[type="checkbox"],
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox ul.gfield_checkbox li input[type="radio"],
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox ul.gfield_checkbox li input[type="checkbox"] {
  vertical-align: middle;
  margin: 0 5px 0 0;
  padding: 0;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex {
  margin: 0;
  padding: 0;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex:after {
  content: "";
  display: table;
  clear: both;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex > *:last-child {
  margin-bottom: 0;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .ginput_left,
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .ginput_right,
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .ginput_cardinfo_left,
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .ginput_cardinfo_right {
  float: left;
  width: 49%;
  margin: 0 0 10px;
  padding: 0;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .ginput_left,
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .ginput_cardinfo_left {
  margin-right: 1%;
  clear: left;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .ginput_right,
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .ginput_cardinfo_right {
  margin-left: 1%;
  clear: right;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .ginput_full {
  display: block;
  width: 100%;
  margin: 0 0 10px;
  padding: 0;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex label {
  display: block;
  font-size: .9em;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex select.ginput_card_expiration.ginput_card_expiration_month,
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex select.ginput_card_expiration.ginput_card_expiration_year {
  float: left;
  width: 49%;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex select.ginput_card_expiration.ginput_card_expiration_month {
  margin-right: 1%;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex select.ginput_card_expiration.ginput_card_expiration_year {
  margin-left: 1%;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container {
  margin: 0;
  padding: 0;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container:after {
  content: "";
  display: table;
  clear: both;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container .gform_card_icon {
  margin-right: 4px;
  text-indent: -9000px;
  background-image: url(../../../wp-content/plugins/gravityforms/images/gf-creditcard-icons.png);
  background-repeat: no-repeat;
  width: 36px;
  height: 32px;
  float: left;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style1 .gform_card_icon_visa {
  background-position: 0 0;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style1 .gform_card_icon_visa.gform_card_icon_selected {
  background-position: 0 -32px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style1 .gform_card_icon_inactive.gform_card_icon_visa {
  background-position: 0 -64px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style1 .gform_card_icon_mastercard {
  background-position: -36px 0;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style1 .gform_card_icon_selected.gform_card_icon_mastercard {
  background-position: -36px -32px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style1 .gform_card_icon_inactive.gform_card_icon_mastercard {
  background-position: -36px -64px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style1 .gform_card_icon_amex {
  background-position: -72px 0;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style1 .gform_card_icon_selected.gform_card_icon_amex {
  background-position: -72px -32px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style1 .gform_card_icon_inactive.gform_card_icon_amex {
  background-position: -72px -64px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style1 .gform_card_icon_discover {
  background-position: -108px 0;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style1 .gform_card_icon_selected.gform_card_icon_discover {
  background-position: -108px -32px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style1 .gform_card_icon_inactive.gform_card_icon_discover {
  background-position: -108px -64px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style1 .gform_card_icon_maestro {
  background-position: -144px 0;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style1 .gform_card_icon_selected.gform_card_icon_maestro {
  background-position: -144px -32px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style1 .gform_card_icon_inactive.gform_card_icon_maestro {
  background-position: -144px -64px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style1 .gform_card_icon_jcb {
  background-position: -180px 0;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style1 .gform_card_icon_selected.gform_card_icon_jcb {
  background-position: -180px -32px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style1 .gform_card_icon_inactive.gform_card_icon_jcb {
  background-position: -180px -64px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style2 .gform_card_icon_visa {
  background-position: 0 -192px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style2 .gform_card_icon_selected.gform_card_icon_visa {
  background-position: 0 -224px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style2 .gform_card_icon_inactive.gform_card_icon_visa {
  background-position: 0 -256px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style2 .gform_card_icon_mastercard {
  background-position: -36px -192px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style2 .gform_card_icon_selected.gform_card_icon_mastercard {
  background-position: -36px -224px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style2 .gform_card_icon_inactive.gform_card_icon_mastercard {
  background-position: -36px -256px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style2 .gform_card_icon_amex {
  background-position: -72px -192px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style2 .gform_card_icon_selected.gform_card_icon_amex {
  background-position: -72px -224px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style2 .gform_card_icon_inactive.gform_card_icon_amex {
  background-position: -72px -256px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style2 .gform_card_icon_discover {
  background-position: -108px -192px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style2 .gform_card_icon_selected.gform_card_icon_discover {
  background-position: -108px -224px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style2 .gform_card_icon_inactive.gform_card_icon_discover {
  background-position: -108px -256px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style2 .gform_card_icon_maestro {
  background-position: -144px -192px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style2 .gform_card_icon_selected.gform_card_icon_maestro {
  background-position: -144px -224px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style2 .gform_card_icon_inactive.gform_card_icon_maestro {
  background-position: -144px -256px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style2 .gform_card_icon_jcb {
  background-position: -180px -192px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style2 .gform_card_icon_selected.gform_card_icon_jcb {
  background-position: -180px -224px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .gform_card_icon_container.gform_card_icon_style2 .gform_card_icon_inactive.gform_card_icon_jcb {
  background-position: -180px -256px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .ginput_card_security_code_icon {
  width: 32px;
  height: 23px;
  background-image: url(../../../wp-content/plugins/gravityforms/images/gf-creditcard-icons.png);
  background-repeat: no-repeat;
  background-position: 0 -128px;
  position: relative;
  top: -1px;
  left: 6px;
  display: -moz-inline-stack;
  display: inline-block;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .ginput_card_security_code {
  max-width: 50%;
}

@media (max-width: 640px) {
  body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .ginput_left,
  body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex .ginput_right {
    display: block;
    width: 100%;
    margin: 0 0 10px;
    padding: 0;
  }
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container .small {
  width: 20%;
  max-width: 120px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container .medium {
  width: 50%;
  max-width: 400px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container .large {
  width: 100%;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container .textarea {
  min-height: 160px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container .gform_drop_area {
  dislpay: block;
  margin: 0 0 20px;
  padding: 30px 50px;
  background: rgba(255, 255, 255, 0.5);
  border: 3px dashed #777;
  text-align: center;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container .gform_drop_area .gform_drop_instructions {
  display: inline-block;
  text-align: center;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container .gform_drop_area input[type="button"].gform_button_select_files {
  display: inline-block;
  height: auto;
  width: auto;
  padding: 0 10px;
  margin: 0 10px;
  background: #777;
  font-size: 1em;
}

@media (max-width: 640px) {
  body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container .small,
  body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container .medium,
  body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container .large {
    width: 100%;
    max-width: 100%;
  }
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_preview {
  padding: 0;
  margin: 0 0 5px;
  font-size: 1em;
  font-weight: 300;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_preview > * {
  vertical-align: baseline;
}

body .gform_wrapper .gform_body .gform_fields .gfield .screen-reader-text {
  position: absolute;
  left: -9999em;
  overflow: hidden;
  height: 1px;
  width: 1px;
}

body .gform_wrapper .gform_body .gform_fields .gfield.gf_column_12, body .gform_wrapper .gform_body .gform_fields .gfield.gf_column_13, body .gform_wrapper .gform_body .gform_fields .gfield.gf_column_14 {
  float: left;
  margin-right: 1%;
  padding: 0;
}

body .gform_wrapper .gform_body .gform_fields .gfield.gf_column_12.last, body .gform_wrapper .gform_body .gform_fields .gfield.gf_column_13.last, body .gform_wrapper .gform_body .gform_fields .gfield.gf_column_14.last {
  margin-right: 0;
}

body .gform_wrapper .gform_body .gform_fields .gfield.gf_column_12 {
  width: 49%;
}

body .gform_wrapper .gform_body .gform_fields .gfield.gf_column_12.left {
  margin-left: 0;
  margin-right: 1%;
}

body .gform_wrapper .gform_body .gform_fields .gfield.gf_column_12.right {
  margin-left: 1%;
  margin-right: 0;
}

body .gform_wrapper .gform_body .gform_fields .gfield.gf_column_13 {
  width: 32.333%;
}

body .gform_wrapper .gform_body .gform_fields .gfield.gf_column_14 {
  width: 24%;
}

body .gform_wrapper .gform_body .gform_fields .gfield.gform_validation_container {
  position: fixed;
  top: 0;
  left: -999em;
  height: 0;
  width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body .gform_wrapper .gform_body .gform_fields .gfield.field_sublabel_above .ginput_container label {
  padding: 10px 0 5px;
}

body .gform_wrapper .gform_body .gform_fields .gfield.field_sublabel_below .ginput_container label {
  padding: 5px 0 10px;
}

@media (max-width: 640px) {
  body .gform_wrapper .gform_body .gform_fields .gfield.gf_column_12, body .gform_wrapper .gform_body .gform_fields .gfield.gf_column_12.left, body .gform_wrapper .gform_body .gform_fields .gfield.gf_column_12.right, body .gform_wrapper .gform_body .gform_fields .gfield.gf_column_13, body .gform_wrapper .gform_body .gform_fields .gfield.gf_column_14 {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}

body .gform_wrapper .gform_body .gform_fields .gfield.hide_label .gfield_label {
  display: none;
}

body .gform_wrapper .gform_body .gform_fields .gfield.gfield_error input, body .gform_wrapper .gform_body .gform_fields .gfield.gfield_error select, body .gform_wrapper .gform_body .gform_fields .gfield.gfield_error textarea {
  border: 1px solid red;
}

body .gform_wrapper .gform_body .gform_fields .gfield.gfield_error .gfield_checkbox label,
body .gform_wrapper .gform_body .gform_fields .gfield.gfield_error .gfield_radio label {
  color: red;
}

body .gform_wrapper .gform_body .gform_fields .gfield.gfield_error .gfield_checkbox label a,
body .gform_wrapper .gform_body .gform_fields .gfield.gfield_error .gfield_radio label a {
  color: red;
}

body .gform_wrapper .gform_body .gform_fields .gfield.gfield_error .gfield_checkbox label a:hover,
body .gform_wrapper .gform_body .gform_fields .gfield.gfield_error .gfield_radio label a:hover {
  color: red;
}

body .gform_wrapper .gform_body .gform_fields.left_label .gfield .gfield_label, body .gform_wrapper .gform_body .gform_fields.right_label .gfield .gfield_label {
  width: 130px;
  margin: 0;
  padding: 10px 0;
  font-size: 1em;
}

body .gform_wrapper .gform_body .gform_fields.left_label .gfield {
  padding-left: 150px;
}

body .gform_wrapper .gform_body .gform_fields.left_label .gfield .gfield_label {
  float: left;
  margin-left: -150px;
}

body .gform_wrapper .gform_body .gform_fields.right_label .gfield {
  padding-right: 150px;
}

body .gform_wrapper .gform_body .gform_fields.right_label .gfield .gfield_label {
  float: right;
  margin-right: -150px;
}

@media (max-width: 640px) {
  body .gform_wrapper .gform_body .gform_fields.left_label .gfield, body .gform_wrapper .gform_body .gform_fields.right_label .gfield {
    padding: 0;
  }
  body .gform_wrapper .gform_body .gform_fields.left_label .gfield .gfield_label, body .gform_wrapper .gform_body .gform_fields.right_label .gfield .gfield_label {
    width: 100%;
    margin: 0 0 10px;
    padding: 0;
    text-align: left;
  }
}

body .gform_wrapper .gform_body .gform_fields.description_above .gsection_description {
  margin: 0 0 10px;
}

body .gform_wrapper .gform_body .gform_fields.description_below .gsection_description {
  margin: 10px 0 0;
}

body .gform_wrapper .gform_footer.left_label {
  padding-left: 150px;
}

body .gform_wrapper .gform_footer.right_label {
  padding-right: 150px;
}

@media (max-width: 640px) {
  body .gform_wrapper .gform_footer.left_label {
    padding-left: 0;
  }
  body .gform_wrapper .gform_footer.right_label {
    padding-right: 0;
  }
}

body .gform_wrapper .validation_error {
  padding: 10px;
  margin: 0 0 20px;
  background: red;
  color: white;
  line-height: 1.3;
}

body .gform_wrapper .validation_message {
  position: absolute;
  top: 0;
  left: -9999em;
  height: 0;
  width: 0;
  overflow: hidden;
}

body .gform_wrapper .gf_progressbar_wrapper {
  width: 100%;
  margin: 0 0 20px 0;
  padding: 0;
}

body .gform_wrapper .gf_progressbar_wrapper:after {
  content: "";
  display: table;
  clear: both;
}

body .gform_wrapper .gf_progressbar_wrapper .gf_progressbar {
  width: 100%;
  height: 20px;
  overflow: hidden;
  line-height: 20px;
  background-color: #333;
}

body .gform_wrapper .gf_progressbar_wrapper .gf_progressbar_percentage {
  height: 20px;
  text-align: center;
  background: #555;
}

body .gform_wrapper .gf_progressbar_wrapper .gf_progressbar_percentage span {
  float: right;
  line-height: 20px;
  font-size: 12px;
  margin-right: 5px;
  margin-left: 5px;
  color: #fff;
}

body .gform_wrapper .gf_progressbar_wrapper .gf_progressbar_percentage.percentbar_0 span {
  color: #999;
}

body .gform_wrapper .gfield_creditcard_warning_message {
  margin: 0 0 20px;
  padding: 20px;
  background: red;
  color: white;
}

body .gform_wrapper .gfield_password_strength {
  width: 200px;
  padding: 5px;
  background-color: #eee;
}

body .gform_wrapper .gfield_password_strength.bad {
  background-color: #ffb78c;
  border-color: #ff853c;
}

body .gform_wrapper .gfield_password_strength.good {
  background-color: #ffec8b;
  border-color: #fc0;
}

body .gform_wrapper .gfield_password_strength.short, body .gform_wrapper .gfield_password_strength.mismatch {
  background-color: #ffa0a0;
  border-color: #f04040;
}

body .gform_wrapper .gfield_password_strength.strong {
  background-color: #c3ff88;
  border-color: #8dff1c;
}

body .gform_wrapper .charleft {
  color: #bbb;
  white-space: nowrap;
}

body .gform_wrapper .gf_clear,
body .gform_wrapper .gf_step_clear {
  display: block;
  width: 100%;
  clear: both;
}

#page-slider {
  position: relative;
  margin: 0;
  padding: 0;
  background: #d6d6ce;
}

#page-slider .slide {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

#page-slider .slide .slide-image {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
  border: none;
}

#page-slider .slide .slide-content {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 30px;
  max-width: 1500px;
}

#page-slider .slide .slide-content .slide-content-inner {
  display: inline-block;
  margin: 0;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.5);
}

#page-slider .slide .slide-content .slide-content-inner .slide-content-header {
  font-size: 1.3em;
  margin-bottom: 10px;
}

#page-slider .slide .slide-content .slide-content-inner > *:last-child {
  margin-bottom: 0;
}

#page-slider .slide.left-aligned .slide-content {
  text-align: left;
}

#page-slider .slide.center-aligned .slide-content {
  text-align: center;
}

#page-slider .slide.right-aligned .slide-content {
  text-align: right;
}

#page-slider.slick-slider .slick-list {
  overflow: visible;
}

#page-slider.slick-slider .slick-list .slick-track {
  overflow: visible;
}

@media (max-width: 1500px) {
  #page-slider .slide .slide-content {
    padding: 20px 120px;
  }
}

@media (max-width: 1024px) {
  #page-slider .slide .slide-image {
    position: relative;
    left: 50%;
    width: auto;
    max-width: none;
    min-width: 100%;
    min-height: 240px;
    max-height: 300px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  #page-slider .slide .slide-image {
    min-height: 200px;
    max-height: 240px;
  }
}

@media (max-width: 640px) {
  #page-slider .slide .slide-image {
    min-height: 160px;
    max-height: 200px;
  }
  #page-slider .slide .slide-content {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    margin: 0;
    padding: 40px 20px 20px;
  }
  #page-slider .slide .slide-content .slide-content-inner {
    display: block;
    margin: 0;
    padding: 0;
    background: none;
    text-align: left;
  }
}

@media (max-width: 480px) {
  #page-slider .slide .slide-image {
    min-height: 120px;
    max-height: 160px;
  }
}

/* Custom gallery styles
-------------------------------------------------------------- */
.wp-gallery {
  display: block;
  margin: 0 -0.5% 20px;
  padding: 0;
}

.wp-gallery:after {
  content: "";
  display: table;
  clear: both;
}

.wp-gallery > * {
  float: left;
  width: 32.333%;
  margin: 0 0.5% 1%;
}

.wp-gallery > * img {
  display: block;
  margin: 5% auto;
  width: auto;
  height: auto;
  max-width: 100%;
  border: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  filter: alpha(opacity=90);
  -moz-opacity: 0.9;
  -khtml-opacity: 0.9;
  opacity: 0.9;
}

.wp-gallery > * img:hover {
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.wp-gallery.columns-1 > * {
  width: 99.000%;
}

.wp-gallery.columns-2 > * {
  width: 49.000%;
}

.wp-gallery.columns-3 > * {
  width: 32.333%;
}

.wp-gallery.columns-4 > * {
  width: 24.000%;
}

.wp-gallery.columns-5 > * {
  width: 19.000%;
}

.wp-gallery.columns-6 > * {
  width: 15.666%;
}

.wp-gallery.columns-7 > * {
  width: 13.285%;
}

.wp-gallery.columns-8 > * {
  width: 11.500%;
}

.wp-gallery.columns-9 > * {
  width: 10.111%;
}

@media (max-width: 1180px) {
  .wp-gallery.columns-9 > *,
  .wp-gallery.columns-8 > *,
  .wp-gallery.columns-7 > * {
    width: 15.666%;
  }
}

@media (max-width: 1040px) {
  .wp-gallery.columns-9 > *,
  .wp-gallery.columns-8 > *,
  .wp-gallery.columns-7 > *,
  .wp-gallery.columns-6 > * {
    width: 19.000%;
  }
}

@media (max-width: 900px) {
  .wp-gallery.columns-9 > *,
  .wp-gallery.columns-8 > *,
  .wp-gallery.columns-7 > *,
  .wp-gallery.columns-6 > *,
  .wp-gallery.columns-5 > * {
    width: 24.000%;
  }
}

@media (max-width: 760px) {
  .wp-gallery.columns-9 > *,
  .wp-gallery.columns-8 > *,
  .wp-gallery.columns-7 > *,
  .wp-gallery.columns-6 > *,
  .wp-gallery.columns-5 > *,
  .wp-gallery.columns-4 > * {
    width: 32.333%;
  }
}

@media (max-width: 640px) {
  .wp-gallery.columns-9 > *,
  .wp-gallery.columns-8 > *,
  .wp-gallery.columns-7 > *,
  .wp-gallery.columns-6 > *,
  .wp-gallery.columns-5 > *,
  .wp-gallery.columns-4 > *,
  .wp-gallery.columns-3 > * {
    width: 49.000%;
  }
}

@media (max-width: 480px) {
  .wp-gallery.columns-9 > *,
  .wp-gallery.columns-8 > *,
  .wp-gallery.columns-7 > *,
  .wp-gallery.columns-6 > *,
  .wp-gallery.columns-5 > *,
  .wp-gallery.columns-4 > *,
  .wp-gallery.columns-3 > *,
  .wp-gallery.columns-2 > * {
    width: 99.000%;
  }
}

.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}

.fancybox-wrap .fancybox-skin {
  position: relative;
  margin: 0;
  padding: 0;
  background: #d6d6ce;
  color: #333333;
  text-shadow: none;
}

.fancybox-wrap .fancybox-outer,
.fancybox-wrap .fancybox-inner {
  position: relative;
}

.fancybox-wrap .fancybox-inner {
  overflow: hidden;
}

.fancybox-wrap .fancybox-title {
  visibility: hidden;
  position: relative;
  text-shadow: none;
  font-size: 1em;
  font-weight: 300;
  z-index: 8050;
}

.fancybox-wrap .fancybox-title-float-wrap {
  position: absolute;
  top: 100%;
  right: 50%;
  margin: 10px auto 0;
  z-index: 8050;
  text-align: center;
}

.fancybox-wrap .fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 10px 20px;
  background: #000000;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  font-size: 0.8125em;
  font-weight: 400;
  line-height: 1.4;
}

.fancybox-wrap .fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #ffffff;
}

.fancybox-wrap .fancybox-title-inside-wrap {
  padding-top: 10px;
}

.fancybox-wrap .fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #ffffff;
  padding: 10px;
  background: #000000;
  background: rgba(0, 0, 0, 0.8);
}

.fancybox-wrap.fancybox-opened {
  z-index: 8030;
}

.fancybox-wrap.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-wrap.fancybox-opened .fancybox-title {
  visibility: visible;
}

.fancybox-wrap .fancybox-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
  z-index: 8060;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.fancybox-wrap .fancybox-nav span {
  position: absolute;
  display: block;
  top: 50%;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  cursor: pointer;
  z-index: 8060;
  background: #000000;
  border: 2px solid #ffffff;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
}

.fancybox-wrap .fancybox-nav span:after {
  line-height: 48px;
  font-size: 24px;
  color: #ffffff;
}

.fancybox-wrap .fancybox-nav.fancybox-prev {
  left: 0;
}

.fancybox-wrap .fancybox-nav.fancybox-prev span {
  left: 20px;
}

.fancybox-wrap .fancybox-nav.fancybox-prev span:after {
  content: "";
}

.fancybox-wrap .fancybox-nav.fancybox-next {
  right: 0;
}

.fancybox-wrap .fancybox-nav.fancybox-next span {
  right: 20px;
}

.fancybox-wrap .fancybox-nav.fancybox-next span:after {
  content: "";
}

.fancybox-wrap .fancybox-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 8060;
  background: #333333;
  border: 2px solid #ffffff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
}

.fancybox-wrap .fancybox-close:after {
  content: "×";
  line-height: 30px;
  font-family: "Times New Roman", FontAwesome;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
}

@media (max-width: 768px) {
  .fancybox-wrap .fancybox-nav span {
    top: auto;
    bottom: 10px;
    margin: 0;
  }
  .fancybox-wrap .fancybox-close {
    position: fixed;
    top: 10px;
    right: 10px;
  }
  .fancybox-wrap .fancybox-title-float-wrap {
    top: auto;
    bottom: 0;
    margin: 0;
  }
  .fancybox-wrap .fancybox-title-float-wrap .child {
    background: #000000;
    background: rgba(0, 0, 0, 0.7);
  }
}

.fancybox-type-iframe .fancybox-inner {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

.fancybox-error {
  color: #333333;
  margin: 0;
  padding: 15px;
}

.fancybox-image,
.fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}

#fancybox-loading div,
.fancybox-close,
.fancybox-prev span,
.fancybox-next span {
  text-align: center;
}

#fancybox-loading div:after,
.fancybox-close:after,
.fancybox-prev span:after,
.fancybox-next span:after {
  color: #000000;
  font-family: FontAwesome;
}

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -24px;
  margin-left: -24px;
  background: #000000;
  cursor: pointer;
  z-index: 8080;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

#fancybox-loading div {
  width: 48px;
  height: 48px;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

#fancybox-loading div:after {
  content: "";
  line-height: 48px;
  font-size: 18px;
  color: #333333;
}

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}

/* Overlay helper */
.fancybox-lock {
  overflow: visible !important;
  width: auto;
}

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}

.fancybox-lock body {
  overflow: hidden !important;
}

.fancybox-lock-test {
  overflow-y: hidden !important;
}

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: rgba(0, 0, 0, 0.9);
}

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

/* Thumbnail helper styles */
#fancybox-thumbs {
  position: fixed;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 8050;
}

#fancybox-thumbs.bottom {
  bottom: 2px;
}

#fancybox-thumbs.top {
  top: 2px;
}

#fancybox-thumbs ul {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

#fancybox-thumbs ul li {
  float: left;
  padding: 1px;
  opacity: 0.5;
}

#fancybox-thumbs ul li.active {
  opacity: 0.75;
  padding: 0;
  border: 1px solid #fff;
}

#fancybox-thumbs ul li:hover {
  opacity: 1;
}

#fancybox-thumbs ul li a {
  display: block;
  position: relative;
  overflow: hidden;
  border: 1px solid #222;
  background: #111;
  outline: none;
}

#fancybox-thumbs ul li img {
  display: block;
  position: relative;
  border: 0;
  padding: 0;
  max-width: none;
}

.slick-slider {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.slick-slider .slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
  height: 100%;
}

.slick-slider .slick-list, .slick-slider .slick-list .slick-list {
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
  -o-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

.slick-slider .slick-list, .slick-slider .slick-list *:hover {
  outline: none;
}

.slick-slider .slick-list.draggable {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-list .slick-track {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-slider .slick-list .slick-track:after {
  content: "";
  display: table;
  clear: both;
}

.slick-slider .slick-list .slick-track .slick-slide {
  float: left;
  height: auto;
  margin: 0;
  padding: 0;
  min-height: 1px;
}

.slick-slider .slick-list .slick-track .slick-slide.dragging img {
  pointer-events: none;
}

.slick-vertical .slick-slider .slick-list .slick-track .slick-slide {
  display: block;
  height: auto;
}

.slick-slider .slick-list .slick-track .slick-slide > *:last-child {
  margin-bottom: 0;
}

.slick-slider .slick-arrow {
  position: absolute;
  z-index: 100;
  display: block;
  height: 48px;
  width: 48px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: #ffffff;
  color: transparent;
  top: 50%;
  margin-top: -24px;
  padding: 0;
  border: none;
  outline: none;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 2px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.1);
}

.slick-slider .slick-arrow:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  font-family: FontAwesome;
  font-size: 32px;
  line-height: 48px;
  color: #000000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0;
  text-align: center;
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
}

.slick-slider .slick-arrow:hover {
  outline: none;
  background: #ffffff;
}

.slick-slider .slick-arrow:hover:before {
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.slick-slider .slick-arrow.slick-disabled:before {
  filter: alpha(opacity=25);
  -moz-opacity: 0.25;
  -khtml-opacity: 0.25;
  opacity: 0.25;
}

.slick-slider .slick-arrow.slick-prev {
  left: 20px;
  text-indent: -5px;
}

.slick-slider .slick-arrow.slick-prev:before {
  content: "";
}

.slick-slider .slick-arrow.slick-next {
  right: 20px;
  text-indent: 5px;
}

.slick-slider .slick-arrow.slick-next:before {
  content: "";
}

.slick-slider .slick-dots {
  position: absolute;
  z-index: 99;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  display: block;
  text-align: center;
  width: 100%;
}

.slick-slider .slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
  cursor: pointer;
}

.slick-slider .slick-dots li button {
  display: block;
  height: 14px;
  width: 14px;
  margin: 0 2px;
  padding: 0;
  border: 0;
  background: transparent;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  cursor: pointer;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.slick-slider .slick-dots li button:hover {
  outline: none;
}

.slick-slider .slick-dots li button:hover:before {
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.slick-slider .slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 14px;
  height: 14px;
  font-family: FontAwesome;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  color: #000000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  filter: alpha(opacity=25);
  -moz-opacity: 0.25;
  -khtml-opacity: 0.25;
  opacity: 0.25;
}

.slick-slider .slick-dots li.slick-active button:before {
  color: #000000;
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
}

.slick-slider.slick-initialized {
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.slick-slider.slick-loading {
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  -khtml-opacity: 0.75;
  opacity: 0.75;
}

.slick-slider.slick-dotted .slick-list {
  margin-bottom: 60px;
}

.ui-datepicker {
  width: 350px;
  padding: 5px;
  background: #d6d6ce;
  border: 1px solid #bfbfb2;
  display: none;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 10px 0;
  background: #333333;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 10px;
  width: 32px;
  height: 32px;
  background: none;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  position: absolute;
  overflow: hidden;
  height: 0;
  width: 0;
  font-size: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}

.ui-datepicker .ui-datepicker-prev:before,
.ui-datepicker .ui-datepicker-next:before {
  content: '';
  font-size: 24px;
  line-height: 32px;
  color: #b3b3b3;
  font-weight: 300;
  font-family: FontAwesome;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  cursor: pointer;
  background: none;
}

.ui-datepicker .ui-datepicker-prev:hover:before,
.ui-datepicker .ui-datepicker-next:hover:before {
  color: #e6e6e6;
}

.ui-datepicker .ui-datepicker-prev {
  left: 10px;
}

.ui-datepicker .ui-datepicker-prev:before {
  content: '\f104';
}

.ui-datepicker .ui-datepicker-next {
  right: 10px;
}

.ui-datepicker .ui-datepicker-next:before {
  content: '\f105';
}

.ui-datepicker .ui-datepicker-title {
  margin: 0;
  padding: 0 40px;
  line-height: 1.3em;
  text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
  height: 32px;
  font-size: 1em;
  margin: 0 1px;
  border: none;
}

.ui-datepicker .ui-datepicker-title select.ui-datepicker-month-year {
  width: 100%;
}

.ui-datepicker .ui-datepicker-title select.ui-datepicker-month, .ui-datepicker .ui-datepicker-title select.ui-datepicker-year {
  width: 45%;
}

.ui-datepicker table {
  width: 100%;
  font-size: 0.9em;
  border-collapse: collapse;
  margin: 0;
}

.ui-datepicker table tr th {
  margin: 0;
  padding: 5px;
  text-align: center;
  font-weight: 300;
  background: #ffffff;
  color: #333333;
  border: none;
}

.ui-datepicker table tr td {
  margin: 0;
  padding: 0;
  background: #d6d6ce;
  border: 1px solid #bfbfb2;
}

.ui-datepicker table tr td span, .ui-datepicker table tr td a {
  display: block;
  padding: 8px 5px;
  text-align: center;
  text-decoration: none;
}

.ui-datepicker table tr:nth-child(odd) td {
  background: #d6d6ce;
}

.ui-datepicker table tr:nth-child(even) td {
  background: #cacac0;
}

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: .7em 0 0 0;
  padding: 0 .2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: .5em .2em .4em;
  cursor: pointer;
  padding: .2em .6em .3em .6em;
  width: auto;
  overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}

.ui-datepicker-trigger {
  margin-left: 10px;
}

.ui-datepicker-trigger:hover {
  cursor: pointer;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
  width: auto;
}

.ui-datepicker.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}

.ui-datepicker.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto .4em;
}

.ui-datepicker.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}

.ui-datepicker.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
  direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

html > body {
  /* Font styles
    -------------------------------------------------------------- */
  /* Color definitions. This will automagically create classes based on the $palette variable in config
    -------------------------------------------------------------- */
  /* Center content on page with built in clearfix
    -------------------------------------------------------------- */
  /* General Usage Styles
    -------------------------------------------------------------- */
  /* Video styles
    -------------------------------------------------------------- */
}

html > body .fw-200 {
  font-weight: 200;
}

html > body .fw-300 {
  font-weight: 300;
}

html > body .fw-400 {
  font-weight: 400;
}

html > body .fw-500 {
  font-weight: 500;
}

html > body .fw-600 {
  font-weight: 600;
}

html > body .fw-700 {
  font-weight: 700;
}

html > body .fw-800 {
  font-weight: 800;
}

html > body .fs-smallest {
  font-size: 0.375em;
}

html > body .fs-smaller {
  font-size: 0.5em;
}

html > body .fs-small {
  font-size: 0.75em;
}

html > body .fs-default {
  font-size: 1em;
}

html > body .fs-large {
  font-size: 1.75em;
}

html > body .fs-larger {
  font-size: 2em;
}

html > body .fs-largest {
  font-size: 2.5em;
}

html > body .color-highlight-primary {
  color: #800000;
}

html > body .bg-highlight-primary {
  background-color: #800000;
}

html > body .color-highlight-secondary {
  color: #0059b3;
}

html > body .bg-highlight-secondary {
  background-color: #0059b3;
}

html > body .color-alert-base {
  color: #777777;
}

html > body .bg-alert-base {
  background-color: #777777;
}

html > body .color-alert-error {
  color: #f64b2f;
}

html > body .bg-alert-error {
  background-color: #f64b2f;
}

html > body .color-alert-success {
  color: #7eb62e;
}

html > body .bg-alert-success {
  background-color: #7eb62e;
}

html > body .color-alert-warning {
  color: #e1b311;
}

html > body .bg-alert-warning {
  background-color: #e1b311;
}

html > body .color-alert-notice {
  color: #2fa9f6;
}

html > body .bg-alert-notice {
  background-color: #2fa9f6;
}

html > body .color-black {
  color: #000000;
}

html > body .bg-black {
  background-color: #000000;
}

html > body .color-white {
  color: #ffffff;
}

html > body .bg-white {
  background-color: #ffffff;
}

html > body .color-gray {
  color: #333333;
}

html > body .bg-gray {
  background-color: #333333;
}

html > body .color-gray-lt {
  color: #d6d6ce;
}

html > body .bg-gray-lt {
  background-color: #d6d6ce;
}

html > body .color-red {
  color: #8c0f00;
}

html > body .bg-red {
  background-color: #8c0f00;
}

html > body .color-orange {
  color: #ff6600;
}

html > body .bg-orange {
  background-color: #ff6600;
}

html > body .color-green {
  color: #008000;
}

html > body .bg-green {
  background-color: #008000;
}

html > body .color-blue {
  color: #4b90ab;
}

html > body .bg-blue {
  background-color: #4b90ab;
}

html > body .color-yellow {
  color: #ffff00;
}

html > body .bg-yellow {
  background-color: #ffff00;
}

html > body .ctr {
  position: relative;
  max-width: 1500px;
  padding: 0 2%;
  margin: 0 auto;
}

html > body .ctr:after {
  content: "";
  display: table;
  clear: both;
}

@media (max-width: 640px) {
  html > body .ctr .ctr {
    padding: 0 20px;
  }
}

html > body .clr:after,
html > body .clearfix:after {
  content: "";
  display: table;
  clear: both;
}

html > body .clear {
  clear: both;
}

html > body .border {
  border: 1px solid #d6d6ce;
  background: #ffffff;
}

html > body img.border {
  padding: 4px;
}

html > body .hidden {
  display: none !important;
}

html > body .block {
  display: block;
}

html > body .inline {
  display: inline;
}

html > body .inline-block {
  display: inline;
  display: inline-block;
}

html > body .nowrap {
  white-space: nowrap;
}

html > body .float-none {
  float: none;
}

html > body .float-left {
  float: left;
}

html > body .float-right {
  float: right;
}

html > body .alignnone {
  text-align: inherit;
}

html > body .aligncenter {
  text-align: center;
}

html > body img.aligncenter,
html > body div.aligncenter,
html > body figure.aligncenter {
  display: block;
  margin: 0 auto 20px;
}

html > body .alignright {
  text-align: right;
}

html > body img.alignright,
html > body div.alignright,
html > body figure.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

@media (max-width: 640px) {
  html > body img.alignright,
  html > body div.alignright,
  html > body figure.alignright {
    float: none;
    display: block;
    margin: 0 auto 20px;
  }
}

html > body .alignleft {
  text-align: left;
}

html > body img.alignleft,
html > body div.alignleft,
html > body figure.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

@media (max-width: 640px) {
  html > body img.alignleft,
  html > body div.alignleft,
  html > body figure.alignleft {
    float: none;
    display: block;
    margin: 0 auto 20px;
  }
}

html > body .line-through {
  position: relative;
  overflow: hidden;
  text-align: center;
}

html > body .line-through:before, html > body .line-through:after {
  position: absolute;
  top: 51%;
  overflow: hidden;
  width: 50%;
  height: 1px;
  content: '\a0';
  background-color: #d6d6ce;
}

html > body .line-through:before {
  margin-left: -52%;
  text-align: right;
}

html > body .line-through:after {
  margin-left: 2%;
}

html > body .alert {
  margin: 0 0 20px;
  padding: 20px;
  background-color: #777777;
  line-height: 1.3;
  color: #ffffff;
}

html > body .alert.error {
  background-color: #f64b2f;
}

html > body .alert.success {
  background-color: #7eb62e;
}

html > body .alert.warning {
  background-color: #e1b311;
}

html > body .alert.notice {
  background-color: #2fa9f6;
}

html > body .video {
  overflow: hidden;
  position: relative;
  height: 0;
  width: 100%;
  margin: 0 auto 20px;
  padding: 0 0 56.25%;
  background: #333333;
}

html > body .video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

#gform_login_widget-2 {
  width: 50%;
}

#gform_login_widget-2 .widgettitle,
#gform_login_widget-2 img,
#gform_login_widget-2 a {
  display: none;
}

@media (max-width: 640px) {
  #gform_login_widget-2 {
    width: 100%;
  }
}

body.error404 #page .ctr,
body.search #page .ctr {
  padding: 3% 0;
}

@media (max-width: 1520px) {
  body.error404 #page .ctr,
  body.search #page .ctr {
    padding: 5%;
  }
}

.mobile-scroll {
  width: 100%;
  overflow: auto;
}

/* Loading Screen
-------------------------------------------------------------- */
#loading {
  position: fixed;
  z-index: 2147483647;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #000000;
  background: rgba(0, 0, 0, 0.8125);
}

#loading.off {
  height: 0;
  width: 0;
  overflow: hidden;
}

#loading > i {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 32px;
  width: 32px;
  margin: -16px 0 0 -16px;
  font-size: 32px;
  line-height: 32px;
  color: #ffffff;
  text-align: center;
}

.social-icons {
  display: inline-block;
  vertical-align: middle;
}

.social-icons > a {
  display: inline-block;
  margin: 0 0.25em 0.25em 0;
  padding: 0;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 25px;
  background: #ffffff;
  color: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.social-icons > a:hover {
  background: #d9d9d9;
  color: #8c0f00;
}

.google-map {
  width: 100%;
  min-height: 400px;
}

#wpadminbar {
  top: auto !important;
  bottom: 0 !important;
}

#wpadminbar .menupop .ab-sub-wrapper,
#wpadminbar .shortlink-input {
  bottom: 32px !important;
}

@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed !important;
  }
}

@media screen and (max-width: 782px) {
  #wpadminbar .menupop .ab-sub-wrapper,
  #wpadminbar .shortlink-input {
    bottom: 46px !important;
  }
}

@media screen and (min-width: 783px) {
  .admin-bar.masthead-fixed .site-header {
    top: 0 !important;
  }
}

body {
  position: relative;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#nav-expand {
  display: block;
  position: relative;
  margin-right: 100px;
}

#nav-expand .lines {
  position: relative;
  display: inline-block;
  height: 100%;
  width: 45px;
}

#nav-expand .lines .line {
  position: absolute;
  width: 45px;
  height: 5px;
  left: 0;
  top: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
  -ms-transition: all 0.35s;
  -o-transition: all 0.35s;
  transition: all 0.35s;
}

#nav-expand .lines .line:nth-of-type(1) {
  top: 21px;
}

#nav-expand .lines .line:nth-of-type(2) {
  top: 34px;
}

#nav-expand .lines .line:nth-of-type(3) {
  top: 47px;
}

#nav-expand .menu {
  display: inline-block;
  text-transform: uppercase;
  color: #4b90ab;
  font-weight: 700;
  position: absolute;
  right: 0px;
  top: 50%;
  font-size: 0.65em;
  z-index: 999;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

#nav-expand:hover {
  background: #599cb6;
}

#nav-expand:hover .menu {
  right: -70px;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

html.mobile-nav-menu-active, html.mobile-nav-menu-active body {
  overflow: hidden;
  left: 350px;
}

html.mobile-nav-menu-active #main-menu {
  z-index: 100;
  visibility: visible;
  left: -20px;
}

html.mobile-nav-menu-active #nav-expand {
  position: fixed;
  top: 0;
  left: 5px;
  z-index: 999999;
  background-color: transparent;
}

html.mobile-nav-menu-active #nav-expand .lines .line {
  background: #ffffff;
  -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
  -ms-transition: all 0.35s;
  -o-transition: all 0.35s;
  transition: all 0.35s;
}

html.mobile-nav-menu-active #nav-expand .lines .line:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 37px;
}

html.mobile-nav-menu-active #nav-expand .lines .line:nth-of-type(2) {
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}

html.mobile-nav-menu-active #nav-expand .lines .line:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 37px;
}

html.mobile-nav-menu-active #nav-expand i:before {
  content: '\f00d';
}

html.mobile-nav-menu-active #nav-expand:hover .lines .line {
  background: #b3b3a4;
}

html.mobile-nav-menu-active #nav-expand:hover .menu {
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}

html.mobile-nav-menu-active .menu {
  display: none !important;
}

#main-menu {
  overflow-y: hidden;
  visibility: hidden;
  position: fixed;
  z-index: 0;
  top: 0;
  left: -375px;
  bottom: 0;
  margin: 0;
  padding: 65px 45px 20px 25px;
  height: 100%;
  width: 100%;
  max-width: 375px;
  background: #8c0f00;
  font-size: 0.9125em;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: inset -6px 0px 12px 0px rgba(0, 0, 0, 0.45);
  -moz-box-shadow: inset -6px 0px 12px 0px rgba(0, 0, 0, 0.45);
  box-shadow: inset -6px 0px 12px 0px rgba(0, 0, 0, 0.45);
}

> #main-menu, #main-menu * {
  border: none !important;
}

#main-menu li {
  position: relative !important;
  float: none !important;
  display: block !important;
  clear: both !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
}

#main-menu li a {
  display: block !important;
  margin: 0 !important;
  padding: 12px 10px !important;
  font-size: 1.750em !important;
  text-align: left !important;
  text-transform: none !important;
  color: #ffffff !important;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

#main-menu li a:hover {
  padding-left: 15px !important;
  color: #b3b3a4 !important;
}

#main-menu li.mobile-only {
  position: relative;
  visibility: visible;
  left: 0;
  height: auto;
  width: auto;
  overflow: auto;
}

#main-menu li ul {
  position: static !important;
  visibility: visible !important;
  padding: 0 0 0 10px !important;
  margin: 0 !important;
  background: none !important;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}

#main-menu > li:last-child {
  padding-bottom: 30px;
}

@media (max-width: 1440px) {
  #main-menu li a {
    font-size: 1.550em !important;
    padding: 8px 10px !important;
  }
}

@media (max-width: 1024px) {
  body {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 13px;
  }
  #nav-expand {
    margin-right: 0;
  }
}

@media (max-width: 640px) {
  #main-menu {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  #nav-expand .lines {
    width: 40px;
  }
  #nav-expand .lines .line {
    width: 40px;
  }
  #nav-expand .lines .line:nth-of-type(1) {
    top: 15px;
  }
  #nav-expand .lines .line:nth-of-type(2) {
    top: 28px;
  }
  #nav-expand .lines .line:nth-of-type(3) {
    top: 41px;
  }
  #nav-expand:hover .menu {
    display: none;
  }
  body {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 11px;
    -webkit-text-size-adjust: none;
  }
}

/* iOS Phone Style
--------------------------------------------- */
a[href^=tel] {
  color: inherit;
  text-decoration: none;
}
