/**
 * @file
 * Styles are organized using the SMACSS technique. @see http://smacss.com/book/
 *
 * When you turn on CSS aggregation at admin/config/development/performance, all
 * of these @include files will be combined into a single file.
 */
/* Import Sass mixins, variables, Compass modules, etc. */
@import url(https://wfonts.weizmann.ac.il/css/Glyphicons+Halflings:400);
@import url(https://wfonts.weizmann.ac.il/css/Proxima+Nova:400,700);
/**
 * Mixin breakpoint(point)
 * Allows to define per-selector special rules for different (predefined) screen sizes
 *
 * @vars: $point = [desktop, tablet, mobileonly]
 *
 * @usage:
 *     .my-class {
 *        <common-rules>
 *        @include breakpoint(<pointname>) {
 *		      <rules-apply-only-to-selected-breakpoint>
 *		    }
 *		 }
 *
 * 
 */
/* 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. */
@import url(https://wfonts.weizmann.ac.il/css/Glyphicons+Halflings:400);
@import url(https://wfonts.weizmann.ac.il/css/Proxima+Nova:400,700);
@import url(https://wfonts.weizmann.ac.il/css/Glyphicons+Halflings:400);
@import url(https://wfonts.weizmann.ac.il/css/Proxima+Nova:400,700);
@import url(https://wfonts.weizmann.ac.il/css/Glyphicons+Halflings:400);
@import url(https://wfonts.weizmann.ac.il/css/Proxima+Nova:400,700);
@import url(https://wfonts.weizmann.ac.il/css/Proxima+Nova:400,700);
/* 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 49, ../sass/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

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

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

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

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

/* line 164, ../sass/_normalize.scss */
p:first-of-type {
  margin-top: 0;
}

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

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 177, ../sass/_normalize.scss */
h1 {
  font-size: 32px;
}
@media (max-width: 400px) {
  /* line 177, ../sass/_normalize.scss */
  h1 {
    font-size: 9vw;
  }
}

/* line 183, ../sass/_normalize.scss */
h2 {
  font-size: 28px;
}
@media (max-width: 400px) {
  /* line 183, ../sass/_normalize.scss */
  h2 {
    font-size: 7vw;
  }
}

/* line 189, ../sass/_normalize.scss */
h3, #pure-metrics ul .metric-value, .view-publications .view-content .year-title {
  font-size: 24px;
}
@media (max-width: 400px) {
  /* line 189, ../sass/_normalize.scss */
  h3, #pure-metrics ul .metric-value, .view-publications .view-content .year-title {
    font-size: 6vw;
  }
}

/* line 195, ../sass/_normalize.scss */
h4 {
  font-size: 20px;
}

/* line 198, ../sass/_normalize.scss */
h5 {
  font-size: 15px;
}

/* line 201, ../sass/_normalize.scss */
h6 {
  font-size: 11.25px;
}

/* line 205, ../sass/_normalize.scss */
h1, h2, h3, #pure-metrics ul .metric-value, .view-publications .view-content .year-title, h4, h5, h6 {
  line-height: 1.125em;
  margin-top: 1.25rem;
  margin-bottom: 0.25em;
  font-weight: normal;
}

/* line 212, ../sass/_normalize.scss */
p + h2,
p + h3,
#pure-metrics ul p + .metric-value,
.view-publications .view-content p + .year-title,
table + h2,
table + h3,
#pure-metrics ul table + .metric-value,
.view-publications .view-content table + .year-title,
ul + h2,
ul + h3,
#pure-metrics ul ul + .metric-value,
.view-publications .view-content ul + .year-title,
ol + h2,
ol + h3,
#pure-metrics ul ol + .metric-value,
.view-publications .view-content ol + .year-title {
  margin-top: 1.75rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * Lists
 */
/* line 301, ../sass/_normalize.scss */
dl,
menu,
ol,
ul {
  /* Address margins set differently in IE 6/7. */
  margin: 0 0 0.5em 0;
  padding: 0 0 0 1.1em;
  list-style-position: outside;
}
/* line 310, ../sass/_normalize.scss */
dl li,
menu li,
ol li,
ul li {
  line-height: 1.25em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

/* line 327, ../sass/_normalize.scss */
ol {
  padding: 0 0 0 1.5em;
}

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

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

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

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
/* line 356, ../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;
}
/* line 367, ../sass/_normalize.scss */
img.left {
  float: left;
  margin-right: 1em;
}
/* line 371, ../sass/_normalize.scss */
img.right {
  float: right;
  margin-left: 1em;
  margin-right: 0.5em;
}

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

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

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

/**
 * 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 410, ../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 423, ../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 439, ../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 450, ../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 464, ../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 476, ../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 487, ../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 499, ../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 508, ../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 514, ../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 524, ../sass/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* Drupal-style form labels. */
/* line 530, ../sass/_normalize.scss */
label {
  display: block;
  font-weight: normal;
  font-size: 15px;
}
/* line 535, ../sass/_normalize.scss */
label.option {
  padding-left: .25em;
}

/**
 * Tables
 */
/* line 543, ../sass/_normalize.scss */
table {
  /* Remove most spacing between table cells. */
  border-collapse: collapse;
  border-spacing: 0;
  /* Prevent cramped-looking tables */
  /* width: 100%; */
  margin: 1em 0 0.5em 0;
}

/* line 555, ../sass/_normalize.scss */
#content table tr:nth-of-type(2n) {
  background-color: #ffffff;
}
/* line 558, ../sass/_normalize.scss */
#content table tr:nth-of-type(2n+1) {
  background-color: #e3e3e3;
}
/* line 562, ../sass/_normalize.scss */
#content table td, #content table th {
  line-height: 1.25em;
  padding: .5em;
  vertical-align: top;
  text-align: left;
}
/* line 570, ../sass/_normalize.scss */
#content table thead tr {
  color: white;
  background-color: #727272 !important;
}
/* line 573, ../sass/_normalize.scss */
#content table thead tr th {
  font-weight: normal;
}
/* line 576, ../sass/_normalize.scss */
#content table thead tr a {
  color: white !important;
}

/* Layout rules */
/**
 * @file
 * Positioning for a responsive layout.
 *
 * Define CSS classes to create a fluid grid layout with optional sidebars
 * depending on whether blocks are placed in the left or right sidebars.
 *
 * This layout uses the Zen Grids plugin for Compass: http://zengrids.com
 */
/**
 * Center the page.
 *
 * For screen sizes larger than 1200px, prevent excessively long lines of text
 * by setting a max-width.
 */
/* line 33, ../sass/layouts/_responsive.scss */
#page,
.region-bottom {
  margin-left: auto;
  margin-right: auto;
  max-width: 990px;
  width: 100%;
}

/* Apply the shared properties of grid items in a single, efficient ruleset. */
/* line 43, ../sass/layouts/_responsive.scss */
#content,
.region-sidebar-first,
.region-sidebar-second,
#footer {
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
}
@media (max-width: 400px) {
  /* line 43, ../sass/layouts/_responsive.scss */
  #content,
  .region-sidebar-first,
  .region-sidebar-second,
  #footer {
    padding-left: 15px;
    padding-right: 15px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
  }
}

/* line 57, ../sass/layouts/_responsive.scss */
.region-footer,
#footer {
  max-width: 990px;
  width: 100%;
  margin: 0 auto;
}

/* 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;
}

@media (max-width: 625px) {
  /* line 76, ../sass/layouts/_responsive.scss */
  .sitemenu-horizontal .region-breadcrumbs-area {
    padding: 0 15px 10px;
  }
}
/**
 * Use 3 grid columns for smaller screens.
 */
@media (min-width: 626px) and (max-width: 869px) {
  /* line 90, ../sass/layouts/_responsive.scss */
  #content,
  .region-sidebar-first,
  .region-sidebar-second,
  #footer {
    padding-left: 15px;
    padding-right: 15px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
  }

  /**
   * The layout when there is only one sidebar, the left one.
   */
  /* line 100, ../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 102, ../sass/layouts/_responsive.scss */
  .sidebar-first #content {
    float: left;
    width: 75%;
    margin-left: 25%;
    margin-right: -100%;
  }
  /* line 107, ../sass/layouts/_responsive.scss */
  .sidebar-first .region-sidebar-first {
    float: left;
    width: 25%;
    margin-left: 0%;
    margin-right: -25%;
    margin-top: 2.5em;
  }
  /* line 112, ../sass/layouts/_responsive.scss */
  .sidebar-first .region-breadcrumbs-area {
    height: 2.5em;
  }
  /* line 114, ../sass/layouts/_responsive.scss */
  .sidebar-first .region-breadcrumbs-area .block {
    margin: 0 15px;
    display: inline-block;
  }

  /**
   * The layout when there is only one sidebar, the right one.
   */
  /* line 124, ../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 126, ../sass/layouts/_responsive.scss */
  .sidebar-second #content {
    float: left;
    width: 75%;
    margin-left: 0%;
    margin-right: -75%;
  }
  /* line 129, ../sass/layouts/_responsive.scss */
  .sidebar-second #main {
    margin-top: 40px;
  }
  /* line 133, ../sass/layouts/_responsive.scss */
  .sidebar-second .region-sidebar-second {
    float: right;
    width: 25%;
    margin-right: 0%;
    margin-left: -25%;
  }

  /**
   * The layout when there are two sidebars.
   */
  /* line 141, ../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 143, ../sass/layouts/_responsive.scss */
  .two-sidebars #content {
    float: left;
    width: 75%;
    margin-left: 25%;
    margin-right: -100%;
  }
  /* line 149, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 25%;
    margin-left: 0%;
    margin-right: -25%;
  }
  /* line 154, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 75%;
    margin-left: 25%;
    margin-right: -100%;
    clear: left;
  }

  /* line 161, ../sass/layouts/_responsive.scss */
  .sitemenu-horizontal #main {
    padding: 0 15px;
    margin-top: 40px;
  }
  /* line 166, ../sass/layouts/_responsive.scss */
  .sitemenu-horizontal #content, .sitemenu-horizontal #footer {
    padding-right: 0;
    padding-left: 0;
  }
  /* line 170, ../sass/layouts/_responsive.scss */
  .sitemenu-horizontal.no-sidebars .region-breadcrumbs-area {
    height: 2.5em;
  }
  /* line 175, ../sass/layouts/_responsive.scss */
  .sitemenu-horizontal.sidebar-first {
    /* Span 4 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
  }
  /* line 178, ../sass/layouts/_responsive.scss */
  .sitemenu-horizontal.sidebar-first .region-breadcrumbs-area {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    height: 2.5em;
  }
  /* line 181, ../sass/layouts/_responsive.scss */
  .sitemenu-horizontal.sidebar-first .region-breadcrumbs-area .block {
    margin-left: 0;
    display: inline-block;
  }
  /* line 186, ../sass/layouts/_responsive.scss */
  .sitemenu-horizontal.sidebar-first #content {
    float: left;
    width: 74.51613%;
    margin-left: 25.48387%;
    margin-right: -100%;
    padding: 0;
    margin-top: 2.5em;
  }
  /* line 193, ../sass/layouts/_responsive.scss */
  .sitemenu-horizontal.sidebar-first .region-sidebar-first {
    float: left;
    width: 22.25806%;
    margin-left: 0%;
    margin-right: -22.25806%;
    margin-top: 2.5em;
    padding: 0;
  }
  /* line 200, ../sass/layouts/_responsive.scss */
  .sitemenu-horizontal.sidebar-second {
    /* Span 4 columns, starting in 1st column from left. */
    /* Span 1 column, starting in 4th column from left. */
  }
  /* line 203, ../sass/layouts/_responsive.scss */
  .sitemenu-horizontal.sidebar-second #content {
    float: left;
    width: 74.51613%;
    margin-left: 0%;
    margin-right: -74.51613%;
    padding: 0;
  }
  /* line 208, ../sass/layouts/_responsive.scss */
  .sitemenu-horizontal.sidebar-second #main {
    padding: 0 15px;
    margin-top: 40px;
  }
  /* line 214, ../sass/layouts/_responsive.scss */
  .sitemenu-horizontal.sidebar-second .region-sidebar-second {
    float: left;
    width: 22.25806%;
    margin-left: 77.74194%;
    margin-right: -100%;
    padding: 0;
  }
}
/**
 * Use 5 grid columns for larger screens.
 */
