/**
 * @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. */
/* =============================================================================
    Variables
   ========================================================================== */
/* 
 * This is an upper bound for extremely wide window sizes. This value is based on the 
 * current top end resolution widths.
 */
/* This is a value defining "infinity", or very large values. */
/* 
 * This value represents the spacing between grid items. 
 * If you are using Zen grids, ensure that this value is the same as $zen-gutter-width. 
 */
/*
 * These variables provide windows size breakpoints we use as part of cosmic. 
 * These represent a targeted lowest value (min-width) for that particular device.
 */
/**
 * Placeholders for Shared Styling Techniques
 */
/* line 166, ../sass/_init.scss */
#content-wrapper,
.header__secondary-menu,
#footer > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media all and (max-width: 1230px) {
  /* line 166, ../sass/_init.scss */
  #content-wrapper,
  .header__secondary-menu,
  #footer > * {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media all and (min-width: 1231px) {
  /* line 166, ../sass/_init.scss */
  #content-wrapper,
  .header__secondary-menu,
  #footer > * {
    padding-left: 0;
    padding-right: 0;
  }
}

/* line 182, ../sass/_init.scss */
#header,
.header__site-info,
.navbar nav,
.navbar .region-navigation {
  padding-left: calc(50% - (1200px / 2));
  padding-right: calc(50% - (1200px / 2));
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media all and (max-width: 1230px) {
  /* line 182, ../sass/_init.scss */
  #header,
  .header__site-info,
  .navbar nav,
  .navbar .region-navigation {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/**
 * Apply this placeholder to the :before or :after in an elements selector
 * to have both background properties visible. You can use up to three
 * backgrounds simultaneously via layering.
 *
 * Inspired by: http://nicolasgallagher.com/multiple-backgrounds-and-borders-with-css2/
 */
/* 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 33, ../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 40, ../sass/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
}

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

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

/**
 * Base
 *
 * Instead of relying on the fonts that are available on a user's computer, you
 * can use web fonts which, like images, are resources downloaded to the user's
 * browser. Because of the bandwidth and rendering resources required, web fonts
 * should be used with care.
 *
 * Numerous resources for web fonts can be found on Google. Here are a few
 * websites where you can find Open Source fonts to download:
 * - http://www.fontsquirrel.com/fontface
 * - http://www.theleagueofmoveabletype.com
 *
 * In order to use these fonts, you will need to convert them into formats
 * suitable for web fonts. We recommend the free-to-use Font Squirrel's
 * Font-Face Generator:
 *   http://www.fontsquirrel.com/fontface/generator
 *
 * The following is an example @font-face declaration. This font can then be
 * used in any ruleset using a property like this:  font-family: Example, serif;
 *
 * Since we're using Sass, you'll need to declare your font faces here, then you
 * can add them to the font variables in the _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 106, ../sass/_normalize.scss */
html {
  font-family: "Open Sans", Arial, sans-serif;
  /* 1 */
  font-size: 100%;
  /* 3 */
  font-weight: 300;
  color: #666666;
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  line-height: 1.5em;
}

/* Remove default margin. */
/* line 128, ../sass/_normalize.scss */
body {
  margin: 0;
  padding: 0;
  line-height: 1.5em;
}

/**
 * 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
 */
/* line 140, ../sass/_normalize.scss */
a:link {
  color: #00704A;
  text-decoration: underline;
}

/* line 144, ../sass/_normalize.scss */
a:visited {
  color: #00704A;
}

/* line 148, ../sass/_normalize.scss */
a:hover,
a:focus {
  color: black;
  text-decoration: underline;
}

/* Address `outline` inconsistency between Chrome and other browsers. */
/* line 156, ../sass/_normalize.scss */
a:focus {
  outline: thin dotted;
}

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

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

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 191, ../sass/_normalize.scss */
h1, h2, h3, h4, h5, h6 {
  color: #000000;
  font-weight: 400;
}

/* line 195, ../sass/_normalize.scss */
h1 {
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
  font-size: 2em;
  line-height: 1.5em;
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

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

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

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

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

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

/* line 228, ../sass/_normalize.scss */
h1, h2 {
  line-height: 1.25em;
}

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

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

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

/* Address differences between Firefox and other browsers. */
/* line 249, ../sass/_normalize.scss */
hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  border: none;
  border-top: 1px dashed #BBBBBB;
  padding-bottom: -1px;
  margin: 30px auto;
  width: 90%;
}

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
/* line 359, ../sass/_normalize.scss */
img {
  /* Remove border when inside `a` element in IE 8/9. */
  border: 0;
  /* Improve image quality when scaled in IE. */
  -ms-interpolation-mode: bicubic;
  /* 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 378, ../sass/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

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

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

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
/* line 414, ../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 432, ../sass/_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 449, ../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 460, ../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 476, ../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 488, ../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 499, ../sass/_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 513, ../sass/_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 523, ../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 529, ../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 538, ../sass/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

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

/**
 * FUTURE COSMIC FORM ELEMENTS
 */
 /*input[type="submit"] {
  @include transition-property(all);
  @include transition-duration(.2s);
  width: 150px;
  margin: 0 !important;

  &:hover {
    @include transition-property(all);
    @include transition-duration(.2s);
    border: solid black 1px;
    background: #004F27 !important;
    color: white !important;
  }
}

input[type="submit"], input[type="email"], input[type="text"] {
  @include border-radius(5px);
  background: none;
  border: solid grey 1px;
  padding: 10px;
}

select {
  background: none;
  border: 1px solid grey;
  @include border-radius(5px);
  margin: 0;
  width: 200px;
  padding-left: 10px;
  padding-right: 10px;

  &:focus {
    outline: 0;
  }
}
option {
  padding: 10px;

  &:active {
    border: none;
  }

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

/* ==========================================================================
   Miscellaneous
   ========================================================================== */
/* Prevent videos and embeds from expanding past container. */
/* line 618, ../sass/_normalize.scss */
object, iframe {
  max-width: 100%;
}

/* 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 Zen Grids plugin for Compass: http://zengrids.com
 */
/**
 * Center the page.
 *
 * For screen sizes larger than 1200px, prevent excessively long lines of text
 * by setting a max-width.
 */
/* Establish an outer container that keeps elements from overlowing. */
/* line 35, ../sass/layouts/_responsive.scss */
html {
  overflow-x: hidden;
}

/* Containers for grid items and flow items. */
/* line 46, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#main:before, #main:after,
#footer:before,
#footer:after {
  content: "";
  display: table;
}
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#main:after,
#footer:after {
  clear: both;
}

/* line 45, ../sass/layouts/_responsive.scss */
#main {
  position: relative;
}

/* Set all content to be centered unless it is an envelope. */
/* line 63, ../sass/layouts/_responsive.scss */
.navbar .region-navigation {
  overflow: hidden;
}

/* line 68, ../sass/layouts/_responsive.scss */
header, .navbar, #content-wrapper, #footer {
  clear: both;
}

@media all and (max-width: 960px) {
  /* line 74, ../sass/layouts/_responsive.scss */
  .js .navbar {
    display: none;
  }
}
/* line 79, ../sass/layouts/_responsive.scss */
#header {
  display: table;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  min-height: 126px;
  padding-top: 30px;
  padding-bottom: 30px;
  width: 100%;
}

/* line 88, ../sass/layouts/_responsive.scss */
.header__main-content {
  display: table-row;
}

/* line 91, ../sass/layouts/_responsive.scss */
.header__left, .header__center, .header__right {
  display: block;
  vertical-align: top;
}
@media all and (min-width: 960px) {
  /* line 91, ../sass/layouts/_responsive.scss */
  .header__left, .header__center, .header__right {
    display: table-cell;
  }
}

/* line 99, ../sass/layouts/_responsive.scss */
.header__left {
  float: left;
  padding-right: 30px;
}
@media all and (min-width: 960px) {
  /* line 99, ../sass/layouts/_responsive.scss */
  .header__left {
    float: none;
    width: 1px;
  }
  /* line 109, ../sass/layouts/_responsive.scss */
  .header__left .header__logo-image {
    max-width: none;
  }
}

/* line 114, ../sass/layouts/_responsive.scss */
.header__right {
  display: none;
  width: 220px;
  padding-left: 30px;
}
@media all and (min-width: 960px) {
  /* line 114, ../sass/layouts/_responsive.scss */
  .header__right {
    display: table-cell;
  }
}

/* line 123, ../sass/layouts/_responsive.scss */
.header__site-info {
  clear: both;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media all and (max-width: 660px) {
  /* line 123, ../sass/layouts/_responsive.scss */
  .header__site-info {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

/* line 133, ../sass/layouts/_responsive.scss */
.region-header {
  width: 220px;
}

/* line 137, ../sass/layouts/_responsive.scss */
#uologo {
  float: left;
  width: 200px;
  padding-top: 15px;
}

/* line 143, ../sass/layouts/_responsive.scss */
#site-name {
  font-size: 2.75em;
  line-height: 1.1em;
}
@media all and (max-width: 240px) {
  /* line 143, ../sass/layouts/_responsive.scss */
  #site-name {
    font-size: 1.4em;
    line-height: 1.3em;
  }
}
@media all and (min-width: 241px) and (max-width: 400px) {
  /* line 143, ../sass/layouts/_responsive.scss */
  #site-name {
    font-size: 1.8em;
    line-height: 1.3em;
  }
}
@media all and (min-width: 401px) and (max-width: 660px) {
  /* line 143, ../sass/layouts/_responsive.scss */
  #site-name {
    font-size: 2.5em;
  }
}

