/**
 * @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. */
@import url("http://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic");
@font-face {
  font-family: 'bird_expomedium';
  src: url("../fonts/bird-expo/bird_expo-webfont.eot");
  src: url("../fonts/bird-expo/bird_expo-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/bird-expo/bird_expo-webfont.woff2") format("woff2"), url("../fonts/bird-expo/bird_expo-webfont.woff") format("woff"), url("../fonts/bird-expo/bird_expo-webfont.ttf") format("truetype"), url("../fonts/bird-expo/bird_expo-webfont.svg#bird_expomedium") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* 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 48, ../sass/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* Address styling not present in IE 8/9. */
/* line 54, ../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 _init.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 102, ../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 */
}

/* Remove default margin. */
/* line 110, ../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 132, ../sass/_normalize.scss */
a:focus {
  outline: thin dotted;
}

/* Improve readability when focused and also mouse hovered in all browsers. */
/* line 137, ../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 153, ../sass/_normalize.scss */
p,
pre {
  margin: 20px 0;
}

/* line 157, ../sass/_normalize.scss */
blockquote {
  /* Also indent the quote on both sides. */
  margin: 20px 30px;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 166, ../sass/_normalize.scss */
h1 {
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
  font-size: 32px;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* line 173, ../sass/_normalize.scss */
h2 {
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* line 178, ../sass/_normalize.scss */
h3 {
  font-size: 18.72px;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 183, ../sass/_normalize.scss */
h4 {
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 188, ../sass/_normalize.scss */
h5 {
  font-size: 13.28px;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 193, ../sass/_normalize.scss */
h6 {
  font-size: 10.72px;
  margin-top: 10px;
  margin-bottom: 10px;
}

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

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

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

/* Address differences between Firefox and other browsers. */
/* line 216, ../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: 20px 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
/* line 305, ../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 overflow displayed oddly in IE 9. */
/* line 318, ../sass/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

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

/**
 * Forms
 */
/* Define consistent border, margin, and padding. */
/* line 332, ../sass/_normalize.scss */
fieldset {
  margin: 0 2px;
  border: 1px solid #c0c0c0;
}

/**
 * 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 342, ../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 354, ../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 369, ../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 380, ../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 394, ../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 405, ../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 416, ../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 427, ../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 436, ../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 442, ../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 452, ../sass/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

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

/**
 * Tables
 */
/* line 466, ../sass/_normalize.scss */
table {
  /* Remove most spacing between table cells. */
  border-collapse: collapse;
  border-spacing: 0;
  /* Prevent cramped-looking tables */
  /* width: 100%; */
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Layout rules */
/* line 13, ../sass/layouts/_responsive.scss */
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

/* line 19, ../sass/layouts/_responsive.scss */
html {
  overflow-x: hidden;
  background: url(../images/bg.png);
}

/* line 24, ../sass/layouts/_responsive.scss */
#page {
  padding-left: 20px;
  padding-right: 20px;
}

/* line 29, ../sass/layouts/_responsive.scss */
#header,
#main,
.region-footer,
.region-home-video,
.region-home-about {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  margin-left: auto;
  margin-right: auto;
}
/* line 12, ../sass-extensions/susy/sass/susy/output/support/_clearfix.scss */
#header:after,
#main:after,
.region-footer:after,
.region-home-video:after,
.region-home-about:after {
  content: " ";
  display: block;
  clear: both;
}

/* line 40, ../sass/layouts/_responsive.scss */
.not-front .home-video-wrapper,
.not-front .home-about-wrapper {
  display: none;
}

@media all and (min-width: 980px) {
  /* line 48, ../sass/layouts/_responsive.scss */
  body.sidebar-second #content {
    width: 74.57627%;
    float: left;
    margin-right: 1.69492%;
  }
  /* line 51, ../sass/layouts/_responsive.scss */
  body.sidebar-second .sidebar {
    width: 23.72881%;
    float: right;
    margin-right: 0;
    padding-top: 40px;
  }
}
/* 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 32, ../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 38, ../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 55, ../sass/components/_misc.scss */
#skip-link {
  margin: 0;
}
/* line 58, ../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 74, ../sass/components/_misc.scss */
.header__logo {
  float: left;
  /* LTR */
  margin: 0;
  padding: 0;
  width: 180px;
  height: auto;
}
@media all and (min-width: 500px) {
  /* line 74, ../sass/components/_misc.scss */
  .header__logo {
    width: auto;
    height: auto;
  }
}

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

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

/* The name of the website. */
/* line 97, ../sass/components/_misc.scss */
.header__site-name {
  margin: 0;
  font-size: 32px;
}

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

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

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

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

/**
 * Navigation bar.
 */
/* line 135, ../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 139, ../sass/components/_misc.scss */
#navigation .block {
  margin-bottom: 0;
}
/* line 149, ../sass/components/_misc.scss */
#navigation .links,
#navigation .menu {
  margin: 0;
  padding: 0;
  text-align: left;
  /* LTR */
}
/* line 155, ../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 169, ../sass/components/_misc.scss */
.breadcrumb ol {
  margin: 0;
  padding: 0;
}
/* line 173, ../sass/components/_misc.scss */
.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

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

/**
 * Messages.
 */
/* line 196, ../sass/components/_misc.scss */
.messages, .messages--status, .messages--warning, .messages--error {
  margin: 20px 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 208, ../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 214, ../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 221, ../sass/components/_misc.scss */
.messages__list {
  margin: 0;
}

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

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

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

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

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

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

/* line 265, ../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 269, ../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;
  text-decoration: none;
}

/* Primary tabs. */
/* line 281, ../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 290, ../sass/components/_misc.scss */
.tabs-primary__tab.is-active {
  border-bottom-color: #fff;
}

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

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

/* line 340, ../sass/components/_misc.scss */
.tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  margin: 20px/2 3px;
}

/* line 347, ../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 356, ../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 361, ../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 389, ../sass/components/_misc.scss */
.inline {
  display: inline;
  padding: 0;
}
/* line 393, ../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 401, ../sass/components/_misc.scss */
span.field-label {
  padding: 0 1em 0 0;
  /* LTR */
}

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

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

/* line 414, ../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 426, ../sass/components/_misc.scss */
.pager {
  clear: both;
  padding: 0;
  text-align: center;
}

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

/**
 * Blocks.
 */
/* Block wrapper. */
/* line 458, ../sass/components/_misc.scss */
.block {
  margin-bottom: 20px;
}

/**
 * Menus.
 */
/* line 465, ../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 469, ../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 473, ../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;
}

/* The active item in a Drupal menu. */
/* line 479, ../sass/components/_misc.scss */
.menu a.active {
  color: #000;
}

/**
 * Marker.
 */
/* The "new" or "updated" marker. */
/* line 488, ../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 500, ../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 521, ../sass/components/_misc.scss */
.comments {
  margin: 20px 0;
}

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

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

/* Nested comments are indented. */
/* line 542, ../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 552, ../sass/components/_misc.scss */
.form-item {
  margin: 20px 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 556, ../sass/components/_misc.scss */
.form-checkboxes .form-item, .form-radios .form-item {
  /* Drupal core uses "0.4em 0". */
  margin: 0;
}
/* line 563, ../sass/components/_misc.scss */
tr.odd .form-item, tr.even .form-item {
  margin: 0;
}
/* line 569, ../sass/components/_misc.scss */
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}
/* line 576, ../sass/components/_misc.scss */
.form-item .description {
  font-size: 0.85em;
}

/* line 583, ../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 589, ../sass/components/_misc.scss */
.form-required {
  color: #c00;
}

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

/* Buttons used by contrib modules like Media. */
/* line 600, ../sass/components/_misc.scss */
a.button {
  -moz-appearance: button;
  -webkit-appearance: button;
}

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

/* Drupal's default login form block. */
/* line 611, ../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 623, ../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 629, ../sass/components/_misc.scss */
.openid-link,
.user-link {
  margin-top: 20px;
}

/* line 633, ../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 638, ../sass/components/_misc.scss */
#user-login ul {
  margin: 20px 0;
}

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

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

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

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

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

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

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
/* line 702, ../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 708, ../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 712, ../sass/components/_misc.scss */
.fieldset-legend .summary {
  color: #999;
  font-size: 0.9em;
  margin-left: 0.5em;
}

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

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

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

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

/**
 * Progress bar.
 *
 * @see progress.js
 */
/* line 748, ../sass/components/_misc.scss */
.progress {
  font-weight: bold;
}
/* line 751, ../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 757, ../sass/components/_misc.scss */
.progress .filled {
  background-color: #0072b9;
  background-image: url('../images/progress.gif?1531144743');
}

/* line 763, ../sass/components/_misc.scss */
.not-logged-in .contextual-links {
  display: none !important;
}

/**
 * @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;
  }
}
/* line 1, ../sass/components/_header.scss */
.header-wrapper {
  margin-left: -20px;
  margin-right: -20px;
  min-height: 60px;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

/* line 10, ../sass/components/_header.scss */
.region-header {
  clear: none;
}

/* line 15, ../sass/components/_header.scss */
#block-menu-block-1.mobile {
  margin: 0;
  position: static;
  float: right;
}
/* line 19, ../sass/components/_header.scss */
#block-menu-block-1.mobile h2.block-title {
  display: block;
  float: left;
  width: 100%;
  font-family: 'bird_expomedium';
  font-size: 18px;
  line-height: 18px;
  color: #fc9700;
  text-transform: uppercase;
  margin: 0;
  cursor: pointer;
  margin-top: 4px;
}
/* line 29, ../sass/components/_header.scss */
#block-menu-block-1.mobile h2.block-title:after {
  content: url(../images/mobile-menu-plus.png);
  display: block;
  float: right;
  margin-left: 10px;
}
/* line 36, ../sass/components/_header.scss */
#block-menu-block-1.mobile .menu-block-wrapper {
  display: block;
  position: absolute;
  background: #fc9700;
  top: 60px;
  left: 100%;
  width: 100%;
  padding: 20px;
  z-index: 200;
}
/* line 45, ../sass/components/_header.scss */
#block-menu-block-1.mobile .menu-block-wrapper > ul.menu {
  margin: 0;
  padding: 0;
}
/* line 48, ../sass/components/_header.scss */
#block-menu-block-1.mobile .menu-block-wrapper > ul.menu > li {
  list-style-type: none;
  list-style-image: none;
  margin-bottom: 10px;
}
/* line 53, ../sass/components/_header.scss */
#block-menu-block-1.mobile .menu-block-wrapper > ul.menu > li > a {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  line-height: 27px;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
}
/* line 49, ../sass/_mixins.scss */
#block-menu-block-1.mobile .menu-block-wrapper > ul.menu > li > a:hover {
  text-decoration: underline;
}
/* line 58, ../sass/components/_header.scss */
#block-menu-block-1.mobile .menu-block-wrapper > ul.menu > li.active-trail > a, #block-menu-block-1.mobile .menu-block-wrapper > ul.menu > li.is-active > a {
  text-decoration: underline;
}
/* line 56, ../sass/_mixins.scss */
#block-menu-block-1.mobile .menu-block-wrapper > ul.menu > li.active-trail > a:hover, #block-menu-block-1.mobile .menu-block-wrapper > ul.menu > li.is-active > a:hover {
  text-decoration: none;
}
/* line 61, ../sass/components/_header.scss */
#block-menu-block-1.mobile .menu-block-wrapper > ul.menu > li .toggler {
  display: block;
  width: 10px;
  height: 10px;
  background: url(../images/mobile-menu-plus.png);
  float: right;
  cursor: pointer;
  margin-top: 8px;
}
/* line 71, ../sass/components/_header.scss */
#block-menu-block-1.mobile .menu-block-wrapper > ul.menu > li > ul.menu {
  display: none;
}
/* line 73, ../sass/components/_header.scss */
#block-menu-block-1.mobile .menu-block-wrapper > ul.menu > li > ul.menu > li {
  list-style-type: none;
  list-style-image: none;
  margin-top: 10px;
  margin-bottom: 10px;
}
/* line 78, ../sass/components/_header.scss */
#block-menu-block-1.mobile .menu-block-wrapper > ul.menu > li > ul.menu > li > a {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  line-height: 27px;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
}
/* line 49, ../sass/_mixins.scss */
#block-menu-block-1.mobile .menu-block-wrapper > ul.menu > li > ul.menu > li > a:hover {
  text-decoration: underline;
}
/* line 82, ../sass/components/_header.scss */
#block-menu-block-1.mobile .menu-block-wrapper > ul.menu > li > ul.menu > li > a.active {
  text-decoration: underline;
}
/* line 56, ../sass/_mixins.scss */
#block-menu-block-1.mobile .menu-block-wrapper > ul.menu > li > ul.menu > li > a.active:hover {
  text-decoration: none;
}

