/**
 * @file
 * Styles are organized using the SMACSS technique. @see http://smacss.com/book/
 *
 * When you turn on CSS aggregation at admin/config/development/performance, all
 * of these @include files will be combined into a single file.
 */
/* Import Sass mixins, variables, Compass modules, etc. */
/* HTML element (SMACSS base) rules */
/**
 * @file
 * Normalize.css is intended to be used as an alternative to CSS resets.
 *
 * This file is a slight fork of these original sources:
 * - normalize.css v2.1.2 | MIT License | git.io/normalize
 * - normalize.scss v2.1.2 | MIT/GPLv2 License | bit.ly/normalize-with-compass
 *
 * It's suggested that you read the normalize.scss file and customise it to meet
 * your needs, rather then including the file in your project and overriding the
 * defaults later in your CSS.
 * @see http://nicolasgallagher.com/about-normalize-css/
 *
 * Also: @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 *       @see http://snook.ca/archives/html_and_css/no_css_reset/
 */
/**
 * HTML5 display definitions
 */
/* Correct `block` display not defined in IE 8/9. */
/* line 23, ../sass/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

/* Correct `inline-block` display not defined in IE 8/9. */
/* line 38, ../sass/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
/* line 52, ../sass/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* Address styling not present in IE 8/9. */
/* line 58, ../sass/_normalize.scss */
[hidden] {
  display: none;
}

/**
 * Base
 *
 * Instead of relying on the fonts that are available on a user's computer, you
 * can use web fonts which, like images, are resources downloaded to the user's
 * browser. Because of the bandwidth and rendering resources required, web fonts
 * should be used with care.
 *
 * Numerous resources for web fonts can be found on Google. Here are a few
 * websites where you can find Open Source fonts to download:
 * - http://www.fontsquirrel.com/fontface
 * - http://www.theleagueofmoveabletype.com
 *
 * In order to use these fonts, you will need to convert them into formats
 * suitable for web fonts. We recommend the free-to-use Font Squirrel's
 * Font-Face Generator:
 *   http://www.fontsquirrel.com/fontface/generator
 *
 * The following is an example @font-face declaration. This font can then be
 * used in any ruleset using a property like this:  font-family: Example, serif;
 *
 * Since we're using Sass, you'll need to declare your font faces here, then you
 * can add them to the font variables in the _base.scss partial.
 */
/*
@font-face {
  font-family: 'Example';
  src: url('../fonts/example.eot');
  src: url('../fonts/example.eot?iefix') format('eot'),
    url('../fonts/example.woff') format('woff'),
    url('../fonts/example.ttf') format('truetype'),
    url('../fonts/example.svg#webfontOkOndcij') format('svg');
  font-weight: normal;
  font-style: normal;
}
*/
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 * 3. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 */
/* line 106, ../sass/_normalize.scss */
html {
  font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;
  /* 1 */
  font-size: 100%;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  line-height: 1.5em;
}

/* Remove default margin. */
/* line 126, ../sass/_normalize.scss */
body {
  margin: 0;
  padding: 0;
}

/**
 * Links
 *
 * The order of link states are based on Eric Meyer's article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
/* Address `outline` inconsistency between Chrome and other browsers. */
/* line 148, ../sass/_normalize.scss */
a:focus {
  outline: thin dotted;
}

/* Improve readability when focused and also mouse hovered in all browsers. */
/* line 153, ../sass/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/**
 * Typography
 *
 * To achieve a pleasant vertical rhythm, we use Compass' Vertical Rhythm mixins
 * so that the line height of our base font becomes the basic unit of vertical
 * measurement. We use multiples of that unit to set the top and bottom margins
 * for our block level elements and to set the line heights of any fonts.
 * For more information, see http://24ways.org/2006/compose-to-a-vertical-rhythm
 */
/* Set 1 unit of vertical rhythm on the top and bottom margin. */
/* line 169, ../sass/_normalize.scss */
p,
pre {
  margin: 1.5em 0;
}

/* line 173, ../sass/_normalize.scss */
blockquote {
  /* Also indent the quote on both sides. */
  margin: 1.5em 30px;
  border-left: solid 5px #FF9933;
  padding-left: 30px;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 184, ../sass/_normalize.scss */
h1 {
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
  font-size: 2em;
  line-height: 1.5em;
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

/* line 192, ../sass/_normalize.scss */
h2 {
  font-size: 1.5em;
  line-height: 2em;
  margin-top: 1em;
  margin-bottom: 1em;
}

/* line 197, ../sass/_normalize.scss */
h3 {
  font-size: 1.17em;
  line-height: 1.28205em;
  margin-top: 1.28205em;
  margin-bottom: 1.28205em;
}

/* line 202, ../sass/_normalize.scss */
h4 {
  font-size: 1em;
  line-height: 1.5em;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

/* line 207, ../sass/_normalize.scss */
h5 {
  font-size: 0.83em;
  line-height: 1.80723em;
  margin-top: 1.80723em;
  margin-bottom: 1.80723em;
}

/* line 212, ../sass/_normalize.scss */
h6 {
  font-size: 0.67em;
  line-height: 2.23881em;
  margin-top: 2.23881em;
  margin-bottom: 2.23881em;
}

/* line 218, ../sass/_normalize.scss */
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: #000;
  text-decoration: none;
}

/* line 223, ../sass/_normalize.scss */
a {
  color: #FF9933;
  text-decoration: none;
}

/* Address styling not present in IE 8/9, Safari 5, and Chrome. */
/* line 229, ../sass/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */
/* line 234, ../sass/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/* Address styling not present in Safari 5 and Chrome. */
/* line 240, ../sass/_normalize.scss */
dfn {
  font-style: italic;
}

/* Address differences between Firefox and other browsers. */
/* line 245, ../sass/_normalize.scss */
hr {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  border: 1px solid #666;
  padding-bottom: -1px;
  margin: 1.5em 0;
}

/* Address styling not present in IE 8/9. */
/* line 254, ../sass/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/* Correct font family set oddly in Safari 5 and Chrome. */
/* line 260, ../sass/_normalize.scss */
code,
kbd,
pre,
samp,
tt,
var {
  font-family: "Courier New", "DejaVu Sans Mono", monospace, sans-serif;
  font-size: 1em;
  line-height: 1.5em;
}

/* Improve readability of pre-formatted text in all browsers. */
/* line 274, ../sass/_normalize.scss */
pre {
  white-space: pre-wrap;
}

/* Set consistent quote types. */
/* line 286, ../sass/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/* Address inconsistent and variable font size in all browsers. */
/* line 291, ../sass/_normalize.scss */
small {
  font-size: 80%;
}

/* Prevent `sub` and `sup` affecting `line-height` in all browsers. */
/* line 296, ../sass/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

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

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

/**
 * Lists
 */
/* line 313, ../sass/_normalize.scss */
dl,
menu,
ol,
ul {
  /* Address margins set differently in IE 6/7. */
  margin: 1.5em 0;
}

/* line 322, ../sass/_normalize.scss */
ol ol,
ol ul,
ul ol,
ul ul {
  /* Turn off margins on nested lists. */
  margin: 0;
}

/* line 328, ../sass/_normalize.scss */
dd {
  margin: 0 0 0 30px;
  /* LTR */
}

/* Address paddings set differently in IE 6/7. */
/* line 333, ../sass/_normalize.scss */
menu,
ol,
ul {
  padding: 0 0 0 30px;
  /* LTR */
}

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
/* line 353, ../sass/_normalize.scss */
img {
  /* Remove border when inside `a` element in IE 8/9. */
  border: 0;
  /* Suppress the space beneath the baseline */
  /* vertical-align: bottom; */
  /* Responsive images */
  max-width: 100%;
  height: auto;
  /* Correct IE 8 not scaling image height when resized. */
  width: auto;
}

/* Correct overflow displayed oddly in IE 9. */
/* line 374, ../sass/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* Address margin not present in IE 8/9 and Safari 5. */
/* line 379, ../sass/_normalize.scss */
figure {
  margin: 0;
}

/**
 * Forms
 */
/* Define consistent border, margin, and padding. */
/* line 395, ../sass/_normalize.scss */
fieldset {
  margin: 0 2px;
  /* Apply borders and padding that keep the vertical rhythm. */
  border-color: #c0c0c0;
  border-top-width: 0.0625em;
  border-top-style: solid;
  padding-top: 0.4625em;
  border-bottom-width: 0.0625em;
  border-bottom-style: solid;
  padding-bottom: 0.9125em;
  border-left-width: 0.0625em;
  border-left-style: solid;
  padding-left: 0.9125em;
  border-right-width: 0.0625em;
  border-right-style: solid;
  padding-right: 0.9125em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
/* line 410, ../sass/_normalize.scss */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 * 4. Improve appearance and consistency with IE 6/7.
 * 5. Keep form elements constrained in their containers.
 */
/* line 425, ../sass/_normalize.scss */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
  max-width: 100%;
  /* 5 */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 5 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 444, ../sass/_normalize.scss */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
/* line 455, ../sass/_normalize.scss */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
/* line 469, ../sass/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
/* line 483, ../sass/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
/* line 494, ../sass/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
/* line 509, ../sass/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/* line 518, ../sass/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* Remove inner padding and border in Firefox 4+. */
/* line 524, ../sass/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
/* line 534, ../sass/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* Drupal-style form labels. */
/* line 540, ../sass/_normalize.scss */
label {
  display: block;
  font-weight: bold;
}

/**
 * Tables
 */
/* line 548, ../sass/_normalize.scss */
table {
  /* Remove most spacing between table cells. */
  border-collapse: collapse;
  border-spacing: 0;
  /* Prevent cramped-looking tables */
  /* width: 100%; */
  /* Add vertical rhythm margins. */
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

/* Component (SMACSS module) rules */
/**
 * @file
 * SMACSS Modules
 *
 * Adds modular sets of styles.
 *
 * Additional useful selectors can be found in Zen's online documentation.
 * https://drupal.org/node/1707736
 */
/**
 * Wireframes.
 */
/* line 15, ../sass/components/_misc.scss */
.with-wireframes #header,
.with-wireframes #main,
.with-wireframes #content,
.with-wireframes #navigation,
.with-wireframes .region-sidebar-first,
.with-wireframes .region-sidebar-second,
.with-wireframes #footer,
.with-wireframes .region-bottom {
  outline: 1px solid #ccc;
}

/**
 * Accessibility features.
 */
/* element-invisible as defined by http://snook.ca/archives/html_and_css/hiding-content-for-accessibility */
/* line 39, ../sass/components/_misc.scss */
.element-invisible,
.element-focusable,
#navigation .block-menu .block__title,
#navigation .block-menu-block .block__title {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Turns off the element-invisible effect. */
/* line 45, ../sass/components/_misc.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 62, ../sass/components/_misc.scss */
#skip-link {
  margin: 0;
}
/* line 65, ../sass/components/_misc.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;
}

/**
 * Branding header.
 */
/* Wrapping link for logo. */
/* line 81, ../sass/components/_misc.scss */
.header__logo {
  float: left;
  /* LTR */
  margin: 0;
  padding: 0;
}

/* Logo image. */
/* line 88, ../sass/components/_misc.scss */
.header__logo-image {
  vertical-align: bottom;
}

/* Wrapper for website name and slogan. */
/* line 93, ../sass/components/_misc.scss */
.header__name-and-slogan {
  float: left;
}

/* The name of the website. */
/* line 98, ../sass/components/_misc.scss */
.header__site-name {
  margin: 0;
  font-size: 2em;
  line-height: 1.5em;
}

/* The link around the name of the website. */
/* line 105, ../sass/components/_misc.scss */
.header__site-link:link, .header__site-link:visited {
  color: #000;
  text-decoration: none;
}
/* line 111, ../sass/components/_misc.scss */
.header__site-link:hover, .header__site-link:focus {
  text-decoration: underline;
}

/* The slogan (or tagline) of a website. */
/* line 118, ../sass/components/_misc.scss */
.header__site-slogan {
  margin: 0;
}

/* The secondary menu (login, etc.) */
/* line 123, ../sass/components/_misc.scss */
.header__secondary-menu {
  float: right;
  /* LTR */
}

/* Wrapper for any blocks placed in the header region. */
/* line 128, ../sass/components/_misc.scss */
.header__region {
  /* Clear the logo. */
  clear: both;
}

/**
 * Navigation bar.
 */
/* line 136, ../sass/components/_misc.scss */
#navigation {
  /* Sometimes you want to prevent overlapping with main div. */
  /* overflow: hidden; */
  /* Main menu and secondary menu links and menu block links. */
}
/* line 140, ../sass/components/_misc.scss */
#navigation .block {
  margin-bottom: 0;
}
/* line 150, ../sass/components/_misc.scss */
#navigation .links,
#navigation .menu {
  margin: 0;
  padding: 0;
  text-align: left;
  /* LTR */
}
/* line 156, ../sass/components/_misc.scss */
#navigation .links li,
#navigation .menu li {
  /* A simple method to get navigation links to appear in one line. */
  float: left;
  /* LTR */
  padding: 0 10px 0 0;
  /* LTR */
  list-style-type: none;
  list-style-image: none;
}

