/**
 * Compass
 */
/**
 * Other Sass gems
 */
/**
 * Define Compass Browser Support
 * @link http://compass-style.org/reference/compass/support/
 */
/**
 * CSS layout debugging
 * @link http://pesticide.io/
 * @type boolean
 */
/**
 * Base font size in used in _mixins.scss
 * @type number
 */
/**
 * Base line-height in used in _mixins.scss
 * @type number
 */
/**
 * (optional) URL for Google Fonts import
 * @type string
 */
/**
 * (optional) names of webfonts imports
 * @type array
 */
/**
 * define font stack used for sans-serifs
 * @type string
 */
/**
 * define font stack used for serifs
 * @type string
 */
/**
 * define font stack used for monospaced copy
 * @type string
 */
/**
 * define font stack used for headings
 * @requires {variable} $font-family-serif
 * @type string
 */
/**
 * define font stack used for paragraphs
 * @requires {variable} font-family-sans
 * @type string
 */
/**
 * Define z-indexes for various elements
 * @link http://www.sitepoint.com/using-sass-maps/
 * @type number
 */
/**
 * px to em conversion
 * @link http://www.pjmccormick.com/sweet-sass-function-convert-px-em
 * @requires {variable} $base-font-size-value
 * @param {number} $target - size to convert
 * @param {number} $context ($base-font-size-value) - context conversion is based on
 * @example scss
 * .foobar { padding-bottom: em(30); }
 * @returns {number}
 */
/**
 * px to rem
 * @link http://www.pjmccormick.com/sweet-sass-function-convert-px-em
 * @requires {variable} $base-font-size-value
 * @param {number} $target - size to convert
 * @param {number} $context ($base-font-size-value) - context conversion is based on
 * @example scss
 * .foobar { padding-bottom: rem(30); }
 * @returns {number}
 */
/**
 * em to px conversion
 * @link http://www.pjmccormick.com/sweet-sass-function-convert-px-em
 * @requires {variable} $base-font-size-value
 * @param {number} $target - size to convert
 * @param {number} $context ($base-font-size-value) - context conversion is based on
 * @example scss
 * .foobar { padding-bottom: px(30); }
 * @returns {number}
 */
/**
 * Aspect Ratio
 * @param {number} $ratio-numerator - ratio numerator
 * @param {number} $ratio-denominator - ratio denominator
 * @example scss
 * .foobar { padding-bottom: aspect-ratio(16,9); } // @returns 56.25%
 * @returns {number}
 */
/**
 * Aspect Ratio
 * Based on Fixed Image Dimensions
 * @param {number} $w - image width
 * @param {number} $h - image height
 * @example scss
 * .foobar { padding: 0 0 aspect-ratio-fixed(1080, 720); } // @returns 66.666666666667%
 * @returns {number}
 */
/**
 * Context Calculator
 * @param {number} $target
 * @param {number} $context
 * @example scss
 * .foobar { padding-bottom: context-calc(30,15); }
 * @returns {number}
 */
/**
 * Strip Unit Values
 * @link http://hugogiraudel.com/2013/08/12/sass-functions
 * @param {string} $num
 * @example scss
 * .foobar { padding-bottom: strip-unit(30px); }
 * @returns {number}
 */
/**
 * Buttons
 * This customises your buttons with a different background color and text color.
 * If no text color is specified it will default to white.
 * @param {String} $color-background - background color
 * @param {String} $color-text (#fff) - text color
 * @example scss
 * .foobar { @include btn(#f37) { ... } }
 */
/**
 * @link http://bit.ly/thoughtbot-bourbon-inline-block
 * @require {mixin} old-ie
 * @param {String} $alignment (baseline)
 * @example scss
 * .foobar { @include inline-block() { ... } }
 */
/**
 * Retina Displays
 * @param {String} $image - image url
 * @param {String} $width - image width
 * @param {String} $height - image height
 * @example scss
 * .foobar { @include image-2x('img/logo.png', 200px, 300px) { ... } }
 */
/**
 * RGBA Fallback
 * @param {String} $color
 * @param {String} $percent
 * @example scss
 * .foobar { @include rgba-bg(#f37,.9) { ... } }
 */
/**
 * SVG Bckground Images with png fallback
 * @param {String} $filename
 * @example scss
 * .foobar { @include svg-bg('image') { ... } }
 */
/**
 * Vertical Center
 * @link http://zerosixthree.se/vertical-align-anything-with-just-3-lines-of-css/
 * @link http://www.useragentman.com/IETransformsTranslator/
 * @example scss
 * .foobar { @include vertical-center() { ... } }
 */
/**
 * Makes an element visually hidden, but accessible.
 * @link http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
/**
 * Turns off the element-invisible effect.
 */
/**
 * Makes an element visually hidden by default, but visible when focused.
 */
/* line 11, ../sass/utilities/_helpers.scss */
.region-inner, .region-header-blocks, .region-featureblocks, .region-content, .region-footer, .messages, .messages--status, .messages--warning, .messages--error {
  *zoom: 1;
}
/* line 13, ../sass/utilities/_helpers.scss */
.region-inner:before, .region-header-blocks:before, .region-featureblocks:before, .region-content:before, .region-footer:before, .messages:before, .messages--status:before, .messages--warning:before, .messages--error:before, .region-inner:after, .region-header-blocks:after, .region-featureblocks:after, .region-content:after, .region-footer:after, .messages:after, .messages--status:after, .messages--warning:after, .messages--error:after {
  content: " ";
  display: table;
}
/* line 14, ../sass/utilities/_helpers.scss */
.region-inner:after, .region-header-blocks:after, .region-featureblocks:after, .region-content:after, .region-footer:after, .messages:after, .messages--status:after, .messages--warning:after, .messages--error:after {
  clear: both;
}

/* ==========================================================================
   Floats
   ========================================================================== */
/* line 21, ../sass/utilities/_helpers.scss */
picture[data-picture-align="left"] {
  display: block;
  float: left;
  margin: 0 1.5em 0.5em 0;
}

/* line 27, ../sass/utilities/_helpers.scss */
picture[data-picture-align="right"] {
  display: block;
  float: right;
  margin: 0 0 0.5em 1.5em;
}

/**
 * Clearfix
 */
/* line 9, ../sass/utilities/_extendables.scss */
.region-inner, .region-header-blocks, .region-featureblocks, .region-content, .region-footer, .messages, .messages--status, .messages--warning, .messages--error {
  *zoom: 1;
}
/* line 38, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/compass-core-1.0.3/stylesheets/compass/utilities/general/_clearfix.scss */
.region-inner:after, .region-header-blocks:after, .region-featureblocks:after, .region-content:after, .region-footer:after, .messages:after, .messages--status:after, .messages--warning:after, .messages--error:after {
  content: "";
  display: table;
  clear: both;
}

/**
 *  Inner sections of full width containers
 */
/* line 17, ../sass/utilities/_extendables.scss */
.region-inner, .messages, .messages--status, .messages--warning, .messages--error {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 95%;
  max-width: 1200px;
}

/**
 * Floats
 */
/* line 30, ../sass/utilities/_extendables.scss */
picture[data-picture-align="left"] {
  display: block;
  float: left;
  margin: 0 1.5em 0.5em 0;
}

/* line 36, ../sass/utilities/_extendables.scss */
picture[data-picture-align="right"] {
  display: block;
  float: right;
  margin: 0 0 0.5em 1.5em;
}

/**
 * Buttons
 */
/* line 48, ../sass/utilities/_extendables.scss */
.form-submit, .flexslider-home-features .slide-button a,
.button-orange,
.button-mocha {
  margin: 0 .5em .5em 0;
  padding: .6em 1em .5em;
  display: inline-block;
  color: #fff;
  line-height: 1;
  border: none;
  border-radius: .25em;
}
/* line 56, ../sass/utilities/_extendables.scss */
.form-submit:hover, .flexslider-home-features .slide-button a:hover,
.button-orange:hover,
.button-mocha:hover, .form-submit:focus, .flexslider-home-features .slide-button a:focus,
.button-orange:focus,
.button-mocha:focus {
  text-decoration: none;
  color: #fff;
}

