/**
 * @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(//fonts.googleapis.com/css?family=Adamina);
@import url(//fonts.googleapis.com/css?family=Roboto:300,300italic,700,700italic,500,500italic);
/* line 7, ../sass/base/_base.scss */
* {
  -webkit-box-sizing: "border-box";
  -moz-box-sizing: "border-box";
  box-sizing: "border-box";
}

/* line 15, ../sass/base/_base.scss */
body {
  font-size: 16px;
  /* Set to 16 as default font because 10 just ain't right. */
  line-height: 24px;
  line-height: 1.75em;
  min-width: 320px;
  color: #333;
}
@media (max-width: 1023px) {
  /* line 22, ../sass/base/_base.scss */
  body.noscroll {
    overflow: hidden;
    height: 100%;
    width: 100%;
    position: fixed;
  }
}

/* line 91, ../sass/base/_mixins.scss */
.inner-wrapper {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding:20px 20px;
}
/* line 20, ../sass/bourbon/addons/_clearfix.scss */
.inner-wrapper:after {
  clear: both;
  content: "";
  display: table;
}
@media (max-width: 500px) {
  /* line 91, ../sass/base/_mixins.scss */
  .inner-wrapper {
    margin-left: 20px;
    margin-right: 20px;
    max-width: none;
  }
}
@media (min-width: 501px) and (max-width: 760px) {
  /* line 91, ../sass/base/_mixins.scss */
  .inner-wrapper {
    margin-left: 20px;
    margin-right: 20px;
    max-width: none;
  }
}
@media (min-width: 761px) and (max-width: 1023px) {
  /* line 91, ../sass/base/_mixins.scss */
  .inner-wrapper {
    max-width: 700px;
  }
}
@media (min-width: 1440px) {
  /* line 91, ../sass/base/_mixins.scss */
  .inner-wrapper {
    max-width: 1180px;
  }
}

/**
 * Accessibility features.
 */
/* element-invisible as defined by http://snook.ca/archives/html_and_css/hiding-content-for-accessibility */
/* line 6, ../sass/base/_accessibility.scss */
.element-invisible,
.element-focusable,
.screen-reader-text {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

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

/* Default WordPress screen reader style */
/* line 28, ../sass/base/_accessibility.scss */
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  color: #21759b;
  display: block;
  font-weight: bold;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  position: absolute !important;
  text-decoration: none;
  top: 5px;
  z-index: 100000;
}

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

/*
 * Removing focus from content so that skip-link fix does not always highlight main container when any content is clicked
 */
/* line 65, ../sass/base/_accessibility.scss */
#content {
  outline: none;
}

