/* ==========================================================================
   Grid
   ========================================================================== */
/*
 * Example uses:
 *
 * <div class="grid">
 *     <div class="grid__cell unit-1-2"></div>
 *     <div class="grid__cell unit-1-2"></div>
 *     <div class="grid__cell unit-1-3"></div>
 *     <div class="grid__cell unit-1-3"></div>
 * </div>
 *
 * <div class="grid grid--center">
 *     <div class="grid__cell unit-1-3"></div>
 *     <div class="grid__cell unit-1-3"></div>
 * </div>
 */
/* Grid core
   ========================================================================== */
/**
 * Grid container
 * Must only contain `.grid` or `.grid__cell` components as children.
 *
 * 1. Adjustment for child element margins.
 * 2. Ensure consistent default alignment/
 * 3. Remove inter-unit whitespace that appears between `inline-block` child
 *    elements. Work for all non-monospace font-families.  If you're using a
 *    monospace base font, you will need to set the `grid` font-family to
 *   `sans-serif` and then redeclare the monospace font on the `grid__cell`
 *    objects.
 * 4. Protect against WebKit bug with optimizelegibility.
 */
/* line 44, ../../../../libraries/griddle/_griddle.scss */
.grid, .pane-sidebar .pane-search-form .container-inline, .pane-sidebar .pane-constant-contact-1, .view-nodehierarchy-children-teasers .view-content, html body #body-wrapper #footer #block-panels-mini-footer .twocolumn-7-5-stacked .wrapper {
  display: block;
  padding: 0;
  margin: 0 -10px;
  /* 1 */
  text-align: left;
  /* 2 */
  letter-spacing: -0.31em;
  /* 3 */
  text-rendering: optimizespeed;
  /* 4 */
}

/**
 * Opera hack
 */
/* line 58, ../../../../libraries/griddle/_griddle.scss */
.opera:-o-prefocus,
.grid,
.pane-sidebar .pane-search-form .container-inline,
.pane-sidebar .pane-constant-contact-1,
.view-nodehierarchy-children-teasers .view-content,
html body #body-wrapper #footer #block-panels-mini-footer .twocolumn-7-5-stacked .wrapper {
  word-spacing: -0.43em;
  /* 3 */
}

/**
 * Child `grid` object adjustments
 * Used for more complex fixed-fluid hybrid grids.
 */
/* line 67, ../../../../libraries/griddle/_griddle.scss */
.grid > .grid, .pane-sidebar .pane-search-form .container-inline > .grid, .pane-sidebar .pane-constant-contact-1 > .grid, .view-nodehierarchy-children-teasers .view-content > .grid, html body #body-wrapper #footer #block-panels-mini-footer .twocolumn-7-5-stacked .wrapper > .grid, .pane-sidebar .pane-search-form .grid > .container-inline, .pane-sidebar .pane-search-form .container-inline > .container-inline, .pane-sidebar .pane-search-form .pane-constant-contact-1 > .container-inline, .view-nodehierarchy-children-teasers .pane-sidebar .pane-search-form .view-content > .container-inline, .pane-sidebar .pane-search-form .view-nodehierarchy-children-teasers .view-content > .container-inline, html body #body-wrapper #footer #block-panels-mini-footer .twocolumn-7-5-stacked .pane-sidebar .pane-search-form .wrapper > .container-inline, .pane-sidebar .pane-search-form html body #body-wrapper #footer #block-panels-mini-footer .twocolumn-7-5-stacked .wrapper > .container-inline, .pane-sidebar .grid > .pane-constant-contact-1, .pane-sidebar .pane-search-form .container-inline > .pane-constant-contact-1, .pane-sidebar .pane-constant-contact-1 > .pane-constant-contact-1, .view-nodehierarchy-children-teasers .pane-sidebar .view-content > .pane-constant-contact-1, .pane-sidebar .view-nodehierarchy-children-teasers .view-content > .pane-constant-contact-1, html body #body-wrapper #footer #block-panels-mini-footer .twocolumn-7-5-stacked .pane-sidebar .wrapper > .pane-constant-contact-1, .pane-sidebar html body #body-wrapper #footer #block-panels-mini-footer .twocolumn-7-5-stacked .wrapper > .pane-constant-contact-1, .view-nodehierarchy-children-teasers .grid > .view-content, .pane-sidebar .pane-search-form .view-nodehierarchy-children-teasers .container-inline > .view-content, .view-nodehierarchy-children-teasers .pane-sidebar .pane-search-form .container-inline > .view-content, .pane-sidebar .view-nodehierarchy-children-teasers .pane-constant-contact-1 > .view-content, .view-nodehierarchy-children-teasers .pane-sidebar .pane-constant-contact-1 > .view-content, .view-nodehierarchy-children-teasers .view-content > .view-content, html body #body-wrapper #footer #block-panels-mini-footer .twocolumn-7-5-stacked .view-nodehierarchy-children-teasers .wrapper > .view-content, .view-nodehierarchy-children-teasers html body #body-wrapper #footer #block-panels-mini-footer .twocolumn-7-5-stacked .wrapper > .view-content, html body #body-wrapper #footer #block-panels-mini-footer .twocolumn-7-5-stacked .grid > .wrapper, .pane-sidebar .pane-search-form html body #body-wrapper #footer #block-panels-mini-footer .twocolumn-7-5-stacked .container-inline > .wrapper, html body #body-wrapper #footer #block-panels-mini-footer .twocolumn-7-5-stacked .pane-sidebar .pane-search-form .container-inline > .wrapper, .pane-sidebar html body #body-wrapper #footer #block-panels-mini-footer .twocolumn-7-5-stacked .pane-constant-contact-1 > .wrapper, html body #body-wrapper #footer #block-panels-mini-footer .twocolumn-7-5-stacked .pane-sidebar .pane-constant-contact-1 > .wrapper, .view-nodehierarchy-children-teasers html body #body-wrapper #footer #block-panels-mini-footer .twocolumn-7-5-stacked .view-content > .wrapper, html body #body-wrapper #footer #block-panels-mini-footer .twocolumn-7-5-stacked .view-nodehierarchy-children-teasers .view-content > .wrapper, html body #body-wrapper #footer #block-panels-mini-footer .twocolumn-7-5-stacked .wrapper > .wrapper {
  overflow: hidden;
  margin-right: 0;
  margin-left: 0;
}

/**
 * Grid units
 * No explicit width by default. Apply `.unit-x-y` classes.
 *
 * 1. Fundamentals of the non-float grid layout mechanism.
 * 2. Apply grid gutter.
 * 3. Controls vertical positioning of units.
 * 4. Keeps content correctly aligned with the grid direction.
 * 5. Reset text defaults.
 */
/* line 84, ../../../../libraries/griddle/_griddle.scss */
.grid__cell, .pane-sidebar .pane-search-form .container-inline .form-item-search-block-form, .pane-sidebar .pane-search-form .container-inline .form-actions, .pane-sidebar .pane-constant-contact-1 .form-item-cc-email-1, .view-nodehierarchy-children-teasers .view-content .views-row, html body #body-wrapper #footer #block-panels-mini-footer .twocolumn-7-5-stacked .wrapper .panels-left, html body #body-wrapper #footer #block-panels-mini-footer .twocolumn-7-5-stacked .wrapper .panels-right {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  display: inline-block;
  /* 1 */
  margin: 0;
  padding: 0 10px;
  /* 2 */
  vertical-align: top;
  /* 3 */
  text-align: left;
  /* 4 */
  letter-spacing: normal;
  /* 5 */
  word-spacing: normal;
  /* 5 */
  text-rendering: auto;
  /* 5 */
}

/* Grid modifiers
   ========================================================================== */
/**
 * Modifier: horizontally center all grid units
 * Allows for automatic unit centering irrespective of the number of
 * units in the grid.
 */
/* line 107, ../../../../libraries/griddle/_griddle.scss */
.grid--center {
  text-align: center;
}

/**
 * Modifier: align horizontally all grid units to the left
 */
/* line 115, ../../../../libraries/griddle/_griddle.scss */
.grid--left {
  text-align: left;
}

/**
 * Modifier: align horizontally all grid units to the right
 */
/* line 123, ../../../../libraries/griddle/_griddle.scss */
.grid--right {
  text-align: right;
}

/* Grid cell modifiers
   ========================================================================== */
/**
 * Modifier: horizontally center one unit
 * Set a specific unit to be horizontally centered. Doesn't affect
 * any other units. Can still contain a child `grid` object.
 */
/* line 136, ../../../../libraries/griddle/_griddle.scss */
.grid__cell--center {
  display: block;
  margin: 0 auto;
}

/**
 * Modifier: align horizontally one unit to the left
 * Set a specific unit to be horizontally on the left. Doesn't affect
 * any other units. Can still contain a child `grid` object.
 */
/* line 147, ../../../../libraries/griddle/_griddle.scss */
.grid__cell--left {
  display: block;
  margin-right: auto;
}

/**
 * Modifier: align horizontally one unit to the right
 * Set a specific unit to be horizontally on the right. Doesn't affect
 * any other units. Can still contain a child `grid` object.
 */
/* line 158, ../../../../libraries/griddle/_griddle.scss */
.grid__cell--right {
  display: block;
  margin-left: auto;
}

/* Proportional units
   ========================================================================== */
/*
 * Specify the proportional width of an object.
 * Primarily for, but not limited to, use with `.grid__cell` components.
 * Intentional redundancy build into each set of unit classes.
 */
/* line 61, ../../../../libraries/griddle/_griddle-build.scss */
.unit-1-2, .unit-3-6, .unit-6-12, .view-nodehierarchy-children-teasers .view-content .views-row {
  width: 50%;
}

/* line 61, ../../../../libraries/griddle/_griddle-build.scss */
.unit-1-3, .unit-2-6, .unit-4-12 {
  width: 33.33333%;
}

/* line 61, ../../../../libraries/griddle/_griddle-build.scss */
.unit-2-3, .unit-4-6, .unit-8-12 {
  width: 66.66667%;
}

/* line 61, ../../../../libraries/griddle/_griddle-build.scss */
.unit-1-6, .unit-2-12, .pane-sidebar .pane-search-form .container-inline .form-actions {
  width: 16.66667%;
}

/* line 61, ../../../../libraries/griddle/_griddle-build.scss */
.unit-5-6, .unit-10-12, .pane-sidebar .pane-search-form .container-inline .form-item-search-block-form, .pane-sidebar .pane-constant-contact-1 .form-item-cc-email-1 {
  width: 83.33333%;
}

/* line 61, ../../../../libraries/griddle/_griddle-build.scss */
.unit-1-12 {
  width: 8.33333%;
}

/* line 61, ../../../../libraries/griddle/_griddle-build.scss */
.unit-3-12 {
  width: 25%;
}

/* line 61, ../../../../libraries/griddle/_griddle-build.scss */
.unit-5-12, html body #body-wrapper #footer #block-panels-mini-footer .twocolumn-7-5-stacked .wrapper .panels-right {
  width: 41.66667%;
}

/* line 61, ../../../../libraries/griddle/_griddle-build.scss */
.unit-7-12, html body #body-wrapper #footer #block-panels-mini-footer .twocolumn-7-5-stacked .wrapper .panels-left {
  width: 58.33333%;
}

/* line 61, ../../../../libraries/griddle/_griddle-build.scss */
.unit-9-12 {
  width: 75%;
}

/* line 61, ../../../../libraries/griddle/_griddle-build.scss */
.unit-11-12 {
  width: 91.66667%;
}

/*!
 *  Font Awesome 4.0.3 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("../../../../libraries/fontawesome/fonts/fontawesome-webfont.eot?v=4.0.3");
  src: url("../../../../libraries/fontawesome/fonts/fontawesome-webfont.eot?#iefix&v=4.0.3") format("embedded-opentype"), url("../../../../libraries/fontawesome/fonts/fontawesome-webfont.woff?v=4.0.3") format("woff"), url("../../../../libraries/fontawesome/fonts/fontawesome-webfont.ttf?v=4.0.3") format("truetype"), url("../../../../libraries/fontawesome/fonts/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* line 4, ../../../../libraries/fontawesome/scss/_core.scss */
.fa {
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* line 10, ../../../../libraries/fontawesome/scss/_larger.scss */
.fa-2x {
  font-size: 2em;
}

/* line 11, ../../../../libraries/fontawesome/scss/_larger.scss */
.fa-3x {
  font-size: 3em;
}

/* line 12, ../../../../libraries/fontawesome/scss/_larger.scss */
.fa-4x {
  font-size: 4em;
}

/* line 13, ../../../../libraries/fontawesome/scss/_larger.scss */
.fa-5x {
  font-size: 5em;
}

/* line 3, ../../../../libraries/fontawesome/scss/_fixed-width.scss */
.fa-fw {
  width: 1.28571em;
  text-align: center;
}

/* line 4, ../../../../libraries/fontawesome/scss/_list.scss */
.fa-ul {
  padding-left: 0;
  margin-left: 2.14286em;
  list-style-type: none;
}
/* line 8, ../../../../libraries/fontawesome/scss/_list.scss */
.fa-ul > li {
  position: relative;
}

/* line 10, ../../../../libraries/fontawesome/scss/_list.scss */
.fa-li {
  position: absolute;
  left: -2.14286em;
  width: 2.14286em;
  top: 0.14286em;
  text-align: center;
}
/* line 16, ../../../../libraries/fontawesome/scss/_list.scss */
.fa-li.fa-lg {
  left: -1.85714em;
}

/* line 4, ../../../../libraries/fontawesome/scss/_bordered-pulled.scss */
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}

/* line 10, ../../../../libraries/fontawesome/scss/_bordered-pulled.scss */
.pull-right {
  float: right;
}

/* line 11, ../../../../libraries/fontawesome/scss/_bordered-pulled.scss */
.pull-left {
  float: left;
}

/* line 14, ../../../../libraries/fontawesome/scss/_bordered-pulled.scss */
.fa.pull-left {
  margin-right: .3em;
}
/* line 15, ../../../../libraries/fontawesome/scss/_bordered-pulled.scss */
.fa.pull-right {
  margin-left: .3em;
}

/* line 4, ../../../../libraries/fontawesome/scss/_spinning.scss */
.fa-spin {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}

@-moz-keyframes spin {
  /* line 12, ../../../../libraries/fontawesome/scss/_spinning.scss */
  0% {
    -moz-transform: rotate(0deg);
  }

  /* line 13, ../../../../libraries/fontawesome/scss/_spinning.scss */
  100% {
    -moz-transform: rotate(359deg);
  }
}

@-webkit-keyframes spin {
  /* line 16, ../../../../libraries/fontawesome/scss/_spinning.scss */
  0% {
    -webkit-transform: rotate(0deg);
  }

  /* line 17, ../../../../libraries/fontawesome/scss/_spinning.scss */
  100% {
    -webkit-transform: rotate(359deg);
  }
}

@-o-keyframes spin {
  /* line 20, ../../../../libraries/fontawesome/scss/_spinning.scss */
  0% {
    -o-transform: rotate(0deg);
  }

  /* line 21, ../../../../libraries/fontawesome/scss/_spinning.scss */
  100% {
    -o-transform: rotate(359deg);
  }
}

@-ms-keyframes spin {
  /* line 24, ../../../../libraries/fontawesome/scss/_spinning.scss */
  0% {
    -ms-transform: rotate(0deg);
  }

  /* line 25, ../../../../libraries/fontawesome/scss/_spinning.scss */
  100% {
    -ms-transform: rotate(359deg);
  }
}

@keyframes spin {
  /* line 28, ../../../../libraries/fontawesome/scss/_spinning.scss */
  0% {
    transform: rotate(0deg);
  }

  /* line 29, ../../../../libraries/fontawesome/scss/_spinning.scss */
  100% {
    transform: rotate(359deg);
  }
}