/* line 94, ../sass/components/_header.scss */
#block-menu-block-1.full {
  margin-bottom: 0;
}
/* line 96, ../sass/components/_header.scss */
#block-menu-block-1.full h2.block-title {
  display: none;
}
/* line 99, ../sass/components/_header.scss */
#block-menu-block-1.full .menu-block-wrapper {
  float: right;
}
/* line 101, ../sass/components/_header.scss */
#block-menu-block-1.full .menu-block-wrapper > ul.menu {
  margin-top: 0;
}
/* line 103, ../sass/components/_header.scss */
#block-menu-block-1.full .menu-block-wrapper > ul.menu > li {
  display: inline-block;
  float: left;
  list-style-type: none;
  list-style-image: none;
  margin-left: 35px;
  position: relative;
}
/* line 111, ../sass/components/_header.scss */
#block-menu-block-1.full .menu-block-wrapper > ul.menu > li:first-child {
  margin-left: 0;
}
/* line 114, ../sass/components/_header.scss */
#block-menu-block-1.full .menu-block-wrapper > ul.menu > li > a {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  line-height: 27px;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
}
/* line 49, ../sass/_mixins.scss */
#block-menu-block-1.full .menu-block-wrapper > ul.menu > li > a:hover {
  text-decoration: underline;
}
/* line 119, ../sass/components/_header.scss */
#block-menu-block-1.full .menu-block-wrapper > ul.menu > li.active-trail > a {
  text-decoration: underline;
}
/* line 56, ../sass/_mixins.scss */
#block-menu-block-1.full .menu-block-wrapper > ul.menu > li.active-trail > a:hover {
  text-decoration: none;
}
/* line 123, ../sass/components/_header.scss */
#block-menu-block-1.full .menu-block-wrapper > ul.menu > li > ul.menu {
  display: none;
  position: absolute;
  top: 30px;
  right: 0;
  background: #fc9700;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  padding: 15px 10px;
  width: 260px;
  z-index: 200;
  list-style-type: none !important;
  list-style-image: none !important;
  list-style: none !important;
  overflow-x: hidden;
}
/* line 137, ../sass/components/_header.scss */
#block-menu-block-1.full .menu-block-wrapper > ul.menu > li > ul.menu > li {
  list-style-type: none !important;
  list-style-image: none !important;
  list-style: none !important;
  display: block;
  float: left;
  width: 100%;
  padding-bottom: 25px;
}
/* line 145, ../sass/components/_header.scss */
#block-menu-block-1.full .menu-block-wrapper > ul.menu > li > ul.menu > li:first-child {
  border-top: none;
  padding-top: 0;
}
/* line 149, ../sass/components/_header.scss */
#block-menu-block-1.full .menu-block-wrapper > ul.menu > li > ul.menu > li:last-child {
  padding-bottom: 0;
}
/* line 152, ../sass/components/_header.scss */
#block-menu-block-1.full .menu-block-wrapper > ul.menu > li > ul.menu > li > a {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  line-height: 21px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
}
/* line 49, ../sass/_mixins.scss */
#block-menu-block-1.full .menu-block-wrapper > ul.menu > li > ul.menu > li > a:hover {
  text-decoration: underline;
}
/* line 156, ../sass/components/_header.scss */
#block-menu-block-1.full .menu-block-wrapper > ul.menu > li > ul.menu > li > a.active {
  text-decoration: underline;
}
/* line 56, ../sass/_mixins.scss */
#block-menu-block-1.full .menu-block-wrapper > ul.menu > li > ul.menu > li > a.active:hover {
  text-decoration: none;
}
/* line 160, ../sass/components/_header.scss */
#block-menu-block-1.full .menu-block-wrapper > ul.menu > li > ul.menu > li li {
  list-style-type: none !important;
  list-style-image: none !important;
  overflow: hidden;
}

