/**
 * @file
 * Styles are organized using the SMACSS technique. @see http://smacss.com/book/
 *
 * When you turn on CSS aggregation at admin/config/development/performance, all
 * of these @include files will be combined into a single file.
 */
/* Import Sass mixins, variables, Compass modules, etc. */
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic);
/* HTML element (SMACSS base) rules */
/**
 * @file
 * Normalize.css is intended to be used as an alternative to CSS resets.
 *
 * This file is a slight fork of these original sources:
 * - normalize.css v2.1.2 | MIT License | git.io/normalize
 * - normalize.scss v2.1.2 | MIT/GPLv2 License | bit.ly/normalize-with-compass
 *
 * It's suggested that you read the normalize.scss file and customise it to meet
 * your needs, rather then including the file in your project and overriding the
 * defaults later in your CSS.
 * @see http://nicolasgallagher.com/about-normalize-css/
 *
 * Also: @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 *       @see http://snook.ca/archives/html_and_css/no_css_reset/
 */
/**
 * HTML5 display definitions
 */
/* Correct `block` display not defined in IE 8/9. */
/* line 23, ../sass/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

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

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
/* line 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 _base.scss partial.
 */
/*
@font-face {
  font-family: 'Example';
  src: url('../fonts/example.eot');
  src: url('../fonts/example.eot?iefix') format('eot'),
    url('../fonts/example.woff') format('woff'),
    url('../fonts/example.ttf') format('truetype'),
    url('../fonts/example.svg#webfontOkOndcij') format('svg');
  font-weight: normal;
  font-style: normal;
}
*/
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 * 3. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 */
/* line 106, ../sass/_normalize.scss */
html {
  font-family: "Open Sans", sans-serif;
  /* 1 */
  font-size: 81.25%;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  line-height: 1.53846em;
}

/* 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 153, ../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 169, ../sass/_normalize.scss */
p,
pre {
  margin: 1.53846em 0;
}

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

/**
 * 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: 1.92308em;
  line-height: 1.6em;
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
  margin-top: 0.8em;
  margin-bottom: 0.8em;
}

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

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

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

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

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

/* 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 222, ../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 {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  border: 1px solid #666;
  padding-bottom: -1px;
  margin: 1.53846em 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 248, ../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.53846em;
}

/* 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 284, ../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 301, ../sass/_normalize.scss */
dl,
menu,
ol,
ul {
  /* Address margins set differently in IE 6/7. */
  margin: 1.53846em 0;
}

/* line 310, ../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 0px;
  /* LTR */
}

/* Address paddings set differently in IE 6/7. */
/* line 321, ../sass/_normalize.scss */
menu,
ol,
ul {
  padding: 0 0 0 0px;
  /* 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. */
}

/* 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-width: 0.07692em;
  border-top-style: solid;
  padding-top: 0.46154em;
  border-bottom-width: 0.07692em;
  border-bottom-style: solid;
  padding-bottom: 0.92308em;
  border-left-width: 0.07692em;
  border-left-style: solid;
  padding-left: 0.92308em;
  border-right-width: 0.07692em;
  border-right-style: solid;
  padding-right: 0.92308em;
}

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

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 432, ../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 443, ../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 457, ../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 471, ../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 482, ../sass/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

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

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/* line 506, ../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 512, ../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.53846em;
  margin-bottom: 1.53846em;
}

/* 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 33, ../sass/layouts/_responsive.scss */
#page,
.region-bottom {
  margin-left: auto;
  margin-right: auto;
  max-width: 960px;
}

/* Apply the shared properties of grid items in a single, efficient ruleset. */
/* line 41, ../sass/layouts/_responsive.scss */
#header,
#content,
#navigation,
.region-sidebar-first,
.region-sidebar-second,
#footer {
  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;
}

/* Containers for grid items and flow items. */
/* line 45, ../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;
}

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

  /* line 65, ../sass/layouts/_responsive.scss */
  #navigation {
    /* Move the navbar up inside #main's padding. */
    position: absolute;
    top: 0;
    height: 90px;
    width: 100%;
  }
}
/**
 * Use 3 grid columns for smaller screens.
 */
@media all and (max-width: 767px) {
  /**
   * The layout when there is only one sidebar, the left one.
   */
  /* line 86, ../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 88, ../sass/layouts/_responsive.scss */
  .sidebar-first #content {
    clear: left;
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }
  /* line 94, ../sass/layouts/_responsive.scss */
  .sidebar-first .region-sidebar-first {
    clear: left;
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }

  /**
   * The layout when there is only one sidebar, the right one.
   */
  /* line 103, ../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 105, ../sass/layouts/_responsive.scss */
  .sidebar-second #content {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }
  /* line 110, ../sass/layouts/_responsive.scss */
  .sidebar-second .region-sidebar-second {
    clear: left;
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }

  /**
   * The layout when there are two sidebars.
   */
  /* line 119, ../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 121, ../sass/layouts/_responsive.scss */
  .two-sidebars #content {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }
  /* line 126, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-first {
    clear: left;
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }
  /* line 132, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 75%;
    margin-left: 0%;
    margin-right: -75%;
    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 138, ../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 142, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n+1) {
    float: left;
    width: 25%;
    margin-left: 0%;
    margin-right: -25%;
    clear: left;
  }
  /* line 147, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n+2) {
    float: left;
    width: 25%;
    margin-left: 25%;
    margin-right: -50%;
  }
  /* line 151, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n) {
    float: left;
    width: 25%;
    margin-left: 50%;
    margin-right: -75%;
  }
}
/**
 * Use 5 grid columns for larger screens.
 */
@media all and (min-width: 768px) {
  /**
   * The layout when there is only one sidebar, the left one.
   */
  /* line 168, ../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 170, ../sass/layouts/_responsive.scss */
  .sidebar-first #content {
    float: left;
    width: 75%;
    margin-left: 25%;
    margin-right: -100%;
  }
  /* line 175, ../sass/layouts/_responsive.scss */
  .sidebar-first .region-sidebar-first {
    float: left;
    width: 25%;
    margin-left: 0%;
    margin-right: -25%;
  }

  /**
   * The layout when there is only one sidebar, the right one.
   */
  /* line 183, ../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 185, ../sass/layouts/_responsive.scss */
  .sidebar-second #content {
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -50%;
  }
  /* line 190, ../sass/layouts/_responsive.scss */
  .sidebar-second .region-sidebar-second {
    float: left;
    width: 50%;
    margin-left: 50%;
    margin-right: -100%;
  }

  /**
   * The layout when there are two sidebars.
   */
  /* line 198, ../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 200, ../sass/layouts/_responsive.scss */
  .two-sidebars #content {
    float: left;
    width: 50%;
    margin-left: 25%;
    margin-right: -75%;
  }
  /* line 205, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 25%;
    margin-left: 0%;
    margin-right: -25%;
  }
  /* line 210, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 25%;
    margin-left: 75%;
    margin-right: -100%;
  }
}
/* Component (SMACSS module) rules */
/**
 * @file
 * SMACSS Modules
 *
 * Adds modular sets of styles.
 *
 * Additional useful selectors can be found in Zen's online documentation.
 * https://drupal.org/node/1707736
 */
/**
 * Wireframes.
 */
