/**
 * @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. */
/*$brand-teal: #1b5b6f;
$brand-light-teal: #457e89;
$brand-teal-grey: #c7dee2;
$brand-dark-grey: #4f5452;
$brand-light-grey: #ededed;*/
/* RETINA DISPLAY IMAGES */
/* 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: "Museo-slab";
  /* 1 */
  font-size: 100%;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  line-height: 1.5em;
}

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

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

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

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

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 182, ../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 190, ../sass/_normalize.scss */
h2 {
  font-size: 1.5em;
  line-height: 2em;
  margin-top: 1em;
  margin-bottom: 1em;
}

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

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

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

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

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

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

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

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

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

/* Correct font family set oddly in Safari 5 and Chrome. */
/* line 253, ../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 262, ../sass/_normalize.scss */
pre {
  white-space: pre-wrap;
}

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * Forms
 */
/* Define consistent border, margin, and padding. */
/* line 383, ../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 398, ../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 416, ../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 433, ../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 444, ../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 460, ../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 472, ../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 483, ../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 497, ../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 507, ../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 513, ../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 522, ../sass/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

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

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

/* Component (SMACSS module) rules */
/**
 * @file
 * SMACSS Modules
 *
 * Adds modular sets of styles.
 *
 * Additional useful selectors can be found in Zen's online documentation.
 * https://drupal.org/node/1707736
 */
/**
 * Wireframes.
 */
/* line 22, ../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 40, ../sass/components/_misc.scss */
.element-invisible,
.element-focusable,
#navigation .block-menu .block__title,
#navigation .block-menu-block .block__title {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

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

/*
 * The skip-link link will be completely hidden until a user tabs to the link.
 */
/* line 62, ../sass/components/_misc.scss */
#skip-link {
  margin: 0;
}
/* line 66, ../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 82, ../sass/components/_misc.scss */
.header__logo {
  float: left;
  /* LTR */
  margin: 0;
  padding: 0;
}

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

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

/* The name of the website. */
/* line 99, ../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 107, ../sass/components/_misc.scss */
.header__site-link:link, .header__site-link:visited {
  color: #000;
  text-decoration: none;
}
/* line 113, ../sass/components/_misc.scss */
.header__site-link:hover, .header__site-link:focus {
  text-decoration: underline;
}

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

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

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

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

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

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

/**
 * Messages.
 */
/* line 198, ../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 213, ../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 222, ../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 232, ../sass/components/_misc.scss */
.messages__list {
  margin: 0;
}

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

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

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

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

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

/**
 * Tabs.
 */
/* Basic positioning styles shared by primary and secondary tabs. */
/* line 266, ../sass/components/_misc.scss */
.tabs-primary, .tabs-secondary {
  zoom: 1;
  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 42, ../sass/_mixins.scss */
.tabs-primary:after, .tabs-secondary:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* line 276, ../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 280, ../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 293, ../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 302, ../sass/components/_misc.scss */
.is-active.tabs-primary__tab {
  border-bottom-color: white;
}

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

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

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

/* line 359, ../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;
  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 368, ../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 373, ../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 401, ../sass/components/_misc.scss */
.inline {
  display: inline;
  padding: 0;
}
/* line 405, ../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 413, ../sass/components/_misc.scss */
span.field-label {
  padding: 0 1em 0 0;
  /* LTR */
}

/**
 * "More" links.
 */
/*.more-link {
    text-align: center;
    border-radius: 2px;
    font-family: $effra;
    text-transform: uppercase;
  a { 
    padding: 7px;
    border-radius: 3px;
    background: $brand-yellow;
    color: $brand-gray;
    font-family: $effra;
    font-weight: 900;
    text-transform: uppercase;
    -webkit-box-shadow: 0px 3px 5px -1px rgba(158,150,158,1);
    -moz-box-shadow: 0px 3px 5px -1px rgba(158,150,158,1);
    box-shadow: 0px 3px 5px -1px rgba(158,150,158,1);
  }
}*/
/* Tabs on Homepage Styles */
/*a.more-link {
   text-align: center;
   font-family: $effra;
   padding: 7px;
   border-radius: 3px;
   background: $brand-yellow;
   color: $brand-gray;
   font-family: $effra;
   font-weight: 900;
   text-transform: uppercase;
   -webkit-box-shadow: 0px 3px 5px -1px rgba(158,150,158,1);
   -moz-box-shadow: 0px 3px 5px -1px rgba(158,150,158,1);
   box-shadow: 0px 3px 5px -1px rgba(158,150,158,1);
}*/
/**
 * "More Help" links.
 */
/* line 461, ../sass/components/_misc.scss */
.more-help-link {
  text-align: right;
  /* LTR */
}

/* line 464, ../sass/components/_misc.scss */
.more-help-link a {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA7UlEQVR42qWTPQqDQBCFcwSPkCNITpAj5AjeIm1uYpkyR7Cy2Mot7OwsBAsRwUKwmOwLGRle3EIy8PyBfZ/z3J2TiPylz8VWWZZpUB40BonRKyizaxkA88MYYiqCEgv4MTvnZJom0VqWRbz3FlJZgLYtqmEY1Lg9r+sKsIXcLSC3AC019H0vqLquLeC5AfiHYSGkcdAJimKIBQiJ4+CO92OAtm0FNc8zOjkMwE5Q63FAtbeg6zpAYvG8BWR7i5qmQYwY4MIHqYhE2DOPQWcGJBQF2XU72ZzyUeZ5GCNt5/hybJgYdAXsq5sOEE/jG6dC5IOqCXTmAAAAAElFTkSuQmCC');
  padding: 2px 16px;
  background: #e4e86d;
  color: #5f6062;
  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 482, ../sass/components/_misc.scss */
.pager {
  clear: both;
  padding: 0;
  text-align: center;
}

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

/**
 * Blocks.
 */
/* Block wrapper. */
/* line 514, ../sass/components/_misc.scss */
.block {
  /*margin-bottom: rhythm(1);*/
}

/**
 * Menus.
 */
/* line 521, ../sass/components/_misc.scss */
.menu__item.is-leaf {
  list-style-image: none;
  list-style-type: none;
}

/* line 528, ../sass/components/_misc.scss */
.menu__item.is-collapsed {
  list-style-image: url("/sites/default/files/expanded.png");
}

/* line 532, ../sass/components/_misc.scss */
.menu__item.is-expanded.active-trail {
  list-style-image: none;
  list-style: none;
  margin-left: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
/* line 780, ../sass/components/_misc.scss */
html.js .collapsible .fieldset-legend {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMDE0IDc5LjE1Njc5NywgMjAxNC8wOC8yMC0wOTo1MzowMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MTE5QjU1N0QxNDUwMTFFNTlEMkFEMUQxNjQ2NTA3QTYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MTE5QjU1N0UxNDUwMTFFNTlEMkFEMUQxNjQ2NTA3QTYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDoxMTlCNTU3QjE0NTAxMUU1OUQyQUQxRDE2NDY1MDdBNiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDoxMTlCNTU3QzE0NTAxMUU1OUQyQUQxRDE2NDY1MDdBNiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PioPTSEAAAA1SURBVHjaYrQyNf3PgAMwHT11ihGbBEicCcZAlwAz/v//D8cgK5D5jCACp50MeABeSYAAAwBtSiGkBkBLnwAAAABJRU5ErkJggg==');
  background-position: 5px 65%;
  /* LTR */
  background-repeat: no-repeat;
  padding-left: 15px;
  /* LTR */
}
/* line 789, ../sass/components/_misc.scss */
html.js .collapsed .fieldset-legend {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMDE0IDc5LjE1Njc5NywgMjAxNC8wOC8yMC0wOTo1MzowMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MkNEQTVCNDIxNDUwMTFFNTlEMkFEMUQxNjQ2NTA3QTYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MkNEQTVCNDMxNDUwMTFFNTlEMkFEMUQxNjQ2NTA3QTYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDoyQ0RBNUI0MDE0NTAxMUU1OUQyQUQxRDE2NDY1MDdBNiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDoyQ0RBNUI0MTE0NTAxMUU1OUQyQUQxRDE2NDY1MDdBNiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PrJZL7UAAAA7SURBVHjaYvj//z8DCG/duu0/jA3DTAxIYNu27f+R+SiS6AowJJEVYJX08vJkxCoJk8CQRJYAAYAAAwCbhSEawxDH2wAAAABJRU5ErkJggg==');
  /* LTR */
  background-position: 5px 50%;
  /* LTR */
}
/* line 796, ../sass/components/_misc.scss */
.fieldset-legend .summary {
  color: #999;
  font-size: 0.9em;
  margin-left: 0.5em;
}

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

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

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

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

/**
 * Progress bar.
 *
 * @see progress.js
 */
/* line 832, ../sass/components/_misc.scss */
.progress {
  font-weight: bold;
}
/* line 835, ../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;
  border-radius: 3px;
}
/* line 841, ../sass/components/_misc.scss */
.progress .filled {
  background-color: #0072b9;
  background-image: url('../images/progress.gif?1398863088');
}

/* Global/Mobile Custom Styles  
  --------------------------------------------------------------------- */
/* line 4, ../sass/components/_forms.scss */
input, select, textarea {
  width: 100%;
}

/* line 8, ../sass/components/_forms.scss */
input[type="checkbox"], input[type="radio"] {
  width: auto;
}

/* line 12, ../sass/components/_forms.scss */
input[type="submit"] {
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  background: none no-repeat scroll 0 0 #346768;
  border: none;
  color: #fff;
  display: inline-block;
  font-family: "Museo-slab";
  padding: .375em 1.5em;
}
/* line 21, ../sass/components/_forms.scss */
input[type="submit"]:hover {
  background: none no-repeat scroll 0 0 #264c4d;
}

/* line 26, ../sass/components/_forms.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 1.5em 0;
  padding: .5em 1em 1em;
}
/* line 30, ../sass/components/_forms.scss */
fieldset legend {
  background: none no-repeat scroll 0 0 #346768;
  color: #fff;
  font-family: "Museo-slab";
  font-size: 1.125em;
  padding: .375em .875em;
}
/* line 36, ../sass/components/_forms.scss */
fieldset legend a {
  color: #fff;
}
/* line 41, ../sass/components/_forms.scss */
fieldset.collapsible .fieldset-legend {
  padding: 0 !important;
}
/* line 43, ../sass/components/_forms.scss */
fieldset.collapsible .fieldset-legend .summary {
  display: none;
}
/* line 44, ../sass/components/_forms.scss */
fieldset.collapsible .fieldset-legend .fieldset-legend-prefix {
  display: none;
}

/* line 51, ../sass/components/_forms.scss */
.location .form-item label {
  display: block;
  float: none;
  padding-right: 0;
  text-align: left;
  width: auto;
}
/* line 58, ../sass/components/_forms.scss */
.location .form-item input {
  display: block;
  margin-bottom: 0;
  width: 100%;
}

/* line 67, ../sass/components/_forms.scss */
.term-reference-tree-button, .no-term-reference-tree-button {
  display: none;
}

/* Tablet styles 
  --------------------------------------------------------------------- */
/* Large Tablet 768+ styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 768px) {
  /* line 83, ../sass/components/_forms.scss */
  input, select, textarea {
    width: inherit;
  }

  /* line 89, ../sass/components/_forms.scss */
  .location .form-item label {
    display: block;
    float: left;
    padding-right: 10px;
    text-align: left;
    width: 10em;
  }
  /* line 96, ../sass/components/_forms.scss */
  .location .form-item input {
    display: block;
    margin-bottom: 5px;
    width: 25em;
  }
}
/* Desktop 960+ styles 
  --------------------------------------------------------------------- */
/* Desktop 1200 styles 
  --------------------------------------------------------------------- */
/* Global/Mobile Custom Styles  
  --------------------------------------------------------------------- */
/* line 4, ../sass/components/_tables.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 1.5em 0;
  width: 100%;
}
/* line 9, ../sass/components/_tables.scss */
table th {
  background: none no-repeat scroll 0 0 #346768;
  color: #fff;
}
/* line 13, ../sass/components/_tables.scss */
table th, table td {
  padding: .25em .625em;
}

/* line 21, ../sass/components/_tables.scss */
.view-state-profiles table th.views-field-title {
  text-align: left;
}

/* line 27, ../sass/components/_tables.scss */
table.views-table.cols-4 {
  max-width: 100%;
}

/* Tablet styles 
  --------------------------------------------------------------------- */
/* Large Tablet 768+ styles 
  --------------------------------------------------------------------- */
/* Desktop 960+ styles 
  --------------------------------------------------------------------- */
/* Desktop 1200 styles 
  --------------------------------------------------------------------- */
/* Global/Mobile Custom Styles  
  --------------------------------------------------------------------- */
/* line 4, ../sass/components/_buttons.scss */
.button, .btn, #edit-submit--2, .node-readmore a, .action-links li a {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  background: none no-repeat scroll 0 0 #e3dedc;
  -webkit-box-shadow: 0px 3px 5px -1px #9e969e;
  -moz-box-shadow: 0px 3px 5px -1px #9e969e;
  box-shadow: 0px 3px 5px -1px #9e969e;
  color: #336666;
  display: inline-block;
  font-family: "Effra";
  font-size: .875em;
  font-weight: 900;
  padding: .25em 1em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
/* line 19, ../sass/components/_buttons.scss */
.button:hover, .btn:hover, #edit-submit--2:hover, .node-readmore a:hover, .action-links li a:hover {
  background: none no-repeat scroll 0 0 #dad3d1;
}

/* Tablet styles 
  --------------------------------------------------------------------- */
/* Large Tablet 768+ styles 
  --------------------------------------------------------------------- */
/* Desktop 960+ styles 
  --------------------------------------------------------------------- */
/* Desktop 1200 styles 
  --------------------------------------------------------------------- */
/* Global/Mobile Custom Styles  
  --------------------------------------------------------------------- */
/* line 4, ../sass/components/_typography.scss */
h1, h2, h3, h4, h5, h6 {
  font-family: "Effra";
  line-height: 1.25em;
}

/* line 9, ../sass/components/_typography.scss */
#page-title {
  margin: 0 0 1em;
  text-transform: uppercase;
  color: #336666;
}