/**
 * Breadcrumb navigation.
 */
/* line 170, ../sass/components/_misc.scss */
.breadcrumb ol {
  margin: 0;
  padding: 0;
}
/* line 174, ../sass/components/_misc.scss */
.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/**
 * Titles.
 */
/* line 185, ../sass/components/_misc.scss */
.page__title,
.node__title,
.block__title,
.comments__title,
.comments__form-title,
.comment__title {
  /* Comment title. */
  margin: 0;
}

/**
 * Messages.
 */
/* line 197, ../sass/components/_misc.scss */
.messages, .messages--status, .messages--warning, .messages--error {
  margin: 1.5em 0;
  padding: 10px 10px 10px 50px;
  /* LTR */
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAD6UlEQVR42s2WX0xbVRzH3YwmC4k+GF/0ZS/S267/bmnX9nL7bwstZlnbjTDYyoC5GCbB0ZW5pdJCe6swbLFA6bpWIGuRMWVjKGP+21QW3SZBSAjGh4XEaTZTH82Cm/3ztS2xs7mw4KLRk3xyzj33/H6fe5Pz7zEA/yr/vUDukj9FH6drqTaqT8EoPs/UV+nX6TD1BlUh9AqLHlmgPKLcRHmoCOWmElK/FOKTYpS8UwLJkASiUyLI3pKhlClN0g46qj+qL/pbArlbrlO1q25JeiSgR2iYJ8ywXLSg/qP6LNl2ro8+Q4MMkKCd9K2t3q3KdQnkXXIF5aISkgEJzONm1F2qW52pDJN1MI2bUBIuAdVOJWSMTPNQgX6/vkjVpvpREpag6oMqWCYta1IzbsHh9ga0RJtzY8URMdRO9U/KSuWmNQUqh2pY3CtG+fvlqJyofMAFNrZAE+7e/RWR4X4cD9tgOGsA2U2CdtMDqwqyMyIzQ5KKqAKmcyaYxkzYd3YvjGNGFtXRPRj58DT+LOemRrFnrBLyITmUDmUyO/NYgu2d26ukHVJo3tXAMGpAs+cQmh0NeClan30uwN7TgnQ6nRd4r3thOGOAJqYB2UVC79AfZAnKHGUxQa8A2tNaNLW/jKvXv8Dyb8s4yryKA4O10A3roIvpUB+swTdz1/LJZ27PQBvT5lBH1RD4BChzlQ2wBNtc22aE/ULQgzRCl4P5BPcT93GMOYz9wb2QhCRgAq35d8u/L2PXe7tADVGgBlcQ+AXQtmlvsP/gzbJZvp8PMkJCFBYh8m0knyiVSsHe0YIGZz1+/uVOvt8z7QGvnwf+ST5EIRHIUyR4fh50rbp5lsDcYR4ReAXgBrng9q/Qfa0bfy035r7Ot2dvz4IX4IEIEAXwvDzscOw4zxJUd1YfEXlE4Aa4BQHMlwzSSBeI7iXvoTxWDqKPYCFsFaKmr+YVliB0JfS89DVpiuhlB9k/tSOZTuYFvq98yI7L0/MAsVWcGp0bfW61hbahwltxSeARsIKyWKesSKQSWIwvYkvvllwfx88pgOvhwthu/AzAxlVX8vz385tLbaVxwpcLZtEw0QDjsBGctzksiE4CimZFfHp++oWHbnbuUfdB0komMgHsRN1r0MWBsEmYODF5onY92/UTwcvBxuzXcN1ccHycVSn2FaPYWwzCQUDWKIt7z3utAJ5c74Hz+OLSomynY+cVfiM/xW3JiDyZpB3FuZrj4oCwE+Ad4qWMjPHjpTtL0mzMoxyZz9yM39Q7Y85Ok930icqm+k59TL2wm9l90dZv8y/8sPAigGf/iUN/Q4anM2zOsdLe+L+4VfwBVVjDs2rTYx0AAAAASUVORK5CYII=');
  background-position: 8px 8px;
  /* LTR */
  background-repeat: no-repeat;
  border: 1px solid #be7;
}

/* line 212, ../sass/components/_misc.scss */
.messages--warning {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACuElEQVRIiWP4//8/Ay0xSYqntTpnT252zqeJBf0Njhsykrz/pyd6/e9vcNpGVQv6q2wlm0qc/r0+IPD/3UG+/61l9v9mdrjIUc2C7hqHUzc3S///eZwBjO9tF/vfWe1wjioWTKixVm8otPn38wQT3IKfxxn/t5Va/utpsNSg2ILWcttrNzdJgQ3+dpQRjEHs+9tE/zeXWt+gyILOamuTqlxrsOtPLub+7+emBsSq/88v5wL7oqHQ9H9nmbkF2RbUF1rev7lJEuziuU3i/90ddcB4UZsoJC62ifyvK7R4QJYFrcUGrmUZ5v9hYb9hosh/bzcDMN42VRgeF9W5hv8bi/XdSbagKtfs2c1NEvCIPbaQ/7+/pwkYn17Ki0hR24T/l2eZPCfJgsZ83dCiNOP/yCnn7iau/8G+5mD8aBsHSoqqyNL9X5erHUm0BcVpRm9ubhZHMoTh/4eDzP/DA23+RwTZ/P96hAlF7t5Wof8FyfpvibKgNk8noyDZ4D9quofg1Bjr/1kJlhjiIF+Upmn/r83RzCJoQXaC3qcbm8SwGMLwvybP/H8jMGlik7u7VeB/Zqz2J7wWVGdr1uTG62J1PQgfWST1/+hiCaxyIF8UJqv9r8hQrcVpQVqkzrcbG0WwGvB2H/P/lnx5MAaxsam5vYn3f2KY+jesFpSlqfZnxWjidP2OGWL/g/0swBjExu4Lhv958Ur/i5KU+lEsCA1lYI4JUv95bZ0gTo2Pt3P+z0myBmMQG5e6mxu4/kf4Kf8EmQm3oCRNebKrvSawIGPBqRG9sMOp5hjjfwdrlf/58bKT4RaUpWvtcLZV/39iscD/H0AFP46jYwYiMeP/44u4/9tbKQODSXUH3II9G7v18hI0n8YGKv+IDVT6joxj/BVx4mgcOCde/SnITPRUJAHEGlTCEkQV19TAAN8FC67hZdFXAAAAAElFTkSuQmCC');
  border-color: #ed5;
}

/* line 221, ../sass/components/_misc.scss */
.messages--error {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACpElEQVR42rWWTUgbQRiGQ0Tx4MWDeFM8eBA9iKAoggiCoCiiIiL4L3oQV1CJB0UEf6iRYFpK7UniTw9VSqL2kvQsVDBpSZrtRo35czVNW3oprRf17exSl4yzu1ikAy9h59vvedhkMrMGAGoxknAk2w8MJ/WosXThiZkZt9jdLeglPjn5ATc3mhJNuNjbK0QbG3ExMICL/n6IfX0gcxB7ekDAELu6IHZ2IlJbi1hLS1BLogmPtbUhMTv7oMSamzUlqnByMxLT0/8STQkDj9TV4ZLj5OysrODl8jIu5Gs68dFR7JG6dWkJ0fFx+TpSX89IDMnwcHU1yKec12Yz3rlc4HkeLwjkXJpPip3U3+7vIx6P4ymph4eG5PlwTQ0lMdytlmBxMWKtrXLeT0zA5XTibvj9fjxfXETkb/3N/Dz2dneVuiTZtliU/rPSUsQ5ziuxZYG03IIlJdKKUPJjdRUAKMmzuTnskB/VYbdTtd9HR4g2NCi9Z2VliDY1BSnBaUEBzsrLqXyzWCiQ9HU5HA4afniIUFWV0hOqqMBpURErOM7NxWlhIZOvCwvA7S3Uxq+DA5AnZ3pO8vJYQSArC8c5Oeqx2Rj4udeLQH6+6v2B7GxW8DkjA0JmJpONwUHY7XZGIAgCzCYTeJUewmIFfqMRfEoKlQ2yJbza2oLWcLvdeDI2hk/3+iQWKzAYkJzNjg5srq9TwJ9OJ76YTNScx+ORJT66X1/grKyEbW2NgfPp6XKd/JMZySrHaQsSU1Oe+0/w3WpVgyu5HBlR6lc+H8gioevDwz6JrWwV5+3txyoSFk5DcOX1MnCyJ4Vwfb1zt1UY9SR8aioDpuppaVpwZbPTl+hHF04dOKzk8XBF8DgJC3/woU/W/EciOtELOWi8DDwp//215Q+p7kiKh2lQSAAAAABJRU5ErkJggg==');
  border-color: #ed541d;
}

/* line 231, ../sass/components/_misc.scss */
.messages__list {
  margin: 0;
}

/* line 234, ../sass/components/_misc.scss */
.messages__item {
  list-style-image: none;
}