/* line 4, ../../../../libraries/fontawesome/scss/_rotated-flipped.scss */
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

/* line 5, ../../../../libraries/fontawesome/scss/_rotated-flipped.scss */
.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* line 6, ../../../../libraries/fontawesome/scss/_rotated-flipped.scss */
.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
}

/* line 8, ../../../../libraries/fontawesome/scss/_rotated-flipped.scss */
.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

/* line 9, ../../../../libraries/fontawesome/scss/_rotated-flipped.scss */
.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
  -webkit-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  transform: scale(1, -1);
}

/* line 4, ../../../../libraries/fontawesome/scss/_stacked.scss */
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

/* line 12, ../../../../libraries/fontawesome/scss/_stacked.scss */
.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

/* line 18, ../../../../libraries/fontawesome/scss/_stacked.scss */
.fa-stack-1x {
  line-height: inherit;
}

/* line 19, ../../../../libraries/fontawesome/scss/_stacked.scss */
.fa-stack-2x {
  font-size: 2em;
}

/* line 20, ../../../../libraries/fontawesome/scss/_stacked.scss */
.fa-inverse {
  color: white;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
/* line 4, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-glass:before {
  content: "\f000";
}

/* line 5, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-music:before {
  content: "\f001";
}

/* line 6, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-search:before {
  content: "\f002";
}

/* line 7, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-envelope-o:before {
  content: "\f003";
}

/* line 8, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-heart:before {
  content: "\f004";
}

/* line 9, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-star:before {
  content: "\f005";
}

/* line 10, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-star-o:before {
  content: "\f006";
}

/* line 11, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-user:before {
  content: "\f007";
}

/* line 12, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-film:before {
  content: "\f008";
}

/* line 13, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-th-large:before {
  content: "\f009";
}

/* line 14, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-th:before {
  content: "\f00a";
}

/* line 15, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-th-list:before {
  content: "\f00b";
}

/* line 16, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-check:before {
  content: "\f00c";
}

/* line 17, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-times:before {
  content: "\f00d";
}

/* line 18, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-search-plus:before {
  content: "\f00e";
}

/* line 19, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-search-minus:before {
  content: "\f010";
}

/* line 20, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-power-off:before {
  content: "\f011";
}

/* line 21, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-signal:before {
  content: "\f012";
}

/* line 23, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}

/* line 24, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-trash-o:before {
  content: "\f014";
}

/* line 25, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-home:before {
  content: "\f015";
}

/* line 26, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-file-o:before {
  content: "\f016";
}

/* line 27, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-clock-o:before {
  content: "\f017";
}

/* line 28, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-road:before {
  content: "\f018";
}

/* line 29, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-download:before {
  content: "\f019";
}

/* line 30, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}

/* line 31, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}

/* line 32, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-inbox:before {
  content: "\f01c";
}

/* line 33, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-play-circle-o:before {
  content: "\f01d";
}

/* line 35, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}

/* line 36, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-refresh:before {
  content: "\f021";
}

/* line 37, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-list-alt:before {
  content: "\f022";
}

/* line 38, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-lock:before {
  content: "\f023";
}

/* line 39, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-flag:before {
  content: "\f024";
}

/* line 40, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-headphones:before {
  content: "\f025";
}

/* line 41, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-volume-off:before {
  content: "\f026";
}

/* line 42, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-volume-down:before {
  content: "\f027";
}

/* line 43, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-volume-up:before {
  content: "\f028";
}

/* line 44, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-qrcode:before {
  content: "\f029";
}

/* line 45, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-barcode:before {
  content: "\f02a";
}

/* line 46, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-tag:before {
  content: "\f02b";
}

/* line 47, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-tags:before {
  content: "\f02c";
}

/* line 48, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-book:before {
  content: "\f02d";
}

/* line 49, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-bookmark:before {
  content: "\f02e";
}

/* line 50, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-print:before {
  content: "\f02f";
}

/* line 51, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-camera:before {
  content: "\f030";
}

/* line 52, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-font:before {
  content: "\f031";
}

/* line 53, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-bold:before {
  content: "\f032";
}

/* line 54, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-italic:before {
  content: "\f033";
}

/* line 55, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-text-height:before {
  content: "\f034";
}

/* line 56, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-text-width:before {
  content: "\f035";
}

/* line 57, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-align-left:before {
  content: "\f036";
}

/* line 58, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-align-center:before {
  content: "\f037";
}

/* line 59, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-align-right:before {
  content: "\f038";
}

/* line 60, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-align-justify:before {
  content: "\f039";
}

/* line 61, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-list:before {
  content: "\f03a";
}

/* line 63, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}

/* line 64, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-indent:before {
  content: "\f03c";
}

/* line 65, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-video-camera:before {
  content: "\f03d";
}

/* line 66, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-picture-o:before {
  content: "\f03e";
}

/* line 67, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-pencil:before {
  content: "\f040";
}

/* line 68, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-map-marker:before {
  content: "\f041";
}

/* line 69, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-adjust:before {
  content: "\f042";
}

/* line 70, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-tint:before {
  content: "\f043";
}

/* line 72, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}

/* line 73, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-share-square-o:before {
  content: "\f045";
}

/* line 74, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-check-square-o:before {
  content: "\f046";
}

/* line 75, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-arrows:before {
  content: "\f047";
}

/* line 76, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-step-backward:before {
  content: "\f048";
}

/* line 77, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-fast-backward:before {
  content: "\f049";
}

/* line 78, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-backward:before {
  content: "\f04a";
}

/* line 79, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-play:before {
  content: "\f04b";
}

/* line 80, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-pause:before {
  content: "\f04c";
}

/* line 81, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-stop:before {
  content: "\f04d";
}

/* line 82, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-forward:before {
  content: "\f04e";
}

/* line 83, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-fast-forward:before {
  content: "\f050";
}

/* line 84, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-step-forward:before {
  content: "\f051";
}

/* line 85, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-eject:before {
  content: "\f052";
}

/* line 86, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-chevron-left:before {
  content: "\f053";
}

/* line 87, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-chevron-right:before {
  content: "\f054";
}

/* line 88, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-plus-circle:before {
  content: "\f055";
}

/* line 89, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-minus-circle:before {
  content: "\f056";
}

/* line 90, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-times-circle:before {
  content: "\f057";
}

/* line 91, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-check-circle:before {
  content: "\f058";
}

/* line 92, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-question-circle:before {
  content: "\f059";
}

/* line 93, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-info-circle:before {
  content: "\f05a";
}

/* line 94, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-crosshairs:before {
  content: "\f05b";
}

/* line 95, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-times-circle-o:before {
  content: "\f05c";
}

/* line 96, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-check-circle-o:before {
  content: "\f05d";
}

/* line 97, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-ban:before {
  content: "\f05e";
}

/* line 98, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-arrow-left:before {
  content: "\f060";
}

/* line 99, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-arrow-right:before {
  content: "\f061";
}

/* line 100, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-arrow-up:before {
  content: "\f062";
}

/* line 101, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-arrow-down:before {
  content: "\f063";
}

/* line 103, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}

/* line 104, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-expand:before {
  content: "\f065";
}

/* line 105, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-compress:before {
  content: "\f066";
}

/* line 106, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-plus:before {
  content: "\f067";
}

/* line 107, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-minus:before {
  content: "\f068";
}

/* line 108, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-asterisk:before {
  content: "\f069";
}

/* line 109, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-exclamation-circle:before {
  content: "\f06a";
}

/* line 110, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-gift:before {
  content: "\f06b";
}

/* line 111, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-leaf:before {
  content: "\f06c";
}

/* line 112, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-fire:before {
  content: "\f06d";
}

/* line 113, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-eye:before {
  content: "\f06e";
}

/* line 114, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-eye-slash:before {
  content: "\f070";
}

/* line 116, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}

/* line 117, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-plane:before {
  content: "\f072";
}

/* line 118, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-calendar:before {
  content: "\f073";
}

/* line 119, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-random:before {
  content: "\f074";
}

/* line 120, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-comment:before {
  content: "\f075";
}

/* line 121, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-magnet:before {
  content: "\f076";
}

/* line 122, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-chevron-up:before {
  content: "\f077";
}

/* line 123, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-chevron-down:before {
  content: "\f078";
}

/* line 124, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-retweet:before {
  content: "\f079";
}

/* line 125, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-shopping-cart:before {
  content: "\f07a";
}

/* line 126, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-folder:before {
  content: "\f07b";
}

/* line 127, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-folder-open:before {
  content: "\f07c";
}

/* line 128, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-arrows-v:before {
  content: "\f07d";
}

/* line 129, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-arrows-h:before {
  content: "\f07e";
}

/* line 130, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-bar-chart-o:before {
  content: "\f080";
}

/* line 131, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-twitter-square:before {
  content: "\f081";
}

/* line 132, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-facebook-square:before {
  content: "\f082";
}

/* line 133, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-camera-retro:before {
  content: "\f083";
}

/* line 134, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-key:before {
  content: "\f084";
}

/* line 136, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}

/* line 137, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-comments:before {
  content: "\f086";
}

/* line 138, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-thumbs-o-up:before {
  content: "\f087";
}

/* line 139, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-thumbs-o-down:before {
  content: "\f088";
}

/* line 140, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-star-half:before {
  content: "\f089";
}

/* line 141, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-heart-o:before {
  content: "\f08a";
}

/* line 142, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-sign-out:before {
  content: "\f08b";
}

/* line 143, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-linkedin-square:before {
  content: "\f08c";
}

/* line 144, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-thumb-tack:before {
  content: "\f08d";
}

/* line 145, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-external-link:before {
  content: "\f08e";
}

/* line 146, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-sign-in:before {
  content: "\f090";
}

/* line 147, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-trophy:before {
  content: "\f091";
}

/* line 148, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-github-square:before {
  content: "\f092";
}

/* line 149, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-upload:before {
  content: "\f093";
}

/* line 150, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-lemon-o:before {
  content: "\f094";
}

/* line 151, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-phone:before {
  content: "\f095";
}

/* line 152, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-square-o:before {
  content: "\f096";
}

/* line 153, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-bookmark-o:before {
  content: "\f097";
}

/* line 154, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-phone-square:before {
  content: "\f098";
}

/* line 155, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-twitter:before {
  content: "\f099";
}

/* line 156, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-facebook:before {
  content: "\f09a";
}

/* line 157, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-github:before {
  content: "\f09b";
}

/* line 158, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-unlock:before {
  content: "\f09c";
}

/* line 159, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-credit-card:before {
  content: "\f09d";
}

/* line 160, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-rss:before {
  content: "\f09e";
}

/* line 161, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-hdd-o:before {
  content: "\f0a0";
}

/* line 162, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-bullhorn:before {
  content: "\f0a1";
}

/* line 163, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-bell:before {
  content: "\f0f3";
}

/* line 164, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-certificate:before {
  content: "\f0a3";
}

/* line 165, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-hand-o-right:before {
  content: "\f0a4";
}

/* line 166, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-hand-o-left:before {
  content: "\f0a5";
}

/* line 167, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-hand-o-up:before {
  content: "\f0a6";
}

/* line 168, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-hand-o-down:before {
  content: "\f0a7";
}

/* line 169, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-arrow-circle-left:before {
  content: "\f0a8";
}

/* line 170, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-arrow-circle-right:before {
  content: "\f0a9";
}

/* line 171, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-arrow-circle-up:before {
  content: "\f0aa";
}

/* line 172, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-arrow-circle-down:before {
  content: "\f0ab";
}

/* line 173, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-globe:before {
  content: "\f0ac";
}

/* line 174, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-wrench:before {
  content: "\f0ad";
}

/* line 175, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-tasks:before {
  content: "\f0ae";
}

/* line 176, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-filter:before {
  content: "\f0b0";
}

/* line 177, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-briefcase:before {
  content: "\f0b1";
}

/* line 178, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-arrows-alt:before {
  content: "\f0b2";
}

/* line 180, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}

/* line 182, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}

/* line 183, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-cloud:before {
  content: "\f0c2";
}

/* line 184, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-flask:before {
  content: "\f0c3";
}

/* line 186, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}

/* line 188, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}

/* line 189, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-paperclip:before {
  content: "\f0c6";
}

/* line 191, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}

/* line 192, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-square:before {
  content: "\f0c8";
}

/* line 193, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-bars:before {
  content: "\f0c9";
}

/* line 194, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-list-ul:before {
  content: "\f0ca";
}

/* line 195, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-list-ol:before {
  content: "\f0cb";
}

/* line 196, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-strikethrough:before {
  content: "\f0cc";
}

/* line 197, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-underline:before {
  content: "\f0cd";
}

/* line 198, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-table:before {
  content: "\f0ce";
}

/* line 199, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-magic:before {
  content: "\f0d0";
}

/* line 200, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-truck:before {
  content: "\f0d1";
}

/* line 201, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-pinterest:before {
  content: "\f0d2";
}

/* line 202, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-pinterest-square:before {
  content: "\f0d3";
}

/* line 203, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-google-plus-square:before {
  content: "\f0d4";
}

/* line 204, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-google-plus:before {
  content: "\f0d5";
}

/* line 205, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-money:before {
  content: "\f0d6";
}

/* line 206, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-caret-down:before {
  content: "\f0d7";
}

/* line 207, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-caret-up:before {
  content: "\f0d8";
}

/* line 208, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-caret-left:before {
  content: "\f0d9";
}

/* line 209, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-caret-right:before {
  content: "\f0da";
}

/* line 210, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-columns:before {
  content: "\f0db";
}

/* line 212, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}

/* line 214, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-sort-down:before,
.fa-sort-asc:before {
  content: "\f0dd";
}

/* line 216, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-sort-up:before,
.fa-sort-desc:before {
  content: "\f0de";
}

/* line 217, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-envelope:before {
  content: "\f0e0";
}

/* line 218, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-linkedin:before {
  content: "\f0e1";
}

/* line 220, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}

/* line 222, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}

/* line 224, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}

/* line 225, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-comment-o:before {
  content: "\f0e5";
}

/* line 226, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-comments-o:before {
  content: "\f0e6";
}

/* line 228, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}

/* line 229, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-sitemap:before {
  content: "\f0e8";
}

/* line 230, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-umbrella:before {
  content: "\f0e9";
}

/* line 232, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}

/* line 233, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-lightbulb-o:before {
  content: "\f0eb";
}

/* line 234, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-exchange:before {
  content: "\f0ec";
}

/* line 235, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-cloud-download:before {
  content: "\f0ed";
}

/* line 236, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-cloud-upload:before {
  content: "\f0ee";
}

/* line 237, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-user-md:before {
  content: "\f0f0";
}

/* line 238, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-stethoscope:before {
  content: "\f0f1";
}

/* line 239, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-suitcase:before {
  content: "\f0f2";
}

/* line 240, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-bell-o:before {
  content: "\f0a2";
}

/* line 241, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-coffee:before {
  content: "\f0f4";
}

/* line 242, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-cutlery:before {
  content: "\f0f5";
}

/* line 243, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-file-text-o:before {
  content: "\f0f6";
}

/* line 244, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-building-o:before {
  content: "\f0f7";
}

/* line 245, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-hospital-o:before {
  content: "\f0f8";
}

/* line 246, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-ambulance:before {
  content: "\f0f9";
}

/* line 247, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-medkit:before {
  content: "\f0fa";
}

/* line 248, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-fighter-jet:before {
  content: "\f0fb";
}

/* line 249, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-beer:before {
  content: "\f0fc";
}

/* line 250, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-h-square:before {
  content: "\f0fd";
}

/* line 251, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-plus-square:before {
  content: "\f0fe";
}

/* line 252, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-angle-double-left:before {
  content: "\f100";
}

/* line 253, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-angle-double-right:before {
  content: "\f101";
}

/* line 254, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-angle-double-up:before {
  content: "\f102";
}

/* line 255, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-angle-double-down:before {
  content: "\f103";
}

/* line 256, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-angle-left:before {
  content: "\f104";
}

/* line 257, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-angle-right:before {
  content: "\f105";
}

/* line 258, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-angle-up:before {
  content: "\f106";
}

/* line 259, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-angle-down:before {
  content: "\f107";
}

/* line 260, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-desktop:before {
  content: "\f108";
}

/* line 261, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-laptop:before {
  content: "\f109";
}

/* line 262, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-tablet:before {
  content: "\f10a";
}

/* line 264, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}

/* line 265, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-circle-o:before {
  content: "\f10c";
}

/* line 266, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-quote-left:before {
  content: "\f10d";
}

/* line 267, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-quote-right:before {
  content: "\f10e";
}

/* line 268, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-spinner:before {
  content: "\f110";
}

/* line 269, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-circle:before {
  content: "\f111";
}

/* line 271, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}

/* line 272, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-github-alt:before {
  content: "\f113";
}

/* line 273, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-folder-o:before {
  content: "\f114";
}

/* line 274, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-folder-open-o:before {
  content: "\f115";
}

/* line 275, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-smile-o:before {
  content: "\f118";
}

/* line 276, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-frown-o:before {
  content: "\f119";
}

/* line 277, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-meh-o:before {
  content: "\f11a";
}

/* line 278, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-gamepad:before {
  content: "\f11b";
}

/* line 279, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-keyboard-o:before {
  content: "\f11c";
}

/* line 280, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-flag-o:before {
  content: "\f11d";
}

/* line 281, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-flag-checkered:before {
  content: "\f11e";
}

/* line 282, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-terminal:before {
  content: "\f120";
}

/* line 283, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-code:before {
  content: "\f121";
}

/* line 284, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-reply-all:before {
  content: "\f122";
}

/* line 285, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-mail-reply-all:before {
  content: "\f122";
}

/* line 288, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}

/* line 289, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-location-arrow:before {
  content: "\f124";
}

/* line 290, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-crop:before {
  content: "\f125";
}

/* line 291, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-code-fork:before {
  content: "\f126";
}

/* line 293, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}

/* line 294, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-question:before {
  content: "\f128";
}

/* line 295, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-info:before {
  content: "\f129";
}

/* line 296, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-exclamation:before {
  content: "\f12a";
}

/* line 297, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-superscript:before {
  content: "\f12b";
}

/* line 298, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-subscript:before {
  content: "\f12c";
}

/* line 299, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-eraser:before {
  content: "\f12d";
}

/* line 300, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-puzzle-piece:before {
  content: "\f12e";
}

/* line 301, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-microphone:before {
  content: "\f130";
}

/* line 302, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-microphone-slash:before {
  content: "\f131";
}

/* line 303, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-shield:before {
  content: "\f132";
}

/* line 304, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-calendar-o:before {
  content: "\f133";
}

/* line 305, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-fire-extinguisher:before {
  content: "\f134";
}

/* line 306, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-rocket:before {
  content: "\f135";
}

/* line 307, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-maxcdn:before {
  content: "\f136";
}

/* line 308, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-chevron-circle-left:before {
  content: "\f137";
}

/* line 309, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-chevron-circle-right:before {
  content: "\f138";
}

/* line 310, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-chevron-circle-up:before {
  content: "\f139";
}

/* line 311, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-chevron-circle-down:before {
  content: "\f13a";
}

/* line 312, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-html5:before {
  content: "\f13b";
}

/* line 313, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-css3:before {
  content: "\f13c";
}

/* line 314, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-anchor:before {
  content: "\f13d";
}

/* line 315, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-unlock-alt:before {
  content: "\f13e";
}

/* line 316, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-bullseye:before {
  content: "\f140";
}

/* line 317, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-ellipsis-h:before {
  content: "\f141";
}

/* line 318, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-ellipsis-v:before {
  content: "\f142";
}

/* line 319, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-rss-square:before {
  content: "\f143";
}

/* line 320, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-play-circle:before {
  content: "\f144";
}

/* line 321, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-ticket:before {
  content: "\f145";
}

/* line 322, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-minus-square:before {
  content: "\f146";
}

/* line 323, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-minus-square-o:before {
  content: "\f147";
}

/* line 324, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-level-up:before {
  content: "\f148";
}

/* line 325, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-level-down:before {
  content: "\f149";
}

/* line 326, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-check-square:before {
  content: "\f14a";
}

/* line 327, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-pencil-square:before {
  content: "\f14b";
}

/* line 328, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-external-link-square:before {
  content: "\f14c";
}

/* line 329, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-share-square:before {
  content: "\f14d";
}

/* line 330, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-compass:before {
  content: "\f14e";
}

/* line 332, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}

/* line 334, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}

/* line 336, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}

/* line 338, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}

/* line 339, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-gbp:before {
  content: "\f154";
}

/* line 341, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}

/* line 343, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}

/* line 347, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}

/* line 350, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}

/* line 352, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}

/* line 354, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}

/* line 355, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-file:before {
  content: "\f15b";
}

/* line 356, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-file-text:before {
  content: "\f15c";
}

/* line 357, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-sort-alpha-asc:before {
  content: "\f15d";
}

/* line 358, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-sort-alpha-desc:before {
  content: "\f15e";
}

/* line 359, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-sort-amount-asc:before {
  content: "\f160";
}

/* line 360, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-sort-amount-desc:before {
  content: "\f161";
}

/* line 361, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-sort-numeric-asc:before {
  content: "\f162";
}

/* line 362, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-sort-numeric-desc:before {
  content: "\f163";
}

/* line 363, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-thumbs-up:before {
  content: "\f164";
}

/* line 364, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-thumbs-down:before {
  content: "\f165";
}

/* line 365, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-youtube-square:before {
  content: "\f166";
}

/* line 366, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-youtube:before {
  content: "\f167";
}

/* line 367, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-xing:before {
  content: "\f168";
}

/* line 368, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-xing-square:before {
  content: "\f169";
}

/* line 369, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-youtube-play:before {
  content: "\f16a";
}

/* line 370, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-dropbox:before {
  content: "\f16b";
}

/* line 371, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-stack-overflow:before {
  content: "\f16c";
}

/* line 372, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-instagram:before {
  content: "\f16d";
}

/* line 373, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-flickr:before {
  content: "\f16e";
}

/* line 374, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-adn:before {
  content: "\f170";
}

/* line 375, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-bitbucket:before {
  content: "\f171";
}

/* line 376, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-bitbucket-square:before {
  content: "\f172";
}

/* line 377, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-tumblr:before {
  content: "\f173";
}

/* line 378, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-tumblr-square:before {
  content: "\f174";
}

/* line 379, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-long-arrow-down:before {
  content: "\f175";
}

/* line 380, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-long-arrow-up:before {
  content: "\f176";
}

/* line 381, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-long-arrow-left:before {
  content: "\f177";
}

/* line 382, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-long-arrow-right:before {
  content: "\f178";
}

/* line 383, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-apple:before {
  content: "\f179";
}

/* line 384, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-windows:before {
  content: "\f17a";
}

/* line 385, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-android:before {
  content: "\f17b";
}

/* line 386, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-linux:before {
  content: "\f17c";
}

/* line 387, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-dribbble:before {
  content: "\f17d";
}

/* line 388, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-skype:before {
  content: "\f17e";
}

/* line 389, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-foursquare:before {
  content: "\f180";
}

/* line 390, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-trello:before {
  content: "\f181";
}

/* line 391, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-female:before {
  content: "\f182";
}

/* line 392, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-male:before {
  content: "\f183";
}

/* line 393, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-gittip:before {
  content: "\f184";
}

/* line 394, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-sun-o:before {
  content: "\f185";
}

/* line 395, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-moon-o:before {
  content: "\f186";
}

/* line 396, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-archive:before {
  content: "\f187";
}

/* line 397, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-bug:before {
  content: "\f188";
}

/* line 398, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-vk:before {
  content: "\f189";
}

/* line 399, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-weibo:before {
  content: "\f18a";
}

/* line 400, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-renren:before {
  content: "\f18b";
}

/* line 401, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-pagelines:before {
  content: "\f18c";
}

/* line 402, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-stack-exchange:before {
  content: "\f18d";
}

/* line 403, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}

/* line 404, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-arrow-circle-o-left:before {
  content: "\f190";
}

/* line 406, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}

/* line 407, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-dot-circle-o:before {
  content: "\f192";
}

/* line 408, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-wheelchair:before {
  content: "\f193";
}

/* line 409, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-vimeo-square:before {
  content: "\f194";
}

/* line 411, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}

/* line 412, ../../../../libraries/fontawesome/scss/_icons.scss */
.fa-plus-square-o:before {
  content: "\f196";
}

/* line 17, ../../../../libraries/sass-toolbelt/partials/_components.sass */
a.cta, ul.cta li a, div.cta a, #mini-panel-sidebar ul.menu li a, html body #body-wrapper #page #main-content .pane-nodehierarchy-children table tr td .views-field-view-node a, html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel h2.pane-title, .pane-news .views-row .link a,
.pane-carmel-news .views-row .link a,
.pane-equisports-news .views-row .link a,
.pane-glenville-news .views-row .link a,
.pane-group-benefit-news .views-row .link a,
.pane-leeds-news .views-row .link a,
.pane-millbrook-news .views-row .link a,
.pane-monticello-news .views-row .link a,
.pane-new-windsor-news .views-row .link a,
.pane-poughkeepsie-news .views-row .link a,
.pane-rochester-news .views-row .link a,
.pane-st-thomas-news .views-row .link a,
.pane-st-croix-news .views-row .link a,
.pane-kingston-news .views-row .link a, .form-item input[type='submit'], .form-actions input[type='submit'], form input[type='submit'], .pane-sidebar .pane-search-form .container-inline .form-actions input, .pane-sidebar .pane-constant-contact-1 .form-submit {
  margin-right: 5px;
  font-weight: bold;
  display: inline-block;
  border: none;
  text-decoration: none;
}

/* line 24, ../../../../libraries/sass-toolbelt/partials/_components.sass */
a.cta, ul.cta li a, div.cta a, #mini-panel-sidebar ul.menu li a, html body #body-wrapper #page #main-content .pane-nodehierarchy-children table tr td .views-field-view-node a, html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel h2.pane-title, .pane-news .views-row .link a,
.pane-carmel-news .views-row .link a,
.pane-equisports-news .views-row .link a,
.pane-glenville-news .views-row .link a,
.pane-group-benefit-news .views-row .link a,
.pane-leeds-news .views-row .link a,
.pane-millbrook-news .views-row .link a,
.pane-monticello-news .views-row .link a,
.pane-new-windsor-news .views-row .link a,
.pane-poughkeepsie-news .views-row .link a,
.pane-rochester-news .views-row .link a,
.pane-st-thomas-news .views-row .link a,
.pane-st-croix-news .views-row .link a,
.pane-kingston-news .views-row .link a, .form-item input[type='submit'], .form-actions input[type='submit'], form input[type='submit'], .pane-sidebar .pane-search-form .container-inline .form-actions input, .pane-sidebar .pane-constant-contact-1 .form-submit {
  padding: 10px;
  line-height: 12px;
  font-size: 12px;
}

/* line 35, ../../../../libraries/sass-toolbelt/partials/_components.sass */
.form-item input[type='submit'], .form-actions input[type='submit'], form input[type='submit'] {
  background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255, 255, 255, 0.3)), color-stop(100%, rgba(0, 0, 0, 0.1)));
  background: -webkit-linear-gradient(rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0.1));
  background: -moz-linear-gradient(rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0.1));
  background: -o-linear-gradient(rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0.1));
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0.1));
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.8);
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.8);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  color: rgba(0, 0, 0, 0.9);
}
/* line 41, ../../../../libraries/sass-toolbelt/partials/_components.sass */
.form-item input[type='submit']:hover, .form-actions input[type='submit']:hover, form input[type='submit']:hover {
  background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0.1)), color-stop(100%, rgba(255, 255, 255, 0.3)));
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.3));
  background: -moz-linear-gradient(rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.3));
  background: -o-linear-gradient(rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.3));
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.3));
}