/* line 15, ../sass/components/_misc.scss */
.with-wireframes #header,
.with-wireframes #main,
.with-wireframes #content,
.with-wireframes #navigation,
.with-wireframes .region-sidebar-first,
.with-wireframes .region-sidebar-second,
.with-wireframes #footer,
.with-wireframes .region-bottom {
  outline: 1px solid #ccc;
}

/* line 33, ../sass/components/_misc.scss */
a:active, a:focus {
  outline-style: none;
}

/**
 * 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 46, ../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 63, ../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: 1.92308em;
  line-height: 1.6em;
}

/* The link around the name of the website. */
/* line 106, ../sass/components/_misc.scss */
.header__site-link:link, .header__site-link:visited {
  color: #000;
  text-decoration: none;
}
/* line 112, ../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. */
/**
 * Navigation bar.
 */
/* line 135, ../sass/components/_misc.scss */
#navigation {
  /* Sometimes you want to prevent overlapping with main div. */
  /* overflow: hidden; */
  /* Main menu and secondary menu links and menu block links. */
}
/* line 139, ../sass/components/_misc.scss */
#navigation .block {
  margin-bottom: 0;
}
/* line 149, ../sass/components/_misc.scss */
#navigation .links,
#navigation .menu {
  margin: 0;
  padding: 0;
  text-align: left;
  /* LTR */
}
/* line 155, ../sass/components/_misc.scss */
#navigation .links li,
#navigation .menu li {
  /* A simple method to get navigation links to appear in one line. */
  float: left;
  /* LTR */
  padding: 0 10px 0 0;
  /* LTR */
  list-style-type: none;
  list-style-image: none;
}

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

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

/**
 * Messages.
 */
/* line 196, ../sass/components/_misc.scss */
.messages, .messages--status, .messages--warning, .messages--error {
  margin: 1.53846em 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 211, ../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 220, ../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 230, ../sass/components/_misc.scss */
.messages__list {
  margin: 0;
}

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

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

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

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

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

/**
 * Tabs.
 */
/* Basic positioning styles shared by primary and secondary tabs. */
/* line 264, ../sass/components/_misc.scss */
.tabs-primary, .tabs-secondary {
  overflow: hidden;
  *zoom: 1;
  /* IE 9 and earlier don't understand gradients. */
  list-style: none;
  border-bottom: 1px solid #bbb \0/ie;
  margin: 1.53846em 0;
  padding: 0 2px;
  white-space: nowrap;
}

/* line 273, ../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 277, ../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-right: 0;
  border-bottom: 0;
  display: block;
  line-height: 1.53846em;
  text-decoration: none;
}

/* Primary tabs. */
/* line 289, ../sass/components/_misc.scss */
.tabs-primary__tab, .tabs-primary__tab.is-active {
  border: 1px solid #bbb;
  border-bottom-color: transparent;
  /* IE 9 and earlier don't understand gradients. */
  border-bottom: 0 \0/ie;
}

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

/* line 302, ../sass/components/_misc.scss */
a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active {
  color: #333;
  background-color: #dedede;
  letter-spacing: 1px;
  padding: 0 1em;
  text-align: center;
}

/* line 310, ../sass/components/_misc.scss */
a.tabs-primary__tab-link:hover, a.tabs-primary__tab-link:focus {
  background-color: #e9e9e9;
  border-color: #f2f2f2;
}

/* line 314, ../sass/components/_misc.scss */
a.tabs-primary__tab-link:active, a.tabs-primary__tab-link.is-active {
  background-color: transparent;
  border-color: #fff;
}

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

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

/* line 349, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  background-color: #f2f2f2;
  color: #666;
  padding: 0 .5em;
}

/* line 355, ../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 360, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link:active, a.tabs-secondary__tab-link.is-active {
  background-color: #666;
  border-color: #000;
  color: #fff;
}

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

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

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

/* line 412, ../sass/components/_misc.scss */
.more-help-link a {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA7UlEQVR42qWTPQqDQBCFcwSPkCNITpAj5AjeIm1uYpkyR7Cy2Mot7OwsBAsRwUKwmOwLGRle3EIy8PyBfZ/z3J2TiPylz8VWWZZpUB40BonRKyizaxkA88MYYiqCEgv4MTvnZJom0VqWRbz3FlJZgLYtqmEY1Lg9r+sKsIXcLSC3AC019H0vqLquLeC5AfiHYSGkcdAJimKIBQiJ4+CO92OAtm0FNc8zOjkMwE5Q63FAtbeg6zpAYvG8BWR7i5qmQYwY4MIHqYhE2DOPQWcGJBQF2XU72ZzyUeZ5GCNt5/hybJgYdAXsq5sOEE/jG6dC5IOqCXTmAAAAAElFTkSuQmCC');
  background-position: 0 50%;
  /* LTR */
  background-repeat: no-repeat;
  padding: 1px 0 1px 20px;
  /* LTR */
}

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

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

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

/**
 * Menus.
 */
/* line 466, ../sass/components/_misc.scss */
.menu__item.is-leaf {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHBAMAAAA2fErgAAAAD1BMVEX///+/v7+Li4sAAADAwMBFvsw8AAAAAXRSTlMAQObYZgAAAB1JREFUCFtjYAADYwMGBmYVZSDhKAwkFJWhYiAAAB2+Aa/9ugeaAAAAAElFTkSuQmCC');
  list-style-type: square;
}

/* line 473, ../sass/components/_misc.scss */
.menu__item.is-expanded {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');
  list-style-type: circle;
}

/* line 480, ../sass/components/_misc.scss */
.menu__item.is-collapsed {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');
  /* LTR */
  list-style-type: disc;
}

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

/**
 * Marker.
 */
/* The "new" or "updated" marker. */
/* line 498, ../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 510, ../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 538, ../sass/components/_misc.scss */
.comments {
  margin: 1.53846em 0;
}

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

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

/* Nested comments are indented. */
/* line 559, ../sass/components/_misc.scss */
.indented {
  /* Drupal core uses a 25px left margin. */
  margin-left: 0px;
  /* LTR */
}

/**
 * Forms.
 */
/* Wrapper for a form element (or group of form elements) and its label. */
/* line 569, ../sass/components/_misc.scss */
.form-item {
  margin: 1.53846em 0;
  width: 100%;
  /* 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 574, ../sass/components/_misc.scss */
.form-checkboxes .form-item, .form-radios .form-item {
  /* Drupal core uses "0.4em 0". */
  margin: 0;
}
/* line 581, ../sass/components/_misc.scss */
tr.odd .form-item, tr.even .form-item {
  margin: 0;
}
/* line 587, ../sass/components/_misc.scss */
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}
/* line 594, ../sass/components/_misc.scss */
.form-item .description {
  font-size: 0.85em;
}
/* line 598, ../sass/components/_misc.scss */
.form-item select {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
/* line 734, ../sass/components/_misc.scss */
html.js .collapsible .fieldset-legend {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');
  background-position: 5px 65%;
  /* LTR */
  background-repeat: no-repeat;
  padding-left: 15px;
  /* LTR */
}
/* line 743, ../sass/components/_misc.scss */
html.js .collapsed .fieldset-legend {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');
  /* LTR */
  background-position: 5px 50%;
  /* LTR */
}
/* line 750, ../sass/components/_misc.scss */
.fieldset-legend .summary {
  color: #999;
  font-size: 0.9em;
  margin-left: 0.5em;
}

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

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

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

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

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

/* line 803, ../sass/components/_misc.scss */
[id^="views-exposed-form-search-page"] .views-exposed-form .views-exposed-widget {
  float: none;
}
/* line 805, ../sass/components/_misc.scss */
[id^="views-exposed-form-search-page"] .views-exposed-form .views-exposed-widget.views-submit-button, [id^="views-exposed-form-search-page"] .views-exposed-form .views-exposed-widget.views-reset-button {
  float: left;
}
/* line 812, ../sass/components/_misc.scss */
[id^="views-exposed-form-search-page"] .container-inline-date .form-item {
  width: 100%;
}
/* line 814, ../sass/components/_misc.scss */
[id^="views-exposed-form-search-page"] .container-inline-date .form-item input {
  width: 100%;
}
/* line 818, ../sass/components/_misc.scss */
[id^="views-exposed-form-search-page"] .container-inline-date .date-padding {
  float: none;
}
/* line 822, ../sass/components/_misc.scss */
[id^="views-exposed-form-search-page"] select {
  visibility: hidden;
}
/* line 825, ../sass/components/_misc.scss */
[id^="views-exposed-form-search-page"] .form-item-search-type {
  margin-bottom: 10px;
}
/* line 828, ../sass/components/_misc.scss */
[id^="views-exposed-form-search-page"] .description {
  font-style: italic;
  padding-top: 5px;
}

/* line 835, ../sass/components/_misc.scss */
li.dhtml-menu-open > a {
  font-style: normal;
}

/* line 840, ../sass/components/_misc.scss */
body.admin-menu {
  margin-top: 29px !important;
}

/* line 845, ../sass/components/_misc.scss */
table {
  border-color: #777777;
  border-style: solid;
}
/* line 850, ../sass/components/_misc.scss */
table td {
  vertical-align: top;
  padding: 5px;
  border-color: #777777;
}
/* line 854, ../sass/components/_misc.scss */
table td p {
  margin-bottom: 5px;
}

/* line 1, ../sass/components/_header.scss */
#block-menu-menu-sub-menu,
#block-system-main-menu {
  overflow: hidden;
  *zoom: 1;
}

/* line 5, ../sass/components/_header.scss */
#logo-title {
  float: left;
  width: 176px;
  height: 80px;
  padding: 4px;
  background-color: #fff;
}