/* Core/module installation error messages. */
/* line 239, ../sass/components/_misc.scss */
.messages--error p.error {
  color: #333;
}

/* System status report. */
/* line 244, ../sass/components/_misc.scss */
.ok,
.messages--status {
  background-color: #f8fff0;
  color: #234600;
}

/* line 249, ../sass/components/_misc.scss */
.warning,
.messages--warning {
  background-color: #fffce5;
  color: #840;
}

/* line 254, ../sass/components/_misc.scss */
.error,
.messages--error {
  background-color: #fef5f1;
  color: #8c2e0b;
}

/**
 * Tabs.
 */
/* Basic positioning styles shared by primary and secondary tabs. */
/* line 265, ../sass/components/_misc.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.5em 0;
  padding: 0 2px;
  white-space: nowrap;
}

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

/* line 279, ../sass/components/_misc.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.5em;
  text-decoration: none;
}

/* Primary tabs. */
/* line 292, ../sass/components/_misc.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;
  text-shadow: 1px 1px 0 #fff;
  border: 1px solid #bbb;
  border-bottom-color: transparent;
  /* IE 9 and earlier don't understand gradients. */
  border-bottom: 0 \0/ie;
}

/* line 301, ../sass/components/_misc.scss */
.tabs-primary__tab.is-active {
  border-bottom-color: #fff;
}

/* line 307, ../sass/components/_misc.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 317, ../sass/components/_misc.scss */
a.tabs-primary__tab-link:hover, a.tabs-primary__tab-link:focus {
  background-color: #e9e9e9;
  border-color: #f2f2f2;
}

/* line 321, ../sass/components/_misc.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 345, ../sass/components/_misc.scss */
.tabs-secondary {
  font-size: .9em;
  /* Collapse bottom margin of ul.primary. */
  margin-top: -1.5em;
}

/* line 351, ../sass/components/_misc.scss */
.tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  margin: 0.75em 3px;
}

/* line 358, ../sass/components/_misc.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 367, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link:hover, a.tabs-secondary__tab-link:focus {
  background-color: #dedede;
  border-color: #999;
  color: #333;
}

/* line 372, ../sass/components/_misc.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;
}

/**
 * Inline styles.
 */
/* List of links generated by theme_links(). */
/* line 400, ../sass/components/_misc.scss */
.inline {
  display: inline;
  padding: 0;
}
/* line 404, ../sass/components/_misc.scss */
.inline li {
  display: inline;
  list-style-type: none;
  padding: 0 1em 0 0;
  /* LTR */
}

/* The inline field label used by the Fences module. */
/* line 412, ../sass/components/_misc.scss */
span.field-label {
  padding: 0 1em 0 0;
  /* LTR */
}

/**
 * "More" links.
 */
/* line 419, ../sass/components/_misc.scss */
.more-link {
  text-align: right;
  /* LTR */
}

/* line 422, ../sass/components/_misc.scss */
.more-help-link {
  text-align: right;
  /* LTR */
}

/* line 425, ../sass/components/_misc.scss */
.more-help-link a {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA7UlEQVR42qWTPQqDQBCFcwSPkCNITpAj5AjeIm1uYpkyR7Cy2Mot7OwsBAsRwUKwmOwLGRle3EIy8PyBfZ/z3J2TiPylz8VWWZZpUB40BonRKyizaxkA88MYYiqCEgv4MTvnZJom0VqWRbz3FlJZgLYtqmEY1Lg9r+sKsIXcLSC3AC019H0vqLquLeC5AfiHYSGkcdAJimKIBQiJ4+CO92OAtm0FNc8zOjkMwE5Q63FAtbeg6zpAYvG8BWR7i5qmQYwY4MIHqYhE2DOPQWcGJBQF2XU72ZzyUeZ5GCNt5/hybJgYdAXsq5sOEE/jG6dC5IOqCXTmAAAAAElFTkSuQmCC');
  background-position: 0 50%;
  /* LTR */
  background-repeat: no-repeat;
  padding: 1px 0 1px 20px;
  /* LTR */
}

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

/* line 445, ../sass/components/_misc.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 452, ../sass/components/_misc.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 462, ../sass/components/_misc.scss */
.pager-current {
  font-weight: bold;
}

/**
 * Blocks.
 */
/* Block wrapper. */
/* line 472, ../sass/components/_misc.scss */
.block {
  margin-bottom: 1.5em;
}

/**
 * Menus.
 */
/* line 479, ../sass/components/_misc.scss */
.menu__item.is-leaf {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHBAMAAAA2fErgAAAAD1BMVEX///+/v7+Li4sAAADAwMBFvsw8AAAAAXRSTlMAQObYZgAAAB1JREFUCFtjYAADYwMGBmYVZSDhKAwkFJWhYiAAAB2+Aa/9ugeaAAAAAElFTkSuQmCC');
  list-style-type: square;
}

/* line 486, ../sass/components/_misc.scss */
.menu__item.is-expanded {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');
  list-style-type: circle;
}

/* line 493, ../sass/components/_misc.scss */
.menu__item.is-collapsed {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');
  /* LTR */
  list-style-type: disc;
}

/**
 * Marker.
 */
/* The "new" or "updated" marker. */
/* line 506, ../sass/components/_misc.scss */
.new,
.update {
  color: #c00;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
}

/**
 * Unpublished note.
 */
/* The word "Unpublished" displayed underneath the content. */
/* line 518, ../sass/components/_misc.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;
}

/**
 * Comments.
 */
/* Wrapper for the list of comments and its title. */
/* line 546, ../sass/components/_misc.scss */
.comments {
  margin: 1.5em 0;
}

/* Preview of the comment before submitting new or updated comment. */
/* line 551, ../sass/components/_misc.scss */
.comment-preview {
  /* Drupal core will use a #ffffea background. See #1110842. */
  background-color: #ffffea;
}

/* Wrapper for a single comment. */
/* line 557, ../sass/components/_misc.scss */
.comment {
  /* Comment's permalink wrapper. */
}
/* line 560, ../sass/components/_misc.scss */
.comment .permalink {
  text-transform: uppercase;
  font-size: 75%;
}

/* Nested comments are indented. */
/* line 567, ../sass/components/_misc.scss */
.indented {
  /* Drupal core uses a 25px left margin. */
  margin-left: 30px;
  /* LTR */
}

/**
 * Forms.
 */
/* Wrapper for a form element (or group of form elements) and its label. */
/* line 577, ../sass/components/_misc.scss */
.form-item {
  margin: 1.5em 0;
  /* 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 581, ../sass/components/_misc.scss */
.form-checkboxes .form-item, .form-radios .form-item {
  /* Drupal core uses "0.4em 0". */
  margin: 0;
}
/* line 588, ../sass/components/_misc.scss */
tr.odd .form-item, tr.even .form-item {
  margin: 0;
}
/* line 594, ../sass/components/_misc.scss */
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}
/* line 601, ../sass/components/_misc.scss */
.form-item .description {
  font-size: 0.85em;
}

/* line 608, ../sass/components/_misc.scss */
.form-type-radio .description,
.form-type-checkbox .description {
  margin-left: 2.4em;
}

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

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

/* Password confirmation. */
/* line 625, ../sass/components/_misc.scss */
.password-parent,
.confirm-parent {
  margin: 0;
}

/* Drupal's default login form block. */
/* line 631, ../sass/components/_misc.scss */
#user-login-form {
  text-align: left;
  /* LTR */
}

/**
 * OpenID
 *
 * The default styling for the OpenID login link seems to assume Garland's
 * styling of list items.
 */
/* OpenID creates a new ul above the login form's links. */
/* line 643, ../sass/components/_misc.scss */
.openid-links {
  /* Position OpenID's ul next to the rest of the links. */
  margin-bottom: 0;
}

/* The "Log in using OpenID" and "Cancel OpenID login" links. */
/* line 649, ../sass/components/_misc.scss */
.openid-link,
.user-link {
  margin-top: 1.5em;
}

/* line 653, ../sass/components/_misc.scss */
html.js #user-login-form li.openid-link,
#user-login-form li.openid-link {
  /* Un-do some of the padding on the ul list. */
  margin-left: -20px;
  /* LTR */
}

/* line 658, ../sass/components/_misc.scss */
#user-login ul {
  margin: 1.5em 0;
}

/**
 * Drupal admin tables.
 */
/* line 666, ../sass/components/_misc.scss */
form th {
  text-align: left;
  /* LTR */
  padding-right: 1em;
  /* LTR */
  border-bottom: 3px solid #ccc;
}
/* line 671, ../sass/components/_misc.scss */
form tbody {
  border-top: 1px solid #ccc;
}
/* line 674, ../sass/components/_misc.scss */
form table ul {
  margin: 0;
}

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

/* line 684, ../sass/components/_misc.scss */
tr.even {
  background-color: #fff;
}

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

/* Center checkboxes inside table cell. */
/* line 704, ../sass/components/_misc.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 710, ../sass/components/_misc.scss */
td.menu-disabled {
  background: #ccc;
}

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

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
/* line 732, ../sass/components/_misc.scss */
html.js .collapsible .fieldset-legend {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');
  background-position: 5px 65%;
  /* LTR */
  background-repeat: no-repeat;
  padding-left: 15px;
  /* LTR */
}
/* line 741, ../sass/components/_misc.scss */
html.js .collapsed .fieldset-legend {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');
  /* LTR */
  background-position: 5px 50%;
  /* LTR */
}
/* line 748, ../sass/components/_misc.scss */
.fieldset-legend .summary {
  color: #999;
  font-size: 0.9em;
  margin-left: 0.5em;
}

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

/* line 763, ../sass/components/_misc.scss */
tr.drag-previous {
  background-color: #ffd;
}

/* line 766, ../sass/components/_misc.scss */
.tabledrag-toggle-weight {
  font-size: 0.9em;
}

/**
 * TableSelect behavior.
 *
 * @see tableselect.js
 */
/* line 775, ../sass/components/_misc.scss */
tr.selected td {
  background: #ffc;
}

/**
 * Progress bar.
 *
 * @see progress.js
 */
