/**
 * @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. */
/* 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 _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;
}
*/
@font-face {
  font-family: 'nctl_icons';
  src: url("../fonts/nctl_icons.eot?-qlqe59");
  src: url("../fonts/nctl_icons.eot?#iefix-qlqe59") format("embedded-opentype"), url("../fonts/nctl_icons.woff?-qlqe59") format("woff"), url("../fonts/nctl_icons.ttf?-qlqe59") format("truetype"), url("../fonts/nctl_icons.svg?-qlqe59#icomoon") 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 117, ../sass/_normalize.scss */
html {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  /* 1 */
  font-size: 118.75%;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  line-height: 1.78947em;
}

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

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

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

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 193, ../sass/_normalize.scss */
h1 {
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
  font-size: 2em;
  line-height: 1.78947em;
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
  margin-top: 0.89474em;
  margin-bottom: 0.89474em;
}

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

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

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

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

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

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

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

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

/* Address differences between Firefox and other browsers. */
/* line 244, ../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.78947em 0;
}

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

/* Correct font family set oddly in Safari 5 and Chrome. */
/* line 259, ../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.78947em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * 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 409, ../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 424, ../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 443, ../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 454, ../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 468, ../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 482, ../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 493, ../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 508, ../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 517, ../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 523, ../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 533, ../sass/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

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

/**
 * Tables
 */
/* line 547, ../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.78947em;
  margin-bottom: 1.78947em;
}

/* 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 */
#header .inner, #main .inner, #footer .inner,
.region-bottom {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  position: relative;
}

/* Apply the shared properties of grid items in a single, efficient ruleset. */
/* line 42, ../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: 780px) {
  /* line 61, ../sass/layouts/_responsive.scss */
  #main {
    /* Move all the children of #main down to make room. */
    padding-top: 3em;
    position: relative;
  }

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

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

  /**
   * The layout when there are two sidebars.
   */
  /* line 117, ../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 119, ../sass/layouts/_responsive.scss */
  .two-sidebars #content {
    float: left;
    width: 66.66667%;
    margin-left: 33.33333%;
    margin-right: -100%;
  }
  /* line 124, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
  }
  /* line 129, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    padding-left: 0;
    padding-right: 0;
    clear: left;
    /* Apply the shared properties of grid items in a single, efficient ruleset. */
    /* Span 1 column, starting in the 1st column from left. */
    /* Span 1 column, starting in the 2nd column from left. */
    /* Span 1 column, starting in the 3rd column from left. */
  }
  /* line 135, ../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 139, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n+1) {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
    clear: left;
  }
  /* line 144, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n+2) {
    float: left;
    width: 33.33333%;
    margin-left: 33.33333%;
    margin-right: -66.66667%;
  }
  /* line 148, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n) {
    float: left;
    width: 33.33333%;
    margin-left: 66.66667%;
    margin-right: -100%;
  }
}
/**
 * Use 5 grid columns for larger screens.
 */
@media all and (min-width: 1200px) {
  /**
   * The layout when there is only one sidebar, the left one.
   */
  /* line 165, ../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 167, ../sass/layouts/_responsive.scss */
  .sidebar-first #content {
    float: left;
    width: 80%;
    margin-left: 20%;
    margin-right: -100%;
  }
  /* line 172, ../sass/layouts/_responsive.scss */
  .sidebar-first .region-sidebar-first {
    float: left;
    width: 20%;
    margin-left: 0%;
    margin-right: -20%;
  }

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

  /**
   * The layout when there are two sidebars.
   */
  /* line 195, ../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 197, ../sass/layouts/_responsive.scss */
  .two-sidebars #content {
    float: left;
    width: 60%;
    margin-left: 20%;
    margin-right: -80%;
  }
  /* line 202, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 20%;
    margin-left: 0%;
    margin-right: -20%;
  }
  /* line 207, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 20%;
    margin-left: 80%;
    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 #navigation,
.with-wireframes .region-sidebar-first,
.with-wireframes .region-sidebar-second,
.with-wireframes #footer,
.with-wireframes .region-bottom {
  outline: 1px solid #000;
  margin-bottom: 10px;
}
/* line 31, ../sass/components/_misc.scss */
.with-wireframes a {
  color: #000;
  text-decoration: none;
}
/* line 32, ../sass/components/_misc.scss */
.with-wireframes #logo {
  padding: 10px 0;
}
/* line 34, ../sass/components/_misc.scss */
.with-wireframes #logo img {
  outline: 1px #000 solid;
}
/* line 36, ../sass/components/_misc.scss */
.with-wireframes #content {
  padding-right: 0px;
}
/* line 38, ../sass/components/_misc.scss */
.with-wireframes #content .inner {
  outline: 1px #000 solid;
  padding: 10px;
  min-height: 400px;
  box-sizing: border-box;
}
/* line 43, ../sass/components/_misc.scss */
.with-wireframes .region-sidebar-first, .with-wireframes .region-sidebar-second {
  min-height: 400px;
}
/* line 46, ../sass/components/_misc.scss */
.with-wireframes #navigation {
  height: 2.4em;
  padding: 0;
}
/* line 49, ../sass/components/_misc.scss */
.with-wireframes #navigation ul.links li {
  height: 2.4em;
  padding: 5px 10px;
  box-sizing: border-box;
  border-right: 1px #000 solid;
}
/* line 57, ../sass/components/_misc.scss */
.with-wireframes.front #content {
  padding-left: 0;
}
/* line 61, ../sass/components/_misc.scss */
.with-wireframes #header {
  position: relative;
}
/* line 64, ../sass/components/_misc.scss */
.with-wireframes .header__region {
  clear: none;
}
/* line 66, ../sass/components/_misc.scss */
.with-wireframes .header__region .block-menu-block {
  margin: 0;
}
/* line 68, ../sass/components/_misc.scss */
.with-wireframes .header__region .block-menu-block .menu {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0;
  margin: 0;
}
/* line 71, ../sass/components/_misc.scss */
.with-wireframes .header__region .block-menu-block .menu li {
  float: left;
  list-style: none;
  padding: 5px;
  margin-right: 10px;
  border: 1px #000 solid;
}

/**
 * Accessibility features.
 */
/* element-invisible as defined by http://snook.ca/archives/html_and_css/hiding-content-for-accessibility */
/* line 88, ../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 94, ../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 111, ../sass/components/_misc.scss */
#skip-link {
  margin: 0;
}
/* line 114, ../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 130, ../sass/components/_misc.scss */
.header__logo {
  float: left;
  /* LTR */
  margin: 0;
  padding: 0;
}

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

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

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

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

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

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

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

/**
 * Navigation bar.
 */
/* line 185, ../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 189, ../sass/components/_misc.scss */
#navigation .block {
  margin-bottom: 0;
}
/* line 199, ../sass/components/_misc.scss */
#navigation .links,
#navigation .menu {
  margin: 0;
  padding: 0;
  text-align: left;
  /* LTR */
}
/* line 205, ../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 219, ../sass/components/_misc.scss */
.breadcrumb ol {
  margin: 0;
  padding: 0;
}
/* line 223, ../sass/components/_misc.scss */
.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

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

/**
 * Messages.
 */