@media (min-width: 870px) {
  /* line 236, ../sass/layouts/_responsive.scss */
  .no-sidebars .region-breadcrumbs-area {
    height: 2.5em;
  }
  /* line 239, ../sass/layouts/_responsive.scss */
  .no-sidebars #main {
    padding: 0 25px;
  }

  /**
   * The layout when there is only one sidebar, the left one.
   */
  /* line 246, ../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 248, ../sass/layouts/_responsive.scss */
  .sidebar-first .region-breadcrumbs-area {
    float: left;
    width: 80%;
    margin-left: 20%;
    margin-right: -100%;
    height: 2.5em;
  }
  /* line 251, ../sass/layouts/_responsive.scss */
  .sidebar-first .region-breadcrumbs-area .block {
    margin-left: 25px;
    display: inline-block;
  }
  /* line 256, ../sass/layouts/_responsive.scss */
  .sidebar-first #content {
    float: left;
    width: 80%;
    margin-left: 20%;
    margin-right: -100%;
    padding-left: 25px;
    margin-top: 2.5em;
  }
  /* line 261, ../sass/layouts/_responsive.scss */
  .sidebar-first.front #content {
    margin-top: 0;
  }
  /* line 263, ../sass/layouts/_responsive.scss */
  .sidebar-first.front #content h2:first-of-type {
    margin-top: 0;
  }
  /* line 267, ../sass/layouts/_responsive.scss */
  .sidebar-first #main {
    margin-top: 30px;
    padding: 0 25px;
  }
  /* line 272, ../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 281, ../sass/layouts/_responsive.scss */
  .sidebar-second {
    /* Span 4 columns, starting in 1st column from left. */
    /* Span 1 column, starting in 4th column from left. */
  }
  /* line 284, ../sass/layouts/_responsive.scss */
  .sidebar-second #content {
    float: left;
    width: 74.51613%;
    margin-left: 0%;
    margin-right: -74.51613%;
    padding: 0;
  }
  /* line 289, ../sass/layouts/_responsive.scss */
  .sidebar-second #main {
    padding: 0 30px;
    margin-top: 40px;
  }
  /* line 295, ../sass/layouts/_responsive.scss */
  .sidebar-second .region-sidebar-second {
    float: left;
    width: 22.25806%;
    margin-left: 77.74194%;
    margin-right: -100%;
  }

  /* line 302, ../sass/layouts/_responsive.scss */
  .sitemenu-horizontal #main {
    padding: 0 30px;
    margin-top: 40px;
  }
  /* line 307, ../sass/layouts/_responsive.scss */
  .sitemenu-horizontal.sidebar-first {
    /* Span 4 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
  }
  /* line 310, ../sass/layouts/_responsive.scss */
  .sitemenu-horizontal.sidebar-first .region-breadcrumbs-area {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    height: 2.5em;
  }
  /* line 313, ../sass/layouts/_responsive.scss */
  .sitemenu-horizontal.sidebar-first .region-breadcrumbs-area .block {
    margin-left: 0;
    display: inline-block;
  }
  /* line 318, ../sass/layouts/_responsive.scss */
  .sitemenu-horizontal.sidebar-first #content {
    float: left;
    width: 74.51613%;
    margin-left: 25.48387%;
    margin-right: -100%;
    padding: 0;
    margin-top: 2.5em;
  }
  /* line 325, ../sass/layouts/_responsive.scss */
  .sitemenu-horizontal.sidebar-first .region-sidebar-first {
    float: left;
    width: 22.25806%;
    margin-left: 0%;
    margin-right: -22.25806%;
    margin-top: 2.5em;
  }
  /* line 331, ../sass/layouts/_responsive.scss */
  .sitemenu-horizontal.sidebar-second {
    /* Span 4 columns, starting in 1st column from left. */
    /* Span 1 column, starting in 4th column from left. */
  }
  /* line 334, ../sass/layouts/_responsive.scss */
  .sitemenu-horizontal.sidebar-second #content {
    float: left;
    width: 74.51613%;
    margin-left: 0%;
    margin-right: -74.51613%;
    padding: 0;
  }
  /* line 339, ../sass/layouts/_responsive.scss */
  .sitemenu-horizontal.sidebar-second #main {
    padding: 0 30px;
    margin-top: 40px;
  }
  /* line 345, ../sass/layouts/_responsive.scss */
  .sitemenu-horizontal.sidebar-second .region-sidebar-second {
    float: left;
    width: 22.25806%;
    margin-left: 77.74194%;
    margin-right: -100%;
  }

  /**
   * The layout when there are two sidebars.
   */
  /* line 355, ../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 361, ../sass/layouts/_responsive.scss */
  .two-sidebars #content {
    float: left;
    width: 63%;
    margin-left: 17%;
    margin-right: -80%;
    padding: 0 25px 0 15px;
  }
  /* line 373, ../sass/layouts/_responsive.scss */
  .two-sidebars #main {
    padding: 0 25px;
    margin-top: 30px;
  }
  /* line 379, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 17%;
    margin-left: 0%;
    margin-right: -17%;
  }
  /* line 388, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-breadcrumbs-area {
    margin-left: 17%;
    padding-left: 15px;
    height: 2.5em;
  }
  /* line 392, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-breadcrumbs-area .block {
    display: inline-block;
  }
  /* line 398, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 20%;
    margin-left: 80%;
    margin-right: -100%;
  }
}
/**
 * Use 5 grid columns for larger screens.
 */
/* line 408, ../sass/layouts/_responsive.scss */
.lt-ie9 {
  /**
   * The layout when there is only one sidebar, the left one.
   */
  /**
   * The layout when there is only one sidebar, the right one.
   */
  /**
   * The layout when there are two sidebars.
   */
}
/* line 413, ../sass/layouts/_responsive.scss */
.lt-ie9 .no-sidebars #main {
  padding: 0 31.25px;
}
/* line 420, ../sass/layouts/_responsive.scss */
.lt-ie9 .sidebar-first {
  /* Span 4 columns, starting in 2nd column from left. */
  /* Span 1 column, starting in 1st column from left. */
}
/* line 422, ../sass/layouts/_responsive.scss */
.lt-ie9 .sidebar-first #content {
  float: left;
  width: 80%;
  margin-left: 20%;
  margin-right: -100%;
  padding-left: 25px;
}
/* line 427, ../sass/layouts/_responsive.scss */
.lt-ie9 .sidebar-first #main {
  padding: 0 31.25px;
}
/* line 433, ../sass/layouts/_responsive.scss */
.lt-ie9 .sidebar-first .region-sidebar-first {
  float: left;
  width: 20%;
  margin-left: 0%;
  margin-right: -20%;
}
/* line 441, ../sass/layouts/_responsive.scss */
.lt-ie9 .sidebar-second {
  /* Span 4 columns, starting in 1st column from left. */
  /* Span 1 column, starting in 4th column from left. */
}
/* line 443, ../sass/layouts/_responsive.scss */
.lt-ie9 .sidebar-second #content {
  float: left;
  width: 80%;
  margin-left: 0%;
  margin-right: -80%;
  padding-right: 25px;
}
/* line 448, ../sass/layouts/_responsive.scss */
.lt-ie9 .sidebar-second #main {
  padding: 0 31.25px;
}
/* line 453, ../sass/layouts/_responsive.scss */
.lt-ie9 .sidebar-second .region-sidebar-second {
  float: left;
  width: 20%;
  margin-left: 80%;
  margin-right: -100%;
}
/* line 461, ../sass/layouts/_responsive.scss */
.lt-ie9 .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 467, ../sass/layouts/_responsive.scss */
.lt-ie9 .two-sidebars #content {
  float: left;
  width: 60%;
  margin-left: 20%;
  margin-right: -80%;
  padding: 0 25px;
}
/* line 472, ../sass/layouts/_responsive.scss */
.lt-ie9 .two-sidebars #main {
  padding: 0 31.25px;
  margin-top: 30px;
}
/* line 478, ../sass/layouts/_responsive.scss */
.lt-ie9 .two-sidebars .region-sidebar-first {
  float: left;
  width: 20%;
  margin-left: 0%;
  margin-right: -20%;
}
/* line 483, ../sass/layouts/_responsive.scss */
.lt-ie9 .two-sidebars .region-sidebar-second {
  float: left;
  width: 20%;
  margin-left: 80%;
  margin-right: -100%;
}

@media (max-width: 625px) {
  /* line 491, ../sass/layouts/_responsive.scss */
  .sitemenu-horizontal #block-sidebar-submenu {
    display: none;
  }
}
/* Component (SMACSS module) rules */
/**
 * @file
 * SMACSS Modules
 *
 * Adds modular sets of styles.
 *
 * Additional useful selectors can be found in Zen's online documentation.
 * https://drupal.org/node/1707736
 */
/**
 * Wireframes.
 */
/* line 15, ../sass/components/_misc.scss */
.with-wireframes #header,
.with-wireframes #main,
.with-wireframes #content,
.with-wireframes #navigation,
.with-wireframes .region-sidebar-first,
.with-wireframes .region-sidebar-second,
.with-wireframes #footer,
.with-wireframes .region-bottom {
  outline: 1px solid #ccc;
}

/**
 * Accessibility features.
 */
/* element-invisible as defined by http://snook.ca/archives/html_and_css/hiding-content-for-accessibility */
/* line 32, ../sass/components/_misc.scss */
.element-invisible, .title_background,
.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 38, ../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 55, ../sass/components/_misc.scss */
#skip-links,
#skip-link {
  margin: 0;
  padding: 0;
}
/* line 60, ../sass/components/_misc.scss */
#skip-links li,
#skip-link li {
  list-style-type: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}
/* line 66, ../sass/components/_misc.scss */
#skip-links a,
#skip-links a:visited,
#skip-link a,
#skip-link a:visited {
  display: block;
  width: 100%;
  padding: 2px 0 3px 0;
  text-align: center;
  background-color: #666;
  color: #fff;
}

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

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

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

/* The name of the website. */
/* line 99, ../sass/components/_misc.scss */
.header__site-name {
  margin: 0;
  font-size: 2em;
  line-height: 1.125em;
}
@media (max-width: 625px) {
  /* line 99, ../sass/components/_misc.scss */
  .header__site-name {
    font-size: 2.6em;
    margin-bottom: .25em;
  }
}

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

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

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

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

/**
 * Navigation bar.
 */
/* line 143, ../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 147, ../sass/components/_misc.scss */
#navigation .block {
  margin-bottom: 0;
}
/* line 157, ../sass/components/_misc.scss */
#navigation .links,
#navigation .menu {
  margin: 0;
  padding: 0;
  text-align: left;
  /* LTR */
}
/* line 163, ../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 0 0 1em;
  /* LTR */
  list-style-type: none;
  list-style-image: none;
}
/* line 169, ../sass/components/_misc.scss */
#navigation .links li li,
#navigation .menu li li {
  padding: 0;
  margin: 0;
}

/**
 * Breadcrumb navigation.
 */
/* line 181, ../sass/components/_misc.scss */
.breadcrumb ol {
  margin: 0;
  padding: 0;
}
/* line 185, ../sass/components/_misc.scss */
.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
/* line 191, ../sass/components/_misc.scss */
.breadcrumb li,
.breadcrumb li a {
  font-size: 0.93333rem;
  color: #767676;
  text-decoration: none;
}
/* line 198, ../sass/components/_misc.scss */
.breadcrumb li a {
  text-decoration: underline;
}
/* line 200, ../sass/components/_misc.scss */
.breadcrumb li a:hover {
  color: #1e799f;
}

/* for nagishut -- contrast settings */
/* line 209, ../sass/components/_misc.scss */
.nagish-contrast .breadcrumb li,
.nagish-contrast .breadcrumb li a {
  color: #898989;
}

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

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

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

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

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

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

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

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

/**
 * Tabs.
 */
/* Basic positioning styles shared by primary and secondary tabs. */
/* line 289, ../sass/components/_misc.scss */
#page {
  position: relative;
}