/* line 784, ../sass/components/_misc.scss */
.progress {
  font-weight: bold;
}
/* line 787, ../sass/components/_misc.scss */
.progress .bar {
  background: #ccc;
  border-color: #666;
  margin: 0 0.2em;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
/* line 793, ../sass/components/_misc.scss */
.progress .filled {
  background-color: #0072b9;
  background-image: url('../images/progress.gif?1423113821');
}

/**
 * @file
 * Print styling
 *
 * We provide some sane print styling for Drupal using Zen's layout method.
 */
/**
 * By importing this CSS file as media "all", we allow this print file to be
 * aggregated with other stylesheets, for improved front-end performance.
 */
@media print {
  /* Underline all links. */
  /* line 15, ../sass/_print.scss */
  a:link,
  a:visited {
    text-decoration: underline !important;
    /* Don't underline header. */
  }
  /* line 20, ../sass/_print.scss */
  a:link.header__site-link,
  a:visited.header__site-link {
    text-decoration: none !important;
  }

  /* line 25, ../sass/_print.scss */
  #content {
    /* Add visible URL after links. */
    /* Only display useful links. */
    /* Add visible title after abbreviations. */
  }
  /* line 27, ../sass/_print.scss */
  #content a[href]:after {
    content: " (" attr(href) ")";
    font-weight: normal;
    font-size: 16px;
  }
  /* line 34, ../sass/_print.scss */
  #content a[href^="javascript:"]:after,
  #content a[href^="#"]:after {
    content: "";
  }
  /* line 40, ../sass/_print.scss */
  #content abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* Un-float the content. */
  /* line 46, ../sass/_print.scss */
  #content {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Turn off any background colors or images. */
  /* line 54, ../sass/_print.scss */
  body,
  #page,
  #main,
  #content {
    color: #000;
    background-color: transparent !important;
    background-image: none !important;
  }

  /* Hide sidebars and nav elements. */
  /* line 64, ../sass/_print.scss */
  #skip-link,
  #toolbar,
  #navigation,
  .region-sidebar-first,
  .region-sidebar-second,
  #footer,
  .breadcrumb,
  .tabs,
  .action-links,
  .links,
  .book-navigation,
  .forum-topic-navigation,
  .pager,
  .feed-icons {
    visibility: hidden;
    display: none;
  }
}
@media all and (min-width: 1000px) {
  /* line 9, ../sass/_layout.scss */
  .hideDesktop, #hideDesktop {
    display: none;
  }
}

@media all and (max-width: 1000px) {
  /* line 15, ../sass/_layout.scss */
  .hideMobile, #hideMobile {
    display: none;
  }
}

/* line 21, ../sass/_layout.scss */
html {
  /*
   * Front Page Overrides
   */
}
/* line 45, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
html .section:before, html .section:after {
  content: "";
  display: table;
}
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
html .section:after {
  clear: both;
}
/* line 25, ../sass/_layout.scss */
html .section-wrapper, html #page #main #content > *, html #page #main #content > .view-premium-services .views-row article {
  float: left;
  width: 75%;
  margin-left: 12.5%;
  margin-right: -87.5%;
  padding-left: 10px;
  padding-right: 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  position: relative;
}
@media all and (max-width: 1000px) {
  /* line 25, ../sass/_layout.scss */
  html .section-wrapper, html #page #main #content > *, html #page #main #content > .view-premium-services .views-row article {
    float: left;
    width: 95.83333%;
    margin-left: 2.08333%;
    margin-right: -97.91667%;
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
  }
}
/* line 28, ../sass/_layout.scss */
html #page {
  border-top: solid 10px #FF9933;
  overflow-x: hidden;
}
/* line 45, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
html #page:before, html #page:after {
  content: "";
  display: table;
}
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
html #page:after {
  clear: both;
}
/* line 32, ../sass/_layout.scss */
html #page header.header {
  background: #000;
  color: #FFF;
}
/* line 45, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
html #page header.header:before, html #page header.header:after {
  content: "";
  display: table;
}
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
html #page header.header:after {
  clear: both;
}
/* line 36, ../sass/_layout.scss */
html #page header.header .header-right {
  float: left;
  width: 87.5%;
  margin-left: 12.5%;
  margin-right: -100%;
  padding-left: 10px;
  padding-right: 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  background-color: #333;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  min-height: 200px;
  padding-right: 0px;
  padding-left: 0px;
}
/* line 43, ../sass/_layout.scss */
html #page header.header .header-right .region-header {
  max-height: 800px;
  overflow: hidden;
}
/* line 47, ../sass/_layout.scss */
html #page header.header .header-right .logo-home {
  position: absolute;
  z-index: 20;
  width: 168px;
  height: 168px;
  top: 50%;
  margin-top: -84px;
  left: -75px;
}
/* line 56, ../sass/_layout.scss */
html #page header.header .header-right .block {
  margin-bottom: 0px;
}
/* line 59, ../sass/_layout.scss */
html #page header.header .header-right .region-navigation {
  background: url('../images/rgbapng/0000007f-5.png?1423113821');
  background: rgba(0, 0, 0, 0.5);
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  bottom: 0px;
  z-index: 10;
  width: 100%;
}
@media all and (max-width: 1000px) {
  /* line 70, ../sass/_layout.scss */
  html #page header.header .header-right {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    padding: 0px;
    background: #000;
  }
  /* line 74, ../sass/_layout.scss */
  html #page header.header .header-right .logo-home {
    position: relative;
    top: auto;
    margin-top: 0px;
    left: auto;
    margin: 10px auto;
  }
  /* line 81, ../sass/_layout.scss */
  html #page header.header .header-right .region-navigation {
    position: relative;
    bottom: auto;
  }
}
/* line 88, ../sass/_layout.scss */
html #page h1.title, html #page h2.block-title, html #page #main #content > .view-premium-services .views-row article header h2 {
  position: relative;
  font-size: 24px;
  line-height: 85%;
  text-transform: uppercase;
}
/* line 93, ../sass/_layout.scss */
html #page h1.title:before, html #page h2.block-title:before, html #page #main #content > .view-premium-services .views-row article header h2:before {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  content: ' ';
  width: 100%;
  height: 100%;
  background: #FF9933;
  position: absolute;
  top: 0px;
  left: -102%;
}
/* line 107, ../sass/_layout.scss */
html #page #main {
  padding: 1.5em 0px;
  background: #DDD;
}
/* line 45, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
html #page #main:before, html #page #main:after {
  content: "";
  display: table;
}
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
html #page #main:after {
  clear: both;
}
/* line 112, ../sass/_layout.scss */
html #page #main #content > * {
  clear: left;
}
/* line 116, ../sass/_layout.scss */
html #page #main #content > .view-premium-services {
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -100%;
  padding-left: 10px;
  padding-right: 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  padding: 0px;
}
/* line 119, ../sass/_layout.scss */
html #page #main #content > .view-premium-services .views-row {
  *zoom: 1;
}
/* line 38, ../../../../../../../../../../../.rvm/gems/ruby-2.2.0@global/gems/compass-core-1.0.3/stylesheets/compass/utilities/general/_clearfix.scss */
html #page #main #content > .view-premium-services .views-row:after {
  content: "";
  display: table;
  clear: both;
}
/* line 121, ../sass/_layout.scss */
html #page #main #content > .view-premium-services .views-row article {
  clear: left;
}
/* line 125, ../sass/_layout.scss */
html #page #main #content > .view-premium-services .views-row article header h2 {
  margin: 1.5em 0;
}
/* line 128, ../sass/_layout.scss */
html #page #main #content > .view-premium-services .views-row article header h2 a {
  color: #000;
  text-decoration: none;
}
/* line 136, ../sass/_layout.scss */
html #page #main #content > .view-premium-services .views-row-odd {
  background: #FFF;
}
/* line 141, ../sass/_layout.scss */
html #page #main article.node-front-page {
  position: relative;
}
/* line 45, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
html #page #main article.node-front-page:before, html #page #main article.node-front-page:after {
  content: "";
  display: table;
}
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
html #page #main article.node-front-page:after {
  clear: both;
}
/* line 144, ../sass/_layout.scss */
html #page #main article.node-front-page .front-left {
  float: left;
  width: 83.33333%;
  margin-left: 0%;
  margin-right: -83.33333%;
  padding-left: 10px;
  padding-right: 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  padding-left: 0px;
}
/* line 148, ../sass/_layout.scss */
html #page #main article.node-front-page .front-right {
  float: left;
  width: 16.66667%;
  margin-left: 83.33333%;
  margin-right: -100%;
  padding-left: 10px;
  padding-right: 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  padding-right: 0px;
}
/* line 151, ../sass/_layout.scss */
html #page #main article.node-front-page .front-right .button {
  position: absolute;
  bottom: 20px;
  right: 0px;
}
/* line 159, ../sass/_layout.scss */
html #page .region-footer-top {
  *zoom: 1;
}
/* line 38, ../../../../../../../../../../../.rvm/gems/ruby-2.2.0@global/gems/compass-core-1.0.3/stylesheets/compass/utilities/general/_clearfix.scss */
html #page .region-footer-top:after {
  content: "";
  display: table;
  clear: both;
}
/* line 161, ../sass/_layout.scss */
html #page .region-footer-top > .block {
  *zoom: 1;
  padding: 30px 0px;
  margin-bottom: 0px;
}
/* line 38, ../../../../../../../../../../../.rvm/gems/ruby-2.2.0@global/gems/compass-core-1.0.3/stylesheets/compass/utilities/general/_clearfix.scss */
html #page .region-footer-top > .block:after {
  content: "";
  display: table;
  clear: both;
}
/* line 166, ../sass/_layout.scss */
html #page .region-footer-top #block-eventnetwork-blocks-partner-testimonials {
  background: #333;
  color: #FFF;
}
/* line 45, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
html #page .region-footer-top #block-eventnetwork-blocks-partner-testimonials:before, html #page .region-footer-top #block-eventnetwork-blocks-partner-testimonials:after {
  content: "";
  display: table;
}
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
html #page .region-footer-top #block-eventnetwork-blocks-partner-testimonials:after {
  clear: both;
}
/* line 170, ../sass/_layout.scss */
html #page .region-footer-top #block-eventnetwork-blocks-partner-testimonials .testimonial-left {
  float: left;
  width: 8.33333%;
  margin-left: 0%;
  margin-right: -8.33333%;
  padding-left: 10px;
  padding-right: 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  padding-left: 0px;
  font-size: 120px;
  line-height: 100%;
  text-align: center;
}
@media all and (max-width: 980px) {
  /* line 170, ../sass/_layout.scss */
  html #page .region-footer-top #block-eventnetwork-blocks-partner-testimonials .testimonial-left {
    float: left;
    width: 12.5%;
    margin-left: 0%;
    margin-right: -12.5%;
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    padding-left: 0px;
    text-align: left;
  }
}
@media all and (max-width: 980px) and (max-width: 600px) {
  /* line 170, ../sass/_layout.scss */
  html #page .region-footer-top #block-eventnetwork-blocks-partner-testimonials .testimonial-left {
    font-size: 80px;
  }
}

