/**
* @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. */
/*
 * Retina Sprites for Compass
 * by:              Andreas Sahle
 * forked from:     Retina-Sprites-for-Compass by Gaya Kessler
 * @see: https://github.com/Gaya/Retina-Sprites-for-Compass
 * last update:     04/13/14
 *
 * NOTE: This is a fork of the fork.
 *
 * Usage:
 * 1. create a folder in your image directory (in this case 'sprite-images').
 * 2. create sprite images for pixel ratio 1 screens and put them in the folder.
 * 4. create sprite images for pixel ratio 2 screens and put them in the folder,
 *    use the same filenames with a '-2x' suffix.
 * 5. use the sprite-image in your Sass/Scss using: '@include use-sprite(<sprite-name>)'
 */
/* BRAND COLORS */
@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic);
@import url(https://fonts.googleapis.com/css?family=Martel:200);
@import url(https://fonts.googleapis.com/css?family=Lora:400,700);
/**
 * Titles.
 */
/* line 61, ../sass/base/_typography.scss */
.page__title,
.node__title,
.block__title,
.comments__title,
.comments__form-title,
.comment__title {
  /* Comment title. */
  margin: 0;
}

/**
 * @file
 * Normalize.css is intended to be used as an alternative to CSS resets.
 *
 * This file is a slight fork of these original sources:
 * - normalize.css v2.1.2 | MIT License | git.io/normalize
 * - normalize.scss v2.1.2 | MIT/GPLv2 License | bit.ly/normalize-with-compass
 *
 * It's suggested that you read the normalize.scss file and customise it to meet
 * your needs, rather then including the file in your project and overriding the
 * defaults later in your CSS.
 * @see http://nicolasgallagher.com/about-normalize-css/
 *
 * Also: @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 *       @see http://snook.ca/archives/html_and_css/no_css_reset/
 */
/**
 * HTML5 display definitions
 */
/* Correct `block` display not defined in IE 8/9. */
/* line 23, ../sass/base/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* line 1, ../sass/base/_base.scss */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 9, ../sass/base/_base.scss */
body {
  font-size: 16px;
  /* Set to 16 as default font because 10 just ain't right. */
  line-height: 24px;
  font-weight: 400;
  background: #EEEEEE;
}

/**
 * Accessibility features.
 */
/* element-invisible as defined by http://snook.ca/archives/html_and_css/hiding-content-for-accessibility */
/* line 6, ../sass/base/_accesibility.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 12, ../sass/base/_accesibility.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 29, ../sass/base/_accesibility.scss */
#skip-link {
  margin: 0;
}
/* line 32, ../sass/base/_accesibility.scss */
#skip-link a,
#skip-link a:visited {
  display: block;
  width: 100%;
  padding: 2px 0 3px 0;
  text-align: center;
  background-color: #666;
  color: #fff;
}

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

/* line 10, ../sass/base/_formalize.scss */
.input_tiny {
  width: 50px;
}

/* line 14, ../sass/base/_formalize.scss */
.input_small {
  width: 100px;
}

/* line 18, ../sass/base/_formalize.scss */
.input_medium {
  width: 150px;
}

/* line 22, ../sass/base/_formalize.scss */
.input_large {
  width: 200px;
}

/* line 26, ../sass/base/_formalize.scss */
.input_xlarge {
  width: 250px;
}

/* line 30, ../sass/base/_formalize.scss */
.input_xxlarge {
  width: 300px;
}

/* line 37, ../sass/base/_formalize.scss */
input[type="search"]::-webkit-search-decoration {
  display: none;
}