/* line 12, ../sass/components/_header.scss */
#site-name {
  margin-bottom: 11px;
  margin-top: 0;
}
/* line 15, ../sass/components/_header.scss */
#site-name a {
  text-indent: -9999px;
  display: block;
  background: url("../images/bcn_sprite.png") 0 0 no-repeat;
  width: 176px;
  height: 80px;
}

/* line 23, ../sass/components/_header.scss */
#site-slogan {
  font-size: 14px;
  font-weight: bold;
  color: #6E6D5F;
  padding-bottom: 2px;
}

/* line 29, ../sass/components/_header.scss */
.region-navigation {
  height: 100%;
  position: relative;
}
/* line 32, ../sass/components/_header.scss */
.region-navigation .block-menu-block {
  width: auto;
}
/* line 36, ../sass/components/_header.scss */
.region-navigation #block-menu-block-7,
.region-navigation #block-menu-menu-landing-page-menu {
  border: 2px solid #c74711;
  position: absolute;
  right: 0;
  bottom: 40px;
  z-index: 99;
}
/* line 43, ../sass/components/_header.scss */
.region-navigation #block-menu-block-7 .menu,
.region-navigation #block-menu-menu-landing-page-menu .menu {
  padding: 0;
}
/* line 44, ../sass/components/_header.scss */
.region-navigation #block-menu-block-7 .menu .menu,
.region-navigation #block-menu-menu-landing-page-menu .menu .menu {
  display: none;
  /*don't display the next levels*/
  position: absolute;
  top: 33px;
  left: -2px;
  right: -2px;
  background: rgba(255, 255, 255, 0.8);
  border-right: 2px solid rgba(87, 87, 87, 0.8);
  border-bottom: 2px solid rgba(87, 87, 87, 0.8);
  border-left: 2px solid rgba(87, 87, 87, 0.8);
}
/* line 54, ../sass/components/_header.scss */
.region-navigation #block-menu-block-7 .menu .menu li,
.region-navigation #block-menu-menu-landing-page-menu .menu .menu li {
  float: none;
}
/* line 56, ../sass/components/_header.scss */
.region-navigation #block-menu-block-7 .menu .menu li a,
.region-navigation #block-menu-menu-landing-page-menu .menu .menu li a {
  background-color: transparent;
  font-weight: normal;
}
/* line 63, ../sass/components/_header.scss */
.region-navigation #block-menu-block-7 .menu li,
.region-navigation #block-menu-menu-landing-page-menu .menu li {
  margin: 0;
  padding: 0;
  float: left;
  border-top: 0 none;
  position: relative;
}
/* line 74, ../sass/components/_header.scss */
.region-navigation #block-menu-block-7 .menu li a:not(.dhtml-menu-icon),
.region-navigation #block-menu-menu-landing-page-menu .menu li a:not(.dhtml-menu-icon) {
  background-image: none;
  background-color: #fff;
  border-right: 2px solid #c74711;
  color: #6e6d5f;
  display: block;
  font-weight: bold;
  padding: 7px 12px;
  letter-spacing: 0.2px;
  font-size: 14px;
  line-height: 17px;
}
/* line 86, ../sass/components/_header.scss */
.region-navigation #block-menu-block-7 .menu li a:not(.dhtml-menu-icon):hover,
.region-navigation #block-menu-menu-landing-page-menu .menu li a:not(.dhtml-menu-icon):hover {
  color: #c74711;
}
/* line 91, ../sass/components/_header.scss */
.region-navigation #block-menu-block-7 .menu li a.active,
.region-navigation #block-menu-menu-landing-page-menu .menu li a.active {
  background-color: #c74711;
  color: #ffffff;
}
/* line 96, ../sass/components/_header.scss */
.region-navigation #block-menu-block-7 .menu li.dhtml-bullet > a,
.region-navigation #block-menu-menu-landing-page-menu .menu li.dhtml-bullet > a {
  padding-right: 24px;
}
/* line 99, ../sass/components/_header.scss */
.region-navigation #block-menu-block-7 .menu li.dhtml-bullet a.dhtml-menu-icon,
.region-navigation #block-menu-menu-landing-page-menu .menu li.dhtml-bullet a.dhtml-menu-icon {
  right: 4px;
}
/* line 107, ../sass/components/_header.scss */
.region-navigation #block-menu-block-7 .menu li.last a,
.region-navigation #block-menu-menu-landing-page-menu .menu li.last a {
  border-right: medium none;
}