/* Fonts */
@font-face {
  font-family: 'captainicon';
  src: url("fonts/captainicon/captainicon.eot?-1i2a56");
  src: url("fonts/captainicon/captainicon.eot?#iefix-1i2a56") format("embedded-opentype"), url("fonts/captainicon/captainicon.woff?-1i2a56") format("woff"), url("fonts/captainicon/captainicon.ttf?-1i2a56") format("truetype"), url("fonts/captainicon/captainicon.svg?-1i2a56#captainicon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* line 34, ../sass/base/_fonts.scss */
[class^="icon-"], [class*=" icon-"] {
  font-family: 'captainicon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/**
 * @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/base/_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/base/_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/base/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* Address styling not present in IE 8/9. */
/* line 54, ../sass/base/_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/base/_normalize.scss */
html {
  font-family: "Lato", sans-serif;
  /* 1 */
  font-size: 62.5%;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  line-height: 24px;
  line-height: 2.4rem;
}

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

/* Improve readability when focused and also mouse hovered in all browsers. */
/* line 139, ../sass/base/_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 155, ../sass/base/_normalize.scss */
p,
pre {
  margin: 2.4rem 0;
}

/* line 159, ../sass/base/_normalize.scss */
blockquote {
  /* Also indent the quote on both sides. */
  margin: 2.4rem 30px;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 168, ../sass/base/_normalize.scss */
h1 {
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 48px;
  line-height: 4.8rem;
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
  margin-bottom: 24px;
  margin-bottom: 2.4rem;
}

/* line 176, ../sass/base/_normalize.scss */
h2 {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 48px;
  line-height: 4.8rem;
  margin-bottom: 24px;
  margin-bottom: 2.4rem;
}

/* line 181, ../sass/base/_normalize.scss */
h3 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 24px;
  line-height: 2.4rem;
  margin-bottom: 24px;
  margin-bottom: 2.4rem;
}

/* line 186, ../sass/base/_normalize.scss */
h4 {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
  line-height: 2.4rem;
  margin-bottom: 24px;
  margin-bottom: 2.4rem;
}

/* line 191, ../sass/base/_normalize.scss */
h5 {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 24px;
  line-height: 2.4rem;
  margin-bottom: 24px;
  margin-bottom: 2.4rem;
}

/* line 196, ../sass/base/_normalize.scss */
h6 {
  font-size: 10px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 2.4rem;
  margin-bottom: 24px;
  margin-bottom: 2.4rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * Lists
 */
/* line 277, ../sass/base/_normalize.scss */
dl,
menu,
ol,
ul {
  /* Address margins set differently in IE 6/7. */
  margin: 2.4rem 0;
}

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

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

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

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
/* line 309, ../sass/base/_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 324, ../sass/base/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

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

/**
 * Forms
 */
/* Define consistent border, margin, and padding. */
/* line 339, ../sass/base/_normalize.scss */
fieldset {
  margin: 0 2px;
  /* Apply borders and padding that keep the vertical rhythm. */
  border-color: #c0c0c0;
  border-top-width: 1px;
  border-top-width: 0.1rem;
  border-top-style: solid;
  padding-top: 7px;
  padding-top: 0.74rem;
  border-bottom-width: 1px;
  border-bottom-width: 0.1rem;
  border-bottom-style: solid;
  padding-bottom: 15px;
  padding-bottom: 1.46rem;
  border-left-width: 1px;
  border-left-width: 0.1rem;
  border-left-style: solid;
  padding-left: 15px;
  padding-left: 1.46rem;
  border-right-width: 1px;
  border-right-width: 0.1rem;
  border-right-style: solid;
  padding-right: 15px;
  padding-right: 1.46rem;
}

/**
 * 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 354, ../sass/base/_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 366, ../sass/base/_normalize.scss */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
  max-width: 100%;
  /* 5 */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 5 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 381, ../sass/base/_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 392, ../sass/base/_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 406, ../sass/base/_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 417, ../sass/base/_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 428, ../sass/base/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-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 439, ../sass/base/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
  -moz-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 448, ../sass/base/_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 454, ../sass/base/_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 464, ../sass/base/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

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

/**
 * Tables
 */
/* line 478, ../sass/base/_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: 24px;
  margin-top: 2.4rem;
  margin-bottom: 24px;
  margin-bottom: 2.4rem;
}

/* line 2, ../sass/base/_typography.scss */
h1 {
  color: #034F9D;
  font-weight: 300;
  margin-top: .4em;
  font-size: 36px;
  font-size: 3.6rem;
}
@media (min-width: 761px) {
  /* line 2, ../sass/base/_typography.scss */
  h1 {
    font-size: 48px;
    font-size: 4.8rem;
  }
}

/* line 11, ../sass/base/_typography.scss */
h2 {
  color: #D5534E;
  font-weight: 300;
  font-size: 24px;
  font-size: 2.4rem;
}
@media (min-width: 761px) {
  /* line 11, ../sass/base/_typography.scss */
  h2 {
    font-size: 32px;
    font-size: 3.2rem;
  }
}

/* line 19, ../sass/base/_typography.scss */
.page-header {
  border-bottom: 1px solid #A2A2A2;
  padding-bottom: 9px;
  margin: 40px 0 20px;
}
/* line 23, ../sass/base/_typography.scss */
.page-header h2 {
  color: #6d6e71;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1;
  padding: 0;
  margin: 0;
  text-transform: uppercase;
}

/* line 33, ../sass/base/_typography.scss */
a {
  color: #034F9D;
  text-decoration: none;
}

/* line 37, ../sass/base/_typography.scss */
blockquote {
  border-left: 1px solid #ccc;
  padding-left: 30px;
  font-size: 1.13em;
}

/* line 43, ../sass/base/_typography.scss */
.intro {
  font-size: 1.25em;
  line-height: 1.75em;
}

/* Layout rules */
/**
 * @file
 * Positioning for a responsive layout.
 *
 * Define CSS classes to create a fluid grid layout with optional sidebars
 * depending on whether blocks are placed in the left or right sidebars.
 *
 * This layout uses the SingularityGS
 */
/**
 * Center the page.
 *
 * For screen sizes larger than 1200px, prevent excessively long lines of text
 * by setting a max-width.
 */
@media (min-width: 1024px) {
  /* line 24, ../sass/layouts/_layout-base.scss */
  .home #primary .inner-wrapper {
    padding: 0 0 15em;
  }
}

/* LAYOUT FOR MOBILE MENU */
@media (max-width: 1023px) {
  /* line 32, ../sass/layouts/_layout-base.scss */
  #content,
  #footer,
  #region-bottom {
    position: relative;
    left: 0;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  /* line 38, ../sass/layouts/_layout-base.scss */
  .menu-active #content, .menu-active
  #footer, .menu-active
  #region-bottom {
    left: -255px;
    opacity: 0.2;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
  }
}
/**
 * The layout when there are no sidebars.
 */
/* line 10, ../sass/layouts/_no-sidebars.scss */
.no-sidebars {
  /* Span 3 columns, starting in 2nd column from left. */
}
/* line 12, ../sass/layouts/_no-sidebars.scss */
.no-sidebars #primary {
  width: 70.90909%;
  float: left;
  margin-right: -100%;
  margin-left: 7.27273%;
  clear: none;
}

/**
 * The layout when there is only one sidebar, the left one.
 */
/**
 * Use 5 grid columns for larger screens.
 */
/* line 13, ../sass/layouts/_sidebar-first.scss */
.sidebar-first {
  /* Span 4 columns, starting in 2nd column from left. */
  /* Span 1 column, starting in 1st column from left. */
}
/* line 15, ../sass/layouts/_sidebar-first.scss */
.sidebar-first #primary {
  width: 70.37037%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: none;
}
/* line 20, ../sass/layouts/_sidebar-first.scss */
.sidebar-first .sidebar-first {
  width: 25.92593%;
  float: left;
  margin-right: -100%;
  margin-left: 0;
  clear: none;
}

@media (max-width: 1023px) {
  /* line 28, ../sass/layouts/_sidebar-first.scss */
  .sidebar-first #primary {
    float: none;
    width: auto;
  }
  /* line 33, ../sass/layouts/_sidebar-first.scss */
  .sidebar-first .sidebar-first {
    float: none;
    width: auto;
  }
}
/**
 * The layout when there is only one sidebar, the right one.
 */
/**
 * Use 5 grid columns for larger screens.
 */
/* line 13, ../sass/layouts/_sidebar-second.scss */
.sidebar-second {
  /* Span 4 columns, starting in 1st column from left. */
  /* Span 1 column, starting in 5th column from left. */
}
/* line 15, ../sass/layouts/_sidebar-second.scss */
.sidebar-second #primary {
  width: 56.36364%;
  float: left;
  margin-right: -100%;
  margin-left: 0;
  clear: none;
}
/* line 20, ../sass/layouts/_sidebar-second.scss */
.sidebar-second .sidebar-second {
  width: 34.54545%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: none;
}

@media (max-width: 1023px) {
  /* line 27, ../sass/layouts/_sidebar-second.scss */
  .sidebar-second {
    /* Span 4 columns, starting in 1st column from left. */
    /* Span 1 column, starting in 5th column from left. */
  }
  /* line 29, ../sass/layouts/_sidebar-second.scss */
  .sidebar-second #primary {
    float: none;
    width: auto;
  }
  /* line 35, ../sass/layouts/_sidebar-second.scss */
  .sidebar-second .sidebar-second {
    float: none;
    width: auto;
  }
}
/**
 * The layout when there are two sidebars.
 */