/* line 246, ../sass/components/_misc.scss */
.messages, .messages--status, .messages--warning, .messages--error {
  margin: 1.78947em 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 261, ../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 270, ../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 280, ../sass/components/_misc.scss */
.messages__list {
  margin: 0;
}

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

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

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

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

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

/**
 * Tabs.
 */
/* Basic positioning styles shared by primary and secondary tabs. */
/* line 314, ../sass/components/_misc.scss */
.tabs-primary, .tabs-secondary {
  overflow: hidden;
  *zoom: 1;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjYmJiYmJiIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(100%, #bbbbbb), color-stop(100%, rgba(0, 0, 0, 0)));
  background-image: -moz-linear-gradient(bottom, #bbbbbb 1px, rgba(0, 0, 0, 0) 1px);
  background-image: -webkit-linear-gradient(bottom, #bbbbbb 1px, rgba(0, 0, 0, 0) 1px);
  background-image: linear-gradient(to top, #bbbbbb 1px, rgba(0, 0, 0, 0) 1px);
  /* IE 9 and earlier don't understand gradients. */
  list-style: none;
  border-bottom: 1px solid #bbb \0/ie;
  margin: 1.78947em 0;
  padding: 0 2px;
  white-space: nowrap;
}

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

/* Primary tabs. */
/* line 341, ../sass/components/_misc.scss */
.tabs-primary__tab, .tabs-primary__tab.is-active {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  text-shadow: 1px 1px 0 #fff;
  border: 1px solid #bbb;
  border-bottom-color: transparent;
  /* IE 9 and earlier don't understand gradients. */
  border-bottom: 0 \0/ie;
}

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

/* line 356, ../sass/components/_misc.scss */
a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  color: #333;
  background-color: #dedede;
  letter-spacing: 1px;
  padding: 0 1em;
  text-align: center;
}

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

/* line 370, ../sass/components/_misc.scss */
a.tabs-primary__tab-link:active, a.tabs-primary__tab-link.is-active {
  background-color: transparent;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFE9E9E9', endColorstr='#00E9E9E9');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U5ZTllOSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2U5ZTllOSIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e9e9e9), color-stop(100%, rgba(233, 233, 233, 0)));
  background-image: -moz-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: -webkit-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  border-color: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * Forms.
 */
/* Wrapper for a form element (or group of form elements) and its label. */
/* line 631, ../sass/components/_misc.scss */
.form-item {
  margin: 1.78947em 0;
  /* Pack groups of checkboxes and radio buttons closer together. */
  /* Form items in a table. */
  /* Highlight the form elements that caused a form submission error. */
  /* The descriptive help text (separate from the label). */
}
/* line 635, ../sass/components/_misc.scss */
.form-checkboxes .form-item, .form-radios .form-item {
  /* Drupal core uses "0.4em 0". */
  margin: 0;
}
/* line 642, ../sass/components/_misc.scss */
tr.odd .form-item, tr.even .form-item {
  margin: 0;
}
/* line 648, ../sass/components/_misc.scss */
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}
/* line 655, ../sass/components/_misc.scss */
.form-item .description {
  font-size: 0.85em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @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: 19px;
  }
  /* 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;
  }
}
/*
NCTL theme styling
*/
/* 
    Created on : Oct 21, 2014, 10:24:01 PM
    Author     : SYP
*/
/* line 13, ../sass/_nctl.scss */
#header {
  box-sizing: border-box;
  padding: 20px 0;
}
/* line 15, ../sass/_nctl.scss */
#header .inner {
  position: relative;
}
/* line 16, ../sass/_nctl.scss */
#header #logo {
  max-width: 365px;
  position: relative;
  z-index: 3;
}
/* line 19, ../sass/_nctl.scss */
#header .region-header {
  z-index: 2;
}
/* line 21, ../sass/_nctl.scss */
#header .region-header .block-search {
  position: absolute;
  right: 0;
  top: 40px;
}
/* line 24, ../sass/_nctl.scss */
#header .region-header .block-search button {
  background: #09c6a9;
  border: none;
  font-size: 18px;
  padding-top: 0;
  color: #fff;
}
/* line 29, ../sass/_nctl.scss */
#header .region-header .block-search input[type=text] {
  border: 1px #2895d0 solid;
  font-size: 18px;
}
/* line 33, ../sass/_nctl.scss */
#header .region-header .mobilemenu {
  position: absolute;
  top: 0;
  right: 0;
  color: #09c6a9;
  cursor: pointer;
}
/* line 36, ../sass/_nctl.scss */
#header .region-header .mobilemenu i {
  font-size: 50px;
}
/* line 37, ../sass/_nctl.scss */
#header .region-header .mobilemenu span {
  display: block;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 14px;
}
/* line 42, ../sass/_nctl.scss */
#header .region-header .block-menu-block {
  margin: 0;
  z-index: 5;
  font-size: .75em;
}
/* line 44, ../sass/_nctl.scss */
#header .region-header .block-menu-block .menu {
  margin: 0;
  padding: 0;
}
/* line 46, ../sass/_nctl.scss */
#header .region-header .block-menu-block .menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}
/* line 48, ../sass/_nctl.scss */
#header .region-header .block-menu-block .menu li a {
  text-decoration: none;
}
/* line 55, ../sass/_nctl.scss */
#header .social-icons {
  position: absolute;
  right: 0;
  top: 0;
}
/* line 57, ../sass/_nctl.scss */
#header .social-icons ul {
  margin: 0;
  padding: 0;
  font-size: 24px;
}
/* line 59, ../sass/_nctl.scss */
#header .social-icons ul li {
  list-style: none;
  float: left;
  padding: 0;
  margin: 0 0 0 10px;
}
/* line 62, ../sass/_nctl.scss */
#header .social-icons ul li a {
  text-decoration: none;
  color: #2895d0;
}
@media (min-width: 780px) {
  /* line 13, ../sass/_nctl.scss */
  #header {
    height: 190px;
  }
}
@media (min-width: 1200px) {
  /* line 13, ../sass/_nctl.scss */
  #header {
    height: 290px;
  }
}
@media (max-width: 1199px) {
  /* line 13, ../sass/_nctl.scss */
  #header {
    padding: 20px;
  }
  /* line 79, ../sass/_nctl.scss */
  #header .social-icons {
    right: 100px;
  }
  /* line 82, ../sass/_nctl.scss */
  #header .region-header {
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    padding-top: 104px;
  }
  /* line 85, ../sass/_nctl.scss */
  #header .region-header .block-search {
    right: 100px;
  }
  /* line 89, ../sass/_nctl.scss */
  #header .region-header.menu-active .block-menu-block {
    display: block;
  }
  /* line 91, ../sass/_nctl.scss */
  #header .region-header .block-menu-block {
    display: none;
    margin-left: -20px;
  }
  /* line 94, ../sass/_nctl.scss */
  #header .region-header .block-menu-block .menu li {
    border-bottom: 1px #fff solid;
    background-color: #09c6a9;
    position: relative;
    width: 50%;
    line-height: normal;
    text-transform: uppercase;
    display: table;
  }
  /* line 99, ../sass/_nctl.scss */
  #header .region-header .block-menu-block .menu li a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 10px 12px;
  }
  /* line 104, ../sass/_nctl.scss */
  #header .region-header .block-menu-block .menu li:hover, #header .region-header .block-menu-block .menu li.active-trail, #header .region-header .block-menu-block .menu li.active {
    background-color: #2895d0;
  }
  /* line 108, ../sass/_nctl.scss */
  #header .region-header .block-menu-block .menu li:hover .menu {
    display: block;
  }
  /* line 112, ../sass/_nctl.scss */
  #header .region-header .block-menu-block .menu li .menu {
    display: none;
    position: absolute;
    width: 100%;
    font-size: 1.15em;
    top: 0;
    left: 100%;
    background-color: #09c6a9;
  }
  /* line 116, ../sass/_nctl.scss */
  #header .region-header .block-menu-block .menu li .menu li {
    border: none;
    width: 100%;
    text-transform: none;
    background: none;
  }
  /* line 119, ../sass/_nctl.scss */
  #header .region-header .block-menu-block .menu li .menu li a {
    padding: 7px 12px;
    margin: 0;
    border: none;
  }
  /* line 123, ../sass/_nctl.scss */
  #header .region-header .block-menu-block .menu li .menu li.expanded:after {
    display: none;
  }
  /* line 126, ../sass/_nctl.scss */
  #header .region-header .block-menu-block .menu li .menu li .menu {
    position: relative;
    left: auto;
    top: auto;
    display: none;
  }
  /* line 137, ../sass/_nctl.scss */
  #header .region-header .block-menu-block .menu li.expanded > a {
    border-right: 1px #fff solid;
    width: calc(100% - 30px);
  }
  /* line 141, ../sass/_nctl.scss */
  #header .region-header .block-menu-block .menu li.expanded:after {
    content: "\f054";
    font-family: 'FontAwesome';
    display: block;
    vertical-align: middle;
    color: #fff;
    display: table-cell;
    padding: 0 10px;
    width: 10px;
    cursor: pointer;
  }
  /* line 148, ../sass/_nctl.scss */
  #header .region-header .block-menu-block .menu li.expanded:hover:after {
    content: "\f053";
  }
}
@media (max-width: 779px) {
  /* line 13, ../sass/_nctl.scss */
  #header {
    height: 100px;
  }
  /* line 159, ../sass/_nctl.scss */
  #header .region-header {
    padding-top: 80px;
  }
  /* line 162, ../sass/_nctl.scss */
  #header .block-search, #header .social-icons {
    display: none;
  }
  /* line 165, ../sass/_nctl.scss */
  #header #logo {
    width: 200px;
    float: left;
  }
}
@media (min-width: 1200px) {
  /* line 170, ../sass/_nctl.scss */
  #header .mobilemenu {
    display: none;
  }
  /* line 171, ../sass/_nctl.scss */
  #header .region-header {
    position: static;
    float: left;
    clear: none;
  }
  /* line 175, ../sass/_nctl.scss */
  #header .region-header .block-menu-block .menu li {
    float: left;
  }
  /* line 179, ../sass/_nctl.scss */
  #header .region-header .block-menu-block.top-menu {
    float: left;
  }
  /* line 182, ../sass/_nctl.scss */
  #header .region-header .block-menu-block.top-menu .menu li {
    margin-left: 20px;
  }
  /* line 184, ../sass/_nctl.scss */
  #header .region-header .block-menu-block.top-menu .menu li a {
    color: #2fbaab;
  }
  /* line 186, ../sass/_nctl.scss */
  #header .region-header .block-menu-block.top-menu .menu li a.active, #header .region-header .block-menu-block.top-menu .menu li a:hover {
    text-decoration: underline;
  }
  /* line 191, ../sass/_nctl.scss */
  #header .region-header .block-menu-block.top-menu .menu li#donate a {
    color: #e57700;
  }
  /* line 195, ../sass/_nctl.scss */
  #header .region-header .block-menu-block.top-menu .menu li.escent-link {
    display: none;
  }
  /* line 199, ../sass/_nctl.scss */
  #header .region-header .block-menu-block.main-menu {
    position: absolute;
    top: 150px;
    left: 0;
    width: 100%;
    /* background-color: $green; */
  }
  /* line 203, ../sass/_nctl.scss */
  #header .region-header .block-menu-block.main-menu .menu {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
  }
  /* line 206, ../sass/_nctl.scss */
  #header .region-header .block-menu-block.main-menu .menu li {
    padding: 0;
    margin: 0;
    border-right: 1px #fff solid;
    position: relative;
  }
  /* line 209, ../sass/_nctl.scss */
  #header .region-header .block-menu-block.main-menu .menu li a {
    display: block;
    color: #fff;
    text-decoration: none;
    background-color: #09c6a9;
    padding: 15px 17px;
  }
  /* line 212, ../sass/_nctl.scss */
  #header .region-header .block-menu-block.main-menu .menu li a:hover, #header .region-header .block-menu-block.main-menu .menu li a.active-trail, #header .region-header .block-menu-block.main-menu .menu li a.active {
    background-color: #2895d0;
  }
  /* line 216, ../sass/_nctl.scss */
  #header .region-header .block-menu-block.main-menu .menu li.first {
    border-left: 1px #fff solid;
  }
  /* line 219, ../sass/_nctl.scss */
  #header .region-header .block-menu-block.main-menu .menu li .menu {
    display: none;
    position: absolute;
    text-transform: none;
    font-weight: 400;
    min-width: 200px;
  }
  /* line 223, ../sass/_nctl.scss */
  #header .region-header .block-menu-block.main-menu .menu li .menu li {
    border-right: none;
    border-bottom: 1px #6eaeeb solid;
    float: none;
    background-color: #2895d0;
    line-height: normal;
  }
  /* line 226, ../sass/_nctl.scss */
  #header .region-header .block-menu-block.main-menu .menu li .menu li a {
    background: none;
    padding: 10px 17px;
  }
  /* line 230, ../sass/_nctl.scss */
  #header .region-header .block-menu-block.main-menu .menu li .menu li:hover, #header .region-header .block-menu-block.main-menu .menu li .menu li.active-trail, #header .region-header .block-menu-block.main-menu .menu li .menu li.active {
    background-color: #09c6a9;
  }
  /* line 233, ../sass/_nctl.scss */
  #header .region-header .block-menu-block.main-menu .menu li .menu li.first {
    border-left: none;
  }
  /* line 234, ../sass/_nctl.scss */
  #header .region-header .block-menu-block.main-menu .menu li .menu li .menu {
    display: block;
    position: relative;
  }
  /* line 236, ../sass/_nctl.scss */
  #header .region-header .block-menu-block.main-menu .menu li .menu li .menu li {
    border: none;
    margin-bottom: 10px;
    background: none;
  }
  /* line 239, ../sass/_nctl.scss */
  #header .region-header .block-menu-block.main-menu .menu li .menu li .menu li a {
    padding: 0 0 0 30px;
    background: none;
  }
  /* line 248, ../sass/_nctl.scss */
  #header .region-header .block-menu-block.main-menu .menu li:hover .menu {
    display: block;
  }
}