/* line 292, ../sass/components/_misc.scss */
.tabs-primary, .tabs-secondary {
  overflow: hidden;
  *zoom: 1;
  list-style: none;
  margin: 1.5em 0;
  padding: 0 2px;
  white-space: nowrap;
  position: absolute;
  top: 100px;
  right: 0;
  width: 100px;
  background: #ffffff;
  box-shadow: -5px 0 50px -15px #e3e3e3;
  padding: .5em;
  opacity: .8;
}
/* line 306, ../sass/components/_misc.scss */
.tabs-primary:hover, .tabs-secondary:hover {
  opacity: 1;
}

/* line 310, ../sass/components/_misc.scss */
.tabs-primary__tab, .tabs-primary__tab.is-active, .tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  margin: 0 3px;
}

/* line 314, ../sass/components/_misc.scss */
a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active, a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  border: 1px solid #e9e9e9;
  border-right: 0;
  border-bottom: 0;
  display: block;
  line-height: 1.5em;
  text-decoration: none;
}

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

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

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

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

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

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

/**
 * Menus.
 */
/* line 406, ../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 410, ../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 414, ../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 420, ../sass/components/_misc.scss */
.menu a.active {
  color: #000;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/** Search bar **/
/* line 706, ../sass/components/_misc.scss */
.search-form input {
  font-size: 0.7rem;
}
/* line 708, ../sass/components/_misc.scss */
.search-form input.form-text {
  width: 135px;
}

/** site map  **/
/* line 716, ../sass/components/_misc.scss */
#site-map h2 {
  color: #1e799f;
  font-size: 1.6em;
  line-height: 1.875em;
  margin-top: 0.9375em;
  margin-bottom: 0em;
}
/* line 723, ../sass/components/_misc.scss */
#site-map .site-map-menu li {
  padding: .5em 0 0;
}
/* line 726, ../sass/components/_misc.scss */
#site-map .site-map-menu li .site-map-menu li {
  padding: 0;
}

/* fix for modules table */
/* line 738, ../sass/components/_misc.scss */
html.js #module-filter-modules table {
  width: 100%;
}
/* line 740, ../sass/components/_misc.scss */
html.js #module-filter-modules table tr {
  position: relative;
  display: block;
}
/* line 743, ../sass/components/_misc.scss */
html.js #module-filter-modules table tr.js-hide {
  display: none;
}
/* line 747, ../sass/components/_misc.scss */
html.js #module-filter-modules table td.checkbox {
  position: absolute;
  top: 0;
  left: 0;
}
/* line 752, ../sass/components/_misc.scss */
html.js #module-filter-modules table td.name {
  padding-top: 35px;
  width: 150px;
  display: inline-block;
}
/* line 757, ../sass/components/_misc.scss */
html.js #module-filter-modules table td.description {
  display: inline-block;
  width: 250px;
}
/* line 762, ../sass/components/_misc.scss */
html.js #module-filter-modules table td.links {
  position: absolute;
  top: 0;
  left: 67px;
}
/* line 766, ../sass/components/_misc.scss */
html.js #module-filter-modules table td.links .ctools-dropbutton {
  background-color: white;
}
/* line 768, ../sass/components/_misc.scss */
html.js #module-filter-modules table td.links .ctools-dropbutton li {
  margin: 0;
}

/* line 779, ../sass/components/_misc.scss */
.mobile-only {
  display: none !important;
  visibility: hidden;
}
@media (max-width: 625px) {
  /* line 779, ../sass/components/_misc.scss */
  .mobile-only {
    display: block !important;
    visibility: visible;
  }
}

/**
 * @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: 15px;
  }
  /* 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;
  }
}
/* line 1, ../sass/_header.scss */
#header {
  height: 285px;
  background: #1e799f;
  /* Old browsers */
  background: -moz-linear-gradient(top, #1e799f 0%, #ffffff 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #1e799f), color-stop(100%, #ffffff));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #1e799f 0%, #ffffff 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #1e799f 0%, #ffffff 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #1e799f 0%, #ffffff 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #1e799f 0%, #ffffff 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff', EndColorStr='#1e799f', GradientType=0);
  /* IE6-8 */
}
@media (min-width: 401px) and (max-width: 625px) {
  /* line 1, ../sass/_header.scss */
  #header {
    height: auto;
  }
}
@media (max-width: 400px) {
  /* line 1, ../sass/_header.scss */
  #header {
    height: auto;
  }
}

/* line 26, ../sass/_header.scss */
.header-image--header_chem #header {
  background-image: url(../images/headers/header_chem.jpg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}
@media (min-width: 401px) and (max-width: 625px) {
  /* line 26, ../sass/_header.scss */
  .header-image--header_chem #header {
    background: none;
  }
}
@media (max-width: 400px) {
  /* line 26, ../sass/_header.scss */
  .header-image--header_chem #header {
    background: none;
  }
}

/* line 26, ../sass/_header.scss */
.header-image--header_math #header {
  background-image: url(../images/headers/header_math.jpg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}
@media (min-width: 401px) and (max-width: 625px) {
  /* line 26, ../sass/_header.scss */
  .header-image--header_math #header {
    background: none;
  }
}
@media (max-width: 400px) {
  /* line 26, ../sass/_header.scss */
  .header-image--header_math #header {
    background: none;
  }
}

/* line 26, ../sass/_header.scss */
.header-image--header_phys #header {
  background-image: url(../images/headers/header_phys.jpg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}
@media (min-width: 401px) and (max-width: 625px) {
  /* line 26, ../sass/_header.scss */
  .header-image--header_phys #header {
    background: none;
  }
}
@media (max-width: 400px) {
  /* line 26, ../sass/_header.scss */
  .header-image--header_phys #header {
    background: none;
  }
}

/* line 26, ../sass/_header.scss */
.header-image--header_pict #header {
  background-image: url(../images/headers/header_pict.jpg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}
@media (min-width: 401px) and (max-width: 625px) {
  /* line 26, ../sass/_header.scss */
  .header-image--header_pict #header {
    background: none;
  }
}
@media (max-width: 400px) {
  /* line 26, ../sass/_header.scss */
  .header-image--header_pict #header {
    background: none;
  }
}

/* line 44, ../sass/_header.scss */
.header-image--custom #header {
  background-image: none;
  width: 100%;
}
/* line 50, ../sass/_header.scss */
.header-image--custom #header img.header__image {
  max-width: 990px;
  height: 285px;
  display: block;
}
@media (min-width: 626px) and (max-width: 869px) {
  /* line 50, ../sass/_header.scss */
  .header-image--custom #header img.header__image {
    height: auto;
    max-width: 870px;
  }
}
@media (max-width: 400px) {
  /* line 50, ../sass/_header.scss */
  .header-image--custom #header img.header__image {
    display: none;
  }
}
@media (min-width: 401px) and (max-width: 625px) {
  /* line 50, ../sass/_header.scss */
  .header-image--custom #header img.header__image {
    display: none;
  }
}

/* line 69, ../sass/_header.scss */
#header {
  position: relative;
}

/* line 73, ../sass/_header.scss */
.header-1 {
  /** Header variation #1 **/
}
@media (max-width: 625px) {
  /* line 75, ../sass/_header.scss */
  .header-1 #header {
    margin-bottom: 0 !important;
  }
}
/* line 85, ../sass/_header.scss */
.header-1 .wis-logo-container a span {
  font-size: 14px;
}
/* line 92, ../sass/_header.scss */
.header-1.header-image--custom #header {
  background-image: none;
  background-color: #ffffff;
  width: 100%;
  height: auto;
  overflow: hidden;
}
/* line 102, ../sass/_header.scss */
.header-1 .title-container {
  font-size: 1.25em;
  width: 25%;
  padding: 1em;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 80px;
  bottom: -15px;
  background: #c1c1c1;
  /* Old browsers */
  background: -moz-linear-gradient(top, #c1c1c1 0%, #ffffff 50%, #c1c1c1 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #c1c1c1), color-stop(50%, #ffffff), color-stop(100%, #c1c1c1));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #c1c1c1 0%, #ffffff 50%, #c1c1c1 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #c1c1c1 0%, #ffffff 50%, #c1c1c1 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #c1c1c1 0%, #ffffff 50%, #c1c1c1 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #c1c1c1 0%, #ffffff 50%, #c1c1c1 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff', EndColorStr='#c1c1c1', GradientType=0);
  /* IE6-8 */
}
@media (max-width: 625px) {
  /* line 102, ../sass/_header.scss */
  .header-1 .title-container {
    position: static;
  }
}
/* line 117, ../sass/_header.scss */
.lt-ie9 .header-1 .title-container {
  height: 250px;
}
@media (min-width: 626px) and (max-width: 869px) {
  /* line 102, ../sass/_header.scss */
  .header-1 .title-container {
    width: 33%;
    max-width: 250px;
  }
}
@media (max-width: 625px) {
  /* line 126, ../sass/_header.scss */
  .header-1 .title-container .wis-logo-container {
    display: none;
  }
}
/* line 130, ../sass/_header.scss */
.header-1 .title-container .wis-logo-container a {
  color: #4D4D4D;
  font-size: 12.75px;
  text-decoration: none;
  display: block;
}
@media (max-width: 625px) {
  /* line 130, ../sass/_header.scss */
  .header-1 .title-container .wis-logo-container a {
    line-height: 10px;
  }
}
/* line 141, ../sass/_header.scss */
.header-1 .title-container #name-and-slogan {
  position: absolute;
  bottom: 1.5em;
  width: 250px;
}
@media (min-width: 626px) and (max-width: 869px) {
  /* line 141, ../sass/_header.scss */
  .header-1 .title-container #name-and-slogan {
    width: 90%;
    max-width: 260px;
  }
}
@media (max-width: 625px) {
  /* line 141, ../sass/_header.scss */
  .header-1 .title-container #name-and-slogan {
    position: static;
    margin: .5em 0;
    width: 90%;
    font-size: 13.5px;
  }
}
/* line 156, ../sass/_header.scss */
.header-1 .title-container #site-name {
  color: #002164;
  font-weight: normal;
}
/* line 159, ../sass/_header.scss */
.header-1 .title-container #site-name a {
  color: #002164;
}
/* line 161, ../sass/_header.scss */
.header-1 .title-container #site-name a:hover {
  text-decoration: none;
}
/* line 164, ../sass/_header.scss */
.header-1 .title-container #site-name a h1 {
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin-top: inherit;
  margin-bottom: inherit;
  font-size: inherit;
  display: inline;
}
@media (min-width: 401px) and (max-width: 625px) {
  /* line 159, ../sass/_header.scss */
  .header-1 .title-container #site-name a {
    line-height: 1em;
  }
}
@media (max-width: 400px) {
  /* line 159, ../sass/_header.scss */
  .header-1 .title-container #site-name a {
    line-height: 1em;
  }
}
/* line 181, ../sass/_header.scss */
.header-1 .title-container #site-slogan {
  color: #002164;
}
@media (max-width: 625px) {
  /* line 181, ../sass/_header.scss */
  .header-1 .title-container #site-slogan {
    font-size: 1.5em;
    padding-bottom: .25em;
  }
}