/* line 2, ../sass/components/_home_slider.scss */
.front #block-views-billboards-block-1 {
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: 50px;
}
@media all and (min-width: 980px) {
  /* line 2, ../sass/components/_home_slider.scss */
  .front #block-views-billboards-block-1 {
    margin-top: 15px;
  }
}
/* line 9, ../sass/components/_home_slider.scss */
.front #block-views-billboards-block-1 h2.block-title {
  display: none;
}
/* line 12, ../sass/components/_home_slider.scss */
.front #block-views-billboards-block-1 .flexslider {
  border: none;
  padding: 0;
  margin: 0;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
/* line 19, ../sass/components/_home_slider.scss */
.front #block-views-billboards-block-1 .flexslider .views-row .slide-title-outer-wrapper {
  overflow: hidden;
  *zoom: 1;
  padding: 20px;
  background: #fc9700;
}
@media all and (min-width: 980px) {
  /* line 19, ../sass/components/_home_slider.scss */
  .front #block-views-billboards-block-1 .flexslider .views-row .slide-title-outer-wrapper {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(252, 151, 0, 0.75);
  }
}
/* line 31, ../sass/components/_home_slider.scss */
.front #block-views-billboards-block-1 .flexslider .views-row .slide-title-inner-wrapper {
  overflow: hidden;
  *zoom: 1;
  text-align: center;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