/* line 259, ../sass/_nctl.scss */
#navigation {
  display: none;
  top: -120px;
  height: auto;
  padding: 0;
  background-color: #09c6a9;
}
/* line 263, ../sass/_nctl.scss */
#navigation .links {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
}
/* line 266, ../sass/_nctl.scss */
#navigation .links li {
  padding: 0;
  margin: 0 1px 1px 0;
}
/* line 268, ../sass/_nctl.scss */
#navigation .links li a {
  display: block;
  color: #fff;
  text-decoration: none;
  background-color: #09c6a9;
  padding: 15px 10px;
}
/* line 271, ../sass/_nctl.scss */
#navigation .links li a:hover, #navigation .links li a.active-trail, #navigation .links li a.active {
  background-color: #2895d0;
}

/* line 279, ../sass/_nctl.scss */
.breadcrumb {
  margin-top: -60px;
  padding-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #5b5b5b;
}
/* line 282, ../sass/_nctl.scss */
.breadcrumb a {
  text-decoration: none;
  color: #5b5b5b;
}
@media (max-width: 779px) {
  /* line 279, ../sass/_nctl.scss */
  .breadcrumb {
    display: none;
  }
}

/* line 290, ../sass/_nctl.scss */
#main {
  padding: 20px 0 0 0;
  border-top: 1px #bababa solid;
}
/* line 292, ../sass/_nctl.scss */
#main #content {
  color: #5b5b5b;
  padding-bottom: 20px;
}
/* line 294, ../sass/_nctl.scss */
#main #content h1 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", "DejaVu Serif", serif;
  font-weight: normal;
  line-height: 1.25em;
  color: #2895d0;
}
/* line 299, ../sass/_nctl.scss */
.not-front #main #content {
  /* h2 { font-size: 2rem; color: $textgreen; } */
}
/* line 300, ../sass/_nctl.scss */
.not-front #main #content h2, .not-front #main #content h2.block-title {
  font-size: 1.5rem;
  color: #e9b279;
  margin: 0 0 20px 0;
}
/* line 307, ../sass/_nctl.scss */
#main #content p {
  margin-top: 0;
}
/* line 310, ../sass/_nctl.scss */
#main #content a {
  color: #2895d0;
  text-decoration: none;
}
/* line 314, ../sass/_nctl.scss */
#main #content .button, #main #content input[type=button] {
  appearance: initial;
  -webkit-appearance: initial;
  background: #2895d0;
  border: none;
  padding: 5px 30px;
  text-transform: uppercase;
  color: #fff;
  margin-right: 20px;
  display: inline-block;
  margin-bottom: 20px;
}
/* line 320, ../sass/_nctl.scss */
#main #content .button:hover, #main #content input[type=button]:hover {
  background-color: #2076a5;
}
/* line 323, ../sass/_nctl.scss */
#main #content .button.green, #main #content input[type=button].green {
  background: #09c6a9;
}
/* line 325, ../sass/_nctl.scss */
#main #content .button.green:hover, #main #content input[type=button].green:hover {
  background-color: #07957f;
}
/* line 329, ../sass/_nctl.scss */
#main #content .button.red, #main #content input[type=button].red {
  background: #df532d;
}
/* line 331, ../sass/_nctl.scss */
#main #content .button.red:hover, #main #content input[type=button].red:hover {
  background-color: #bc3f1d;
}
/* line 337, ../sass/_nctl.scss */
#main #content .feature-box-orange {
  font-size: 1.25em;
  color: #e9b279;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: normal;
  /*
  background-color: $orange; color: #fff; 
  padding: 20px; font-weight: 600; font-size: 1.25em; 
  line-height: normal;
  margin-bottom: 20px;
  */
}
/* line 347, ../sass/_nctl.scss */
#main #content .feature-box {
  padding: 20px;
  font-weight: 600;
  font-size: 1.25em;
  line-height: normal;
  margin-bottom: 20px;
  color: #fff;
}
/* line 351, ../sass/_nctl.scss */
#main #content .feature-box p, #main #content .feature-box h3 {
  margin: 0;
}
/* line 354, ../sass/_nctl.scss */
#main #content .feature-box h3 {
  text-transform: uppercase;
  font-size: 1em;
}
/* line 358, ../sass/_nctl.scss */
#main #content .feature-box.blue {
  background-color: #2895d0;
}
/* line 361, ../sass/_nctl.scss */
#main #content .feature-box.orange {
  background-color: #e9b279;
}
/* line 365, ../sass/_nctl.scss */
#main #content .orange-feature-text {
  font-size: 1.25em;
  color: #e9b279;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: normal;
}
/* line 369, ../sass/_nctl.scss */
#main #content .green-button-link {
  text-transform: uppercase;
  background-color: #09c6a9;
  padding: 5px 30px;
  color: #fff;
  display: inline-block;
  margin-right: 40px;
}
/* line 374, ../sass/_nctl.scss */
#main #content .quote {
  font-size: 1.25em;
  color: #2895d0;
  margin: 20px 20% 20px 20%;
}
/* line 377, ../sass/_nctl.scss */
#main #content .box-list-grid {
  margin: 0;
  padding: 0;
}
/* line 379, ../sass/_nctl.scss */
#main #content .box-list-grid li {
  float: left;
  width: calc(34% - 20px);
  list-style: none;
  background-color: #09c6a9;
  color: #fff;
  padding: 20px;
  box-sizing: border-box;
  min-height: 260px;
  margin-bottom: 20px;
  margin-right: 20px;
  display: table;
}
/* line 385, ../sass/_nctl.scss */
#main #content .box-list-grid li:nth-child(3n+3) {
  margin-right: 0;
}
/* line 388, ../sass/_nctl.scss */
#main #content .box-list-grid li a {
  color: #fff;
  font-weight: bold;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