/* line 44, ../../../../libraries/sass-toolbelt/partials/_components.sass */
a.cta, ul.cta li a, div.cta a, #mini-panel-sidebar ul.menu li a, html body #body-wrapper #page #main-content .pane-nodehierarchy-children table tr td .views-field-view-node a, html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel h2.pane-title, .pane-news .views-row .link a,
.pane-carmel-news .views-row .link a,
.pane-equisports-news .views-row .link a,
.pane-glenville-news .views-row .link a,
.pane-group-benefit-news .views-row .link a,
.pane-leeds-news .views-row .link a,
.pane-millbrook-news .views-row .link a,
.pane-monticello-news .views-row .link a,
.pane-new-windsor-news .views-row .link a,
.pane-poughkeepsie-news .views-row .link a,
.pane-rochester-news .views-row .link a,
.pane-st-thomas-news .views-row .link a,
.pane-st-croix-news .views-row .link a,
.pane-kingston-news .views-row .link a, .form-item input[type='submit'], .form-actions input[type='submit'], form input[type='submit'], .pane-sidebar .pane-search-form .container-inline .form-actions input, .pane-sidebar .pane-constant-contact-1 .form-submit {
  background-color: #336699;
  color: white;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
/* line 50, ../../../../libraries/sass-toolbelt/partials/_components.sass */
a.cta:hover, ul.cta li a:hover, div.cta a:hover, #mini-panel-sidebar ul.menu li a:hover, html body #body-wrapper #page #main-content .pane-nodehierarchy-children table tr td .views-field-view-node a:hover, html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel h2.pane-title:hover, .pane-news .views-row .link a:hover,
.pane-carmel-news .views-row .link a:hover,
.pane-equisports-news .views-row .link a:hover,
.pane-glenville-news .views-row .link a:hover,
.pane-group-benefit-news .views-row .link a:hover,
.pane-leeds-news .views-row .link a:hover,
.pane-millbrook-news .views-row .link a:hover,
.pane-monticello-news .views-row .link a:hover,
.pane-new-windsor-news .views-row .link a:hover,
.pane-poughkeepsie-news .views-row .link a:hover,
.pane-rochester-news .views-row .link a:hover,
.pane-st-thomas-news .views-row .link a:hover,
.pane-st-croix-news .views-row .link a:hover,
.pane-kingston-news .views-row .link a:hover, .form-item input[type='submit']:hover, .form-actions input[type='submit']:hover, form input[type='submit']:hover, .pane-sidebar .pane-search-form .container-inline .form-actions input:hover, .pane-sidebar .pane-constant-contact-1 .form-submit:hover {
  background-color: #cccccc;
}

/* line 56, ../../../../libraries/sass-toolbelt/partials/_components.sass */
.form-item-title.form-type-textfield label {
  display: none;
}
/* line 58, ../../../../libraries/sass-toolbelt/partials/_components.sass */
.form-item-title.form-type-textfield input {
  font-size: 24px;
  padding: 10px;
}

/* line 69, ../../../../libraries/sass-toolbelt/partials/_components.sass */
.vertical-tabs {
  padding-left: 0;
  width: 100%;
}
/* line 72, ../../../../libraries/sass-toolbelt/partials/_components.sass */
.vertical-tabs .vertical-tabs-list {
  width: 30%;
  box-sizing: border-box;
  float: left;
  border-bottom: 1px solid #cccccc;
  border-left: 1px solid #cccccc;
  border-top: 1px solid #cccccc;
  padding: 0;
}
/* line 81, ../../../../libraries/sass-toolbelt/partials/_components.sass */
.vertical-tabs .vertical-tabs-list li {
  border-bottom: 1px solid #cccccc;
  padding: 10px;
  background-color: #e6e6e6;
}
/* line 85, ../../../../libraries/sass-toolbelt/partials/_components.sass */
.vertical-tabs .vertical-tabs-list li.selected {
  background-color: white;
}
/* line 87, ../../../../libraries/sass-toolbelt/partials/_components.sass */
.vertical-tabs .vertical-tabs-list li.last {
  border-bottom-width: 0;
}
/* line 89, ../../../../libraries/sass-toolbelt/partials/_components.sass */
.vertical-tabs .vertical-tabs-list li a {
  text-decoration: none;
  color: black;
}
/* line 92, ../../../../libraries/sass-toolbelt/partials/_components.sass */
.vertical-tabs .vertical-tabs-list li a .summary {
  font-size: 12px;
  color: #1a1a1a;
}
/* line 95, ../../../../libraries/sass-toolbelt/partials/_components.sass */
.vertical-tabs .vertical-tabs-panes {
  width: 70%;
  box-sizing: border-box;
  float: right;
  padding: 10px;
  margin: 0px;
  border-top: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  border-left: 1px solid #cccccc;
}
/* line 105, ../../../../libraries/sass-toolbelt/partials/_components.sass */
.vertical-tabs .vertical-tabs-panes fieldset {
  border-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* line 111, ../../../../libraries/sass-toolbelt/partials/_components.sass */
ul.tabs {
  padding: 0 3px;
  margin: 10px 0;
  border-bottom: 1px solid #cccccc;
  overflow: hidden;
  *zoom: 1;
}
/* line 116, ../../../../libraries/sass-toolbelt/partials/_components.sass */
ul.tabs li {
  float: left;
  display: block;
  margin: 0 5px 0 0;
  position: relative;
  top: 1px;
}
/* line 122, ../../../../libraries/sass-toolbelt/partials/_components.sass */
ul.tabs li a {
  border-color: #bbbbbb;
  border-style: solid solid none solid;
  border-width: 1px;
  display: block;
  padding: 5px 10px;
  margin: 0;
  color: #333333;
  background-color: #e9e9e9;
  text-shadow: 0 1px 0 white;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  text-decoration: none;
}
/* line 135, ../../../../libraries/sass-toolbelt/partials/_components.sass */
ul.tabs li a.active {
  background-color: white;
  border-bottom: 1px solid white;
}

/* line 160, ../../../../libraries/sass-toolbelt/partials/_components.sass */
.vertical-tabs .vertical-tabs-list {
  margin: 0px;
  list-style: none;
}
/* line 163, ../../../../libraries/sass-toolbelt/partials/_components.sass */
.vertical-tabs .vertical-tabs-list li {
  margin: 0px;
  list-style: none;
}

/* line 8, ../../../../libraries/sass-toolbelt/partials/_forms.sass */
.form-type-textfield input, .webform-component-textfield input, .webform-component-email input, .form-type-textarea textarea, .webform-component-textfield textarea, .form-type-password input {
  background-color: white;
  border: 1px solid #cccccc;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 0 16px 0;
  padding: 10px;
  height: 37px;
  box-sizing: border-box;
}
/* line 2, ../../../../libraries/sass-toolbelt/partials/_forms.sass */
.form-type-textfield input:focus, .webform-component-textfield input:focus, .webform-component-email input:focus, .form-type-textarea textarea:focus, .webform-component-textfield textarea:focus, .form-type-password input:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  -webkit-transition: box-shadow 0.15s ease-in-out;
  -moz-transition: box-shadow 0.15s ease-in-out;
  -o-transition: box-shadow 0.15s ease-in-out;
  transition: box-shadow 0.15s ease-in-out;
}
/* line 20, ../../../../libraries/sass-toolbelt/partials/_forms.sass */
.form-type-textfield input[disabled], .webform-component-textfield input[disabled], .webform-component-email input[disabled], .form-type-textarea textarea[disabled], .webform-component-textfield textarea[disabled], .form-type-password input[disabled] {
  background-color: #dddddd;
}

/* line 1, ../../muses/muses/sass/partials/__components.sass */
html body h1 {
  font-size: 32px;
  line-height: 38.4px;
}

/* line 5, ../../muses/muses/sass/partials/__components.sass */
html body h2 {
  font-size: 25.6px;
  line-height: 32px;
}

/* line 1, ../../muses/thalia/sass/partials/__components.sass */
html body h1 {
  font-size: 32px;
  line-height: 38.4px;
}

/* line 5, ../../muses/thalia/sass/partials/__components.sass */
html body h2 {
  font-size: 25.6px;
  line-height: 32px;
}

/* line 10, ../../muses/thalia/sass/partials/__components.sass */
.pane-sidebar .pane-constant-contact-1 h2.pane-title, html body #body-wrapper #page #main-content .pane-nodehierarchy-children table tr td .views-field-title a {
  font-size: 22.4px;
  line-height: 32px;
}