/* line 15, ../sass/components/_typography.scss */
h1 {
  font-size: 2em;
  margin: 0 0 1em;
}

/* line 19, ../sass/components/_typography.scss */
h2 {
  color: #5f6062;
  font-size: 1.875em;
  margin: 0 0 .5em;
}

/* line 24, ../sass/components/_typography.scss */
h3 {
  font-size: 1.5em;
  margin: 0 0 .5em;
  color: #bc5405;
}

/* line 29, ../sass/components/_typography.scss */
h4 {
  font-size: 1.375em;
  margin: 0 0 .5em;
}

/* line 33, ../sass/components/_typography.scss */
h5 {
  font-size: 1.25em;
  margin: 0 0 .5em;
}

/* line 37, ../sass/components/_typography.scss */
h6 {
  font-size: 1.125em;
  margin: 0 0 .25em;
}

/* line 42, ../sass/components/_typography.scss */
p {
  margin: 0 0 1.5em;
}

/* Global/Mobile Custom Styles  
  --------------------------------------------------------------------- */
/* line 4, ../sass/components/_accordions.scss */
.ui-widget {
  font-family: "Museo-slab";
  font-size: 16px;
}
/* line 8, ../sass/components/_accordions.scss */
.ui-widget.ui-accordion .ui-accordion-header {
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  background: none no-repeat scroll 0 0 #346768;
  border: none;
  color: #fff;
  font-size: 1em;
  padding: .875em .875em .875em 2.25em;
}
/* line 15, ../sass/components/_accordions.scss */
.ui-widget.ui-accordion .ui-accordion-header:hover {
  background: none no-repeat scroll 0 0 #264c4d;
}
/* line 18, ../sass/components/_accordions.scss */
.ui-widget.ui-accordion .ui-accordion-header a {
  color: #fff;
  text-decoration: none;
}
/* line 21, ../sass/components/_accordions.scss */
.ui-widget.ui-accordion .ui-accordion-header a:link, .ui-widget.ui-accordion .ui-accordion-header a.visited {
  color: #fff;
  text-decoration: none;
}
/* line 26, ../sass/components/_accordions.scss */
.ui-widget.ui-accordion .ui-accordion-header .ui-icon {
  background-image: url("../images/icon-arrow-right-white.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-color: transparent;
  height: 14px;
  left: .875em;
  margin-top: -6px;
  width: 8px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* line 71, ../sass/_mixins.scss */
  .ui-widget.ui-accordion .ui-accordion-header .ui-icon {
    background-image: url("../images/icon-arrow-right-white@2x.png");
    background-size: 8px 14px;
  }
}
/* line 37, ../sass/components/_accordions.scss */
.ui-widget.ui-accordion .ui-accordion-header.ui-state-active .ui-icon {
  background-image: url("../images/icon-arrow-down-white.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-color: transparent;
  height: 8px;
  left: .75em;
  margin-top: -3px;
  width: 14px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* line 71, ../sass/_mixins.scss */
  .ui-widget.ui-accordion .ui-accordion-header.ui-state-active .ui-icon {
    background-image: url("../images/icon-arrow-down-white@2x.png");
    background-size: 14px 8px;
  }
}

/* Tablet styles 
  --------------------------------------------------------------------- */
/* Large Tablet 768+ styles 
  --------------------------------------------------------------------- */
/* Desktop 960+ styles 
  --------------------------------------------------------------------- */
/* Desktop 1200 styles 
  --------------------------------------------------------------------- */
/* Global/Mobile Custom Styles  
  --------------------------------------------------------------------- */
/* line 4, ../sass/components/_custom.scss */
a, a.active {
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  text-decoration: underline;
  color: #336666;
}

/* line 10, ../sass/components/_custom.scss */
a:hover {
  text-decoration: none;
}

/* line 14, ../sass/components/_custom.scss */
.media-embed, .embedded-video {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
  clear: both;
  float: none !important;
  margin: 0 !important;
}

/* line 28, ../sass/components/_custom.scss */
.media-embed iframe,
.embedded-video iframe,
.media-embed object,
.embedded-video object,
.media-embed embed,
.embedded-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

/* line 3, ../sass/components/_grant_search_form.scss */
#views-exposed-form-awarded-grants-search-page .views-exposed-widgets #edit-field-institution-wrapper {
  clear: left;
}
/* line 10, ../sass/components/_grant_search_form.scss */
#views-exposed-form-awarded-grants-search-page .views-exposed-widgets #edit-search-api-views-fulltext-wrapper,
#views-exposed-form-awarded-grants-search-page .views-exposed-widgets #edit-field-categories-wrapper {
  clear: left;
}

/* Large Tablet 768+ styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 562px) and (max-width: 767px) {
  /* line 19, ../sass/components/_grant_search_form.scss */
  .views-exposed-form .views-exposed-widget {
    float: none;
  }

  /* line 22, ../sass/components/_grant_search_form.scss */
  .chosen-container-active .chosen-choices {
    width: 571px;
  }

  /* line 27, ../sass/components/_grant_search_form.scss */
  #views-exposed-form-awarded-grants-search-page .views-exposed-widgets #edit-field-institution-wrapper {
    clear: left;
  }
  /* line 34, ../sass/components/_grant_search_form.scss */
  #views-exposed-form-awarded-grants-search-page .views-exposed-widgets #edit-search-api-views-fulltext-wrapper,
  #views-exposed-form-awarded-grants-search-page .views-exposed-widgets #edit-field-categories-wrapper {
    clear: left;
  }
}
/* Desktop 960+ styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 960px) {
  /* line 47, ../sass/components/_grant_search_form.scss */
  .views-exposed-form .views-exposed-widget {
    padding: .4em;
  }

  /* line 53, ../sass/components/_grant_search_form.scss */
  #views-exposed-form-awarded-grants-search-page .views-exposed-widgets #edit-field-institution-wrapper {
    clear: left;
  }
  /* line 60, ../sass/components/_grant_search_form.scss */
  #views-exposed-form-awarded-grants-search-page .views-exposed-widgets #edit-search-api-views-fulltext-wrapper,
  #views-exposed-form-awarded-grants-search-page .views-exposed-widgets #edit-field-categories-wrapper {
    clear: left;
  }
}
/* Desktop 1200 styles 
  --------------------------------------------------------------------- */
/* 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.
 */
/* line 34, ../sass/layouts/_responsive.scss */
#page,
.region-bottom {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

/* Apply the shared properties of grid items in a single, efficient ruleset. */
/* line 46, ../sass/layouts/_responsive.scss */
#header,
#content,
#navigation,
.region-sidebar-first,
.region-sidebar-second,
#footer {
  padding: 0;
}

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

/* line 58, ../sass/layouts/_responsive.scss */
.word-wrap {
  word-break: break-all;
}

/* Navigation bar */
@media all and (min-width: 480px) {
  /* line 65, ../sass/layouts/_responsive.scss */
  #main {
    /* Move all the children of #main down to make room. */
    /*padding-top: $nav-height;*/
    position: relative;
  }

  /* line 70, ../sass/layouts/_responsive.scss */
  body.front #navigation {
    position: absolute;
  }

  /* line 73, ../sass/layouts/_responsive.scss */
  #navigation {
    /* Move the navbar up inside #main's padding. */
    position: absolute;
    top: 0;
    height: 0;
    z-index: 99;
    width: 100%;
  }
}
/**
 * Use 3 grid columns for smaller screens.
 */
@media all and (min-width: 480px) and (max-width: 959px) {
  /**
   * The layout when there is only one sidebar, the left one.
   */
  /* line 96, ../sass/layouts/_responsive.scss */
  .sidebar-first {
    /* Span 2 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
  }
  /* line 98, ../sass/layouts/_responsive.scss */
  .sidebar-first #content {
    float: left;
    width: 66.66667%;
    margin-left: 33.33333%;
    margin-right: -100%;
  }
  /* line 103, ../sass/layouts/_responsive.scss */
  .sidebar-first .region-sidebar-first {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
  }

  /**
   * The layout when there is only one sidebar, the right one.
   */
  /* line 111, ../sass/layouts/_responsive.scss */
  .sidebar-second {
    /* Span 2 columns, starting in 1st column from left. */
    /* Span 1 column, starting in 3rd column from left. */
  }
  /* line 113, ../sass/layouts/_responsive.scss */
  .sidebar-second #content {
    float: left;
    width: 66.66667%;
    margin-left: 0%;
    margin-right: -66.66667%;
  }
  /* line 118, ../sass/layouts/_responsive.scss */
  .sidebar-second .region-sidebar-second {
    float: left;
    width: 33.33333%;
    margin-left: 66.66667%;
    margin-right: -100%;
  }

  /**
   * The layout when there are two sidebars.
   */
  /* line 126, ../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 128, ../sass/layouts/_responsive.scss */
  .two-sidebars #content {
    float: left;
    width: 66.66667%;
    margin-left: 33.33333%;
    margin-right: -100%;
  }
  /* line 133, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
  }
  /* line 138, ../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 144, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
  }
  /* line 148, ../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 153, ../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 157, ../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 5 grid columns for larger screens.
 */