/* line 12, ../sass-extensions/susy/sass/susy/output/support/_clearfix.scss */
.front #block-views-billboards-block-1 .flexslider .views-row .slide-title-inner-wrapper:after {
  content: " ";
  display: block;
  clear: both;
}
/* line 35, ../sass/components/_home_slider.scss */
.front #block-views-billboards-block-1 .flexslider .views-row .slide-title-inner-wrapper .views-field-title {
  font-family: 'Lato', sans-serif;
  font-size: 30px;
  line-height: 40px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #fff;
}
@media all and (min-width: 980px) {
  /* line 31, ../sass/components/_home_slider.scss */
  .front #block-views-billboards-block-1 .flexslider .views-row .slide-title-inner-wrapper {
    text-align: left;
  }
  /* line 45, ../sass/components/_home_slider.scss */
  .front #block-views-billboards-block-1 .flexslider .views-row .slide-title-inner-wrapper .views-field-title {
    float: left;
  }
  /* line 48, ../sass/components/_home_slider.scss */
  .front #block-views-billboards-block-1 .flexslider .views-row .slide-title-inner-wrapper .views-field-field-button {
    float: right;
  }
}
/* line 54, ../sass/components/_home_slider.scss */
.front #block-views-billboards-block-1 .flexslider .flex-control-nav {
  display: none;
}
/* line 58, ../sass/components/_home_slider.scss */
.front #block-views-billboards-block-1 .flexslider .flex-direction-nav .flex-prev, .front #block-views-billboards-block-1 .flexslider .flex-direction-nav .flex-next {
  width: 104px;
  height: 196px;
  margin: 0;
}
/* line 63, ../sass/components/_home_slider.scss */
.front #block-views-billboards-block-1 .flexslider .flex-direction-nav .flex-prev:before {
  content: url(../images/slider-arrow-left.png);
}
/* line 66, ../sass/components/_home_slider.scss */
.front #block-views-billboards-block-1 .flexslider .flex-direction-nav .flex-next:before {
  content: url(../images/slider-arrow-right.png);
}

/* line 1, ../sass/components/_home_whats_new.scss */
.front h1#page-title {
  font-family: 'bird_expomedium';
  font-size: 20px;
  line-height: 28px;
  color: #fc9700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

/* line 5, ../sass/components/_home_whats_new.scss */
.view-what-s-new {
  overflow: hidden;
  *zoom: 1;
  margin-bottom: 40px;
}
/* line 196, ../sass/_mixins.scss */
.view-what-s-new .views-row {
  border: 1px solid #555;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 20px;
}
/* line 200, ../sass/_mixins.scss */
.view-what-s-new .views-row:hover {
  background: #161616;
}
@media all and (min-width: 640px) {
  /* line 196, ../sass/_mixins.scss */
  .view-what-s-new .views-row {
    width: 49.15254%;
    float: left;
    margin-right: 1.69492%;
    min-height: 400px;
  }
  /* line 206, ../sass/_mixins.scss */
  .view-what-s-new .views-row.views-row-even {
    width: 49.15254%;
    float: right;
    margin-right: 0;
  }
}
@media all and (min-width: 950px) {
  /* line 196, ../sass/_mixins.scss */
  .view-what-s-new .views-row {
    width: 32.20339%;
    float: left;
    margin-right: 1.69492%;
  }
  /* line 212, ../sass/_mixins.scss */
  .view-what-s-new .views-row.views-row-even {
    width: 32.20339%;
    float: left;
    margin-right: 1.69492%;
  }
  /* line 215, ../sass/_mixins.scss */
  .view-what-s-new .views-row:nth-child(3n+3) {
    width: 32.20339%;
    float: right;
    margin-right: 0;
  }
}
/* line 219, ../sass/_mixins.scss */
.view-what-s-new .views-row .views-field-field-image,
.view-what-s-new .views-row .views-field-field-featured-image,
.view-what-s-new .views-row .views-field-field-image-url {
  text-align: center;
  margin-bottom: 15px;
}
/* line 224, ../sass/_mixins.scss */
.view-what-s-new .views-row .views-field-field-image img,
.view-what-s-new .views-row .views-field-field-featured-image img,
.view-what-s-new .views-row .views-field-field-image-url img {
  -moz-border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px;
  border-radius: 5px 5px 0 0;
}
/* line 228, ../sass/_mixins.scss */
.view-what-s-new .views-row .views-field-title {
  padding: 0 20px;
  margin-bottom: 5px;
}
/* line 231, ../sass/_mixins.scss */
.view-what-s-new .views-row .views-field-title a {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  line-height: 28px;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
}
/* line 49, ../sass/_mixins.scss */
.view-what-s-new .views-row .views-field-title a:hover {
  text-decoration: underline;
}
/* line 8, ../sass/components/_home_whats_new.scss */
.view-what-s-new .views-row {
  margin-bottom: 20px;
}
/* line 10, ../sass/components/_home_whats_new.scss */
.view-what-s-new .views-row .views-field-field-description {
  padding: 0 20px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #fff;
  margin-bottom: 20px;
}