/* line 48, ../sass/base/_formalize.scss */
input:invalid,
button:invalid,
a.button:invalid,
select:invalid,
textarea:invalid {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 53, ../sass/base/_formalize.scss */
input:focus,
button:focus,
a.button:focus,
select:focus,
textarea:focus {
  -moz-box-shadow: #06f 0 0 5px 0;
  -webkit-box-shadow: #06f 0 0 5px 0;
  box-shadow: #06f 0 0 5px 0;
  z-index: 1;
}

/* line 63, ../sass/base/_formalize.scss */
input[type="file"]:focus, input[type="file"]:active,
input[type="radio"]:focus,
input[type="radio"]:active,
input[type="checkbox"]:focus,
input[type="checkbox"]:active {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 69, ../sass/base/_formalize.scss */
button,
a.button,
input[type="reset"],
input[type="submit"],
input[type="button"] {
  -webkit-appearance: none;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -o-background-clip: padding-box;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2RkZGRkZCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #dddddd));
  background-image: -moz-linear-gradient(#ffffff, #dddddd);
  background-image: -webkit-linear-gradient(#ffffff, #dddddd);
  background-image: linear-gradient(#ffffff, #dddddd);
  border: 1px solid;
  border-color: #ddd #bbb #999;
  cursor: pointer;
  color: #333;
  display: inline-block;
  outline: 0;
  overflow: visible;
  margin: 0;
  padding: 3px 10px;
  text-shadow: white 0 1px 1px;
  text-decoration: none;
  vertical-align: top;
  width: auto;
  font: bold 12px/1.3 "Helvetica Neue", Arial, "Liberation Sans", FreeSans, sans-serif;
  background: #ddd url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAAAAADhgtq/AAAAHElEQVQoz2P8z4ADsOCW+UeGnsFs2nDzz5AMHQA+JRlAyyOraAAAAABJRU5ErkJggg==) repeat-x;
}
/* line 100, ../sass/base/_formalize.scss */
button:hover,
a.button:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMXB4IiBzdG9wLWNvbG9yPSIjZWVlZWVlIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjY2NjY2NjIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(1px, #eeeeee), color-stop(100%, #cccccc));
  background-image: -moz-linear-gradient(#ffffff, #eeeeee 1px, #cccccc);
  background-image: -webkit-linear-gradient(#ffffff, #eeeeee 1px, #cccccc);
  background-image: linear-gradient(#ffffff, #eeeeee 1px, #cccccc);
  text-decoration: none;
}
/* line 105, ../sass/base/_formalize.scss */
button:active,
a.button:active,
input[type="reset"]:active,
input[type="submit"]:active,
input[type="button"]:active {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RkZGRkZCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2VlZWVlZSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dddddd), color-stop(100%, #eeeeee));
  background-image: -moz-linear-gradient(#dddddd, #eeeeee);
  background-image: -webkit-linear-gradient(#dddddd, #eeeeee);
  background-image: linear-gradient(#dddddd, #eeeeee);
  -moz-box-shadow: inset rgba(0, 0, 0, 0.25) 0 1px 2px 0;
  -webkit-box-shadow: inset rgba(0, 0, 0, 0.25) 0 1px 2px 0;
  box-shadow: inset rgba(0, 0, 0, 0.25) 0 1px 2px 0;
  border-color: #999 #bbb #ddd;
}
/* line 113, ../sass/base/_formalize.scss */
button::-moz-focus-inner,
a.button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* line 120, ../sass/base/_formalize.scss */
textarea,
select,
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"] {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-background-clip: padding;
  -o-background-clip: padding-box;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-appearance: none;
  background-color: white;
  border: 1px solid;
  border-color: #848484 #c1c1c1 #e1e1e1;
  color: black;
  outline: 0;
  margin: 0;
  padding: 2px 3px;
  text-align: left;
  font-size: 13px;
  height: 1.8em;
  vertical-align: top;
  font-family: Arial, "Liberation Sans", FreeSans, sans-serif;
}
/* line 156, ../sass/base/_formalize.scss */
textarea[disabled],
select[disabled],
input[type="date"][disabled],
input[type="datetime"][disabled],
input[type="datetime-local"][disabled],
input[type="email"][disabled],
input[type="month"][disabled],
input[type="number"][disabled],
input[type="password"][disabled],
input[type="search"][disabled],
input[type="tel"][disabled],
input[type="text"][disabled],
input[type="time"][disabled],
input[type="url"][disabled],
input[type="week"][disabled] {
  background-color: #eee;
}

/* line 161, ../sass/base/_formalize.scss */
button[disabled],
input[disabled],
select[disabled],
select[disabled] option,
select[disabled] optgroup,
textarea[disabled],
a.button_disabled {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -moz-user-select: -moz-none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  user-select: none;
  color: #888;
  cursor: default;
}

/* line 180, ../sass/base/_formalize.scss */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #888;
}

/* line 185, ../sass/base/_formalize.scss */
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #888;
}

/* line 190, ../sass/base/_formalize.scss */
input.placeholder_text,
textarea.placeholder_text {
  color: #888;
}

/* line 195, ../sass/base/_formalize.scss */
textarea,
select[size],
select[multiple] {
  height: auto;
}

/* line 203, ../sass/base/_formalize.scss */
select[size="0"],
select[size="1"] {
  height: 1.8em;
}

@media (-webkit-min-device-pixel-ratio: 0) {
  /* line 210, ../sass/base/_formalize.scss */
  select[size],
  select[multiple],
  select[multiple][size] {
    background-image: none;
    padding-right: 3px;
  }

  /* line 217, ../sass/base/_formalize.scss */
  select,
  select[size="0"],
  select[size="1"] {
    background-image: url(data:image/png;base64,R0lGODlhDQAEAIAAAAAAAP8A/yH5BAEHAAEALAAAAAANAAQAAAILhA+hG5jMDpxvhgIAOw==);
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 20px;
  }

  /* line 227, ../sass/base/_formalize.scss */
  ::-webkit-validation-bubble-message {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #666), color-stop(1, black));
    border: 0;
    color: white;
    font: 13px/17px "Lucida Grande", Arial, "Liberation Sans", FreeSans, sans-serif;
    overflow: hidden;
    padding: 15px 15px 17px;
    text-shadow: black 0 0 1px;
    min-height: 16px;
  }

  /* line 240, ../sass/base/_formalize.scss */
  ::-webkit-validation-bubble-arrow,
  ::-webkit-validation-bubble-top-outer-arrow,
  ::-webkit-validation-bubble-top-inner-arrow {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #666;
    border-color: #666;
  }
}
/* line 250, ../sass/base/_formalize.scss */
textarea {
  min-height: 40px;
  overflow: auto;
  resize: vertical;
  width: 100%;
}

/* line 257, ../sass/base/_formalize.scss */
optgroup {
  color: black;
  font-style: normal;
  font-weight: normal;
  font-family: Arial, "Liberation Sans", FreeSans, sans-serif;
}
/* line 267, ../sass/base/_formalize.scss */
optgroup::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* Layout rules */
/**
 * @file
 * Positioning for a responsive layout.
 *
 * Define CSS classes to create a fluid grid layout with optional sidebars
 * depending on whether blocks are placed in the left or right sidebars.
 *
 * This layout uses the SingularityGS
 */
/**
 * Center the page.
 *
 * For screen sizes larger than 1200px, prevent excessively long lines of text
 * by setting a max-width.
 */
/* line 21, ../sass/layouts/_layout-base.scss */
#page,
.layout-container,
.region-bottom {
  margin-left: auto;
  margin-right: auto;
  /*max-width: 1400px;*/
}

/**
 * The layout when there is only one sidebar, the left one.
 */
/**
 * Use 3 grid columns for smaller screens.
 */
@media (min-width: 480px) and (max-width: 959px) {
  /* line 15, ../sass/layouts/_sidebar-first.scss */
  .sidebar-first {
    /* Span 2 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
  }
  /* line 17, ../sass/layouts/_sidebar-first.scss */
  .sidebar-first .panel-region--content {
    width: 63.63636%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }
  /* line 22, ../sass/layouts/_sidebar-first.scss */
  .sidebar-first .panel-region--left-sidebar {
    width: 27.27273%;
    float: left;
    margin-right: -100%;
    margin-left: 0;
    clear: none;
  }
}
/**
 * Use 5 grid columns for larger screens.
 */
@media (min-width: 960px) {
  /* line 39, ../sass/layouts/_sidebar-first.scss */
  .sidebar-first {
    /* Span 4 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
  }
  /* line 41, ../sass/layouts/_sidebar-first.scss */
  .sidebar-first .panel-region--content {
    width: 78.94737%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }
  /* line 46, ../sass/layouts/_sidebar-first.scss */
  .sidebar-first .panel-region--left-sidebar {
    width: 15.78947%;
    float: left;
    margin-right: -100%;
    margin-left: 0;
    clear: none;
  }
}
/**
 * The layout when there is only one sidebar, the right one.
 */
/**
 * Use 3 grid columns for smaller screens.
 */
@media (min-width: 480px) and (max-width: 959px) {
  /* line 16, ../sass/layouts/_sidebar-second.scss */
  .sidebar-second {
    /* Span 2 columns, starting in 1st column from left. */
    /* Span 1 column, starting in 3rd column from left. */
  }
}
/**
 * Use 9 grid columns for larger screens.
 */
@media (min-width: 960px) {
  /* line 39, ../sass/layouts/_sidebar-second.scss */
  .sidebar-second {
    /* Span 4 columns, starting in 1st column from left. */
    /* Span 1 column, starting in 5th column from left. */
  }
  /* line 41, ../sass/layouts/_sidebar-second.scss */
  .sidebar-second .panel-region--content,
  .sidebar-second .tm-content {
    width: 77.14286%;
    float: left;
    margin-right: -100%;
    margin-left: 0;
    clear: none;
  }
  /* line 47, ../sass/layouts/_sidebar-second.scss */
  .sidebar-second .panel-region--right-sidebar,
  .sidebar-second .tm-sidebar {
    width: 20%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }
}
/**
 * The layout when there are two sidebars.
 */
/**
 * Use 3 grid columns for smaller screens.
 */
@media (min-width: 480px) and (max-width: 959px) {
  /* line 14, ../sass/layouts/_two-sidebars.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 16, ../sass/layouts/_two-sidebars.scss */
  .two-sidebars .panel-region--content {
    width: 63.63636%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }
  /* line 21, ../sass/layouts/_two-sidebars.scss */
  .two-sidebars .panel-region--left-sidebar {
    width: 27.27273%;
    float: left;
    margin-right: -100%;
    margin-left: 0;
    clear: none;
  }
  /* line 26, ../sass/layouts/_two-sidebars.scss */
  .two-sidebars .panel-region--right-sidebar {
    width: 100%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
    clear: both;
  }
}
/**
 * Use 12 grid columns for larger screens.
 */
@media (min-width: 960px) {
  /* line 45, ../sass/layouts/_two-sidebars.scss */
  .two-sidebars {
    /* Span 7 columns, starting in 3rd column from left. */
    /* Span 2 columns, starting in 1st column from left. */
    /* Span 3 column2, starting in 9th column from left. */
  }
  /* line 47, ../sass/layouts/_two-sidebars.scss */
  .two-sidebars .panel-region--content {
    width: 57.44681%;
    float: left;
    margin-right: -100%;
    margin-left: 17.02128%;
    clear: none;
  }
  /* line 52, ../sass/layouts/_two-sidebars.scss */
  .two-sidebars .panel-region--left-sidebar {
    width: 14.89362%;
    float: left;
    margin-right: -100%;
    margin-left: 0;
    clear: none;
  }
  /* line 57, ../sass/layouts/_two-sidebars.scss */
  .two-sidebars .panel-region--right-sidebar {
    width: 23.40426%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }
}
/**
 * The layout for columns within a panel
 */
/**
 * Use 3 grid columns for smaller screens.
 */
@media (max-width: 479px) {
  /* line 14, ../sass/layouts/_panel_columns.scss */
  .pane-3-1 {
    /* Span 1 columns, starting in 2nd column from left. */
  }
  /* line 16, ../sass/layouts/_panel_columns.scss */
  .pane-3-1 .row {
    width: 100%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
    clear: both;
  }
}
@media (min-width: 480px) and (max-width: 959px) {
  /* line 31, ../sass/layouts/_panel_columns.scss */
  .pane-3-1 {
    /* Span 1 columns, starting in 2nd column from left. */
  }
  /* line 33, ../sass/layouts/_panel_columns.scss */
  .pane-3-1 .row {
    width: 100%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
    clear: both;
  }
}
/**
 * Use 12 grid columns for larger screens.
 */
@media (min-width: 960px) {
  /* line 51, ../sass/layouts/_panel_columns.scss */
  .pane-3-1 {
    /* Span 1 column, starting in 1st column from left. */
    /* Span 1 column, starting in 2nd column from left. */
    /* Span 1 column, starting in 2nd column from left. */
  }
  /* line 54, ../sass/layouts/_panel_columns.scss */
  .pane-3-1 .views-row-1,
  .pane-3-1 .views-row-4,
  .pane-3-1 .views-row-7,
  .pane-3-1 .views-row-10,
  .pane-3-1 .views-row-13 {
    width: 31.91489%;
    float: left;
    margin-right: -100%;
    margin-left: 0;
    clear: none;
    clear: both;
  }
  /* line 64, ../sass/layouts/_panel_columns.scss */
  .pane-3-1 .views-row-2,
  .pane-3-1 .views-row-5,
  .pane-3-1 .views-row-8,
  .pane-3-1 .views-row-11,
  .pane-3-1 .views-row-14 {
    width: 31.91489%;
    float: left;
    margin-right: -100%;
    margin-left: 34.04255%;
    clear: none;
  }
  /* line 73, ../sass/layouts/_panel_columns.scss */
  .pane-3-1 .views-row-3,
  .pane-3-1 .views-row-6,
  .pane-3-1 .views-row-9,
  .pane-3-1 .views-row-12,
  .pane-3-1 .views-row-15 {
    width: 31.91489%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }

  /* line 83, ../sass/layouts/_panel_columns.scss */
  .pane-2-1 {
    /* Span 1 column, starting in 1st column from left. */
    /* Span 1 column, starting in 2nd column from left. */
  }
  /* line 86, ../sass/layouts/_panel_columns.scss */
  .pane-2-1 .views-row-1 {
    width: 48.93617%;
    float: left;
    margin-right: -100%;
    margin-left: 0;
    clear: none;
    clear: both;
  }
  /* line 92, ../sass/layouts/_panel_columns.scss */
  .pane-2-1 .views-row-2 {
    width: 48.93617%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }
}
/* Component (SMACSS module) rules */
/**
 * Wireframes.
 */
/* line 7, ../sass/components/_wireframes.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;
}

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

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

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

/* The name of the website. */
/* line 23, ../sass/components/_header.scss */
.header__site-name {
  margin: 0;
  font-size: 42px;
  font-size: 4.2rem;
  line-height: 48px;
  line-height: 4.8rem;
}

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

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

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

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

/**
 * Navigation bar.
 */
/* line 4, ../sass/components/_navigation.scss */
#navigation {
  /* Sometimes you want to prevent overlapping with main div. */
  /* overflow: hidden; */
  padding: 1em 0;
  /* Main menu and secondary menu links and menu block links. */
}
/* line 9, ../sass/components/_navigation.scss */
#navigation .block {
  margin-bottom: 0;
}
/* line 19, ../sass/components/_navigation.scss */
#navigation .links,
#navigation .menu {
  margin: 0;
  padding: 0;
  text-align: left;
  /* LTR */
}
/* line 25, ../sass/components/_navigation.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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Hide sidebars and nav elements. */
  /* line 64, ../sass/_print.scss */
  #skip-link,
  #toolbar,
  #navigation,
  .region-sidebar-first,
  .region-sidebar-second,
  #footer,
  .breadcrumb,
  .tabs,
  .action-links,
  .links,
  .book-navigation,
  .forum-topic-navigation,
  .pager,
  .feed-icons {
    visibility: hidden;
    display: none;
  }
}
/* SMACSS theme rules */
/* @import "theme-A"; */
/* @import "theme-B"; */
/* line 37, ../sass/styles.scss */
a {
  color: #29abe2;
}

/* line 41, ../sass/styles.scss */
.fixed-layout-pane {
  margin: 0 auto;
  max-width: 1020px;
  zoom: 1;
}
/* line 133, ../sass/base/_mixins.scss */
.fixed-layout-pane:before, .fixed-layout-pane:after {
  content: "";
  display: table;
}
/* line 138, ../sass/base/_mixins.scss */
.fixed-layout-pane:after {
  clear: both;
}

/* line 48, ../sass/styles.scss */
#header .region-header > div {
  float: left;
  margin-bottom: 0;
}

/* NAVIGATION */
/* line 56, ../sass/styles.scss */
#primary-menu-pane {
  background-color: rgba(0, 0, 0, 0.7) !important;
  background-color: #323232;
  padding: 10px 20px 0;
  height: 75px;
  position: relative;
  width: 100%;
  z-index: 10;
  /* overrides for sticky nav */
  position: fixed;
  max-width: 100%;
  z-index: 100;
  top: 0;
  transition: top 200ms ease-in;
  /* end overrides for sticky nav */
}
/* line 70, ../sass/styles.scss */
#primary-menu-pane.out-of-site {
  top: -360px;
}
/* line 73, ../sass/styles.scss */
#primary-menu-pane.user-logged-in {
  top: auto;
}
/* line 77, ../sass/styles.scss */
#primary-menu-pane:after {
  content: '';
  display: table;
  clear: both;
}
/* line 82, ../sass/styles.scss */
#primary-menu-pane a {
  color: #fff;
}
/* line 85, ../sass/styles.scss */
#primary-menu-pane .hamburger {
  display: none;
}