/* line 194, ../sass/_header.scss */
.header-2 {
  /** Header variation #2 **/
}
/* line 198, ../sass/_header.scss */
.header-2.header-image--custom #header {
  background-image: none;
  background-color: #002164;
  width: 100%;
}
/* line 205, ../sass/_header.scss */
.header-2 .wis-logo-container {
  position: absolute;
  z-index: 2;
  top: 25px;
  left: 25px;
  width: auto;
}
@media (max-width: 400px) {
  /* line 205, ../sass/_header.scss */
  .header-2 .wis-logo-container {
    max-width: 33.3%;
    top: .25em;
  }
}
@media (min-width: 401px) and (max-width: 625px) {
  /* line 205, ../sass/_header.scss */
  .header-2 .wis-logo-container {
    max-width: 33.3%;
    top: .25em;
  }
}
@media (min-width: 626px) and (max-width: 869px) {
  /* line 205, ../sass/_header.scss */
  .header-2 .wis-logo-container {
    max-width: 50%;
    top: .25em;
  }
}
/* line 224, ../sass/_header.scss */
.header-2 .wis-logo-container a {
  color: #ffffff;
  text-decoration: none;
  font-size: 12.75px;
  display: block;
  width: 100%;
}
@media (max-width: 625px) {
  /* line 224, ../sass/_header.scss */
  .header-2 .wis-logo-container a {
    font-size: 7.5px;
    line-height: 10px;
  }
}
/* line 239, ../sass/_header.scss */
.header-2 .title-container {
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  padding: 10px 25px;
  z-index: 2;
  bottom: 2em;
  left: 0;
}
@media (min-width: 626px) and (max-width: 869px) {
  /* line 239, ../sass/_header.scss */
  .header-2 .title-container {
    width: 50%;
  }
}
/* line 253, ../sass/_header.scss */
.header-2 .title-container #site-name {
  color: #002164;
  font-weight: normal;
  font-size: 35px;
}
/* line 257, ../sass/_header.scss */
.header-2 .title-container #site-name a {
  color: #002164;
}
/* line 259, ../sass/_header.scss */
.header-2 .title-container #site-name a:hover {
  text-decoration: none;
}
/* line 262, ../sass/_header.scss */
.header-2 .title-container #site-name a h1 {
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin-top: inherit;
  margin-bottom: inherit;
  font-size: inherit;
  display: inline;
}
/* line 273, ../sass/_header.scss */
.header-2 .title-container #site-slogan {
  color: #002164;
  font-size: 21px;
  line-height: 1.3em;
}

/* line 283, ../sass/_header.scss */
.header-3 {
  /** Header variation #3 **/
}
/* line 286, ../sass/_header.scss */
.header-3 .wis-logo-container {
  position: absolute;
  z-index: 2;
  top: 2em;
  left: 2em;
  width: auto;
}
@media (max-width: 625px) {
  /* line 286, ../sass/_header.scss */
  .header-3 .wis-logo-container {
    position: static;
    padding: 1em;
    width: 100%;
    max-width: 100%;
    font-size: 13.5px;
    color: #ffffff;
    background-color: #4D4D4D;
    fill: #ffffff;
  }
}
/* line 303, ../sass/_header.scss */
.header-3 .wis-logo-container #WIS1 path {
  fill: #ffffff;
}
/* line 306, ../sass/_header.scss */
.header-3 .wis-logo-container a {
  color: #ffffff;
  text-decoration: none;
  font-size: 12.75px;
  display: block;
  width: 100%;
}

/* line 319, ../sass/_header.scss */
.header-4 .mobile-header-banner {
  padding-top: 7.5px;
}
/* line 322, ../sass/_header.scss */
.header-4 .wis-logo-container {
  position: absolute;
  z-index: 2;
  top: 25px;
  left: 25px;
  width: auto;
}
@media (max-width: 400px) {
  /* line 322, ../sass/_header.scss */
  .header-4 .wis-logo-container {
    max-width: 65%;
  }
}
@media (min-width: 401px) and (max-width: 625px) {
  /* line 322, ../sass/_header.scss */
  .header-4 .wis-logo-container {
    max-width: 50%;
  }
}
@media (max-width: 625px) {
  /* line 322, ../sass/_header.scss */
  .header-4 .wis-logo-container {
    left: 15px;
    top: 20px;
  }
}
@media (min-width: 626px) and (max-width: 869px) {
  /* line 322, ../sass/_header.scss */
  .header-4 .wis-logo-container {
    max-width: 50%;
  }
}
/* line 345, ../sass/_header.scss */
.header-4 .wis-logo-container a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  display: block;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 625px) {
  /* line 345, ../sass/_header.scss */
  .header-4 .wis-logo-container a {
    line-height: 1em;
  }
}
/* line 360, ../sass/_header.scss */
.header-4 .title-container {
  position: absolute;
  padding: 10px 25px;
  z-index: 2;
  bottom: 2em;
  left: 0;
}
@media (min-width: 626px) and (max-width: 869px) {
  /* line 360, ../sass/_header.scss */
  .header-4 .title-container {
    min-width: 50%;
    bottom: 3em;
  }
}
@media (max-width: 625px) {
  /* line 360, ../sass/_header.scss */
  .header-4 .title-container {
    padding-left: 15px;
  }
}
/* line 376, ../sass/_header.scss */
.header-4 .title-container #site-name {
  color: #ffffff;
  font-weight: normal;
}
@media (max-width: 625px) {
  /* line 376, ../sass/_header.scss */
  .header-4 .title-container #site-name {
    margin-bottom: 0;
  }
}
/* line 382, ../sass/_header.scss */
.header-4 .title-container #site-name a {
  color: #ffffff;
  font-size: 40px;
  letter-spacing: .3px;
}
@media (max-width: 625px) {
  /* line 382, ../sass/_header.scss */
  .header-4 .title-container #site-name a {
    font-size: 8vw;
    line-height: 1em;
  }
}
/* line 390, ../sass/_header.scss */
.header-4 .title-container #site-name a:hover {
  text-decoration: none;
}
/* line 393, ../sass/_header.scss */
.header-4 .title-container #site-name a h1 {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  margin-top: inherit;
  margin-bottom: inherit;
  display: inline;
}
/* line 404, ../sass/_header.scss */
.header-4 .title-container #site-slogan {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.3em;
}
@media (max-width: 625px) {
  /* line 404, ../sass/_header.scss */
  .header-4 .title-container #site-slogan {
    font-size: 5vw;
  }
}

/* line 418, ../sass/_header.scss */
#header .mobile-header-banner {
  display: none;
}
@media (max-width: 625px) {
  /* line 422, ../sass/_header.scss */
  #header .title-container {
    display: block;
    clear: both;
    width: 100%;
    box-sizing: border-box;
    padding-bottom: .5em;
  }
  /* line 430, ../sass/_header.scss */
  #header .title-container a {
    display: block;
    line-height: 1.3em;
  }
  /* line 434, ../sass/_header.scss */
  #header .title-container .header__name-and-slogan {
    float: none;
    margin-bottom: 0;
  }
  /* line 439, ../sass/_header.scss */
  #header .mobile-header-banner {
    position: static !important;
    display: block;
    clear: both;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 1em;
  }
  /* line 447, ../sass/_header.scss */
  #header .mobile-header-banner img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
  }
}

/* line 455, ../sass/_header.scss */
.navbar-header {
  display: none;
}
@media (max-width: 625px) {
  /* line 455, ../sass/_header.scss */
  .navbar-header {
    background-color: #999999;
    color: #ffffff;
    display: block;
    font-size: 15px;
    line-height: 37.5px;
    padding: 3.75px;
    text-align: right;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60000;
  }
  /* line 471, ../sass/_header.scss */
  .navbar-header .menu-title {
    line-height: 37.5px;
    display: block;
    float: right;
  }
  /* line 477, ../sass/_header.scss */
  .navbar-header .main-navbar-toggle {
    padding: 7.5px 11.25px;
    margin-right: .25em;
    margin-bottom: 0;
    background: transparent;
    border: 0 none;
    float: right;
  }
  /* line 485, ../sass/_header.scss */
  .navbar-header .main-navbar-toggle .icon-bar {
    display: block;
    background-color: #ffffff;
    height: 3px;
    border-radius: 6px;
    width: 30px;
    margin: 3.75px 0;
  }
}

/* line 498, ../sass/_header.scss */
#mobile-nav-container {
  display: none;
}
@media (max-width: 625px) {
  /* line 498, ../sass/_header.scss */
  #mobile-nav-container {
    display: block;
    padding-left: 1em;
    font-size: 22.5px;
    line-height: 45px;
    position: fixed;
    top: 0;
    left: 0;
  }
}

/* line 511, ../sass/_header.scss */
.wis-logo-mobile {
  display: none;
}
@media (max-width: 625px) {
  /* line 511, ../sass/_header.scss */
  .wis-logo-mobile {
    display: block;
    padding: 15px;
    background-color: #4D4D4D;
  }
  /* line 520, ../sass/_header.scss */
  .wis-logo-mobile svg {
    max-width: 100% !important;
    max-height: auto !important;
  }
}
@media (max-width: 625px) and (min-width: 870px) {
  /* line 520, ../sass/_header.scss */
  .wis-logo-mobile svg {
    max-height: 45px;
  }
}
@media (max-width: 625px) {
  /* line 526, ../sass/_header.scss */
  .wis-logo-mobile svg path {
    fill: #ffffff;
  }
  /* line 530, ../sass/_header.scss */
  .wis-logo-mobile a {
    display: block;
    text-decoration: none;
    color: #ffffff;
  }
  /* line 534, ../sass/_header.scss */
  .wis-logo-mobile a span {
    display: block;
  }
}

/* line 542, ../sass/_header.scss */
.header__logo-wis svg {
  width: 100%;
  height: auto;
}
@media (min-width: 870px) {
  /* line 542, ../sass/_header.scss */
  .header__logo-wis svg {
    max-height: 45px;
  }
}
@media (min-width: 401px) and (max-width: 625px) {
  /* line 542, ../sass/_header.scss */
  .header__logo-wis svg {
    max-height: 110px;
  }
}
/* line 558, ../sass/_header.scss */
.header__logo-wis svg g path {
  stroke: white;
}

/* line 564, ../sass/_header.scss */
#WIS1 path {
  fill: #4D4D4D;
}

/* line 572, ../sass/_header.scss */
.header__logo-wis-image {
  display: none;
}

/* line 576, ../sass/_header.scss */
.lt-ie9 .header__logo-wis-image {
  display: block;
}

/* line 593, ../sass/_header.scss */
.nagish-contrast.header-1 .title-container {
  background: #3e3e3e;
  /* Old browsers */
  background: -moz-linear-gradient(top, #3e3e3e 0%, black 50%, #3e3e3e 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3e3e3e), color-stop(50%, black), color-stop(100%, #3e3e3e));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #3e3e3e 0%, black 50%, #3e3e3e 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #3e3e3e 0%, black 50%, #3e3e3e 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #3e3e3e 0%, black 50%, #3e3e3e 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #3e3e3e 0%, #000000 50%, #3e3e3e 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='black', EndColorStr='#3e3e3e', GradientType=0);
  /* IE6-8 */
}
/* line 596, ../sass/_header.scss */
.nagish-contrast.header-1 .title-container #site-slogan {
  color: #ffde9b;
}

/* line 605, ../sass/_header.scss */
.sitemenu-horizontal.header-4 .wis-logo-container {
  left: 15px;
}
/* line 608, ../sass/_header.scss */
.sitemenu-horizontal.header-4 .title-container {
  padding-left: 15px;
}
/* line 612, ../sass/_header.scss */
.sitemenu-horizontal #navigation .region-navigation .menu li:first-child {
  padding-left: 15px;
}
@media (min-width: 870px) {
  /* line 617, ../sass/_header.scss */
  .sitemenu-horizontal.header-4 .wis-logo-container {
    left: 30px;
  }
  /* line 620, ../sass/_header.scss */
  .sitemenu-horizontal.header-4 .title-container {
    padding-left: 30px;
  }
  /* line 624, ../sass/_header.scss */
  .sitemenu-horizontal #navigation .region-navigation .menu li:first-child {
    padding-left: 30px;
  }
}
@media (max-width: 625px) {
  /* line 628, ../sass/_header.scss */
  .sitemenu-horizontal #mobile-nav-container {
    padding-left: 1.5em;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-right: 1em;
    overflow-y: scroll;
    max-height: 100%;
  }
}
/* line 641, ../sass/_header.scss */
.sitemenu-horizontal.header-image--custom #header {
  height: unset;
}
/* line 645, ../sass/_header.scss */
.sitemenu-horizontal #nagish {
  left: inherit;
  right: 10px;
}

/* line 1, ../sass/_flexslider.scss */
ul.slides {
  margin: 0;
  padding: 0;
}
/* line 5, ../sass/_flexslider.scss */
ul.slides li {
  list-style-type: none;
  list-style-image: none;
}
/* line 9, ../sass/_flexslider.scss */
ul.slides li img {
  width: 100%;
  height: auto;
  max-width: 990px;
}