/* BLOCK REGIONS */
/* line 167, ../sass/layouts/_responsive.scss */
.region-header .block, .region-search .block, .region-highlighted .block, .region-content-top .block, .region-content-bottom .block {
  margin-bottom: 0;
}

/* line 172, ../sass/layouts/_responsive.scss */
.block-inline {
  float: left;
  margin-right: 30px;
}

/* line 177, ../sass/layouts/_responsive.scss */
.region-content-top, .region-content-bottom {
  overflow: hidden;
  margin-top: 30px;
  margin-bottom: 30px;
}

/* line 183, ../sass/layouts/_responsive.scss */
.region-header, .region-search {
  float: right;
}

/* line 187, ../sass/layouts/_responsive.scss */
.region-header {
  padding-top: 18px;
}
/* line 190, ../sass/layouts/_responsive.scss */
.region-header .block {
  float: left;
}

/* line 196, ../sass/layouts/_responsive.scss */
.region-search .form-item {
  margin: 0;
}
/* line 202, ../sass/layouts/_responsive.scss */
.region-search .block-search {
  position: relative;
}
/* line 205, ../sass/layouts/_responsive.scss */
.region-search .block-search .form-text {
  border: none;
  height: 50px;
  width: 220px;
  padding-left: 20px;
  padding-right: 68px;
}
/* line 213, ../sass/layouts/_responsive.scss */
.region-search .block-search .form-actions {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}
/* line 220, ../sass/layouts/_responsive.scss */
.region-search .block-search .form-submit {
  border: none;
  background-size: 16px;
  height: 32px;
  width: 32px;
  margin-top: 8px;
  margin-right: 16px;
  text-indent: -90000px;
}

/* line 234, ../sass/layouts/_responsive.scss */
.region-content-top .block-service-links ul, .region-content-bottom .block-service-links ul {
  list-style-type: none;
  list-style-type: none;
  margin: 0;
}
/* line 240, ../sass/layouts/_responsive.scss */
.region-content-top .block-service-links li, .region-content-bottom .block-service-links li {
  float: left;
  margin-right: 15px;
}

/* line 247, ../sass/layouts/_responsive.scss */
.region-content-aside {
  float: right;
  margin-left: 30px;
  max-width: 300px;
}

/* line 253, ../sass/layouts/_responsive.scss */
.sidebar .block {
  padding: 30px;
}

/* line 257, ../sass/layouts/_responsive.scss */
.secondary-menu {
  line-height: 2.5em;
}

/* Allow envelopes to be full width. */
/* line 262, ../sass/layouts/_responsive.scss */
.node-type-envelope-page #content-wrapper {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* line 268, ../sass/layouts/_responsive.scss */
#content-wrapper {
  margin-top: 45px;
  margin-bottom: 45px;
  clear: both;
}

/* line 274, ../sass/layouts/_responsive.scss */
.node-type-envelope-page #content-wrapper {
  margin-top: 0;
  margin-bottom: 0;
}

@media all and (min-width: 660px) {
  /**
   * The layout when there is only one sidebar, the left one.
   */
  /* line 288, ../sass/layouts/_responsive.scss */
  .sidebar-first {
    /* Span 14 columns, starting in 7th column from left. */
    /* Span 6 columns, starting in 1st column from left. */
  }
  /* line 290, ../sass/layouts/_responsive.scss */
  .sidebar-first #content {
    float: left;
    width: 65%;
    margin-left: 35%;
    margin-right: -100%;
  }
  /* line 295, ../sass/layouts/_responsive.scss */
  .sidebar-first .region-sidebar-first {
    float: left;
    width: 30%;
    margin-left: 0%;
    margin-right: -30%;
  }

  /**
   * The layout when there is only one sidebar, the right one.
   */
  /* line 303, ../sass/layouts/_responsive.scss */
  .sidebar-second {
    /* Span 14 columns, starting in 1st column from left. */
    /* Span 6 columns, starting in 15th column from left. */
  }
  /* line 305, ../sass/layouts/_responsive.scss */
  .sidebar-second #content {
    float: left;
    width: 65%;
    margin-left: 0%;
    margin-right: -65%;
  }
  /* line 310, ../sass/layouts/_responsive.scss */
  .sidebar-second .region-sidebar-second {
    float: left;
    width: 30%;
    margin-left: 70%;
    margin-right: -100%;
  }
}
/**
 * Use 3 grid columns for smaller screens.
 */