/**
 * Use 3 grid columns for smaller screens.
 */
@media (min-width: 1024px) {
  /* line 16, ../sass/layouts/_two-sidebars.scss */
  .two-sidebars {
    /* Span 3 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 5th column from left. */
  }
  /* line 18, ../sass/layouts/_two-sidebars.scss */
  .two-sidebars #primary {
    width: 56.36364%;
    float: left;
    margin-right: -100%;
    margin-left: 7.27273%;
    clear: none;
  }
  /* line 23, ../sass/layouts/_two-sidebars.scss */
  .two-sidebars .sidebars {
    width: 27.27273%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }
}
@media (min-width: 1440px) {
  /* line 36, ../sass/layouts/_two-sidebars.scss */
  .two-sidebars {
    /* Span 3 columns, starting in 2nd column from left. */
  }
  /* line 38, ../sass/layouts/_two-sidebars.scss */
  .two-sidebars #primary {
    width: 49.09091%;
    float: left;
    margin-right: -100%;
    margin-left: 21.81818%;
    clear: none;
  }
  /* line 42, ../sass/layouts/_two-sidebars.scss */
  .two-sidebars .sidebars {
    float: none;
    width: auto;
    margin: 0;
    /* Span 1 column, starting in 1st column from left. */
    /* Span 1 column, starting in 5th column from left. */
  }
  /* line 48, ../sass/layouts/_two-sidebars.scss */
  .two-sidebars .sidebars .sidebar-first {
    width: 20%;
    float: left;
    margin-right: -100%;
    margin-left: 0;
    clear: none;
  }
  /* line 53, ../sass/layouts/_two-sidebars.scss */
  .two-sidebars .sidebars .sidebar-second {
    width: 27.27273%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }
}
/* Components */
/**
 * Blocks.
 */
/* Block wrapper. */
/* line 6, ../sass/components/_block.scss */
.block {
  margin-bottom: 2.4rem;
  position: relative;
}

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

/* line 1, ../sass/components/_carousel.scss */
.owl-theme .owl-controls {
  margin-top: 0;
  height: 0;
}
/* line 6, ../sass/components/_carousel.scss */
.owl-theme .owl-controls .owl-buttons div,
.owl-theme .owl-controls .owl-nav div {
  padding: 0;
  opacity: 0.85;
}
/* line 10, ../sass/components/_carousel.scss */
.owl-theme .owl-controls .owl-buttons .owl-prev,
.owl-theme .owl-controls .owl-buttons .owl-next,
.owl-theme .owl-controls .owl-nav .owl-prev,
.owl-theme .owl-controls .owl-nav .owl-next {
  top: 50%;
  left: 10px;
  position: absolute;
  width: 24px;
  height: 42px;
  text-indent: -8765em;
  overflow: hidden;
  background: url(../images/build/nav-carousel.png) left 2px no-repeat;
}
/* line 21, ../sass/components/_carousel.scss */
.owl-theme .owl-controls .owl-buttons .owl-next,
.owl-theme .owl-controls .owl-nav .owl-next {
  left: auto !important;
  right: 10px;
  background: url(../images/build/nav-carousel.png) -25px 2px no-repeat;
}
/* line 25, ../sass/components/_carousel.scss */
.owl-theme .owl-controls .owl-buttons .owl-next.disabled,
.owl-theme .owl-controls .owl-nav .owl-next.disabled {
  top: -8765em !important;
}
/* line 30, ../sass/components/_carousel.scss */
.owl-theme .owl-controls .owl-buttons .owl-prev.disabled,
.owl-theme .owl-controls .owl-nav .owl-prev.disabled {
  top: -8765em !important;
}
/* line 35, ../sass/components/_carousel.scss */
.owl-theme .owl-controls .owl-pagination {
  position: relative;
  top: -3em;
  z-index: 10;
}

/* line 2, ../sass/components/_form.scss */
#content form {
  background: #EEEEEE;
  padding: 20px;
}
/* line 5, ../sass/components/_form.scss */
#content form .text-input,
#content form .text-area,
#content form .select-list {
  margin-bottom: 10px;
  border: none;
}
/* line 12, ../sass/components/_form.scss */
#content form select {
  background-color: #FFF;
  border: none;
  color: #666;
  display: block;
  height: 37px;
  line-height: 36px;
  overflow: hidden;
  padding: 0 0 0 8px;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}
/* line 26, ../sass/components/_form.scss */
#content form input[type="radio"],
#content form input[type="checkbox"] {
  display: none;
}
/* line 29, ../sass/components/_form.scss */
#content form input[type="radio"] + label,
#content form input[type="checkbox"] + label {
  cursor: pointer;
  position: relative;
}
/* line 32, ../sass/components/_form.scss */
#content form input[type="radio"] + label:before,
#content form input[type="checkbox"] + label:before {
  background: #FFF;
  content: '';
  display: inline-block;
  height: 25px;
  margin: 0 .5em 0 0;
  vertical-align: sub;
  width: 25px;
}
/* line 47, ../sass/components/_form.scss */
#content form input[type="checkbox"]:checked + label:after {
  border: 3px solid #D5534E;
  border-top: none;
  border-right: none;
  content: '';
  height: 4px;
  left: 7px;
  position: absolute;
  top: 8px;
  width: 8px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* line 65, ../sass/components/_form.scss */
#content form input[type="radio"] + label:before {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}
/* line 71, ../sass/components/_form.scss */
#content form input[type="radio"]:checked + label:after {
  background: #D5534E;
  content: '';
  display: block;
  height: 12px;
  left: 7px;
  position: absolute;
  top: 7px;
  width: 12px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}