/* line 16, ../sass/_flexslider.scss */
.flex-direction-nav,
.flex-control-nav {
  display: none;
}

/**
 * Mixin breakpoint(point)
 * Allows to define per-selector special rules for different (predefined) screen sizes
 *
 * @vars: $point = [desktop, tablet, mobileonly]
 *
 * @usage:
 *     .my-class {
 *        <common-rules>
 *        @include breakpoint(<pointname>) {
 *		      <rules-apply-only-to-selected-breakpoint>
 *		    }
 *		 }
 *
 * 
 */
/* line 4, ../sass/_blocks.scss */
#block-wis-lab-theme-elements-pi-block {
  font-size: 12px;
  line-height: 22.5px;
  padding: .6em;
  color: #4D4D4D;
  background-color: #e3e3e3;
}
@media (min-width: 626px) and (max-width: 869px) {
  /* line 4, ../sass/_blocks.scss */
  #block-wis-lab-theme-elements-pi-block {
    background-color: transparent;
    padding: 0;
  }
}
@media (max-width: 625px) {
  /* line 4, ../sass/_blocks.scss */
  #block-wis-lab-theme-elements-pi-block {
    background-color: transparent;
    padding: 0;
  }
}
/* line 19, ../sass/_blocks.scss */
#block-wis-lab-theme-elements-pi-block .pi_photo {
  margin: -0.6em;
}
@media (min-width: 626px) and (max-width: 869px) {
  /* line 19, ../sass/_blocks.scss */
  #block-wis-lab-theme-elements-pi-block .pi_photo {
    margin: 0;
  }
}
@media (max-width: 625px) {
  /* line 19, ../sass/_blocks.scss */
  #block-wis-lab-theme-elements-pi-block .pi_photo {
    margin: 0;
  }
}
/* line 29, ../sass/_blocks.scss */
#block-wis-lab-theme-elements-pi-block .pi_about {
  font-size: 13.5px;
  line-height: 1.3em;
}
/* line 35, ../sass/_blocks.scss */
#block-wis-lab-theme-elements-pi-block .pi_about img {
  height: auto !important;
  max-height: 100%;
}
@media (min-width: 626px) and (max-width: 869px) {
  /* line 35, ../sass/_blocks.scss */
  #block-wis-lab-theme-elements-pi-block .pi_about img {
    max-width: 33% !important;
  }
}
@media (max-width: 625px) {
  /* line 35, ../sass/_blocks.scss */
  #block-wis-lab-theme-elements-pi-block .pi_about img {
    max-width: 33% !important;
  }
}
/* line 47, ../sass/_blocks.scss */
#block-wis-lab-theme-elements-pi-block p {
  margin-top: 0;
  margin-bottom: .5em;
}

@media (min-width: 870px) {
  /* line 56, ../sass/_blocks.scss */
  .front #block-system-main {
    padding-right: 3%;
  }
}

@media (min-width: 870px) {
  /* line 65, ../sass/_blocks.scss */
  .not-front #content {
    padding-right: 3%;
  }
}

/* line 73, ../sass/_blocks.scss */
.region-breadcrumbs-area .block {
  margin: 0;
}
/* line 75, ../sass/_blocks.scss */
.region-breadcrumbs-area .block#block-search-form {
  float: right;
}
@media (max-width: 400px) {
  /* line 72, ../sass/_blocks.scss */
  .region-breadcrumbs-area {
    padding: 0 15px;
  }
}

/* line 87, ../sass/_blocks.scss */
.sitemenu-horizontal #block-wis-lab-theme-elements-pi-block {
  padding: 0;
}
/* line 91, ../sass/_blocks.scss */
.sitemenu-horizontal #block-wis-lab-theme-elements-pi-block .pi_photo {
  margin: 0;
}
/* line 93, ../sass/_blocks.scss */
.sitemenu-horizontal #block-wis-lab-theme-elements-pi-block .pi_photo img {
  display: block;
}
/* line 98, ../sass/_blocks.scss */
.sitemenu-horizontal #block-wis-lab-theme-elements-pi-block .pi_about {
  padding: 10px 0 0 0;
}
@media (min-width: 870px) {
  /* line 98, ../sass/_blocks.scss */
  .sitemenu-horizontal #block-wis-lab-theme-elements-pi-block .pi_about {
    padding: 10px;
  }
}
@media (min-width: 870px) {
  /* line 109, ../sass/_blocks.scss */
  .sitemenu-horizontal.front #block-system-main {
    padding-right: 0;
  }
}
@media (min-width: 870px) {
  /* line 117, ../sass/_blocks.scss */
  .sitemenu-horizontal.not-front #content {
    padding-right: 0;
  }
}

/* line 125, ../sass/_blocks.scss */
#block-wis-pure-wis-pure-metrics {
  margin-top: -5em;
}

/* line 129, ../sass/_blocks.scss */
#pure-metrics ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  list-style-type: none;
  list-style-image: none;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
}
/* line 139, ../sass/_blocks.scss */
#pure-metrics ul li {
  padding: 0 1em;
  text-align: center;
  position: relative;
}
/* line 145, ../sass/_blocks.scss */
#pure-metrics ul li:not(:last-of-type):after {
  content: " ";
  position: absolute;
  width: 1px;
  height: 3em;
  background-color: #e3e3e3;
  top: 50%;
  margin-top: -1em;
  right: 0;
}

/* line 1, ../sass/_navigation.scss */
#navigation {
  overflow: hidden;
  *zoom: 1;
}
/* line 7, ../sass/_navigation.scss */
#navigation .region-navigation {
  background-color: #e3e3e3;
  margin: 3.75px 0 0;
  width: 990px;
  overflow: hidden;
  *zoom: 1;
}
/* line 15, ../sass/_navigation.scss */
#navigation .region-navigation .menu li {
  float: left;
  margin: 0;
  padding: 0 0 0 10px;
}
/* line 22, ../sass/_navigation.scss */
#navigation .region-navigation .menu li a {
  color: #4D4D4D;
  text-decoration: none;
  font-size: 16.95px;
  height: 37.5px;
  line-height: 37.5px;
  display: block;
  padding: 0 15px;
}
/* line 31, ../sass/_navigation.scss */
#navigation .region-navigation .menu li a.active, #navigation .region-navigation .menu li a.active-trail {
  color: #ffffff;
  background-color: #002164;
}
/* line 35, ../sass/_navigation.scss */
#navigation .region-navigation .menu li a.active:hover, #navigation .region-navigation .menu li a.active-trail:hover {
  color: #e3e3e3;
}
/* line 40, ../sass/_navigation.scss */
#navigation .region-navigation .menu li a:hover {
  color: #002164;
}
/* line 45, ../sass/_navigation.scss */
#navigation .region-navigation .menu li ul {
  display: none;
}
/* line 54, ../sass/_navigation.scss */
#navigation.region-sidebar-first .menu li {
  float: none;
}

/* line 61, ../sass/_navigation.scss */
#mobile-nav-container {
  background-color: white;
  width: 100%;
  display: none;
  z-index: 10;
}

/* line 72, ../sass/_navigation.scss */
#mobile-nav-container .menu,
.region-sidebar-first .menu {
  padding: 0 0 0 30px;
  font-size: 15.9375px;
  margin: 0;
}
@media (max-width: 625px) {
  /* line 72, ../sass/_navigation.scss */
  #mobile-nav-container .menu,
  .region-sidebar-first .menu {
    padding-top: 45px;
    max-width: 95%;
    box-sizing: border-box;
  }
}
@media (min-width: 626px) and (max-width: 869px) {
  /* line 72, ../sass/_navigation.scss */
  #mobile-nav-container .menu,
  .region-sidebar-first .menu {
    padding: 0;
  }
}
/* line 84, ../sass/_navigation.scss */
#mobile-nav-container .menu .menu,
.region-sidebar-first .menu .menu {
  padding-left: 0;
}
@media (max-width: 625px) {
  /* line 84, ../sass/_navigation.scss */
  #mobile-nav-container .menu .menu,
  .region-sidebar-first .menu .menu {
    padding-top: 0;
  }
}
/* line 90, ../sass/_navigation.scss */
#mobile-nav-container .menu > li,
.region-sidebar-first .menu > li {
  list-style-type: none;
  list-style-image: none;
}
/* line 93, ../sass/_navigation.scss */
#mobile-nav-container .menu > li > a,
.region-sidebar-first .menu > li > a {
  color: #4D4D4D;
  text-decoration: none;
  padding: 3.75px 0;
  display: block;
  position: relative;
}
/* line 63, ../sass/_mixins.scss */
#mobile-nav-container .menu > li > a:before,
.region-sidebar-first .menu > li > a:before {
  font-family: 'Glyphicons Halflings';
  content: "\e080";
  color: #999999;
  position: absolute;
  left: -15px;
  font-size: 7.5px;
}
/* line 102, ../sass/_navigation.scss */
#mobile-nav-container .menu > li > a:hover,
.region-sidebar-first .menu > li > a:hover {
  color: #002164;
}
/* line 108, ../sass/_navigation.scss */
#mobile-nav-container .menu > li.active > a, #mobile-nav-container .menu > li.active-trail > a,
.region-sidebar-first .menu > li.active > a,
.region-sidebar-first .menu > li.active-trail > a {
  font-weight: 500;
  color: #002164;
}
/* line 63, ../sass/_mixins.scss */
#mobile-nav-container .menu > li.active > a:before, #mobile-nav-container .menu > li.active-trail > a:before,
.region-sidebar-first .menu > li.active > a:before,
.region-sidebar-first .menu > li.active-trail > a:before {
  font-family: 'Glyphicons Halflings';
  content: "\e080";
  color: #002164;
  position: absolute;
  left: -15px;
  font-size: 7.5px;
}
/* line 114, ../sass/_navigation.scss */
#mobile-nav-container .menu > li.active li a.active, #mobile-nav-container .menu > li.active-trail li a.active,
.region-sidebar-first .menu > li.active li a.active,
.region-sidebar-first .menu > li.active-trail li a.active {
  color: #002164 !important;
  background-color: #e3e3e3 !important;
}
/* line 123, ../sass/_navigation.scss */
#mobile-nav-container .menu > li.expanded .menu,
.region-sidebar-first .menu > li.expanded .menu {
  /** second level **/
  margin-bottom: .25em;
  width: 100%;
}
/* line 127, ../sass/_navigation.scss */
#mobile-nav-container .menu > li.expanded .menu li a,
.region-sidebar-first .menu > li.expanded .menu li a {
  height: auto;
  font-weight: 400;
  font-size: 0.93333rem;
  color: #4D4D4D;
  line-height: 16.875px;
  background-color: #ffffff;
  border-bottom: 1px #999999 solid;
  padding: .6em .25em .3em .25em;
}
@media (max-width: 625px) {
  /* line 127, ../sass/_navigation.scss */
  #mobile-nav-container .menu > li.expanded .menu li a,
  .region-sidebar-first .menu > li.expanded .menu li a {
    font-size: 15px;
    line-height: 33.75px;
  }
}
/* line 143, ../sass/_navigation.scss */
#mobile-nav-container .menu > li.expanded .menu li a:hover,
.region-sidebar-first .menu > li.expanded .menu li a:hover {
  background-color: #e3e3e3;
  color: #002164;
}
/* line 63, ../sass/_mixins.scss */
#mobile-nav-container .menu > li.expanded .menu li a:hover:before,
.region-sidebar-first .menu > li.expanded .menu li a:hover:before {
  font-family: 'Glyphicons Halflings';
  content: "\e080";
  color: #002164;
  position: absolute;
  left: -15px;
  font-size: 7.5px;
}