/* line 185, ../sass/_layout.scss */
html #page .region-footer-top #block-eventnetwork-blocks-partner-testimonials .testimonial-right {
  float: left;
  width: 91.66667%;
  margin-left: 8.33333%;
  margin-right: -100%;
  padding-left: 10px;
  padding-right: 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  font-size: 110%;
  padding: 20px 0px;
}
/* line 189, ../sass/_layout.scss */
html #page .region-footer-top #block-eventnetwork-blocks-partner-testimonials .testimonial-right p {
  margin: 0 0 1.5em 0;
}
/* line 192, ../sass/_layout.scss */
html #page .region-footer-top #block-eventnetwork-blocks-partner-testimonials .testimonial-right div.person {
  font-size: 80%;
}
@media all and (max-width: 980px) {
  /* line 185, ../sass/_layout.scss */
  html #page .region-footer-top #block-eventnetwork-blocks-partner-testimonials .testimonial-right {
    float: left;
    width: 91.66667%;
    margin-left: 8.33333%;
    margin-right: -100%;
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
  }
}
/* line 208, ../sass/_layout.scss */
html .front #page header .region-navigation {
  bottom: 0px;
  margin-bottom: 0px;
  padding-left: 0px;
}
@media all and (min-width: 1000px) {
  /* line 220, ../sass/_layout.scss */
  html .not-front #page header.header .region-navigation {
    bottom: 50%;
    margin-bottom: -22px;
    padding-left: 100px;
  }
}
/* line 227, ../sass/_layout.scss */
html .not-front #page h1.title {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 180%;
  background: #FF9933;
  color: #FFF;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 1em;
}
/* line 235, ../sass/_layout.scss */
html .not-front #page h1.title span.subtitle {
  text-transform: none;
  display: block;
  font-size: 80%;
  font-weight: normal;
}
/* line 241, ../sass/_layout.scss */
html .not-front #page h1.title:before {
  left: -100%;
}

/* line 249, ../sass/_layout.scss */
#footer {
  *zoom: 1;
  background: #000;
  padding: 20px 0px;
  font-size: 16px;
  line-height: 140%;
  color: #FFF;
}
/* line 45, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#footer:before, #footer:after {
  content: "";
  display: table;
}
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#footer:after {
  clear: both;
}
/* line 38, ../../../../../../../../../../../.rvm/gems/ruby-2.2.0@global/gems/compass-core-1.0.3/stylesheets/compass/utilities/general/_clearfix.scss */
#footer:after {
  content: "";
  display: table;
  clear: both;
}
/* line 257, ../sass/_layout.scss */
#footer h1, #footer h2, #footer h3 {
  text-transform: uppercase;
  font-size: inherit;
  line-height: inherit;
  font-weight: normal;
  color: #FF9933;
}
/* line 264, ../sass/_layout.scss */
#footer .col1 {
  float: left;
  width: 33.33333%;
  margin-left: 0%;
  margin-right: -33.33333%;
  padding-left: 10px;
  padding-right: 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
}
@media all and (max-width: 1200px) {
  /* line 264, ../sass/_layout.scss */
  #footer .col1 {
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -50%;
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
  }
}
/* line 270, ../sass/_layout.scss */
#footer .col2 {
  float: left;
  width: 33.33333%;
  margin-left: 33.33333%;
  margin-right: -66.66667%;
  padding-left: 10px;
  padding-right: 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
}
@media all and (max-width: 1200px) {
  /* line 270, ../sass/_layout.scss */
  #footer .col2 {
    float: left;
    width: 50%;
    margin-left: 50%;
    margin-right: -100%;
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
  }
}
/* line 276, ../sass/_layout.scss */
#footer .col3 {
  float: left;
  width: 33.33333%;
  margin-left: 66.66667%;
  margin-right: -100%;
  padding-left: 10px;
  padding-right: 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
}
@media all and (max-width: 1200px) {
  /* line 276, ../sass/_layout.scss */
  #footer .col3 {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    clear: left;
  }
}
/* line 283, ../sass/_layout.scss */
#footer a {
  color: #FFF;
}
/* line 285, ../sass/_layout.scss */
#footer a.button {
  display: inline-block;
  background: #FF9933;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 45%;
  margin: 0 2.5%;
  text-align: center;
  font-size: inherit;
}
/* line 293, ../sass/_layout.scss */
#footer a.button:first-child {
  margin-left: 0;
}
/* line 296, ../sass/_layout.scss */
#footer a.button:last-child {
  margin-right: 0;
}
/* line 299, ../sass/_layout.scss */
#footer a.button:hover {
  background: #D87E2E;
}
@media all and (max-width: 1000px) {
  /* line 285, ../sass/_layout.scss */
  #footer a.button {
    width: 47%;
  }
}
/* line 307, ../sass/_layout.scss */
#footer ul {
  padding: 0px;
  margin: 0px;
}
/* line 310, ../sass/_layout.scss */
#footer ul li {
  list-style-type: none;
  list-style-image: none;
}
/* line 313, ../sass/_layout.scss */
#footer ul li a {
  text-decoration: none;
}
/* line 318, ../sass/_layout.scss */
#footer p {
  margin: 0px 0px 20px 0px;
}