/* line 1, ../sass/components/_home_blog_posts.scss */
#block-views-home-recent-blog-posts-block {
  overflow: hidden;
  *zoom: 1;
  margin-bottom: 60px;
}
/* line 196, ../sass/_mixins.scss */
#block-views-home-recent-blog-posts-block .views-row {
  border: 1px solid #555;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 20px;
}
/* line 200, ../sass/_mixins.scss */
#block-views-home-recent-blog-posts-block .views-row:hover {
  background: #161616;
}
@media all and (min-width: 640px) {
  /* line 196, ../sass/_mixins.scss */
  #block-views-home-recent-blog-posts-block .views-row {
    width: 49.15254%;
    float: left;
    margin-right: 1.69492%;
    min-height: 400px;
  }
  /* line 206, ../sass/_mixins.scss */
  #block-views-home-recent-blog-posts-block .views-row.views-row-even {
    width: 49.15254%;
    float: right;
    margin-right: 0;
  }
}
@media all and (min-width: 950px) {
  /* line 196, ../sass/_mixins.scss */
  #block-views-home-recent-blog-posts-block .views-row {
    width: 32.20339%;
    float: left;
    margin-right: 1.69492%;
  }
  /* line 212, ../sass/_mixins.scss */
  #block-views-home-recent-blog-posts-block .views-row.views-row-even {
    width: 32.20339%;
    float: left;
    margin-right: 1.69492%;
  }
  /* line 215, ../sass/_mixins.scss */
  #block-views-home-recent-blog-posts-block .views-row:nth-child(3n+3) {
    width: 32.20339%;
    float: right;
    margin-right: 0;
  }
}
/* line 219, ../sass/_mixins.scss */
#block-views-home-recent-blog-posts-block .views-row .views-field-field-image,
#block-views-home-recent-blog-posts-block .views-row .views-field-field-featured-image,
#block-views-home-recent-blog-posts-block .views-row .views-field-field-image-url {
  text-align: center;
  margin-bottom: 15px;
}
/* line 224, ../sass/_mixins.scss */
#block-views-home-recent-blog-posts-block .views-row .views-field-field-image img,
#block-views-home-recent-blog-posts-block .views-row .views-field-field-featured-image img,
#block-views-home-recent-blog-posts-block .views-row .views-field-field-image-url img {
  -moz-border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px;
  border-radius: 5px 5px 0 0;
}
/* line 228, ../sass/_mixins.scss */
#block-views-home-recent-blog-posts-block .views-row .views-field-title {
  padding: 0 20px;
  margin-bottom: 5px;
}
/* line 231, ../sass/_mixins.scss */
#block-views-home-recent-blog-posts-block .views-row .views-field-title a {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  line-height: 28px;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
}
/* line 49, ../sass/_mixins.scss */
#block-views-home-recent-blog-posts-block .views-row .views-field-title a:hover {
  text-decoration: underline;
}
/* line 4, ../sass/components/_home_blog_posts.scss */
#block-views-home-recent-blog-posts-block h2.block-title {
  font-family: 'bird_expomedium';
  font-size: 20px;
  line-height: 28px;
  color: #fc9700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}
/* line 7, ../sass/components/_home_blog_posts.scss */
#block-views-home-recent-blog-posts-block .views-row {
  margin-bottom: 20px;
}
/* line 9, ../sass/components/_home_blog_posts.scss */
#block-views-home-recent-blog-posts-block .views-row .views-field-pubdate {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  padding: 0 20px;
  margin-bottom: 20px;
}
/* line 16, ../sass/components/_home_blog_posts.scss */
#block-views-home-recent-blog-posts-block .view-footer {
  clear: both;
  width: 100%;
  text-align: center;
}
/* line 20, ../sass/components/_home_blog_posts.scss */
#block-views-home-recent-blog-posts-block .view-footer a {
  margin-top: 10px;
  display: inline-block;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  font-family: 'bird_expomedium';
  font-size: 13px;
  line-height: 13px;
  padding: 15px 30px 13px 30px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid #fff;
  color: #555;
  border-color: #555;
}
/* line 49, ../sass/_mixins.scss */
#block-views-home-recent-blog-posts-block .view-footer a:hover {
  text-decoration: underline;
}
/* line 93, ../sass/_mixins.scss */
#block-views-home-recent-blog-posts-block .view-footer a a {
  color: #fff;
  text-decoration: none;
}
/* line 49, ../sass/_mixins.scss */
#block-views-home-recent-blog-posts-block .view-footer a a:hover {
  text-decoration: underline;
}
/* line 97, ../sass/_mixins.scss */
#block-views-home-recent-blog-posts-block .view-footer a:hover {
  background: #fc9700;
  border-color: #fc9700;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}
/* line 25, ../sass/components/_home_blog_posts.scss */
#block-views-home-recent-blog-posts-block .view-footer a:first-child {
  margin-right: 12px;
}

/* line 1, ../sass/components/_home_video.scss */
.home-video-wrapper {
  background: rgba(0, 0, 0, 0.3);
  margin-left: -20px;
  margin-right: -20px;
  padding: 40px 20px;
}

/* line 8, ../sass/components/_home_video.scss */
#block-otto-theme-otto-theme-home-video {
  overflow: hidden;
  *zoom: 1;
}
@media all and (min-width: 740px) {
  /* line 11, ../sass/components/_home_video.scss */
  #block-otto-theme-otto-theme-home-video h2.block-title, #block-otto-theme-otto-theme-home-video .video-title, #block-otto-theme-otto-theme-home-video .body {
    width: 49.15254%;
    float: left;
    margin-right: 1.69492%;
  }
  /* line 14, ../sass/components/_home_video.scss */
  #block-otto-theme-otto-theme-home-video iframe {
    width: 49.15254%;
    float: right;
    margin-right: 0;
  }
}
@media all and (min-width: 980px) {
  /* line 19, ../sass/components/_home_video.scss */
  #block-otto-theme-otto-theme-home-video h2.block-title {
    margin-top: 20px;
  }
  /* line 22, ../sass/components/_home_video.scss */
  #block-otto-theme-otto-theme-home-video h2.block-title, #block-otto-theme-otto-theme-home-video .video-title, #block-otto-theme-otto-theme-home-video .body {
    padding-right: 60px;
  }
}
@media all and (min-width: 1220px) {
  /* line 27, ../sass/components/_home_video.scss */
  #block-otto-theme-otto-theme-home-video h2.block-title, #block-otto-theme-otto-theme-home-video .video-title, #block-otto-theme-otto-theme-home-video .body {
    padding-right: 100px;
  }
}
/* line 31, ../sass/components/_home_video.scss */
#block-otto-theme-otto-theme-home-video h2.block-title {
  font-family: 'bird_expomedium';
  font-size: 20px;
  line-height: 28px;
  color: #fc9700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}