/* line 90, ../sass/styles.scss */
#navigation {
  float: right;
  background: #fff;
}
/* line 93, ../sass/styles.scss */
#navigation .contextual-links-region {
  position: static;
  background-color: transparent;
}
/* line 98, ../sass/styles.scss */
#navigation li > a {
  border-right: 0;
  border-top: 0;
  color: #fff;
  font-weight: bold;
  padding: 15px 7px 25px 7px;
  font-size: 13px;
  letter-spacing: 3px;
  text-decoration: none !important;
  text-transform: uppercase;
  background: transparent !important;
}
/* line 110, ../sass/styles.scss */
#navigation li > a:focus,
#navigation li > a:hover {
  background-color: transparent;
  color: #ccc;
}
/* line 115, ../sass/styles.scss */
#navigation .active > a,
#navigation .active > a:hover,
#navigation .active > a:focus {
  background-color: transparent;
}
/* line 121, ../sass/styles.scss */
#navigation li.blog {
  border-left: 1px solid #999;
}
/* line 123, ../sass/styles.scss */
#navigation li.blog a {
  color: #b8a161;
  margin-left: 1em;
}

/* CLEAR CONTENTS */
/* line 133, ../sass/styles.scss */
.clearcontents {
  zoom: 1;
}
/* line 133, ../sass/base/_mixins.scss */
.clearcontents:before, .clearcontents:after {
  content: "";
  display: table;
}
/* line 138, ../sass/base/_mixins.scss */
.clearcontents:after {
  clear: both;
}