/* line 2, ../../muses/thalia/sass/partials/__styleguide.sass */
html input, html select, html textarea, html body {
  font: 14px/16.8px "Helvetica Neue", Helvetica, Arial, sans-serif;
}
/* line 4, ../../muses/thalia/sass/partials/__styleguide.sass */
html body {
  color: #5b594f;
  font-size: 14px;
  line-height: 18px;
}
/* line 6, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: black;
}
/* line 10, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body a {
  color: #db9200;
  text-decoration: none;
}
/* line 13, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body a:hover {
  text-decoration: underline;
}
/* line 16, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body h1, html body body h2, html body body h3, html body body h4, html body body h5, html body body h6 {
  font-weight: bold;
}
/* line 19, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body h1, html body body h2, html body body h3, html body body h4, html body body h5, html body body h6, html body body p {
  margin: 10px 0;
}
/* line 22, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body h2, html body body h1 {
  font-size: 32px;
  line-height: 36px;
}
/* line 24, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body h3 {
  font-size: 28px;
  line-height: 32px;
}
/* line 26, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body h4 {
  font-size: 24px;
  line-height: 28px;
}
/* line 28, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body h5 {
  font-size: 20px;
  line-height: 24px;
}
/* line 30, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body h6 {
  font-size: 16px;
  line-height: 20px;
}
/* line 33, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body p, html body body li {
  font-size: 12px;
  line-height: 16px;
}
/* line 36, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body .centered {
  text-align: center;
}
/* line 39, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body em {
  color: #5b594f;
}
/* line 42, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body strong {
  font-weight: bold;
}
/* line 45, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body ol {
  margin-left: 30px;
  list-style: decimal;
}
/* line 49, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body hr {
  border-top: 1px solid #d8d7d2;
  border-bottom: 1px solid #5b594f;
  border-left: none;
  border-right: none;
  clear: both;
}
/* line 56, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body label {
  font-weight: normal;
}
/* line 60, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body blockquote:before {
  float: left;
  display: block;
  font-size: 24px;
}
/* line 64, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body blockquote p {
  padding: 0 30px;
}
/* line 9, ../../muses/thalia/sass/partials/__styleguide.sass */
html body h1 {
  margin: 0;
  font-size: 30px;
  line-height: 36px;
  font-weight: 300;
}
/* line 15, ../../muses/thalia/sass/partials/__styleguide.sass */
html body .field-name-field-subtitle {
  color: #c6c6c6;
  font-size: 24px;
  line-height: 30px;
  font-weight: 300;
}
/* line 20, ../../muses/thalia/sass/partials/__styleguide.sass */
html body h2 {
  margin: 20px 0 0px;
  font-family: Georgia, Times, "Times New Roman", serif;
}
/* line 24, ../../muses/thalia/sass/partials/__styleguide.sass */
html body h3, html body h4, html body h5, html body h6 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
/* line 27, ../../muses/thalia/sass/partials/__styleguide.sass */
html body h2, html body h1 {
  font-weight: normal;
}
/* line 29, ../../muses/thalia/sass/partials/__styleguide.sass */
html body h2 {
  font-weight: normal;
}
/* line 31, ../../muses/thalia/sass/partials/__styleguide.sass */
html body h3 {
  font-size: 25.6px;
  line-height: 32px;
}
/* line 34, ../../muses/thalia/sass/partials/__styleguide.sass */
html body h4 {
  font-size: 19.2px;
  line-height: 25.6px;
}
/* line 37, ../../muses/thalia/sass/partials/__styleguide.sass */
html body h5 {
  font-size: 16px;
  line-height: 22.4px;
}
/* line 40, ../../muses/thalia/sass/partials/__styleguide.sass */
html body h6 {
  font-size: 16px;
  line-height: 22.4px;
  font-style: oblique;
}
/* line 45, ../../muses/thalia/sass/partials/__styleguide.sass */
html body p, html body .prose p {
  margin-bottom: 17px;
}
/* line 47, ../../muses/thalia/sass/partials/__styleguide.sass */
html body p:last-child, html body .prose p:last-child {
  margin-bottom: 0;
}
/* line 49, ../../muses/thalia/sass/partials/__styleguide.sass */
html body a {
  color: #db9200;
  text-decoration: none;
}
/* line 52, ../../muses/thalia/sass/partials/__styleguide.sass */
html body a:hover {
  color: #173975;
}
/* line 54, ../../muses/thalia/sass/partials/__styleguide.sass */
html body table {
  color: #5b594f;
}
/* line 56, ../../muses/thalia/sass/partials/__styleguide.sass */
html body table td, html body table th {
  padding: 5px;
  vertical-align: middle;
}
/* line 59, ../../muses/thalia/sass/partials/__styleguide.sass */
html body table td .form-item, html body table th .form-item {
  margin-bottom: 0;
}
/* line 61, ../../muses/thalia/sass/partials/__styleguide.sass */
html body table td.active, html body table th.active {
  background: none;
}
/* line 64, ../../muses/thalia/sass/partials/__styleguide.sass */
html body table tr:nth-child(even) td {
  background: transparent;
}
/* line 66, ../../muses/thalia/sass/partials/__styleguide.sass */
html body sub, html body sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
/* line 71, ../../muses/thalia/sass/partials/__styleguide.sass */
html body sup {
  top: -0.5em;
}
/* line 73, ../../muses/thalia/sass/partials/__styleguide.sass */
html body sub {
  bottom: -0.25em;
}
/* line 76, ../../muses/thalia/sass/partials/__styleguide.sass */
html body pre, html body code {
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  max-width: 100%;
  overflow: auto;
  padding: 10px;
  border: 1px solid #c6c6c6;
}
/* line 89, ../../muses/thalia/sass/partials/__styleguide.sass */
html body ol {
  list-style: decimal;
  margin: 1em 0;
  padding: 0 0 0 25px;
}
/* line 93, ../../muses/thalia/sass/partials/__styleguide.sass */
html body ol li {
  list-style: decimal;
  margin-bottom: 10px;
}
/* line 97, ../../muses/thalia/sass/partials/__styleguide.sass */
html body ul {
  margin: 1em 0;
  padding: 0 0 0 25px;
}
/* line 100, ../../muses/thalia/sass/partials/__styleguide.sass */
html body ul li {
  margin-bottom: 10px;
}
/* line 103, ../../muses/thalia/sass/partials/__styleguide.sass */
html body dl {
  margin: 1em;
  padding: 0 0 0 25px;
}
/* line 106, ../../muses/thalia/sass/partials/__styleguide.sass */
html body dl dt, html body dl dd {
  display: inline-block;
  color: #5b594f;
  padding: 5px 10px;
  width: 100%;
}
/* line 111, ../../muses/thalia/sass/partials/__styleguide.sass */
html body dl dd {
  padding-left: 25px;
  margin-bottom: 15px;
}
/* line 118, ../../muses/thalia/sass/partials/__styleguide.sass */
html body .panels-left .panel-pane .pane-content ul {
  list-style: disc;
}
/* line 120, ../../muses/thalia/sass/partials/__styleguide.sass */
html body .panels-left .panel-pane .pane-content ul li {
  list-style: disc;
}
/* line 123, ../../muses/thalia/sass/partials/__styleguide.sass */
html body ul.links, html body ul.menu {
  list-style: none;
}
/* line 125, ../../muses/thalia/sass/partials/__styleguide.sass */
html body ul.links li, html body ul.menu li {
  margin-right: 15px;
}

/* line 4, ../../muses/thalia/sass/partials/_admin.sass */
.admin-page #page #main-content {
  padding: 25px 3%;
}
/* line 8, ../../muses/thalia/sass/partials/_admin.sass */
.admin-page #page #main-content .twocolumn-8-4-stacked > .inside .panels-header {
  padding: 0;
  background: white;
}
/* line 11, ../../muses/thalia/sass/partials/_admin.sass */
.admin-page #page #main-content fieldset {
  border: 1px solid #c6c6c6;
  padding: 10px;
  margin-bottom: 25px;
}
/* line 15, ../../muses/thalia/sass/partials/_admin.sass */
.admin-page #page #main-content fieldset a.fieldset-title {
  padding: 0 15px;
}

/* line 3, ../../muses/thalia/sass/partials/_cta.sass */
a.cta, ul.cta li a, div.cta a, #mini-panel-sidebar ul.menu li a, html body #body-wrapper #page #main-content .pane-nodehierarchy-children table tr td .views-field-view-node a, html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel h2.pane-title, .pane-news .views-row .link a,
.pane-carmel-news .views-row .link a,
.pane-equisports-news .views-row .link a,
.pane-glenville-news .views-row .link a,
.pane-group-benefit-news .views-row .link a,
.pane-leeds-news .views-row .link a,
.pane-millbrook-news .views-row .link a,
.pane-monticello-news .views-row .link a,
.pane-new-windsor-news .views-row .link a,
.pane-poughkeepsie-news .views-row .link a,
.pane-rochester-news .views-row .link a,
.pane-st-thomas-news .views-row .link a,
.pane-st-croix-news .views-row .link a,
.pane-kingston-news .views-row .link a {
  font-style: normal;
  background-color: #c6c6c6;
  font-size: 20px;
  line-height: 24px;
  font-weight: normal;
  padding: 13px 0;
  margin-bottom: 20px;
  color: white;
  text-align: center;
}
/* line 14, ../../muses/thalia/sass/partials/_cta.sass */
a.cta i, ul.cta li a i, div.cta a i, #mini-panel-sidebar ul.menu li a i, html body #body-wrapper #page #main-content .pane-nodehierarchy-children table tr td .views-field-view-node a i, html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel h2.pane-title i, .pane-news .views-row .link a i,
.pane-carmel-news .views-row .link a i,
.pane-equisports-news .views-row .link a i,
.pane-glenville-news .views-row .link a i,
.pane-group-benefit-news .views-row .link a i,
.pane-leeds-news .views-row .link a i,
.pane-millbrook-news .views-row .link a i,
.pane-monticello-news .views-row .link a i,
.pane-new-windsor-news .views-row .link a i,
.pane-poughkeepsie-news .views-row .link a i,
.pane-rochester-news .views-row .link a i,
.pane-st-thomas-news .views-row .link a i,
.pane-st-croix-news .views-row .link a i,
.pane-kingston-news .views-row .link a i {
  padding-left: 10px;
}
/* line 16, ../../muses/thalia/sass/partials/_cta.sass */
a.cta:hover, ul.cta li a:hover, div.cta a:hover, #mini-panel-sidebar ul.menu li a:hover, html body #body-wrapper #page #main-content .pane-nodehierarchy-children table tr td .views-field-view-node a:hover, html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel h2.pane-title:hover, .pane-news .views-row .link a:hover,
.pane-carmel-news .views-row .link a:hover,
.pane-equisports-news .views-row .link a:hover,
.pane-glenville-news .views-row .link a:hover,
.pane-group-benefit-news .views-row .link a:hover,
.pane-leeds-news .views-row .link a:hover,
.pane-millbrook-news .views-row .link a:hover,
.pane-monticello-news .views-row .link a:hover,
.pane-new-windsor-news .views-row .link a:hover,
.pane-poughkeepsie-news .views-row .link a:hover,
.pane-rochester-news .views-row .link a:hover,
.pane-st-thomas-news .views-row .link a:hover,
.pane-st-croix-news .views-row .link a:hover,
.pane-kingston-news .views-row .link a:hover {
  background-color: #5b594f;
  color: white;
  text-decoration: none;
}