@media all and (min-width: 740px) {
  /* line 31, ../sass/components/_home_video.scss */
  #block-otto-theme-otto-theme-home-video h2.block-title {
    text-align: left;
  }
}
/* line 37, ../sass/components/_home_video.scss */
#block-otto-theme-otto-theme-home-video .video-title {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #fff;
}
/* line 41, ../sass/components/_home_video.scss */
#block-otto-theme-otto-theme-home-video .body {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  color: #fff;
}
/* line 45, ../sass/components/_home_video.scss */
#block-otto-theme-otto-theme-home-video iframe {
  max-width: 100%;
  position: relative;
}

/* line 1, ../sass/components/_home_about.scss */
.home-about-wrapper {
  background: url(../images/home-about-bg.jpg);
  margin-left: -20px;
  margin-right: -20px;
  padding: 15px 20px 0 20px;
}

/* line 8, ../sass/components/_home_about.scss */
#block-block-8 {
  overflow: hidden;
  *zoom: 1;
  margin-bottom: 0;
}
/* line 11, ../sass/components/_home_about.scss */
#block-block-8 h2.block-title {
  text-align: center;
  font-family: 'bird_expomedium';
  font-size: 20px;
  line-height: 25px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
/* line 18, ../sass/components/_home_about.scss */
#block-block-8 .file-image {
  line-height: 0;
}
/* line 21, ../sass/components/_home_about.scss */
#block-block-8 p {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
}
/* line 25, ../sass/components/_home_about.scss */
#block-block-8 a {
  display: inline-block;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  font-family: 'bird_expomedium';
  font-size: 13px;
  line-height: 13px;
  padding: 15px 30px 13px 30px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid #fff;
}
/* line 49, ../sass/_mixins.scss */
#block-block-8 a:hover {
  text-decoration: underline;
}
/* line 93, ../sass/_mixins.scss */
#block-block-8 a a {
  color: #fff;
  text-decoration: none;
}
/* line 49, ../sass/_mixins.scss */
#block-block-8 a a:hover {
  text-decoration: underline;
}
/* line 97, ../sass/_mixins.scss */
#block-block-8 a:hover {
  background: #fc9700;
  border-color: #fc9700;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}
@media all and (min-width: 740px) {
  /* line 29, ../sass/components/_home_about.scss */
  #block-block-8 .file-image {
    width: 43.03797%;
    float: left;
    margin-right: 1.26582%;
  }
  /* line 32, ../sass/components/_home_about.scss */
  #block-block-8 h2.block-title, #block-block-8 p {
    width: 55.6962%;
    float: right;
    margin-right: 0;
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
  }
  /* line 38, ../sass/components/_home_about.scss */
  #block-block-8 h2.block-title {
    margin-bottom: 0;
    margin-top: 40px;
  }
}

/* line 45, ../sass/components/_home_about.scss */
#block-block-18 {
  position: relative;
  margin: 0 -20px;
}
/* line 49, ../sass/components/_home_about.scss */
#block-block-18 img {
  display: block;
}
/* line 53, ../sass/components/_home_about.scss */
#block-block-18 .label {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 28px;
  background: #223440;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  padding: 1em;
  margin: 0;
}
/* line 63, ../sass/components/_home_about.scss */
#block-block-18 .text-wrapper {
  background: #223440;
  color: #fff;
  padding: 1em;
}
@media all and (min-width: 740px) {
  /* line 63, ../sass/components/_home_about.scss */
  #block-block-18 .text-wrapper {
    position: absolute;
    top: 40%;
    right: 0;
    background: rgba(34, 52, 64, 0.8);
  }
}
/* line 75, ../sass/components/_home_about.scss */
#block-block-18 .text-wrapper .title {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  line-height: 28px;
  text-transform: uppercase;
}
/* line 80, ../sass/components/_home_about.scss */
#block-block-18 .text-wrapper .text {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  line-height: 28px;
}
/* line 84, ../sass/components/_home_about.scss */
#block-block-18 .text-wrapper a {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 28px;
  display: inline-block;
  background: #f5c837;
  color: #223440;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.5em 1em;
}

/* line 1, ../sass/components/_footer.scss */
.footer-wrapper {
  min-height: 100px;
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: -1px;
  padding-top: 20px;
  overflow: hidden;
  *zoom: 1;
  background: rgba(0, 0, 0, 0.3);
}
/* line 10, ../sass/components/_footer.scss */
.footer-wrapper #block-menu-block-3 {
  text-align: center;
}
/* line 12, ../sass/components/_footer.scss */
.footer-wrapper #block-menu-block-3 ul {
  list-style-type: none;
}
/* line 14, ../sass/components/_footer.scss */
.footer-wrapper #block-menu-block-3 ul li {
  list-style-image: none;
  display: inline;
}
/* line 17, ../sass/components/_footer.scss */
.footer-wrapper #block-menu-block-3 ul li a {
  display: inline-block;
  font-family: 'bird_expomedium';
  font-size: 12px;
  line-height: 20px;
  color: #fc9700;
  text-transform: uppercase;
  text-decoration: none;
  padding-right: 15px;
  border-right: 1px solid #3c3c3c;
  margin-right: 15px;
}
/* line 49, ../sass/_mixins.scss */
.footer-wrapper #block-menu-block-3 ul li a:hover {
  text-decoration: underline;
}
/* line 27, ../sass/components/_footer.scss */
.footer-wrapper #block-menu-block-3 ul li:last-child a {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
/* line 37, ../sass/components/_footer.scss */
.footer-wrapper #block-block-17 {
  float: right;
}
/* line 39, ../sass/components/_footer.scss */
.footer-wrapper #block-block-17 h2.block-title {
  display: inline;
  font-family: 'bird_expomedium';
  font-size: 12px;
  line-height: 12px;
  text-transform: uppercase;
  color: #fff;
}
/* line 45, ../sass/components/_footer.scss */
.footer-wrapper #block-block-17 p {
  float: right;
  margin: 0 1em;
}
/* line 52, ../sass/components/_footer.scss */
.footer-wrapper #block-otto-theme-otto-theme-addthis {
  text-align: center;
  margin-bottom: 60px;
}
/* line 55, ../sass/components/_footer.scss */
.footer-wrapper #block-otto-theme-otto-theme-addthis h2.block-title {
  display: inline;
  font-family: 'bird_expomedium';
  font-size: 12px;
  line-height: 12px;
  text-transform: uppercase;
  color: #fff;
}
/* line 61, ../sass/components/_footer.scss */
.footer-wrapper #block-otto-theme-otto-theme-addthis .addthis_sharing_toolbox {
  display: inline;
}
/* line 63, ../sass/components/_footer.scss */
.footer-wrapper #block-otto-theme-otto-theme-addthis .addthis_sharing_toolbox .at4-show {
  display: inline-block !important;
  position: relative;
  margin-left: 10px;
}
/* line 72, ../sass/components/_footer.scss */
.footer-wrapper #block-otto-theme-otto-theme-bartlett {
  text-align: center;
  margin-bottom: 40px;
}
/* line 75, ../sass/components/_footer.scss */
.footer-wrapper #block-otto-theme-otto-theme-bartlett .bartlett, .footer-wrapper #block-otto-theme-otto-theme-bartlett .bartlett a {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
  color: #3c3c3c;
}
/* line 79, ../sass/components/_footer.scss */
.footer-wrapper #block-otto-theme-otto-theme-bartlett .bartlett a {
  text-decoration: none;
}
/* line 49, ../sass/_mixins.scss */
.footer-wrapper #block-otto-theme-otto-theme-bartlett .bartlett a:hover {
  text-decoration: underline;
}
@media all and (min-width: 650px) {
  /* line 1, ../sass/components/_footer.scss */
  .footer-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
  /* line 87, ../sass/components/_footer.scss */
  .footer-wrapper #block-menu-block-3 {
    float: left;
    text-align: left;
  }
  /* line 91, ../sass/components/_footer.scss */
  .footer-wrapper #block-otto-theme-otto-theme-addthis {
    text-align: left;
    float: right;
    margin-bottom: 60px;
  }
  /* line 96, ../sass/components/_footer.scss */
  .footer-wrapper #block-otto-theme-otto-theme-bartlett {
    text-align: right;
    float: right;
    margin-bottom: 30px;
    clear: right;
  }
}