/* line 137, ../sass/styles.scss */
.panel-clear,
.block-contact-block {
  zoom: 1;
}
/* line 133, ../sass/base/_mixins.scss */
.panel-clear:before, .panel-clear:after,
.block-contact-block:before,
.block-contact-block:after {
  content: "";
  display: table;
}
/* line 138, ../sass/base/_mixins.scss */
.panel-clear:after,
.block-contact-block:after {
  clear: both;
}

/* line 146, ../sass/styles.scss */
.footer-block {
  max-width: 1020px;
  margin: 0 auto;
  color: #FFF;
  font-size: .9em;
}
/* line 151, ../sass/styles.scss */
.footer-block .footer-left {
  float: left;
}
/* line 154, ../sass/styles.scss */
.footer-block .footer-right {
  float: right;
}
/* line 156, ../sass/styles.scss */
.footer-block .footer-right ul {
  list-style-type: none;
}
/* line 158, ../sass/styles.scss */
.footer-block .footer-right ul li {
  display: inline;
  padding: 0 0 0 20px;
}
/* line 161, ../sass/styles.scss */
.footer-block .footer-right ul li:first-child {
  padding-left: 0;
}
@media (max-width: 959px) {
  /* line 169, ../sass/styles.scss */
  .footer-block .footer-left,
  .footer-block .footer-right {
    float: none;
    text-align: center;
  }
  /* line 173, ../sass/styles.scss */
  .footer-block .footer-left ul,
  .footer-block .footer-right ul {
    text-align: center;
  }
}