@media all and (min-width: 660px) and (max-width: 959px) {
  /**
   * The layout when there are two sidebars.
   */
  /* line 326, ../sass/layouts/_responsive.scss */
  .two-sidebars {
    /* Span 2 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
    /* Start a new row and span all 3 columns. */
  }
  /* line 328, ../sass/layouts/_responsive.scss */
  .two-sidebars #content {
    float: left;
    width: 66.66667%;
    margin-left: 33.33333%;
    margin-right: -100%;
  }
  /* line 333, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
  }
  /* line 338, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    padding-left: 0;
    padding-right: 0;
    clear: left;
    /* Apply the shared properties of grid items in a single, efficient ruleset. */
    /* Span 1 column, starting in the 1st column from left. */
    /* Span 1 column, starting in the 2nd column from left. */
    /* Span 1 column, starting in the 3rd column from left. */
  }
  /* line 344, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block {
    padding-left: 15px;
    padding-right: 15px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
  }
  /* line 348, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n+1) {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
    clear: left;
  }
  /* line 353, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n+2) {
    float: left;
    width: 33.33333%;
    margin-left: 33.33333%;
    margin-right: -66.66667%;
  }
  /* line 357, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n) {
    float: left;
    width: 33.33333%;
    margin-left: 66.66667%;
    margin-right: -100%;
  }
}
/**
 * Use 20 grid columns for larger screens.
 */
@media all and (min-width: 960px) {
  /**
   * The layout when there are two sidebars.
   */
  /* line 374, ../sass/layouts/_responsive.scss */
  .two-sidebars {
    /* Span 4 columns, starting in 4th column from left. */
    /* Span 3 columns, starting in 1st column from left. */
    /* Span 3 columns, starting in 8th column from left. */
  }
  /* line 376, ../sass/layouts/_responsive.scss */
  .two-sidebars #content {
    float: left;
    width: 30%;
    margin-left: 35%;
    margin-right: -65%;
  }
  /* line 381, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 30%;
    margin-left: 0%;
    margin-right: -30%;
  }
  /* line 386, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 30%;
    margin-left: 70%;
    margin-right: -100%;
  }
}
/* 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
 */
/**
 * Links.
 */
/* line 15, ../sass/components/_misc.scss */
.header a:link, #navigation a:link, .region-sidebar-first a:link, .region-sidebar-second a:link {
  text-decoration: none;
}

/* line 20, ../sass/components/_misc.scss */
#navigation a:hover, .region-sidebar-first a:hover, .region-sidebar-second a:hover {
  text-decoration: underline;
}

/**
 * Wireframes.
 */
/* line 36, ../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 54, ../sass/components/_misc.scss */
.element-invisible,
.element-focusable {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Turns off the element-invisible effect. */
/* line 59, ../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 76, ../sass/components/_misc.scss */
#skip-link {
  margin: 0;
}
/* line 80, ../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 95, ../sass/components/_misc.scss */
.header__logo {
  margin: 0;
  padding: 0;
  max-width: 100%;
}

/* Logo image. */
/* line 102, ../sass/components/_misc.scss */
.header__logo-image {
  vertical-align: bottom;
  max-width: 100%;
  max-height: 60px;
}

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

/* Push Header content over to fit banner from uobanner module */
@media all and (min-width: 1000px) {
  /* line 115, ../sass/components/_misc.scss */
  .uobanner .header__logo-image, .uobanner .header__name-and-slogan {
    margin-left: 190px;
  }
}
/* line 119, ../sass/components/_misc.scss */
.uobanner .header__logo + .header__name-and-slogan {
  margin-left: 0;
}

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

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

/* The slogan (or tagline) of a website. */
/* line 144, ../sass/components/_misc.scss */
.header__site-slogan, .header__site-title-before, .header__site-title-after {
  margin: 0;
  color: white;
  line-height: 1em;
}

/* The secondary menu (login, etc.) */
/* Wrapper for any blocks placed in the header region. */
/* line 158, ../sass/components/_misc.scss */
.utility-links {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline;
  position: absolute;
  margin: 2px auto 0 auto;
  padding: 0 30px 0 0 !important;
  width: 100%;
  max-width: 1200px;
  font-size: 13px;
  line-height: 26px;
  top: 0;
  right: 0;
  left: 0;
  text-align: right;
  font-weight: 400;
}
/* line 174, ../sass/components/_misc.scss */
.utility-links li {
  display: inline;
  list-style-type: none;
  list-style-image: none;
  padding-right: 15px;
}
/* line 180, ../sass/components/_misc.scss */
.utility-links li:last-of-type {
  padding-right: 0;
}
/* line 185, ../sass/components/_misc.scss */
.utility-links a {
  color: #87B8A8;
}
/* line 188, ../sass/components/_misc.scss */
.utility-links a:hover {
  color: #FDCD07;
  text-decoration: none;
}
@media all and (min-width: 1200px) {
  /* line 158, ../sass/components/_misc.scss */
  .utility-links {
    padding-right: 15px !important;
  }
}
@media all and (max-width: 959px) {
  /* line 158, ../sass/components/_misc.scss */
  .utility-links {
    display: none;
  }
}

/**
 * Navigation bar.
 */
/* line 211, ../sass/components/_misc.scss */
.cosmic-navleft .navbar .region-navigation li {
  display: block;
  float: left;
}

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

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

/* line 246, ../sass/components/_misc.scss */
.page__title {
  margin-bottom: 30px;
}

/* line 250, ../sass/components/_misc.scss */
.front.cosmic-hide-title .page__title {
  display: none;
}

/* line 254, ../sass/components/_misc.scss */
.sidebar .block__title {
  margin-bottom: 15px;
}

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

/* line 276, ../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 285, ../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 295, ../sass/components/_misc.scss */
.messages__list {
  margin: 0;
}

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

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

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

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

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

/**
 * Tabs.
 */
/* Basic positioning styles shared by primary and secondary tabs. */
/* line 329, ../sass/components/_misc.scss */
.tabs-primary, .tabs-secondary {
  overflow: hidden;
  background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(100%, #bbbbbb), color-stop(100%, transparent));
  background-image: -webkit-linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  background-image: -moz-linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  background-image: -o-linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  background-image: linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  /* IE 9 and earlier don't understand gradients. */
  list-style: none;
  border-bottom: 1px solid #bbbbbb \0/ie;
  margin: 1.5em 0;
  padding: 0 2px;
  white-space: nowrap;
}

/* line 339, ../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 343, ../sass/components/_misc.scss */
a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active, a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  border: 1px solid #e9e9e9;
  border-right: 0;
  border-bottom: 0;
  display: block;
  line-height: 1.5em;
  text-decoration: none;
}