@media all and (min-width: 960px) {
  /**
   * The layout when there is only one sidebar, the left one.
   */
  /* line 174, ../sass/layouts/_responsive.scss */
  .sidebar-first {
    /* Span 4 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
  }
  /* line 176, ../sass/layouts/_responsive.scss */
  .sidebar-first #content {
    float: left;
    width: 80%;
    margin-left: 20%;
    margin-right: -100%;
  }
  /* line 181, ../sass/layouts/_responsive.scss */
  .sidebar-first .region-sidebar-first {
    float: left;
    width: 20%;
    margin-left: 0%;
    margin-right: -20%;
  }

  /**
   * The layout when there is only one sidebar, the right one.
   */
  /* line 189, ../sass/layouts/_responsive.scss */
  .sidebar-second {
    /* Span 4 columns, starting in 1st column from left. */
    /* Span 1 column, starting in 5th column from left. */
  }
  /* line 191, ../sass/layouts/_responsive.scss */
  .sidebar-second #content {
    float: left;
    width: 80%;
    margin-left: 0%;
    margin-right: -80%;
  }
  /* line 196, ../sass/layouts/_responsive.scss */
  .sidebar-second .region-sidebar-second {
    float: left;
    width: 20%;
    margin-left: 80%;
    margin-right: -100%;
  }

  /**
   * The layout when there are two sidebars.
   */
  /* line 204, ../sass/layouts/_responsive.scss */
  .two-sidebars {
    /* Span 3 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
    /* Span 1 column, starting in 5th column from left. */
  }
  /* line 206, ../sass/layouts/_responsive.scss */
  .two-sidebars #content {
    float: left;
    width: 60%;
    margin-left: 20%;
    margin-right: -80%;
  }
  /* line 211, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 20%;
    margin-left: 0%;
    margin-right: -20%;
  }
  /* line 216, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 20%;
    margin-left: 80%;
    margin-right: -100%;
  }
}
/* Global/Mobile Custom Styles  
  --------------------------------------------------------------------- */
/* line 4, ../sass/layouts/_home.scss */
.front h1#page-title {
  display: none;
}

/* line 8, ../sass/layouts/_home.scss */
#block-block-1 {
  background-image: url("/sites/default/files/cta-1.png");
  background-repeat: no-repeat;
  background-position: 7% 50%;
  width: 100%;
}
/* line 13, ../sass/layouts/_home.scss */
#block-block-1 a.contextual-links-trigger {
  width: 3px;
  font-size: 10px !important;
}

/* line 19, ../sass/layouts/_home.scss */
#block-block-2 {
  background-image: url("/sites/default/files/cta-2.png");
  background-repeat: no-repeat;
  background-position: 7% 50%;
  width: 100%;
  border-left: 1px solid white;
}
/* line 25, ../sass/layouts/_home.scss */
#block-block-2 a.contextual-links-trigger {
  width: 3px;
  font-size: 10px !important;
}

/* line 31, ../sass/layouts/_home.scss */
.apply-grant-block {
  background: #336666;
  color: white;
  font-family: "Effra";
  font-weight: bold;
  text-align: center;
}
/* line 37, ../sass/layouts/_home.scss */
.apply-grant-block p {
  margin: 0;
}
/* line 38, ../sass/layouts/_home.scss */
.apply-grant-block a {
  /*background: $brand-light-teal;*/
  color: white;
  display: block;
  padding: 2em .625em;
  text-decoration: none;
}
/* line 44, ../sass/layouts/_home.scss */
.apply-grant-block a:hover {
  background: #155056;
  text-decoration: none;
}

/* line 51, ../sass/layouts/_home.scss */
.manage-your-grant {
  background: #336666;
  color: white;
  font-family: "Effra";
  font-weight: bold;
  text-align: center;
}
/* line 57, ../sass/layouts/_home.scss */
.manage-your-grant p {
  margin: 0;
}
/* line 58, ../sass/layouts/_home.scss */
.manage-your-grant a {
  /*background: $brand-teal;*/
  color: white;
  display: block;
  padding: 2em .625em;
  text-decoration: none;
}
/* line 64, ../sass/layouts/_home.scss */
.manage-your-grant a:hover {
  background: #295252;
  text-decoration: none;
}

/* line 71, ../sass/layouts/_home.scss */
#block-cg-custom-homepage-search-form {
  background: #4f5452;
  color: white;
  font-family: "Effra";
  font-weight: bold;
  padding: 1em .625em;
  text-align: center;
}
/* line 78, ../sass/layouts/_home.scss */
#block-cg-custom-homepage-search-form p {
  margin: 0;
}
/* line 79, ../sass/layouts/_home.scss */
#block-cg-custom-homepage-search-form .block-title {
  color: white;
  font-size: 1em;
  margin: 0;
  text-transform: uppercase;
}
/* line 85, ../sass/layouts/_home.scss */
#block-cg-custom-homepage-search-form form {
  margin: 0 auto;
  max-width: 320px;
  position: relative;
}
/* line 90, ../sass/layouts/_home.scss */
#block-cg-custom-homepage-search-form .form-item {
  margin: 0;
}
/* line 92, ../sass/layouts/_home.scss */
#block-cg-custom-homepage-search-form .form-item label {
  display: none;
}
/* line 96, ../sass/layouts/_home.scss */
#block-cg-custom-homepage-search-form input[type="submit"] {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  background-image: url("../images/icon-magglass.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #d4d6d5;
  cursor: pointer;
  display: inline-block;
  height: 25px;
  padding: 0;
  position: absolute;
  right: 0;
  text-indent: -9999px;
  top: 0;
  width: 28px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* line 71, ../sass/_mixins.scss */
  #block-cg-custom-homepage-search-form input[type="submit"] {
    background-image: url("../images/icon-magglass@2x.png");
    background-size: 18px 18px;
  }
}

/* line 115, ../sass/layouts/_home.scss */
#block-search-form {
  padding: 10px 20px 10px 10px;
  background: #5f6062;
  min-height: 76px;
}
/* line 119, ../sass/layouts/_home.scss */
#block-search-form input#edit-submit {
  background: url("/sites/default/files/search-icon.png");
  background-repeat: no-repeat;
  border: medium none;
  height: 20px;
  position: relative;
  right: 26px;
  text-indent: -9999px;
  top: 1px;
  width: 20px;
}
/* line 130, ../sass/layouts/_home.scss */
#block-search-form .block-title {
  color: white;
  font-size: 1em;
}

/* line 137, ../sass/layouts/_home.scss */
.about-block {
  clear: both;
  margin: 0 0 2em;
  padding: 1em .625em;
  text-align: center;
}
/* line 142, ../sass/layouts/_home.scss */
.about-block .block-title {
  color: #336666;
  border-bottom: 1px solid #ededed;
  line-height: 1;
  margin: 1em 0 .5em;
  padding: 0 0 .25em;
  text-transform: uppercase;
}

/* line 152, ../sass/layouts/_home.scss */
#block-block-4 div.contextual-links-wrapper {
  right: 36px;
}

/* line 157, ../sass/layouts/_home.scss */
.whats-new-icon {
  padding: .625em;
}
/* line 159, ../sass/layouts/_home.scss */
.whats-new-icon .block-title {
  background: transparent url("/sites/default/files/whats-new-icon.png") no-repeat scroll left center/40px 40px;
  margin: 0 0 .875em;
  min-height: 45px;
  padding: 0 0 0 2em;
}
/* line 166, ../sass/layouts/_home.scss */
.whats-new-icon .view-whats-new .view-header {
  display: none;
}
/* line 168, ../sass/layouts/_home.scss */
.whats-new-icon .view-whats-new .view-content .views-row {
  margin: 0 0 1.5em;
}
/* line 170, ../sass/layouts/_home.scss */
.whats-new-icon .view-whats-new .view-content .views-row .views-field-title {
  font-family: "Effra";
  font-size: 1.125em;
  line-height: 1.25em;
  margin: 0 0 .25em;
}

/* line 182, ../sass/layouts/_home.scss */
.upcoming-events-icon {
  padding: .625em;
}
/* line 184, ../sass/layouts/_home.scss */
.upcoming-events-icon .block-title {
  background: transparent url("/sites/default/files/event-icon.png") no-repeat scroll left center/38px 45px;
  margin: 0 0 .875em;
  min-height: 45px;
  padding: 0 0 0 2em;
}
/* line 191, ../sass/layouts/_home.scss */
.upcoming-events-icon .view-upcoming-events .view-header {
  display: none;
}
/* line 193, ../sass/layouts/_home.scss */
.upcoming-events-icon .view-upcoming-events .view-content .views-row {
  margin: 0 0 1.5em;
}
/* line 195, ../sass/layouts/_home.scss */
.upcoming-events-icon .view-upcoming-events .view-content .views-row .views-field-title {
  font-family: "Effra";
  font-size: 1.125em;
  line-height: 1.25em;
  margin: 0 0 .25em;
}

/* line 207, ../sass/layouts/_home.scss */
.connect-icon {
  padding: .625em;
}
/* line 209, ../sass/layouts/_home.scss */
.connect-icon .block-title {
  background: transparent url("/sites/default/files/connect-icon.png") no-repeat scroll left center/40px 30px;
  margin: 0 0 .875em;
  min-height: 45px;
  padding: 0 0 0 2em;
}
/* line 216, ../sass/layouts/_home.scss */
.connect-icon #cc_signup_form_1 .form-item {
  margin: 1em 0 .25em;
}
/* line 221, ../sass/layouts/_home.scss */
.connect-icon #cc_signup_form_1 .contact-form-text {
  font-size: .875em;
  line-height: 1.5em;
  padding: .5em .625em 0;
}