/* line 393, ../sass/_nctl.scss */
#main #content .box-list-grid li:hover {
  background-color: #07957f;
}
/* line 398, ../sass/_nctl.scss */
#main #content .icon-list {
  margin: 0;
  padding: 0;
}
/* line 400, ../sass/_nctl.scss */
#main #content .icon-list li {
  list-style: none;
  margin-bottom: 20px;
}
/* line 402, ../sass/_nctl.scss */
#main #content .icon-list li .icon {
  float: left;
  margin-right: 10px;
}
/* line 407, ../sass/_nctl.scss */
#main #content .oembed {
  display: inline-block;
  float: none;
}
/* line 411, ../sass/_nctl.scss */
#main #content .field-name-body img {
  height: auto !important;
}
/* line 416, ../sass/_nctl.scss */
#main #content .image-box .caption {
  margin: 0;
  font-size: .875em;
  line-height: normal;
  font-style: italic;
}
/* line 425, ../sass/_nctl.scss */
#main #content .success-stories .views-row {
  margin-bottom: 20px;
}
/* line 428, ../sass/_nctl.scss */
#main #content .success-stories p {
  margin: 0;
}
/* line 431, ../sass/_nctl.scss */
#main #content .success-stories a {
  font-weight: bold;
}
@media (max-width: 779px) {
  /* line 436, ../sass/_nctl.scss */
  #main #content .group-left, #main #content .group-right {
    float: none;
    width: 100%;
  }
}
@media (min-width: 780px) {
  /* line 441, ../sass/_nctl.scss */
  #main #content .feature-box, #main #content .image-box {
    width: 40%;
    float: right;
    margin-left: 20px;
    clear: right;
    margin-bottom: 20px;
  }
}
/* line 451, ../sass/_nctl.scss */
.page-node-37 #main #content h1.title {
  display: none;
}
/* line 454, ../sass/_nctl.scss */
.section-blog #main #content h1.title {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #2895d0;
  font-weight: bold;
  font-size: 2em;
  margin-bottom: 5px;
}
/* line 460, ../sass/_nctl.scss */
.section-blog #main #content .field-name-body {
  margin-top: 20px;
}
/* line 463, ../sass/_nctl.scss */
.section-blog #main #content .views-row {
  border-top: 1px #2fbaab solid;
  margin-bottom: 20px;
}
/* line 466, ../sass/_nctl.scss */
.section-blog #main #content .views-row h2 {
  margin: 20px 0 5px 0;
}
/* line 469, ../sass/_nctl.scss */
.section-blog #main #content .views-row .field-name-body {
  margin-top: 10px;
}
/* line 472, ../sass/_nctl.scss */
.section-blog #main #content .views-row a {
  color: #2fbaab;
}
/* line 478, ../sass/_nctl.scss */
#main #content .about-team tr td {
  vertical-align: top;
  padding: 10px;
}
/* line 480, ../sass/_nctl.scss */
#main #content .about-team tr td.views-field-name {
  width: 25%;
  color: #fff;
}
/* line 483, ../sass/_nctl.scss */
#main #content .about-team tr td .view-about-our-team-users {
  margin-left: 10px;
}
/* line 489, ../sass/_nctl.scss */
#main #content .view-about-our-team-users {
  color: #2895d0;
}
/* line 491, ../sass/_nctl.scss */
#main #content .view-about-our-team-users span.name {
  font-weight: bold;
}
/* line 494, ../sass/_nctl.scss */
#main #content .board-list .view-about-our-team-users {
  color: #5b5b5b;
}
/* line 497, ../sass/_nctl.scss */
#main #content .board-list .view-about-our-team-users .views-field-field-affiliation a {
  font-weight: bold;
}
/* line 502, ../sass/_nctl.scss */
#main #content .view-board-member-detail .views-field-field-user-last-name {
  font-weight: bold;
}
/* line 505, ../sass/_nctl.scss */
#main #content .view-board-member-detail .views-field-field-user-last-name, #main #content .view-board-member-detail .views-field-field-user-job-title, #main #content .view-board-member-detail .views-field-field-affiliation {
  color: #2895d0;
}
/* line 508, ../sass/_nctl.scss */
#main #content .view-board-member-detail .views-field-field-user-bio {
  margin-top: 20px;
}
@media (min-width: 780px) {
  /* line 515, ../sass/_nctl.scss */
  .page-user #main #content .group-left {
    float: left;
    width: 20%;
    margin-left: 0%;
    margin-right: -20%;
  }
  /* line 518, ../sass/_nctl.scss */
  .page-user #main #content .group-right {
    float: left;
    width: 80%;
    margin-left: 20%;
    margin-right: -100%;
    padding-left: 20px;
  }
}
/* line 524, ../sass/_nctl.scss */
.page-user #main #content .field p {
  margin: 0;
}
/* line 528, ../sass/_nctl.scss */
.page-user #main #content .field-name-user-firstname-lastname {
  color: #2895d0;
  font-weight: bold;
}
/* line 531, ../sass/_nctl.scss */
.page-user #main #content .field-name-field-user-job-title {
  color: #2895d0;
}
/* line 535, ../sass/_nctl.scss */
.page-user #main #content .field-name-user-email a {
  color: #09c6a9;
}
/* line 537, ../sass/_nctl.scss */
.page-user #main #content .field-name-field-user-bio {
  margin-top: 20px;
}
/* line 539, ../sass/_nctl.scss */
.page-user #main #content .field-name-field-user-bio p {
  margin-bottom: 20px;
}
/* line 544, ../sass/_nctl.scss */
#main #content .node-resources.node-teaser {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px #929292 solid;
}
/* line 547, ../sass/_nctl.scss */
#main #content .node-resources.node-teaser h2 {
  font-weight: normal;
  margin: 0;
}
/* line 549, ../sass/_nctl.scss */
#main #content .node-resources.node-teaser h2 a {
  color: #2fbaab;
}
/* line 551, ../sass/_nctl.scss */
#main #content .node-resources.node-teaser .field-name-body {
  margin-top: 20px;
}
/* line 553, ../sass/_nctl.scss */
#main #content .node-resources.node-teaser .field-name-body p {
  margin: 0;
}
@media (min-width: 780px) {
  /* line 558, ../sass/_nctl.scss */
  #main #content .node-resources .group-left {
    float: left;
    width: 25%;
    margin-left: 0%;
    margin-right: -25%;
  }
  /* line 561, ../sass/_nctl.scss */
  #main #content .node-resources:not(.group-one-column) .group-right {
    float: left;
    width: 75%;
    margin-left: 25%;
    margin-right: -100%;
    padding-left: 20px;
  }
}
/* line 570, ../sass/_nctl.scss */
#main #content .resource-search-form h2.block-title {
  color: #e9b279;
  margin-bottom: 15px;
}
/* line 573, ../sass/_nctl.scss */
#main #content .resource-search-form:before {
  /*
  content: "Search Resources By the Following";
  font-size:1.5em; font-weight: bold; color: $orange;
  display: block; margin-bottom: 10px;
  */
}
/* line 581, ../sass/_nctl.scss */
#main #content .resource-search-form .views-exposed-widget {
  padding: 20px;
  background-color: #654f96;
  color: #fff;
  box-sizing: border-box;
  margin-bottom: 20px;
  position: relative;
}
/* line 584, ../sass/_nctl.scss */
#main #content .resource-search-form .views-exposed-widget.views-submit-button {
  display: none;
}
/* line 585, ../sass/_nctl.scss */
#main #content .resource-search-form .views-exposed-widget:first-child {
  margin: 0 0 60px 0;
}
/* line 587, ../sass/_nctl.scss */
#main #content .resource-search-form .views-exposed-widget:first-child:after {
  content: "or";
  background-color: #e9b279;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  padding: 5px;
  text-align: center;
  line-height: 1em;
  display: block;
  position: absolute;
  bottom: -40px;
  margin: 0 40%;
}
@media (min-width: 780px) {
  /* line 581, ../sass/_nctl.scss */
  #main #content .resource-search-form .views-exposed-widget {
    float: left;
    width: calc(50% - 20px);
  }
  /* line 597, ../sass/_nctl.scss */
  #main #content .resource-search-form .views-exposed-widget:first-child {
    margin: 0 40px 0 0;
  }
  /* line 599, ../sass/_nctl.scss */
  #main #content .resource-search-form .views-exposed-widget:first-child:after {
    bottom: inherit;
    top: 40px;
    margin-left: calc(100% - 15px);
  }
}
/* line 40, ../sass/_mixins.scss */
#main #content .resource-search-form:after {
  content: "";
  display: block;
  clear: both;
}
/* line 612, ../sass/_nctl.scss */
.page-history #main #content h1.title {
  color: #2895d0;
}
/* line 618, ../sass/_nctl.scss */
#main #content .history-list {
  margin: 0;
  padding: 0;
}
/* line 620, ../sass/_nctl.scss */
#main #content .history-list li {
  padding: 0;
  margin: 0 0 20px 0;
  list-style: none;
}
/* line 40, ../sass/_mixins.scss */
#main #content .history-list li:after {
  content: "";
  display: block;
  clear: both;
}
/* line 626, ../sass/_nctl.scss */
#main #content .history-box {
  clear: both;
  background-color: #6e679d;
  height: 270px;
  width: 270px;
  display: table;
  float: left;
  margin-right: 20px;
}
/* line 630, ../sass/_nctl.scss */
#main #content .history-box span {
  font-size: 2em;
  color: #fff;
  font-weight: 300;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