/* line 2, ../sass/components/_page.scss */
.not-front h1#page-title {
  font-family: 'bird_expomedium';
  font-size: 20px;
  line-height: 28px;
  color: #fc9700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
  text-align: left;
}
/* line 6, ../sass/components/_page.scss */
.not-front #content {
  padding-top: 40px;
  padding-bottom: 100px;
}
@media all and (min-width: 980px) {
  /* line 6, ../sass/components/_page.scss */
  .not-front #content {
    padding-right: 15%;
  }
}
/* line 13, ../sass/components/_page.scss */
.not-front article.node {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  line-height: 32px;
  font-weight: 300;
  color: #fff;
}
/* line 139, ../sass/_mixins.scss */
.not-front article.node a {
  color: #fc9700;
  text-decoration: none;
}
/* line 49, ../sass/_mixins.scss */
.not-front article.node a:hover {
  text-decoration: underline;
}
/* line 143, ../sass/_mixins.scss */
.not-front article.node strong {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  line-height: 32px;
  font-weight: 700;
}
/* line 147, ../sass/_mixins.scss */
.not-front article.node table td {
  padding: 10px;
}
/* line 150, ../sass/_mixins.scss */
.not-front article.node table td, .not-front article.node table th {
  border: 1px solid #fff;
}
/* line 154, ../sass/_mixins.scss */
.not-front article.node h2 {
  font-size: 24px;
  line-height: 28px;
  color: #888;
}
/* line 159, ../sass/_mixins.scss */
.not-front article.node h3 {
  font-size: 20px;
  line-height: 24px;
  color: #8ab4c3;
  margin-bottom: -10px;
}
@media all and (min-width: 980px) {
  /* line 165, ../sass/_mixins.scss */
  .not-front article.node img.row {
    float: left;
    width: 25%;
    padding-right: 20px;
  }
}
/* line 172, ../sass/_mixins.scss */
.not-front article.node input[type=submit] {
  display: inline-block;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  font-family: 'bird_expomedium';
  font-size: 13px;
  line-height: 13px;
  padding: 15px 30px 13px 30px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid #fff;
}
/* line 49, ../sass/_mixins.scss */
.not-front article.node input[type=submit]:hover {
  text-decoration: underline;
}
/* line 93, ../sass/_mixins.scss */
.not-front article.node input[type=submit] a {
  color: #fff;
  text-decoration: none;
}
/* line 49, ../sass/_mixins.scss */
.not-front article.node input[type=submit] a:hover {
  text-decoration: underline;
}
/* line 97, ../sass/_mixins.scss */
.not-front article.node input[type=submit]:hover {
  background: #fc9700;
  border-color: #fc9700;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}
/* line 175, ../sass/_mixins.scss */
.not-front article.node hr {
  border-width: 0;
  height: 1px;
  background: #555;
  border: none;
}
/* line 182, ../sass/_mixins.scss */
.not-front article.node ol li {
  margin-bottom: 10px;
}
/* line 186, ../sass/_mixins.scss */
.not-front article.node a.orange-button {
  display: inline-block;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  font-family: 'bird_expomedium';
  font-size: 13px;
  line-height: 13px;
  padding: 15px 30px 13px 30px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid #fc9700;
  background: #fc9700;
}
/* line 49, ../sass/_mixins.scss */
.not-front article.node a.orange-button:hover {
  text-decoration: underline;
}
/* line 116, ../sass/_mixins.scss */
.not-front article.node a.orange-button a {
  color: #fff;
  text-decoration: none;
}
/* line 49, ../sass/_mixins.scss */
.not-front article.node a.orange-button a:hover {
  text-decoration: underline;
}
/* line 189, ../sass/_mixins.scss */
.not-front article.node a.blue-button {
  display: inline-block;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  font-family: 'bird_expomedium';
  font-size: 13px;
  line-height: 13px;
  padding: 15px 30px 13px 30px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid #fc9700;
  background: #fc9700;
  border-color: #8ab4c3;
  background: #8ab4c3;
}
/* line 49, ../sass/_mixins.scss */
.not-front article.node a.blue-button:hover {
  text-decoration: underline;
}
/* line 116, ../sass/_mixins.scss */
.not-front article.node a.blue-button a {
  color: #fff;
  text-decoration: none;
}
/* line 49, ../sass/_mixins.scss */
.not-front article.node a.blue-button a:hover {
  text-decoration: underline;
}
/* line 17, ../sass/components/_page.scss */
.not-front article.node .field-name-field-images .field-item {
  text-align: center;
  margin-bottom: 20px;
}
@media all and (min-width: 740px) {
  /* line 17, ../sass/components/_page.scss */
  .not-front article.node .field-name-field-images .field-item {
    width: 23.72881%;
    float: left;
    margin-right: 1.69492%;
  }
  /* line 22, ../sass/components/_page.scss */
  .not-front article.node .field-name-field-images .field-item:nth-child(4n + 4) {
    width: 23.72881%;
    float: right;
    margin-right: 0;
  }
}

/* line 2, ../sass/components/_contact_page.scss */
.page-node-15 #content {
  padding-right: 0 !important;
}
/* line 4, ../sass/components/_contact_page.scss */
.page-node-15 #content input[type=text], .page-node-15 #content input[type=email] {
  clear: both;
  display: block;
}