/* line 116, ../sass/components/_header.scss */
#top-bar {
  background-color: #c74711;
  height: 88px;
  position: relative;
  z-index: 100;
}
/* line 121, ../sass/components/_header.scss */
#top-bar .block {
  margin-bottom: 0;
}
/* line 124, ../sass/components/_header.scss */
#top-bar .block-title {
  display: none;
}
/* line 127, ../sass/components/_header.scss */
#top-bar .footer-only {
  display: none !important;
}
/* line 130, ../sass/components/_header.scss */
#top-bar #top-bar-inner {
  width: 940px;
  margin: 0 auto;
}
/* line 134, ../sass/components/_header.scss */
#top-bar .top-bar-regions {
  background-color: #c74711;
  float: right;
  text-align: right;
  height: 88px;
  width: 700px;
  position: relative;
}
/* line 141, ../sass/components/_header.scss */
#top-bar .top-bar-regions .region > .block {
  display: inline-block;
}
/* line 145, ../sass/components/_header.scss */
#top-bar #block-search-form {
  margin-bottom: 0;
  text-align: right;
}
/* line 148, ../sass/components/_header.scss */
#top-bar #block-search-form .advanced-search {
  display: inline-block;
}
/* line 150, ../sass/components/_header.scss */
#top-bar #block-search-form .advanced-search a {
  background-color: rgba(0, 0, 0, 0.15);
  color: #ffffff;
  display: block;
  padding: 0 12px;
  line-height: 30px;
}
/* line 160, ../sass/components/_header.scss */
#top-bar #block-search-form form {
  background-color: #ead9dd;
  display: inline-block;
  margin-left: -4px;
  width: 215px;
}
/* line 165, ../sass/components/_header.scss */
#top-bar #block-search-form form .form-item-search-block-form {
  padding: 0;
  margin: 0 -6px 0;
}
/* line 168, ../sass/components/_header.scss */
#top-bar #block-search-form form .form-item-search-block-form .form-text {
  height: 26px;
  background-color: #ead9dd;
  color: #a20000;
  border: 0;
  width: 187px;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  padding: 0 10px;
}
/* line 180, ../sass/components/_header.scss */
#top-bar #block-search-form form .form-submit {
  border: 0;
  text-indent: -9999px;
  height: 26px;
  background: #ead9dd url("../images/bcn_sprite.png") -315px 0 no-repeat;
  width: 30px;
  line-height: 21px;
}
/* line 191, ../sass/components/_header.scss */
#top-bar [class*='block-menu'] {
  display: inline-block;
}
/* line 193, ../sass/components/_header.scss */
#top-bar [class*='block-menu'] .menu {
  padding: 0;
  margin: 0;
}
/* line 194, ../sass/components/_header.scss */
#top-bar [class*='block-menu'] .menu .menu {
  display: none;
  background: rgba(87, 87, 87, 0.8);
  position: absolute;
  right: 0;
  top: 38px;
  min-width: 100%;
  padding-bottom: 20px;
}
/* line 202, ../sass/components/_header.scss */
#top-bar [class*='block-menu'] .menu .menu li {
  display: block;
  text-align: left;
}
/* line 205, ../sass/components/_header.scss */
#top-bar [class*='block-menu'] .menu .menu li a {
  font-weight: normal;
  font-size: 13px;
  line-height: 2;
  white-space: nowrap;
}
/* line 215, ../sass/components/_header.scss */
#top-bar [class*='block-menu'] .menu li {
  margin: 0;
  padding: 0;
  display: inline-block;
  list-style: none;
  position: relative;
}
/* line 221, ../sass/components/_header.scss */
#top-bar [class*='block-menu'] .menu li a:not(.dhtml-menu-icon) {
  background-image: none;
  color: #ffffff;
  display: block;
  padding: 0 24px 0 12px;
}
/* line 226, ../sass/components/_header.scss */
#top-bar [class*='block-menu'] .menu li a:not(.dhtml-menu-icon):hover, #top-bar [class*='block-menu'] .menu li a:not(.dhtml-menu-icon).active {
  background-color: rgba(0, 0, 0, 0.15);
}
/* line 231, ../sass/components/_header.scss */
#top-bar [class*='block-menu'] .menu li a.dhtml-menu-icon {
  color: #fff;
  line-height: 17px;
}
/* line 236, ../sass/components/_header.scss */
#top-bar [class*='block-menu'] .menu li.expanded > a {
  background-color: rgba(0, 0, 0, 0.15);
}
/* line 243, ../sass/components/_header.scss */
#top-bar .region-top-header {
  padding-top: 8px;
}
/* line 248, ../sass/components/_header.scss */
#top-bar .region-top-header [class*='block-menu'] .menu li a {
  line-height: 27px;
}
/* line 252, ../sass/components/_header.scss */
#top-bar .region-top-header [class*='block-menu'] .menu li.last a {
  background-color: rgba(0, 0, 0, 0.15);
}
/* line 260, ../sass/components/_header.scss */
#top-bar .region-header {
  position: absolute;
  bottom: 0;
  right: -4px;
}
/* line 266, ../sass/components/_header.scss */
#top-bar .region-header [class*='block-menu'] .menu-level-1 > .menu > li {
  vertical-align: top;
}
/* line 268, ../sass/components/_header.scss */
#top-bar .region-header [class*='block-menu'] .menu-level-1 > .menu > li > a {
  font-size: 14px;
  font-weight: bold;
  line-height: 38px;
}

/* line 281, ../sass/components/_header.scss */
a.dhtml-menu-icon {
  float: right;
  font-family: 'FontAwesome';
  left: auto !important;
  right: 4px;
  top: 9px;
  margin-right: 0 !important;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  z-index: 10;
  padding: 0;
  position: absolute;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  font-size: 12px;
}
/* line 297, ../sass/components/_header.scss */
a.dhtml-menu-icon:before {
  position: absolute;
  left: 8px;
  content: "\f054";
}
/* line 303, ../sass/components/_header.scss */
.expanded > a > a.dhtml-menu-icon {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

/* line 311, ../sass/components/_header.scss */
.slicknav-menu-wrapper {
  display: none;
}

/* line 315, ../sass/components/_header.scss */
.slicknav_menu {
  display: none;
}

@media (max-width: 768px) {
  /* line 320, ../sass/components/_header.scss */
  #main {
    padding-top: 15px;
  }

  /* line 324, ../sass/components/_header.scss */
  #site-name a {
    background: transparent url("../images/bcn_sprite.png") no-repeat scroll 0px 0px/200% 400%;
    width: 100%;
    height: 50px;
    display: block;
  }

  /* line 330, ../sass/components/_header.scss */
  #site-name {
    margin-bottom: 0;
  }

  /* line 333, ../sass/components/_header.scss */
  #logo-title {
    width: 125px;
    height: 60px;
  }

  /* line 337, ../sass/components/_header.scss */
  .slicknav_menu .slicknav_menutxt {
    display: none;
  }

  /* line 340, ../sass/components/_header.scss */
  .slicknav_menu .slicknav_icon {
    margin: 0;
  }

  /* line 343, ../sass/components/_header.scss */
  .slicknav-menu-wrapper .slicknav_menu {
    background-color: #fff;
  }

  /* line 346, ../sass/components/_header.scss */
  .slicknav_menu .slicknav_btn {
    background-color: #C74711;
  }

  /* line 349, ../sass/components/_header.scss */
  .slicknav_menu .slicknav_nav {
    background-color: #C74711;
  }

  /* line 352, ../sass/components/_header.scss */
  #block-search-form {
    float: none;
    width: 100%;
    clear: both;
    text-align: center;
    padding-bottom: 10px;
    padding-top: 10px;
    margin: 0;
    background-color: #F3F3F3;
  }

  /* line 362, ../sass/components/_header.scss */
  #top-bar {
    display: none;
  }

  /* line 365, ../sass/components/_header.scss */
  .slicknav-menu-wrapper {
    display: block;
  }

  /* line 369, ../sass/components/_header.scss */
  .slicknav_menu {
    display: block;
  }

  /* line 372, ../sass/components/_header.scss */
  .region-navigation #block-menu-menu-landing-page-menu {
    border: medium none;
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 99;
  }

  /* line 380, ../sass/components/_header.scss */
  #navigation {
    height: auto;
    position: relative;
    width: 100%;
    float: left;
    margin-bottom: 15px;
  }
}
/* line 1, ../sass/components/_body.scss */
body {
  width: 100%;
}