/* Tablet styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 480px) {
  /* line 236, ../sass/layouts/_home.scss */
  #block-block-1 {
    width: 100%;
  }

  /* line 239, ../sass/layouts/_home.scss */
  #block-block-2 {
    width: 100%;
  }

  /* line 243, ../sass/layouts/_home.scss */
  #block-cg-custom-homepage-search-form {
    clear: left;
  }

  /* line 248, ../sass/layouts/_home.scss */
  .about-block .block-title {
    display: inline-block;
    padding: 0 2em .25em;
  }
}
/* Large Tablet 768+ styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 768px) {
  /* line 260, ../sass/layouts/_home.scss */
  #block-block-1 {
    width: 49.79%;
    float: left;
  }

  /* line 264, ../sass/layouts/_home.scss */
  #block-block-2 {
    width: 50%;
    float: right;
    border-left: none;
  }

  /* line 270, ../sass/layouts/_home.scss */
  .about-block {
    padding: 1em 4em;
  }

  /* line 277, ../sass/layouts/_home.scss */
  .whats-new-icon {
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -50%;
    padding: 0;
  }
  /* line 280, ../sass/layouts/_home.scss */
  .whats-new-icon .block-title {
    background-position: .25em center;
  }
  /* line 283, ../sass/layouts/_home.scss */
  .whats-new-icon .view-whats-new {
    padding: 0 1em;
  }

  /* line 287, ../sass/layouts/_home.scss */
  .upcoming-events-icon {
    float: left;
    width: 50%;
    margin-left: 50%;
    margin-right: -100%;
    padding: 0;
  }
  /* line 290, ../sass/layouts/_home.scss */
  .upcoming-events-icon .block-title {
    background-position: .25em center;
  }
  /* line 293, ../sass/layouts/_home.scss */
  .upcoming-events-icon .view-upcoming-events {
    padding: 0 1em;
  }

  /* line 297, ../sass/layouts/_home.scss */
  .connect-icon {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    clear: left;
    margin-top: 2em;
    padding: 0;
  }
  /* line 302, ../sass/layouts/_home.scss */
  .connect-icon .block-title {
    background-position: .25em center;
  }
  /* line 305, ../sass/layouts/_home.scss */
  .connect-icon #cc_signup_form_1 {
    padding: 0 1em;
  }

  /* line 309, ../sass/layouts/_home.scss */
  #cc_signup_form_1 {
    position: relative;
  }

  /* line 313, ../sass/layouts/_home.scss */
  input#edit-submit--2 {
    position: absolute;
    top: 24px;
    height: 26px;
    right: 0;
    box-shadow: none;
    border-radius: 0;
  }

  /* line 322, ../sass/layouts/_home.scss */
  .form-item.form-type-textfield.form-item-cc-email-1 {
    width: 100%;
  }
  /* line 324, ../sass/layouts/_home.scss */
  .form-item.form-type-textfield.form-item-cc-email-1 .form-text {
    border: 1px solid lightgray;
    min-height: 26px;
  }
}
/* Desktop 960+ styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 960px) {
  /* line 340, ../sass/layouts/_home.scss */
  #block-block-1 {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
    min-height: 75px;
  }

  /* line 345, ../sass/layouts/_home.scss */
  #block-block-2 {
    float: left;
    width: 33.33333%;
    margin-left: 33.33333%;
    margin-right: -66.66667%;
    min-height: 75px;
  }

  /* line 350, ../sass/layouts/_home.scss */
  #block-cg-custom-homepage-search-form {
    float: left;
    width: 33.33333%;
    margin-left: 66.66667%;
    margin-right: -100%;
    clear: none;
    min-height: 72px;
    padding: 1em 0 0;
  }
  /* line 355, ../sass/layouts/_home.scss */
  #block-cg-custom-homepage-search-form form {
    max-width: 280px;
  }

  /* line 360, ../sass/layouts/_home.scss */
  .whats-new-icon {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
  }

  /* line 364, ../sass/layouts/_home.scss */
  .upcoming-events-icon {
    float: left;
    width: 33.33333%;
    margin-left: 33.33333%;
    margin-right: -66.66667%;
  }

  /* line 368, ../sass/layouts/_home.scss */
  .connect-icon {
    float: left;
    width: 33.33333%;
    margin-left: 66.66667%;
    margin-right: -100%;
    clear: none;
    margin-top: 0;
  }

  /* line 375, ../sass/layouts/_home.scss */
  #block-block-1 {
    background-size: 10%;
  }

  /* line 379, ../sass/layouts/_home.scss */
  #block-block-2 {
    background-size: 10%;
  }
}
/* Desktop 1200 styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 1200px) {
  /* line 390, ../sass/layouts/_home.scss */
  .apply-grant-block {
    font-size: 1.5em;
  }
  /* line 392, ../sass/layouts/_home.scss */
  .apply-grant-block a {
    padding: 1.75em .625em;
  }

  /* line 397, ../sass/layouts/_home.scss */
  .manage-your-grant {
    font-size: 1.5em;
  }
  /* line 399, ../sass/layouts/_home.scss */
  .manage-your-grant a {
    padding: 1.75em .625em;
  }

  /* line 404, ../sass/layouts/_home.scss */
  #block-cg-custom-homepage-search-form {
    min-height: 92px;
  }
  /* line 406, ../sass/layouts/_home.scss */
  #block-cg-custom-homepage-search-form .block-title {
    font-size: 1.5em;
  }
  /* line 409, ../sass/layouts/_home.scss */
  #block-cg-custom-homepage-search-form form {
    max-width: 320px;
  }

  /* line 414, ../sass/layouts/_home.scss */
  .about-block {
    padding: 1em 10em;
  }

  /* line 417, ../sass/layouts/_home.scss */
  #block-block-1 {
    border-right: 1px solid white;
  }

  /* line 420, ../sass/layouts/_home.scss */
  #block-block-2 {
    border-right: 1px solid white;
  }
}
/* Global/Mobile Custom Styles  
  --------------------------------------------------------------------- */
/* line 4, ../sass/layouts/_home-tabs.scss */
#block-quicktabs-homepage-tab-panel {
  /*background: $brand-light-gray;*/
  margin: 0 0 1.5em;
}
/* line 9, ../sass/layouts/_home-tabs.scss */
#block-quicktabs-homepage-tab-panel .quicktabs-wrapper .item-list .quicktabs-tabs {
  border: none;
  font-family: "Effra" !important;
  font-size: 1em !important;
  height: auto;
  margin: 0;
  padding: 0;
}
/* line 16, ../sass/layouts/_home-tabs.scss */
#block-quicktabs-homepage-tab-panel .quicktabs-wrapper .item-list .quicktabs-tabs li {
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  background: #4f5452;
  border: none;
  color: #fff;
  display: block;
  margin: 0 0 1px;
  padding: 0;
  text-align: center;
  text-transform: uppercase;
}
/* line 26, ../sass/layouts/_home-tabs.scss */
#block-quicktabs-homepage-tab-panel .quicktabs-wrapper .item-list .quicktabs-tabs li a {
  color: #fff;
  display: block;
  font-family: "Effra" !important;
  font-size: 1em !important;
  padding: .5em .625em;
  text-decoration: none;
}
/* line 34, ../sass/layouts/_home-tabs.scss */
#block-quicktabs-homepage-tab-panel .quicktabs-wrapper .item-list .quicktabs-tabs li:hover {
  background: #313433;
}
/* line 37, ../sass/layouts/_home-tabs.scss */
#block-quicktabs-homepage-tab-panel .quicktabs-wrapper .item-list .quicktabs-tabs li.active {
  background: #1b676f;
}
/* line 43, ../sass/layouts/_home-tabs.scss */
#block-quicktabs-homepage-tab-panel .quicktabs-wrapper .quicktabs_main {
  zoom: 1;
  border: none;
  padding: .625em;
}
/* line 42, ../sass/_mixins.scss */
#block-quicktabs-homepage-tab-panel .quicktabs-wrapper .quicktabs_main:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
/* line 48, ../sass/layouts/_home-tabs.scss */
#block-quicktabs-homepage-tab-panel .quicktabs-wrapper .quicktabs_main .tabs-left img {
  width: 100%;
}
/* line 51, ../sass/layouts/_home-tabs.scss */
#block-quicktabs-homepage-tab-panel .quicktabs-wrapper .quicktabs_main .tabs-left p {
  margin: 0;
}

/* Mobile styles 
  --------------------------------------------------------------------- */
@media all and (max-width: 500px) {
  /* line 62, ../sass/layouts/_home-tabs.scss */
  .tabs-right .btn {
    width: 70%;
    margin-bottom: 16px;
    text-align: center;
    margin-bottom: 1em;
  }
}
/* Tablet styles 
  --------------------------------------------------------------------- */
/* Large Tablet 768+ styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 768px) {
  /* line 81, ../sass/layouts/_home-tabs.scss */
  #block-quicktabs-homepage-tab-panel .quicktabs-wrapper {
    padding: 1em 0;
  }
  /* line 84, ../sass/layouts/_home-tabs.scss */
  #block-quicktabs-homepage-tab-panel .quicktabs-wrapper .item-list .quicktabs-tabs {
    padding: 0 0 0 .625em;
  }
  /* line 86, ../sass/layouts/_home-tabs.scss */
  #block-quicktabs-homepage-tab-panel .quicktabs-wrapper .item-list .quicktabs-tabs li {
    display: inline-block;
  }
  /* line 88, ../sass/layouts/_home-tabs.scss */
  #block-quicktabs-homepage-tab-panel .quicktabs-wrapper .item-list .quicktabs-tabs li a {
    font-size: .875em !important;
  }
  /* line 95, ../sass/layouts/_home-tabs.scss */
  #block-quicktabs-homepage-tab-panel .quicktabs-wrapper .quicktabs_main .tabs-left {
    float: left;
    margin: 0 4% 1em 0;
    width: 36%;
  }
  /* line 100, ../sass/layouts/_home-tabs.scss */
  #block-quicktabs-homepage-tab-panel .quicktabs-wrapper .quicktabs_main .tabs-right {
    float: left;
    margin: 0 0 1em;
    width: 55%;
  }
}
/* Desktop 960+ styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 960px) {
  /* line 118, ../sass/layouts/_home-tabs.scss */
  #block-quicktabs-homepage-tab-panel .quicktabs-wrapper {
    padding: 2em 0;
  }
  /* line 123, ../sass/layouts/_home-tabs.scss */
  #block-quicktabs-homepage-tab-panel .quicktabs-wrapper .item-list .quicktabs-tabs li a {
    font-size: 1.125em !important;
  }
  /* line 129, ../sass/layouts/_home-tabs.scss */
  #block-quicktabs-homepage-tab-panel .quicktabs-wrapper .quicktabs_main {
    padding: 1.5em .625em;
  }
}
/* Desktop 1200 styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 1200px) {
  /* line 147, ../sass/layouts/_home-tabs.scss */
  #block-quicktabs-homepage-tab-panel .quicktabs-wrapper .item-list .quicktabs-tabs li a {
    padding: .5em 2em;
  }
}
/* Global/Mobile Custom Styles  
  --------------------------------------------------------------------- */
/* line 5, ../sass/layouts/_header.scss */
.header__logo {
  display: inline-block;
  float: none;
  margin: 0;
  padding: .625em;
}
/* line 10, ../sass/layouts/_header.scss */
.header__logo .header__logo-image {
  display: block;
  width: 100%;
}

/* Tablet styles 
  --------------------------------------------------------------------- */
/* Large Tablet 768+ styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 768px) {
  /* line 26, ../sass/layouts/_header.scss */
  .header__logo {
    float: left;
  }
}
/* Desktop 960+ styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 960px) {
  /* line 37, ../sass/layouts/_header.scss */
  .header__logo {
    width: 25%;
  }
}
/* Desktop 1200 styles 
  --------------------------------------------------------------------- */
/* Global/Mobile Custom Styles  
  --------------------------------------------------------------------- */
/* line 5, ../sass/layouts/_nav.scss */
.mean-container .mean-bar {
  background: #336666;
}
/* line 8, ../sass/layouts/_nav.scss */
.mean-container a.meanmenu-reveal span {
  background: white;
}
/* line 14, ../sass/layouts/_nav.scss */
.mean-container .mean-nav ul li a {
  background: #397171;
}
/* line 17, ../sass/layouts/_nav.scss */
.mean-container .mean-nav ul li a.mean-expand:hover {
  background: #f58216;
}
/* line 24, ../sass/layouts/_nav.scss */
.mean-container .mean-nav ul li ul li a {
  opacity: 1.75;
}