/* line 24, ../../muses/thalia/sass/partials/_cta.sass */
ul.cta {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}
/* line 28, ../../muses/thalia/sass/partials/_cta.sass */
ul.cta li {
  display: inline-block;
  padding: 0;
}
/* line 31, ../../muses/thalia/sass/partials/_cta.sass */
ul.cta li:last-child {
  border-right: none;
}

/* line 36, ../../muses/thalia/sass/partials/_cta.sass */
div.cta {
  padding: 0;
  margin: 25px 0;
  display: inline;
}

/* line 4, ../../muses/thalia/sass/partials/_footer.sass */
html body #body-wrapper #main-content {
  padding: 30px;
}
/* line 9, ../../muses/thalia/sass/partials/_footer.sass */
html body #body-wrapper #main-content #block-system-main .twocolumn-8-4-stacked > .inside .panels-footer {
  border-top: 1px solid #c6c6c6;
  padding-top: 30px;
  margin-top: 30px;
}

/* line 6, ../../muses/thalia/sass/partials/_forms.sass */
.form-type-textarea textarea, .webform-component-textfield textarea {
  min-height: 200px;
}

/* line 13, ../../muses/thalia/sass/partials/_forms.sass */
.form-actions {
  clear: both;
}

/* line 16, ../../muses/thalia/sass/partials/_forms.sass */
.form-item, .form-actions, form {
  margin-bottom: 15px;
}
/* line 18, ../../muses/thalia/sass/partials/_forms.sass */
.form-item label, .form-actions label, form label {
  font-size: 12.8px;
  margin: 10px 10px 5px 0;
}
/* line 21, ../../muses/thalia/sass/partials/_forms.sass */
.form-item input, .form-actions input, form input {
  width: 100%;
  padding: 3px 10px;
  color: #c6c6c6;
}
/* line 25, ../../muses/thalia/sass/partials/_forms.sass */
.form-item input:focus, .form-actions input:focus, form input:focus {
  border-color: #5b594f;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(42, 68, 41, 0.6);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(42, 68, 41, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(42, 68, 41, 0.6);
  color: #333333;
}
/* line 31, ../../muses/thalia/sass/partials/_forms.sass */
.form-item input[type='checkbox'], .form-item input[type='radio'], .form-item input[type='file'], .form-actions input[type='checkbox'], .form-actions input[type='radio'], .form-actions input[type='file'], form input[type='checkbox'], form input[type='radio'], form input[type='file'] {
  border: 1px solid #c6c6c6;
  width: auto;
  margin-right: 10px;
  padding: 3px;
}
/* line 36, ../../muses/thalia/sass/partials/_forms.sass */
.form-item input[type='submit'], .form-actions input[type='submit'], form input[type='submit'] {
  background: #5b594f;
  font-weight: bold;
  font-size: 14px;
  line-height: 16.8px;
  text-transform: uppercase;
  width: auto;
}
/* line 44, ../../muses/thalia/sass/partials/_forms.sass */
.form-item input[type='submit']:hover, .form-actions input[type='submit']:hover, form input[type='submit']:hover {
  background: #333333;
}

/* line 48, ../../muses/thalia/sass/partials/_forms.sass */
.form-item-title.form-type-textfield label {
  display: block;
}

/* line 55, ../../muses/thalia/sass/partials/_forms.sass */
.vertical-tabs {
  margin-bottom: 25px;
}

/* line 72, ../../muses/thalia/sass/partials/_forms.sass */
.pane-sidebar .pane-search-form .container-inline .form-actions input {
  background: #5b594f;
  font-weight: bold;
  font-size: 14px;
  line-height: 16.8px;
  text-transform: uppercase;
}
/* line 79, ../../muses/thalia/sass/partials/_forms.sass */
.pane-sidebar .pane-search-form .container-inline .form-actions input:hover {
  background: #333333;
}
/* line 81, ../../muses/thalia/sass/partials/_forms.sass */
.pane-sidebar .pane-constant-contact-1 {
  letter-spacing: inherit;
}
/* line 84, ../../muses/thalia/sass/partials/_forms.sass */
.pane-sidebar .pane-constant-contact-1 h2.pane-title {
  margin-left: 10px !important;
}
/* line 90, ../../muses/thalia/sass/partials/_forms.sass */
.pane-sidebar .pane-constant-contact-1 .form-item-cc-email-1 label {
  display: none;
}
/* line 92, ../../muses/thalia/sass/partials/_forms.sass */
.pane-sidebar .pane-constant-contact-1 .form-submit {
  background: #5b594f;
  font-weight: bold;
  font-size: 14px;
  line-height: 16.8px;
  text-transform: uppercase;
}
/* line 99, ../../muses/thalia/sass/partials/_forms.sass */
.pane-sidebar .pane-constant-contact-1 .form-submit:hover {
  background: #333333;
}

/* line 3, ../../muses/thalia/sass/partials/_layout.sass */
html body #body-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
/* line 7, ../../muses/thalia/sass/partials/_layout.sass */
html body #body-wrapper img {
  max-width: 100%;
  width: auto;
  height: auto;
}
/* line 12, ../../muses/thalia/sass/partials/_layout.sass */
html body #body-wrapper #branding a#site-logo {
  display: block;
  margin: 0 auto;
  max-width: 375px;
  width: 75%;
}
/* line 18, ../../muses/thalia/sass/partials/_layout.sass */
html body #body-wrapper #page #main-content {
  padding: 30px;
}
/* line 23, ../../muses/thalia/sass/partials/_layout.sass */
html body #body-wrapper #page #main-content #block-system-main .twocolumn-8-4-stacked > .inside .panels-header {
  padding-bottom: 30px;
}
/* line 26, ../../muses/thalia/sass/partials/_layout.sass */
html body #body-wrapper #page #main-content #block-system-main .twocolumn-8-4-stacked > .inside .wrapper .panels-left {
  display: inline-block;
  width: 74.6%;
  padding: 0;
  margin: 0;
  vertical-align: top;
}
/* line 32, ../../muses/thalia/sass/partials/_layout.sass */
html body #body-wrapper #page #main-content #block-system-main .twocolumn-8-4-stacked > .inside .wrapper .panels-left > .inside {
  margin-right: 15px;
}
/* line 34, ../../muses/thalia/sass/partials/_layout.sass */
html body #body-wrapper #page #main-content #block-system-main .twocolumn-8-4-stacked > .inside .wrapper .panels-right {
  display: inline-block;
  width: 25%;
  padding: 0px;
  margin: 0;
  vertical-align: top;
}
/* line 40, ../../muses/thalia/sass/partials/_layout.sass */
html body #body-wrapper #page #main-content #block-system-main .twocolumn-8-4-stacked > .inside .wrapper .panels-right > .inside {
  margin-left: 15px;
}

/* line 53, ../../muses/thalia/sass/partials/_layout.sass */
.view-nodehierarchy-children-teasers {
  margin-top: 35px;
}

/* line 63, ../../muses/thalia/sass/partials/_layout.sass */
#block-system-main .panel-layouts .panels-header {
  margin-bottom: 30px;
}

/* line 7, ../../muses/thalia/sass/partials/_mainmenu.sass */
html body #body-wrapper #page #main-content .panels-header .pane-main-menu {
  margin-bottom: 30px;
}
/* line 9, ../../muses/thalia/sass/partials/_mainmenu.sass */
html body #body-wrapper #page #main-content .panels-header .pane-main-menu .menu-block-wrapper {
  display: table;
  width: 100%;
}
/* line 12, ../../muses/thalia/sass/partials/_mainmenu.sass */
html body #body-wrapper #page #main-content .panels-header .pane-main-menu .menu-block-wrapper ul.menu {
  display: table-row;
}
/* line 14, ../../muses/thalia/sass/partials/_mainmenu.sass */
html body #body-wrapper #page #main-content .panels-header .pane-main-menu .menu-block-wrapper ul.menu li {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  background: #db9200;
}
/* line 19, ../../muses/thalia/sass/partials/_mainmenu.sass */
html body #body-wrapper #page #main-content .panels-header .pane-main-menu .menu-block-wrapper ul.menu li:hover, html body #body-wrapper #page #main-content .panels-header .pane-main-menu .menu-block-wrapper ul.menu li.active {
  background: #b27200;
}
/* line 21, ../../muses/thalia/sass/partials/_mainmenu.sass */
html body #body-wrapper #page #main-content .panels-header .pane-main-menu .menu-block-wrapper ul.menu li a {
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  padding: 30px 0;
  display: block;
}

/* line 1, ../../muses/thalia/sass/partials/_mobilemenu.sass */
#mobile-links {
  display: none;
}
/* line 3, ../../muses/thalia/sass/partials/_mobilemenu.sass */
#mobile-links #mobile-menu {
  display: none;
}

/* line 2, ../../muses/thalia/sass/partials/_sidebar.sass */
#mini-panel-sidebar ul.menu {
  margin: 0;
  padding: 0;
}
/* line 5, ../../muses/thalia/sass/partials/_sidebar.sass */
#mini-panel-sidebar ul.menu li {
  margin-right: 0;
}
/* line 7, ../../muses/thalia/sass/partials/_sidebar.sass */
#mini-panel-sidebar ul.menu li a {
  display: block;
  margin-right: 0;
}