/* ADMIN TOOLBAR */
/* line 182, ../sass/styles.scss */
.toolbar .toolbar-bar .toolbar-tab > .toolbar-icon {
  background: #222;
}

/* FF */
/* line 189, ../sass/styles.scss */
input[type=number] {
  -moz-appearance: textfield;
}

/* IE9 */
/* line 194, ../sass/styles.scss */
.csstransforms.no-csstransforms3d.js.no-touch .path-frontpage .view-hero .wrapper {
  width: 100vw;
  margin-left: 0;
}
/* line 197, ../sass/styles.scss */
.csstransforms.no-csstransforms3d.js.no-touch .path-frontpage .view-hero .wrapper .button {
  background: transparent;
}

/* line 202, ../sass/styles.scss */
.field--name-field-csv-percentagein10,
.field--name-field-csv-percentagetarget,
.field--name-field-csv-security-total,
.field--name-field-csv-domestic-total,
.field--name-field-csv-social-total,
.field--name-field-csv-health-total,
.field--name-field-csv-other-total,
.field--name-field-csv-revenue-total,
.field--name-field-csv-expenditures-total {
  display: none;
}

/* line 214, ../sass/styles.scss */
#crfb-app-wrapper #progress_area .bar-chart-horizontal {
  display: block;
}