/* line 34, ../sass/layouts/_nav.scss */
.user-nav-container {
  background: #336666;
  -webkit-box-shadow: 0px 3px 5px -1px #9e969e;
  -moz-box-shadow: 0px 3px 5px -1px #9e969e;
  box-shadow: 0px 3px 5px -1px #9e969e;
  display: none;
  float: left;
  text-align: right;
  width: 100%;
}
/* line 44, ../sass/layouts/_nav.scss */
.user-nav-container .user-nav ul {
  margin: 0;
  padding: 0;
}
/* line 47, ../sass/layouts/_nav.scss */
.user-nav-container .user-nav ul li {
  display: inline-block;
  font-family: "Effra";
  vertical-align: middle;
}
/* line 51, ../sass/layouts/_nav.scss */
.user-nav-container .user-nav ul li a {
  color: white;
  display: block;
  padding: .5em .5em;
  position: relative;
  text-decoration: none;
}
/* line 57, ../sass/layouts/_nav.scss */
.user-nav-container .user-nav ul li a:hover {
  background: #1b676f;
}
/* line 60, ../sass/layouts/_nav.scss */
.user-nav-container .user-nav ul li a.icon {
  padding: 0 .375em;
}
/* line 62, ../sass/layouts/_nav.scss */
.user-nav-container .user-nav ul li a.icon:hover {
  background: none no-repeat scroll 0 0 transparent;
}

/* line 74, ../sass/layouts/_nav.scss */
#navigation .menu {
  float: right;
  position: relative;
  top: -60px;
}
/* line 78, ../sass/layouts/_nav.scss */
#navigation .menu li {
  background: none;
  float: left;
  list-style: none;
  list-style-type: none;
  padding: 0;
}
/* line 84, ../sass/layouts/_nav.scss */
#navigation .menu li a {
  border: none;
  color: #626262;
  display: block;
  font-family: "Effra";
  font-weight: 700;
  font-size: 1.1em;
  padding: .75em;
  text-decoration: none;
}
/* line 93, ../sass/layouts/_nav.scss */
#navigation .menu li a:visited, #navigation .menu li a:link {
  background: none no-repeat scroll 0 0 transparent;
}
/* line 96, ../sass/layouts/_nav.scss */
#navigation .menu li a:hover {
  background: none no-repeat scroll 0 0 #336666;
  color: #fff;
  text-decoration: none;
}
/* line 101, ../sass/layouts/_nav.scss */
#navigation .menu li a:active {
  background: none no-repeat scroll 0 0 transparent;
}
/* line 105, ../sass/layouts/_nav.scss */
#navigation .menu li:hover a {
  background: none no-repeat scroll 0 0 #336666;
  color: #fff;
}
/* line 109, ../sass/layouts/_nav.scss */
#navigation .menu li:hover ul {
  background: none no-repeat scroll 0 0 #336666;
  color: #fff;
}
/* line 113, ../sass/layouts/_nav.scss */
#navigation .menu li ul {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  background: none no-repeat scroll 0 0 #336666;
  -webkit-box-shadow: 3px 6px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 3px 6px 4px 0 rgba(0, 0, 0, 0.25);
  padding: 0 !important;
}
/* line 120, ../sass/layouts/_nav.scss */
#navigation .menu li ul li a {
  color: #fff;
  font-size: .875em;
  font-weight: 400;
  padding: .75em 1em;
}
/* line 125, ../sass/layouts/_nav.scss */
#navigation .menu li ul li a:hover {
  background: none no-repeat scroll 0 0 #295252;
  text-decoration: underline;
}

/* Tablet styles 
  --------------------------------------------------------------------- */
/* Large Tablet 768+ styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 768px) {
  /* line 145, ../sass/layouts/_nav.scss */
  .user-nav-container {
    display: block;
    float: right;
  }
}
/* Desktop 960+ styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 960px) {
  /* line 157, ../sass/layouts/_nav.scss */
  .user-nav-container {
    width: auto;
  }
  /* line 160, ../sass/layouts/_nav.scss */
  .user-nav-container .user-nav ul {
    padding: 0 .5em;
  }
}
/* Desktop 1200 styles 
  --------------------------------------------------------------------- */
/* Global/Mobile Custom Styles  
  --------------------------------------------------------------------- */
/* line 4, ../sass/layouts/_hero.scss */
.flexslider {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  background: none no-repeat scroll 0 0 #4f5452;
  border: 0;
  margin: 0;
  padding: 0;
  position: relative;
}
/* line 11, ../sass/layouts/_hero.scss */
.flexslider .views-field-title {
  background: none no-repeat scroll 0 0 #4f5452;
  color: white;
  font-family: "effra";
  font-size: 1.125em;
  font-weight: 700;
  padding: .625em;
}
/* line 19, ../sass/layouts/_hero.scss */
.flexslider .views-field-body {
  display: none;
}
/* line 22, ../sass/layouts/_hero.scss */
.flexslider .views-field-field-link {
  background: none no-repeat scroll 0 0 #4f5452;
  padding: 0 .625em 1em;
  text-align: center;
}
/* line 26, ../sass/layouts/_hero.scss */
.flexslider .views-field-field-link a {
  background: none no-repeat scroll 0 0 #e3dedc;
  color: #336666;
  display: inline-block;
  font-family: "Effra";
  font-size: .875em;
  font-weight: 900;
  padding: .25em 1em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
/* line 37, ../sass/layouts/_hero.scss */
.flexslider .views-field-field-link a:hover {
  background: none no-repeat scroll 0 0 #dad3d1;
}

/* line 43, ../sass/layouts/_hero.scss */
.flex-direction-nav {
  display: none;
}

/* line 47, ../sass/layouts/_hero.scss */
.flex-control-nav {
  bottom: 0;
  display: none;
  position: absolute;
  left: 68%;
  text-align: left;
  width: auto;
  z-index: 500;
}
/* line 55, ../sass/layouts/_hero.scss */
.flex-control-nav li {
  display: inline-block;
  margin: 0 4px;
}
/* line 58, ../sass/layouts/_hero.scss */
.flex-control-nav li a {
  background: none no-repeat scroll 0 0 rgba(51, 102, 102, 0.35);
  box-shadow: none;
  height: 15px;
  width: 15px;
}
/* line 63, ../sass/layouts/_hero.scss */
.flex-control-nav li a.flex-active {
  background: none no-repeat scroll 0 0 #336666;
}
/* line 66, ../sass/layouts/_hero.scss */
.flex-control-nav li a:hover {
  background: none no-repeat scroll 0 0 rgba(51, 102, 102, 0.65);
}

/* Tablet styles 
  --------------------------------------------------------------------- */
/* Large Tablet 768+ styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 768px) {
  /* line 85, ../sass/layouts/_hero.scss */
  .flexslider .views-field-title {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
    width: 68%;
  }
  /* line 91, ../sass/layouts/_hero.scss */
  .flexslider .views-field-field-link {
    display: inline-block;
    padding: .625em;
    text-align: right;
    vertical-align: middle;
    width: 25%;
  }
}
/* Desktop 960+ styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 960px) {
  /* line 107, ../sass/layouts/_hero.scss */
  .flexslider {
    background: none no-repeat scroll 0 0 #fff;
    border-bottom: none;
    border-left: none;
    border-right: 1px solid #c9c6c6;
    border-top: 1px solid #c9c6c6;
  }
  /* line 114, ../sass/layouts/_hero.scss */
  .flexslider .slides li {
    zoom: 1;
  }
  /* line 42, ../sass/_mixins.scss */
  .flexslider .slides li:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  /* line 118, ../sass/layouts/_hero.scss */
  .flexslider .views-field-field-image {
    float: left;
    margin: 0;
    width: 66.6%;
  }
  /* line 123, ../sass/layouts/_hero.scss */
  .flexslider .views-field-title {
    background: none no-repeat scroll 0 0 transparent;
    color: #336666;
    display: block;
    font-size: 1.5em;
    padding: 1em 2% 0 68.5%;
    width: 29.5%;
  }
  /* line 131, ../sass/layouts/_hero.scss */
  .flexslider .views-field-body {
    display: block;
    padding: .5em 2% 0 68.5%;
    text-align: left;
    width: 29.5%;
  }
  /* line 137, ../sass/layouts/_hero.scss */
  .flexslider .views-field-field-link {
    background: none no-repeat scroll 0 0 transparent;
    display: block;
    padding: 0 2% 0 68.5%;
    text-align: left;
    width: 29.5%;
  }
  /* line 143, ../sass/layouts/_hero.scss */
  .flexslider .views-field-field-link a {
    -webkit-box-shadow: 0px 3px 5px -1px #9e969e;
    -moz-box-shadow: 0px 3px 5px -1px #9e969e;
    box-shadow: 0px 3px 5px -1px #9e969e;
  }

  /* line 151, ../sass/layouts/_hero.scss */
  .flex-control-nav {
    display: block;
  }
}
/* Desktop 1200 styles 
  --------------------------------------------------------------------- */
/* Global/Mobile Custom Styles  
  --------------------------------------------------------------------- */
/* line 4, ../sass/layouts/_footer.scss */
#footer, .bottom-container {
  overflow: hidden;
}

/* line 8, ../sass/layouts/_footer.scss */
#footer, #block-block-13, #block-block-14 {
  font-family: "Effra";
  text-align: center;
  color: white;
  background: #5f6062;
}

/* line 16, ../sass/layouts/_footer.scss */
.footer-social-container {
  padding-top: 2em;
}
/* line 19, ../sass/layouts/_footer.scss */
.footer-social-container .footer-social a {
  padding-right: 12px;
}

/* line 25, ../sass/layouts/_footer.scss */
#footer.block {
  margin-bottom: 0;
  margin-top: 0;
}

/* line 31, ../sass/layouts/_footer.scss */
#footer ul {
  padding: 0;
}
/* line 34, ../sass/layouts/_footer.scss */
#footer li {
  list-style-type: none;
}
/* line 37, ../sass/layouts/_footer.scss */
#footer a {
  color: white;
}

/* line 45, ../sass/layouts/_footer.scss */
#block-block-9,
#block-block-10,
#block-block-11 {
  display: none;
}

/* line 49, ../sass/layouts/_footer.scss */
#block-block-13, #block-block-14 {
  font-size: .8em;
  padding: 1em;
}

/* line 54, ../sass/layouts/_footer.scss */
#block-block-13 > p {
  margin: 0;
}

/* line 58, ../sass/layouts/_footer.scss */
#block-block-13.block {
  margin-bottom: 0;
}

/* line 64, ../sass/layouts/_footer.scss */
#block-block-14 p {
  margin: 0;
}
/* line 67, ../sass/layouts/_footer.scss */
#block-block-14 a {
  color: white;
}

/* Large Tablet 768+ styles 
  --------------------------------------------------------------------- */