/* Primary tabs. */
/* line 356, ../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 white;
  border: 1px solid #bbbbbb;
  border-bottom-color: transparent;
  /* IE 9 and earlier don't understand gradients. */
  border-bottom: 0 \0/ie;
}

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

/* line 371, ../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;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-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 381, ../sass/components/_misc.scss */
a.tabs-primary__tab-link:hover, a.tabs-primary__tab-link:focus {
  background-color: #e9e9e9;
  border-color: #f2f2f2;
}

/* line 385, ../sass/components/_misc.scss */
a.tabs-primary__tab-link:active, a.tabs-primary__tab-link.is-active {
  background-color: transparent;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFE9E9E9', endColorstr='#00E9E9E9');
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e9e9e9), color-stop(100%, rgba(233, 233, 233, 0)));
  background-image: -webkit-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: -moz-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: -o-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  border-color: #fff;
}

/* Secondary tabs. */
/* line 409, ../sass/components/_misc.scss */
.tabs-secondary {
  font-size: .9em;
  /* Collapse bottom margin of ul.primary. */
  margin-top: -1.5em;
}

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

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

/* line 431, ../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 436, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link:active, a.tabs-secondary__tab-link.is-active {
  text-shadow: 1px 1px 0 #333333;
  background-color: #666;
  border-color: #000;
  color: #fff;
}

/**
 * Inline styles.
 */
/* List of links generated by theme_links(). */
/* line 464, ../sass/components/_misc.scss */
.inline {
  display: inline;
  padding: 0;
}
/* line 468, ../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 476, ../sass/components/_misc.scss */
span.field-label {
  padding: 0 1em 0 0;
  /* LTR */
}

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

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

/* line 489, ../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 504, ../sass/components/_misc.scss */
.pager {
  clear: both;
  padding: 0;
}

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

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

/**
 * Menus.
 */
/* line 542, ../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 549, ../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 556, ../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 565, ../sass/components/_misc.scss */
.menu a.active {
  color: #000;
}

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

/* Implement sidebar menus */
/* line 582, ../sass/components/_misc.scss */
.sidebar .menu-block-wrapper, .sidebar .block-menu {
  /* Top level menu items. */
}
/* line 584, ../sass/components/_misc.scss */
.sidebar .menu-block-wrapper .menu, .sidebar .block-menu .menu {
  margin: 0;
  padding-left: 15px;
}
/* line 589, ../sass/components/_misc.scss */
.sidebar .menu-block-wrapper .menu__item, .sidebar .block-menu .menu__item {
  list-style-type: none;
  list-style-image: none;
  font-weight: 300;
}
/* line 595, ../sass/components/_misc.scss */
.sidebar .menu-block-wrapper .active-trail, .sidebar .block-menu .active-trail {
  font-weight: 400;
  color: black;
}
/* line 601, ../sass/components/_misc.scss */
.sidebar .menu-block-wrapper > .menu, .sidebar .block-menu > .menu {
  padding: 0;
}
/* line 604, ../sass/components/_misc.scss */
.sidebar .menu-block-wrapper > .menu > .menu__item, .sidebar .block-menu > .menu > .menu__item {
  padding: 7px 0;
  border-bottom: 1px dotted silver;
}
/* line 608, ../sass/components/_misc.scss */
.sidebar .menu-block-wrapper > .menu > .menu__item:last-of-type, .sidebar .block-menu > .menu > .menu__item:last-of-type {
  border-bottom: none;
}

/**
 * Unpublished note.
 */
/* The word "Unpublished" displayed underneath the content. */
/* line 621, ../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 649, ../sass/components/_misc.scss */
.comments {
  margin: 1.5em 0;
}

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

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

/* Nested comments are indented. */
/* line 670, ../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 680, ../sass/components/_misc.scss */
.form-item {
  margin: 1.5em 0;
  /* Pack groups of checkboxes and radio buttons closer together. */
  /* Form items in a table. */
  /* Highlight the form elements that caused a form submission error. */
  /* The descriptive help text (separate from the label). */
}
/* line 685, ../sass/components/_misc.scss */
.form-checkboxes .form-item, .form-radios .form-item {
  /* Drupal core uses "0.4em 0". */
  margin: 0;
}
/* line 692, ../sass/components/_misc.scss */
tr.odd .form-item, tr.even .form-item {
  margin: 0;
}
/* line 699, ../sass/components/_misc.scss */
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}
/* line 704, ../sass/components/_misc.scss */
.form-item .description {
  font-size: 0.85em;
}

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

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

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

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

/* Drupal's default login form block. */
/* line 739, ../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 751, ../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 758, ../sass/components/_misc.scss */
.openid-link,
.user-link {
  margin-top: 1.5em;
}

/* line 762, ../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 766, ../sass/components/_misc.scss */
#user-login ul {
  margin: 1.5em 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* Navigation bar */