/* line 219, ../sass/styles.scss */
.node--type-csv-import #scroll > .field {
  margin-bottom: 2em;
}

/* line 223, ../sass/styles.scss */
body.page-node-type-csv-import {
  padding-top: 130px;
}

/* line 226, ../sass/styles.scss */
.page-node-type-csv-import #crfb-app-wrapper {
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
}
/* line 230, ../sass/styles.scss */
.page-node-type-csv-import #crfb-app-wrapper .field--name-field-csv-selected-options .field__item:before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  background-color: #333;
  border-radius: 50%;
}

/* line 241, ../sass/styles.scss */
th {
  text-align: left;
  padding: 20px 10px;
  font-weight: normal;
}
/* line 245, ../sass/styles.scss */
th.is-active {
  font-weight: bold;
}

/* line 250, ../sass/styles.scss */
td {
  padding: 20px;
  border: 1px solid #eee;
}

/* line 255, ../sass/styles.scss */
.view-entries {
  overflow: visible;
}
/* line 257, ../sass/styles.scss */
.view-entries table {
  border-spacing: 0;
  border-collapse: collapse;
  margin-top: 0px;
}
/* line 262, ../sass/styles.scss */
.view-entries th {
  /* Something you can count on */
  height: 200px;
  white-space: nowrap;
  text-align: right;
  margin: 0;
  padding: 0;
}
/* line 269, ../sass/styles.scss */
.view-entries th a {
  text-decoration: none;
}
/* line 273, ../sass/styles.scss */
.view-entries.view-display-id-page_2 > .view-content td:nth-child(even),
.view-entries td {
  padding: 20px;
  margin: 0;
  text-align: center;
  border: 1px solid #eee;
}
/* line 282, ../sass/styles.scss */
.view-entries.view-display-id-page_2 > .view-content td:nth-child(even).selected .middot,
.view-entries td.selected .middot {
  display: block;
  text-align: center;
}
/* line 288, ../sass/styles.scss */
.view-entries th {
  vertical-align: bottom;
  padding-bottom: 10px;
}
/* line 292, ../sass/styles.scss */
.view-entries th > div {
  transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform-origin: 20px 0;
  -webkit-transform-origin-x: 20px;
  -webkit-transform-origin-y: 0px;
  -ms-transform-origin-x: 20px;
  -ms-transform-origin-y: 0px;
  -moz-transform-origin-x: 20px;
  -moz-transform-origin-y: 0px;
  width: 30px;
}