/* line 4, ../sass/components/_body.scss */
div, p, td, li {
  color: #575757;
}

/* line 7, ../sass/components/_body.scss */
h1, h2, h3 {
  font-weight: 600;
  color: #c74711;
}

/* line 11, ../sass/components/_body.scss */
a, a.active, a:hover, a.active-trail, .menu li a:hover, .menu li a.active, .menu li a.active-trail {
  color: #c74711;
  text-decoration: none;
}

/* line 15, ../sass/components/_body.scss */
.menu li a {
  color: #777777;
}

/* line 18, ../sass/components/_body.scss */
h1, h1.page__title {
  margin-bottom: 21px;
  line-height: 30px;
}

/* line 22, ../sass/components/_body.scss */
h2 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 22px;
}

/* line 27, ../sass/components/_body.scss */
h3 {
  margin-bottom: 7px;
  font-size: 18px;
  line-height: 22px;
}

/* line 32, ../sass/components/_body.scss */
p {
  line-height: 20px;
  margin-bottom: 30px;
  margin-top: 0;
}

/* line 37, ../sass/components/_body.scss */
.front .field-name-body {
  font-size: 18px;
  line-height: 28px;
}

/* line 42, ../sass/components/_body.scss */
.not-front .non-listing-page {
  background-color: #f7f7f6;
}
/* line 48, ../sass/components/_body.scss */
.not-front .listing_page .field-name-body p {
  line-height: 28px;
  font-size: 18px;
  font-weight: 400;
}

/* line 56, ../sass/components/_body.scss */
ol {
  padding-left: 34px;
  counter-reset: item;
}
/* line 59, ../sass/components/_body.scss */
ol li {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}
/* line 63, ../sass/components/_body.scss */
ol li:before {
  content: counter(item) ". ";
  counter-increment: item;
  color: #c74711;
  font-weight: 700;
  display: inline-block;
  width: 1em;
}

/* line 75, ../sass/components/_body.scss */
.body-text ul:not(.contextual-links):not(.pager),
.entity-any-block ul:not(.contextual-links):not(.pager) {
  padding-left: 34px;
}
/* line 77, ../sass/components/_body.scss */
.body-text ul:not(.contextual-links):not(.pager) li,
.entity-any-block ul:not(.contextual-links):not(.pager) li {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}
/* line 81, ../sass/components/_body.scss */
.body-text ul:not(.contextual-links):not(.pager) li:before,
.entity-any-block ul:not(.contextual-links):not(.pager) li:before {
  content: "\2014\00a0";
  color: #c74711;
  font-weight: 700;
  display: inline-block;
  width: 1em;
}
/* line 88, ../sass/components/_body.scss */
.body-text ul:not(.contextual-links):not(.pager) li p,
.entity-any-block ul:not(.contextual-links):not(.pager) li p {
  display: inline;
  margin-left: -4px;
}
/* line 94, ../sass/components/_body.scss */
.body-text blockquote,
.entity-any-block blockquote {
  padding: 0 48px;
  background: url(../images/quote.png) 10px 0 no-repeat;
  font-size: 18px;
  line-height: 28px;
  color: #c74711;
  position: relative;
}
/* line 101, ../sass/components/_body.scss */
.body-text blockquote:after,
.entity-any-block blockquote:after {
  content: "";
  background: url(../images/quote.png) 10px 0 no-repeat;
  display: block;
  position: absolute;
  top: 4px;
  right: 0;
  width: 36px;
  height: 18px;
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
/* line 112, ../sass/components/_body.scss */
.body-text blockquote p,
.entity-any-block blockquote p {
  color: #c74711;
}
/* line 116, ../sass/components/_body.scss */
.body-text .intro-text,
.entity-any-block .intro-text {
  font-size: 18px;
  line-height: 28px;
}

/* line 122, ../sass/components/_body.scss */
.body-text p {
  font-size: 1.2em;
  line-height: 23px;
}

/* line 127, ../sass/components/_body.scss */
.submitted-node-full {
  font-size: 18px;
  line-height: 1.22222;
  color: #777777;
}
/* line 133, ../sass/components/_body.scss */
.submitted-node-full span + .date:before,
.submitted-node-full span + .location:before {
  content: ", ";
}

/* line 139, ../sass/components/_body.scss */
input {
  border: 1px solid #888;
  line-height: 2;
  padding: 0 8px;
}
/* line 143, ../sass/components/_body.scss */
#admin-menu input {
  height: 28px !important;
}
/* line 146, ../sass/components/_body.scss */
input.form-submit {
  background-color: #c74711;
  border-color: #c74711;
  color: #fff;
  font-weight: 700;
}
/* line 151, ../sass/components/_body.scss */
input.form-submit:hover {
  background-color: #812e0b;
  border-color: #812e0b;
}
/* line 156, ../sass/components/_body.scss */
input#edit-reset {
  background-color: #6e6d5f;
  border-color: #6e6d5f;
}
/* line 159, ../sass/components/_body.scss */
input#edit-reset:hover {
  background-color: #45443c;
  border-color: #45443c;
}

/* Start - Accordion Styles */
/* line 168, ../sass/components/_body.scss */
.ui-accordion-content a, .ui-accordion-content a.active, .ui-accordion-content a:hover, .ui-accordion-content a.active-trail {
  color: #c74711;
  text-decoration: none;
}

/* End - Accordion Styles */
/* line 1, ../sass/components/_listings.scss */
.nh-right, .nh-left {
  width: 220px;
  float: left;
}

/* line 5, ../sass/components/_listings.scss */
.nh-left {
  margin-right: 20px;
}

/* line 9, ../sass/components/_listings.scss */
.node-body {
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #575757;
}

/* line 15, ../sass/components/_listings.scss */
.node-meta {
  font-weight: 400;
  font-size: 13px;
  line-height: 23px;
  color: #c74711;
  margin-top: 12px;
}

/* line 22, ../sass/components/_listings.scss */
.node-desc {
  padding: 10px 20px 7px 20px;
  background-color: #f3f3f3;
}

/* line 27, ../sass/components/_listings.scss */
.node-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
}