/* line 638, ../sass/_nctl.scss */
.section-news-room #main #content .press-releases, .section-news-room #main #content .in-the-news {
  box-sizing: border-box;
}
/* line 640, ../sass/_nctl.scss */
.section-news-room #main #content .press-releases h2, .section-news-room #main #content .in-the-news h2 {
  margin-bottom: 20px;
}
/* line 641, ../sass/_nctl.scss */
.section-news-room #main #content .press-releases .views-row, .section-news-room #main #content .in-the-news .views-row {
  margin-bottom: 20px;
}
@media (min-width: 780px) {
  /* line 644, ../sass/_nctl.scss */
  .section-news-room #main #content .press-releases, .section-news-room #main #content .in-the-news {
    float: left;
    width: 50%;
    padding-right: 20px;
  }
}
/* line 652, ../sass/_nctl.scss */
.page-contact #main #content input[type=text], .page-contact #main #content textarea {
  background-color: #eaeaea;
  border: none;
  color: #5b5b5b;
  text-transform: none;
}
/* line 656, ../sass/_nctl.scss */
.page-contact #main #content input[type=submit] {
  background-color: #2895d0;
  border: none;
  color: #fff;
  padding: 5px 30px;
}
/* line 659, ../sass/_nctl.scss */
.page-contact #main #content input[type=submit]:hover {
  background: #2076a5;
}
/* line 667, ../sass/_nctl.scss */
#main #content .view-testimonial-list .views-row {
  margin-bottom: 40px;
  border-top: 1px #bababa solid;
  padding-top: 20px;
}
/* line 40, ../sass/_mixins.scss */
#main #content .view-testimonial-list .views-row:after {
  content: "";
  display: block;
  clear: both;
}
/* line 670, ../sass/_nctl.scss */
#main #content .view-testimonial-list .views-row .field-name-title h2, #main #content .view-testimonial-list .views-row .field-name-field-name-additional {
  font-size: 1.25em;
  color: #e9b279;
  font-weight: bold;
  margin: 0;
  text-indent: -20px;
  margin-left: 20px;
}
/* line 674, ../sass/_nctl.scss */
#main #content .view-testimonial-list .views-row .field-type-image {
  float: right;
  margin-left: 20px;
}
/* line 676, ../sass/_nctl.scss */
#main #content .view-testimonial-list .views-row .field-type-image img {
  display: block;
  border: 7px #654f96 solid;
  width: 250px;
  height: auto;
}
/* line 681, ../sass/_nctl.scss */
#main #content .view-testimonial-list .views-row .field-name-field-organization, #main #content .view-testimonial-list .views-row .field-name-field-job-title {
  font-weight: bold;
}
/* line 684, ../sass/_nctl.scss */
#main #content .view-testimonial-list .views-row .field-name-body {
  margin-top: 30px;
}
/* line 687, ../sass/_nctl.scss */
#main #content .view-testimonial-list .views-row:first-child {
  border: none;
}
/* line 694, ../sass/_nctl.scss */
#main #content .block-database-form {
  background-color: #e3e8ec;
  padding: 20px;
}
/* line 40, ../sass/_mixins.scss */
#main #content .block-database-form:after {
  content: "";
  display: block;
  clear: both;
}
/* line 698, ../sass/_nctl.scss */
#main #content .block-database-form h2, #main #content .block-database-form h3 {
  color: #2895d0 !important;
  font-size: 1.25em;
  margin: 0 0 .5em 0;
}
/* line 699, ../sass/_nctl.scss */
#main #content .block-database-form p {
  margin: 0;
}
/* line 701, ../sass/_nctl.scss */
#main #content .block-database-form .group-left {
  float: left;
  width: 50%;
  margin-left: 0%;
  margin-right: -50%;
  padding-right: 20px;
  border-right: 1px #bababa solid;
}
/* line 706, ../sass/_nctl.scss */
#main #content .block-database-form .group-right {
  float: left;
  width: 50%;
  margin-left: 50%;
  margin-right: -100%;
  padding-left: 20px;
}
/* line 711, ../sass/_nctl.scss */
#main #content .block-database-form .group-left, #main #content .block-database-form .group-right {
  box-sizing: border-box;
}
/* line 714, ../sass/_nctl.scss */
#main #content .block-database-form .select-container {
  padding-bottom: 10px;
  margin-bottom: 20px;
}
/* line 716, ../sass/_nctl.scss */
#main #content .block-database-form .select-container .form-select-wrapper {
  width: 45%;
  margin-right: 10px;
  display: inline-block;
}
/* line 721, ../sass/_nctl.scss */
#main #content .block-database-form .category_wrapper {
  box-sizing: border-box;
  clear: both;
  padding: 10px 0;
  border-bottom: 1px #bababa solid;
}
/* line 40, ../sass/_mixins.scss */
#main #content .block-database-form .category_wrapper:after {
  content: "";
  display: block;
  clear: both;
}
/* line 727, ../sass/_nctl.scss */
#main #content .block-database-form .category_wrapper .category_div {
  float: left;
  width: 50%;
  margin-left: 0%;
  margin-right: -50%;
  text-align: right;
  font-weight: bold;
}
/* line 733, ../sass/_nctl.scss */
#main #content .block-database-form .category_wrapper .checkbox_div {
  float: left;
  width: 50%;
  margin-left: 50%;
  margin-right: -100%;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
  margin-top: 0;
  margin-bottom: 0;
}
/* line 737, ../sass/_nctl.scss */
#main #content .block-database-form .category_wrapper .checkbox_div li {
  padding: 0;
  margin: 0;
  text-align: right;
}
/* line 743, ../sass/_nctl.scss */
#main #content .block-database-form label {
  display: inline-block;
  font-weight: normal;
  margin-right: 10px;
}
/* line 752, ../sass/_nctl.scss */
#main .sidebar .block:not(.block-menu-block) {
  font-size: .8em;
  line-height: normal;
}
/* line 754, ../sass/_nctl.scss */
#main .sidebar .block:not(.block-menu-block) h2 {
  color: #2895d0;
  font-size: 1em;
  margin-bottom: 0;
}
/* line 758, ../sass/_nctl.scss */
#main .sidebar .block:not(.block-menu-block) p {
  margin-top: 0;
}
/* line 760, ../sass/_nctl.scss */
#main .sidebar .block:not(.block-menu-block).sidebar-social-icons ul {
  margin: 0;
  padding: 0;
}
/* line 762, ../sass/_nctl.scss */
#main .sidebar .block:not(.block-menu-block).sidebar-social-icons ul li {
  list-style: none;
  margin-bottom: 20px;
}
/* line 764, ../sass/_nctl.scss */
#main .sidebar .block:not(.block-menu-block).sidebar-social-icons ul li a {
  color: #2895d0;
  text-decoration: none;
}
/* line 766, ../sass/_nctl.scss */
#main .sidebar .block:not(.block-menu-block).sidebar-social-icons ul li a:before {
  font-family: 'nctl_icons';
  font-size: 2em;
  vertical-align: middle;
  padding-right: 10px;
}
/* line 771, ../sass/_nctl.scss */
#main .sidebar .block:not(.block-menu-block).sidebar-social-icons ul li a.fb:before {
  content: "\e602";
}
/* line 774, ../sass/_nctl.scss */
#main .sidebar .block:not(.block-menu-block).sidebar-social-icons ul li a.twitter:before {
  content: "\e604";
}
/* line 778, ../sass/_nctl.scss */
#main .sidebar .block:not(.block-menu-block).sidebar-social-icons ul li i {
  font-size: 2em;
  vertical-align: middle;
}
/* line 784, ../sass/_nctl.scss */
#main .sidebar .block:not(.block-menu-block) a {
  text-decoration: none;
}
/* line 789, ../sass/_nctl.scss */
#main .region-sidebar-first {
  margin-top: 80px;
  line-height: normal;
}
/* line 791, ../sass/_nctl.scss */
#main .region-sidebar-first .block:not(.block-menu-block) {
  color: #fff;
  background-color: #09c6a9;
  padding: 10px;
  border-top: 4px #e9b279 solid;
}
/* line 796, ../sass/_nctl.scss */
#main .region-sidebar-first .block:not(.block-menu-block) h2.block-title {
  font-family: Georgia, "Times New Roman", "DejaVu Serif", serif;
  font-weight: normal;
  font-size: 1.5em;
}
/* line 799, ../sass/_nctl.scss */
#main .region-sidebar-first .block:not(.block-menu-block) h2, #main .region-sidebar-first .block:not(.block-menu-block) a {
  color: #fff;
  margin-bottom: 5px;
}
/* line 803, ../sass/_nctl.scss */
#main .region-sidebar-first .block:not(.block-menu-block) a {
  text-decoration: underline;
}
/* line 805, ../sass/_nctl.scss */
#main .region-sidebar-first .block:not(.block-menu-block) a.more-link {
  font-family: Georgia, "Times New Roman", "DejaVu Serif", serif;
  font-weight: bold;
  text-decoration: none;
}
/* line 809, ../sass/_nctl.scss */
#main .region-sidebar-first .block:not(.block-menu-block).blue {
  background-color: #2895d0;
}
/* line 812, ../sass/_nctl.scss */
#main .region-sidebar-first .block:not(.block-menu-block).purple {
  background-color: #654f96;
}
/* line 815, ../sass/_nctl.scss */
#main .region-sidebar-first .block:not(.block-menu-block).orange {
  background-color: #e9b279;
  border-top-color: #2895d0;
}
/* line 819, ../sass/_nctl.scss */
#main .region-sidebar-first .block:not(.block-menu-block).white {
  color: #5b5b5b;
  background-color: #fff;
  border: none;
  padding: 0;
}
/* line 825, ../sass/_nctl.scss */
#main .region-sidebar-first .block:not(.block-menu-block).related-publications p {
  margin: 0;
}
/* line 829, ../sass/_nctl.scss */
#main .region-sidebar-first .block-menu-block {
  font-size: 1em;
}
/* line 831, ../sass/_nctl.scss */
#main .region-sidebar-first .block-menu-block .block-title {
  font-family: Georgia, "Times New Roman", "DejaVu Serif", serif;
  font-weight: normal;
  margin-bottom: 10px;
}
/* line 835, ../sass/_nctl.scss */
#main .region-sidebar-first .block-menu-block .block-title a {
  color: #2895d0;
  text-decoration: none;
}
/* line 840, ../sass/_nctl.scss */
#main .region-sidebar-first .block-menu-block .menu {
  margin: 0;
  padding: 0;
}
/* line 842, ../sass/_nctl.scss */
#main .region-sidebar-first .block-menu-block .menu li {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  line-height: normal;
}
/* line 846, ../sass/_nctl.scss */
#main .region-sidebar-first .block-menu-block .menu li a {
  color: #2fbaab;
  text-decoration: none;
}
/* line 848, ../sass/_nctl.scss */
#main .region-sidebar-first .block-menu-block .menu li a:hover, #main .region-sidebar-first .block-menu-block .menu li a.active {
  color: #2895d0;
}
/* line 852, ../sass/_nctl.scss */
#main .region-sidebar-first .block-menu-block .menu li li {
  margin: 0 0 0 20px;
  font-size: .875em;
}
@media (max-width: 779px) {
  /* line 789, ../sass/_nctl.scss */
  #main .region-sidebar-first {
    display: none;
  }
  /* line 861, ../sass/_nctl.scss */
  #main .region-sidebar-first .block-menu-block {
    display: none;
  }
}
/* line 866, ../sass/_nctl.scss */
#main .region-sidebar-second {
  color: #5b5b5b;
}
/* line 869, ../sass/_nctl.scss */
#main .region-sidebar-second .block .views-submit-button {
  float: none;
  clear: both;
}
/* line 872, ../sass/_nctl.scss */
#main .region-sidebar-second .block .form-submit {
  text-transform: uppercase;
  background-color: #09c6a9;
  padding: 5px 30px;
  border: none;
  color: #fff;
  width: 100%;
  display: block;
  margin: 20px 0;
}
/* line 877, ../sass/_nctl.scss */
#main .region-sidebar-second .block .views-row {
  margin-bottom: 10px;
}
/* line 880, ../sass/_nctl.scss */
#main .region-sidebar-second .block a {
  color: #2fbaab;
  text-decoration: none;
}
/* line 882, ../sass/_nctl.scss */
.section-news-room #main .region-sidebar-second .block a {
  color: #2895d0;
}
@media (max-width: 779px) {
  /* line 866, ../sass/_nctl.scss */
  #main .region-sidebar-second {
    display: none;
  }
}
/* line 892, ../sass/_nctl.scss */
#main .views-exposed-form .views-exposed-widget {
  float: none;
  width: 100%;
}
/* line 896, ../sass/_nctl.scss */
#main .compact-form-label {
  top: 10px;
  left: 10px;
  font-weight: normal;
  color: #5b5b5b;
}
/* line 899, ../sass/_nctl.scss */
#main input[type=text] {
  border: 1px #929292 solid;
  padding: 5px;
}
/* line 903, ../sass/_nctl.scss */
#main .form-select-wrapper {
  position: relative;
  display: block;
  vertical-align: middle;
  border: 1px #929292 solid;
}
/* line 906, ../sass/_nctl.scss */
#main .form-select-wrapper:before, #main .form-select-wrapper:after {
  content: "";
  position: absolute;
  pointer-events: none;
}
/* line 911, ../sass/_nctl.scss */
#main .form-select-wrapper:after {
  content: "\25BC";
  height: 1rem;
  font-size: .625rem;
  line-height: 1;
  right: 1.2rem;
  top: 50%;
  margin-top: -.5rem;
  color: #bababa;
}
/* line 920, ../sass/_nctl.scss */
#main .form-select-wrapper:before {
  width: 2rem;
  right: 0;
  top: 0;
  bottom: 0;
}
/* line 924, ../sass/_nctl.scss */
#main .form-select-wrapper select {
  width: 100%;
  text-indent: 0.01px;
  text-overflow: "";
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: inherit;
  /* inherit size from .custom-dropdown */
  padding: 7px .5rem;
  /* add some space*/
  margin: 0;
  /* remove default margins */
  border: 0;
  padding-right: 2.5rem;
  /* accommodate with the pseudo elements for the dropdown arrow */
  background-color: #fff;
  border-radius: 0;
  color: #808285;
}