/* line 311, ../sass/styles.scss */
.view-entries.view-display-id-page_2 .view-header,
.view-entries.view-display-id-page_2 > .view-content #view-field-csv-selected-options-array-table-column,
.view-entries.view-display-id-page_2 > .view-content .views-field-field-csv-selected-options-array {
  display: none;
}

/* line 316, ../sass/styles.scss */
.view-entries.view-display-id-page_2 > .view-content td {
  background-color: #fff;
}

/* line 319, ../sass/styles.scss */
.view-entries.view-display-id-page_2 > .view-content th:nth-child(even),
.view-entries.view-display-id-page_2 > .view-content td:nth-child(even) {
  background-color: #f3f3f3;
}

/* line 323, ../sass/styles.scss */
body:not(.hide-percentages) .view-entries.view-display-id-page_2 > .view-content tr:nth-child(1) td,
body:not(.hide-percentages) .view-entries.view-display-id-page_2 > .view-content tr:nth-child(1) td:nth-child(even) {
  background-color: #fff;
  border-bottom: 2px double #ccc;
  border-top: 2px double #ccc;
}

/* line 331, ../sass/styles.scss */
.copy-to-clipboard {
  padding: 10px 20px;
  background: #29abe2;
  color: #fff;
  display: inline-block;
  border-radius: 6px;
  text-decoration: none;
}