/* line 167, ../sass/_navigation.scss */
.header-1 .region-navigation ul li a.active-trail, .header-1 .region-navigation ul li a.active,
.header-2 .region-navigation ul li a.active-trail,
.header-2 .region-navigation ul li a.active,
.header-3 .region-navigation ul li a.active-trail,
.header-3 .region-navigation ul li a.active {
  background-color: #002164 !important;
}
/* line 170, ../sass/_navigation.scss */
.header-1 .region-navigation ul li a.active-trail:hover, .header-1 .region-navigation ul li a.active:hover,
.header-2 .region-navigation ul li a.active-trail:hover,
.header-2 .region-navigation ul li a.active:hover,
.header-3 .region-navigation ul li a.active-trail:hover,
.header-3 .region-navigation ul li a.active:hover {
  color: #ffffff !important;
}
/* line 175, ../sass/_navigation.scss */
.header-1 .region-navigation ul li a:hover,
.header-2 .region-navigation ul li a:hover,
.header-3 .region-navigation ul li a:hover {
  color: #002164 !important;
}
/* line 187, ../sass/_navigation.scss */
.header-1 .region-sidebar-first ul > li.expanded > a.active-trail:before,
.header-2 .region-sidebar-first ul > li.expanded > a.active-trail:before,
.header-3 .region-sidebar-first ul > li.expanded > a.active-trail:before {
  -webkit-transform: rotateZ(90deg);
  /* Safari */
  transform: rotateZ(90deg);
}
/* line 196, ../sass/_navigation.scss */
.header-1 .region-sidebar-first ul > li li a.active,
.header-2 .region-sidebar-first ul > li li a.active,
.header-3 .region-sidebar-first ul > li li a.active {
  background-color: #d2d2d2;
}
/* line 205, ../sass/_navigation.scss */
.header-1 .region-sidebar-first ul > li > a.active-trail, .header-1 .region-sidebar-first ul > li > a.active, .header-1 .region-sidebar-first ul > li > a:hover,
.header-2 .region-sidebar-first ul > li > a.active-trail,
.header-2 .region-sidebar-first ul > li > a.active,
.header-2 .region-sidebar-first ul > li > a:hover,
.header-3 .region-sidebar-first ul > li > a.active-trail,
.header-3 .region-sidebar-first ul > li > a.active,
.header-3 .region-sidebar-first ul > li > a:hover {
  color: #002164;
}
/* line 63, ../sass/_mixins.scss */
.header-1 .region-sidebar-first ul > li > a.active-trail:before, .header-1 .region-sidebar-first ul > li > a.active:before, .header-1 .region-sidebar-first ul > li > a:hover:before,
.header-2 .region-sidebar-first ul > li > a.active-trail:before,
.header-2 .region-sidebar-first ul > li > a.active:before,
.header-2 .region-sidebar-first ul > li > a:hover:before,
.header-3 .region-sidebar-first ul > li > a.active-trail:before,
.header-3 .region-sidebar-first ul > li > a.active:before,
.header-3 .region-sidebar-first ul > li > a:hover:before {
  font-family: 'Glyphicons Halflings';
  content: "\e080";
  color: #002164;
  position: absolute;
  left: -15px;
  font-size: 7.5px;
}
/* line 212, ../sass/_navigation.scss */
.header-1 .region-sidebar-first ul > li > a.active-trail, .header-1 .region-sidebar-first ul > li > a.active,
.header-2 .region-sidebar-first ul > li > a.active-trail,
.header-2 .region-sidebar-first ul > li > a.active,
.header-3 .region-sidebar-first ul > li > a.active-trail,
.header-3 .region-sidebar-first ul > li > a.active {
  font-weight: bold;
}

/* line 232, ../sass/_navigation.scss */
.navbar-horizontal .menu > li.expanded > a.active-trail:before {
  -webkit-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}
/* line 240, ../sass/_navigation.scss */
.navbar-horizontal .menu li a.active-trail, .navbar-horizontal .menu li a.active, .navbar-horizontal .menu li a:hover {
  color: #002164;
}
/* line 63, ../sass/_mixins.scss */
.navbar-horizontal .menu li a.active-trail:before, .navbar-horizontal .menu li a.active:before, .navbar-horizontal .menu li a:hover:before {
  font-family: 'Glyphicons Halflings';
  content: "\e080";
  color: #002164;
  position: absolute;
  left: -15px;
  font-size: 7.5px;
}
/* line 246, ../sass/_navigation.scss */
.navbar-horizontal .menu li a.active-trail, .navbar-horizontal .menu li a.active {
  font-weight: bold;
}
/* line 255, ../sass/_navigation.scss */
.navbar-horizontal .menu .menu li a {
  padding-left: 1em !important;
}
/* line 257, ../sass/_navigation.scss */
.navbar-horizontal .menu .menu li a:before {
  left: .25em;
}
/* line 63, ../sass/_mixins.scss */
.navbar-horizontal .menu .menu li a.active-trail:before, .navbar-horizontal .menu .menu li a.active:before, .navbar-horizontal .menu .menu li a:hover:before {
  font-family: 'Glyphicons Halflings';
  content: "\e080";
  color: #002164;
  position: absolute;
  left: -15px;
  font-size: 7.5px;
}
/* line 267, ../sass/_navigation.scss */
.navbar-horizontal .menu .menu li a.active-trail:before, .navbar-horizontal .menu .menu li a.active:before, .navbar-horizontal .menu .menu li a:hover:before {
  left: .25em;
}

/** mobile nav **/
@media (min-width: 401px) and (max-width: 625px) {
  /* line 278, ../sass/_navigation.scss */
  #block-system-main-menu {
    display: none;
  }
}
@media (max-width: 400px) {
  /* line 278, ../sass/_navigation.scss */
  #block-system-main-menu {
    display: none;
  }
}

/* line 289, ../sass/_navigation.scss */
.sidebars #block-sidebar-submenu {
  margin-top: 2em;
}
/* line 292, ../sass/_navigation.scss */
.sidebars #block-sidebar-submenu .menu li {
  height: auto;
  line-height: 1.5em;
  border-bottom: 1px #999999 solid;
}
/* line 296, ../sass/_navigation.scss */
.sidebars #block-sidebar-submenu .menu li .active {
  font-weight: bold;
}
/* line 298, ../sass/_navigation.scss */
.sidebars #block-sidebar-submenu .menu li .active:before {
  content: "";
}

/* line 310, ../sass/_navigation.scss */
.menu li .menu li {
  width: 95%;
  margin: 0;
}
@media (max-width: 400px) {
  /* line 313, ../sass/_navigation.scss */
  .menu li .menu li a {
    line-height: 1.5em !important;
  }
}

/* for nagishut -- contrast settings */
/* line 335, ../sass/_navigation.scss */
.nagish-contrast .menu > li.expanded .menu li a {
  color: #b2b2b2;
  background-color: black;
  border-bottom: 1px #666666 solid;
}
/* line 339, ../sass/_navigation.scss */
.nagish-contrast .menu > li.expanded .menu li a:hover {
  background-color: #1c1c1c;
  color: #ffde9b !important;
}
/* line 63, ../sass/_mixins.scss */
.nagish-contrast .menu > li.expanded .menu li a:hover:before {
  font-family: 'Glyphicons Halflings';
  content: "\e080";
  color: #ffde9b;
  position: absolute;
  left: -15px;
  font-size: 7.5px;
}
/* line 343, ../sass/_navigation.scss */
.nagish-contrast .menu > li.expanded .menu li a:hover:before {
  left: .25em;
}
/* line 349, ../sass/_navigation.scss */
.nagish-contrast .menu > li.active-trail li a.active {
  color: #ffde9b !important;
  background-color: #002164 !important;
}

@media (max-width: 625px) {
  /* line 357, ../sass/_navigation.scss */
  #navbar-administration {
    outline: 3px red solid;
  }
  /* line 359, ../sass/_navigation.scss */
  #navbar-administration .navbar-tray-vertical {
    margin-top: 47px;
  }

  /* line 363, ../sass/_navigation.scss */
  #navbar-bar {
    margin-top: 47px !important;
  }
  /* line 365, ../sass/_navigation.scss */
  #navbar-bar #responsive-preview-navbar-tab {
    display: none;
  }
}
@media (min-width: 401px) and (max-width: 625px) {
  /* line 372, ../sass/_navigation.scss */
  #navbar-administration {
    outline: 3px orange solid;
  }
  /* line 375, ../sass/_navigation.scss */
  #navbar-administration .navbar-bar .navbar-icon {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    text-indent: -9999px;
    width: 4em;
  }

  /* line 385, ../sass/_navigation.scss */
  #navbar-bar {
    outline: 3px orange solid;
  }
}
@media (min-width: 626px) and (max-width: 869px) {
  /* line 391, ../sass/_navigation.scss */
  #navbar-administration {
    box-shadow: 1px 1px 40px rgba(0, 0, 0, 0.5);
    position: fixed;
    z-index: 10;
  }

  /* line 396, ../sass/_navigation.scss */
  #navbar-bar {
    outline: 3px cyan solid;
  }

  /* line 399, ../sass/_navigation.scss */
  body.navbar-tray-open.navbar-vertical.navbar-fixed {
    margin-left: 0 !important;
  }
}
/* line 406, ../sass/_navigation.scss */
.sitemenu-horizontal.not-front #navigation .region-navigation .menu li:first-child a {
  padding-left: 0;
}
/* line 410, ../sass/_navigation.scss */
.sitemenu-horizontal .region-sidebar-first .menu {
  padding: 0 0 0 15px;
}
/* line 413, ../sass/_navigation.scss */
.sitemenu-horizontal .region-sidebar-first .menu > li {
  margin: 0;
}
/* line 415, ../sass/_navigation.scss */
.sitemenu-horizontal .region-sidebar-first .menu > li > a {
  border-bottom: 1px #999999 solid;
  padding: .6em .25em .3em .25em;
}
/* line 420, ../sass/_navigation.scss */
.sitemenu-horizontal .region-sidebar-first .menu > li > a:hover, .sitemenu-horizontal .region-sidebar-first .menu > li.active-trail > a {
  background-color: #e3e3e3;
  color: #002164;
}
/* line 423, ../sass/_navigation.scss */
.sitemenu-horizontal .region-sidebar-first .menu > li > a:hover:before, .sitemenu-horizontal .region-sidebar-first .menu > li.active-trail > a:before {
  color: #002164;
}
@media (max-width: 625px) {
  /* line 429, ../sass/_navigation.scss */
  .sitemenu-horizontal #mobile-nav-container > .menu {
    padding: 45px 0 0 0;
    max-width: 100%;
  }
  /* line 432, ../sass/_navigation.scss */
  .sitemenu-horizontal #mobile-nav-container > .menu ul {
    padding-left: 1em;
    max-width: 100%;
  }
  /* line 435, ../sass/_navigation.scss */
  .sitemenu-horizontal #mobile-nav-container > .menu ul > li {
    width: 100%;
  }
}

/* line 1, ../sass/_pages.scss */
#page {
  box-shadow: 1px 1px 50px #b8b8b8;
}
@media (min-width: 401px) and (max-width: 625px) {
  /* line 1, ../sass/_pages.scss */
  #page {
    background-color: #ffffff;
    box-shadow: 0 0 0 transparent;
  }
}
@media (max-width: 400px) {
  /* line 1, ../sass/_pages.scss */
  #page {
    background-color: #ffffff;
  }
}

@media (max-width: 625px) {
  /* line 13, ../sass/_pages.scss */
  #main {
    margin-top: 1em;
  }
}
@media (min-width: 401px) and (max-width: 625px) {
  /* line 17, ../sass/_pages.scss */
  #main #content,
  #main aside {
    margin: 0 15px;
  }
}

/* line 26, ../sass/_pages.scss */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f4f4f4;
  color: #fff;
  z-index: 1999;
}

/* line 37, ../sass/_pages.scss */
body {
  color: #4D4D4D;
}
@media (min-width: 401px) and (max-width: 625px) {
  /* line 42, ../sass/_pages.scss */
  body.navbar-administration #page #header {
    margin-top: 39px;
  }
}
@media (max-width: 400px) {
  /* line 51, ../sass/_pages.scss */
  body.navbar-administration #page #header {
    margin-top: 39px;
  }
}

/* line 59, ../sass/_pages.scss */
a {
  color: #1e799f;
}

/* line 63, ../sass/_pages.scss */
.flexslider-node {
  display: none;
  visibility: hidden;
  opacity: 0;
}