/* line 37, ../sass/components/_listings.scss */
.view-documents .listing-documents,
.view-bcn-events .listing-documents,
.view-search .listing-documents,
.view-bcn-taxonomy-term .listing-documents {
  overflow: hidden;
  *zoom: 1;
  padding: 24px 0;
  border-top: 1px solid #a20000;
}
/* line 41, ../sass/components/_listings.scss */
.view-documents .listing-documents:first-child,
.view-bcn-events .listing-documents:first-child,
.view-search .listing-documents:first-child,
.view-bcn-taxonomy-term .listing-documents:first-child {
  border-top-color: #888888;
}
/* line 44, ../sass/components/_listings.scss */
.view-documents .listing-documents:last-child,
.view-bcn-events .listing-documents:last-child,
.view-search .listing-documents:last-child,
.view-bcn-taxonomy-term .listing-documents:last-child {
  border-bottom: 1px solid #888888;
}
/* line 48, ../sass/components/_listings.scss */
.view-documents .listing-documents .node-desc,
.view-bcn-events .listing-documents .node-desc,
.view-search .listing-documents .node-desc,
.view-bcn-taxonomy-term .listing-documents .node-desc {
  background-color: transparent;
}
/* line 54, ../sass/components/_listings.scss */
.view-documents .listing-documents .node-desc .node-title,
.view-bcn-events .listing-documents .node-desc .node-title,
.view-search .listing-documents .node-desc .node-title,
.view-bcn-taxonomy-term .listing-documents .node-desc .node-title {
  display: block;
  background: url("../images/bcn_sprite.png") -320px -180px no-repeat;
  padding-left: 24px;
  /*&:before {
    background: url($sprites_main) -320px -180px no-repeat;
    display: block;
    width: 12px;
    height: 16px;
    content: '';
    float: left;
    margin-left: 4px;
    margin-right: 8px;
  } */
}
/* line 69, ../sass/components/_listings.scss */
.view-documents .listing-documents .node-desc .node-meta,
.view-documents .listing-documents .node-desc .node-body,
.view-bcn-events .listing-documents .node-desc .node-meta,
.view-bcn-events .listing-documents .node-desc .node-body,
.view-search .listing-documents .node-desc .node-meta,
.view-search .listing-documents .node-desc .node-body,
.view-bcn-taxonomy-term .listing-documents .node-desc .node-meta,
.view-bcn-taxonomy-term .listing-documents .node-desc .node-body {
  padding: 0 0 0 24px;
}
/* line 72, ../sass/components/_listings.scss */
.view-documents .listing-documents .node-desc .node-meta p,
.view-documents .listing-documents .node-desc .node-body p,
.view-bcn-events .listing-documents .node-desc .node-meta p,
.view-bcn-events .listing-documents .node-desc .node-body p,
.view-search .listing-documents .node-desc .node-meta p,
.view-search .listing-documents .node-desc .node-body p,
.view-bcn-taxonomy-term .listing-documents .node-desc .node-meta p,
.view-bcn-taxonomy-term .listing-documents .node-desc .node-body p {
  margin-bottom: 0;
}
/* line 77, ../sass/components/_listings.scss */
.view-documents .listing-documents .node-desc .node-meta,
.view-bcn-events .listing-documents .node-desc .node-meta,
.view-search .listing-documents .node-desc .node-meta,
.view-bcn-taxonomy-term .listing-documents .node-desc .node-meta {
  font-size: 13px;
  line-height: 20px;
  color: #888888;
  margin-bottom: 3px;
  margin-top: 7px;
}
/* line 85, ../sass/components/_listings.scss */
.view-documents .listing-documents .node-desc .node-meta .author + .date:before,
.view-documents .listing-documents .node-desc .node-meta span + .location:before,
.view-bcn-events .listing-documents .node-desc .node-meta .author + .date:before,
.view-bcn-events .listing-documents .node-desc .node-meta span + .location:before,
.view-search .listing-documents .node-desc .node-meta .author + .date:before,
.view-search .listing-documents .node-desc .node-meta span + .location:before,
.view-bcn-taxonomy-term .listing-documents .node-desc .node-meta .author + .date:before,
.view-bcn-taxonomy-term .listing-documents .node-desc .node-meta span + .location:before {
  content: ", ";
}
/* line 89, ../sass/components/_listings.scss */
.view-documents .listing-documents .node-desc .node-meta .date-display-single,
.view-bcn-events .listing-documents .node-desc .node-meta .date-display-single,
.view-search .listing-documents .node-desc .node-meta .date-display-single,
.view-bcn-taxonomy-term .listing-documents .node-desc .node-meta .date-display-single {
  white-space: nowrap;
}
/* line 97, ../sass/components/_listings.scss */
.view-documents .listing-documents .node-thumb ul li,
.view-bcn-events .listing-documents .node-thumb ul li,
.view-search .listing-documents .node-thumb ul li,
.view-bcn-taxonomy-term .listing-documents .node-thumb ul li {
  list-style: none none !important;
}

/* line 103, ../sass/components/_listings.scss */
.view-document {
  color: #d30236;
  font-size: 15px;
  line-height: 30px;
  padding: 0 0 10px 0;
}

/* line 111, ../sass/components/_listings.scss */
.doc_link {
  display: block;
  font-size: 13px;
  line-height: 18px;
  text-transform: capitalize;
}
/* line 116, ../sass/components/_listings.scss */
.node-thumb.text .doc_link {
  padding: 10px 15px;
  background-color: #D3D3D3;
}
/* line 120, ../sass/components/_listings.scss */
.node-thumb.image .doc_link {
  line-height: 0;
  width: 150px;
  margin: 0 auto;
}
/* line 121, ../sass/components/_listings.scss */
.node-thumb.image .doc_link img {
  border: 1px solid #575757;
}

/* line 132, ../sass/components/_listings.scss */
.view-bcn-events .minical-date {
  background: url("../images/date-icon.png") no-repeat scroll 0 0 transparent;
  color: #c74711;
  float: left;
  height: 44px;
  width: 31px;
}
/* line 138, ../sass/components/_listings.scss */
.view-bcn-events .minical-date span {
  display: block;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  width: 31px;
  word-spacing: 31px;
}
/* line 146, ../sass/components/_listings.scss */
.view-bcn-events .minical-date span:first-child {
  margin-top: 12px;
}
/* line 152, ../sass/components/_listings.scss */
.view-bcn-events .listing-documents .node-desc .node-title {
  background-image: none;
}
/* line 155, ../sass/components/_listings.scss */
.view-bcn-events .listing-documents .node-desc p {
  margin-bottom: 0;
}

/* line 162, ../sass/components/_listings.scss */
.listing-front-events .minical-date {
  background: url("../images/date-icon.png") no-repeat scroll 0 0 transparent;
  color: #c74711;
  float: left;
  height: 44px;
  width: 31px;
  margin: 0 10px 10px 0;
}
/* line 169, ../sass/components/_listings.scss */
.listing-front-events .minical-date span {
  display: block;
  font-size: 12px;
  line-height: 14px;
  padding-top: 12px;
  text-align: center;
  width: 31px;
  word-spacing: 31px;
}
/* line 179, ../sass/components/_listings.scss */
.listing-front-events .node-meta {
  padding-left: 41px;
}

/* line 186, ../sass/components/_listings.scss */
.view-listing-menu-children {
  padding-left: 0;
  padding-right: 0;
}

/* line 189, ../sass/components/_listings.scss */
.listing-default,
.listing-subsection,
.listing-section {
  float: left;
  width: -moz-calc(33% - 11px);
  width: calc(33% - 11px);
  margin-right: 20px;
  margin-bottom: 20px;
}
/* line 197, ../sass/components/_listings.scss */
.listing-default:nth-of-type(3n),
.listing-subsection:nth-of-type(3n),
.listing-section:nth-of-type(3n) {
  clear: right;
  margin-right: 0;
}
/* line 201, ../sass/components/_listings.scss */
.listing-default:nth-of-type(3n + 1),
.listing-subsection:nth-of-type(3n + 1),
.listing-section:nth-of-type(3n + 1) {
  clear: left;
}
/* line 204, ../sass/components/_listings.scss */
.listing-default .node-thumb,
.listing-subsection .node-thumb,
.listing-section .node-thumb {
  height: 145px;
  background-color: #cccccc;
}
/* line 208, ../sass/components/_listings.scss */
.listing-default .node-title,
.listing-subsection .node-title,
.listing-section .node-title {
  color: #6e6d5f;
  display: block;
  margin-top: 10px;
  margin-bottom: 12px;
  height: 57px;
  overflow: hidden;
}