/* line 2, ../sass/components/_cosmic-elements.scss */
.navbar {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  clear: both;
  z-index: 10;
}
@media all and (min-width: 750px) {
  /* line 2, ../sass/components/_cosmic-elements.scss */
  .navbar {
    position: relative;
    display: table;
    table-layout: fixed;
  }
  /* line 15, ../sass/components/_cosmic-elements.scss */
  .navbar ul {
    display: table-row;
  }
}
/* line 20, ../sass/components/_cosmic-elements.scss */
.navbar .block {
  margin-bottom: 0;
}
/* line 25, ../sass/components/_cosmic-elements.scss */
.navbar .block-menu .block--title,
.navbar .block-menu-block .block--title {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
/* line 29, ../sass/components/_cosmic-elements.scss */
.navbar ul {
  margin: 0;
  padding: 0;
}
/* line 34, ../sass/components/_cosmic-elements.scss */
.navbar li {
  /* A simple method to get navigation links to appear in one line. */
  white-space: nowrap;
  display: block;
  height: 51px;
  line-height: 51px;
}
@media all and (max-width: 479px) {
  /* line 34, ../sass/components/_cosmic-elements.scss */
  .navbar li {
    width: 100%;
  }
}
@media all and (min-width: 480px) and (max-width: 749px) {
  /* line 34, ../sass/components/_cosmic-elements.scss */
  .navbar li {
    width: 48%;
    margin-right: 2%;
    float: left;
  }
  /* line 49, ../sass/components/_cosmic-elements.scss */
  .navbar li:nth-of-type(even) {
    margin-right: 0;
  }
}
@media all and (max-width: 749px) {
  /* line 34, ../sass/components/_cosmic-elements.scss */
  .navbar li {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 10px;
  }
}
@media all and (min-width: 750px) {
  /* line 34, ../sass/components/_cosmic-elements.scss */
  .navbar li {
    display: table-cell;
    float: none;
    width: 1200px;
  }
}
@media all and (min-width: 750px) {
  /* line 66, ../sass/components/_cosmic-elements.scss */
  .cosmic-navleft .navbar {
    display: block;
  }
}
/* line 71, ../sass/components/_cosmic-elements.scss */
.cosmic-navleft .navbar ul {
  display: block;
}
/* line 75, ../sass/components/_cosmic-elements.scss */
.cosmic-navleft .navbar li {
  width: auto !important;
  display: block;
  float: left;
}
/* line 80, ../sass/components/_cosmic-elements.scss */
.cosmic-navleft .navbar li a {
  padding: 0 20px;
}
/* line 84, ../sass/components/_cosmic-elements.scss */
.cosmic-navleft .navbar li .region-navigation li {
  display: inline-block;
  float: left;
}
/* line 91, ../sass/components/_cosmic-elements.scss */
.stickynav-active .navbar {
  position: fixed;
  top: 0;
}
/* line 96, ../sass/components/_cosmic-elements.scss */
.navbar a {
  display: block;
  padding: 0 5px;
}

/* line 102, ../sass/components/_cosmic-elements.scss */
.feature-content {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* Set the background offset for each service in the sprite. */
/* line 111, ../sass/components/_cosmic-elements.scss */
.socialicon-facebook {
  background-position: -0px 0;
}

/* line 111, ../sass/components/_cosmic-elements.scss */
.socialicon-twitter {
  background-position: -60px 0;
}

/* line 111, ../sass/components/_cosmic-elements.scss */
.socialicon-youtube {
  background-position: -119px 0;
}

/* line 111, ../sass/components/_cosmic-elements.scss */
.socialicon-instagram {
  background-position: -179px 0;
}

/* line 111, ../sass/components/_cosmic-elements.scss */
.socialicon-linkedin {
  background-position: -239px 0;
}

/* line 111, ../sass/components/_cosmic-elements.scss */
.socialicon-flickr {
  background-position: -298px 0;
}

/* line 111, ../sass/components/_cosmic-elements.scss */
.socialicon-googleplus {
  background-position: -357px 0;
}

/* line 111, ../sass/components/_cosmic-elements.scss */
.socialicon-pinterest {
  background-position: -417px 0;
}

/* line 111, ../sass/components/_cosmic-elements.scss */
.socialicon-rss {
  background-position: -476px 0;
}

/* line 111, ../sass/components/_cosmic-elements.scss */
.socialicon-email {
  background-position: -535px 0;
}

/* Share Links */
/* Lead Story Block */
/* line 150, ../sass/components/_cosmic-elements.scss */
.lead-story-block {
  position: relative;
}
/* line 153, ../sass/components/_cosmic-elements.scss */
.lead-story-block img {
  display: block;
}
/* line 157, ../sass/components/_cosmic-elements.scss */
.lead-story-block .lead-story-caption {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  bottom: 0;
  padding: 15px;
  font-weight: bold;
  font-size: 28px;
  line-height: 32px;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
}
/* line 169, ../sass/components/_cosmic-elements.scss */
.lead-story-block .lead-story-caption a {
  color: white;
  text-decoration: none;
}
/* line 173, ../sass/components/_cosmic-elements.scss */
.lead-story-block .lead-story-caption a:hover {
  color: #FDCD07;
  text-decoration: none;
}
/* line 179, ../sass/components/_cosmic-elements.scss */
.lead-story-block.lead-story-portrait {
  display: table;
}
/* line 182, ../sass/components/_cosmic-elements.scss */
.lead-story-block.lead-story-portrait .lead-story-caption {
  max-width: 283px;
}
@media all and (min-width: 960px) {
  /* line 188, ../sass/components/_cosmic-elements.scss */
  .lead-story-block.lead-story-portrait {
    display: block;
  }
  /* line 191, ../sass/components/_cosmic-elements.scss */
  .lead-story-block.lead-story-portrait .lead-story-caption {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    background: #00714A;
    width: calc(100% - 283px);
    padding: 15px;
    top: 0;
    right: 0;
    color: white;
    height: 100%;
    font-size: 34px;
    line-height: 40px;
    text-align: left;
    max-width: 100%;
  }
}
@media all and (min-width: 1060px) {
  /* line 210, ../sass/components/_cosmic-elements.scss */
  .lead-story-block .lead-story-caption {
    padding: 30px;
    font-size: 42px;
    line-height: 48px;
  }
}

/* line 218, ../sass/components/_cosmic-elements.scss */
.article-photo .caption {
  font-variant: italic;
  font-size: 14px;
  line-height: 22px;
  color: #838181;
}

/* Call to Action Buttons */
/* line 227, ../sass/components/_cosmic-elements.scss */
.cta-button, .cta-button-white, .cta-button-dark, .cta-button-light {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  font-size: 20px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  min-height: 2.7em;
  line-height: 1.2em;
  cursor: pointer;
  text-align: center;
  padding: 1em 0;
  color: black;
  border: solid black 1px;
  text-decoration: none !important;
}
/* line 245, ../sass/components/_cosmic-elements.scss */
.cta-button:link, .cta-button-white:link, .cta-button-dark:link, .cta-button-light:link, .cta-button:visited, .cta-button-white:visited, .cta-button-dark:visited, .cta-button-light:visited {
  color: black;
}
/* line 248, ../sass/components/_cosmic-elements.scss */
.cta-button:hover, .cta-button-white:hover, .cta-button-dark:hover, .cta-button-light:hover, .cta-button:focus, .cta-button-white:focus, .cta-button-dark:focus, .cta-button-light:focus {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  background: #61A60F !important;
  color: white !important;
  border: solid white 1px;
  text-decoration: none !important;
}

/* line 257, ../sass/components/_cosmic-elements.scss */
.cta-button-white {
  border: solid white 1px;
  color: white;
}
/* line 262, ../sass/components/_cosmic-elements.scss */
.cta-button-white:link, .cta-button-white:visited, .cta-button-white:hover, .cta-button-white:focus {
  color: white;
}

/* line 267, ../sass/components/_cosmic-elements.scss */
.cta-button-dark {
  background: #666666;
  color: #fde374;
}
/* line 272, ../sass/components/_cosmic-elements.scss */
.cta-button-dark:link, .cta-button-dark:visited {
  color: #fde374;
}

/* line 279, ../sass/components/_cosmic-elements.scss */
.cta-button-light:hover, .cta-button-light:focus {
  color: black;
  background: #FDBC2E !important;
}

/* Add the pullquote class with the data-pullquote attribute set to the content of the div. */
/* line 286, ../sass/components/_cosmic-elements.scss */
[class*='pullquote'] {
  display: inline;
}
/* line 289, ../sass/components/_cosmic-elements.scss */
[class*='pullquote']:before {
  content: attr(data-pullquote);
  float: right;
  width: 40%;
  margin: 1em;
  font-size: 22px;
}

/* line 297, ../sass/components/_cosmic-elements.scss */
.pullquote-left:before {
  float: left;
}

/* line 300, ../sass/components/_cosmic-elements.scss */
.pullquote-right:before {
  float: right;
}

/* Wide Band Envelopes */
/* line 305, ../sass/components/_cosmic-elements.scss */
.envelope, [class*=envelope-] {
  position: relative;
}

/* Default envelope styles */
/* line 310, ../sass/components/_cosmic-elements.scss */
.envelope {
  clear: both;
  overflow: hidden;
  background-size: cover;
  background-position: center top;
}
/* line 317, ../sass/components/_cosmic-elements.scss */
.envelope h2:first-child, .envelope p:first-child {
  margin-top: 0;
}
/* line 320, ../sass/components/_cosmic-elements.scss */
.envelope h2:last-child, .envelope p:last-child {
  margin-bottom: 0;
}
/* line 324, ../sass/components/_cosmic-elements.scss */
.envelope a:link {
  text-decoration: none;
}
/* line 328, ../sass/components/_cosmic-elements.scss */
.envelope a:hover {
  text-decoration: underline;
}

/* line 332, ../sass/components/_cosmic-elements.scss */
.envelope-standard, .envelope-narrow {
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: calc(50% - 600px);
  padding-right: calc(50% - 600px);
}
@media all and (max-width: 1230px) {
  /* line 332, ../sass/components/_cosmic-elements.scss */
  .envelope-standard, .envelope-narrow {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* line 344, ../sass/components/_cosmic-elements.scss */
.envelope-narrow {
  padding-top: 15px;
  padding-bottom: 15px;
}

/* line 349, ../sass/components/_cosmic-elements.scss */
.envelope-parallax {
  background-attachment: fixed;
}

/* Envelope Coor Styles */
/* line 354, ../sass/components/_cosmic-elements.scss */
.envelope-style-black {
  background-color: #222222;
  color: white;
}
/* line 358, ../sass/components/_cosmic-elements.scss */
.envelope-style-black h2 {
  color: white;
}
/* line 362, ../sass/components/_cosmic-elements.scss */
.envelope-style-black a:link, .envelope-style-black a:visited {
  color: #bbb;
}
/* line 365, ../sass/components/_cosmic-elements.scss */
.envelope-style-black a:hover {
  color: #FDCD07;
  text-decoration: none;
}
/* line 370, ../sass/components/_cosmic-elements.scss */
.envelope-style-black .cta-button:link, .envelope-style-black .cta-button-white:link, .envelope-style-black .cta-button-dark:link, .envelope-style-black .cta-button-light:link, .envelope-style-black .cta-button:visited, .envelope-style-black .cta-button-white:visited, .envelope-style-black .cta-button-dark:visited, .envelope-style-black .cta-button-light:visited {
  border: solid white 1px;
  color: white;
}

@media all and (max-width: 659px) {
  /* line 376, ../sass/components/_cosmic-elements.scss */
  .low-priority {
    display: none !important;
  }
}

/* line 382, ../sass/components/_cosmic-elements.scss */
.envelope-background-image, .feature-background {
  position: absolute !important;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  background-size: cover;
  background-position: center top;
}

/*
 * New Style Hero Images
 */
/* The hero frame contains the hero image and 
 * hero content, establishing their size and boundary. */
/* line 404, ../sass/components/_cosmic-elements.scss */
.feature-frame {
  position: relative;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

/* The hero background is the full envelope background
 * used in hero stretch envelopes. */
/* The hero content is the main content of the envelope
 * and correctly formats contained tags to look visually correct. */
/* line 420, ../sass/components/_cosmic-elements.scss */
.feature-content {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: white;
  font-size: 19px;
  line-height: 26px;
  text-align: center;
  text-shadow: 0 0 5px black, 0 0 5px 5px black;
  text-shadow: 0 0 5px 5px black, 0 0 5px 5px black;
  -webkit-box-shadow: 0 50px 50px rgba(0, 0, 0, 0.4) 0;
  -moz-box-shadow: 0 50px 50px rgba(0, 0, 0, 0.4) 0;
  box-shadow: 0 50px 50px rgba(0, 0, 0, 0.4) 0;
  box-shadow: 0 0 50px 50px rgba(0, 0, 0, 0.4);
  background: black;
  background: rgba(0, 0, 0, 0.4);
}
/* line 436, ../sass/components/_cosmic-elements.scss */
.feature-content > * {
  margin: 15px 0;
}
/* line 439, ../sass/components/_cosmic-elements.scss */
.feature-content > *:first-child {
  margin-top: 0;
}
/* line 442, ../sass/components/_cosmic-elements.scss */
.feature-content > *:last-child {
  margin-bottom: 0;
}
/* line 447, ../sass/components/_cosmic-elements.scss */
.feature-content h1, .feature-content h2, .feature-content h3, .feature-content h4, .feature-content h5, .feature-content h6 {
  color: white;
}
/* line 451, ../sass/components/_cosmic-elements.scss */
.feature-content h2 {
  font-size: 48px;
  line-height: 50px;
}
/* line 456, ../sass/components/_cosmic-elements.scss */
.feature-content p {
  font-size: 17px;
  line-height: 26px;
}
/* line 461, ../sass/components/_cosmic-elements.scss */
.feature-content a {
  color: white;
}
/* line 464, ../sass/components/_cosmic-elements.scss */
.feature-content a:hover {
  color: #fdcd07;
  text-decoration: none;
}
/* line 469, ../sass/components/_cosmic-elements.scss */
.feature-content .cta-button, .feature-content .cta-button-white, .feature-content .cta-button-dark, .feature-content .cta-button-light, .feature-content .cta-button:hover, .feature-content .cta-button-white:hover, .feature-content .cta-button-dark:hover, .feature-content .cta-button-light:hover {
  border: 2px solid white;
  color: white;
  background: none;
  text-transform: uppercase;
}
/* line 476, ../sass/components/_cosmic-elements.scss */
.alpha-darken .feature-content {
  box-shadow: 0 0 50px 50px rgba(0, 0, 0, 0.45);
  background: black;
  background: rgba(0, 0, 0, 0.45);
}
@media all and (min-width: 660px) {
  /* line 420, ../sass/components/_cosmic-elements.scss */
  .feature-content {
    margin: 0 100px;
    padding: 0;
    width: calc(100% - 200px);
  }
}
@media all and (min-width: 960px) {
  /* line 420, ../sass/components/_cosmic-elements.scss */
  .feature-content {
    margin: 0 125px;
    padding: 0;
    width: calc(100% - 250px);
  }
}
@media all and (max-width: 959px) {
  /* line 495, ../sass/components/_cosmic-elements.scss */
  .feature-content h2 {
    font-size: 38px;
    line-height: 40px;
    padding-bottom: 19px;
  }
  /* line 501, ../sass/components/_cosmic-elements.scss */
  .feature-content p {
    font-size: 14px;
    line-height: 21px;
  }
}
@media all and (max-width: 659px) {
  /* line 420, ../sass/components/_cosmic-elements.scss */
  .feature-content {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    position: relative;
    top: 0;
    padding: 30px;
    text-transform: none;
    letter-spacing: 0;
    background: #006241;
  }
  /* line 516, ../sass/components/_cosmic-elements.scss */
  .alpha-darken .feature-content {
    background: #006241;
  }
  /* line 520, ../sass/components/_cosmic-elements.scss */
  .feature-content h2 {
    font-size: 24px;
    line-height: 24px;
  }
}

/* The hero tagline is an all uppercase one sentance chunk of 
 * text used for one line hero images (like the homepage ones). */
/* line 529, ../sass/components/_cosmic-elements.scss */
.feature-tagline {
  text-transform: uppercase;
  font-size: 60px;
  line-height: 60px;
  letter-spacing: 3px;
}
@media all and (max-width: 959px) {
  /* line 529, ../sass/components/_cosmic-elements.scss */
  .feature-tagline {
    font-size: 46px;
    line-height: 46px;
  }
}
@media all and (max-width: 659px) {
  /* line 529, ../sass/components/_cosmic-elements.scss */
  .feature-tagline {
    text-transform: none;
    font-size: 30px;
    line-height: 30px;
    letter-spacing: 0;
  }
}

/* A hero caption is hero content that always is underneath the
 * image instead of floating above it. */
/* line 550, ../sass/components/_cosmic-elements.scss */
.feature-caption {
  width: 100%;
  background: red;
  max-width: 1400px;
}

/* These wrapper classes are used to anchor the hero content to the 
 * left or right side, instead of hovering over the center. */
/* line 558, ../sass/components/_cosmic-elements.scss */
.feature-content-left, .feature-content-right {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  display: block;
  height: 100%;
  width: 50%;
  padding: 0 0 0 100px;
  top: 0;
  text-shadow: 0 0 5px black, 0 0 5px 5px black;
  text-shadow: 0 0 5px 5px black, 0 0 5px 5px black;
  box-shadow: 0 0 50px 50px rgba(0, 0, 0, 0.4);
  background: black;
  background: rgba(0, 0, 0, 0.4);
}
/* line 573, ../sass/components/_cosmic-elements.scss */
.feature-content-left .feature-content, .feature-content-right .feature-content {
  box-shadow: none;
  background: none;
  margin: 0;
  text-align: left;
  width: calc(100% - 100px);
}
@media all and (max-width: 959px) {
  /* line 558, ../sass/components/_cosmic-elements.scss */
  .feature-content-left, .feature-content-right {
    width: 75%;
  }
  /* line 584, ../sass/components/_cosmic-elements.scss */
  .feature-content-left .feature-content, .feature-content-right .feature-content {
    width: calc(100% - ($gutter-width / 2));
  }
}
@media all and (max-width: 659px) {
  /* line 558, ../sass/components/_cosmic-elements.scss */
  .feature-content-left, .feature-content-right {
    position: relative;
    padding: 0;
    width: 100%;
  }
  /* line 594, ../sass/components/_cosmic-elements.scss */
  .feature-content-left .feature-content, .feature-content-right .feature-content {
    background: #006241;
    text-align: center;
    width: 100%;
  }
}

/* line 601, ../sass/components/_cosmic-elements.scss */
.feature-content-right {
  right: 0;
  text-align: right;
  padding: 0 100px 0 0;
}
@media all and (max-width: 659px) {
  /* line 601, ../sass/components/_cosmic-elements.scss */
  .feature-content-right {
    padding: 0;
  }
}

/* line 612, ../sass/components/_cosmic-elements.scss */
.feature-scale p, .feature-stretch p {
  margin: 0;
}
/* line 615, ../sass/components/_cosmic-elements.scss */
.feature-scale p br, .feature-stretch p br {
  display: none;
}

/* line 621, ../sass/components/_cosmic-elements.scss */
.feature-scale {
  overflow: hidden;
  position: relative;
  background: black;
}
/* line 626, ../sass/components/_cosmic-elements.scss */
.feature-scale .feature-background {
  -webkit-filter: blur(20px);
  -moz-filter: blur(20px);
  filter: blur(20px);
}
/* line 630, ../sass/components/_cosmic-elements.scss */
.feature-scale img {
  display: block;
  width: 100%;
}

/* line 635, ../sass/components/_cosmic-elements.scss */
.feature-stretch {
  position: relative;
  padding-bottom: 0;
  display: block;
  height: 600px;
}
/* line 641, ../sass/components/_cosmic-elements.scss */
.feature-stretch .feature-frame {
  height: 600px;
}
/* line 645, ../sass/components/_cosmic-elements.scss */
.feature-stretch .feature-image {
  display: none;
}
@media all and (max-width: 959px) {
  /* line 635, ../sass/components/_cosmic-elements.scss */
  .feature-stretch {
    height: 400px;
  }
  /* line 652, ../sass/components/_cosmic-elements.scss */
  .feature-stretch .feature-frame {
    height: 400px;
  }
}
@media all and (max-width: 659px) {
  /* line 635, ../sass/components/_cosmic-elements.scss */
  .feature-stretch {
    height: auto;
  }
  /* line 660, ../sass/components/_cosmic-elements.scss */
  .feature-stretch .feature-frame {
    height: auto;
  }
  /* line 664, ../sass/components/_cosmic-elements.scss */
  .feature-stretch .feature-image {
    display: block;
  }
  /* line 668, ../sass/components/_cosmic-elements.scss */
  .feature-stretch .feature-background {
    display: none;
  }
}

/* Slideshow Classes (Utilizing Feature Images) */
/* line 675, ../sass/components/_cosmic-elements.scss */
.slideshow-flexslider {
  position: relative;
  padding-bottom: 0;
  display: block;
}
/* line 681, ../sass/components/_cosmic-elements.scss */
.slideshow-flexslider .slides {
  padding: 0;
}
/* line 684, ../sass/components/_cosmic-elements.scss */
.slideshow-flexslider .slides li {
  position: relative;
  padding-top: 0 !important;
  -webkit-backface-visibility: visible;
}
/* line 692, ../sass/components/_cosmic-elements.scss */
.slideshow-flexslider .flex-direction-nav a {
  background: white;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  margin: 0;
  transition: none;
}
/* line 699, ../sass/components/_cosmic-elements.scss */
.slideshow-flexslider .flex-direction-nav a:hover {
  background-color: rgba(255, 255, 255, 0.6);
}
/* line 702, ../sass/components/_cosmic-elements.scss */
.slideshow-flexslider .flex-direction-nav a:active {
  background-color: rgba(255, 255, 255, 0.9);
}
/* line 707, ../sass/components/_cosmic-elements.scss */
.slideshow-flexslider .flex-direction-nav .flex-prev, .slideshow-flexslider .flex-direction-nav .flex-next {
  background-repeat: no-repeat;
  text-indent: 90000px;
}
@media all and (min-width: 660px) {
  /* line 715, ../sass/components/_cosmic-elements.scss */
  .slideshow-flexslider .flex-direction-nav {
    display: block;
    height: 100%;
    left: 0;
    margin: auto;
    max-width: 1400px;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
  }
  /* line 726, ../sass/components/_cosmic-elements.scss */
  .slideshow-flexslider .flex-direction-nav a {
    display: block !important;
    height: 100px;
    width: 40px;
    opacity: 1 !important;
    margin: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    color: white;
  }
  /* line 737, ../sass/components/_cosmic-elements.scss */
  .slideshow-flexslider .flex-direction-nav .flex-prev:before, .slideshow-flexslider .flex-direction-nav .flex-next:before {
    display: none;
  }
  /* line 741, ../sass/components/_cosmic-elements.scss */
  .slideshow-flexslider .flex-direction-nav .flex-prev {
    background-position: 0px 15px;
    background-image: url("../images/slide-arrow-left.png");
    left: 0 !important;
  }
  /* line 746, ../sass/components/_cosmic-elements.scss */
  .slideshow-flexslider .flex-direction-nav .flex-next {
    background-position: 4px 15px;
    background-image: url("../images/slide-arrow-right.png");
    right: 0 !important;
  }
  /* line 753, ../sass/components/_cosmic-elements.scss */
  .slideshow-flexslider .flex-control-nav {
    height: 20px;
    position: absolute;
    bottom: 30px;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  /* line 762, ../sass/components/_cosmic-elements.scss */
  .slideshow-flexslider .flex-control-nav li {
    margin-top: 4px;
  }
  /* line 766, ../sass/components/_cosmic-elements.scss */
  .slideshow-flexslider .flex-control-nav li a.flex-active {
    background: rgba(255, 255, 255, 0.9) !important;
  }
}
@media all and (min-width: 960px) {
  /* line 774, ../sass/components/_cosmic-elements.scss */
  .slideshow-flexslider .flex-direction-nav a {
    width: 50px;
    height: 150px;
  }
  /* line 778, ../sass/components/_cosmic-elements.scss */
  .slideshow-flexslider .flex-direction-nav .flex-prev {
    background-position: 3px 40px;
  }
  /* line 781, ../sass/components/_cosmic-elements.scss */
  .slideshow-flexslider .flex-direction-nav .flex-next {
    background-position: 8px 40px;
  }
}
@media all and (max-width: 659px) {
  /* line 675, ../sass/components/_cosmic-elements.scss */
  .slideshow-flexslider {
    background: #006241;
    padding-bottom: 50px;
  }
  /* line 791, ../sass/components/_cosmic-elements.scss */
  .slideshow-flexslider .flex-direction-nav {
    position: relative;
  }
  /* line 794, ../sass/components/_cosmic-elements.scss */
  .slideshow-flexslider .flex-direction-nav a {
    display: inline-block;
    height: 50px;
    line-height: 50px;
    text-align: center;
    width: 50%;
  }
  /* line 801, ../sass/components/_cosmic-elements.scss */
  .slideshow-flexslider .flex-direction-nav a.flex-prev {
    background-position: center center;
    background-image: url("../images/slide-arrow-left-mobile.png");
  }
  /* line 805, ../sass/components/_cosmic-elements.scss */
  .slideshow-flexslider .flex-direction-nav a.flex-next {
    background-position: center center;
    background-image: url("../images/slide-arrow-right-mobile.png");
  }
  /* line 811, ../sass/components/_cosmic-elements.scss */
  .slideshow-flexslider .flex-direction-nav .flex-prev {
    left: 0 !important;
  }
  /* line 814, ../sass/components/_cosmic-elements.scss */
  .slideshow-flexslider .flex-direction-nav .flex-next {
    right: 0 !important;
  }
  /* line 819, ../sass/components/_cosmic-elements.scss */
  .slideshow-flexslider .feature-background {
    display: none;
  }
}
@media all and (max-width: 959px) {
  /* line 825, ../sass/components/_cosmic-elements.scss */
  .slideshow-flexslider .flex-control-nav {
    display: none;
  }
}

/**
 * @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 16, ../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 35, ../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 57, ../sass/_print.scss */
  body,
  #page,
  #main,
  #content {
    color: #000;
    background-color: transparent !important;
    background-image: none !important;
  }

  /* Hide sidebars and nav elements. */
  /* line 77, ../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 3, ../sass/themes/_theme-cosmic.scss */
body {
  background: #000000;
  min-width: 240px;
}

/* line 8, ../sass/themes/_theme-cosmic.scss */
#header {
  background: #00704A;
}
/* line 11, ../sass/themes/_theme-cosmic.scss */
#header .header__site-link {
  color: #FFCE00;
}

/* line 16, ../sass/themes/_theme-cosmic.scss */
.region-header {
  color: white;
}
/* line 19, ../sass/themes/_theme-cosmic.scss */
.region-header a {
  color: white;
}
/* line 22, ../sass/themes/_theme-cosmic.scss */
.region-header a:hover {
  color: #fdcd07;
  text-decoration: none;
}

/* line 33, ../sass/themes/_theme-cosmic.scss */
.region-search .block-search .form-text {
  background: #004321;
  border: 1px solid #314b36;
  color: white;
}
/* line 39, ../sass/themes/_theme-cosmic.scss */
.region-search .block-search .form-submit {
  background: #004321 url("../images/search-icon.png") no-repeat center center;
  background-size: 18px;
}
/* line 43, ../sass/themes/_theme-cosmic.scss */
.lt-ie9 .region-search .block-search .form-submit {
  background-image: url("../images/search-icon-lowres.png");
}

/* line 50, ../sass/themes/_theme-cosmic.scss */
#main {
  background: #FFFFFF;
}

/*
 * Navbar Styling
 */
/* line 58, ../sass/themes/_theme-cosmic.scss */
.navbar a:link, .navbar a:visited {
  color: #006241;
}
/* line 62, ../sass/themes/_theme-cosmic.scss */
.navbar a:hover {
  color: black;
}
/* line 66, ../sass/themes/_theme-cosmic.scss */
.navbar a.active, .navbar a.active-trail {
  font-weight: bold;
  color: black;
}
/* line 71, ../sass/themes/_theme-cosmic.scss */
.navbar .active, .navbar .active-trail, .navbar a:hover {
  background: white;
}
/* line 76, ../sass/themes/_theme-cosmic.scss */
.navbar #main-menu {
  background: #F2F5DD;
  font-weight: 400;
}
/* line 80, ../sass/themes/_theme-cosmic.scss */
.navbar #main-menu a {
  border-left: 1px solid #D8DAC5;
}
/* line 83, ../sass/themes/_theme-cosmic.scss */
.navbar #main-menu li:last-of-type a {
  border-right: 1px solid #D8DAC5;
}

/* line 89, ../sass/themes/_theme-cosmic.scss */
.sidebar .block {
  background: #F2F5DD;
}

/* line 93, ../sass/themes/_theme-cosmic.scss */
.sidebar .block h2 {
  font-size: 14px;
  line-height: 22px;
  color: #00704A;
  text-transform: uppercase;
  font-weight: bold;
}