/* line 86, ../sass/components/_form.scss */
#content form input[type="text"],
#content form input[type="password"],
#content form input[type="email"],
#content form textarea {
  width: 100%;
  max-width: 100%;
  color: #666;
  padding-left: 8px;
  padding-top: 6px;
  padding-bottom: 6px;
  border: none;
}
/* line 99, ../sass/components/_form.scss */
#content form textarea {
  min-height: 124px;
  border: none;
}
/* line 108, ../sass/components/_form.scss */
#content form .btn-default {
  color: #FFF;
  background-color: #D5534E;
  border-radius: 0 !important;
  border: none;
  font-size: 18px;
  letter-spacing: .05em;
  padding: 6px 12px;
  text-transform: uppercase;
  width: 100%;
}
@media (max-width: 1023px) {
  /* line 108, ../sass/components/_form.scss */
  #content form .btn-default {
    margin-top: 1em;
    margin-bottom: 1em;
  }
}
/* line 122, ../sass/components/_form.scss */
#content form .btn-default:hover, #content form .btn-default:focus {
  background-color: #D5534E;
  opacity: .8;
  color: #FFF;
}
/* line 129, ../sass/components/_form.scss */
#content form .search-submit {
  background: transparent url("../images/build/search-button.png") no-repeat left bottom;
  border: none;
  display: inline-block;
  height: 25px;
  margin: 0;
  overflow: hidden;
  position: relative;
  right: 3px;
  text-indent: -999em;
  top: 1px;
  width: 25px;
}

/* COLOR PALETTE */
/* line 147, ../sass/components/_form.scss */
.square {
  float: left;
  margin: 0 1% 1% 0;
  overflow: hidden;
  padding-bottom: 8%;
  position: relative;
  width: 10%;
}
/* line 154, ../sass/components/_form.scss */
.square.gd-blue {
  background: #034F9D;
}
/* line 157, ../sass/components/_form.scss */
.square.gd-gray {
  background: #6d6e71;
}
/* line 160, ../sass/components/_form.scss */
.square.gd-green {
  background: #BAAD3E;
}
/* line 163, ../sass/components/_form.scss */
.square.gd-red {
  background: #D5534E;
}
/* line 166, ../sass/components/_form.scss */
.square.gd-yellow {
  background: #FCCA53;
}
/* line 169, ../sass/components/_form.scss */
.square.gd-teal {
  background: #46A0B7;
}
/* line 172, ../sass/components/_form.scss */
.square .content {
  height: 80%;
  /* = 100% - 2*10% padding */
  padding: 10% 5%;
  position: relative;
  width: 90%;
  /* = 100% - 2*5% padding */
}
/* line 177, ../sass/components/_form.scss */
.square .content .table {
  display: table;
  height: 100%;
  width: 100%;
}
/* line 181, ../sass/components/_form.scss */
.square .content .table .table-cell {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
  width: 100%;
}

/**
 * Navigation bar.
 */
/* line 4, ../sass/components/_navigation.scss */
#navigation {
  overflow: hidden;
  padding: 1em 0;
  /* Main menu and secondary menu links and menu block links. */
}
@media (max-width: 1023px) {
  /* line 4, ../sass/components/_navigation.scss */
  #navigation {
    background-color: #f7f7f7;
    height: 100%;
    overflow-y: auto;
    padding: 0 0 50px;
    position: fixed;
    right: -255px;
    top: 76px;
    width: 255px;
    z-index: 99999;
    -webkit-transition-property: right;
    -moz-transition-property: right;
    -o-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 300ms;
    -moz-transition-duration: 300ms;
    -o-transition-duration: 300ms;
    transition-duration: 300ms;
  }
  /* line 25, ../sass/components/_navigation.scss */
  .menu-active #navigation {
    right: 0;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  /* line 30, ../sass/components/_navigation.scss */
  #navigation .menu > li {
    border-bottom: 1px solid #A2A2A2;
    cursor: pointer;
    display: block;
    float: none;
    list-style: none;
    padding: 12px 16px;
    text-decoration: none;
    font-size: 20px;
  }
}
/* line 44, ../sass/components/_navigation.scss */
#navigation .links,
#navigation .menu {
  margin: 0;
  padding: 0;
  text-align: left;
}
/* line 49, ../sass/components/_navigation.scss */
#navigation .links li,
#navigation .menu li {
  float: left;
  font-weight: 600;
  list-style-type: none;
  list-style-image: none;
  padding: 0 12px 0 0;
  text-transform: uppercase;
}
/* line 56, ../sass/components/_navigation.scss */
#navigation .links li:last-child,
#navigation .menu li:last-child {
  padding: 0;
}
@media (max-width: 1023px) {
  /* line 49, ../sass/components/_navigation.scss */
  #navigation .links li,
  #navigation .menu li {
    float: none;
    font-weight: 400;
    padding: 12px 16px;
  }
  /* line 63, ../sass/components/_navigation.scss */
  #navigation .links li:last-child,
  #navigation .menu li:last-child {
    padding: 12px 16px;
  }
}
@media (min-width: 1024px) {
  /* line 49, ../sass/components/_navigation.scss */
  #navigation .links li,
  #navigation .menu li {
    padding: 0 20px 0 0;
  }
}
/* line 71, ../sass/components/_navigation.scss */
#navigation .links li a:hover,
#navigation .menu li a:hover {
  color: #666;
}
/* line 78, ../sass/components/_navigation.scss */
#navigation .menu {
  float: right;
}
@media (max-width: 1023px) {
  /* line 78, ../sass/components/_navigation.scss */
  #navigation .menu {
    float: none;
  }
}
/* line 85, ../sass/components/_navigation.scss */
#navigation .utility-menu {
  position: absolute;
  right: 0;
  top: 2em;
}
/* line 89, ../sass/components/_navigation.scss */
#navigation .utility-menu li {
  float: left;
  font-weight: 400;
  list-style: none;
  list-style-image: none;
  padding: 0;
  text-transform: none;
}
@media (max-width: 1023px) {
  /* line 89, ../sass/components/_navigation.scss */
  #navigation .utility-menu li {
    float: none;
  }
}
/* line 99, ../sass/components/_navigation.scss */
#navigation .utility-menu li a {
  border-right: 1px solid #A2A2A2;
  color: #666;
  padding: 0 10px;
}
/* line 104, ../sass/components/_navigation.scss */
#navigation .utility-menu li:last-child > a {
  border-right: none;
}
/* line 108, ../sass/components/_navigation.scss */
#navigation .utility-menu .search-form {
  float: left;
}
/* line 110, ../sass/components/_navigation.scss */
#navigation .utility-menu .search-form label {
  float: left;
}
/* line 113, ../sass/components/_navigation.scss */
#navigation .utility-menu .search-form .search-submit {
  background: transparent url("../images/build/search.png") no-repeat left bottom;
  border: none;
  display: inline-block;
  height: 25px;
  margin: 0;
  overflow: hidden;
  position: relative;
  right: -5px;
  text-indent: -999em;
  top: -5px;
  width: 25px;
}
@media (max-width: 1023px) {
  /* line 85, ../sass/components/_navigation.scss */
  #navigation .utility-menu {
    position: relative;
    top: 0;
  }
  /* line 134, ../sass/components/_navigation.scss */
  #navigation .utility-menu ul.menu li {
    padding: 12px 16px;
  }
  /* line 136, ../sass/components/_navigation.scss */
  #navigation .utility-menu ul.menu li a {
    border-right: none;
  }
  /* line 142, ../sass/components/_navigation.scss */
  #navigation .utility-menu .search-form {
    float: none;
    margin-top: 2em;
    margin-left: 20px;
  }
  /* line 145, ../sass/components/_navigation.scss */
  #navigation .utility-menu .search-form input[type=search] {
    width: 180px;
  }
}
@media (min-width: 1024px) {
  /* line 152, ../sass/components/_navigation.scss */
  #navigation .utility-menu .search-form input[type=search] {
    font-size: 1.2rem;
    height: auto;
    padding-bottom: 6px;
    padding-left: 8px;
    padding-top: 6px;
    position: relative;
    top: -3px;
    width: 260px;
  }
}

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

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

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

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