/* line 7, ../../muses/thalia/sass/partials/_slideshow.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_slideshow .panel-2col {
  overflow: hidden;
}
/* line 10, ../../muses/thalia/sass/partials/_slideshow.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_slideshow .panel-col-first .inside {
  margin: 0 30px 30px 0;
}
/* line 12, ../../muses/thalia/sass/partials/_slideshow.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_slideshow .panel-col-first .inside img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
/* line 17, ../../muses/thalia/sass/partials/_slideshow.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_slideshow .panel-col-last .inside {
  margin: 0px;
}
/* line 19, ../../muses/thalia/sass/partials/_slideshow.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_slideshow .panel-col-last .inside table {
  color: #5b594f;
}
/* line 22, ../../muses/thalia/sass/partials/_slideshow.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_slideshow .panel-col-last .inside table tr:nth-child(2n) td {
  background: transparent;
}
/* line 25, ../../muses/thalia/sass/partials/_slideshow.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_slideshow .panel-col-last .inside table tr td {
  padding: 0;
}
/* line 27, ../../muses/thalia/sass/partials/_slideshow.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_slideshow .panel-col-last .inside table tr td .grid-item {
  position: relative;
}
/* line 30, ../../muses/thalia/sass/partials/_slideshow.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_slideshow .panel-col-last .inside table tr td .grid-item .views-field-field-image img {
  display: block;
}
/* line 32, ../../muses/thalia/sass/partials/_slideshow.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_slideshow .panel-col-last .inside table tr td .grid-item .views-field-title {
  background: rgba(219, 146, 0, 0.8);
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out;
}
/* line 44, ../../muses/thalia/sass/partials/_slideshow.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_slideshow .panel-col-last .inside table tr td .grid-item .views-field-title a {
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 26px;
  margin: 15px;
  color: white;
}
/* line 52, ../../muses/thalia/sass/partials/_slideshow.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_slideshow .panel-col-last .inside table tr td .grid-item.flex-active .views-field-title {
  opacity: 1;
}
/* line 55, ../../muses/thalia/sass/partials/_slideshow.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_slideshow .panel-col-last .inside table tr.row-1 td {
  padding-bottom: 30px;
}
/* line 57, ../../muses/thalia/sass/partials/_slideshow.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_slideshow .panel-col-last .inside table .col-1 {
  padding-right: 15px;
}
/* line 59, ../../muses/thalia/sass/partials/_slideshow.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_slideshow .panel-col-last .inside table .col-2 {
  padding-left: 15px;
}
/* line 61, ../../muses/thalia/sass/partials/_slideshow.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_slideshow .flexslider {
  margin: 0px;
  background: 0px;
  border: none;
  border-radius: 0px;
}

@font-face {
  font-family: "Candara";
  src: url("/sites/all/themes/custom/marshallsterling_theme/fonts/Candara.eot");
  src: url("/sites/all/themes/custom/marshallsterling_theme/fonts/Candara.eot?#iefix") format("embedded-opentype"), url("/sites/all/themes/custom/marshallsterling_theme/fonts/Candara.woff") format("woff"), url("/sites/all/themes/custom/marshallsterling_theme/fonts/Candara.ttf") format("truetype"), url("/sites/all/themes/custom/marshallsterling_theme/fonts/Candara.svg#ccc0239eab42bbb5a9f9357fb3e30787") format("svg");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "Candara";
  src: url("/sites/all/themes/custom/marshallsterling_theme/fonts/Candara Bold.eot");
  src: url("/sites/all/themes/custom/marshallsterling_theme/fonts/Candara Bold.eot?#iefix") format("embedded-opentype"), url("/sites/all/themes/custom/marshallsterling_theme/fonts/Candara Bold.woff") format("woff"), url("/sites/all/themes/custom/marshallsterling_theme/fonts/Candara Bold.ttf") format("truetype"), url("/sites/all/themes/custom/marshallsterling_theme/fonts/Candara Bold.svg#179114b18bc3c0cda4672e560f4631f3") format("svg");
  font-style: normal;
  font-weight: bold;
}

@font-face {
  font-family: "Candara";
  src: url("/sites/all/themes/custom/marshallsterling_theme/fonts/Candara Italic.eot");
  src: url("/sites/all/themes/custom/marshallsterling_theme/fonts/Candara Italic.eot?#iefix") format("embedded-opentype"), url("/sites/all/themes/custom/marshallsterling_theme/fonts/Candara Italic.woff") format("woff"), url("/sites/all/themes/custom/marshallsterling_theme/fonts/Candara Italic.ttf") format("truetype"), url("/sites/all/themes/custom/marshallsterling_theme/fonts/Candara Italic.svg#2c19993e1cb61b01cc64b4eea0b7637a") format("svg");
  font-style: italic;
  font-weight: normal;
}

@font-face {
  font-family: "Candara";
  src: url("/sites/all/themes/custom/marshallsterling_theme/fonts/Candara Bold Italic.eot");
  src: url("/sites/all/themes/custom/marshallsterling_theme/fonts/Candara Bold Italic.eot?#iefix") format("embedded-opentype"), url("/sites/all/themes/custom/marshallsterling_theme/fonts/Candara Bold Italic.woff") format("woff"), url("/sites/all/themes/custom/marshallsterling_theme/fonts/Candara Bold Italic.ttf") format("truetype"), url("/sites/all/themes/custom/marshallsterling_theme/fonts/Candara Bold Italic.svg#e8b13d3099c1936c9586ab46cb31ec0c") format("svg");
  font-style: italic;
  font-weight: bold;
}

/* line 2, ../sass/partials/__styleguide.sass */
html input, html select, html textarea, html body {
  font: 14px/16.8px "Helvetica Neue", Helvetica, Arial, sans-serif;
}
/* line 4, ../sass/partials/__styleguide.sass */
html body {
  color: #666666;
  font-size: 14px;
  line-height: 18px;
}
/* line 6, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: black;
}
/* line 10, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body a {
  color: #3f6691;
  text-decoration: none;
}
/* line 13, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body a:hover {
  text-decoration: underline;
}
/* line 16, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body h1, html body body h2, html body body h3, html body body h4, html body body h5, html body body h6 {
  font-weight: bold;
}
/* line 19, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body h1, html body body h2, html body body h3, html body body h4, html body body h5, html body body h6, html body body p {
  margin: 10px 0;
}
/* line 22, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body h2, html body body h1 {
  font-size: 32px;
  line-height: 36px;
}
/* line 24, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body h3 {
  font-size: 28px;
  line-height: 32px;
}
/* line 26, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body h4 {
  font-size: 24px;
  line-height: 28px;
}
/* line 28, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body h5 {
  font-size: 20px;
  line-height: 24px;
}
/* line 30, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body h6 {
  font-size: 16px;
  line-height: 20px;
}
/* line 33, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body p, html body body li {
  font-size: 12px;
  line-height: 16px;
}
/* line 36, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body .centered {
  text-align: center;
}
/* line 39, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body em {
  color: #666666;
}
/* line 42, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body strong {
  font-weight: bold;
}
/* line 45, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body ol {
  margin-left: 30px;
  list-style: decimal;
}
/* line 49, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body hr {
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #666666;
  border-left: none;
  border-right: none;
  clear: both;
}
/* line 56, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body label {
  font-weight: normal;
}
/* line 60, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body blockquote:before {
  float: left;
  display: block;
  font-size: 24px;
}
/* line 64, ../../../../libraries/sass-toolbelt/partials/_type.sass */
html body body blockquote p {
  padding: 0 30px;
}
/* line 9, ../sass/partials/__styleguide.sass */
html body h1 {
  font-family: "Candara";
  margin: 20px 0 0;
  font-size: 30px;
  line-height: 36px;
  font-weight: 300;
}
/* line 16, ../sass/partials/__styleguide.sass */
html body .field-name-field-subtitle {
  color: #e1e1e1;
  font-size: 24px;
  line-height: 30px;
  font-weight: 300;
}
/* line 21, ../sass/partials/__styleguide.sass */
html body h2 {
  margin: 20px 0 0px;
  font-family: "Candara";
}
/* line 25, ../sass/partials/__styleguide.sass */
html body h3, html body h4, html body h5, html body h6 {
  font-family: "Candara";
}
/* line 28, ../sass/partials/__styleguide.sass */
html body h2, html body h1 {
  font-weight: normal;
}
/* line 30, ../sass/partials/__styleguide.sass */
html body h2 {
  font-weight: normal;
}
/* line 32, ../sass/partials/__styleguide.sass */
html body h3 {
  font-size: 25.6px;
  line-height: 32px;
}
/* line 35, ../sass/partials/__styleguide.sass */
html body h4 {
  font-size: 19.2px;
  line-height: 25.6px;
}
/* line 38, ../sass/partials/__styleguide.sass */
html body h5 {
  font-size: 16px;
  line-height: 22.4px;
}
/* line 41, ../sass/partials/__styleguide.sass */
html body h6 {
  font-size: 16px;
  line-height: 22.4px;
  font-style: oblique;
}
/* line 46, ../sass/partials/__styleguide.sass */
html body p, html body .prose p {
  margin-bottom: 17px;
}
/* line 48, ../sass/partials/__styleguide.sass */
html body p:last-child, html body .prose p:last-child {
  margin-bottom: 0;
}
/* line 50, ../sass/partials/__styleguide.sass */
html body a {
  color: #3f6691;
  text-decoration: none;
}
/* line 53, ../sass/partials/__styleguide.sass */
html body a:hover {
  color: #001844;
}
/* line 55, ../sass/partials/__styleguide.sass */
html body table {
  color: #666666;
}
/* line 57, ../sass/partials/__styleguide.sass */
html body table td, html body table th {
  padding: 5px;
  vertical-align: top;
}
/* line 60, ../sass/partials/__styleguide.sass */
html body table td .form-item, html body table th .form-item {
  margin-bottom: 0;
}
/* line 62, ../sass/partials/__styleguide.sass */
html body table td.active, html body table th.active {
  background: none;
}
/* line 65, ../sass/partials/__styleguide.sass */
html body table tr:nth-child(even) td {
  background: transparent;
}
/* line 67, ../sass/partials/__styleguide.sass */
html body sub, html body sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
/* line 72, ../sass/partials/__styleguide.sass */
html body sup {
  top: -0.5em;
}
/* line 74, ../sass/partials/__styleguide.sass */
html body sub {
  bottom: -0.25em;
}
/* line 77, ../sass/partials/__styleguide.sass */
html body pre, html body code {
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  max-width: 100%;
  overflow: auto;
  padding: 10px;
  border: 1px solid #e1e1e1;
}
/* line 90, ../sass/partials/__styleguide.sass */
html body ol {
  list-style: decimal;
  margin: 1em 0;
  padding: 0 0 0 25px;
}
/* line 94, ../sass/partials/__styleguide.sass */
html body ol li {
  list-style: decimal;
  margin-bottom: 10px;
}
/* line 98, ../sass/partials/__styleguide.sass */
html body ul {
  margin: 1em 0;
  padding: 0 0 0 25px;
}
/* line 101, ../sass/partials/__styleguide.sass */
html body ul li {
  margin-bottom: 10px;
}
/* line 104, ../sass/partials/__styleguide.sass */
html body dl {
  margin: 1em;
  padding: 0 0 0 25px;
}
/* line 107, ../sass/partials/__styleguide.sass */
html body dl dt, html body dl dd {
  display: inline-block;
  color: #666666;
  padding: 5px 10px;
  width: 100%;
}
/* line 112, ../sass/partials/__styleguide.sass */
html body dl dd {
  padding-left: 25px;
  margin-bottom: 15px;
}
/* line 119, ../sass/partials/__styleguide.sass */
html body .panels-left .panel-pane .pane-content ul {
  list-style: disc;
}
/* line 121, ../sass/partials/__styleguide.sass */
html body .panels-left .panel-pane .pane-content ul li {
  list-style: disc;
}
/* line 124, ../sass/partials/__styleguide.sass */
html body ul.links, html body ul.menu {
  list-style: none;
}
/* line 126, ../sass/partials/__styleguide.sass */
html body ul.links li, html body ul.menu li {
  margin-right: 15px;
}

/* line 1, ../sass/partials/_cta.sass */
a.cta, ul.cta li a, div.cta a, #mini-panel-sidebar ul.menu li a, html body #body-wrapper #page #main-content .pane-nodehierarchy-children table tr td .views-field-view-node a, html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel h2.pane-title, .pane-news .views-row .link a,
.pane-carmel-news .views-row .link a,
.pane-equisports-news .views-row .link a,
.pane-glenville-news .views-row .link a,
.pane-group-benefit-news .views-row .link a,
.pane-leeds-news .views-row .link a,
.pane-millbrook-news .views-row .link a,
.pane-monticello-news .views-row .link a,
.pane-new-windsor-news .views-row .link a,
.pane-poughkeepsie-news .views-row .link a,
.pane-rochester-news .views-row .link a,
.pane-st-thomas-news .views-row .link a,
.pane-st-croix-news .views-row .link a,
.pane-kingston-news .views-row .link a {
  font-style: normal;
  font-family: "Candara";
  background-color: #001844;
  font-size: 14px;
  line-height: 14px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 15px 20px;
  margin-bottom: 5px;
  color: white;
  text-align: center;
}
/* line 14, ../sass/partials/_cta.sass */
a.cta i, ul.cta li a i, div.cta a i, #mini-panel-sidebar ul.menu li a i, html body #body-wrapper #page #main-content .pane-nodehierarchy-children table tr td .views-field-view-node a i, html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel h2.pane-title i, .pane-news .views-row .link a i,
.pane-carmel-news .views-row .link a i,
.pane-equisports-news .views-row .link a i,
.pane-glenville-news .views-row .link a i,
.pane-group-benefit-news .views-row .link a i,
.pane-leeds-news .views-row .link a i,
.pane-millbrook-news .views-row .link a i,
.pane-monticello-news .views-row .link a i,
.pane-new-windsor-news .views-row .link a i,
.pane-poughkeepsie-news .views-row .link a i,
.pane-rochester-news .views-row .link a i,
.pane-st-thomas-news .views-row .link a i,
.pane-st-croix-news .views-row .link a i,
.pane-kingston-news .views-row .link a i {
  padding-left: 10px;
}
/* line 16, ../sass/partials/_cta.sass */
a.cta:hover, ul.cta li a:hover, div.cta a:hover, #mini-panel-sidebar ul.menu li a:hover, html body #body-wrapper #page #main-content .pane-nodehierarchy-children table tr td .views-field-view-node a:hover, html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel h2.pane-title:hover, .pane-news .views-row .link a:hover,
.pane-carmel-news .views-row .link a:hover,
.pane-equisports-news .views-row .link a:hover,
.pane-glenville-news .views-row .link a:hover,
.pane-group-benefit-news .views-row .link a:hover,
.pane-leeds-news .views-row .link a:hover,
.pane-millbrook-news .views-row .link a:hover,
.pane-monticello-news .views-row .link a:hover,
.pane-new-windsor-news .views-row .link a:hover,
.pane-poughkeepsie-news .views-row .link a:hover,
.pane-rochester-news .views-row .link a:hover,
.pane-st-thomas-news .views-row .link a:hover,
.pane-st-croix-news .views-row .link a:hover,
.pane-kingston-news .views-row .link a:hover {
  background-color: #ffe401;
  color: #3f6691;
  text-decoration: none;
}

/* line 24, ../sass/partials/_cta.sass */
ul.cta {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}
/* line 28, ../sass/partials/_cta.sass */
ul.cta li {
  display: inline-block;
  padding: 0;
}
/* line 31, ../sass/partials/_cta.sass */
ul.cta li:last-child {
  border-right: none;
}

/* line 36, ../sass/partials/_cta.sass */
div.cta {
  padding: 0;
  margin: 25px 0;
  display: inline;
}

/* line 4, ../sass/partials/_forms.sass */
.form-type-textarea textarea, .webform-component-textfield textarea {
  min-height: 200px;
}

/* line 11, ../sass/partials/_forms.sass */
.form-actions {
  clear: both;
}

/* line 14, ../sass/partials/_forms.sass */
.form-item, .form-actions, form {
  margin-bottom: 15px;
}
/* line 16, ../sass/partials/_forms.sass */
.form-item label, .form-actions label, form label {
  font-size: 12.8px;
  margin: 10px 10px 5px 0;
}
/* line 19, ../sass/partials/_forms.sass */
.form-item input, .form-item input[type='password'], .form-actions input, .form-actions input[type='password'], form input, form input[type='password'] {
  width: 100%;
  padding: 3px 10px;
}
/* line 22, ../sass/partials/_forms.sass */
.form-item input[type='checkbox'], .form-item input[type='radio'], .form-item input[type='file'], .form-actions input[type='checkbox'], .form-actions input[type='radio'], .form-actions input[type='file'], form input[type='checkbox'], form input[type='radio'], form input[type='file'] {
  border: 1px solid #cccccc;
  width: auto;
  margin-right: 10px;
  padding: 3px;
}
/* line 27, ../sass/partials/_forms.sass */
.form-item input[type='submit'], .form-actions input[type='submit'], form input[type='submit'] {
  width: auto;
}

/* line 31, ../sass/partials/_forms.sass */
.form-item-title.form-type-textfield label {
  display: block;
}