/* Desktop 960+ styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 960px) {
  /* line 84, ../sass/layouts/_footer.scss */
  #footer {
    text-align: left;
  }

  /* line 90, ../sass/layouts/_footer.scss */
  #block-block-9,
  #block-block-10,
  #block-block-11 {
    display: block;
    border-right: 1px solid white;
    margin-top: 3em;
    min-height: 16em;
  }

  /* line 97, ../sass/layouts/_footer.scss */
  #block-block-9 {
    float: left;
    width: 20%;
    margin-left: 3.33333%;
    margin-right: -23.33333%;
  }

  /* line 101, ../sass/layouts/_footer.scss */
  #block-block-10 {
    float: left;
    width: 20%;
    margin-left: 26.66667%;
    margin-right: -46.66667%;
  }

  /* line 105, ../sass/layouts/_footer.scss */
  #block-block-11 {
    float: left;
    width: 26.66667%;
    margin-left: 50%;
    margin-right: -76.66667%;
  }

  /* line 109, ../sass/layouts/_footer.scss */
  #block-block-12 {
    float: left;
    width: 20%;
    margin-left: 80%;
    margin-right: -100%;
    margin-top: 3em;
  }

  /* line 113, ../sass/layouts/_footer.scss */
  .footer-social-container {
    padding-top: 0;
  }
}
/* Desktop 1200 styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 1200px) {
  /* line 125, ../sass/layouts/_footer.scss */
  .bottom-container {
    width: 100%;
    background: #5f6062;
    float: left;
  }

  /* line 130, ../sass/layouts/_footer.scss */
  .bottom-section {
    width: 1200px;
    margin: 0 auto;
  }

  /* line 135, ../sass/layouts/_footer.scss */
  #footer {
    text-align: left;
    border-bottom: 1px solid white;
    padding-bottom: 2em;
  }

  /* line 143, ../sass/layouts/_footer.scss */
  #block-block-9,
  #block-block-10,
  #block-block-11 {
    display: block;
    border-right: 1px solid white;
    margin-top: 3em;
    min-height: 16em;
  }

  /* line 150, ../sass/layouts/_footer.scss */
  #block-block-9 {
    float: left;
    width: 20%;
    margin-left: 3.33333%;
    margin-right: -23.33333%;
  }

  /* line 154, ../sass/layouts/_footer.scss */
  #block-block-10 {
    float: left;
    width: 20%;
    margin-left: 26.66667%;
    margin-right: -46.66667%;
  }

  /* line 158, ../sass/layouts/_footer.scss */
  #block-block-11 {
    float: left;
    width: 26.66667%;
    margin-left: 50%;
    margin-right: -76.66667%;
  }

  /* line 162, ../sass/layouts/_footer.scss */
  #block-block-12 {
    float: left;
    width: 20%;
    margin-left: 80%;
    margin-right: -100%;
    margin-top: 3em;
  }

  /* line 170, ../sass/layouts/_footer.scss */
  #block-block-13 {
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -50%;
    text-align: left;
    padding: 0;
  }
  /* line 174, ../sass/layouts/_footer.scss */
  #block-block-13 p {
    padding: 1em;
    margin-top: 1em;
    font-size: 1.2em;
  }

  /* line 180, ../sass/layouts/_footer.scss */
  #block-block-14 {
    float: left;
    width: 50%;
    margin-left: 50%;
    margin-right: -100%;
    text-align: right;
    padding: 0;
  }
  /* line 184, ../sass/layouts/_footer.scss */
  #block-block-14 p {
    padding: 1em;
    margin-top: 1em;
    font-size: 1.2em;
  }
}
/* Global/Mobile Custom Styles  
  --------------------------------------------------------------------- */
/* line 3, ../sass/layouts/_sidebar.scss */
#block-menu-block-1 {
  background: #717171;
  width: 98%;
  margin-bottom: 1em;
  padding-bottom: 1em;
  position: relative;
}
/* line 9, ../sass/layouts/_sidebar.scss */
#block-menu-block-1 ul {
  margin: 0;
}
/* line 12, ../sass/layouts/_sidebar.scss */
#block-menu-block-1 ul li a {
  color: white;
}

/* line 19, ../sass/layouts/_sidebar.scss */
#block-menu-block-1 h2 {
  text-transform: inherit;
  padding-left: 12px;
  padding-top: 6px;
  color: white;
}

/* line 26, ../sass/layouts/_sidebar.scss */
.sidebars h2.block__title.block-title {
  color: #1b676f;
}

/* Gray Page Sidebar Styles */
/* line 32, ../sass/layouts/_sidebar.scss */
.sidebar ul {
  padding: 0 .5em;
}
/* line 34, ../sass/layouts/_sidebar.scss */
.sidebar ul li {
  border-bottom: 1px solid gray;
  padding: .5em .25em;
}
/* line 37, ../sass/layouts/_sidebar.scss */
.sidebar ul li.is-active {
  padding: .5em .25em;
}
/* line 40, ../sass/layouts/_sidebar.scss */
.sidebar ul li.is-collapsed {
  background: transparent url("/sites/default/files/expanded.png") no-repeat scroll 0.375em 1.125em;
  list-style: none;
  list-style-image: none;
  padding: .5em .25em .5em 1.5em;
}
/* line 46, ../sass/layouts/_sidebar.scss */
.sidebar ul li a {
  display: block;
  text-decoration: none !important;
}
/* line 49, ../sass/layouts/_sidebar.scss */
.sidebar ul li a:hover {
  text-decoration: underline !important;
}
/* line 52, ../sass/layouts/_sidebar.scss */
.sidebar ul li a.active {
  border-left: 5px solid #336666;
  padding-left: 8px;
}
/* line 57, ../sass/layouts/_sidebar.scss */
.sidebar ul li ul {
  padding: 0 0 0 .5em;
}
/* line 59, ../sass/layouts/_sidebar.scss */
.sidebar ul li ul li {
  font-size: .875em;
  line-height: 1.25em;
}

/* line 70, ../sass/layouts/_sidebar.scss */
.sidebar ul li ul li:last-child {
  border-bottom: none !important;
}

/* End Gray Page Sidebar Styles */
/* Annual Report/ Sideblock Styles */
/* line 77, ../sass/layouts/_sidebar.scss */
.sideblock {
  padding: 1em;
  background: #5f6062;
  margin-bottom: 1em;
}
/* line 81, ../sass/layouts/_sidebar.scss */
.sideblock h3 {
  color: white;
}
/* line 84, ../sass/layouts/_sidebar.scss */
.sideblock p {
  color: white;
}
/* line 87, ../sass/layouts/_sidebar.scss */
.sideblock a {
  color: white;
  text-decoration: none !important;
}
/* line 90, ../sass/layouts/_sidebar.scss */
.sideblock a:hover {
  text-decoration: underline !important;
}

/* Tablet styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 480px) and (max-width: 959px) {
  /* line 101, ../sass/layouts/_sidebar.scss */
  .sidebar-second #content {
    width: 100%;
    float: none;
  }

  /* line 105, ../sass/layouts/_sidebar.scss */
  .sidebar-second .region-sidebar-second {
    margin-left: 0;
    width: 100%;
  }
}
/* Large Tablet 768+ styles 
  --------------------------------------------------------------------- */
/* Desktop 960+ styles 
  --------------------------------------------------------------------- */
/* Desktop 1200 styles 
  --------------------------------------------------------------------- */
/* Global/Mobile Custom Styles  
  --------------------------------------------------------------------- */
/* line 5, ../sass/layouts/_interior.scss */
.not-front #content .content-inner {
  padding: 0 .625em 1em;
}

/* Become a Reviewer */
/* line 13, ../sass/layouts/_interior.scss */
#block-block-20 {
  clear: both;
  padding-bottom: 2em;
  padding-top: 2em;
}

/* Contact Form */
/* line 20, ../sass/layouts/_interior.scss */
#contact-us-entityform-edit-form {
  width: 80%;
}

/* Large Tablet 768+ styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 768px) {
  /* line 32, ../sass/layouts/_interior.scss */
  .not-front #content .content-inner {
    padding: 0 2.5em 2em .625em;
  }
}
/* Desktop 960+ styles 
  --------------------------------------------------------------------- */
/* Desktop 1200 styles 
  --------------------------------------------------------------------- */
/* Global/Mobile Custom Styles  
  --------------------------------------------------------------------- */
/* line 4, ../sass/layouts/_blocks.scss */
.breadcrumb {
  display: none;
  font-size: .75em;
  margin: 1em 0 1.5em;
}

/* line 12, ../sass/layouts/_blocks.scss */
.available-notices .view-available-funding-opportunity-notices .views-row {
  border-bottom: 1px solid #acadae;
  margin: 0 0 1em;
  padding: 0 0 1em;
}
/* line 16, ../sass/layouts/_blocks.scss */
.available-notices .view-available-funding-opportunity-notices .views-row .views-field-title {
  font-size: 1.25em;
}

/* line 25, ../sass/layouts/_blocks.scss */
.view-initiatives-landing-page .views-row, .view-issues-landing-page .views-row {
  margin: 0 0 1.5em;
}
/* line 28, ../sass/layouts/_blocks.scss */
.view-initiatives-landing-page .views-row .field-name-title h2, .view-issues-landing-page .views-row .field-name-title h2 {
  font-size: 1em;
  line-height: 1.125em;
  margin: 0 0 .375em;
  text-align: center;
}
/* line 35, ../sass/layouts/_blocks.scss */
.view-initiatives-landing-page .views-row .field-name-field-summary, .view-issues-landing-page .views-row .field-name-field-summary {
  font-size: .875em;
  line-height: 1.5em;
}

/*.page-taxonomy-term {
  .row {
    .panel-panel {
      margin: 0 0 1.5em;
      .field-name-field-header-image {
        display: none;
      }
    }
  }
}*/
/* line 54, ../sass/layouts/_blocks.scss */
.initiative-page .panel-panel .panel-pane, .issue-page .panel-panel .panel-pane {
  margin: 0 0 1.5em;
}
/* line 56, ../sass/layouts/_blocks.scss */
.initiative-page .panel-panel .panel-pane.pane-taxonomy-term-field-header-image, .issue-page .panel-panel .panel-pane.pane-taxonomy-term-field-header-image {
  display: none;
}
/* line 59, ../sass/layouts/_blocks.scss */
.initiative-page .panel-panel .panel-pane h2.pane-title, .issue-page .panel-panel .panel-pane h2.pane-title {
  font-size: 1.375em;
}
/* line 63, ../sass/layouts/_blocks.scss */
.initiative-page .panel-panel .panel-pane .view .views-row, .issue-page .panel-panel .panel-pane .view .views-row {
  border-bottom: 1px solid #a7a7a9;
  margin: 0 0 1em;
  padding: 0 0 1em;
}
/* line 67, ../sass/layouts/_blocks.scss */
.initiative-page .panel-panel .panel-pane .view .views-row:last-child, .issue-page .panel-panel .panel-pane .view .views-row:last-child {
  border: none;
  padding: 0;
}

/* Tablet styles 
  --------------------------------------------------------------------- */