/**
 * Search
 */
/**
 * Global Tables
 */
/* line 4, ../sass/components/_tables.scss */
table {
  border-color: lightgray;
  border: 0;
  width: 100% !important;
}
/* line 8, ../sass/components/_tables.scss */
table tr {
  border: 0px solid lightgray;
}
/* line 10, ../sass/components/_tables.scss */
table tr:nth-child(even) {
  background: #f7f7f7;
}
/* line 14, ../sass/components/_tables.scss */
table td,
table th {
  border-color: lightgray;
  padding: 0.5em 1em;
  text-align: left;
}
/* line 20, ../sass/components/_tables.scss */
table td > *:first-child,
table th > *:first-child {
  margin-top: 0;
}
/* line 23, ../sass/components/_tables.scss */
table td > *:last-child,
table th > *:last-child {
  margin-bottom: 0;
}
/* line 28, ../sass/components/_tables.scss */
table thead th,
table tbody th {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.92em;
  background: #e7e7e7;
}
/* line 35, ../sass/components/_tables.scss */
table th.empty-header-cell {
  visibility: hidden;
}

/**
 * Responsive data tables with headers
 */
@media (max-width: 1023px) {
  /* line 44, ../sass/components/_tables.scss */
  table.data {
    overflow: hidden;
  }

  /* line 47, ../sass/components/_tables.scss */
  table.data thead,
  table.data th {
    display: none;
  }

  /* line 51, ../sass/components/_tables.scss */
  table.data tbody,
  table.data tbody th,
  table.data tr,
  table.data td {
    display: block;
    width: 100%;
    float: left;
  }

  /* line 59, ../sass/components/_tables.scss */
  table.data tr {
    border-width: 1px;
  }
  /* line 61, ../sass/components/_tables.scss */
  table.data tr + tr {
    border-top-width: 0;
  }
  /* line 64, ../sass/components/_tables.scss */
  table.data tr > th,
  table.data tr > td {
    border-width: 0;
  }

  /* line 69, ../sass/components/_tables.scss */
  table.data td.labeled:before {
    content: attr(data-th);
    display: block;
    font-weight: bold;
    font-size: 0.92em;
    color: #555;
    border-bottom: 1px solid lightgray;
    margin-bottom: 0.5em;
    padding-bottom: 0.5em;
  }
}
/* Region rules */
/* line 1, ../sass/regions/_bottom.scss */
#region-bottom {
  background: #333;
  color: #A2A2A2;
  font-weight: 700;
  padding: 10px 0;
  letter-spacing: 1px;
}
/* line 20, ../sass/bourbon/addons/_clearfix.scss */
#region-bottom:after {
  clear: both;
  content: "";
  display: table;
}
/* line 8, ../sass/regions/_bottom.scss */
#region-bottom .gd {
  float: left;
  text-transform: uppercase;
}
@media (max-width: 500px) {
  /* line 8, ../sass/regions/_bottom.scss */
  #region-bottom .gd {
    float: none;
  }
}
/* line 15, ../sass/regions/_bottom.scss */
#region-bottom .gd-link {
  float: right;
}
@media (max-width: 500px) {
  /* line 15, ../sass/regions/_bottom.scss */
  #region-bottom .gd-link {
    float: none;
  }
}
/* line 20, ../sass/regions/_bottom.scss */
#region-bottom .gd-link a {
  color: #A2A2A2;
}