/* line 2, ../sass/components/_sidebar.scss */
#block-menu-block-4 {
  overflow: hidden;
  *zoom: 1;
  margin-bottom: 40px;
}
/* line 6, ../sass/components/_sidebar.scss */
#block-menu-block-4 .menu-block-wrapper > ul.menu {
  padding: 0;
}
/* line 9, ../sass/components/_sidebar.scss */
#block-menu-block-4 .menu-block-wrapper > ul.menu > li {
  display: none;
}
/* line 12, ../sass/components/_sidebar.scss */
#block-menu-block-4 .menu-block-wrapper > ul.menu > li:first-child {
  display: block;
  list-style-type: none;
  list-style-image: none;
}
/* line 17, ../sass/components/_sidebar.scss */
#block-menu-block-4 .menu-block-wrapper > ul.menu > li:first-child > a {
  display: none;
}
/* line 21, ../sass/components/_sidebar.scss */
#block-menu-block-4 .menu-block-wrapper > ul.menu > li:first-child ul.menu {
  padding: 0;
}
/* line 23, ../sass/components/_sidebar.scss */
#block-menu-block-4 .menu-block-wrapper > ul.menu > li:first-child ul.menu li {
  list-style-type: none;
  list-style-image: none;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  line-height: 21px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid #555555;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
/* line 49, ../sass/_mixins.scss */
#block-menu-block-4 .menu-block-wrapper > ul.menu > li:first-child ul.menu li:hover {
  text-decoration: underline;
}
/* line 33, ../sass/components/_sidebar.scss */
#block-menu-block-4 .menu-block-wrapper > ul.menu > li:first-child ul.menu li a {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  line-height: 21px;
  font-weight: 400;
  text-decoration: none;
  color: #fff;
}
/* line 49, ../sass/_mixins.scss */
#block-menu-block-4 .menu-block-wrapper > ul.menu > li:first-child ul.menu li a:hover {
  text-decoration: underline;
}
/* line 37, ../sass/components/_sidebar.scss */
#block-menu-block-4 .menu-block-wrapper > ul.menu > li:first-child ul.menu li a:before {
  content: url(../images/sidebar-menu-arrow.png);
  margin-right: 20px;
}

/* line 50, ../sass/components/_sidebar.scss */
#block-block-10 {
  margin-bottom: 40px;
  overflow: hidden;
  *zoom: 1;
}
/* line 53, ../sass/components/_sidebar.scss */
#block-block-10 h2.block-title {
  font-family: 'bird_expomedium';
  font-size: 18px;
  line-height: 20px;
  color: #fc9700;
  text-transform: uppercase;
  width: 49.15254%;
  float: right;
  margin-right: 0;
  margin-bottom: -10px;
  margin-top: 15px;
}
/* line 61, ../sass/components/_sidebar.scss */
#block-block-10 p {
  width: 49.15254%;
  float: right;
  margin-right: 0;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
}
/* line 65, ../sass/components/_sidebar.scss */
#block-block-10 p a {
  color: #fff;
  text-decoration: none;
}
/* line 49, ../sass/_mixins.scss */
#block-block-10 p a:hover {
  text-decoration: underline;
}
/* line 70, ../sass/components/_sidebar.scss */
#block-block-10 div {
  width: 49.15254%;
  float: left;
  margin-right: 1.69492%;
}
/* line 72, ../sass/components/_sidebar.scss */
#block-block-10 div img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

/* line 1, ../sass/components/_inner_billboards.scss */
.region-preface .block-block {
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: 0;
  height: 200px;
  margin-top: 15px;
}
/* line 7, ../sass/components/_inner_billboards.scss */
.region-preface .block-block p {
  display: none;
}
/* line 12, ../sass/components/_inner_billboards.scss */
.region-preface .block-block .media .contextual-links {
  display: none;
}
/* line 16, ../sass/components/_inner_billboards.scss */
.region-preface .block-block .title-wrapper {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
/* line 12, ../sass-extensions/susy/sass/susy/output/support/_clearfix.scss */
.region-preface .block-block .title-wrapper:after {
  content: " ";
  display: block;
  clear: both;
}
@media all and (min-width: 1220px) {
  /* line 16, ../sass/components/_inner_billboards.scss */
  .region-preface .block-block .title-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
/* line 25, ../sass/components/_inner_billboards.scss */
.region-preface .block-block .title-wrapper h2.block-title {
  position: absolute;
  bottom: 25px;
  display: inline-block;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  padding: 10px 30px 10px 30px;
  color: #adadad;
  text-transform: uppercase;
  border: 1px solid #adadad;
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}
@media all and (min-width: 740px) {
  /* line 1, ../sass/components/_inner_billboards.scss */
  .region-preface .block-block {
    height: 270px;
  }
}