/* line 323, ../sass/_layout.scss */
.button {
  font-size: 80%;
  text-decoration: none;
  padding: 10px 15px;
  background: #333;
  color: #FFF;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-transition-property: background;
  -o-transition-property: background;
  -webkit-transition-property: background;
  transition-property: background;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

.field-name-body .button {
  font-size: 80%;
  text-decoration: none;
  padding: 10px 15px;
  background: #FF9933;
  color: #FFF;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-transition-property: background;
  -o-transition-property: background;
  -webkit-transition-property: background;
  transition-property: background;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

/* line 332, ../sass/_layout.scss */
.button:hover {
  background: #000;
}

.field-name-body .button-orange:hover {
  background: #D87E2E;
}

/* line 337, ../sass/_layout.scss */
.flexslider {
  background: transparent;
  border: 0px transparent;
  margin-bottom: 0px;
}
/* line 342, ../sass/_layout.scss */
.flexslider:hover .flex-direction-nav a {
  padding-top: 10px;
  color: #FFF;
  text-shadow: rgba(51, 51, 51, 0.8) 0px 1px 5px;
}
/* line 346, ../sass/_layout.scss */
.flexslider:hover .flex-direction-nav a:before {
  width: 100%;
  height: 100%;
}
/* line 353, ../sass/_layout.scss */
.flexslider ul.slides > li {
  position: relative;
}
/* line 355, ../sass/_layout.scss */
.flexslider ul.slides > li p.caption {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: url('../images/rgbapng/00000099-5.png?1423113821');
  background: rgba(0, 0, 0, 0.6);
  -moz-transition-property: bottom;
  -o-transition-property: bottom;
  -webkit-transition-property: bottom;
  transition-property: bottom;
  -moz-transition-duration: 1s;
  -o-transition-duration: 1s;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transform: translate3d(0, 0, 0);
  width: 100%;
  font-style: italic;
  position: absolute;
  bottom: -50%;
  z-index: 10;
  padding: 20px;
  margin: 0;
  color: #FFF;
}
/* line 371, ../sass/_layout.scss */
.flexslider ul.slides > li.flex-active-slide p.caption {
  bottom: 0;
  -moz-transition-duration: 0s;
  -o-transition-duration: 0s;
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}

/* line 380, ../sass/_layout.scss */
#block-eventnetwork-blocks-partner-spotlight h2.block-title, #block-eventnetwork-blocks-partner-spotlight html #page #main #content > .view-premium-services .views-row article header h2, html #page #main #content > .view-premium-services .views-row article header #block-eventnetwork-blocks-partner-spotlight h2 {
  padding-right: 90px;
}

/* line 384, ../sass/_layout.scss */
.spotlight-container {
  margin-top: 1.5em;
}
/* line 45, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
.spotlight-container:before, .spotlight-container:after {
  content: "";
  display: table;
}
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
.spotlight-container:after {
  clear: both;
}
/* line 387, ../sass/_layout.scss */
.spotlight-container .item {
  margin: 3px;
  position: relative;
  overflow: hidden;
}
/* line 391, ../sass/_layout.scss */
.spotlight-container .item img {
  display: block;
  width: 100%;
  height: auto;
}
/* line 396, ../sass/_layout.scss */
.spotlight-container .item .spotlight-info {
  background: url('../images/rgbapng/0000007f-5.png?1423113821');
  background: rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  padding: 20px;
  color: #FFF;
  position: absolute;
  top: 100%;
  width: 100%;
  height: 100%;
  -moz-transition-property: top;
  -o-transition-property: top;
  -webkit-transition-property: top;
  transition-property: top;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transform: translate3d(0, 0, 0);
}
/* line 408, ../sass/_layout.scss */
.spotlight-container .item .spotlight-info span.title {
  display: block;
  text-transform: uppercase;
  font-size: 110%;
}
/* line 413, ../sass/_layout.scss */
.spotlight-container .item .spotlight-info span.partner-since {
  display: block;
}
/* line 416, ../sass/_layout.scss */
.spotlight-container .item .spotlight-info a.read-more {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background: #FF9933;
  color: #FFF;
  text-decoration: none;
  padding: 10px 20px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  -moz-transition-property: background;
  -o-transition-property: background;
  -webkit-transition-property: background;
  transition-property: background;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
/* line 427, ../sass/_layout.scss */
.spotlight-container .item .spotlight-info a.read-more:hover {
  background: #D87E2E;
}
/* line 433, ../sass/_layout.scss */
.spotlight-container .item:hover .spotlight-info {
  top: 0px;
}
/* line 438, ../sass/_layout.scss */
.spotlight-container .owl-buttons {
  position: absolute;
  top: -50px;
  right: 0px;
}
/* line 442, ../sass/_layout.scss */
.spotlight-container .owl-buttons > .owl-prev, .spotlight-container .owl-buttons > .owl-next {
  color: transparent;
  width: 30px;
  height: 30px;
}
/* line 447, ../sass/_layout.scss */
.spotlight-container .owl-buttons .owl-prev {
  background: url(../images/owl-prev.png) center center no-repeat;
  background-size: 100%;
  float: left;
  margin-right: 5px;
}
/* line 453, ../sass/_layout.scss */
.spotlight-container .owl-buttons .owl-next {
  background: url(../images/owl-next.png) center center no-repeat;
  background-size: 100%;
  float: right;
  margin-left: 5px;
}

@media all and (min-width: 1000px) {
  /* line 1, ../sass/_main_menu.scss */
  .region-navigation {
    /*
     * General Styles
     */
  }
  /* line 3, ../sass/_main_menu.scss */
  .region-navigation h2.block-title, .region-navigation html #page #main #content > .view-premium-services .views-row article header h2, html #page #main #content > .view-premium-services .views-row article header .region-navigation h2 {
    display: none;
  }
  /* line 9, ../sass/_main_menu.scss */
  .region-navigation .menu-block-wrapper > ul {
    *zoom: 1;
  }
  /* line 38, ../../../../../../../../../../../.rvm/gems/ruby-2.2.0@global/gems/compass-core-1.0.3/stylesheets/compass/utilities/general/_clearfix.scss */
  .region-navigation .menu-block-wrapper > ul:after {
    content: "";
    display: table;
    clear: both;
  }
  /* line 11, ../sass/_main_menu.scss */
  .region-navigation .menu-block-wrapper > ul > li {
    float: left;
  }
  /* line 13, ../sass/_main_menu.scss */
  .region-navigation .menu-block-wrapper > ul > li > a {
    text-transform: uppercase;
  }
  /* line 17, ../sass/_main_menu.scss */
  .region-navigation .menu-block-wrapper > ul > li.expanded > a {
    padding-right: 30px;
  }
  /* line 19, ../sass/_main_menu.scss */
  .region-navigation .menu-block-wrapper > ul > li.expanded > a:after {
    -moz-transition: margin-top 0.1s ease-out, border-top-color 0.1s ease-out;
    -o-transition: margin-top 0.1s ease-out, border-top-color 0.1s ease-out;
    -webkit-transition: margin-top 0.1s ease-out, border-top-color 0.1s ease-out;
    transition: margin-top 0.1s ease-out, border-top-color 0.1s ease-out;
    cursor: pointer;
    content: ' ';
    height: 0;
    position: absolute;
    width: 0;
    border: 7px solid transparent;
    border-top-color: #FFF;
    right: 8px;
    top: 50%;
    margin-top: -4px;
  }
  /* line 35, ../sass/_main_menu.scss */
  .region-navigation .menu-block-wrapper > ul > li:hover > a:after {
    margin-top: -2px;
    border-top-color: #FF9933;
  }
  /* line 40, ../sass/_main_menu.scss */
  .region-navigation .menu-block-wrapper > ul > li:first-child > a {
    padding-left: 30px;
  }
  /* line 43, ../sass/_main_menu.scss */
  .region-navigation .menu-block-wrapper > ul > li:last-child > a {
    padding-right: 30px;
  }
  /* line 48, ../sass/_main_menu.scss */
  .region-navigation ul.menu {
    padding: 0px;
    margin: 0px;
  }
  /* line 51, ../sass/_main_menu.scss */
  .region-navigation ul.menu li {
    list-style-type: none;
    list-style-image: none;
    position: relative;
  }
  /* line 55, ../sass/_main_menu.scss */
  .region-navigation ul.menu li ul {
    /*
     * The objective is to have a solid line "slide down" and then have the menu "slide out" from the solid line.
     * By setting a width and height of 0 we have UL that hides its children LI and A tags.  The first transition is height.
     * Since border is not effected by height, as the height of the object is animated (this height is applied by javascript)
     * the "line" will appear with the first transition (min-height) and the UL and its background will appear with the second transition (width)
     */
    border-left: solid 5px #FF9933;
    -moz-transition-property: min-height, width, overflow;
    -o-transition-property: min-height, width, overflow;
    -webkit-transition-property: min-height, width, overflow;
    transition-property: min-height, width, overflow;
    -moz-transition-duration: 0.2s, 0.2s, 0s;
    -o-transition-duration: 0.2s, 0.2s, 0s;
    -webkit-transition-duration: 0.2s, 0.2s, 0s;
    transition-duration: 0.2s, 0.2s, 0s;
    -moz-transition-delay: 0s, 0.2s, 0s;
    -o-transition-delay: 0s, 0.2s, 0s;
    -webkit-transition-delay: 0s, 0.2s, 0s;
    transition-delay: 0s, 0.2s, 0s;
    -moz-transition-timing-function: ease-out, ease-out, ease-in;
    -o-transition-timing-function: ease-out, ease-out, ease-in;
    -webkit-transition-timing-function: ease-out, ease-out, ease-in;
    transition-timing-function: ease-out, ease-out, ease-in;
    position: absolute;
    width: 0px;
    height: 0px;
    top: 44px;
    white-space: nowrap;
    background: url('../images/rgbapng/000000bf-5.png?1423113821');
    background: rgba(0, 0, 0, 0.75);
  }
  /* line 73, ../sass/_main_menu.scss */
  .region-navigation ul.menu li ul li {
    margin-left: 0px;
    opacity: 0;
  }
  /* line 76, ../sass/_main_menu.scss */
  .region-navigation ul.menu li ul li a {
    /*
     * To calculate the dynamic height of the menu, the a tags inside the LI need to have some sort of calculateable height.
     * Which is why we have our top/bottom padding here.  However, if we add side padding, the A tags (though invisible) will still have
     * a hit box.  We do not want the A to be hoverable unless the user is visually looking at the A.  The A and its parent LI become invisible
     * by the containing UL's width attribute of 0.
     */
    padding: 10px 0px;
    display: block;
    overflow: hidden;
  }
  /* line 88, ../sass/_main_menu.scss */
  .region-navigation ul.menu li ul li:hover > a:after {
    right: 6px;
    border-left-color: #FF9933;
  }
  /* line 94, ../sass/_main_menu.scss */
  .region-navigation ul.menu li ul ul {
    left: 250px;
    top: 0px;
  }
  /* line 99, ../sass/_main_menu.scss */
  .region-navigation ul.menu li.hover {
    /*
     * Class of .hover is added to the LI via Javascript.
     *
     * We **ONLY** want to apply animations and transitions to the direct children of the current LI that
     * is being hovered on.  As the user hovers over a LI, the javascript will check to see if it has a child
     * UL. If it does, the class of .hover is applied. This .hover rule should now be written to only pertain
     * to the DIRECT children.  This allows us to re-use this rule on any other continuous descendants (ul li ul li ul ...)
     */
  }
  /* line 108, ../sass/_main_menu.scss */
  .region-navigation ul.menu li.hover > ul {
    width: 250px;
    /*
     * Additionally, we only apply the transition property **TO THE HOVER**. This way, it will fade in but not fade out.
     */
  }
  /* line 114, ../sass/_main_menu.scss */
  .region-navigation ul.menu li.hover > ul > li {
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -moz-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    opacity: 1;
  }
  /* line 119, ../sass/_main_menu.scss */
  .region-navigation ul.menu li.hover > ul > li a {
    /*
     * We apply the padding here so that the A looks nice. See notes above why we don't let
     * A tags have padding by default.
     */
    padding: 10px 15px;
  }
  /* line 126, ../sass/_main_menu.scss */
  .region-navigation ul.menu li.hover > ul > li.expanded > a {
    padding-right: 30px;
  }
  /* line 128, ../sass/_main_menu.scss */
  .region-navigation ul.menu li.hover > ul > li.expanded > a:after {
    -moz-transition-property: right, border-left-color;
    -o-transition-property: right, border-left-color;
    -webkit-transition-property: right, border-left-color;
    transition-property: right, border-left-color;
    -moz-transition-duration: 0.1s, 0.1s;
    -o-transition-duration: 0.1s, 0.1s;
    -webkit-transition-duration: 0.1s, 0.1s;
    transition-duration: 0.1s, 0.1s;
    content: ' ';
    height: 0;
    position: absolute;
    width: 0;
    border: 7px solid transparent;
    border-left-color: #FFF;
    right: 8px;
    top: 50%;
    margin-top: -7px;
  }
  /* line 145, ../sass/_main_menu.scss */
  .region-navigation ul.menu li a {
    -moz-transition-property: background;
    -o-transition-property: background;
    -webkit-transition-property: background;
    transition-property: background;
    -moz-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -moz-transition-delay: 0s;
    -o-transition-delay: 0s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    display: inline-block;
    padding: 10px 15px;
    color: #FFF;
    text-decoration: none;
  }
  /* line 155, ../sass/_main_menu.scss */
  .region-navigation ul.menu li:hover > a {
    background: url('../images/rgbapng/000000ff-5.png?1423113821');
    background: black;
  }
}
@media all and (max-width: 1000px) {
  /* line 1, ../sass/_main_menu.scss */
  .region-navigation {
    background: #333 !important;
  }
  /* line 164, ../sass/_main_menu.scss */
  .region-navigation .block-menu-block {
    float: left;
    width: 75%;
    margin-left: 12.5%;
    margin-right: -87.5%;
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    position: relative;
  }
}
@media all and (max-width: 1000px) and (max-width: 1000px) {
  /* line 164, ../sass/_main_menu.scss */
  .region-navigation .block-menu-block {
    float: left;
    width: 95.83333%;
    margin-left: 2.08333%;
    margin-right: -97.91667%;
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
  }
}
@media all and (max-width: 1000px) {
  /* line 166, ../sass/_main_menu.scss */
  .region-navigation .block-menu-block h2.block-title, .region-navigation .block-menu-block html #page #main #content > .view-premium-services .views-row article header h2, html #page #main #content > .view-premium-services .views-row article header .region-navigation .block-menu-block h2 {
    padding: 10px 30px 10px 0px;
    background: url(../images/menu-hamburger.png) no-repeat center right;
    background-size: auto 100%;
  }
  /* line 173, ../sass/_main_menu.scss */
  .region-navigation .menu-block-wrapper > ul.menu {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 60%;
    position: absolute;
    margin: 0px;
    padding: 30px;
    right: -75%;
    background: #000;
    border-left: solid 5px #FF9933;
    -moz-box-shadow: #000 1px 1px 5px;
    -webkit-box-shadow: #000 1px 1px 5px;
    box-shadow: #000 1px 1px 5px;
    -moz-transition-property: right;
    -o-transition-property: right;
    -webkit-transition-property: right;
    transition-property: right;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }
  /* line 185, ../sass/_main_menu.scss */
  .region-navigation .menu-block-wrapper > ul.menu.open {
    right: -20px;
  }
}
@media all and (max-width: 1000px) and (max-width: 600px) {
  /* line 185, ../sass/_main_menu.scss */
  .region-navigation .menu-block-wrapper > ul.menu.open {
    width: 104%;
    right: -2%;
  }
}
@media all and (max-width: 1000px) {
  /* line 192, ../sass/_main_menu.scss */
  .region-navigation .menu-block-wrapper > ul.menu li {
    list-style-type: none;
    list-style-image: none;
  }
  /* line 195, ../sass/_main_menu.scss */
  .region-navigation .menu-block-wrapper > ul.menu li a {
    display: block;
    font-size: 105%;
    text-transform: uppercase;
    color: #FFF;
    padding: 15px 0px;
    text-decoration: none;
    border-bottom: solid 1px #FFF;
  }
}

/* line 2, ../sass/_partner_spotlight.scss */
.node-type-partner-spotlight .project-top {
  position: relative;
}
/* line 45, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
.node-type-partner-spotlight .project-top:before, .node-type-partner-spotlight .project-top:after {
  content: "";
  display: table;
}
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
.node-type-partner-spotlight .project-top:after {
  clear: both;
}
/* line 5, ../sass/_partner_spotlight.scss */
.node-type-partner-spotlight .project-top .flexslider {
  float: left;
  width: 66.66667%;
  margin-left: 0%;
  margin-right: -66.66667%;
  padding-left: 10px;
  padding-right: 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  padding: 0px;
  border: none;
}
@media all and (max-width: 980px) {
  /* line 5, ../sass/_partner_spotlight.scss */
  .node-type-partner-spotlight .project-top .flexslider {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    padding: 0px;
    clear: left;
  }
}
/* line 14, ../sass/_partner_spotlight.scss */
.node-type-partner-spotlight .project-top .flexslider img {
  width: 100%;
  height: auto;
}
/* line 19, ../sass/_partner_spotlight.scss */
.node-type-partner-spotlight .project-top .project-description {
  float: left;
  width: 33.33333%;
  margin-left: 66.66667%;
  margin-right: -100%;
  padding-left: 10px;
  padding-right: 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  background: url('../images/rgbapng/ffffffbf-5.png?1423113821');
  background: rgba(255, 255, 255, 0.75);
  padding: 0px 20px;
  height: 100%;
  overflow-y: scroll;
}
@media all and (max-width: 980px) {
  /* line 19, ../sass/_partner_spotlight.scss */
  .node-type-partner-spotlight .project-top .project-description {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    clear: left;
  }
}