/* line 1, ../sass/regions/_content.scss */
#content {
  margin-bottom: 3rem;
}
/* line 3, ../sass/regions/_content.scss */
#content .hero-image {
  height: 550px;
  position: relative;
}
@media (max-width: 500px) {
  /* line 3, ../sass/regions/_content.scss */
  #content .hero-image {
    height: 250px;
  }
}
@media (min-width: 501px) and (max-width: 760px) {
  /* line 3, ../sass/regions/_content.scss */
  #content .hero-image {
    height: 300px;
  }
}
@media (min-width: 761px) and (max-width: 1023px) {
  /* line 3, ../sass/regions/_content.scss */
  #content .hero-image {
    height: 300px;
  }
}
/* line 15, ../sass/regions/_content.scss */
#content .hero-image.auto-height {
  height: auto;
}
/* line 19, ../sass/regions/_content.scss */
#content .featured-image {
  margin: 0 0 3em;
}
/* line 22, ../sass/regions/_content.scss */
#content .container.overlay {
  left: 4em;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 10.3em;
  width: 80%;
  z-index: 200;
}
@media (max-width: 500px) {
  /* line 22, ../sass/regions/_content.scss */
  #content .container.overlay {
    background: #333;
    left: 0;
    position: relative;
    top: 0 !important;
    width: 100%;
  }
}
@media (min-width: 501px) and (max-width: 760px) {
  /* line 22, ../sass/regions/_content.scss */
  #content .container.overlay {
    left: 2em;
    max-width: 505px;
    top: 3em;
  }
}
@media (min-width: 761px) and (max-width: 1023px) {
  /* line 22, ../sass/regions/_content.scss */
  #content .container.overlay {
    top: 3em;
  }
}
/* line 47, ../sass/regions/_content.scss */
#content .container.overlay a {
  color: #FFF;
  padding: 0 0 0 5px;
}
@media (max-width: 500px) {
  /* line 47, ../sass/regions/_content.scss */
  #content .container.overlay a {
    padding-left: 20px;
  }
}
/* line 54, ../sass/regions/_content.scss */
#content .container.overlay h1,
#content .container.overlay h2 {
  color: #FFF;
  font-weight: 300;
  line-height: 1;
}
/* line 60, ../sass/regions/_content.scss */
#content .container.overlay h1 {
  margin-top: 2rem;
  margin-bottom: 0;
}
@media (max-width: 500px) {
  /* line 60, ../sass/regions/_content.scss */
  #content .container.overlay h1 {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 10px;
    padding-right: 10px;
    padding-left: 20px;
  }
}
/* line 67, ../sass/regions/_content.scss */
#content .container.overlay h2 {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 4rem;
}
@media (max-width: 500px) {
  /* line 67, ../sass/regions/_content.scss */
  #content .container.overlay h2 {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
  }
}
/* line 74, ../sass/regions/_content.scss */
#content .container.overlay.wrapper {
  left: 0;
  width: 100%;
}
/* line 78, ../sass/regions/_content.scss */
#content .container.overlay .inner-wrapper {
  padding: 1.5rem 0;
}
@media (max-width: 500px) {
  /* line 78, ../sass/regions/_content.scss */
  #content .container.overlay .inner-wrapper {
    margin-left: 0;
  }
}
@media (min-width: 761px) {
  /* line 78, ../sass/regions/_content.scss */
  #content .container.overlay .inner-wrapper {
    padding: 1.5rem 2rem;
  }
}
/* line 88, ../sass/regions/_content.scss */
#content .event-callout {
  background: #034F9D;
  background: rgba(3, 79, 157, 0.9) !important;
  margin-bottom: 4rem;
  position: relative;
  width: 100%;
}
/* line 94, ../sass/regions/_content.scss */
#content .event-callout .inner-wrapper {
  padding: .5em 1em;
}
@media (max-width: 500px) {
  /* line 94, ../sass/regions/_content.scss */
  #content .event-callout .inner-wrapper {
    padding-left: 0;
  }
}
/* line 100, ../sass/regions/_content.scss */
#content .event-callout a {
  color: #FFF;
}
/* line 102, ../sass/regions/_content.scss */
#content .event-callout a span {
  border-right: 1px solid #FFF;
  padding: 0 5px 0 3px;
}
@media (min-width: 761px) {
  /* line 102, ../sass/regions/_content.scss */
  #content .event-callout a span {
    padding: 0 15px 0 9px;
  }
}
/* line 108, ../sass/regions/_content.scss */
#content .event-callout a span:last-child {
  border-right: none;
}
/* line 114, ../sass/regions/_content.scss */
#content .news-feed {
  padding: 0 0 20px;
  margin-top: 1.5em;
}
/* line 118, ../sass/regions/_content.scss */
#content .news-feed h2.title {
  color: #666;
  font-size: 1em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}
/* line 125, ../sass/regions/_content.scss */
#content .news-feed .news-item {
  border-bottom: 1px solid #A2A2A2;
  padding: 10px 0;
}
/* line 128, ../sass/regions/_content.scss */
#content .news-feed .news-item .post-date {
  font-weight: bold;
}
/* line 131, ../sass/regions/_content.scss */
#content .news-feed .news-item h3 {
  font-weight: normal;
  margin: 0;
}
/* line 135, ../sass/regions/_content.scss */
/*#content .news-feed .news-item:nth-child(2n+1) {
  border-bottom: none;
  padding-bottom: 30px;
}*/
/* line 140, ../sass/regions/_content.scss */
#content .news-feed .more-link {
  font-weight: bold;
}
/* line 144, ../sass/regions/_content.scss */
#content .callout {
  -moz-box-shadow: 0 0 15px 0 #A2A2A2;
  -webkit-box-shadow: 0 0 15px 0 #A2A2A2;
  box-shadow: 0 0 15px 0 #A2A2A2;
  margin-top: 1.5em;
}
/* line 147, ../sass/regions/_content.scss */
#content .callout .field-group {
  padding: 0 30px 10px;
  text-align: center;
}
/* line 150, ../sass/regions/_content.scss */
#content .callout .field-group .title {
  color: #000;
  font-weight: bold;
  line-height: 1.25em;
  padding: 20px 0 5px;
}
/* line 156, ../sass/regions/_content.scss */
#content .callout .field-group p {
  color: #666;
  line-height: 1.25em;
  margin-top: 0;
}

/* line 165, ../sass/regions/_content.scss */
.back-to-top {
  background: #034F9D;
  bottom: 10px;
  color: #FFF;
  cursor: pointer;
  display: none;
  padding: 0 5px 5px;
  position: fixed;
  right: 10px;
  z-index: 1000;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  font-size: 30px;
  font-size: 3rem;
}
@media (max-width: 500px) {
  /* line 165, ../sass/regions/_content.scss */
  .back-to-top {
    opacity: 0.6;
  }
}
@media (min-width: 501px) and (max-width: 760px) {
  /* line 165, ../sass/regions/_content.scss */
  .back-to-top {
    opacity: 0.6;
  }
}