/* line 943, ../sass/_nctl.scss */
#footer {
  background-color: #654f96;
  width: 100%;
  color: #fff;
  padding: 20px;
  font-size: .8em;
  line-height: normal;
}
/* line 946, ../sass/_nctl.scss */
#footer div, #footer ul, #footer p {
  margin: 0;
  padding: 0;
}
/* line 947, ../sass/_nctl.scss */
#footer a {
  color: #fff;
  text-decoration: none;
}
/* line 948, ../sass/_nctl.scss */
#footer .block {
  margin-bottom: 20px;
}
/* line 956, ../sass/_nctl.scss */
#footer .footer-main-menu .menu li, #footer .footer-top-menu .menu li {
  list-style: none;
  padding: 0;
  margin: 0 0 5px 0;
}
/* line 958, ../sass/_nctl.scss */
#footer .footer-main-menu .menu li a, #footer .footer-top-menu .menu li a {
  color: #fff;
  text-decoration: none;
}
/* line 962, ../sass/_nctl.scss */
#footer .footer-main-menu .menu li#donate a, #footer .footer-top-menu .menu li#donate a {
  color: #e57700;
}
@media (min-width: 780px) {
  /* line 972, ../sass/_nctl.scss */
  #footer .address {
    float: left;
    width: 25%;
    margin-left: 0%;
    margin-right: -25%;
  }
  /* line 974, ../sass/_nctl.scss */
  #footer .address .group-left {
    float: left;
    width: 60%;
  }
  /* line 977, ../sass/_nctl.scss */
  #footer .address .group-right {
    float: left;
    width: 40%;
  }
  /* line 981, ../sass/_nctl.scss */
  #footer .footer-main-menu {
    float: left;
    width: 25%;
    margin-left: 25%;
    margin-right: -50%;
  }
  /* line 984, ../sass/_nctl.scss */
  #footer .footer-top-menu {
    float: left;
    width: 25%;
    margin-left: 50%;
    margin-right: -75%;
  }
  /* line 987, ../sass/_nctl.scss */
  #footer .copyright-footer {
    float: left;
    width: 25%;
    margin-left: 75%;
    margin-right: -100%;
  }
}