/* line 69, ../sass/_pages.scss */
.edit_link {
  position: absolute;
  bottom: .5em;
  right: .5em;
}
/* line 73, ../sass/_pages.scss */
.edit_link a {
  text-indent: -9999px;
  text-decoration: none;
  font-size: .5rem;
  line-height: 1rem;
  transition: all 0.35s;
  color: transparent;
}
/* line 81, ../sass/_pages.scss */
.edit_link a:hover {
  color: white;
  text-shadow: 1px 1px 0 black;
  background-color: rgba(128, 128, 128, 0.5);
  padding: .25em;
  border-radius: 4px;
}
/* line 88, ../sass/_pages.scss */
.edit_link a:after {
  font-family: 'Glyphicons Halflings';
  content: "\e065";
  font-size: 1rem;
  color: white;
  text-shadow: 1px 1px 0 black;
  padding-left: .5em;
}

/* line 100, ../sass/_pages.scss */
.readmore a {
  font-size: 14px;
}

/* line 104, ../sass/_pages.scss */
.view-research-activities.view-display-id-page,
.view-taxonomy-term.view-display-id-page {
  margin-top: 1em;
}
/* line 109, ../sass/_pages.scss */
.view-research-activities.view-display-id-page .node-research-topic.node-teaser p,
.view-taxonomy-term.view-display-id-page .node-research-topic.node-teaser p {
  margin: .75em 0;
}
/* line 112, ../sass/_pages.scss */
.view-research-activities.view-display-id-page .node-research-topic.node-teaser .field-type-image,
.view-taxonomy-term.view-display-id-page .node-research-topic.node-teaser .field-type-image {
  padding-right: 1em;
}
@media (max-width: 400px) {
  /* line 112, ../sass/_pages.scss */
  .view-research-activities.view-display-id-page .node-research-topic.node-teaser .field-type-image,
  .view-taxonomy-term.view-display-id-page .node-research-topic.node-teaser .field-type-image {
    float: none;
  }
}
/* line 117, ../sass/_pages.scss */
.view-research-activities.view-display-id-page .node-research-topic.node-teaser .field-type-image img,
.view-taxonomy-term.view-display-id-page .node-research-topic.node-teaser .field-type-image img {
  border: 4px white solid;
  box-shadow: 1px 1px 10px #d2d2d2;
}
@media (max-width: 625px) {
  /* line 117, ../sass/_pages.scss */
  .view-research-activities.view-display-id-page .node-research-topic.node-teaser .field-type-image img,
  .view-taxonomy-term.view-display-id-page .node-research-topic.node-teaser .field-type-image img {
    border: 0px transparent none;
  }
}
@media (max-width: 400px) {
  /* line 126, ../sass/_pages.scss */
  .view-research-activities.view-display-id-page .node-research-topic.node-teaser h2,
  .view-taxonomy-term.view-display-id-page .node-research-topic.node-teaser h2 {
    float: none;
    margin-left: 0;
  }
}
/* line 131, ../sass/_pages.scss */
.view-research-activities.view-display-id-page .node-research-topic.node-teaser h2 a,
.view-taxonomy-term.view-display-id-page .node-research-topic.node-teaser h2 a {
  color: #002164;
}

/* line 141, ../sass/_pages.scss */
.header-2.node-type-research-topic h1#page-title {
  color: #4e6494;
  font-weight: normal;
  font-size: 22.5px;
  line-height: 1em;
}
/* line 151, ../sass/_pages.scss */
.header-2 .view-research-activities.view-display-id-page .node-research-topic.node-teaser h2 {
  border-bottom: 1px #4e6494 solid;
}
/* line 153, ../sass/_pages.scss */
.header-2 .view-research-activities.view-display-id-page .node-research-topic.node-teaser h2 a {
  color: #4e6494;
}

/* line 161, ../sass/_pages.scss */
.section-research-activities {
  	/*
    h1.page__title {
      @include breakpoint(tablet) {
       
      }
      @include breakpoint(phablet) {
        display: none;
      }
      @include breakpoint(mobileonly) {
        display: none;
      }
    }	*/
}

/* line 177, ../sass/_pages.scss */
.node-research-topic.view-mode-full .field-name-field-research-image {
  float: left;
  margin-right: 1em;
}
/* line 181, ../sass/_pages.scss */
.node-research-topic.view-mode-full h1.research-title {
  color: #002164;
  font-weight: normal;
  float: left;
  display: table-cell;
  vertical-align: bottom;
  margin-bottom: 0;
  overflow: hidden;
  *zoom: 1;
}
/* line 191, ../sass/_pages.scss */
.node-research-topic.view-mode-full .field-name-body {
  clear: both;
  padding-top: 1em;
}

/* line 200, ../sass/_pages.scss */
.field-type-image a {
  display: block;
}

/** fix for horizontal scroll with admin pages while having vertical navbar **/
/* line 206, ../sass/_pages.scss */
body.navbar-tray-open.navbar-vertical.navbar-fixed {
  overflow-x: hidden;
}

/* line 211, ../sass/_pages.scss */
.region-content ul, .region-content ol {
  margin: .5em 0;
}
/* line 215, ../sass/_pages.scss */
.region-content p {
  margin: .5em 0;
}
/* line 217, ../sass/_pages.scss */
.region-content p:first-of-type {
  margin-top: 3.75px;
}
/* line 223, ../sass/_pages.scss */
.region-content .node-alumni p {
  margin: 0 0 .5em 0;
}
/* line 225, ../sass/_pages.scss */
.region-content .node-alumni p:first-of-type {
  margin-top: 0;
}

/* line 235, ../sass/_pages.scss */
.front .region-content p:first-of-type {
  margin-top: 0;
}

/* line 251, ../sass/_pages.scss */
#block-system-main .view-research-activities.view-display-id-page {
  margin-top: 0;
}

/* line 260, ../sass/_pages.scss */
.contactus-links a:before {
  background-color: #3f4256;
  width: 7.5px;
  height: 7.5px;
  margin: 7.5px 7.5px 0 0;
}

/* line 273, ../sass/_pages.scss */
.view-member-zone-lists .form-item-field-year-value {
  display: none;
}

@media (max-width: 625px) {
  /* line 285, ../sass/_pages.scss */
  .node-member .field-type-image img,
  .node-gallery-album .field-type-image img,
  .view-galleris .views-field-field-cover-image img,
  .wis-gallery-cover-image img {
    border: 0 none transparent;
  }
}

/* line 292, ../sass/_pages.scss */
.node-gallery-album,
.view-galleris {
  display: block;
}
/* line 295, ../sass/_pages.scss */
.node-gallery-album .field-item,
.node-gallery-album td,
.view-galleris .field-item,
.view-galleris td {
  display: block;
  float: left;
  padding-right: 1%;
  box-sizing: border-box;
}
/* line 303, ../sass/_pages.scss */
.node-gallery-album tr,
.view-galleris tr {
  display: block;
}
/* line 307, ../sass/_pages.scss */
.node-gallery-album .field-type-image .field-item,
.view-galleris .field-type-image .field-item {
  margin-left: 0;
}
/* line 311, ../sass/_pages.scss */
.node-gallery-album .node-gallery-album div.field-item,
.view-galleris .node-gallery-album div.field-item {
  padding: 0 !important;
}

/* line 327, ../sass/_pages.scss */
.view-publications .views-exposed-widget .form-submit {
  margin-top: .4em;
}
/* line 333, ../sass/_pages.scss */
.view-publications .view-content .year-title {
  margin-bottom: 1em;
  margin-left: -30px;
}

@media (max-width: 625px) {
  /* line 343, ../sass/_pages.scss */
  .contactus-image {
    float: none;
    text-align: center;
    max-width: 100%;
  }
}
/* line 349, ../sass/_pages.scss */
.contactus-image img {
  box-shadow: 1px 1px 10px #d2d2d2;
}

/* line 356, ../sass/_pages.scss */
.sitemenu-horizontal.page-publications .view-publications ul {
  padding: 0;
}
/* line 358, ../sass/_pages.scss */
.sitemenu-horizontal.page-publications .view-publications ul ol {
  padding-left: 16px;
}

/**
 * @file sticky-footer.scss
 * This provides support for sticky footer feature.
 * Base of this description: 
 */
/* Import Sass mixins, variables, Compass modules, etc. */
/**
 * Mixin breakpoint(point)
 * Allows to define per-selector special rules for different (predefined) screen sizes
 *
 * @vars: $point = [desktop, tablet, mobileonly]
 *
 * @usage:
 *     .my-class {
 *        <common-rules>
 *        @include breakpoint(<pointname>) {
 *		      <rules-apply-only-to-selected-breakpoint>
 *		    }
 *		 }
 *
 * 
 */
/* line 10, ../sass/_sticky-footer.scss */
html {
  height: 100%;
}
/* line 12, ../sass/_sticky-footer.scss */
html body {
  height: 100%;
}
/* line 14, ../sass/_sticky-footer.scss */
html body #page {
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
}
@media (max-width: 625px) {
  /* line 14, ../sass/_sticky-footer.scss */
  html body #page {
    position: absolute;
    top: 39px;
  }
}
/* line 22, ../sass/_sticky-footer.scss */
html body #page #main {
  padding-bottom: 30px;
  /* footer height should be defined in _init.scss */
}
/* line 27, ../sass/_sticky-footer.scss */
html body .region-footer,
html body #footer {
  position: relative;
  margin-top: -30px;
  /* negative value of footer height from _init.scss */
  height: 30px;
  clear: both;
}
@media (min-width: 401px) and (max-width: 625px) {
  /* line 27, ../sass/_sticky-footer.scss */
  html body .region-footer,
  html body #footer {
    display: none;
  }
}
@media (max-width: 400px) {
  /* line 27, ../sass/_sticky-footer.scss */
  html body .region-footer,
  html body #footer {
    display: none;
  }
}
/* line 43, ../sass/_sticky-footer.scss */
html body.sitemenu-horizontal #page {
  min-height: 100%;
  margin-bottom: -2.5em;
}
/* line 46, ../sass/_sticky-footer.scss */
html body.sitemenu-horizontal #page:after {
  content: "";
  display: block;
  height: 2.5em;
}
/* line 52, ../sass/_sticky-footer.scss */
html body.sitemenu-horizontal region-footer, html body.sitemenu-horizontal #footer {
  margin-top: 0;
  height: 2.5em;
}
@media (max-width: 625px) {
  /* line 58, ../sass/_sticky-footer.scss */
  html body.sitemenu-horizontal #page {
    margin-bottom: -60px;
  }
  /* line 60, ../sass/_sticky-footer.scss */
  html body.sitemenu-horizontal #page:after {
    height: 60px;
  }
  /* line 64, ../sass/_sticky-footer.scss */
  html body.sitemenu-horizontal region-footer, html body.sitemenu-horizontal #footer {
    height: 60px;
  }
}

/* line 4, ../sass/_footer.scss */
.region-mobile-footer .block,
.region-footer .block {
  height: 2.5em;
  line-height: 2.5em;
  background-color: #002164;
  color: #ffffff;
  padding: 0 25px;
  margin-bottom: 0;
}
@media (min-width: 401px) and (max-width: 625px) {
  /* line 4, ../sass/_footer.scss */
  .region-mobile-footer .block,
  .region-footer .block {
    height: 5em;
  }
}
@media (max-width: 400px) {
  /* line 4, ../sass/_footer.scss */
  .region-mobile-footer .block,
  .region-footer .block {
    height: 5em;
  }
}
/* line 17, ../sass/_footer.scss */
.region-mobile-footer .block a,
.region-footer .block a {
  color: #ffffff;
}
/* line 20, ../sass/_footer.scss */
.region-mobile-footer .block .footer_right,
.region-mobile-footer .block .footer_left,
.region-footer .block .footer_right,
.region-footer .block .footer_left {
  float: left;
}
@media (min-width: 401px) and (max-width: 625px) {
  /* line 20, ../sass/_footer.scss */
  .region-mobile-footer .block .footer_right,
  .region-mobile-footer .block .footer_left,
  .region-footer .block .footer_right,
  .region-footer .block .footer_left {
    clear: both;
    float: none;
  }
}
@media (max-width: 400px) {
  /* line 20, ../sass/_footer.scss */
  .region-mobile-footer .block .footer_right,
  .region-mobile-footer .block .footer_left,
  .region-footer .block .footer_right,
  .region-footer .block .footer_left {
    clear: both;
    float: none;
  }
}
/* line 31, ../sass/_footer.scss */
.region-mobile-footer .block .footer_right p,
.region-mobile-footer .block .footer_left p,
.region-footer .block .footer_right p,
.region-footer .block .footer_left p {
  padding: 0;
  margin: 0;
  font-size: 14px;
}
@media (max-width: 625px) {
  /* line 31, ../sass/_footer.scss */
  .region-mobile-footer .block .footer_right p,
  .region-mobile-footer .block .footer_left p,
  .region-footer .block .footer_right p,
  .region-footer .block .footer_left p {
    white-space: nowrap;
    font-size: 3.5vw;
  }
}
/* line 42, ../sass/_footer.scss */
.region-mobile-footer .block .footer_right,
.region-footer .block .footer_right {
  float: right;
}