/* line 1, ../sass/regions/_footer.scss */
#footer {
  background: #034F9D;
  color: #FFF;
}
/* line 4, ../sass/regions/_footer.scss */
#footer a {
  color: #FFF;
}
/* line 6, ../sass/regions/_footer.scss */
#footer a:hover {
  color: #96B4CE;
}
/* line 10, ../sass/regions/_footer.scss */
#footer .top {
  padding: 10px 0 20px;
}
/* line 20, ../sass/bourbon/addons/_clearfix.scss */
#footer .top:after {
  clear: both;
  content: "";
  display: table;
}
/* line 13, ../sass/regions/_footer.scss */
#footer .top h2 {
  color: #FFF;
  font-weight: 700;
  line-height: 1.7;
  font-size: 24px;
  font-size: 2.4rem;
}
/* line 19, ../sass/regions/_footer.scss */
#footer .top ul.menu {
  padding: 0;
}
/* line 21, ../sass/regions/_footer.scss */
#footer .top ul.menu li {
  border-bottom: 1px solid #2f6BAA;
  padding: 10px 0;
  list-style: none;
}
/* line 25, ../sass/regions/_footer.scss */
#footer .top ul.menu li:first-child {
  padding-top: 0;
}
/* line 28, ../sass/regions/_footer.scss */
#footer .top ul.menu li:last-child {
  border-bottom: none;
}
/* line 33, ../sass/regions/_footer.scss */
#footer .top .contact-block {
  margin-top: .5em;
}
/* line 36, ../sass/regions/_footer.scss */
#footer .top .contact-block .social-media > a {
  font-size: 1.5em;
  margin: 0 15px 0 0;
}
/* line 43, ../sass/regions/_footer.scss */
#footer .bottom {
  border-top: 1px solid #2f6BAA;
  padding: 10px 0 30px;
}
/* line 20, ../sass/bourbon/addons/_clearfix.scss */
#footer .bottom:after {
  clear: both;
  content: "";
  display: table;
}
/* line 47, ../sass/regions/_footer.scss */
#footer .bottom .copyright {
  color: #96B4CE;
  margin-bottom: 2.4rem;
}
/* line 51, ../sass/regions/_footer.scss */
#footer .bottom ul.menu {
  float: right;
  margin: 0;
  padding: 0;
}
@media (max-width: 1023px) {
  /* line 51, ../sass/regions/_footer.scss */
  #footer .bottom ul.menu {
    float: none;
  }
}
/* line 58, ../sass/regions/_footer.scss */
#footer .bottom ul.menu li {
  list-style: none;
  list-style-image: none;
  float: left;
}
/* line 63, ../sass/regions/_footer.scss */
#footer .bottom ul.menu li:last-child a {
  border-right: none;
}
@media (max-width: 1023px) {
  /* line 58, ../sass/regions/_footer.scss */
  #footer .bottom ul.menu li {
    float: none;
  }
  /* line 68, ../sass/regions/_footer.scss */
  #footer .bottom ul.menu li:last-child a {
    border-right: none;
  }
}
/* line 72, ../sass/regions/_footer.scss */
#footer .bottom ul.menu li a {
  border-right: 1px solid #96B4CE;
  color: #96B4CE;
  padding: 0 10px;
}
@media (max-width: 1023px) {
  /* line 72, ../sass/regions/_footer.scss */
  #footer .bottom ul.menu li a {
    border-right: none;
    padding: 0;
  }
}
/* line 80, ../sass/regions/_footer.scss */
#footer .bottom ul.menu li a:hover {
  color: #FFF;
}

@media (max-width: 1023px) {
  /* line 1, ../sass/regions/_header.scss */
  #header {
    height: 76px;
  }
}
/* line 5, ../sass/regions/_header.scss */
#header .primary-menu {
  clear: both;
  padding: 4em 0 1em;
}
/* line 20, ../sass/bourbon/addons/_clearfix.scss */
#header .primary-menu:after {
  clear: both;
  content: "";
  display: table;
}
@media (max-width: 1023px) {
  /* line 5, ../sass/regions/_header.scss */
  #header .primary-menu {
    padding: 15px 0;
  }
}
/* line 12, ../sass/regions/_header.scss */
#header .primary-menu .header-logo {
  float: left;
  margin: 0;
  padding: 0;
}
@media (max-width: 500px) {
  /* line 12, ../sass/regions/_header.scss */
  #header .primary-menu .header-logo {
    width: 80%;
  }
}
/* line 21, ../sass/regions/_header.scss */
#header .mobile-menu-trigger {
  display: none;
}
@media (max-width: 1023px) {
  /* line 21, ../sass/regions/_header.scss */
  #header .mobile-menu-trigger {
    display: block;
    float: right;
    font-size: 2em;
  }
}

/* line 1, ../sass/regions/_sidebar.scss */
.sidebars {
  margin: 1.5em 0;
}
@media (max-width: 1023px) {
  /* line 1, ../sass/regions/_sidebar.scss */
  .sidebars {
    margin: 1.5em 0;
  }
}
/* line 7, ../sass/regions/_sidebar.scss */
.sidebars .sidebar-first ul.menu {
  background: #F2F2F2;
  margin: 0;
  padding: 15px 10px 25px;
  position: relative;
}
/* line 12, ../sass/regions/_sidebar.scss */
.sidebars .sidebar-first ul.menu:before {
  background-color: #F2F2F2;
  content: "";
  height: 100%;
  left: -500%;
  position: absolute;
  right: 0;
  top: 0;
  width: 500%;
}
/* line 22, ../sass/regions/_sidebar.scss */
.sidebars .sidebar-first ul.menu li {
  list-style: none;
  list-style-image: none;
  padding: 3px 0;
  text-transform: uppercase;
}
/* line 27, ../sass/regions/_sidebar.scss */
.sidebars .sidebar-first ul.menu li a {
  color: #666;
}
/* line 29, ../sass/regions/_sidebar.scss */
.sidebars .sidebar-first ul.menu li a:hover {
  color: #333;
}
/* line 35, ../sass/regions/_sidebar.scss */
.sidebars .sidebar-first ul.menu li.current_page_item > a:after {
  content: '>';
  display: inline-block;
  padding: 0 0 0 5px;
}
/* line 41, ../sass/regions/_sidebar.scss */
.sidebars .sidebar-first ul.menu li.current_page_item > ul.sub-menu {
  display: block;
}
/* line 46, ../sass/regions/_sidebar.scss */
.sidebars .sidebar-first ul.menu li.current-page-ancestor ul.sub-menu {
  display: block;
}
/* line 48, ../sass/regions/_sidebar.scss */
.sidebars .sidebar-first ul.menu li.current-page-ancestor ul.sub-menu li.current_page_item > a:after {
  content: '>';
  display: inline-block;
  padding: 0 0 0 5px;
}
/* line 55, ../sass/regions/_sidebar.scss */
.sidebars .sidebar-first ul.menu li ul.sub-menu {
  display: none;
}