@media (min-width: 780px) {
  /* line 995, ../sass/_nctl.scss */
  .front #header {
    height: auto;
  }
}
@media (min-width: 1200px) {
  /* line 995, ../sass/_nctl.scss */
  .front #header {
    height: 190px;
  }
}
/* line 1003, ../sass/_nctl.scss */
.front .breadcrumb {
  display: none;
}
/* line 1004, ../sass/_nctl.scss */
.front #main {
  border: none;
}
/* line 1006, ../sass/_nctl.scss */
.front #main .inner {
  max-width: 100%;
}
/* line 1008, ../sass/_nctl.scss */
.front #main .inner #content {
  margin: 0;
  padding: 0;
}
/* line 1014, ../sass/_nctl.scss */
.front #main #content .panels-flexible-row .inside {
  margin: 0 auto;
}
/* line 1018, ../sass/_nctl.scss */
.front #main #content .panels-flexible-row:not(.video-pane) .inside {
  max-width: 1200px;
}
/* line 1023, ../sass/_nctl.scss */
.front #main #content .panels-flexible-row .panel-pane .views-row {
  margin-bottom: 20px;
}
/* line 1027, ../sass/_nctl.scss */
.front #main #content .panels-flexible-row h3 {
  margin: 0;
}
/* line 1028, ../sass/_nctl.scss */
.front #main #content .panels-flexible-row input[type=submit] {
  border-radius: 5px;
  background-color: #e57700;
  color: #fff;
  border: 0;
  margin-left: 10px;
  padding: 5px 30px;
}
/* line 1033, ../sass/_nctl.scss */
.front #main #content .panels-flexible-row.video-pane {
  margin: 0;
  padding: 0;
}
/* line 1035, ../sass/_nctl.scss */
.front #main #content .panels-flexible-row.video-pane .panels-flexible-region {
  width: 100%;
}
/* line 1037, ../sass/_nctl.scss */
.front #main #content .panels-flexible-row.video-pane .panels-flexible-region .panel-pane {
  margin: 0;
}
/* line 1041, ../sass/_nctl.scss */
.front #main #content .panels-flexible-row.video-pane .join-mailing-list {
  background-color: #2895d0;
  color: #fff;
  padding: 20px;
}
/* line 1043, ../sass/_nctl.scss */
.front #main #content .panels-flexible-row.video-pane .join-mailing-list form {
  max-width: 1200px;
  margin: 0 auto;
}
/* line 1046, ../sass/_nctl.scss */
.front #main #content .panels-flexible-row.video-pane .join-mailing-list form label, .front #main #content .panels-flexible-row.video-pane .join-mailing-list form .webform-component-markup {
  letter-spacing: 2px;
  font-weight: normal;
  text-transform: uppercase;
}
/* line 1050, ../sass/_nctl.scss */
.front #main #content .panels-flexible-row.video-pane .join-mailing-list form input[type=text] {
  border: none;
  padding: 2px 5px;
  max-width: 250px;
}
/* line 1053, ../sass/_nctl.scss */
.front #main #content .panels-flexible-row.video-pane .join-mailing-list form p {
  margin: 0;
}
/* line 1054, ../sass/_nctl.scss */
.front #main #content .panels-flexible-row.video-pane .join-mailing-list form .form-item {
  margin: 0;
}
@media (min-width: 780px) {
  /* line 1043, ../sass/_nctl.scss */
  .front #main #content .panels-flexible-row.video-pane .join-mailing-list form {
    padding: 20px 0;
  }
  /* line 1059, ../sass/_nctl.scss */
  .front #main #content .panels-flexible-row.video-pane .join-mailing-list form div {
    display: inline-block;
  }
  /* line 1062, ../sass/_nctl.scss */
  .front #main #content .panels-flexible-row.video-pane .join-mailing-list form label, .front #main #content .panels-flexible-row.video-pane .join-mailing-list form .webform-component-markup {
    margin-right: 10px;
  }
}
@media (max-width: 779px) {
  /* line 1067, ../sass/_nctl.scss */
  .front #main #content .panels-flexible-row.video-pane .join-mailing-list form .form-actions {
    display: inline-block;
  }
  /* line 1069, ../sass/_nctl.scss */
  .front #main #content .panels-flexible-row.video-pane .join-mailing-list form .form-actions input[type=submit] {
    padding: 2px 10px;
    margin: 0;
  }
  /* line 1073, ../sass/_nctl.scss */
  .front #main #content .panels-flexible-row.video-pane .join-mailing-list form .webform-component-cc_email {
    display: inline-block;
    width: 60%;
  }
  /* line 1075, ../sass/_nctl.scss */
  .front #main #content .panels-flexible-row.video-pane .join-mailing-list form .webform-component-cc_email input[type=text] {
    width: 100%;
  }
}
/* line 1083, ../sass/_nctl.scss */
.front #main #content .panels-flexible-row.resources-pub-state {
  background-color: #09c6a9;
  color: #fff;
  padding: 20px 0;
}
/* line 1086, ../sass/_nctl.scss */
.front #main #content .panels-flexible-row.resources-pub-state p {
  margin: 0;
}
/* line 1087, ../sass/_nctl.scss */
.front #main #content .panels-flexible-row.resources-pub-state a {
  color: #fff;
}
/* line 1091, ../sass/_nctl.scss */
.front #main #content .panels-flexible-row.resources-pub-state .panels-flexible-region {
  text-align: center;
}
/* line 1093, ../sass/_nctl.scss */
.front #main #content .panels-flexible-row.resources-pub-state .views-exposed-form label {
  font-weight: normal;
}
/* line 1094, ../sass/_nctl.scss */
.front #main #content .panels-flexible-row.resources-pub-state .views-exposed-form .views-exposed-widget {
  float: none;
  padding: 0;
}
/* line 1097, ../sass/_nctl.scss */
.front #main #content .panels-flexible-row.resources-pub-state .views-exposed-form #edit-field-grades-served-tid-wrapper, .front #main #content .panels-flexible-row.resources-pub-state .views-exposed-form #edit-field-resource-type-tid-wrapper {
  display: none;
}
/* line 1102, ../sass/_nctl.scss */
.front #main #content .panels-flexible-row.latest {
  font-size: .8em;
  line-height: 1.75em;
}
/* line 1104, ../sass/_nctl.scss */
.front #main #content .panels-flexible-row.latest h2 {
  font-size: 1em;
  line-height: inherit;
  margin: 0;
}
/* line 1106, ../sass/_nctl.scss */
.front #main #content .panels-flexible-row.latest h2.pane-title {
  font-style: italic;
  font-weight: 600;
}
/* line 1108, ../sass/_nctl.scss */
.front #main #content .panels-flexible-row.latest p {
  margin: 0;
}
/* line 1109, ../sass/_nctl.scss */
.front #main #content .panels-flexible-row.latest .field-name-submitted-by {
  font-style: italic;
}
/* line 1113, ../sass/_nctl.scss */
.front #main #content .panels-flexible-row.latest .view-press-list .views-field-field-date {
  font-weight: 600;
}
/* line 1117, ../sass/_nctl.scss */
.front #main #content .panels-flexible-row.latest.header {
  padding: 20px 0;
}
/* line 1119, ../sass/_nctl.scss */
.front #main #content .panels-flexible-row.latest.header h2 {
  font-size: 1.25em;
  font-weight: 600;
  text-align: center;
  letter-spacing: 2px;
}
@media (max-width: 779px) {
  /* line 1126, ../sass/_nctl.scss */
  .front #main #content .panels-flexible-row .panels-flexible-region {
    float: none;
    width: 100%;
    box-sizing: border-box;
  }
  /* line 1130, ../sass/_nctl.scss */
  .front #main #content .panels-flexible-row.latest, .front #main #content .panels-flexible-row.resources-pub-state {
    padding: 0 20px;
  }
  /* line 1132, ../sass/_nctl.scss */
  .front #main #content .panels-flexible-row.latest .panels-flexible-region, .front #main #content .panels-flexible-row.resources-pub-state .panels-flexible-region {
    margin-bottom: 20px;
  }
  /* line 1136, ../sass/_nctl.scss */
  .front #main #content .panels-flexible-row.resources-pub-state {
    padding: 20px;
  }
  /* line 1139, ../sass/_nctl.scss */
  .front #main #content .panels-flexible-row.latest.list {
    padding-bottom: 120px;
  }
  /* line 1142, ../sass/_nctl.scss */
  .front #main #content .panels-flexible-row .pane-block.join-mailing-list {
    position: absolute;
    bottom: 0;
  }
}
/* line 1148, ../sass/_nctl.scss */
.front #main #content .home-video {
  position: relative;
  overflow: hidden;
}
/* line 1151, ../sass/_nctl.scss */
.front #main #content .home-video video#bgvid {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
}
/* line 1157, ../sass/_nctl.scss */
.front #main #content .home-video .overlay {
  max-width: 1200px;
  margin: 60px auto;
  color: #fff;
}
/* line 40, ../sass/_mixins.scss */
.front #main #content .home-video .overlay:after {
  content: "";
  display: block;
  clear: both;
}
/* line 1160, ../sass/_nctl.scss */
.front #main #content .home-video .overlay .inner {
  float: left;
  background-color: #2895d0;
  padding: 30px;
}
/* line 1162, ../sass/_nctl.scss */
.front #main #content .home-video .overlay .inner h2 {
  font-size: 2em;
  line-height: normal;
  margin: 0 0 20px 0;
  font-weight: normal;
}
/* line 1165, ../sass/_nctl.scss */
.front #main #content .home-video .overlay .inner h2 span {
  font-size: 24px;
  font-weight: 700;
  display: block;
}
/* line 1167, ../sass/_nctl.scss */
.front #main #content .home-video .overlay .inner a {
  color: #fff;
}
@media (max-width: 779px) {
  /* line 1148, ../sass/_nctl.scss */
  .front #main #content .home-video {
    background: url(../images/nctl_smiling_girl.jpg) no-repeat;
    background-size: contain;
    background-position-x: right;
    background-position-y: 140px;
    padding-bottom: 200px;
  }
  /* line 1175, ../sass/_nctl.scss */
  .front #main #content .home-video .overlay {
    float: none;
    margin: 0;
  }
  /* line 1177, ../sass/_nctl.scss */
  .front #main #content .home-video .overlay .inner {
    float: none;
    padding: 10px 30px;
  }
  /* line 1179, ../sass/_nctl.scss */
  .front #main #content .home-video .overlay .inner h2 {
    font-size: 1.2em;
    margin: 0 0 10px 0;
    text-align: center;
  }
  /* line 1182, ../sass/_nctl.scss */
  .front #main #content .home-video .overlay .inner h2 span {
    display: inline-block;
    font-size: .85em;
    margin-right: 5px;
  }
}
@media (min-width: 780px) {
  /* line 1148, ../sass/_nctl.scss */
  .front #main #content .home-video {
    height: 610px;
    background: url(../images/nctl_smiling_girl.jpg) no-repeat;
    background-size: cover;
    background-position-x: right;
  }
  /* line 1194, ../sass/_nctl.scss */
  .front #main #content .home-video .video {
    background-size: cover;
  }
}