/* line 48, ../sass/_footer.scss */
.region-mobile-footer {
  display: none;
}
@media (min-width: 401px) and (max-width: 625px) {
  /* line 48, ../sass/_footer.scss */
  .region-mobile-footer {
    display: block;
  }
}
@media (max-width: 400px) {
  /* line 48, ../sass/_footer.scss */
  .region-mobile-footer {
    display: block;
  }
}

/* line 60, ../sass/_footer.scss */
.sitemenu-horizontal .region-mobile-footer .block, .sitemenu-horizontal .region-footer .block {
  padding: 0 15px;
}
@media (min-width: 870px) {
  /* line 60, ../sass/_footer.scss */
  .sitemenu-horizontal .region-mobile-footer .block, .sitemenu-horizontal .region-footer .block {
    padding: 0 30px;
  }
}
@media (max-width: 625px) {
  /* line 68, ../sass/_footer.scss */
  .sitemenu-horizontal .region-mobile-footer .block .footer_left p, .sitemenu-horizontal .region-mobile-footer .block .footer_right p {
    font-size: 15px;
    line-height: 30px;
  }
}
/* line 74, ../sass/_footer.scss */
.sitemenu-horizontal .region-mobile-footer .block, .sitemenu-horizontal .region-footer .block {
  height: 2.5em;
}
@media (max-width: 625px) {
  /* line 74, ../sass/_footer.scss */
  .sitemenu-horizontal .region-mobile-footer .block, .sitemenu-horizontal .region-footer .block {
    height: 60px;
  }
}

/* Primary tabs. */
/* line 5, ../sass/components/_tabs.scss */
.tabs-primary__tab, .tabs-primary__tab.is-active {
  font-size: 12px;
  text-shadow: 1px 1px 0 #fff;
  background-color: #e3e3e3;
  margin: 1px;
}

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

/* line 18, ../sass/components/_tabs.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;
  white-space: pre-line;
  line-height: 1.25em;
}

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

/* line 34, ../sass/components/_tabs.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 58, ../sass/components/_tabs.scss */
.tabs-secondary {
  font-size: .9em;
  /* Collapse bottom margin of ul.primary. */
  right: 115px;
  background-color: rgba(128, 128, 128, 0.5);
  top: 103px;
}

/* line 67, ../sass/components/_tabs.scss */
.tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  margin: 0.3em 0;
}

/* line 74, ../sass/components/_tabs.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;
  white-space: pre-line;
  line-height: 1.125em;
}

/* line 86, ../sass/components/_tabs.scss */
a.tabs-secondary__tab-link:hover, a.tabs-secondary__tab-link:focus {
  background-color: #dedede;
  border-color: #999;
  color: #333;
}

/* line 91, ../sass/components/_tabs.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;
}

/** style 1 **/
@media (max-width: 625px) {
  /* line 11, ../sass/_researches.scss */
  .view-research-activities .node-research-topic.node-teaser, .view-taxonomy-term .node-research-topic.node-teaser {
    padding-bottom: 2em;
  }
}
/* line 20, ../sass/_researches.scss */
.view-research-activities.view-display-id-block .views-row, .view-taxonomy-term.view-display-id-block .views-row {
  background-color: #e3e3e3;
  border-bottom: 4px #002164 solid;
  min-height: 180px;
  position: relative;
  /* readmore link */
}
@media (max-width: 625px) {
  /* line 20, ../sass/_researches.scss */
  .view-research-activities.view-display-id-block .views-row, .view-taxonomy-term.view-display-id-block .views-row {
    width: 100%;
    margin-bottom: 15px;
    min-height: 0;
  }
  /* line 34, ../sass/_researches.scss */
  .view-research-activities.view-display-id-block .views-row .field-name-field-research-image, .view-taxonomy-term.view-display-id-block .views-row .field-name-field-research-image {
    float: left;
    width: 40%;
    margin-right: 15px;
  }
  /* line 39, ../sass/_researches.scss */
  .view-research-activities.view-display-id-block .views-row .field-name-field-research-image img, .view-taxonomy-term.view-display-id-block .views-row .field-name-field-research-image img {
    vertical-align: bottom;
  }
}
/* line 45, ../sass/_researches.scss */
.view-research-activities.view-display-id-block .views-row .views-field-title, .view-taxonomy-term.view-display-id-block .views-row .views-field-title {
  padding: .125em 1em;
  min-height: 90px;
  height: 90px;
}
@media (max-width: 625px) {
  /* line 45, ../sass/_researches.scss */
  .view-research-activities.view-display-id-block .views-row .views-field-title, .view-taxonomy-term.view-display-id-block .views-row .views-field-title {
    padding: .5em 1em;
  }
}
@media (min-width: 626px) and (max-width: 869px) {
  /* line 45, ../sass/_researches.scss */
  .view-research-activities.view-display-id-block .views-row .views-field-title, .view-taxonomy-term.view-display-id-block .views-row .views-field-title {
    min-height: 85px;
    height: 85px;
  }
}
/* line 57, ../sass/_researches.scss */
.view-research-activities.view-display-id-block .views-row .views-field-title a, .view-taxonomy-term.view-display-id-block .views-row .views-field-title a {
  text-decoration: none;
  color: #002164;
  font-size: 1.125rem;
  line-height: 1.125em;
  white-space: normal;
}
@media (max-width: 625px) {
  /* line 66, ../sass/_researches.scss */
  .view-research-activities.view-display-id-block .views-row .views-field-view-node, .view-taxonomy-term.view-display-id-block .views-row .views-field-view-node {
    position: absolute;
    right: 0;
    bottom: .5em;
  }
}

/* line 81, ../sass/_researches.scss */
.header-1 .view-research-activities.view-display-id-block .views-row {
  border-bottom: 4px #002164 solid;
}
/* line 84, ../sass/_researches.scss */
.header-1 .view-research-activities.view-display-id-block .views-row img {
  width: 100%;
}

/* line 97, ../sass/_researches.scss */
.nagish-contrast .view-research-activities.view-display-id-block .views-row {
  background-color: #1c1c1c;
  border: 4px #ffde9b solid;
  border-width: 1px 1px 4px;
  box-sizing: border-box;
}

/* line 109, ../sass/_researches.scss */
.one-sidebar.sidebar-second .view-research-activities.view-display-id-block .views-row img {
  display: block;
}
/* line 112, ../sass/_researches.scss */
.one-sidebar.sidebar-second .view-research-activities.view-display-id-block .views-row .views-field-title {
  padding: 10px 10px 0;
}
/* line 115, ../sass/_researches.scss */
.one-sidebar.sidebar-second .view-research-activities.view-display-id-block .views-row .readmore {
  padding: 0 10px;
}
@media (min-width: 626px) and (max-width: 869px) {
  /* line 120, ../sass/_researches.scss */
  .one-sidebar.sidebar-second .view-research-activities.view-display-id-block .views-row .views-field-title a {
    font-size: 14px;
    line-height: 18px;
    display: block;
  }
}

@CHARSET "UTF-8";
/**
 * Mixin breakpoint(point)
 * Allows to define per-selector special rules for different (predefined) screen sizes
 *
 * @vars: $point = [desktop, tablet, mobileonly]
 *
 * @usage:
 *     .my-class {
 *        <common-rules>
 *        @include breakpoint(<pointname>) {
 *		      <rules-apply-only-to-selected-breakpoint>
 *		    }
 *		 }
 *
 * 
 */
/**
 * Mixin breakpoint(point)
 * Allows to define per-selector special rules for different (predefined) screen sizes
 *
 * @vars: $point = [desktop, tablet, mobileonly]
 *
 * @usage:
 *     .my-class {
 *        <common-rules>
 *        @include breakpoint(<pointname>) {
 *		      <rules-apply-only-to-selected-breakpoint>
 *		    }
 *		 }
 *
 * 
 */
/* line 5, ../sass/ckeditor-styles.scss */
body {
  font-family: 'Proxima Nova';
}

/* line 8, ../sass/ckeditor-styles.scss */
h1 {
  color: #999999;
  font-weight: normal;
  line-height: 1em;
}

/* line 14, ../sass/ckeditor-styles.scss */
h2 {
  color: #002164;
  font-weight: normal;
  line-height: 1.25em;
}
@media (min-width: 626px) and (max-width: 869px) {
  /* line 14, ../sass/ckeditor-styles.scss */
  h2 {
    line-height: 1em;
  }
}
@media (max-width: 625px) {
  /* line 14, ../sass/ckeditor-styles.scss */
  h2 {
    line-height: 1em;
  }
}

/* line 26, ../sass/ckeditor-styles.scss */
h3, #pure-metrics ul .metric-value, .view-publications .view-content .year-title {
  color: #1e799f;
  font-weight: normal;
}

/*
select,
button,
input[type=submit],
input[type=button] {
	//@include gradient($gray * 1.125, $lightgray, 0);
	background: $lightgray;
	color: $darkblue;
	text-shadow: 1px -1px 0 $lightgray;
	border: 0 $gray * 1.25 solid;
	border-width: 0 1px 1px 0;
	padding: .5 * $base-font-size $base-font-size;
	border-radius: 0;//.5 * $base-font-size;
	box-shadow: inset 1px 1px 5px $white;
	margin: 0 .5em .5em 0;
	height: 36px;
}

button:hover,
input[type=submit]:hover,
input[type=button]:hover {
	box-shadow: inset 1px 1px 15px $white;
	
}

button:active,
input[type=submit]:active,
input[type=button]:active {
  box-shadow: inset -1px -1px 5px $white;
}
*/
/* line 62, ../sass/ckeditor-styles.scss */
input[type=textfield],
input[type=email] {
  padding: .125em .5em;
}

/* line 68, ../sass/ckeditor-styles.scss */
.header-1 button,
.header-1 input[type=submit],
.header-1 input[type=button] {
  color: #002164;
}

/* line 77, ../sass/ckeditor-styles.scss */
.header-2 button,
.header-2 input[type=submit],
.header-2 input[type=button] {
  color: #4e6494;
}

/* line 86, ../sass/ckeditor-styles.scss */
table caption {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
/* line 91, ../sass/ckeditor-styles.scss */
table.content-table th {
  color: #ffffff;
  background-color: #002164;
  font-weight: normal;
  text-align: left;
}
/* line 97, ../sass/ckeditor-styles.scss */
table.content-table tr {
  border: 1px white solid;
  border-width: 1px 0;
  background-color: #f2f2f2;
}
/* line 101, ../sass/ckeditor-styles.scss */
table.content-table tr:nth-child(2) {
  background-color: #e6e6e6;
}
/* line 105, ../sass/ckeditor-styles.scss */
table.content-table th, table.content-table td {
  padding: .125em .5em;
}

/* line 113, ../sass/ckeditor-styles.scss */
.header-2 table.content-table th {
  background-color: #4e6494;
}

@media (max-width: 625px) {
  /* line 4, ../sass/_dashboard.scss */
  #dashboard div#dashboard_main {
    float: none;
    width: 100%;
    background: #fefefe;
  }
  /* line 9, ../sass/_dashboard.scss */
  #dashboard div#dashboard_sidebar {
    float: none;
    width: 100%;
    background: #efefef;
  }
}
/* SMACSS theme rules */
/* @import "theme-A"; */
/* @import "theme-B"; */