/* line 217, ../sass/components/_listings.scss */
.node-body {
  overflow: hidden;
}
/* line 219, ../sass/components/_listings.scss */
.listing-section .node-body {
  height: 60px;
}
/* line 222, ../sass/components/_listings.scss */
.listing-subsection .node-body {
  height: 140px;
}

/* line 227, ../sass/components/_listings.scss */
.listing-front-newsletter .node-desc {
  background-color: #6e6d5f;
}
/* line 229, ../sass/components/_listings.scss */
.listing-front-newsletter .node-desc .box-type,
.listing-front-newsletter .node-desc .node-body,
.listing-front-newsletter .node-desc .node-meta a,
.listing-front-newsletter .node-desc .node-title,
.listing-front-newsletter .node-desc p, .listing-front-newsletter .node-desc a {
  color: #ffffff !important;
}

/* line 238, ../sass/components/_listings.scss */
.listing-front-library-listing {
  float: left;
  width: 220px;
  margin-right: 20px;
  margin-bottom: 20px;
}
/* line 243, ../sass/components/_listings.scss */
.listing-front-library-listing:nth-of-type(2n) {
  clear: right;
  margin-right: 0;
}
/* line 247, ../sass/components/_listings.scss */
.listing-front-library-listing .node-thumb {
  position: relative;
  height: 220px;
  background-color: #cccccc;
}
/* line 251, ../sass/components/_listings.scss */
.listing-front-library-listing .node-thumb .node-title {
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  color: #ffffff;
  padding: 11px 20px 7px 20px;
  background: rgba(199, 71, 17, 0.65);
  min-height: 58px;
}
/* line 261, ../sass/components/_listings.scss */
.listing-front-library-listing .node-thumb .node-title a {
  color: #ffffff;
}
/* line 266, ../sass/components/_listings.scss */
.listing-front-library-listing .node-body {
  height: 60px;
}

/* line 274, ../sass/components/_listings.scss */
.front .view-bcn-custom-any-blocks .views-row-1 h3.block-title {
  height: 35px;
  line-height: 35px;
  background-color: #c74711;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.8px;
  font-size: 16px;
  padding: 0 15px;
  margin-bottom: 20px;
}
/* line 290, ../sass/components/_listings.scss */
.front .region-sidebar-second .view-bcn-custom-any-blocks .views-row-1 h3.block-title {
  background-color: #b1b17b;
  margin-top: 0;
}
/* line 296, ../sass/components/_listings.scss */
.front .region-sidebar-second .listing {
  background-color: #f3f3f3;
  margin-bottom: 20px;
}
/* line 300, ../sass/components/_listings.scss */
.front .region-sidebar-second .node-thumb {
  position: relative;
}
/* line 302, ../sass/components/_listings.scss */
.front .region-sidebar-second .node-thumb .video-overlay {
  position: absolute;
  height: 137px;
  background: url(../images/bcn_videoplay.png) 50% 50% no-repeat;
  top: 0;
  width: 220px;
}
/* line 310, ../sass/components/_listings.scss */
.front .region-sidebar-second .box-type {
  font-size: 15px;
  line-height: 23px;
  color: #c74711;
  font-weight: 700;
  text-transform: capitalize;
}
/* line 317, ../sass/components/_listings.scss */
.front .region-sidebar-second .node-meta a {
  color: #6e6d5f;
}
/* line 320, ../sass/components/_listings.scss */
.front .region-sidebar-second .node-title {
  color: #6e6d5f;
  display: block;
  margin-top: 10px;
  margin-bottom: 12px;
}
/* line 327, ../sass/components/_listings.scss */
.front .region-sidebar-second .node-body p {
  margin-bottom: 0;
}

/* line 334, ../sass/components/_listings.scss */
.view-display-id-regions_jump {
  background: url(../images/country_info.png) no-repeat;
  width: 460px;
  height: 289px;
  clear: both;
  position: relative;
}
/* line 340, ../sass/components/_listings.scss */
.view-display-id-regions_jump form {
  position: relative;
  left: 22px;
  top: 187px;
  width: 197px;
}
/* line 345, ../sass/components/_listings.scss */
.view-display-id-regions_jump form .selectBox {
  width: 197px !important;
  margin-bottom: 15px;
}

/* line 2, ../sass/components/_blocks.scss */
.region-highlighted {
  min-height: 90px;
}
/* line 4, ../sass/components/_blocks.scss */
.region-highlighted .block {
  margin-bottom: 0;
}
/* line 7, ../sass/components/_blocks.scss */
.region-highlighted .field-image {
  line-height: 0;
}
@media (min-width: 100%) {
  /* line 10, ../sass/components/_blocks.scss */
  .region-highlighted img {
    min-width: 100%;
  }
}
@media (max-width: 99%) {
  /* line 10, ../sass/components/_blocks.scss */
  .region-highlighted img {
    min-height: 90px;
  }
}
/* line 18, ../sass/components/_blocks.scss */
.region-highlighted .view-display-id-custom_featured {
  position: relative;
}
/* line 20, ../sass/components/_blocks.scss */
.region-highlighted .view-display-id-custom_featured:after {
  content: '';
  display: block;
  height: 50%;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* line 33, ../sass/components/_blocks.scss */
.google_map_field_display {
  height: 400px;
  width: 100%;
}

/* line 42, ../sass/components/_blocks.scss */
.sidebar .block-menu-block {
  width: 100%;
}
/* line 44, ../sass/components/_blocks.scss */
.sidebar .block-menu-block h2 {
  font-size: 15px;
  line-height: 16px;
  color: #ffffff;
  font-weight: 400;
  background-color: #c74711;
  padding: 8px 15px 8px 15px;
  margin: 0;
}
/* line 53, ../sass/components/_blocks.scss */
.sidebar .block-menu-block .menu {
  margin: 0;
}
/* line 55, ../sass/components/_blocks.scss */
.sidebar .block-menu-block .menu li {
  list-style: none none !important;
  border-top: 1px solid #c74711;
  padding: 12px 3px 10px 5px;
}
/* line 59, ../sass/components/_blocks.scss */
.sidebar .block-menu-block .menu li a {
  font-size: 14px;
  line-height: 17px;
  font-weight: 400;
  display: block;
  position: relative;
}
/* line 65, ../sass/components/_blocks.scss */
.sidebar .block-menu-block .menu li a.active, .sidebar .block-menu-block .menu li a.active-trail {
  font-weight: 600;
}
/* line 68, ../sass/components/_blocks.scss */
.sidebar .block-menu-block .menu li a.dhtml-menu-icon {
  top: 0;
}
/* line 72, ../sass/components/_blocks.scss */
.sidebar .block-menu-block .menu li ul li {
  margin-top: 6px;
  padding: 0 0 0 15px;
  border-top: none;
}
/* line 73, ../sass/components/_blocks.scss */
.sidebar .block-menu-block .menu li ul li:first-child {
  margin-top: 11px;
}
/* line 79, ../sass/components/_blocks.scss */
.sidebar .block-menu-block .menu li ul li a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2;
  max-width: 94%;
}
/* line 83, ../sass/components/_blocks.scss */
.sidebar .block-menu-block .menu li ul li a.active, .sidebar .block-menu-block .menu li ul li a.active-trail {
  font-weight: 600;
}
/* line 87, ../sass/components/_blocks.scss */
.sidebar .block-menu-block .menu li ul li ul li {
  padding: 0 0 0 19px;
}
/* line 90, ../sass/components/_blocks.scss */
.sidebar .block-menu-block .menu li ul li ul li a.active, .sidebar .block-menu-block .menu li ul li ul li a.active-trail {
  font-weight: 600;
}