/* Large Tablet 768+ styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 768px) {
  /* line 87, ../sass/layouts/_blocks.scss */
  .breadcrumb {
    display: block;
    width: 80%;
  }

  /* line 93, ../sass/layouts/_blocks.scss */
  .view-initiatives-landing-page .views-row, .view-issues-landing-page .views-row {
    display: inline-block;
    margin: 0 2% 2em;
    vertical-align: top;
    width: 28.5%;
  }
  /* line 99, ../sass/layouts/_blocks.scss */
  .view-initiatives-landing-page .views-row .field-name-title h2, .view-issues-landing-page .views-row .field-name-title h2 {
    font-size: .875em;
  }

  /* line 108, ../sass/layouts/_blocks.scss */
  .initiative-page .panel-panel .panel-pane, .issue-page .panel-panel .panel-pane {
    display: inline-block;
    margin: 0 0 2.25em;
    vertical-align: top;
    width: 49%;
  }
  /* line 113, ../sass/layouts/_blocks.scss */
  .initiative-page .panel-panel .panel-pane.pane-taxonomy-term-field-summary, .initiative-page .panel-panel .panel-pane.pane-taxonomy-term-field-additional-info, .initiative-page .panel-panel .panel-pane.pane-issues-news-panel-pane-4, .issue-page .panel-panel .panel-pane.pane-taxonomy-term-field-summary, .issue-page .panel-panel .panel-pane.pane-taxonomy-term-field-additional-info, .issue-page .panel-panel .panel-pane.pane-issues-news-panel-pane-4 {
    display: block;
    width: 100%;
  }
  /* line 117, ../sass/layouts/_blocks.scss */
  .initiative-page .panel-panel .panel-pane.pane-taxonomy-term-field-header-image, .issue-page .panel-panel .panel-pane.pane-taxonomy-term-field-header-image {
    float: left;
    margin: 0 1.5em .5em 0;
    width: 250px;
  }
  /* line 122, ../sass/layouts/_blocks.scss */
  .initiative-page .panel-panel .panel-pane .view, .issue-page .panel-panel .panel-pane .view {
    padding: 0 2em 0 0;
  }

  /* line 129, ../sass/layouts/_blocks.scss */
  .panel-pane.pane-entity-field.pane-taxonomy-term-field-full-body {
    width: 100% !important;
    display: block;
  }
}
/* Desktop 960+ styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 960px) {
  /* line 143, ../sass/layouts/_blocks.scss */
  .view-initiatives-landing-page .views-row, .view-issues-landing-page .views-row {
    margin: 0 2% 3em;
    width: 29%;
  }
  /* line 147, ../sass/layouts/_blocks.scss */
  .view-initiatives-landing-page .views-row .field-name-title h2, .view-issues-landing-page .views-row .field-name-title h2 {
    font-size: 1em;
  }

  /* line 156, ../sass/layouts/_blocks.scss */
  .initiative-page .panel-panel .panel-pane, .issue-page .panel-panel .panel-pane {
    width: 33%;
  }
}
/* Desktop 1200 styles 
  --------------------------------------------------------------------- */
/* Global/Mobile Custom Styles  
  --------------------------------------------------------------------- */
/* line 4, ../sass/layouts/_image-block.scss */
.image-block {
  margin-bottom: 1em;
  background: #336666;
  text-align: center;
  width: 100%;
}
/* line 9, ../sass/layouts/_image-block.scss */
.image-block .image-block-text {
  background: #336666;
  min-height: 2em;
  padding: 1em;
}
/* line 13, ../sass/layouts/_image-block.scss */
.image-block .image-block-text a {
  color: white;
  text-decoration: none;
}
/* line 16, ../sass/layouts/_image-block.scss */
.image-block .image-block-text a:hover {
  text-decoration: underline;
}

/* Tablet styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 480px) {
  /* line 28, ../sass/layouts/_image-block.scss */
  .image-block {
    width: 48%;
    float: left;
    margin: 2px;
  }
}
/* Large Tablet 768+ styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 768px) {
  /* line 39, ../sass/layouts/_image-block.scss */
  .image-block {
    width: 24%;
  }
  /* line 41, ../sass/layouts/_image-block.scss */
  .image-block .image-block-text {
    min-height: 4em;
  }
}
/* Desktop 960+ styles 
  --------------------------------------------------------------------- */
/* Desktop 1200 styles 
  --------------------------------------------------------------------- */
/* Pages */
/* Global/Mobile Custom Styles  
  --------------------------------------------------------------------- */
/* line 3, ../sass/pages/_grants.scss */
form#views-exposed-form-awarded-grants-search-page {
  background: #f8f8f8;
  padding: 1em;
}

/* line 7, ../sass/pages/_grants.scss */
.ds-3col-stacked-equal.node.node-awarded-grant.contextual-links-region.view-mode-search_index {
  padding-bottom: 2em;
}

/* line 11, ../sass/pages/_grants.scss */
.page-grants .views-row {
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid #e2e2e2;
}

/* line 18, ../sass/pages/_grants.scss */
.page-node-5 #block-menu-block-1 {
  clear: both;
}

/* line 22, ../sass/pages/_grants.scss */
.page-grants .field-item.even > p {
  margin: 0;
}

/* line 26, ../sass/pages/_grants.scss */
.view-awarded-grants-search .result {
  padding-bottom: 1em;
}

/* line 30, ../sass/pages/_grants.scss */
.field.field-name-field-institution.field-type-text {
  font-weight: bold;
}

/* line 34, ../sass/pages/_grants.scss */
.section-programs article, .section-initiatives-and-partnerships article {
  margin-bottom: 2em;
}

/* line 38, ../sass/pages/_grants.scss */
.sp-image {
  float: right;
}

/* line 42, ../sass/pages/_grants.scss */
article.node-awarded-grant {
  padding-bottom: 2em;
}

/* line 47, ../sass/pages/_grants.scss */
.field-group-htabs-wrapper.group-reports.field-group-htabs {
  padding-top: 2em;
}

/* line 51, ../sass/pages/_grants.scss */
.section-grants th {
  text-align: left;
}

/* line 56, ../sass/pages/_grants.scss */
#block-block-16, #block-block-17, #block-block-25, #block-block-26, #block-block-28, #block-block-29 {
  padding-bottom: 1em;
}

/* line 60, ../sass/pages/_grants.scss */
#block-block-16, #block-block-17, #block-block-25, #block-block-26, #block-block-28, #block-block-29 {
  float: left;
  width: 60%;
  margin: 1em;
  margin-top: 0;
}
/* line 65, ../sass/pages/_grants.scss */
#block-block-16 h3, #block-block-17 h3, #block-block-25 h3, #block-block-26 h3, #block-block-28 h3, #block-block-29 h3 {
  text-align: center;
  position: relative;
  top: 150px;
  color: white;
  background: rgba(0, 0, 0, 0.4) none no-repeat scroll 0 0;
}

/* line 74, ../sass/pages/_grants.scss */
div#block-views-exp-available-grants-page {
  background: #f8f8f8;
  padding: 1em;
}

/* line 80, ../sass/pages/_grants.scss */
.page-node-29 .field-name-body img {
  display: none;
}

/* line 85, ../sass/pages/_grants.scss */
div#block-block-27 {
  padding-bottom: 1em;
}

@media all and (max-width: 480px) {
  /* line 90, ../sass/pages/_grants.scss */
  div#gmap-auto1map-gmap0 {
    display: none;
  }

  /* line 93, ../sass/pages/_grants.scss */
  td.views-field.views-field-field-contact-name, th.views-field.views-field-field-contact-name, th.views-field.views-field-field-contact-title, td.views-field.views-field-field-contact-title {
    display: none;
  }

  /* line 96, ../sass/pages/_grants.scss */
  #block-block-28, #block-block-29 {
    width: 90% !important;
  }
}
@media all and (min-width: 480px) {
  /* line 103, ../sass/pages/_grants.scss */
  #block-block-16, #block-block-17, #block-block-25, #block-block-26, #block-block-28, #block-block-29 {
    float: left;
    width: 60%;
    margin: 1em;
    margin-top: 0;
  }
  /* line 108, ../sass/pages/_grants.scss */
  #block-block-16 h3, #block-block-17 h3, #block-block-25 h3, #block-block-26 h3, #block-block-28 h3, #block-block-29 h3 {
    text-align: center;
    position: relative;
    top: 150px;
    color: white;
    background: rgba(0, 0, 0, 0.4) none no-repeat scroll 0 0;
  }
}
/* line 119, ../sass/pages/_grants.scss */
.page-node-29 .field-name-body img {
  width: 151px;
  display: block;
}

/* line 124, ../sass/pages/_grants.scss */
.ui-widget-content {
  border: 1px solid #E2E2E2 !important;
}

/* Large Tablet 768+ styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 768px) {
  /* line 133, ../sass/pages/_grants.scss */
  #block-block-16, #block-block-17, #block-block-25, #block-block-26, #block-block-28, #block-block-29 {
    float: left;
    width: 35%;
    min-height: 29em;
    margin: 1em;
    margin-top: 0;
  }
  /* line 139, ../sass/pages/_grants.scss */
  #block-block-16 h3, #block-block-17 h3, #block-block-25 h3, #block-block-26 h3, #block-block-28 h3, #block-block-29 h3 {
    text-align: center;
    position: relative;
    top: 150px;
    color: white;
    background: rgba(0, 0, 0, 0.4) none no-repeat scroll 0 0;
  }

  /* line 147, ../sass/pages/_grants.scss */
  .page-node-29 .field-name-body img {
    width: 151px;
  }

  /* line 151, ../sass/pages/_grants.scss */
  .grants-img-container {
    clear: both;
  }
  /* line 153, ../sass/pages/_grants.scss */
  .grants-img-container .grants-img-img {
    float: left;
    margin-right: 1em;
  }
  /* line 157, ../sass/pages/_grants.scss */
  .grants-img-container .grants-text-area {
    padding-left: 11em;
  }
}
/* Desktop 960+ styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 960px) {
  /* line 168, ../sass/pages/_grants.scss */
  #block-block-16, #block-block-17, #block-block-25, #block-block-26, #block-block-28, #block-block-29 {
    float: left;
    width: 41%;
    min-height: 29em;
    margin: 1em 2.5em;
    margin-top: 0;
  }
}
/* Desktop 1200 styles 
  --------------------------------------------------------------------- */
/* Global/Mobile Custom Styles  
  --------------------------------------------------------------------- */
/* line 5, ../sass/pages/_publications.scss */
.view-publications-list .view-filters, .page-publications-imls-videos .view-filters {
  border-bottom: 1px solid #acadae;
  margin: 0 0 2em;
  padding: 0 0 1em;
}
/* line 10, ../sass/pages/_publications.scss */
.view-publications-list .views-row, .page-publications-imls-videos .views-row {
  zoom: 1;
  border-bottom: 1px solid #acadae;
  margin: 0 0 1em;
  padding: 0 0 1em;
}
/* line 42, ../sass/_mixins.scss */
.view-publications-list .views-row:after, .page-publications-imls-videos .views-row:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
/* line 15, ../sass/pages/_publications.scss */
.view-publications-list .views-row .views-field-title, .page-publications-imls-videos .views-row .views-field-title {
  font-size: 1.125em;
  font-weight: bold;
  margin: 0 0 .5em;
}
/* line 20, ../sass/pages/_publications.scss */
.view-publications-list .views-row img, .page-publications-imls-videos .views-row img {
  display: block;
  margin: 0 0 .5em;
  width: 100%;
}
/* line 26, ../sass/pages/_publications.scss */
.view-publications-list .views-row .views-field-body p, .page-publications-imls-videos .views-row .views-field-body p {
  margin: 0 0 .5em;
}