/* line 343, ../sass/styles.scss */
body.path-entries .view-entries table,
body.path-frontpage .view-entries table {
  overflow: hidden;
}
/* line 345, ../sass/styles.scss */
body.path-entries .view-entries table th,
body.path-frontpage .view-entries table th {
  height: 400px;
}
/* line 348, ../sass/styles.scss */
body.path-entries .view-entries table th > div,
body.path-frontpage .view-entries table th > div {
  transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform-origin: 20px 0;
  -webkit-transform-origin-x: 20px;
  -webkit-transform-origin-y: 0px;
  -ms-transform-origin-x: 20px;
  -ms-transform-origin-y: 0px;
  -moz-transform-origin-x: 20px;
  -moz-transform-origin-y: 0px;
  width: 30px;
}

/* line 365, ../sass/styles.scss */
body {
  overflow: auto;
  overflow-x: auto !important;
  padding: 60px 40px 40px;
  font-family: "proxima-nova", Arial, sans-serif;
}

/* line 373, ../sass/styles.scss */
body:not(.user-logged-in) #block-trestle-main-menu {
  position: fixed;
  background: #fff;
  height: 70px;
  border-bottom: 1px solid #ccc;
  top: 0;
  width: auto;
  z-index: 1000;
  right: 0px;
  left: 0px;
  padding-right: 40px;
  padding-left: 40px;
}

/* line 390, ../sass/styles.scss */
#block-trestle-main-menu ul li {
  display: inline-block;
}
/* line 392, ../sass/styles.scss */
#block-trestle-main-menu ul li a {
  text-decoration: none;
  margin-right: 20px;
}
/* line 397, ../sass/styles.scss */
#block-trestle-main-menu ul li.menu-item--active-trail a {
  color: #000;
}

/* line 404, ../sass/styles.scss */
h1,
.view-entries.view-display-id-block_1,
#modal-back,
th .tablesort {
  display: none;
}

/* line 410, ../sass/styles.scss */
td a {
  font-weight: normal;
  color: #000;
}

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