/* line 62, ../sass/utilities/_extendables.scss */
.form-submit, .flexslider-home-features .slide-button a,
.button-orange {
  text-transform: uppercase;
  background-color: #f08421;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
/* line 69, ../sass/utilities/_extendables.scss */
.form-submit:hover, .flexslider-home-features .slide-button a:hover, .form-submit:focus, .flexslider-home-features .slide-button a:focus,
.button-orange:hover,
.button-orange:focus {
  background-color: #f9d7b8;
}

/* line 74, ../sass/utilities/_extendables.scss */
a.more-button, .color_block .block__content .more-link a,
.button-colorblock {
  padding: .6em 1em .5em;
  border: 1px solid #fff;
  text-transform: uppercase;
  font-size: 1.25em;
  text-decoration: none;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
/* line 82, ../sass/utilities/_extendables.scss */
a.more-button:hover, .color_block .block__content .more-link a:hover, a.more-button:focus, .color_block .block__content .more-link a:focus,
.button-colorblock:hover,
.button-colorblock:focus {
  background-color: rgba(255, 255, 255, 0.5);
}

/* line 87, ../sass/utilities/_extendables.scss */
.button-mocha {
  text-transform: uppercase;
  background-color: #453635;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
/* line 94, ../sass/utilities/_extendables.scss */
.button-mocha:hover,
.button-mocha:focus {
  background-color: #8f6e6d;
}

/* line 8, ../sass/base/_normalize.scss */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/* line 16, ../sass/base/_normalize.scss */
body {
  margin: 0;
}

/* line 26, ../sass/base/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/* line 45, ../sass/base/_normalize.scss */
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

/* line 57, ../sass/base/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* line 66, ../sass/base/_normalize.scss */
[hidden],
template {
  display: none;
}

/* line 75, ../sass/base/_normalize.scss */
a {
  background: transparent;
}

/* line 82, ../sass/base/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/* line 91, ../sass/base/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* line 98, ../sass/base/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/* line 106, ../sass/base/_normalize.scss */
dfn {
  font-style: italic;
}

/* line 114, ../sass/base/_normalize.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* line 122, ../sass/base/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/* line 130, ../sass/base/_normalize.scss */
small {
  font-size: 80%;
}

/* line 137, ../sass/base/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 145, ../sass/base/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 149, ../sass/base/_normalize.scss */
sub {
  bottom: -0.25em;
}

/* line 157, ../sass/base/_normalize.scss */
img {
  border: 0;
}

/* line 164, ../sass/base/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* line 172, ../sass/base/_normalize.scss */
figure {
  margin: 1em 40px;
}

/* line 179, ../sass/base/_normalize.scss */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/* line 188, ../sass/base/_normalize.scss */
pre {
  overflow: auto;
}

/* line 195, ../sass/base/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* line 214, ../sass/base/_normalize.scss */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
  max-width: 100%;
}

/* line 228, ../sass/base/_normalize.scss */
button {
  overflow: visible;
}

/* line 238, ../sass/base/_normalize.scss */
button,
select {
  text-transform: none;
}

/* line 250, ../sass/base/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

/* line 261, ../sass/base/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/* line 269, ../sass/base/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* line 279, ../sass/base/_normalize.scss */
input {
  line-height: normal;
}

/* line 285, ../sass/base/_normalize.scss */
*
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

/* line 301, ../sass/base/_normalize.scss */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/* line 311, ../sass/base/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 323, ../sass/base/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 331, ../sass/base/_normalize.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
  min-width: 0;
  /* fix odd sizing bug in webkit */
}

/* line 342, ../sass/base/_normalize.scss */
legend {
  border: 0;
  padding: 0;
}

/* line 350, ../sass/base/_normalize.scss */
textarea {
  overflow: auto;
}

/* line 358, ../sass/base/_normalize.scss */
optgroup {
  font-weight: bold;
}

/* line 366, ../sass/base/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 371, ../sass/base/_normalize.scss */
td,
th {
  padding: 0;
}

/* ==========================================================================
   Box sizing
   default set in global variables
   ========================================================================== */
/* apply a natural box layout model to all elements, but allowing components to change */
/* line 7, ../sass/base/_box-sizing.scss */
html {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 10, ../sass/base/_box-sizing.scss */
*, *:before, *:after {
  box-sizing: inherit;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Root html element
 * (set defaults for root font size and line height)
 */
/* line 10, ../sass/base/_typography.scss */
html {
  font-family: "myriad-pro", sans-serif;
  font-size: 100%;
  line-height: 1.4;
  color: #453635;
}

/**
 * Headers
 */
/* line 21, ../sass/base/_typography.scss */
h1 {
  margin-top: 0;
}

/* line 25, ../sass/base/_typography.scss */
h2 {
  text-transform: uppercase;
  font-size: 1.25em;
  letter-spacing: 0.02em;
}

/**
 * Paragraph
 */
/**
 * Lists
 */
/**
 * Quotes
 */
/**
 * Horizontal Rules
 */
/* line 79, ../sass/base/_typography.scss */
hr {
  border: 1px solid #f3f3f3;
}

/* ==========================================================================
   Default Link Styles
   ========================================================================== */
/* line 6, ../sass/base/_links.scss */
a {
  text-decoration: none;
  color: #f08421;
}
/* line 10, ../sass/base/_links.scss */
a:hover, a:focus {
  color: #f5bd89;
}

/* line 16, ../sass/base/_links.scss */
h3.expandable {
  color: #f08421;
}
/* line 18, ../sass/base/_links.scss */
h3.expandable:hover {
  cursor: pointer;
  text-decoration: underline;
  color: #f5bd89;
}

/* ==========================================================================
   Media
   ========================================================================== */
/**
 * Images and Captions
 */
/* line 9, ../sass/base/_media.scss */
img {
  /* Remove border when inside `a` element in IE 8/9. */
  border: 0;
  /* Improve image quality when scaled in IE 7. */
  -ms-interpolation-mode: bicubic;
  /* Suppress the space beneath the baseline */
  vertical-align: bottom;
  /* Responsive images */
  max-width: 100%;
  height: auto;
  width: auto;
}

/* Embedded images using WYSIWYG and Picture module */
/* line 28, ../sass/base/_media.scss */
picture {
  display: block;
  position: relative;
  margin-bottom: 0.5em;
}
/* line 39, ../sass/base/_media.scss */
picture[data-picture-align="center"] img {
  margin-left: auto;
  margin-right: auto;
}
/* line 44, ../sass/base/_media.scss */
picture[data-picture-mapping="full_width"] {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
/* line 49, ../sass/base/_media.scss */
picture[data-picture-mapping="half_width"] {
  width: 50%;
}
/* line 52, ../sass/base/_media.scss */
picture[data-picture-mapping="quarter_width"] {
  width: 25%;
}
/* line 55, ../sass/base/_media.scss */
picture img {
  display: block;
}

/* Photo Captions */
/* line 62, ../sass/base/_media.scss */
figcaption,
.caption {
  font-size: 0.75em;
  margin: .5em 0;
  font-style: italic;
}

/**
 * iframes
 */
/* line 72, ../sass/base/_media.scss */
iframe {
  max-width: 100% !important;
}

/* Image Grids */
/* line 78, ../sass/base/_media.scss */
.image-grid {
  clear: both;
}
/* line 81, ../sass/base/_media.scss */
.image-grid ul {
  padding: 0;
  margin: 0;
}
/* line 86, ../sass/base/_media.scss */
.image-grid li {
  margin: 0 !important;
  list-style: none !important;
  float: left;
  padding: 0 10px 30px 0 !important;
}
@media (min-width: 49.375em) {
  /* line 86, ../sass/base/_media.scss */
  .image-grid li {
    padding: 0 50px 30px 0 !important;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 .image-grid li {
  padding: 0 50px 30px 0 !important;
}
/* line 96, ../sass/base/_media.scss */
.image-grid a {
  text-decoration: none;
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Drupal admin tables.
 */
/* line 9, ../sass/base/_tables.scss */
form th {
  text-align: left;
  /* LTR */
  padding-right: 1em;
  /* LTR */
  border-bottom: 3px solid #ccc;
}
/* line 14, ../sass/base/_tables.scss */
form tbody {
  border-top: 1px solid #ccc;
}
/* line 17, ../sass/base/_tables.scss */
form table ul {
  margin: 0;
}

/* line 21, ../sass/base/_tables.scss */
tr.even,
tr.odd {
  background-color: #eee;
  border-bottom: 1px solid #ccc;
  padding: 0.1em 0.6em;
}

/* line 27, ../sass/base/_tables.scss */
tr.even {
  background-color: #fff;
}

/* line 33, ../sass/base/_tables.scss */
.lt-ie8 tr.even th,
.lt-ie8 tr.even td,
.lt-ie8 tr.odd th,
.lt-ie8 tr.odd td {
  /* IE doesn't display borders on table rows. */
  border-bottom: 1px solid #ccc;
}

/* Markup generated by theme_tablesort_indicator(). */
/* line 42, ../sass/base/_tables.scss */
td.active {
  background-color: #ddd;
}

/* Center checkboxes inside table cell. */
/* line 47, ../sass/base/_tables.scss */
td.checkbox,
th.checkbox {
  text-align: center;
}

/* Drupal core wrongly puts this in system.menus.css. Since we override that, add it back. */
/* line 53, ../sass/base/_tables.scss */
td.menu-disabled {
  background: #ccc;
}

/* line 57, ../sass/base/_tables.scss */
.views-table {
  width: 100%;
}
/* line 59, ../sass/base/_tables.scss */
.views-table td {
  border: 1px solid;
  padding: 0 1px;
}

/* Hide row weights */
/* line 66, ../sass/base/_tables.scss */
.tabledrag-toggle-weight-wrapper {
  display: none;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/* Wrapper for a form element (or group of form elements) and its label. */
/* line 6, ../sass/base/_forms.scss */
.form-item {
  margin: 0 0 1em;
  /* Pack groups of checkboxes and radio buttons closer together. */
  /* Form items in a table. */
  /* Highlight the form elements that caused a form submission error. */
  /* The descriptive help text (separate from the label). */
}
/* line 9, ../sass/base/_forms.scss */
.form-item label {
  font-weight: bold;
  display: block;
}
/* line 15, ../sass/base/_forms.scss */
.form-checkboxes .form-item, .form-radios .form-item {
  /* Drupal core uses "0.4em 0". */
  margin: 0;
}
/* line 22, ../sass/base/_forms.scss */
tr.odd .form-item, tr.even .form-item {
  margin: 0;
}
/* line 28, ../sass/base/_forms.scss */
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}
/* line 35, ../sass/base/_forms.scss */
.form-item .description {
  font-size: 0.85em;
  color: #7f6361;
  margin-top: .25em;
}

/* line 41, ../sass/base/_forms.scss */
.form-text,
.form-textarea {
  color: #453635;
  padding: .5em;
  border: 2px solid rgba(69, 54, 53, 0.3);
}
/* line 46, ../sass/base/_forms.scss */
.form-text:focus,
.form-textarea:focus {
  border-color: #3e6a73;
}

/* line 53, ../sass/base/_forms.scss */
.form-type-radio .description,
.form-type-checkbox .description {
  margin-left: 2.4em;
}

/* line 58, ../sass/base/_forms.scss */
.form-submit {
  margin: 1em 0;
}

/* The part of the label that indicates a required field. */
/* line 64, ../sass/base/_forms.scss */
.form-required {
  color: #c00;
}

/* Labels for radios and checkboxes. */
/* line 69, ../sass/base/_forms.scss */
label.option {
  display: inline;
  font-weight: normal;
}

/* Password confirmation. */
/* line 75, ../sass/base/_forms.scss */
.password-parent,
.confirm-parent {
  margin: 0;
}

/**
 * Photos Upload
 */
/* line 87, ../sass/base/_forms.scss */
#jr-iron-chef-cookingclub-photos-node-form #edit-field-gallery-photos legend {
  font-weight: bold;
}
/* line 90, ../sass/base/_forms.scss */
#jr-iron-chef-cookingclub-photos-node-form #edit-field-gallery-photos label, #jr-iron-chef-cookingclub-photos-node-form #edit-field-gallery-photos .form-submit {
  display: none;
}

/**
 * CAPTCHA
 */
/* line 101, ../sass/base/_forms.scss */
.captcha.form-wrapper legend {
  font-weight: bold;
  margin-top: 1em;
}
/* line 105, ../sass/base/_forms.scss */
.captcha.form-wrapper .fieldset-description {
  font-size: .85em;
  color: #7f6361;
}

/**
 * Constant Contact
 */
/* line 116, ../sass/base/_forms.scss */
.block-constant-contact {
  clear: both;
  display: none;
}
@media (min-width: 49.375em) {
  /* line 116, ../sass/base/_forms.scss */
  .block-constant-contact {
    display: block;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 .block-constant-contact {
  display: block;
}
/* line 122, ../sass/base/_forms.scss */
.block-constant-contact label {
  font-size: 0px;
  color: #fff;
  display: inline;
}
/* line 126, ../sass/base/_forms.scss */
.block-constant-contact label:after {
  text-transform: uppercase;
  color: #beb8b8;
  content: 'Get VT FEED News';
  font-size: 16px;
  margin-right: 5px;
}
/* line 133, ../sass/base/_forms.scss */
.block-constant-contact label .form-required {
  display: none;
}
/* line 138, ../sass/base/_forms.scss */
.block-constant-contact label[for=edit-cc-email-2]:after {
  content: 'Get Jr Iron Chef News';
}
/* line 142, ../sass/base/_forms.scss */
.block-constant-contact .form-text {
  width: 175px;
  padding: .25em 1.25em .25em .25em;
  border: 1px solid #beb8b8;
  background-color: #fff;
  border-radius: 0;
}

/**
 * Drupal admin tables.
 */
/* line 159, ../sass/base/_forms.scss */
form th {
  text-align: left;
  padding-right: 1em;
  border-bottom: 3px solid #ccc;
}
/* line 164, ../sass/base/_forms.scss */
form tbody {
  border-top: 1px solid #ccc;
}
/* line 167, ../sass/base/_forms.scss */
form table ul {
  margin: 0;
}

/* line 171, ../sass/base/_forms.scss */
tr.even,
tr.odd {
  background-color: #eee;
  border-bottom: 1px solid #ccc;
  padding: 0.1em 0.6em;
}

/* line 177, ../sass/base/_forms.scss */
tr.even {
  background-color: #fff;
}

/* Markup generated by theme_tablesort_indicator(). */
/* line 182, ../sass/base/_forms.scss */
td.active {
  background-color: #ddd;
}

/* Center checkboxes inside table cell. */
/* line 187, ../sass/base/_forms.scss */
td.checkbox,
th.checkbox {
  text-align: center;
}

/* Drupal core wrongly puts this in system.menus.css. Since we override that, add it back. */
/* line 193, ../sass/base/_forms.scss */
td.menu-disabled {
  background: #ccc;
}

/* Wrap the text in Sorce View of CKeditor */
/* line 198, ../sass/base/_forms.scss */
.cke_source {
  white-space: pre-wrap !important;
}

/* Constant Contact Forms */
/* line 204, ../sass/base/_forms.scss */
.ctct-form-defaults {
  font-family: "myriad-pro", sans-serif !important;
}
/* line 206, ../sass/base/_forms.scss */
.ctct-form-defaults * {
  font-family: "myriad-pro", sans-serif !important;
}
/* line 209, ../sass/base/_forms.scss */
.ctct-form-defaults button {
  width: auto !important;
  padding: .6em 1em .5em !important;
}

/*
 * jQuery FlexSlider v2.2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */
/* Browser Resets
*********************************/
/* line 15, ../sass/base/_flexslider.scss */
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
  outline: none;
}

/* line 19, ../sass/base/_flexslider.scss */
.slides,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* FlexSlider Necessary Styles
*********************************/
/* line 25, ../sass/base/_flexslider.scss */
.flexslider {
  margin: 0;
  padding: 0;
}

/* line 26, ../sass/base/_flexslider.scss */
.flexslider .slides > li {
  display: none;
  /* Hide the slides before the JS is loaded. Avoids image jumping */
  -webkit-backface-visibility: hidden;
  position: relative;
}

/* line 31, ../sass/base/_flexslider.scss */
.flexslider .slides img {
  width: 100%;
  display: block;
}

/* line 32, ../sass/base/_flexslider.scss */
.flex-pauseplay span {
  text-transform: capitalize;
}

/* Clearfix for the .slides element */
/* line 35, ../sass/base/_flexslider.scss */
.slides:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* line 36, ../sass/base/_flexslider.scss */
html[xmlns] .slides {
  display: block;
}

/* line 37, ../sass/base/_flexslider.scss */
* html .slides {
  height: 1%;
}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
/* line 42, ../sass/base/_flexslider.scss */
.no-js .slides > li:first-child {
  display: block;
}

/* FlexSlider Default Theme
*********************************/
/* line 46, ../sass/base/_flexslider.scss */
.flexslider {
  margin: 0 0 1.5em;
  position: relative;
  zoom: 1;
}

/* line 51, ../sass/base/_flexslider.scss */
.flex-viewport {
  max-height: 2000px;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

/* line 55, ../sass/base/_flexslider.scss */
.loading .flex-viewport {
  max-height: 300px;
}

/* line 56, ../sass/base/_flexslider.scss */
.flexslider .slides {
  zoom: 1;
}

/* line 57, ../sass/base/_flexslider.scss */
.carousel li {
  margin-right: 5px;
}

/* Direction Nav */
/* line 69, ../sass/base/_flexslider.scss */
.flex-direction-nav a.flex-next:before {
  display: none;
}

/* line 70, ../sass/base/_flexslider.scss */
.flex-direction-nav a.flex-prev:before {
  display: none;
}

/* line 72, ../sass/base/_flexslider.scss */
.flex-direction-nav {
  *height: 0;
}
/* line 75, ../sass/base/_flexslider.scss */
.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 28px;
  height: 66px;
  margin: -33px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  color: transparent;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
/* line 93, ../sass/base/_flexslider.scss */
.flex-direction-nav .flex-prev {
  font-size: 0;
  background-repeat: no-repeat;
  background-image: url('../images/arrow-prev.svg?1567575074');
  left: -76px;
}
/* line 86, ../sass/utilities/_mixins.scss */
.no-svg .flex-direction-nav .flex-prev {
  background-image: url('../images/arrow-prev.png?1567575074');
}
/* line 98, ../sass/base/_flexslider.scss */
.flexslider:hover .flex-direction-nav .flex-prev {
  opacity: 1;
  left: 0;
}
/* line 102, ../sass/base/_flexslider.scss */
.flex-direction-nav .flex-prev:hover, .flex-direction-nav .flex-prev:focus {
  opacity: 1;
}
/* line 108, ../sass/base/_flexslider.scss */
.flex-direction-nav .flex-next {
  font-size: 0;
  background-repeat: no-repeat;
  background-image: url('../images/arrow-next.svg?1567575074');
  right: -76px;
  text-align: right;
}
/* line 86, ../sass/utilities/_mixins.scss */
.no-svg .flex-direction-nav .flex-next {
  background-image: url('../images/arrow-next.png?1567575074');
}
/* line 114, ../sass/base/_flexslider.scss */
.flexslider:hover .flex-direction-nav .flex-next {
  opacity: 1;
  right: 0;
}
/* line 118, ../sass/base/_flexslider.scss */
.flex-direction-nav .flex-next:hover, .flex-direction-nav .flex-next:focus {
  opacity: 1;
}
/* line 124, ../sass/base/_flexslider.scss */
.flex-direction-nav .flex-disabled {
  opacity: 0 !important;
  filter: alpha(opacity=0);
  cursor: default;
}

/* Pause/Play */
/* Control Nav */
/**
 * Home Features Slides
 */
/* line 159, ../sass/base/_flexslider.scss */
.flexslider-home-features .flexslider {
  box-shadow: none;
  border: none;
}
/* line 165, ../sass/base/_flexslider.scss */
.flexslider-home-features .flex-caption {
  position: relative;
  top: 50%;
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 20% 1em;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.5);
}
/* line 103, ../sass/utilities/_mixins.scss */
.lt-ie9 .flexslider-home-features .flex-caption {
  /* IE8 - must be on one line, unfortunately */
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1, M12=0, M21=0, M22=1, SizingMethod='auto expand')";
  /* IE6 and 7 */
  filter: progid:DXImageTransform.Microsoft.Matrix( M11=1, M12=0, M21=0, M22=1, SizingMethod='auto expand');
  margin-top: -50%;
}
@media (min-width: 62.5em) {
  /* line 165, ../sass/base/_flexslider.scss */
  .flexslider-home-features .flex-caption {
    width: 33%;
    height: auto;
    padding: 1em;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.8);
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 .flexslider-home-features .flex-caption {
  width: 33%;
  height: auto;
  padding: 1em;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.8);
}
/* line 182, ../sass/base/_flexslider.scss */
.flexslider-home-features .slide-title {
  margin: 0.5em 0;
}
/* line 185, ../sass/base/_flexslider.scss */
.flexslider-home-features .slide-subtitle {
  font-size: 1.5em;
  padding: 0;
  font-weight: bold;
  margin: 0.5em 0;
}
/* line 191, ../sass/base/_flexslider.scss */
.flexslider-home-features .slide-button {
  margin: 0.5em 0;
}
/* line 193, ../sass/base/_flexslider.scss */
.flexslider-home-features .slide-button a {
  border: 1px solid #fff;
  margin: 0;
  border-radius: 0;
}
/* line 198, ../sass/base/_flexslider.scss */
.flexslider-home-features .slide-button a:after {
  content: '>';
  margin-left: 3px;
}
@media (min-width: 62.5em) {
  /* line 193, ../sass/base/_flexslider.scss */
  .flexslider-home-features .slide-button a {
    font-size: 120%;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 .flexslider-home-features .slide-button a {
  font-size: 120%;
}
/* line 207, ../sass/base/_flexslider.scss */
.flexslider-home-features figure {
  margin: 0;
}
/* line 211, ../sass/base/_flexslider.scss */
.flexslider-home-features .flex-control-nav {
  bottom: -20px;
}
/* line 215, ../sass/base/_flexslider.scss */
.flexslider-home-features .flex-direction-nav {
  position: relative;
  bottom: 15px;
}
/* line 218, ../sass/base/_flexslider.scss */
.flexslider-home-features .flex-direction-nav .flex-next, .flexslider-home-features .flex-direction-nav .flex-prev {
  height: 40px;
  width: 40px;
  background-color: rgba(0, 0, 0, 0.8);
}

/* ==========================================================================
   Regions
   ========================================================================== */
/* line 5, ../sass/layout/_regions.scss */
html {
  background-color: #beb8b8;
}

/* line 9, ../sass/layout/_regions.scss */
.region-page {
  background-color: #fff;
}

/* line 13, ../sass/layout/_regions.scss */
.region-main {
  padding: 1em 0;
  position: relative;
}

/* ==========================================================================
   Accessibility Features
   ========================================================================== */
/* element-invisible as defined by http://snook.ca/archives/html_and_css/hiding-content-for-accessibility */
/* line 7, ../sass/modules/_accessibility.scss */
.element-invisible,
.block-constant-contact .form-submit,
.element-focusable,
.block-search .form-submit {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
}

/* Turns off the element-invisible effect. */
/* line 13, ../sass/modules/_accessibility.scss */
.element-focusable:active, .element-focusable:focus {
  position: static !important;
  clip: auto;
  height: auto;
  width: auto;
  overflow: auto;
}

/*
 * The skip-link link will be completely hidden until a user tabs to the link.
 */
/* line 30, ../sass/modules/_accessibility.scss */
#skip-link {
  margin: 0;
}
/* line 33, ../sass/modules/_accessibility.scss */
#skip-link a,
#skip-link a:visited {
  display: block;
  width: 100%;
  padding: 2px 0 3px 0;
  text-align: center;
  background-color: #666;
  color: #fff;
}

/* ==========================================================================
   Page Regions
   define colors, backgrounds for main page wrappers
   ========================================================================== */
/**
 * Header
 */
/* line 26, ../sass/modules/_regions.scss */
.region-header {
  padding-top: 1em;
  margin-bottom: 1em;
}
@media (min-width: 49.375em) {
  /* line 26, ../sass/modules/_regions.scss */
  .region-header {
    margin-bottom: 0;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 .region-header {
  margin-bottom: 0;
}
/* line 33, ../sass/modules/_regions.scss */
.region-header .header__site-name {
  display: inline-block;
  margin: 0;
  height: 88px;
  overflow: hidden;
}
@media (min-width: 49.375em) {
  /* line 33, ../sass/modules/_regions.scss */
  .region-header .header__site-name {
    height: 162px;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 .region-header .header__site-name {
  height: 162px;
}
/* line 44, ../sass/modules/_regions.scss */
.section-jic .region-header .header__site-slogan {
  display: none;
}
/* line 49, ../sass/modules/_regions.scss */
.region-header .header__site-link {
  position: relative;
  overflow: hidden;
  display: block;
  text-indent: -9999px;
  background-image: url('../images/vtfeed_logo.png?1567575074');
  background-repeat: no-repeat;
  -moz-background-size: contain;
  -o-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
  width: 200px;
  height: 108px;
}
/* line 57, ../sass/modules/_regions.scss */
.section-jic .region-header .header__site-link {
  background-image: url('../images/ironchef-logo.png?1567575074');
}
/* line 60, ../sass/modules/_regions.scss */
.page-user .region-header .header__site-link {
  background-image: url('../images/ironchef-logo.png?1567575074');
}
/* line 63, ../sass/modules/_regions.scss */
.node-type-jic-page .region-header .header__site-link {
  background-image: url('../images/ironchef-logo.png?1567575074');
}
/* line 66, ../sass/modules/_regions.scss */
.page-node-add-jic-team .region-header .header__site-link {
  background-image: url('../images/ironchef-logo.png?1567575074');
}
/* line 69, ../sass/modules/_regions.scss */
.node-type-jic-team .region-header .header__site-link {
  background-image: url('../images/ironchef-logo.png?1567575074');
}
/* line 72, ../sass/modules/_regions.scss */
.page-node-add-jr-iron-chef-recipe .region-header .header__site-link {
  background-image: url('../images/ironchef-logo.png?1567575074');
}
/* line 75, ../sass/modules/_regions.scss */
.node-type-jr-iron-chef-recipe .region-header .header__site-link {
  background-image: url('../images/ironchef-logo.png?1567575074');
}
/* line 78, ../sass/modules/_regions.scss */
.node-type-jic-gallery .region-header .header__site-link {
  background-image: url('../images/ironchef-logo.png?1567575074');
}
@media (min-width: 49.375em) {
  /* line 49, ../sass/modules/_regions.scss */
  .region-header .header__site-link {
    width: 300px;
    height: 162px;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 .region-header .header__site-link {
  width: 300px;
  height: 162px;
}

/* line 91, ../sass/modules/_regions.scss */
#block-block-10 .header__site-link {
  background-image: url('../images/ironchef-logo.png?1567575074');
}

@media (min-width: 49.375em) {
  /* line 97, ../sass/modules/_regions.scss */
  .region-header-blocks {
    width: 53%;
    position: absolute;
    right: 0;
    top: 2em;
    text-align: right;
  }
  /* line 105, ../sass/modules/_regions.scss */
  .region-header-blocks .block {
    float: right;
    margin-left: 0.5em;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 .region-header-blocks {
  width: 53%;
  position: absolute;
  right: 0;
  top: 2em;
  text-align: right;
}
/* line 105, ../sass/modules/_regions.scss */
.lt-ie9 .region-header-blocks .block {
  float: right;
  margin-left: 0.5em;
}
/* line 110, ../sass/modules/_regions.scss */
.region-header-blocks .block-constant-contact {
  margin-bottom: 0.5em;
}
/* line 113, ../sass/modules/_regions.scss */
.region-header-blocks #block-block-11, .region-header-blocks #block-block-16 {
  display: none;
  clear: both;
}
/* line 116, ../sass/modules/_regions.scss */
.region-header-blocks #block-block-11 a.button-orange, .region-header-blocks #block-block-16 a.button-orange {
  margin: 0;
}
@media (min-width: 49.375em) {
  /* line 113, ../sass/modules/_regions.scss */
  .region-header-blocks #block-block-11, .region-header-blocks #block-block-16 {
    display: block;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 .region-header-blocks #block-block-11, .lt-ie9 .region-header-blocks #block-block-16 {
  display: block;
}

/**
 * Feature Blocks Region
 */
@media (min-width: 49.375em) {
  /* line 129, ../sass/modules/_regions.scss */
  .region-featureblocks {
    display: -ms-flexbox;
    -ms-flex-align: stretch;
    display: -webkit-flex;
    display: flex;
    border-bottom: 1px solid #beb8b8;
    margin: 4em 0;
    padding-bottom: 3em;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 .region-featureblocks {
  display: -ms-flexbox;
  -ms-flex-align: stretch;
  display: -webkit-flex;
  display: flex;
  border-bottom: 1px solid #beb8b8;
  margin: 4em 0;
  padding-bottom: 3em;
}

/**
 * Main Content Region
 */
/* line 149, ../sass/modules/_regions.scss */
.region-content {
  padding-bottom: 1em;
}
/* line 153, ../sass/modules/_regions.scss */
.region-content article {
  max-width: 800px;
}

/**
 * Footer
 */
/* line 162, ../sass/modules/_regions.scss */
.region-footer {
  padding: 1em;
  background-color: #beb8b8;
  font-weight: 100;
}
/* line 168, ../sass/modules/_regions.scss */
.region-footer a {
  color: #453635;
}
/* line 170, ../sass/modules/_regions.scss */
.region-footer a:hover {
  color: #453635;
  text-decoration: underline;
}
/* line 176, ../sass/modules/_regions.scss */
.region-footer .column {
  margin-bottom: 1em;
  border-top: 1px solid;
}
@media (min-width: 62.5em) {
  /* line 176, ../sass/modules/_regions.scss */
  .region-footer .column {
    position: relative;
    float: left;
    width: 33%;
    padding-right: 2em;
    padding-left: 2em;
    margin-bottom: 0;
    border-top: none;
  }
  /* line 187, ../sass/modules/_regions.scss */
  .region-footer .column:before {
    content: '';
    position: absolute;
    top: 1.5em;
    left: 0;
    width: 1px;
    height: 11em;
    background-color: #453635;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 .region-footer .column {
  position: relative;
  float: left;
  width: 33%;
  padding-right: 2em;
  padding-left: 2em;
  margin-bottom: 0;
  border-top: none;
}
/* line 187, ../sass/modules/_regions.scss */
.lt-ie9 .region-footer .column:before {
  content: '';
  position: absolute;
  top: 1.5em;
  left: 0;
  width: 1px;
  height: 11em;
  background-color: #453635;
}
/* line 199, ../sass/modules/_regions.scss */
.region-footer .column-first {
  padding-left: 0;
  border-top: none;
}
/* line 202, ../sass/modules/_regions.scss */
.region-footer .column-first:before {
  content: none;
}
/* line 207, ../sass/modules/_regions.scss */
.region-footer .partner-logo {
  max-height: 125px;
  max-width: 200px;
  margin-bottom: 10px;
}
/* line 211, ../sass/modules/_regions.scss */
.region-footer .partner-logo.first {
  margin-right: 20px;
}
/* line 217, ../sass/modules/_regions.scss */
.region-footer .links--social a {
  background-color: #453635;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
/* line 5, ../sass/modules/_navigation.scss */
.region-navigation {
  border-top: solid 1px #f3f3f3;
  margin-top: 1em;
  padding: 0.5em 0;
}
@media (min-width: 49.375em) {
  /* line 5, ../sass/modules/_navigation.scss */
  .region-navigation {
    position: static !important;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 .region-navigation {
  position: static !important;
}

/**
 * Main Menu (top level)
 */
/* line 20, ../sass/modules/_navigation.scss */
.region-navigation .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: block;
}
@media (min-width: 78.75em) {
  /* line 20, ../sass/modules/_navigation.scss */
  .region-navigation .menu {
    text-align: center;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 .region-navigation .menu {
  text-align: center;
}
/* line 30, ../sass/modules/_navigation.scss */
.region-navigation .menu__item.level-1 {
  width: 100%;
  display: block;
  font-weight: 300;
  letter-spacing: 0.04em;
}
@media (min-width: 49.375em) {
  /* line 30, ../sass/modules/_navigation.scss */
  .region-navigation .menu__item.level-1 {
    width: auto;
    display: inline-block;
    margin-right: 1.4em;
  }
  /* line 39, ../sass/modules/_navigation.scss */
  .region-navigation .menu__item.level-1:last-child {
    margin-right: 0;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 .region-navigation .menu__item.level-1 {
  width: auto;
  display: inline-block;
  margin-right: 1.4em;
}
/* line 39, ../sass/modules/_navigation.scss */
.lt-ie9 .region-navigation .menu__item.level-1:last-child {
  margin-right: 0;
}
@media (min-width: 78.75em) {
  /* line 30, ../sass/modules/_navigation.scss */
  .region-navigation .menu__item.level-1 {
    margin-right: 3.5em;
    font-size: 1.15em;
    letter-spacing: 0.15em;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 .region-navigation .menu__item.level-1 {
  margin-right: 3.5em;
  font-size: 1.15em;
  letter-spacing: 0.15em;
}
/* line 49, ../sass/modules/_navigation.scss */
.region-navigation .menu__link {
  color: #453635;
  text-transform: uppercase;
  display: block;
  padding: .5em;
  border-bottom: 1px solid #f3f3f3;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
/* line 56, ../sass/modules/_navigation.scss */
.region-navigation .menu__link:hover, .region-navigation .menu__link:focus {
  color: #3e6a73;
  border-bottom-color: #3e6a73;
}
@media (min-width: 49.375em) {
  /* line 49, ../sass/modules/_navigation.scss */
  .region-navigation .menu__link {
    border-bottom-color: transparent;
    padding: .25em 0;
    margin: .25em 0;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 .region-navigation .menu__link {
  border-bottom-color: transparent;
  padding: .25em 0;
  margin: .25em 0;
}
/* line 65, ../sass/modules/_navigation.scss */
.region-navigation .menu__link.active-trail, .region-navigation .menu__link.active {
  color: #3e6a73;
  border-bottom-color: #3e6a73;
  font-weight: 500;
}
/* line 72, ../sass/modules/_navigation.scss */
.region-navigation .menu .menu {
  padding-left: 1em;
}
/* line 74, ../sass/modules/_navigation.scss */
.region-navigation .menu .menu .menu__link {
  text-transform: none;
  border: none;
}
@media (min-width: 49.375em) {
  /* line 72, ../sass/modules/_navigation.scss */
  .region-navigation .menu .menu {
    padding-left: 0;
    visibility: hidden;
    padding-left: 0;
    z-index: 100;
    text-align: left;
    width: auto;
    position: absolute;
    top: 2.25em;
    margin-left: -0.25em;
  }
  /* line 88, ../sass/modules/_navigation.scss */
  .region-navigation .menu .menu .menu__item.level-2 {
    display: block;
    letter-spacing: 0;
    background: #f3f3f3;
    background: rgba(243, 243, 243, 0.8);
    padding: 0 0.25em;
  }
  /* line 94, ../sass/modules/_navigation.scss */
  .region-navigation .menu .menu .menu__item.level-2 .menu__link {
    text-transform: none;
    margin: 0;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 .region-navigation .menu .menu {
  padding-left: 0;
  visibility: hidden;
  padding-left: 0;
  z-index: 100;
  text-align: left;
  width: auto;
  position: absolute;
  top: 2.25em;
  margin-left: -0.25em;
}
/* line 88, ../sass/modules/_navigation.scss */
.lt-ie9 .region-navigation .menu .menu .menu__item.level-2 {
  display: block;
  letter-spacing: 0;
  background: #f3f3f3;
  background: rgba(243, 243, 243, 0.8);
  padding: 0 0.25em;
}
/* line 94, ../sass/modules/_navigation.scss */
.lt-ie9 .region-navigation .menu .menu .menu__item.level-2 .menu__link {
  text-transform: none;
  margin: 0;
}
@media (min-width: 49.375em) {
  /* line 102, ../sass/modules/_navigation.scss */
  .region-navigation li:hover .menu,
  .region-navigation a:hover .menu,
  .region-navigation a:focus .menu {
    visibility: visible;
  }
}
/* line 102, ../sass/modules/_navigation.scss */
.lt-ie9 .region-navigation li:hover .menu,
.lt-ie9 .region-navigation a:hover .menu,
.lt-ie9 .region-navigation a:focus .menu {
  visibility: visible;
}

/* line 113, ../sass/modules/_navigation.scss */
#block-menu-block-2 .menu__item.level-1:last-child .menu__link {
  color: #008345;
  font-weight: 500;
}
/* line 116, ../sass/modules/_navigation.scss */
#block-menu-block-2 .menu__item.level-1:last-child .menu__link.active-trail, #block-menu-block-2 .menu__item.level-1:last-child .menu__link.active {
  color: #008345;
  border-bottom-color: #008345;
}
@media (min-width: 78.75em) {
  /* line 111, ../sass/modules/_navigation.scss */
  #block-menu-block-2 .menu__item.level-1 {
    margin-right: 4.2em;
  }
  /* line 125, ../sass/modules/_navigation.scss */
  #block-menu-block-2 .menu__item.level-1:last-child {
    margin-right: 0;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 #block-menu-block-2 .menu__item.level-1 {
  margin-right: 4.2em;
}
/* line 125, ../sass/modules/_navigation.scss */
.lt-ie9 #block-menu-block-2 .menu__item.level-1:last-child {
  margin-right: 0;
}

/*! responsive-nav.js 1.0.32 by @viljamis */
/* line 134, ../sass/modules/_navigation.scss */
.js .nav-collapse {
  clip: rect(0 0 0 0);
  max-height: 0;
  position: absolute;
  display: block;
  overflow: hidden;
  zoom: 1;
}
@media (min-width: 49.375em) {
  /* line 134, ../sass/modules/_navigation.scss */
  .js .nav-collapse {
    position: relative;
    overflow: visible;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 .js .nav-collapse {
  position: relative;
  overflow: visible;
}

/* line 147, ../sass/modules/_navigation.scss */
.nav-collapse {
  margin-bottom: 1em;
}
/* line 149, ../sass/modules/_navigation.scss */
.nav-collapse.opened {
  max-height: 9999px;
}
@media (min-width: 49.375em) {
  /* line 152, ../sass/modules/_navigation.scss */
  .nav-collapse.closed {
    max-height: none;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 .nav-collapse.closed {
  max-height: none;
}

/* line 159, ../sass/modules/_navigation.scss */
.disable-pointer-events {
  pointer-events: none !important;
}

/* line 163, ../sass/modules/_navigation.scss */
.nav-toggle {
  color: #fff;
  text-align: center;
  position: absolute;
  top: 52px;
  right: 52px;
  width: 2.1em;
  height: 2.1em;
  display: block;
  border-radius: 10em;
  font-size: 0;
  line-height: 1;
  padding: .5em 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
/* line 164, ../sass/modules/_navigation.scss */
.nav-toggle:before {
  content: url('../images/mobile-nav.png?1567575074');
}
@media (min-width: 49.375em) {
  /* line 163, ../sass/modules/_navigation.scss */
  .nav-toggle {
    display: none;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 .nav-toggle {
  display: none;
}

/**
 * Breadcrumb navigation.
 */
/* line 196, ../sass/modules/_navigation.scss */
.breadcrumb ol {
  margin: 0;
  padding: 0;
}
/* line 200, ../sass/modules/_navigation.scss */
.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/**
 * Admin toolbar fix
 */
/* ==========================================================================
   Search
   ========================================================================== */
/* line 6, ../sass/modules/_search.scss */
.block-search .form-search {
  padding: .25em 1.25em .25em .25em;
  border: 1px solid #beb8b8;
  background-color: #fff;
  border-radius: 0;
  background-repeat: no-repeat;
  background-image: url('../images/icon-search.svg?1567575074');
  background-position: right 50%;
  width: 150px;
  display: none;
}
/* line 86, ../sass/utilities/_mixins.scss */
.no-svg .block-search .form-search {
  background-image: url('../images/icon-search.png?1567575074');
}
@media (min-width: 49.375em) {
  /* line 6, ../sass/modules/_search.scss */
  .block-search .form-search {
    display: block;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 .block-search .form-search {
  display: block;
}

/* line 24, ../sass/modules/_search.scss */
#block-block-5 {
  display: block;
  position: absolute;
  top: 20px;
  right: 60px;
  border-left: 1px solid #beb8b8;
  border-right: 1px solid #beb8b8;
  padding: 0 17px;
}
@media (min-width: 49.375em) {
  /* line 24, ../sass/modules/_search.scss */
  #block-block-5 {
    display: none;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 #block-block-5 {
  display: none;
}

/* ==========================================================================
   Blocks
   ========================================================================== */
/* Block wrapper */
/* line 6, ../sass/modules/_blocks.scss */
.block {
  margin-bottom: 1em;
}

/* line 11, ../sass/modules/_blocks.scss */
.block__content h2 {
  clear: both;
}

/* JIC Instructions */
/* line 18, ../sass/modules/_blocks.scss */
#block-block-1, #block-block-2 {
  background-color: #f3f3f3;
  padding: 1em;
}

/* Banner Images */
/* line 26, ../sass/modules/_blocks.scss */
.page-title-inner {
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #453635;
  /* placeholder if image fails */
  border-bottom: 1px solid #fff;
}
/* line 32, ../sass/modules/_blocks.scss */
.page-title-inner span {
  display: block;
  padding-top: 32%;
}

/* Content Tabs */
/* line 41, ../sass/modules/_blocks.scss */
.view-your-teams .views-row {
  margin: 1em 0;
}
/* line 43, ../sass/modules/_blocks.scss */
.view-your-teams .views-row h2 {
  margin-bottom: 0;
}

/**
 * Block Classes
 */
/* line 55, ../sass/modules/_blocks.scss */
.color_block {
  font-size: 90%;
  padding: 1em;
  color: #fff;
}
/* line 59, ../sass/modules/_blocks.scss */
.color_block a {
  color: #fff;
  text-decoration: underline;
}
/* line 62, ../sass/modules/_blocks.scss */
.color_block a:hover {
  color: #fff;
  text-decoration: none;
}
/* line 68, ../sass/modules/_blocks.scss */
.color_block .block__content h2 {
  font-weight: 300;
  text-transform: none;
  font-size: 2em;
  line-height: 1.15em;
  margin: 0;
}
/* line 75, ../sass/modules/_blocks.scss */
.color_block .block__content .more-link {
  margin: 2em 0;
}

/* line 84, ../sass/modules/_blocks.scss */
.home_block {
  margin: 4em 0;
}
@media (min-width: 49.375em) {
  /* line 84, ../sass/modules/_blocks.scss */
  .home_block {
    margin: 0;
    float: left;
    width: 31%;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 .home_block {
  margin: 0;
  float: left;
  width: 31%;
}
/* line 91, ../sass/modules/_blocks.scss */
.home_block h2.block-title {
  color: #453635;
  font-size: 1.5em;
  background: #fff;
  margin: -0.7em -0.7em 0.25em -0.7em;
  padding: 0.5em 0;
}
/* line 98, ../sass/modules/_blocks.scss */
.home_block h3 {
  font-weight: 300;
  text-transform: none;
  font-size: 2em;
  line-height: 1.15em;
  margin: 0;
}

@media (min-width: 49.375em) {
  /* line 107, ../sass/modules/_blocks.scss */
  .home_block.green_block {
    margin-left: 3.5%;
    margin-right: 3.5%;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 .home_block.green_block {
  margin-left: 3.5%;
  margin-right: 3.5%;
}

@media (min-width: 49.375em) {
  /* line 114, ../sass/modules/_blocks.scss */
  .rightcolumn_float {
    clear: right;
    float: right;
    width: 35%;
    border-right: 0;
    margin-left: 2.5%;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 .rightcolumn_float {
  clear: right;
  float: right;
  width: 35%;
  border-right: 0;
  margin-left: 2.5%;
}

/* line 124, ../sass/modules/_blocks.scss */
.facebook {
  text-align: center;
}
@media (min-width: 49.375em) {
  /* line 124, ../sass/modules/_blocks.scss */
  .facebook {
    text-align: right;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 .facebook {
  text-align: right;
}

/* line 131, ../sass/modules/_blocks.scss */
.blue_block {
  background-color: #3e6a73;
}

/* line 135, ../sass/modules/_blocks.scss */
.green_block {
  background-color: #008345;
}

/* line 139, ../sass/modules/_blocks.scss */
.red_block {
  background-color: #7e2830;
}

/* line 143, ../sass/modules/_blocks.scss */
.section-jrironchefvt .blue_block,
.section-jrironchefvt .green_block,
.section-jrironchefvt .red_block {
  background-color: #453635;
}

/* line 150, ../sass/modules/_blocks.scss */
.title-bars h2 {
  margin-top: 2em;
  border-top: 1px solid;
  padding: 0.5em 0;
  border-bottom: 1px solid;
  clear: both;
}
/* line 156, ../sass/modules/_blocks.scss */
.title-bars h2 .subheader {
  font-size: 0.75em;
  font-weight: normal;
  text-transform: none;
  font-style: italic;
}

/* ==========================================================================
   Node Displays
   group by node type
   ========================================================================== */
/**
 * Inline Labels
 */
/* line 11, ../sass/modules/_nodes.scss */
.field-label--inline--wrapper h3, .field-label--inline--wrapper div {
  display: inline;
}

/**
 * Page
 */
/* ==========================================================================
   Messages
   ========================================================================== */
/* line 5, ../sass/modules/_messages.scss */
.messages, .messages--status, .messages--warning, .messages--error {
  padding: 10px 10px 10px 50px;
  /* LTR */
  background-position: 8px 8px;
  /* LTR */
  background-repeat: no-repeat;
  border-width: 1px;
  border-style: solid;
  margin-top: 1em;
  margin-bottom: 1em;
}

/* line 16, ../sass/modules/_messages.scss */
.messages--status {
  background-image: url('../images/message-24-ok.png?1567575074');
  border-color: #be7;
  margin-top: 1em;
  margin-bottom: 1em;
}

/* line 26, ../sass/modules/_messages.scss */
.messages--warning {
  background-image: url('../images/message-24-warning.png?1567575074');
  border-color: #ed5;
  margin-top: 1em;
  margin-bottom: 1em;
}

/* line 36, ../sass/modules/_messages.scss */
.messages--error {
  background-image: url('../images/message-24-error.png?1567575074');
  border-color: #ed541d;
  margin-top: 1em;
  margin-bottom: 1em;
}

/* line 46, ../sass/modules/_messages.scss */
.messages__list {
  margin: 0;
}

/* line 49, ../sass/modules/_messages.scss */
.messages__item {
  list-style-image: none;
}

/* Core/module installation error messages. */
/* line 54, ../sass/modules/_messages.scss */
.messages--error p.error {
  color: #333;
}

/* System status report. */
/* line 59, ../sass/modules/_messages.scss */
.ok,
.status,
.messages--status {
  background-color: #f8fff0;
  color: #234600;
}

/* line 65, ../sass/modules/_messages.scss */
.warning,
.messages--warning {
  background-color: #fffce5;
  color: #840;
}

/* line 70, ../sass/modules/_messages.scss */
.error,
.messages--error {
  background-color: #fef5f1;
  color: #8c2e0b;
}

/* ==========================================================================
   Tabs
   ========================================================================== */
/* Basic positioning styles shared by primary and secondary tabs. */
/* line 6, ../sass/modules/_tabs.scss */
.tabs-primary, .tabs-secondary {
  overflow: hidden;
  *zoom: 1;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjYmJiYmJiIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(100%, #bbbbbb), color-stop(100%, rgba(0, 0, 0, 0)));
  background-image: -moz-linear-gradient(bottom, #bbbbbb 1px, rgba(0, 0, 0, 0) 1px);
  background-image: -webkit-linear-gradient(bottom, #bbbbbb 1px, rgba(0, 0, 0, 0) 1px);
  background-image: linear-gradient(to top, #bbbbbb 1px, rgba(0, 0, 0, 0) 1px);
  /* IE 9 and earlier don't understand gradients. */
  list-style: none;
  border-bottom: 1px solid #bbb \0/ie;
  margin: 1.4em 0;
  padding: 0 2px;
  white-space: nowrap;
}

/* line 16, ../sass/modules/_tabs.scss */
.tabs-primary__tab, .tabs-primary__tab.is-active, .tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  float: left;
  /* LTR */
  margin: 0 3px;
}

/* line 20, ../sass/modules/_tabs.scss */
a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active, a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  border: 1px solid #e9e9e9;
  border-right: 0;
  border-bottom: 0;
  display: block;
  line-height: 1.4em;
  text-decoration: none;
}

/* Primary tabs. */
/* line 30, ../sass/modules/_tabs.scss */
.tabs-primary {
  clear: both;
}

/* line 34, ../sass/modules/_tabs.scss */
.tabs-primary__tab, .tabs-primary__tab.is-active {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  border: 1px solid #bbb;
  border-bottom-color: transparent;
  /* IE 9 and earlier don't understand gradients. */
  border-bottom: 0 \0/ie;
}

/* line 42, ../sass/modules/_tabs.scss */
.tabs-primary__tab.is-active {
  border-bottom-color: #fff;
}

/* line 48, ../sass/modules/_tabs.scss */
a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  color: #333;
  background-color: #dedede;
  letter-spacing: 1px;
  padding: 0 1em;
  text-align: center;
}

/* line 58, ../sass/modules/_tabs.scss */
a.tabs-primary__tab-link:hover, a.tabs-primary__tab-link:focus {
  background-color: #e9e9e9;
  border-color: #f2f2f2;
}

/* line 62, ../sass/modules/_tabs.scss */
a.tabs-primary__tab-link:active, a.tabs-primary__tab-link.is-active {
  background-color: transparent;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFE9E9E9', endColorstr='#00E9E9E9');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U5ZTllOSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2U5ZTllOSIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e9e9e9), color-stop(100%, rgba(233, 233, 233, 0)));
  background-image: -moz-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: -webkit-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  border-color: #fff;
}

/* Secondary tabs. */
/* line 86, ../sass/modules/_tabs.scss */
.tabs-secondary {
  font-size: .9em;
  /* Collapse bottom margin of ul.primary. */
  margin-top: -1.4em;
}

/* line 92, ../sass/modules/_tabs.scss */
.tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  margin: 0.7em 3px;
}

/* line 99, ../sass/modules/_tabs.scss */
a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  -moz-border-radius: 0.75em;
  -webkit-border-radius: 0.75em;
  border-radius: 0.75em;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  text-shadow: 1px 1px 0 #fff;
  background-color: #f2f2f2;
  color: #666;
  padding: 0 .5em;
}

/* line 108, ../sass/modules/_tabs.scss */
a.tabs-secondary__tab-link:hover, a.tabs-secondary__tab-link:focus {
  background-color: #dedede;
  border-color: #999;
  color: #333;
}

/* line 113, ../sass/modules/_tabs.scss */
a.tabs-secondary__tab-link:active, a.tabs-secondary__tab-link.is-active {
  text-shadow: 1px 1px 0 #333;
  background-color: #666;
  border-color: #000;
  color: #fff;
}

/* ==========================================================================
   Pager
   ========================================================================== */
/* A list of page numbers when more than 1 page of content is available. */
/* line 6, ../sass/modules/_pager.scss */
.pager {
  clear: both;
  padding: 0;
  text-align: center;
}

/* line 11, ../sass/modules/_pager.scss */
.pager-item,
.pager-first,
.pager-previous,
.pager-next,
.pager-last,
.pager-ellipsis, .pager-current {
  display: inline;
  padding: 0 0.5em;
  list-style-type: none;
  background-image: none;
}

/* line 18, ../sass/modules/_pager.scss */
.pager-item,
.pager-first,
.pager-previous,
.pager-next,
.pager-last,
.pager-ellipsis {
  /* A concatenation of several list items using an ellipsis. */
}

/* The current page's list item. */
/* line 28, ../sass/modules/_pager.scss */
.pager-current {
  font-weight: bold;
}

/* Date Nav Wrapper for Calendar */
/* line 35, ../sass/modules/_pager.scss */
.view .date-nav-wrapper .date-next, .view .date-nav-wrapper .date-prev {
  padding: 5px;
  list-style: none;
}

/* ==========================================================================
   Social Icons
   ========================================================================== */
/* line 5, ../sass/modules/_social.scss */
.links--social {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* line 9, ../sass/modules/_social.scss */
.links--social li {
  display: inline-block;
}
/* line 12, ../sass/modules/_social.scss */
.links--social a {
  display: block;
  text-indent: -9999px;
  overflow: hidden;
  text-align: left;
  background-repeat: no-repeat;
  -moz-background-size: 60% auto;
  -o-background-size: 60% auto;
  -webkit-background-size: 60% auto;
  background-size: 60% auto;
  background-position: 50% 50%;
  background-color: #beb8b8;
  height: 30px;
  width: 30px;
  border-radius: 10em;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* line 25, ../sass/modules/_social.scss */
.links--social a:hover, .links--social a:focus {
  -moz-transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);
  -webkit-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}

/* line 31, ../sass/modules/_social.scss */
.icon-linkedin {
  background-repeat: no-repeat;
  background-image: url('../images/linkedin.svg?1567575074');
}
/* line 86, ../sass/utilities/_mixins.scss */
.no-svg .icon-linkedin {
  background-image: url('../images/linkedin.png?1567575074');
}

/* line 34, ../sass/modules/_social.scss */
.icon-flickr {
  background-repeat: no-repeat;
  background-image: url('../images/flickr.svg?1567575074');
}
/* line 86, ../sass/utilities/_mixins.scss */
.no-svg .icon-flickr {
  background-image: url('../images/flickr.png?1567575074');
}

/* line 37, ../sass/modules/_social.scss */
.icon-facebook {
  background-repeat: no-repeat;
  background-image: url('../images/facebook.svg?1567575074');
}
/* line 86, ../sass/utilities/_mixins.scss */
.no-svg .icon-facebook {
  background-image: url('../images/facebook.png?1567575074');
}

/* line 40, ../sass/modules/_social.scss */
.icon-googleplus {
  background-repeat: no-repeat;
  background-image: url('../images/googleplus.svg?1567575074');
}
/* line 86, ../sass/utilities/_mixins.scss */
.no-svg .icon-googleplus {
  background-image: url('../images/googleplus.png?1567575074');
}

/* line 43, ../sass/modules/_social.scss */
.icon-mail {
  background-repeat: no-repeat;
  background-image: url('../images/mail.svg?1567575074');
}
/* line 86, ../sass/utilities/_mixins.scss */
.no-svg .icon-mail {
  background-image: url('../images/mail.png?1567575074');
}

/* line 46, ../sass/modules/_social.scss */
.icon-twitter {
  background-repeat: no-repeat;
  background-image: url('../images/twitter.svg?1567575074');
}
/* line 86, ../sass/utilities/_mixins.scss */
.no-svg .icon-twitter {
  background-image: url('../images/twitter.png?1567575074');
}

/* line 49, ../sass/modules/_social.scss */
.icon-vimeo {
  background-repeat: none;
  background-image: url(/sites/all/themes/vtfeed/images/vimeo.png);
}

/* line 55, ../sass/modules/_social.scss */
#block-block-4, #block-block-7 {
  display: none;
}
@media (min-width: 49.375em) {
  /* line 55, ../sass/modules/_social.scss */
  #block-block-4, #block-block-7 {
    display: block;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 #block-block-4, .lt-ie9 #block-block-7 {
  display: block;
}

/* ==========================================================================
   Views Styles
   ========================================================================== */
/* Pinterest-style photos */
@media (min-width: 49.375em) {
  /* line 7, ../sass/modules/_views.scss */
  .grid-pinterest {
    column-count: 3;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 .grid-pinterest {
  column-count: 3;
}
@media (min-width: 78.75em) {
  /* line 7, ../sass/modules/_views.scss */
  .grid-pinterest {
    column-count: 4;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 .grid-pinterest {
  column-count: 4;
}
/* line 14, ../sass/modules/_views.scss */
.grid-pinterest .photo-pinterest {
  padding: .5em;
  margin-bottom: 1em;
  -moz-column-break-inside: avoid;
  break-inside: avoid-column;
  page-break-inside: avoid;
  display: inline-block;
  width: 100% !important;
}

/**
 * Views teasers
 */
/* line 29, ../sass/modules/_views.scss */
.teaser-row {
  clear: both;
  margin-bottom: 1em;
}
/* line 32, ../sass/modules/_views.scss */
.teaser-row h3 {
  margin: 0;
}
@media (min-width: 49.375em) {
  /* line 35, ../sass/modules/_views.scss */
  .teaser-row img {
    margin: 0 25px 50px 0;
    float: left;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 .teaser-row img {
  margin: 0 25px 50px 0;
  float: left;
}
/* line 41, ../sass/modules/_views.scss */
.teaser-row .teaser-text {
  margin-bottom: 50px;
}
@media (min-width: 49.375em) {
  /* line 41, ../sass/modules/_views.scss */
  .teaser-row .teaser-text {
    margin-left: 175px;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 .teaser-row .teaser-text {
  margin-left: 175px;
}

@media (min-width: 49.375em) {
  /* line 51, ../sass/modules/_views.scss */
  .field-name-field-collapsible-menu div.resource-thumb {
    float: left;
    margin: 1em 0;
  }
  /* line 55, ../sass/modules/_views.scss */
  .field-name-field-collapsible-menu div.resource-thumb + div.teaser-text {
    margin-left: 275px;
  }
}
/* line 51, ../sass/modules/_views.scss */
.lt-ie9 .field-name-field-collapsible-menu div.resource-thumb {
  float: left;
  margin: 1em 0;
}
/* line 55, ../sass/modules/_views.scss */
.lt-ie9 .field-name-field-collapsible-menu div.resource-thumb + div.teaser-text {
  margin-left: 275px;
}
/* line 59, ../sass/modules/_views.scss */
.field-name-field-collapsible-menu hr {
  clear: both;
}

@media (min-width: 49.375em) {
  /* line 66, ../sass/modules/_views.scss */
  .view-winning-teams
  .teaser-row .teaser-text {
    margin-left: 275px;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 .view-winning-teams
.teaser-row .teaser-text {
  margin-left: 275px;
}

/* Resource Grid */
/* line 75, ../sass/modules/_views.scss */
.resource-grid {
  clear: both;
}
/* line 78, ../sass/modules/_views.scss */
.resource-grid ul {
  padding: 0;
  margin: 0;
}
/* line 83, ../sass/modules/_views.scss */
.resource-grid li {
  list-style: none !important;
  padding: 0;
  margin: 0 0 20px 0;
  border-bottom: 1px solid #453635;
  text-align: center;
}
@media (min-width: 49.375em) {
  /* line 83, ../sass/modules/_views.scss */
  .resource-grid li {
    float: left;
    padding: 0 40px 0 0;
    margin: 0 !important;
    width: 340px;
    height: 500px;
    border: none;
    text-align: left;
  }
  /* line 97, ../sass/modules/_views.scss */
  .resource-grid li .resource-thumbnail {
    height: 300px;
    display: table-cell;
    vertical-align: bottom;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 .resource-grid li {
  float: left;
  padding: 0 40px 0 0;
  margin: 0 !important;
  width: 340px;
  height: 500px;
  border: none;
  text-align: left;
}
/* line 97, ../sass/modules/_views.scss */
.lt-ie9 .resource-grid li .resource-thumbnail {
  height: 300px;
  display: table-cell;
  vertical-align: bottom;
}
@media (min-width: 78.75em) {
  /* line 83, ../sass/modules/_views.scss */
  .resource-grid li {
    width: 390px;
    padding: 0 90px 0 0;
  }
}
/* line 92, ../../../../../../../../../.rvm/gems/ruby-2.4.1/gems/breakpoint-2.5.0/stylesheets/_breakpoint.scss */
.lt-ie9 .resource-grid li {
  width: 390px;
  padding: 0 90px 0 0;
}
/* line 109, ../sass/modules/_views.scss */
.resource-grid a {
  text-decoration: none;
}

/* ==========================================================================
   Front page styles
   ========================================================================== */
/* line 6, ../sass/modules/_front.scss */
.page-node-3 h1.title, .front h1.title {
  display: none;
}

/**
 * Autocomplete.
 *
 * @see autocomplete.js
 */
/* Suggestion list. */
/* line 8, ../sass/states/_autocomplete.scss */
#autocomplete .selected {
  background: #0072b9;
  color: #fff;
}

/**
 * Progress bar.
 * @see progress.js
 */
/* line 6, ../sass/states/_progress.scss */
.progress {
  font-weight: bold;
}
/* line 9, ../sass/states/_progress.scss */
.progress .bar {
  background: #ccc;
  border-color: #666;
  margin: 0 0.2em;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
/* line 15, ../sass/states/_progress.scss */
.progress .filled {
  background-color: #0072b9;
  background-image: url('../images/progress.gif?1567575074');
}

/**
 * TableDrag behavior.
 *
 * @see tabledrag.js
 */
/* line 6, ../sass/states/_tabledrag.scss */
tr.drag {
  background-color: #fffff0;
}

/* line 9, ../sass/states/_tabledrag.scss */
tr.drag-previous {
  background-color: #ffd;
}

/* line 12, ../sass/states/_tabledrag.scss */
.tabledrag-toggle-weight {
  font-size: 0.9em;
}

/**
 * TableSelect behavior.
 *
 * @see tableselect.js
 */
/* line 6, ../sass/states/_tableselect.scss */
tr.selected td {
  background: #ffc;
}

/* ==========================================================================
   Ubpublished Nodes
   ========================================================================== */
/* The word "Unpublished" displayed underneath the content. */
/* line 6, ../sass/states/_unpublished.scss */
.unpublished {
  height: 0;
  overflow: visible;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
  color: #d8d8d8;
  font-size: 75px;
  line-height: 1;
  font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  /* A very nice CSS3 property. */
  word-wrap: break-word;
}

@media print {
  /* line 7, ../sass/states/_print.scss */
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  /* line 15, ../sass/states/_print.scss */
  a:link,
  a:visited {
    text-decoration: underline !important;
  }

  /* line 20, ../sass/states/_print.scss */
  a[href]:after {
    content: " (" attr(href) ")";
  }

  /* line 24, ../sass/states/_print.scss */
  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* line 30, ../sass/states/_print.scss */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  /* line 36, ../sass/states/_print.scss */
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /* line 42, ../sass/states/_print.scss */
  thead {
    display: table-header-group;
  }

  /* line 46, ../sass/states/_print.scss */
  tr,
  img {
    page-break-inside: avoid;
  }

  /* line 51, ../sass/states/_print.scss */
  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }
  /* line 59, ../sass/states/_print.scss */
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  /* line 66, ../sass/states/_print.scss */
  h2,
  h3 {
    page-break-after: avoid;
  }

  /* Hide sidebars and nav elements. */
  /* line 72, ../sass/states/_print.scss */
  #skip-link,
  .region-footer,
  .breadcrumb,
  .tabs,
  .action-links,
  .links,
  .book-navigation,
  .forum-topic-navigation,
  .pager,
  .feed-icons {
    visibility: hidden;
    display: none;
  }
}