/* Mobile 480+ styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 480px) {
  /* line 40, ../sass/pages/_publications.scss */
  .view-publications-list .views-row img, .page-publications-imls-videos .views-row img {
    width: auto;
  }
}
/* Large Tablet 768+ styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 768px) {
  /* line 54, ../sass/pages/_publications.scss */
  .view-publications-list .views-row img, .page-publications-imls-videos .views-row img {
    float: left;
    padding-right: 2em;
  }
}
/* Desktop 960+ styles 
  --------------------------------------------------------------------- */
/* Desktop 1200 styles 
  --------------------------------------------------------------------- */
/* Global/Mobile Custom Styles  
  --------------------------------------------------------------------- */
/* line 3, ../sass/pages/_news-events.scss */
.view-blog-archive-list .item-list ul {
  list-style-type: none;
}

/* line 9, ../sass/pages/_news-events.scss */
.view-project-profiles .views-row, .page-news-events .views-row {
  padding-bottom: 1.5em;
}
/* line 11, ../sass/pages/_news-events.scss */
.view-project-profiles .views-row .views-field.views-field-title, .page-news-events .views-row .views-field.views-field-title {
  font-weight: bold;
}
/* line 14, ../sass/pages/_news-events.scss */
.view-project-profiles .views-row img, .page-news-events .views-row img {
  float: none;
  padding-right: 2em;
}
/* line 19, ../sass/pages/_news-events.scss */
.view-project-profiles a.more-link, .page-news-events a.more-link {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* line 27, ../sass/pages/_news-events.scss */
.views-field.views-field-field-news-categories {
  font-size: .8em;
  font-style: italic;
}

/* Mobile 480+ styles 
  --------------------------------------------------------------------- */
/* Large Tablet 768+ styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 768px) {
  /* line 42, ../sass/pages/_news-events.scss */
  .view-project-profiles .views-row, .page-news-events .views-row {
    padding-bottom: 4em;
    clear: both;
  }
  /* line 45, ../sass/pages/_news-events.scss */
  .view-project-profiles .views-row .views-field.views-field-title, .page-news-events .views-row .views-field.views-field-title {
    font-weight: bold;
  }
  /* line 48, ../sass/pages/_news-events.scss */
  .view-project-profiles .views-row img, .page-news-events .views-row img {
    float: left;
    padding-right: 2em;
    padding-bottom: 2em;
  }
}
/* Desktop 960+ styles 
  --------------------------------------------------------------------- */
/* Desktop 1200 styles 
  --------------------------------------------------------------------- */
/* Global/Mobile Custom Styles  
  --------------------------------------------------------------------- */
/* line 3, ../sass/pages/_research-tools.scss */
.page-node-58 h3 img {
  /* background-color: red; */
  width: 38px;
  padding: .25em;
  position: relative;
  top: 13px;
  padding-right: 1em;
}

/* line 12, ../sass/pages/_research-tools.scss */
.square {
  padding: 1em;
  width: 100%;
  border-top: 5px solid #c7dee2;
  background-color: #1b676f;
  margin: 1em;
  float: left;
  text-align: center;
}
/* line 20, ../sass/pages/_research-tools.scss */
.square a {
  color: white;
}

/* Mobile 320+ styles 
  --------------------------------------------------------------------- */
/* Mobile 480+ styles 
  --------------------------------------------------------------------- */
/* Large Tablet 768+ styles  
  --------------------------------------------------------------------- */
@media all and (min-width: 768px) {
  /* line 38, ../sass/pages/_research-tools.scss */
  .square {
    width: 30%;
  }
}
/* Desktop 960+ styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 960px) {
  /* line 46, ../sass/pages/_research-tools.scss */
  .square {
    width: 25%;
  }
}
/* Desktop 1200 styles 
  --------------------------------------------------------------------- */
/* Global/Mobile Custom Styles  
  --------------------------------------------------------------------- */
/* line 3, ../sass/pages/_about.scss */
.office-header {
  background: #336666;
  color: white;
}

/* line 8, ../sass/pages/_about.scss */
.view-leadership-and-staff {
  width: 100%;
}

/* line 12, ../sass/pages/_about.scss */
.view-leadership-and-staff table {
  font-size: .8em;
}

/* line 16, ../sass/pages/_about.scss */
td.views-field.views-field-field-bio-page-link {
  width: 60%;
}

/* line 21, ../sass/pages/_about.scss */
td.footable-row-detail-cell {
  background: #c7dee2;
}

/* line 25, ../sass/pages/_about.scss */
.imls-right {
  float: right;
  padding: 1em;
}

/* line 29, ../sass/pages/_about.scss */
.imls-left {
  float: left;
  padding: 1em;
}

/* Mobile 320+ styles 
  --------------------------------------------------------------------- */
/* Mobile 480+ styles 
  --------------------------------------------------------------------- */
/* Large Tablet 768+ styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 768px) {
  /* line 45, ../sass/pages/_about.scss */
  .two-column-body {
    float: left;
    padding-right: 2em;
  }

  /* line 49, ../sass/pages/_about.scss */
  .view-leadership-and-staff {
    width: 95%;
  }

  /* line 52, ../sass/pages/_about.scss */
  .view-leadership-and-staff table {
    font-size: 1em;
  }
}
/* Desktop 960+ styles 
  --------------------------------------------------------------------- */
/* Desktop 1200 styles 
  --------------------------------------------------------------------- */
/* Global/Mobile Custom Styles  
  --------------------------------------------------------------------- */
/* line 3, ../sass/pages/_emergency.scss */
ul.action-links.action-links-field-collection-add li {
  list-style: none !important;
}

/* line 7, ../sass/pages/_emergency.scss */
.field-name-field-chat-name {
  font-weight: bold;
}

/* Tablet styles 
  --------------------------------------------------------------------- */
/* Large Tablet 768+ styles 
  --------------------------------------------------------------------- */
/* Desktop 960+ styles 
  --------------------------------------------------------------------- */
/* Desktop 1200 styles 
  --------------------------------------------------------------------- */
/* Global/Mobile Custom Styles  
    --------------------------------------------------------------------- */
/* line 3, ../sass/pages/_site-search.scss */
.page-site .sidebar ul {
  padding: 0;
  margin: 0;
}

/* line 8, ../sass/pages/_site-search.scss */
.page-site .sidebar ul li a {
  display: inline !important;
}

/* line 11, ../sass/pages/_site-search.scss */
.page-site .sidebar ul li {
  list-style-type: none;
  border-bottom: 1px solid #C7C7C7;
}

/* line 16, ../sass/pages/_site-search.scss */
.page-site .sidebar ul li:last-child {
  border-bottom: 0;
}

/* line 20, ../sass/pages/_site-search.scss */
.page-site .sidebar h2 {
  font-size: 1em;
}

/* line 24, ../sass/pages/_site-search.scss */
.page-site .sidebar .block.block-facetapi.contextual-links-region {
  padding-bottom: 1em;
}

/* line 28, ../sass/pages/_site-search.scss */
.page-site #search-api-page-search-form {
  padding: 1em;
  background: #F1F1F1;
}

/* line 33, ../sass/pages/_site-search.scss */
.page-site #search-api-page-search-form .form-item {
  margin: 0 !important;
}

/* line 37, ../sass/pages/_site-search.scss */
.page-site .form-submit {
  margin-top: 1em;
}

/* line 41, ../sass/pages/_site-search.scss */
.page-site ol.search-results {
  margin: 0;
  padding: 0;
}

/* line 46, ../sass/pages/_site-search.scss */
.page-site article {
  border-bottom: 1px solid gray;
  padding-bottom: 2em;
  margin-bottom: 0em;
  padding-top: 1em;
  margin-top: 1em;
}

/* Mobile 320+ styles 
  --------------------------------------------------------------------- */
/* Mobile 480+ styles 
  --------------------------------------------------------------------- */
/* Large Tablet 768+ styles 
  --------------------------------------------------------------------- */
/* Desktop 960+ styles 
  --------------------------------------------------------------------- */
/* Desktop 1200 styles 
  --------------------------------------------------------------------- */
/* Global/Mobile Custom Styles  
  --------------------------------------------------------------------- */
/* line 4, ../sass/pages/_nofo.scss */
.region-tabs {
  padding-left: 0;
  margin-bottom: 0.5em;
}
/* line 7, ../sass/pages/_nofo.scss */
.region-tabs li {
  width: 100%;
  display: block;
  text-align: center;
}
/* line 11, ../sass/pages/_nofo.scss */
.region-tabs li a {
  background: #336666;
  display: block;
  padding: 0.5em;
  margin: 1px;
  color: white;
  border-radius: 10px 10px 0 0;
  text-decoration: none;
  font-size: 85%;
  line-height: 1;
}
/* line 21, ../sass/pages/_nofo.scss */
.region-tabs li a.active {
  background-color: #669999;
  font-weight: bold;
}

/* Mobile 480+ styles 
  --------------------------------------------------------------------- */
/* Large Tablet 768+ styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 768px) {
  /* line 39, ../sass/pages/_nofo.scss */
  .region-tabs li {
    width: 24%;
    float: left;
  }
  /* line 42, ../sass/pages/_nofo.scss */
  .region-tabs li a {
    min-height: 45px;
  }

  /* line 48, ../sass/pages/_nofo.scss */
  .doclet-content.doclet-fixed-content {
    clear: both;
    padding-top: 2em;
  }
}
/* Desktop 960+ styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 960px) {
  /* line 61, ../sass/pages/_nofo.scss */
  .region-tabs li a {
    min-height: 45px;
  }
}
/* Desktop 1200 styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 1200px) {
  /* line 74, ../sass/pages/_nofo.scss */
  .region-tabs li {
    width: 15%;
    float: left;
  }
}
/* line 1, ../sass/pages/_issues.scss */
.stack-button {
  background: #336666;
  width: 100%;
  margin-right: 1px;
  text-align: center;
  padding-top: 16px;
  padding-bottom: 1px;
  margin-bottom: 1px;
}

/* line 11, ../sass/pages/_issues.scss */
.stack-button a {
  color: white;
  text-decoration: none;
}

/* line 16, ../sass/pages/_issues.scss */
.stack-button a:hover {
  text-decoration: underline;
}

/* line 20, ../sass/pages/_issues.scss */
span.lets-move-institution {
  font-weight: bold;
}

/* Mobile 320+ styles 
  --------------------------------------------------------------------- */
/* Large Mobile 480+ styles 
  --------------------------------------------------------------------- */
/* Tablet styles 
  --------------------------------------------------------------------- */
/* Large Tablet 768+ styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 768px) {
  /* line 45, ../sass/pages/_issues.scss */
  .stack-button {
    width: 49%;
    float: left;
    margin-bottom: 1px;
  }
}
/* Desktop 960+ styles 
  --------------------------------------------------------------------- */
@media all and (min-width: 960px) {
  /* line 57, ../sass/pages/_issues.scss */
  .stack-button {
    float: left;
    width: 12%;
    margin-right: 1px;
    padding-top: 4px;
    padding-bottom: 4px;
    min-height: 48px;
  }
  /* line 64, ../sass/pages/_issues.scss */
  .stack-button p {
    margin: 0;
  }
}
/* Desktop 1200 styles 
  --------------------------------------------------------------------- */
/**
 * @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;
  }
}
/* SMACSS theme rules */
/* @import "theme-A"; */
/* @import "theme-B"; */