/* line 107, ../sass/components/_blocks.scss */
.selectBox-options.sub .parent {
  border-top: 2px solid #6e6d5f;
  font-weight: bold;
  text-transform: uppercase;
  color: #c74711;
}
/* line 114, ../sass/components/_blocks.scss */
.selectBox-options.sub.nested .sub {
  font-weight: bold;
}
/* line 117, ../sass/components/_blocks.scss */
.selectBox-options.sub.nested .parent + .sub,
.selectBox-options.sub.nested .child + .sub {
  border-top: 1px solid #6e6d5f;
}

/* line 127, ../sass/components/_blocks.scss */
.block-bcn-views-search .form-submit {
  display: inline-block;
  background: url("../images/bcn_sprite.png") no-repeat scroll -314px -73px #f3f3f3;
  border: 0 none;
  height: 33px;
  line-height: 21px;
  margin-left: -3px;
  text-indent: -9999px;
  width: 30px;
}
/* line 137, ../sass/components/_blocks.scss */
.block-bcn-views-search .form-item-bcn-toolkit-search {
  display: inline-block;
  margin: 0;
  position: relative;
  width: auto;
}
/* line 143, ../sass/components/_blocks.scss */
.block-bcn-views-search .form-item-bcn-toolkit-search input {
  background-color: #F3F3F3;
  border: medium none;
  height: 33px;
  line-height: 21px;
  padding-left: 10px;
  width: 180px;
}
/* line 152, ../sass/components/_blocks.scss */
.block-bcn-views-search .form-item-bcn-toolkit-search label {
  color: #c74711;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  display: block;
}

/* line 1, ../sass/components/_footer.scss */
#bottom {
  background-color: #eeeeee;
  padding-top: 53px;
  padding-bottom: 15px;
  overflow: hidden;
  *zoom: 1;
  margin-top: 98px;
}
/* line 7, ../sass/components/_footer.scss */
#bottom .header-only {
  display: none !important;
}
/* line 10, ../sass/components/_footer.scss */
#bottom #bottom-inner {
  width: 68.915%;
  margin: 0 auto;
}
/* line 14, ../sass/components/_footer.scss */
#bottom #bottom-inner #footer-logo {
  float: left;
  clear: left;
  display: block;
  background: url("../images/bcn_sprite.png") 0 -180px no-repeat;
  width: 120px;
  height: 55px;
  text-indent: -99999px;
  margin-right: 2%;
}
/* line 24, ../sass/components/_footer.scss */
#bottom #bottom-inner #footer {
  width: 80%;
  float: left;
  clear: right;
}
/* line 28, ../sass/components/_footer.scss */
#bottom #bottom-inner #footer #block-menu-block-10 {
  float: left;
  clear: right;
  margin-top: -7px;
}
/* line 32, ../sass/components/_footer.scss */
#bottom #bottom-inner #footer #block-menu-block-10 .block-title {
  display: none;
}
/* line 35, ../sass/components/_footer.scss */
#bottom #bottom-inner #footer #block-menu-block-10 .nolink {
  font-size: 14px;
  line-height: 26px;
  font-weight: 700;
  color: #575757;
}
/* line 41, ../sass/components/_footer.scss */
#bottom #bottom-inner #footer #block-menu-block-10 ul {
  margin: 0;
  padding: 0;
}
/* line 45, ../sass/components/_footer.scss */
#bottom #bottom-inner #footer #block-menu-block-10 li {
  list-style: none none !important;
}
/* line 48, ../sass/components/_footer.scss */
#bottom #bottom-inner #footer #block-menu-block-10 .menu-name-menu-doormat-menu > ul > li {
  width: 153px;
  float: left;
}
/* line 51, ../sass/components/_footer.scss */
#bottom #bottom-inner #footer #block-menu-block-10 .menu-name-menu-doormat-menu > ul > li a {
  font-weight: 600;
  color: #575757;
  font-size: 15px;
  line-height: 26px;
}
/* line 57, ../sass/components/_footer.scss */
#bottom #bottom-inner #footer #block-menu-block-10 .menu-name-menu-doormat-menu > ul > li ul li a {
  color: #878787;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}
/* line 64, ../sass/components/_footer.scss */
#bottom #bottom-inner #footer #block-menu-block-10 .menu {
  /*          .menu-686 {
              width: 19.2%;
            }
            .menu-687 {
              width: 19.2%;
            }
            .menu-1436 {
              width: 28.6%;
            }
            .menu-909 {
              width: 18.2%;
            }
            .menu-690 {
              width: 14.4%;
            }*/
}
/* line 65, ../sass/components/_footer.scss */
#bottom #bottom-inner #footer #block-menu-block-10 .menu .menu__item.expanded {
  float: left;
  width: 19%;
  margin-right: 1%;
}
/* line 88, ../sass/components/_footer.scss */
#bottom #bottom-inner #footer #block-menu-menu-footer-menu {
  float: left;
  clear: left;
  margin-bottom: 0px;
}
/* line 92, ../sass/components/_footer.scss */
#bottom #bottom-inner #footer #block-menu-menu-footer-menu a {
  color: #878787;
  font-size: 12px;
  line-height: 17px;
  text-decoration: underline;
}
/* line 99, ../sass/components/_footer.scss */
#bottom #bottom-inner #footer #block-block-1 {
  float: right;
  clear: right;
  margin-bottom: 0px;
}
/* line 103, ../sass/components/_footer.scss */
#bottom #bottom-inner #footer #block-block-1 p {
  color: #878787;
  font-size: 12px;
  line-height: 17px;
}

/* line 112, ../sass/components/_footer.scss */
a.twitter-icon {
  display: block;
  background: transparent url(../images/twitter.png) center center;
  height: 25px;
  width: 25px;
  text-indent: -9999em;
}

@media (max-width: 1200px) {
  /* line 121, ../sass/components/_footer.scss */
  #bottom #bottom-inner {
    width: 100%;
    margin: 0px auto;
  }

  /* line 125, ../sass/components/_footer.scss */
  #bottom #bottom-inner #footer-logo {
    float: none;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
  }

  /* line 132, ../sass/components/_footer.scss */
  #bottom #bottom-inner #footer {
    float: none;
    width: 100%;
  }

  /* line 137, ../sass/components/_footer.scss */
  #bottom #bottom-inner #footer #block-menu-block-10 {
    float: none;
  }
}
@media (max-width: 768px) {
  /* line 144, ../sass/components/_footer.scss */
  #bottom #bottom-inner #footer #block-menu-block-10 .menu .menu__item.expanded {
    float: none;
    width: 100%;
    margin-right: 0;
    padding: 20px;
  }
}
/**
 * @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: 13px;
  }
  /* 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"; */

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