/* line 2, ../sass/partials/_theme.sass */
html body {
  background: white url(/sites/all/themes/custom/marshallsterling_theme/img/inner-page-background.jpg) 0 -10px repeat-x;
}
/* line 4, ../sass/partials/_theme.sass */
html body.front {
  background: white url(/sites/all/themes/custom/marshallsterling_theme/img/page-background.jpg) 0 -10px repeat-x;
}
@media only screen and (max-width: 767px) {
  /* line 2, ../sass/partials/_theme.sass */
  html body {
    background: white !important;
  }
}
/* line 8, ../sass/partials/_theme.sass */
html body #body-wrapper {
  max-width: inherit;
  width: 100%;
  margin: 0;
}
/* line 12, ../sass/partials/_theme.sass */
html body #body-wrapper #branding, html body #body-wrapper #navigation, html body #body-wrapper #console, html body #body-wrapper #page, html body #body-wrapper #footer-content {
  max-width: 1200px;
  margin: 0px auto;
  overflow: hidden;
}
@media only screen and (max-width: 1199px) {
  /* line 12, ../sass/partials/_theme.sass */
  html body #body-wrapper #branding, html body #body-wrapper #navigation, html body #body-wrapper #console, html body #body-wrapper #page, html body #body-wrapper #footer-content {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  /* line 18, ../sass/partials/_theme.sass */
  html body #body-wrapper #branding {
    margin-top: 60px;
  }
}
/* line 22, ../sass/partials/_theme.sass */
html body #body-wrapper #branding .inside #mobile-links {
  position: absolute;
  height: 60px;
  top: 0px;
  left: 0px;
  padding: 0px;
  margin: 0px;
  background: #001844;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  /* line 22, ../sass/partials/_theme.sass */
  html body #body-wrapper #branding .inside #mobile-links {
    display: block;
  }
}
/* line 33, ../sass/partials/_theme.sass */
html body #body-wrapper #branding .inside #mobile-links #mobile-menu-toggle {
  display: block;
  padding: 0px;
  margin: 0px;
  width: 100%;
  color: white;
  font-size: 18px;
  line-height: 60px;
  text-align: center;
}
/* line 42, ../sass/partials/_theme.sass */
html body #body-wrapper #branding .inside #mobile-links #mobile-menu-toggle span.menu-toggle-title {
  font-weight: bold;
  text-transform: uppercase;
  padding-right: 7px;
}
/* line 46, ../sass/partials/_theme.sass */
html body #body-wrapper #branding .inside #mini-panel-top_mini_panel {
  height: 195px;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  /* line 46, ../sass/partials/_theme.sass */
  html body #body-wrapper #branding .inside #mini-panel-top_mini_panel {
    height: 225px;
  }
}
/* line 50, ../sass/partials/_theme.sass */
html body #body-wrapper #branding .inside .pane-page-slogan {
  text-align: center;
  color: #001844;
  font-weight: bold;
  font-size: 24px;
  font-style: italic;
  font-family: "Candara";
  margin-top: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  /* line 50, ../sass/partials/_theme.sass */
  html body #body-wrapper #branding .inside .pane-page-slogan {
    font-size: 22px;
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 767px) {
  /* line 50, ../sass/partials/_theme.sass */
  html body #body-wrapper #branding .inside .pane-page-slogan {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
/* line 67, ../sass/partials/_theme.sass */
html body #body-wrapper #branding .inside #logo {
  margin: 0;
  vertical-align: top;
}
@media only screen and (max-width: 767px) {
  /* line 67, ../sass/partials/_theme.sass */
  html body #body-wrapper #branding .inside #logo {
    width: 100%;
    margin-bottom: 25px;
  }
}
/* line 75, ../sass/partials/_theme.sass */
html body #body-wrapper #branding .inside #logo img {
  margin-left: 20px;
  display: block;
}
@media only screen and (max-width: 767px) {
  /* line 75, ../sass/partials/_theme.sass */
  html body #body-wrapper #branding .inside #logo img {
    width: 250px;
    margin: 0 auto;
  }
}
/* line 81, ../sass/partials/_theme.sass */
html body #body-wrapper #branding .inside #top-right {
  display: inline-block;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  /* line 81, ../sass/partials/_theme.sass */
  html body #body-wrapper #branding .inside #top-right {
    width: 100%;
  }
}
/* line 88, ../sass/partials/_theme.sass */
html body #body-wrapper #branding .inside #top-right .twocolumn-8-4-stacked .wrapper .panels-left, html body #body-wrapper #branding .inside #top-right .twocolumn-8-4-stacked .wrapper .panels-right {
  display: inline-block;
  vertical-align: top;
}
/* line 91, ../sass/partials/_theme.sass */
html body #body-wrapper #branding .inside #top-right .twocolumn-8-4-stacked .wrapper .panels-left {
  width: 74%;
}
/* line 93, ../sass/partials/_theme.sass */
html body #body-wrapper #branding .inside #top-right .twocolumn-8-4-stacked .wrapper .panels-right {
  width: 25%;
}
/* line 95, ../sass/partials/_theme.sass */
html body #body-wrapper #branding .inside #top-right #mini-panel-top_right_mini_panel_auto {
  width: 320px;
  float: right;
  display: block;
}
@media only screen and (max-width: 767px) {
  /* line 95, ../sass/partials/_theme.sass */
  html body #body-wrapper #branding .inside #top-right #mini-panel-top_right_mini_panel_auto {
    width: 100%;
  }
}
/* line 101, ../sass/partials/_theme.sass */
html body #body-wrapper #branding .inside #top-right #mini-panel-top_right_mini_panel_auto a.cta {
  display: block;
}
/* line 103, ../sass/partials/_theme.sass */
html body #body-wrapper #branding .inside #top-right #mini-panel-top_right_mini_panel_auto a.cta.live-chat {
  background-color: #7299c4;
}
/* line 105, ../sass/partials/_theme.sass */
html body #body-wrapper #branding .inside #top-right #mini-panel-top_right_mini_panel_auto a.cta.request-quote {
  background-color: #ffe401;
  color: #3f6691;
  font-size: 18px;
  margin-bottom: 15px;
}
/* line 110, ../sass/partials/_theme.sass */
html body #body-wrapper #branding .inside #top-right #mini-panel-top_right_mini_panel_auto a.cta.request-quote:hover {
  background-color: #001844;
  color: white;
}
/* line 113, ../sass/partials/_theme.sass */
html body #body-wrapper #branding .inside #top-right #mini-panel-top_right_mini_panel_auto a.cta.contact-us {
  background-color: #3f6691;
  font-size: 18px;
}
/* line 116, ../sass/partials/_theme.sass */
html body #body-wrapper #branding .inside #top-right #mini-panel-top_right_mini_panel_auto a.cta.contact-us:hover {
  background-color: #001844;
  color: white;
}
@media only screen and (max-width: 767px) {
  /* line 101, ../sass/partials/_theme.sass */
  html body #body-wrapper #branding .inside #top-right #mini-panel-top_right_mini_panel_auto a.cta {
    margin-right: 0;
  }
}
/* line 122, ../sass/partials/_theme.sass */
html body #body-wrapper #branding .inside #top-right #mini-panel-top_right_mini_panel_auto .view-display-id-block.view-header-button-top-left a.client-login {
  font-size: 12px;
  line-height: 14px;
  padding: 8px 15px;
}
/* line 127, ../sass/partials/_theme.sass */
html body #body-wrapper #branding .inside #top-right #mini-panel-top_right_mini_panel_auto .view-display-id-block.view-header-button-top-right a.online-payment {
  padding: 18px 20px;
}
/* line 129, ../sass/partials/_theme.sass */
html body #body-wrapper #branding .inside #top-right #mini-panel-top_right_mini_panel_auto .panel-separator {
  display: none;
}
/* line 131, ../sass/partials/_theme.sass */
html body #body-wrapper #branding .inside #top-right #mini-panel-top_right_mini_panel_auto ul.social-icons {
  margin: 0px;
  padding: 0px;
}
/* line 134, ../sass/partials/_theme.sass */
html body #body-wrapper #branding .inside #top-right #mini-panel-top_right_mini_panel_auto ul.social-icons li {
  display: inline;
}
/* line 136, ../sass/partials/_theme.sass */
html body #body-wrapper #branding .inside #top-right #mini-panel-top_right_mini_panel_auto ul.social-icons li a {
  color: #e1e1e1;
  font-size: 45px;
}
/* line 139, ../sass/partials/_theme.sass */
html body #body-wrapper #navigation {
  overflow: visible;
}
@media only screen and (max-width: 767px) {
  /* line 139, ../sass/partials/_theme.sass */
  html body #body-wrapper #navigation {
    display: none;
    position: absolute;
    top: 60px;
    left: 0px;
    width: 100%;
    padding: 0px;
    margin: 0px;
  }
}
/* line 150, ../sass/partials/_theme.sass */
html body #body-wrapper #navigation .inside .menu-block-wrapper {
  background: #001844;
  border-bottom: 2px solid #ffe401;
  display: table;
  width: 100%;
}
/* line 155, ../sass/partials/_theme.sass */
html body #body-wrapper #navigation .inside .menu-block-wrapper ul.menu {
  display: table-row;
  margin: 0px;
  padding: 0px;
}
/* line 159, ../sass/partials/_theme.sass */
html body #body-wrapper #navigation .inside .menu-block-wrapper ul.menu li {
  display: table-cell;
  vertical-align: middle;
  float: none;
  margin: 0px;
  text-align: center;
  height: 60px;
  padding: 0 20px;
  position: relative;
}
/* line 168, ../sass/partials/_theme.sass */
html body #body-wrapper #navigation .inside .menu-block-wrapper ul.menu li > ul.menu {
  display: none;
  position: absolute;
  height: auto;
  top: 59px;
  z-index: 9999;
  margin-left: -20px;
  border: 1px solid yellow;
}
@media only screen and (max-width: 767px) {
  /* line 168, ../sass/partials/_theme.sass */
  html body #body-wrapper #navigation .inside .menu-block-wrapper ul.menu li > ul.menu {
    display: none !important;
  }
}
/* line 178, ../sass/partials/_theme.sass */
html body #body-wrapper #navigation .inside .menu-block-wrapper ul.menu li > ul.menu li {
  padding: 20px;
  display: block;
  background: #001844;
  height: auto;
}
/* line 184, ../sass/partials/_theme.sass */
html body #body-wrapper #navigation .inside .menu-block-wrapper ul.menu li > ul.menu li:hover a {
  text-decoration: underline;
}
/* line 186, ../sass/partials/_theme.sass */
html body #body-wrapper #navigation .inside .menu-block-wrapper ul.menu li:hover {
  background: #7299c4;
}
@media only screen and (max-width: 767px) {
  /* line 159, ../sass/partials/_theme.sass */
  html body #body-wrapper #navigation .inside .menu-block-wrapper ul.menu li {
    display: block;
    padding: 20px;
    height: auto;
  }
}
/* line 192, ../sass/partials/_theme.sass */
html body #body-wrapper #navigation .inside .menu-block-wrapper ul.menu li a {
  color: white;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  float: none;
  font-family: "Candara";
}
/* line 199, ../sass/partials/_theme.sass */
html body #body-wrapper #page {
  width: 1200px;
  position: relative;
  top: -15px;
}
@media only screen and (max-width: 1199px) {
  /* line 199, ../sass/partials/_theme.sass */
  html body #body-wrapper #page {
    width: 100%;
    top: 0px;
  }
}
/* line 206, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content {
  padding-top: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  /* line 206, ../sass/partials/_theme.sass */
  html body #body-wrapper #page #main-content {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  /* line 206, ../sass/partials/_theme.sass */
  html body #body-wrapper #page #main-content {
    padding: 0;
  }
}
/* line 212, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content .views-field-field-image, html body #body-wrapper #page #main-content .pane-node-field-image {
  max-height: 411px;
  border-bottom: 5px solid #3f6691;
  overflow: hidden;
}
@media only screen and (max-width: 1199px) {
  /* line 212, ../sass/partials/_theme.sass */
  html body #body-wrapper #page #main-content .views-field-field-image, html body #body-wrapper #page #main-content .pane-node-field-image {
    border-bottom: 0px;
  }
}
/* line 218, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content #block-system-main {
  background: transparent;
}
@media only screen and (max-width: 1199px) {
  /* line 218, ../sass/partials/_theme.sass */
  html body #body-wrapper #page #main-content #block-system-main {
    background: white;
  }
}
@media only screen and (max-width: 767px) {
  /* line 218, ../sass/partials/_theme.sass */
  html body #body-wrapper #page #main-content #block-system-main {
    margin: 0px 20px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 226, ../sass/partials/_theme.sass */
  html body #body-wrapper #page #main-content #block-system-main .twocolumn-8-4-stacked > .inside .panels-header, html body #body-wrapper #page #main-content #block-system-main .onecolumn-stacked > .inside .panels-header {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  /* line 229, ../sass/partials/_theme.sass */
  html body #body-wrapper #page #main-content #block-system-main .twocolumn-8-4-stacked > .inside .content, html body #body-wrapper #page #main-content #block-system-main .onecolumn-stacked > .inside .content {
    margin: 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 229, ../sass/partials/_theme.sass */
  html body #body-wrapper #page #main-content #block-system-main .twocolumn-8-4-stacked > .inside .content, html body #body-wrapper #page #main-content #block-system-main .onecolumn-stacked > .inside .content {
    margin: 0 10px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 235, ../sass/partials/_theme.sass */
  html body #body-wrapper #page #main-content #block-system-main .twocolumn-8-4-stacked > .inside .wrapper .panels-left, html body #body-wrapper #page #main-content #block-system-main .twocolumn-8-4-stacked > .inside .wrapper .panels-right, html body #body-wrapper #page #main-content #block-system-main .onecolumn-stacked > .inside .wrapper .panels-left, html body #body-wrapper #page #main-content #block-system-main .onecolumn-stacked > .inside .wrapper .panels-right {
    display: block;
    width: auto;
    margin: 0 10px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 240, ../sass/partials/_theme.sass */
  html body #body-wrapper #page #main-content #block-system-main .twocolumn-8-4-stacked > .inside .wrapper .panels-left > .inside, html body #body-wrapper #page #main-content #block-system-main .twocolumn-8-4-stacked > .inside .wrapper .panels-right > .inside, html body #body-wrapper #page #main-content #block-system-main .onecolumn-stacked > .inside .wrapper .panels-left > .inside, html body #body-wrapper #page #main-content #block-system-main .onecolumn-stacked > .inside .wrapper .panels-right > .inside {
    margin: 0;
  }
}
/* line 243, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content .pane-front-page-featured-panel {
  display: table;
}
/* line 246, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content .pane-nodehierarchy-children table {
  margin-top: 30px;
  border-top: 1px solid #e1e1e1;
}
/* line 250, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content .pane-nodehierarchy-children table tr td {
  padding-top: 30px;
}
@media only screen and (max-width: 767px) {
  /* line 250, ../sass/partials/_theme.sass */
  html body #body-wrapper #page #main-content .pane-nodehierarchy-children table tr td {
    display: block;
    width: 100%;
    padding: 30px 0 5px;
  }
}
/* line 259, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content .pane-nodehierarchy-children table tr td .views-field-field-image {
  margin: 0;
}
/* line 261, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content .pane-nodehierarchy-children table tr td .views-field-field-image img {
  display: block;
  width: 100%;
}
/* line 264, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content .pane-nodehierarchy-children table tr td .views-field-body {
  margin-top: 20px;
}
/* line 267, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content .pane-nodehierarchy-children table tr td .views-field-view-node a {
  margin-top: 20px;
}
/* line 271, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel {
  display: table-row;
}
/* line 273, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel h2.pane-title {
  display: block;
  font-family: "Candara";
  font-size: 18px;
  margin: 0 0 25px;
  -moz-box-shadow: 0 0 0 4px #001844;
  -webkit-box-shadow: 0 0 0 4px #001844;
  box-shadow: 0 0 0 4px #001844;
  margin-bottom: 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 286, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel h2.pane-title:hover {
  background-color: #001844;
  color: white;
}
/* line 289, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel h2.pane-title a {
  color: white;
}
/* line 291, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel h2.pane-title a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  /* line 273, ../sass/partials/_theme.sass */
  html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel h2.pane-title {
    margin-bottom: 0;
  }
}
/* line 295, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel .pane-content {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background: #f8f8f8;
  border: 1px solid #d4d4d4;
  border-radius: 2px;
  -moz-box-shadow: 0 0 0 4px #f8f8f8;
  -webkit-box-shadow: 0 0 0 4px #f8f8f8;
  box-shadow: 0 0 0 4px #f8f8f8;
  min-height: 340px;
  padding: 10px;
}
/* line 307, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel .pane-content h3, html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel .pane-content h3 a {
  font-size: 16px;
  line-height: 18px;
  color: #333333;
  margin-bottom: 10px;
}
/* line 312, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel .pane-content img {
  margin: 0 auto 7px;
  display: block;
}
/* line 315, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel .pane-content .link {
  display: block;
  margin-top: 7px;
}
/* line 318, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel .pane-content .cta {
  display: block;
}
/* line 321, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel .panel-panel {
  margin-right: 60px;
  display: table-cell;
  padding: 0 30px;
  float: none;
  width: 33%;
  max-width: 33%;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  /* line 321, ../sass/partials/_theme.sass */
  html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel .panel-panel {
    padding: 0 10px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 321, ../sass/partials/_theme.sass */
  html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel .panel-panel {
    width: 100%;
    max-width: 100%;
    margin: 0px;
  }
}
/* line 335, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel .panel-panel img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
/* line 340, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel .panel-col-first {
  margin-left: 0;
  padding-left: 0;
}
/* line 343, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel .panel-col-first .pane-content {
  background: #e3e1e2;
}
/* line 345, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel .panel-col {
  width: 34%;
  max-width: 34%;
}
@media only screen and (max-width: 767px) {
  /* line 345, ../sass/partials/_theme.sass */
  html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel .panel-col {
    width: 100%;
    max-width: 100%;
    margin: 0px;
    padding: 0;
  }
}
/* line 353, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel .panel-col h2 {
  background: #3f6691;
  -moz-box-shadow: 0 0 0 4px #3f6691;
  -webkit-box-shadow: 0 0 0 4px #3f6691;
  box-shadow: 0 0 0 4px #3f6691;
}
/* line 358, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel .panel-col h2:hover {
  background-color: #3f6691;
  color: white;
}
/* line 361, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel .panel-col-last {
  margin-right: 0;
  padding-right: 0;
}
@media only screen and (max-width: 767px) {
  /* line 361, ../sass/partials/_theme.sass */
  html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel .panel-col-last {
    width: 100%;
    max-width: 100%;
    margin: 0px;
    padding: 0px;
  }
}
/* line 369, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel .panel-col-last h2 {
  background: #7299c4;
  -moz-box-shadow: 0 0 0 4px #7299c4;
  -webkit-box-shadow: 0 0 0 4px #7299c4;
  box-shadow: 0 0 0 4px #7299c4;
}
/* line 374, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel .panel-col-last h2:hover {
  background-color: #7299c4;
  color: white;
}
/* line 377, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel .panel-col-last .pane-content {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  /* line 379, ../sass/partials/_theme.sass */
  html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel .panel-panel {
    float: none;
    display: block;
    width: 100%;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 385, ../sass/partials/_theme.sass */
  html body #body-wrapper #page #main-content #mini-panel-front_page_featured_panel .panel-panel .inside {
    margin: 0;
  }
}
/* line 388, ../sass/partials/_theme.sass */
html body #body-wrapper #footer {
  background: #3f6691;
  color: white;
  border-top: 5px solid #ffe401;
}
@media only screen and (max-width: 1199px) {
  /* line 388, ../sass/partials/_theme.sass */
  html body #body-wrapper #footer {
    padding: 0 10px 10px;
  }
}
/* line 394, ../sass/partials/_theme.sass */
html body #body-wrapper #footer a {
  color: white;
}
/* line 396, ../sass/partials/_theme.sass */
html body #body-wrapper #footer a:hover {
  color: white;
}
/* line 402, ../sass/partials/_theme.sass */
html body #body-wrapper #footer #block-panels-mini-footer .twocolumn-7-5-stacked .wrapper .panels-left {
  padding-top: 20px;
}
@media only screen and (max-width: 767px) {
  /* line 402, ../sass/partials/_theme.sass */
  html body #body-wrapper #footer #block-panels-mini-footer .twocolumn-7-5-stacked .wrapper .panels-left {
    display: block;
    width: auto;
    margin: 0 10px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 410, ../sass/partials/_theme.sass */
  html body #body-wrapper #footer #block-panels-mini-footer .twocolumn-7-5-stacked .wrapper .panels-right {
    display: block;
    width: auto;
    margin: 0 10px;
  }
}
/* line 418, ../sass/partials/_theme.sass */
html body #body-wrapper #footer #block-panels-mini-footer .twocolumn-7-5-stacked .wrapper .panels-right #mini-panel-footer_right h2.pane-title {
  font-size: 16px;
  font-weight: bold;
  font-family: "Candara";
}
/* line 422, ../sass/partials/_theme.sass */
html body #body-wrapper #footer #block-panels-mini-footer .twocolumn-7-5-stacked .wrapper .panels-right #mini-panel-footer_right ul.social-icons {
  margin: 0px;
  padding: 0px;
}
/* line 425, ../sass/partials/_theme.sass */
html body #body-wrapper #footer #block-panels-mini-footer .twocolumn-7-5-stacked .wrapper .panels-right #mini-panel-footer_right ul.social-icons li {
  margin-right: 10px;
  display: inline-block;
}
/* line 428, ../sass/partials/_theme.sass */
html body #body-wrapper #footer #block-panels-mini-footer .twocolumn-7-5-stacked .wrapper .panels-right #mini-panel-footer_right ul.social-icons li a {
  font-size: 28px;
}
/* line 430, ../sass/partials/_theme.sass */
html body #body-wrapper #footer #block-panels-mini-footer .twocolumn-7-5-stacked .wrapper .panels-right #mini-panel-footer_right ul.menu {
  margin: 0px;
  padding: 0px;
}
/* line 433, ../sass/partials/_theme.sass */
html body #body-wrapper #footer #block-panels-mini-footer .twocolumn-7-5-stacked .wrapper .panels-right #mini-panel-footer_right ul.menu li {
  margin-bottom: 4px;
}
@media only screen and (max-width: 767px) {
  /* line 435, ../sass/partials/_theme.sass */
  html body #body-wrapper #footer #block-panels-mini-footer .twocolumn-7-5-stacked .wrapper .panels-right #mini-panel-footer_right .panel-panel {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  /* line 439, ../sass/partials/_theme.sass */
  html body #body-wrapper #footer #block-panels-mini-footer .twocolumn-7-5-stacked .wrapper .panels-right #mini-panel-footer_right .panel-col-last .inside {
    margin: 0;
  }
}