/* line 2, ../sass/_gallery_page.scss */
.node-type-gallery-page ul.gallery-list {
  padding-left: 0px;
  @includ zen-clear;
  margin-top: 0px;
}
/* line 45, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
.node-type-gallery-page ul.gallery-list:before, .node-type-gallery-page ul.gallery-list:after {
  content: "";
  display: table;
}
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
.node-type-gallery-page ul.gallery-list:after {
  clear: both;
}
/* line 7, ../sass/_gallery_page.scss */
.node-type-gallery-page ul.gallery-list li {
  list-style-type: none;
  margin-top: 20px;
}
@media all and (min-width: 1000px) {
  /* line 11, ../sass/_gallery_page.scss */
  .node-type-gallery-page ul.gallery-list li:nth-child(3n+1) {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    clear: left;
    padding-left: 0px;
  }
  /* line 16, ../sass/_gallery_page.scss */
  .node-type-gallery-page ul.gallery-list li:nth-child(3n+2) {
    float: left;
    width: 33.33333%;
    margin-left: 33.33333%;
    margin-right: -66.66667%;
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
  }
  /* line 19, ../sass/_gallery_page.scss */
  .node-type-gallery-page ul.gallery-list li:nth-child(3n+3) {
    float: left;
    width: 33.33333%;
    margin-left: 66.66667%;
    margin-right: -100%;
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    padding-right: 0px;
  }
}
@media all and (max-width: 1000px) {
  /* line 25, ../sass/_gallery_page.scss */
  .node-type-gallery-page ul.gallery-list li:nth-child(odd) {
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -50%;
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    padding-left: 0px;
    clear: left;
  }
  /* line 30, ../sass/_gallery_page.scss */
  .node-type-gallery-page ul.gallery-list li:nth-child(even) {
    float: left;
    width: 50%;
    margin-left: 50%;
    margin-right: -100%;
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    padding-right: 0px;
  }
}
/* line 35, ../sass/_gallery_page.scss */
.node-type-gallery-page ul.gallery-list li a {
  font-size: 125%;
  font-weight: bold;
  display: block;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  background: #FF9933;
  color: #FFF;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
/* line 46, ../sass/_gallery_page.scss */
.node-type-gallery-page ul.gallery-list li a:hover {
  background: #000;
}
/* line 52, ../sass/_gallery_page.scss */
.node-type-gallery-page .galleries {
  position: relative;
  height: auto;
  -moz-transition-property: height;
  -o-transition-property: height;
  -webkit-transition-property: height;
  transition-property: height;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
/* line 57, ../sass/_gallery_page.scss */
.node-type-gallery-page .galleries .ajax-overlay {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #333;
  z-index: 3;
  -moz-transition-property: opacity, height;
  -o-transition-property: opacity, height;
  -webkit-transition-property: opacity, height;
  transition-property: opacity, height;
  -moz-transition-duration: 0.3s, 0.5s;
  -o-transition-duration: 0.3s, 0.5s;
  -webkit-transition-duration: 0.3s, 0.5s;
  transition-duration: 0.3s, 0.5s;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
/* line 67, ../sass/_gallery_page.scss */
.node-type-gallery-page .galleries .ajax-overlay h2.ajax-title {
  display: inline-block;
  margin-left: -100%;
  margin-top: 5%;
  margin-bottom: 10px;
  font-size: 200%;
  line-height: 100%;
  color: #FFF;
  text-shadow: rgba(0, 0, 0, 0.5) 1px 1px 0;
  -moz-transition-property: margin-left;
  -o-transition-property: margin-left;
  -webkit-transition-property: margin-left;
  transition-property: margin-left;
  -moz-transition-duration: 0.7s;
  -o-transition-duration: 0.7s;
  -webkit-transition-duration: 0.7s;
  transition-duration: 0.7s;
  -moz-transition-delay: 0.7s;
  -o-transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
/* line 80, ../sass/_gallery_page.scss */
.node-type-gallery-page .galleries .ajax-overlay .title-decoration {
  display: block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 100%;
  height: 5px;
  background: #FF9933;
  -moz-transition-property: margin-left;
  -o-transition-property: margin-left;
  -webkit-transition-property: margin-left;
  transition-property: margin-left;
  -moz-transition-duration: 0.7s;
  -o-transition-duration: 0.7s;
  -webkit-transition-duration: 0.7s;
  transition-duration: 0.7s;
  -moz-transition-delay: 0.7s;
  -o-transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
/* line 90, ../sass/_gallery_page.scss */
.node-type-gallery-page .galleries .ajax-overlay.hide {
  height: 0;
  -moz-transition-property: opacity, height;
  -o-transition-property: opacity, height;
  -webkit-transition-property: opacity, height;
  transition-property: opacity, height;
  -moz-transition-duration: 0.5s, 0s;
  -o-transition-duration: 0.5s, 0s;
  -webkit-transition-duration: 0.5s, 0s;
  transition-duration: 0.5s, 0s;
  -moz-transition-delay: 0s, 0.7s;
  -o-transition-delay: 0s, 0.7s;
  -webkit-transition-delay: 0s, 0.7s;
  transition-delay: 0s, 0.7s;
  opacity: 0;
}
/* line 98, ../sass/_gallery_page.scss */
.node-type-gallery-page .galleries .ajax-overlay.transition h2.ajax-title {
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  margin-left: 5%;
}
/* line 102, ../sass/_gallery_page.scss */
.node-type-gallery-page .galleries .ajax-overlay.transition .title-decoration {
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  margin-left: 5%;
}
/* line 108, ../sass/_gallery_page.scss */
.node-type-gallery-page .galleries .gallery {
  position: relative;
  z-index: 2;
}

/*
 * This nesting is a unfortunate side effect of how I implemented the original stylesheet which is not something I'm proud of. :(
 * It will be better in the future but to whomever is seeing this...
 *
 * I apologize. :P
 *
 * On the upside, if you need to override anything for the multi-section page specifically, well then!  HAVE AT IT! :P
 *
 * And while I am being terribly shameful, I'm just going to use this CSS for the view of teasers that are partner spotlights.
 * At least there is consistancy between the two pages? :D
 *
 */
/* line 45, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
html body.node-type-multi-section-page #page #main #content:before, html body.node-type-multi-section-page #page #main #content:after, html body.section-partner-spotlights.page-views #page #main #content:before, html body.section-partner-spotlights.page-views #page #main #content:after {
  content: "";
  display: table;
}
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
html body.node-type-multi-section-page #page #main #content:after, html body.section-partner-spotlights.page-views #page #main #content:after {
  clear: both;
}
/* line 20, ../sass/_multi_section_page.scss */
html body.node-type-multi-section-page #page #main #content .node-multi-section-page, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights {
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -100%;
  padding-left: 10px;
  padding-right: 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  padding: 0px;
}
/* line 45, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
html body.node-type-multi-section-page #page #main #content .node-multi-section-page:before, html body.node-type-multi-section-page #page #main #content .node-multi-section-page:after, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights:before, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights:after, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page:before, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page:after, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights:before, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights:after {
  content: "";
  display: table;
}
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
html body.node-type-multi-section-page #page #main #content .node-multi-section-page:after, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights:after, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page:after, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights:after {
  clear: both;
}
/* line 24, ../sass/_multi_section_page.scss */
html body.node-type-multi-section-page #page #main #content .node-multi-section-page > *, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights > *, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page > *, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights > * {
  float: left;
  width: 75%;
  margin-left: 12.5%;
  margin-right: -87.5%;
  padding-left: 10px;
  padding-right: 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  position: relative;
  clear: left;
}
@media all and (max-width: 1000px) {
  /* line 24, ../sass/_multi_section_page.scss */
  html body.node-type-multi-section-page #page #main #content .node-multi-section-page > *, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights > *, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page > *, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights > * {
    float: left;
    width: 95.83333%;
    margin-left: 2.08333%;
    margin-right: -97.91667%;
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
  }
}
/* line 28, ../sass/_multi_section_page.scss */
html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content {
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -100%;
  padding-left: 10px;
  padding-right: 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  padding: 0px;
}
/* line 31, ../sass/_multi_section_page.scss */
html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .section, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .views-row, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .section, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .views-row, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .section, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .views-row, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .section, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .views-row, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .section, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .views-row, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .section, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .views-row, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .section, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .views-row, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .section, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .views-row {
  padding-bottom: 1.5em;
  overflow: hidden;
}
/* line 34, ../sass/_multi_section_page.scss */
html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .section .section-content, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .section .node-partner-spotlight, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .views-row .section-content, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .views-row .node-partner-spotlight, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .section .section-content, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .section .node-partner-spotlight, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .views-row .section-content, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .views-row .node-partner-spotlight, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .section .section-content, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .section .node-partner-spotlight, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .views-row .section-content, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .views-row .node-partner-spotlight, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .section .section-content, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .section .node-partner-spotlight, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .views-row .section-content, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .views-row .node-partner-spotlight, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .section .section-content, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .section .node-partner-spotlight, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .views-row .section-content, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .views-row .node-partner-spotlight, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .section .section-content, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .section .node-partner-spotlight, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .views-row .section-content, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .views-row .node-partner-spotlight, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .section .section-content, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .section .node-partner-spotlight, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .views-row .section-content, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .views-row .node-partner-spotlight, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .section .section-content, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .section .node-partner-spotlight, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .views-row .section-content, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .views-row .node-partner-spotlight {
  float: left;
  width: 75%;
  margin-left: 12.5%;
  margin-right: -87.5%;
  padding-left: 10px;
  padding-right: 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  position: relative;
  clear: left;
}
@media all and (max-width: 1000px) {
  /* line 34, ../sass/_multi_section_page.scss */
  html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .section .section-content, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .section .node-partner-spotlight, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .views-row .section-content, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .views-row .node-partner-spotlight, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .section .section-content, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .section .node-partner-spotlight, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .views-row .section-content, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .views-row .node-partner-spotlight, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .section .section-content, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .section .node-partner-spotlight, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .views-row .section-content, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .views-row .node-partner-spotlight, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .section .section-content, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .section .node-partner-spotlight, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .views-row .section-content, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .views-row .node-partner-spotlight, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .section .section-content, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .section .node-partner-spotlight, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .views-row .section-content, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .views-row .node-partner-spotlight, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .section .section-content, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .section .node-partner-spotlight, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .views-row .section-content, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .views-row .node-partner-spotlight, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .section .section-content, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .section .node-partner-spotlight, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .views-row .section-content, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .views-row .node-partner-spotlight, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .section .section-content, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .section .node-partner-spotlight, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .views-row .section-content, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .views-row .node-partner-spotlight {
    float: left;
    width: 95.83333%;
    margin-left: 2.08333%;
    margin-right: -97.91667%;
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
  }
}
/* line 45, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .section .section-content:before, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .section .section-content:after, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .section .node-partner-spotlight:before, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .section .node-partner-spotlight:after, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .views-row .section-content:before, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .views-row .section-content:after, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .views-row .node-partner-spotlight:before, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .views-row .node-partner-spotlight:after, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .section .section-content:before, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .section .section-content:after, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .section .node-partner-spotlight:before, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .section .node-partner-spotlight:after, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .views-row .section-content:before, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .views-row .section-content:after, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .views-row .node-partner-spotlight:before, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .views-row .node-partner-spotlight:after, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .section .section-content:before, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .section .section-content:after, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .section .node-partner-spotlight:before, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .section .node-partner-spotlight:after, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .views-row .section-content:before, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .views-row .section-content:after, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .views-row .node-partner-spotlight:before, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .views-row .node-partner-spotlight:after, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .section .section-content:before, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .section .section-content:after, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .section .node-partner-spotlight:before, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .section .node-partner-spotlight:after, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .views-row .section-content:before, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .views-row .section-content:after, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .views-row .node-partner-spotlight:before, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .views-row .node-partner-spotlight:after, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .section .section-content:before, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .section .section-content:after, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .section .node-partner-spotlight:before, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .section .node-partner-spotlight:after, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .views-row .section-content:before, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .views-row .section-content:after, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .views-row .node-partner-spotlight:before, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .views-row .node-partner-spotlight:after, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .section .section-content:before, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .section .section-content:after, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .section .node-partner-spotlight:before, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .section .node-partner-spotlight:after, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .views-row .section-content:before, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .views-row .section-content:after, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .views-row .node-partner-spotlight:before, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .views-row .node-partner-spotlight:after, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .section .section-content:before, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .section .section-content:after, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .section .node-partner-spotlight:before, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .section .node-partner-spotlight:after, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .views-row .section-content:before, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .views-row .section-content:after, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .views-row .node-partner-spotlight:before, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .views-row .node-partner-spotlight:after, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .section .section-content:before, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .section .section-content:after, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .section .node-partner-spotlight:before, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .section .node-partner-spotlight:after, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .views-row .section-content:before, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .views-row .section-content:after, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .views-row .node-partner-spotlight:before, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .views-row .node-partner-spotlight:after {
  content: "";
  display: table;
}
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .section .section-content:after, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .section .node-partner-spotlight:after, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .views-row .section-content:after, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .views-row .node-partner-spotlight:after, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .section .section-content:after, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .section .node-partner-spotlight:after, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .views-row .section-content:after, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .views-row .node-partner-spotlight:after, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .section .section-content:after, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .section .node-partner-spotlight:after, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .views-row .section-content:after, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .views-row .node-partner-spotlight:after, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .section .section-content:after, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .section .node-partner-spotlight:after, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .views-row .section-content:after, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .views-row .node-partner-spotlight:after, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .section .section-content:after, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .section .node-partner-spotlight:after, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .views-row .section-content:after, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .views-row .node-partner-spotlight:after, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .section .section-content:after, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .section .node-partner-spotlight:after, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .views-row .section-content:after, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .views-row .node-partner-spotlight:after, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .section .section-content:after, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .section .node-partner-spotlight:after, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .views-row .section-content:after, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .views-row .node-partner-spotlight:after, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .section .section-content:after, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .section .node-partner-spotlight:after, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .views-row .section-content:after, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .views-row .node-partner-spotlight:after {
  clear: both;
}
/* line 38, ../sass/_multi_section_page.scss */
html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .section .section-content p, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .section .node-partner-spotlight p, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .views-row .section-content p, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .views-row .node-partner-spotlight p, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .section .section-content p, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .section .node-partner-spotlight p, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .views-row .section-content p, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .views-row .node-partner-spotlight p, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .section .section-content p, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .section .node-partner-spotlight p, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .views-row .section-content p, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .views-row .node-partner-spotlight p, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .section .section-content p, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .section .node-partner-spotlight p, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .views-row .section-content p, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .views-row .node-partner-spotlight p, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .section .section-content p, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .section .node-partner-spotlight p, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .views-row .section-content p, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .views-row .node-partner-spotlight p, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .section .section-content p, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .section .node-partner-spotlight p, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .views-row .section-content p, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .views-row .node-partner-spotlight p, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .section .section-content p, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .section .node-partner-spotlight p, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .views-row .section-content p, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .views-row .node-partner-spotlight p, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .section .section-content p, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .section .node-partner-spotlight p, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .views-row .section-content p, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .views-row .node-partner-spotlight p {
  margin: 0 0 1.5em 0;
}
/* line 42, ../sass/_multi_section_page.scss */
html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .section:nth-child(2n+1), html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .views-row:nth-child(2n+1), html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .section:nth-child(2n+1), html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .views-row:nth-child(2n+1), html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .section:nth-child(2n+1), html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .views-row:nth-child(2n+1), html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .section:nth-child(2n+1), html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .views-row:nth-child(2n+1), html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .section:nth-child(2n+1), html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .views-row:nth-child(2n+1), html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .section:nth-child(2n+1), html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .views-row:nth-child(2n+1), html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .section:nth-child(2n+1), html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .views-row:nth-child(2n+1), html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .section:nth-child(2n+1), html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .views-row:nth-child(2n+1) {
  background: #FFF;
}
@media all and (max-width: 600px) {
  /* line 46, ../sass/_multi_section_page.scss */
  html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .section img, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .views-row img, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .section img, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .views-row img, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .section img, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .views-row img, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .section img, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .views-row img, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .section img, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .views-row img, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .section img, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .views-row img, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .section img, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .views-row img, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .section img, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .views-row img {
    width: 100%;
    height: auto;
    margin-bottom: 1.5em;
  }
  /* line 51, ../sass/_multi_section_page.scss */
  html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .section .section-text, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .views-row .section-text, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .section .section-text, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .views-row .section-text, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .section .section-text, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .views-row .section-text, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .section .section-text, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .views-row .section-text, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .section .section-text, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .views-row .section-text, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .section .section-text, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .views-row .section-text, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .section .section-text, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .views-row .section-text, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .section .section-text, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .views-row .section-text {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    clear: left;
    padding: 0;
  }
  /* line 56, ../sass/_multi_section_page.scss */
  html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .section .section-image, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .views-row .section-image, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .section .section-image, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .views-row .section-image, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .section .section-image, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .views-row .section-image, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .section .section-image, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .views-row .section-image, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .section .section-image, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .views-row .section-image, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .section .section-image, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .views-row .section-image, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .section .section-image, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .views-row .section-image, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .section .section-image, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .views-row .section-image {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    clear: left;
    padding: 0;
  }
}
@media all and (min-width: 600px) {
  /* line 63, ../sass/_multi_section_page.scss */
  html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .section .section-text, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .views-row .section-text, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .section .section-text, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .views-row .section-text, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .section .section-text, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .views-row .section-text, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .section .section-text, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .views-row .section-text, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .section .section-text, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .views-row .section-text, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .section .section-text, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .views-row .section-text, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .section .section-text, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .views-row .section-text, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .section .section-text, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .views-row .section-text {
    float: left;
    width: 75%;
    margin-left: 25%;
    margin-right: -100%;
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    padding-right: 0px;
  }
  /* line 67, ../sass/_multi_section_page.scss */
  html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .section .section-image, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .multi-section-container .views-row .section-image, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .section .section-image, html body.node-type-multi-section-page #page #main #content .node-multi-section-page .view-content .views-row .section-image, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .section .section-image, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .multi-section-container .views-row .section-image, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .section .section-image, html body.node-type-multi-section-page #page #main #content .view-partner-spotlights .view-content .views-row .section-image, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .section .section-image, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .multi-section-container .views-row .section-image, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .section .section-image, html body.section-partner-spotlights.page-views #page #main #content .node-multi-section-page .view-content .views-row .section-image, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .section .section-image, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .multi-section-container .views-row .section-image, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .section .section-image, html body.section-partner-spotlights.page-views #page #main #content .view-partner-spotlights .view-content .views-row .section-image {
    float: left;
    width: 25%;
    margin-left: 0%;
    margin-right: -25%;
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    padding-left: 0px;
  }
}

/* line 45, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
.contact-container:before, .contact-container:after {
  content: "";
  display: table;
}
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
.contact-container:after {
  clear: both;
}
/* line 3, ../sass/_contact_us.scss */
.contact-container .col1 {
  float: left;
  width: 50%;
  margin-left: 0%;
  margin-right: -50%;
  padding-left: 10px;
  padding-right: 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
}
@media all and (max-width: 600px) {
  /* line 3, ../sass/_contact_us.scss */
  .contact-container .col1 {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    clear: left;
  }
}
/* line 10, ../sass/_contact_us.scss */
.contact-container .col2 {
  float: left;
  width: 50%;
  margin-left: 50%;
  margin-right: -100%;
  padding-left: 10px;
  padding-right: 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
}
@media all and (max-width: 600px) {
  /* line 10, ../sass/_contact_us.scss */
  .contact-container .col2 {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    clear: left;
  }
}

/* line 2, ../sass/_news.scss */
.view-news article {
  padding-bottom: 1.5em;
  border-bottom: solid 1px #000;
  margin-bottom: 1.5em;
}
/* line 6, ../sass/_news.scss */
.view-news article img {
  float: left;
  padding: 0px 15px 15px 0px;
  margin-top: 1.5em;
}
/* line 14, ../sass/_news.scss */
.view-news .views-row:last-child article {
  margin-bottom: 0;
  border-bottom: 0;
}








.grid-template-wrapper {
  overflow: hidden;
}

.grid-template-wrapper .grid-margin-wrapper {
  margin-left: -1%;
  margin-right: -1%;
}

.grid-template-wrapper .field-item {
  position: relative;
  margin-bottom: 1%;
}

.grid-template-wrapper .field-item .grid-item-cover {
  position: relative;
  text-align: center;
}

.grid-template-wrapper .field-item .grid-item-cover img {
  display: block;
  width: 100%;
}

.grid-template-wrapper .field-item h2 {
  position: absolute;
  top: 50%;
  -wekit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
  padding: 10px;
  margin: 0;
  text-align: center;
  width: 100%;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  opacity: 1;
  transition: all ease 0.2s;
}

@media screen and (min-width: 500px) {
  
  .grid-template-wrapper .field-item {
    float: left;
    width: 48%;
    margin: 0 1% 2% 1%;
  }
  
}

@media screen and (min-width: 750px) {
  
  .grid-template-wrapper .field-item {
    float: left;
    width: 31.3333%;
    margin: 0 1% 2% 1%;
  }
  
}

.grid-template-wrapper .grid-item-cover .field-item {
  float: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.grid-template-wrapper .grid-item-content {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 15px;
  background: rgba(255, 255, 255, 0.8);
  z-index: 20;
  opacity: 0;
  transition: all ease 0.2s;
}

.grid-template-wrapper .field-item:hover .grid-item-content {
  opacity: 1;
}

.grid-template-wrapper .field-item:hover h2 {
  opacity: 0;
}









/* SMACSS theme rules */
/* @import "theme-A"; */
/* @import "theme-B"; */