/**
 * @file
 * Custom Styling Overrides
 *
 */
/* line 20, ../sass/bourbon/addons/_clearfix.scss */
.clearfix:after {
  clear: both;
  content: "";
  display: table;
}

/* line 14, ../sass/_custom.scss */
.span-3-1 {
  width: 21.73913%;
  float: left;
  margin-right: -100%;
  margin-left: 0;
  clear: none;
}

/* line 18, ../sass/_custom.scss */
.span-3-7 {
  width: 21.73913%;
  float: left;
  margin-right: -100%;
  margin-left: 52.17391%;
  clear: none;
}

/* line 22, ../sass/_custom.scss */
.span-3-10 {
  width: 21.73913%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: none;
}

/* line 26, ../sass/_custom.scss */
.span-4-1 {
  width: 30.43478%;
  float: left;
  margin-right: -100%;
  margin-left: 0;
  clear: none;
}

/* line 30, ../sass/_custom.scss */
.span-5-1 {
  width: 39.13043%;
  float: left;
  margin-right: -100%;
  margin-left: 0;
  clear: none;
}

/* line 34, ../sass/_custom.scss */
.span-6-1 {
  width: 47.82609%;
  float: left;
  margin-right: -100%;
  margin-left: 0;
  clear: none;
}

/* line 38, ../sass/_custom.scss */
.span-6-7 {
  width: 47.82609%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: none;
}

/* line 42, ../sass/_custom.scss */
.span-8-5 {
  width: 65.21739%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: none;
}

/* line 46, ../sass/_custom.scss */
.span-9-4 {
  width: 73.91304%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: none;
}

@media (max-width: 1023px) {
  /* line 51, ../sass/_custom.scss */
  .span-3-1,
  .span-3-7,
  .span-3-10,
  .span-4-1,
  .span-5-1,
  .span-6-1,
  .span-6-7,
  .span-8-5,
  .span-9-4 {
    float: none;
    margin: 0 auto;
    width: auto;
  }
}
/* line 20, ../sass/bourbon/addons/_clearfix.scss */
.column-2:after {
  clear: both;
  content: "";
  display: table;
}
/* line 69, ../sass/_custom.scss */
.column-2 > div {
  width: 47%;
  float: left;
  margin-right: 3%;
}
/* line 73, ../sass/_custom.scss */
.column-2 > div:nth-child(2n) {
  margin-right: 0;
  margin-left: 1%;
}

/* line 20, ../sass/bourbon/addons/_clearfix.scss */
.column-3:after {
  clear: both;
  content: "";
  display: table;
}
/* line 83, ../sass/_custom.scss */
.column-3 > div {
  width: 30%;
  float: left;
  margin-right: 4%;
}
@media (min-width: 1024px) {
  /* line 88, ../sass/_custom.scss */
  .column-3 > div:nth-child(3n) {
    margin-right: 0;
    margin-left: 0;
  }
}

/* line 20, ../sass/bourbon/addons/_clearfix.scss */
.column-4:after {
  clear: both;
  content: "";
  display: table;
}
/* line 99, ../sass/_custom.scss */
.column-4 > div {
  width: 21%;
  float: left;
  margin-right: 4%;
}
/* line 103, ../sass/_custom.scss */
.column-4 > div:nth-child(4n) {
  margin-right: 0;
  margin-left: 0;
}

/* line 114, ../sass/_custom.scss */
.column-2 > div,
.column-3 > div,
.column-4 > div {
  margin-bottom: 30px;
}
@media (max-width: 500px) {
  /* line 114, ../sass/_custom.scss */
  .column-2 > div,
  .column-3 > div,
  .column-4 > div {
    float: none;
    margin: 0 auto;
    width: 80%;
  }
  /* line 120, ../sass/_custom.scss */
  .column-2 > div:nth-child(2n), .column-2 > div:nth-child(3n), .column-2 > div:nth-child(4n),
  .column-3 > div:nth-child(2n),
  .column-3 > div:nth-child(3n),
  .column-3 > div:nth-child(4n),
  .column-4 > div:nth-child(2n),
  .column-4 > div:nth-child(3n),
  .column-4 > div:nth-child(4n) {
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 501px) and (max-width: 760px) {
  /* line 114, ../sass/_custom.scss */
  .column-2 > div,
  .column-3 > div,
  .column-4 > div {
    float: none;
    margin: 0 auto;
    width: 80%;
  }
  /* line 131, ../sass/_custom.scss */
  .column-2 > div:nth-child(2n), .column-2 > div:nth-child(3n), .column-2 > div:nth-child(4n),
  .column-3 > div:nth-child(2n),
  .column-3 > div:nth-child(3n),
  .column-3 > div:nth-child(4n),
  .column-4 > div:nth-child(2n),
  .column-4 > div:nth-child(3n),
  .column-4 > div:nth-child(4n) {
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 761px) and (max-width: 1023px) {
  /* line 114, ../sass/_custom.scss */
  .column-2 > div,
  .column-3 > div,
  .column-4 > div {
    float: left;
    margin-right: 2%;
    width: 48%;
  }
  /* line 142, ../sass/_custom.scss */
  .column-2 > div:nth-child(2n),
  .column-3 > div:nth-child(2n),
  .column-4 > div:nth-child(2n) {
    margin-left: 0;
  }
}

/*# sourceMappingURL=styles.css.map */