/* line 448, ../sass/partials/_theme.sass */
html body.admin-page #body-wrapper #page #main-content #block-system-main, html body.page-taxonomy-term #body-wrapper #page #main-content #block-system-main, html body.page-vidpl #body-wrapper #page #main-content #block-system-main, html body.page-vidpl-library #body-wrapper #page #main-content #block-system-main {
  padding: 0 0 30px;
}
@media only screen and (max-width: 767px) {
  /* line 448, ../sass/partials/_theme.sass */
  html body.admin-page #body-wrapper #page #main-content #block-system-main, html body.page-taxonomy-term #body-wrapper #page #main-content #block-system-main, html body.page-vidpl #body-wrapper #page #main-content #block-system-main, html body.page-vidpl-library #body-wrapper #page #main-content #block-system-main {
    padding: 30px 10px;
  }
}
/* line 452, ../sass/partials/_theme.sass */
html body.admin-page #body-wrapper #page #main-content #block-system-main div.vidpl_wrapper, html body.page-taxonomy-term #body-wrapper #page #main-content #block-system-main div.vidpl_wrapper, html body.page-vidpl #body-wrapper #page #main-content #block-system-main div.vidpl_wrapper, html body.page-vidpl-library #body-wrapper #page #main-content #block-system-main div.vidpl_wrapper {
  float: left;
  width: 40%;
  margin: 10px 0px;
  clear: none;
}
@media only screen and (max-width: 767px) {
  /* line 452, ../sass/partials/_theme.sass */
  html body.admin-page #body-wrapper #page #main-content #block-system-main div.vidpl_wrapper, html body.page-taxonomy-term #body-wrapper #page #main-content #block-system-main div.vidpl_wrapper, html body.page-vidpl #body-wrapper #page #main-content #block-system-main div.vidpl_wrapper, html body.page-vidpl-library #body-wrapper #page #main-content #block-system-main div.vidpl_wrapper {
    width: 100%;
  }
}
/* line 461, ../sass/partials/_theme.sass */
html body.admin-page #body-wrapper #page #main-content #block-system-main .twocolumn-8-4-stacked > .inside .panels-header, html body.page-taxonomy-term #body-wrapper #page #main-content #block-system-main .twocolumn-8-4-stacked > .inside .panels-header, html body.page-vidpl #body-wrapper #page #main-content #block-system-main .twocolumn-8-4-stacked > .inside .panels-header, html body.page-vidpl-library #body-wrapper #page #main-content #block-system-main .twocolumn-8-4-stacked > .inside .panels-header {
  background: white;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
/* line 465, ../sass/partials/_theme.sass */
html body.admin-page #body-wrapper #page #main-content #block-system-main fieldset, html body.page-taxonomy-term #body-wrapper #page #main-content #block-system-main fieldset, html body.page-vidpl #body-wrapper #page #main-content #block-system-main fieldset, html body.page-vidpl-library #body-wrapper #page #main-content #block-system-main fieldset {
  border: 1px solid #e1e1e1;
  padding: 10px;
  margin-bottom: 25px;
}
/* line 469, ../sass/partials/_theme.sass */
html body.admin-page #body-wrapper #page #main-content #block-system-main fieldset a.fieldset-title, html body.page-taxonomy-term #body-wrapper #page #main-content #block-system-main fieldset a.fieldset-title, html body.page-vidpl #body-wrapper #page #main-content #block-system-main fieldset a.fieldset-title, html body.page-vidpl-library #body-wrapper #page #main-content #block-system-main fieldset a.fieldset-title {
  padding: 0 15px;
}
/* line 474, ../sass/partials/_theme.sass */
html .page-taxonomy-term-1049 #page #main-content, html .page-taxonomy-term-1050 #page #main-content, html .page-taxonomy-term-1051 #page #main-content, html .page-taxonomy-term-1052 #page #main-content {
  padding: 0;
}

/* line 478, ../sass/partials/_theme.sass */
.triangle-l {
  border-color: transparent #ffe401 transparent transparent;
  border-style: solid;
  height: 0px;
  width: 0px;
  z-index: -1;
  float: left;
  border-width: 0px 30px 15px 0px;
}
@media only screen and (max-width: 1199px) {
  /* line 478, ../sass/partials/_theme.sass */
  .triangle-l {
    display: none;
  }
}

/* line 491, ../sass/partials/_theme.sass */
.triangle-r {
  border-color: transparent transparent transparent #ffe401;
  border-style: solid;
  height: 0px;
  width: 0px;
  z-index: -1;
  float: right;
  border-width: 0 0px 15px 30px;
}
@media only screen and (max-width: 1199px) {
  /* line 491, ../sass/partials/_theme.sass */
  .triangle-r {
    display: none;
  }
}

/* line 505, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content #flexslider-1 ul.slides li {
  line-height: 0;
  border-bottom: 5px solid #3f6691;
  background: white url(/sites/all/themes/custom/marshallsterling_theme/img/slideshow-bg.png) right bottom no-repeat;
  -moz-background-size: 100% 100%;
  -webkit-background-size: 100% 100%;
  background-size: 100% 100%;
}
/* line 512, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content #flexslider-1 ul.slides li .views-field-field-image {
  display: inline-block;
  width: 50%;
  border-bottom: 0;
}
@media only screen and (max-width: 767px) {
  /* line 512, ../sass/partials/_theme.sass */
  html body #body-wrapper #page #main-content #flexslider-1 ul.slides li .views-field-field-image {
    width: 100%;
  }
}
/* line 519, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content #flexslider-1 ul.slides li .views-field-nothing {
  display: inline-block;
  width: 49%;
  vertical-align: top;
  line-height: 18px;
}
@media only screen and (max-width: 767px) {
  /* line 519, ../sass/partials/_theme.sass */
  html body #body-wrapper #page #main-content #flexslider-1 ul.slides li .views-field-nothing {
    width: 100%;
  }
}
/* line 526, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content #flexslider-1 ul.slides li .views-field-nothing .slideshow-right {
  padding: 30px;
}
@media only screen and (max-width: 767px) {
  /* line 526, ../sass/partials/_theme.sass */
  html body #body-wrapper #page #main-content #flexslider-1 ul.slides li .views-field-nothing .slideshow-right {
    padding: 0px;
    width: 80%;
    margin: 20px auto;
  }
}
/* line 532, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content #flexslider-1 ul.slides li .views-field-nothing .slideshow-right h2 {
  font-family: "Candara";
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 0 30px;
}
/* line 537, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content #flexslider-1 ul.slides li .views-field-nothing .slideshow-right div.body {
  margin: 0 0 30px;
}
/* line 539, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content #flexslider-1 ul.slides li .views-field-nothing .slideshow-right div.learn-more {
  font-size: 18px;
}
/* line 545, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content #flexslider-1 ul.flex-direction-nav li.flex-nav-prev a.flex-prev:before {
  font-family: "FontAwesome";
  font-size: 32px;
  content: "\f104";
  color: #001844;
  font-weight: bold;
}
/* line 552, ../sass/partials/_theme.sass */
html body #body-wrapper #page #main-content #flexslider-1 ul.flex-direction-nav li.flex-nav-next a.flex-next:before {
  font-family: "FontAwesome";
  font-size: 32px;
  content: "\f105";
  color: #001844;
  font-weight: bold;
}

/* line 560, ../sass/partials/_theme.sass */
#flexslider-1 {
  margin: 0;
  background: transparent;
  border: 0;
  position: relative;
  zoom: 1;
  border-radius: 0;
  box-shadow: none;
}

/* line 572, ../sass/partials/_theme.sass */
html body #body-wrapper .views-field-field-news-image img, html body #body-wrapper .field-name-field-news-image img {
  float: right;
  margin-left: 15px;
  margin-bottom: 40px;
  max-width: 30%;
  height: auto;
}

/* line 579, ../sass/partials/_theme.sass */
.field-name-field-news-tags {
  margin-top: 20px;
}
/* line 582, ../sass/partials/_theme.sass */
.field-name-field-news-tags .field-items .field-item {
  display: inline-block;
  margin-right: 15px;
  font-weight: bold;
}

/* line 588, ../sass/partials/_theme.sass */
body.no-header #block-system-main {
  margin-top: 78px;
}

/* line 595, ../sass/partials/_theme.sass */
.view-grouping {
  margin-bottom: 35px;
}

/* line 597, ../sass/partials/_theme.sass */
.view-grouping-header {
  font-weight: bold;
  color: black;
  font-size: 26px;
  line-height: 26px;
  margin-bottom: 12px;
}

/* line 604, ../sass/partials/_theme.sass */
#map-canvas {
  width: 100% !important;
}

/* line 613, ../sass/partials/_theme.sass */
html body.group-division.st-thomas #body-wrapper #branding > .inside #logo img, html body.node-type-st-thomas-page #body-wrapper #branding > .inside #logo img {
  margin-top: 25px;
}
/* line 615, ../sass/partials/_theme.sass */
html body.group-division.st-thomas #body-wrapper #branding > .inside .panels-flexible-region-header_layout-left, html body.node-type-st-thomas-page #body-wrapper #branding > .inside .panels-flexible-region-header_layout-left {
  width: 75%;
}
/* line 617, ../sass/partials/_theme.sass */
html body.group-division.st-thomas #body-wrapper #branding > .inside .panels-flexible-region-header_layout-center, html body.node-type-st-thomas-page #body-wrapper #branding > .inside .panels-flexible-region-header_layout-center {
  display: none;
}
/* line 619, ../sass/partials/_theme.sass */
html body.group-division.st-thomas #body-wrapper #branding > .inside .panels-flexible-region-header_layout-right, html body.node-type-st-thomas-page #body-wrapper #branding > .inside .panels-flexible-region-header_layout-right {
  width: 25%;
}

/* line 624, ../sass/partials/_theme.sass */
html body.node-type-location .pane-node-content h2 {
  display: none;
}
/* line 626, ../sass/partials/_theme.sass */
html body.node-type-location .pane-node-content .node-submitted {
  display: none;
}
/* line 629, ../sass/partials/_theme.sass */
html body.node-type-location .pane-node-content .node-content .field-name-field-location-address {
  display: block;
  margin-bottom: 30px;
}
/* line 632, ../sass/partials/_theme.sass */
html body.node-type-location .pane-node-content .node-content .field-name-field-location-email {
  margin-bottom: 30px;
}

/* line 650, ../sass/partials/_theme.sass */
.pane-news .views-row,
.pane-carmel-news .views-row,
.pane-equisports-news .views-row,
.pane-glenville-news .views-row,
.pane-group-benefit-news .views-row,
.pane-leeds-news .views-row,
.pane-millbrook-news .views-row,
.pane-monticello-news .views-row,
.pane-new-windsor-news .views-row,
.pane-poughkeepsie-news .views-row,
.pane-rochester-news .views-row,
.pane-st-thomas-news .views-row,
.pane-st-croix-news .views-row,
.pane-kingston-news .views-row {
  display: block;
  clear: both;
  margin-bottom: 40px;
}
/* line 655, ../sass/partials/_theme.sass */
.pane-news .views-row .link a,
.pane-carmel-news .views-row .link a,
.pane-equisports-news .views-row .link a,
.pane-glenville-news .views-row .link a,
.pane-group-benefit-news .views-row .link a,
.pane-leeds-news .views-row .link a,
.pane-millbrook-news .views-row .link a,
.pane-monticello-news .views-row .link a,
.pane-new-windsor-news .views-row .link a,
.pane-poughkeepsie-news .views-row .link a,
.pane-rochester-news .views-row .link a,
.pane-st-thomas-news .views-row .link a,
.pane-st-croix-news .views-row .link a,
.pane-kingston-news .views-row .link a {
  margin-top: 15px;
}

@media only screen and (max-width: 767px) {
  /* line 664, ../sass/partials/_theme.sass */
  .panel-flexible .panel-flexible-inside .panels-flexible-region .panels-flexible-region-inside {
    padding: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  /* line 663, ../sass/partials/_theme.sass */
  .panel-flexible .panel-flexible-inside .panels-flexible-region {
    width: 49%;
  }
}
@media only screen and (max-width: 767px) {
  /* line 663, ../sass/partials/_theme.sass */
  .panel-flexible .panel-flexible-inside .panels-flexible-region {
    float: none;
    width: 100%;
  }
}