/* line 1205, ../sass/_nctl.scss */
[class^="nctl-icon-"], [class*=" nctl-icon-"] {
  font-family: 'nctl_icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 1219, ../sass/_nctl.scss */
.nctl-icon-publications:before {
  content: "\e600";
}

/* line 1223, ../sass/_nctl.scss */
.nctl-icon-resources:before {
  content: "\e601";
}

/* line 1227, ../sass/_nctl.scss */
.nctl-icon-facebook:before {
  content: "\e602";
}

/* line 1231, ../sass/_nctl.scss */
.nctl-icon-google_plus:before {
  content: "\e603";
}

/* line 1235, ../sass/_nctl.scss */
.nctl-icon-twitter:before {
  content: "\e604";
}

/* line 1239, ../sass/_nctl.scss */
.nctl-icon-youtube:before {
  content: "\e605";
}

/* line 1245, ../sass/_nctl.scss */
#main #content .column-list {
  margin: 0;
  padding: 0;
  font-size: .875em;
  line-height: normal;
}
/* line 1250, ../sass/_nctl.scss */
#main #content .column-list li {
  margin-left: 20px;
}
@media (min-width: 780px) {
  /* line 1254, ../sass/_nctl.scss */
  #main #content .column-list.cols-2 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
}

/* line 1266, ../sass/_nctl.scss */
.nctl-slider img {
  width: 100%;
}
/* line 1269, ../sass/_nctl.scss */
.nctl-slider .slick-prev, .nctl-slider .slick-next {
  z-index: 2;
}
/* line 1271, ../sass/_nctl.scss */
.nctl-slider .slick-prev:before, .nctl-slider .slick-next:before {
  font-size: 30px;
}
/* line 1275, ../sass/_nctl.scss */
.nctl-slider .slick-prev {
  left: 20px;
}
/* line 1278, ../sass/_nctl.scss */
.nctl-slider .slick-next {
  right: 20px;
}

/* SMACSS theme rules */
/* @import "theme-A"; */
/* @import "theme-B"; */
