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

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

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

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

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

/* Remove default margin. */
/* line 128, ../sass/_normalize.scss */
body {
  margin: 0;
  padding: 0;
  background: #D7DCDE;
}

/**
 * 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
 */
/* line 140, ../sass/_normalize.scss */
a:link {
  color: #0071b9;
}

/* line 143, ../sass/_normalize.scss */
a:visited {
  color: #0071b9;
}

/* line 146, ../sass/_normalize.scss */
a:hover,
a:focus {
  color: #be272d;
}

/* Address `outline` inconsistency between Chrome and other browsers. */
/* line 154, ../sass/_normalize.scss */
a:focus {
  outline: thin dotted;
}

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

/* line 180, ../sass/_normalize.scss */
p:first-of-type {
  margin-top: 20px;
}

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

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 193, ../sass/_normalize.scss */
h1, #block-views-news-and-upcoming-events-block h2.block-title, #block-views-news-and-upcoming-events-block .view-research-topics .views-field-name .block-title.field-content, .view-research-topics .views-field-name #block-views-news-and-upcoming-events-block .block-title.field-content {
  font-size: 45px;
}
@media (max-width: 480px) {
  /* line 193, ../sass/_normalize.scss */
  h1, #block-views-news-and-upcoming-events-block h2.block-title, #block-views-news-and-upcoming-events-block .view-research-topics .views-field-name .block-title.field-content, .view-research-topics .views-field-name #block-views-news-and-upcoming-events-block .block-title.field-content {
    font-size: 9vw;
  }
}

/* line 199, ../sass/_normalize.scss */
h2, .view-research-topics .views-field-name .field-content {
  font-size: 37.5px;
}
@media (max-width: 480px) {
  /* line 199, ../sass/_normalize.scss */
  h2, .view-research-topics .views-field-name .field-content {
    font-size: 7vw;
  }
}

/* line 205, ../sass/_normalize.scss */
h3 {
  font-size: 30px;
}
@media (max-width: 480px) {
  /* line 205, ../sass/_normalize.scss */
  h3 {
    font-size: 6vw;
  }
}

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

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

/* line 217, ../sass/_normalize.scss */
h6, .field-name-field-related-publications .field-label {
  font-size: 11.25px;
}

/* line 221, ../sass/_normalize.scss */
h1, #block-views-news-and-upcoming-events-block h2.block-title, #block-views-news-and-upcoming-events-block .view-research-topics .views-field-name .block-title.field-content, .view-research-topics .views-field-name #block-views-news-and-upcoming-events-block .block-title.field-content, h2, .view-research-topics .views-field-name .field-content, h3, h4, h5, h6, .field-name-field-related-publications .field-label {
  line-height: 1.125em;
  margin-top: 1.25rem;
  margin-bottom: 0.25em;
  font-weight: normal;
}

/* line 228, ../sass/_normalize.scss */
p + h2, .view-research-topics .views-field-name p + .field-content,
p + h3,
table + h2,
.view-research-topics .views-field-name table + .field-content,
table + h3,
ul + h2,
.view-research-topics .views-field-name ul + .field-content,
ul + h3,
ol + h2,
.view-research-topics .views-field-name ol + .field-content,
ol + h3 {
  margin-top: 1.75rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * Lists
 */
/* line 328, ../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 337, ../sass/_normalize.scss */
dl li,
menu li,
ol li,
ul li {
  line-height: 1.25em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

/* line 345, ../sass/_normalize.scss */
#content ul:not([class]) {
  position: relative;
}
/* line 347, ../sass/_normalize.scss */
#content ul:not([class]) li {
  list-style-type: none;
  list-style-image: none;
}
/* line 40, ../sass/_mixins.scss */
#content ul:not([class]) li:before {
  /*font-family: 'Glyphicons Halflings';
  content: "\e258";
  color: $color;
  position: absolute;
  left: 0;
  font-size: 0.65 * $size;*/
  content: "•";
  display: block;
  margin-left: -18px;
  font-size: 18px;
  float: left;
}

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

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

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

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

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

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

/**
 * Forms
 */
/* Define consistent border, margin, and padding. */
/* line 429, ../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.42333em;
  border-bottom-width: 0.06667em;
  border-bottom-style: solid;
  padding-bottom: 0.84333em;
  border-left-width: 0.06667em;
  border-left-style: solid;
  padding-left: 0.84333em;
  border-right-width: 0.06667em;
  border-right-style: solid;
  padding-right: 0.84333em;
}

/**
 * 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 444, ../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 459, ../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 478, ../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 489, ../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 503, ../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 517, ../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 528, ../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 543, ../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 552, ../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 558, ../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 568, ../sass/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

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

/**
 * Tables
 */
/* line 587, ../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 599, ../sass/_normalize.scss */
#content table tr:nth-of-type(2n) {
  background-color: #FFFFFF;
}
/* line 602, ../sass/_normalize.scss */
#content table tr:nth-of-type(2n+1) {
  background-color: #e3e3e3;
}
/* line 606, ../sass/_normalize.scss */
#content table td, #content table th {
  line-height: 1.25em;
  padding: .5em;
  vertical-align: top;
  text-align: left;
}
/* line 614, ../sass/_normalize.scss */
#content table thead tr {
  color: white;
  background-color: #717171 !important;
}
/* line 617, ../sass/_normalize.scss */
#content table thead tr th {
  font-weight: normal;
}

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

/* Apply the shared properties of grid items in a single, efficient ruleset. */
/* line 41, ../sass/layouts/_responsive.scss */
#header,
#content,
#navigation,
.region-sidebar-first,
.region-sidebar-second,
#footer {
  padding-left: 10px;
  padding-right: 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
}

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

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

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

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

  /**
   * The layout when there are two sidebars.
   */
  /* line 116, ../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 118, ../sass/layouts/_responsive.scss */
  .two-sidebars #content {
    float: left;
    width: 66.66667%;
    margin-left: 33.33333%;
    margin-right: -100%;
  }
  /* line 123, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
  }
  /* line 128, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 300%;
    margin-left: 0%;
    margin-right: -300%;
    padding-left: 0;
    padding-right: 0;
    clear: left;
    /* Apply the shared properties of grid items in a single, efficient ruleset. */
    /* Span 1 column, starting in the 1st column from left. */
    /* Span 1 column, starting in the 2nd column from left. */
    /* Span 1 column, starting in the 3rd column from left. */
  }
  /* line 134, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
  }
  /* line 138, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n+1) {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
    clear: left;
  }
  /* line 143, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n+2) {
    float: left;
    width: 33.33333%;
    margin-left: 33.33333%;
    margin-right: -66.66667%;
  }
  /* line 147, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n) {
    float: left;
    width: 33.33333%;
    margin-left: 66.66667%;
    margin-right: -100%;
  }
}
/**
 * Use 5 grid columns for larger screens.
 */
@media all and (min-width: 960px) {
  /**
   * The layout when there is only one sidebar, the left one.
   */
  /* line 164, ../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 166, ../sass/layouts/_responsive.scss */
  .sidebar-first #content {
    float: left;
    width: 65%;
    margin-left: 31.0%;
    margin-right: -96%;
  }
  /* line 171, ../sass/layouts/_responsive.scss */
  .sidebar-first .region-sidebar-first {
    float: left;
    width: 26%;
    margin-left: 0%;
    margin-right: -26%;
  }

  /**
   * The layout when there is only one sidebar, the right one.
   */
  /* line 179, ../sass/layouts/_responsive.scss */
  .sidebar-second {
    /* Span 4 columns, starting in 1st column from left. */
    /* Span 1 column, starting in 5th column from left. */
  }
  /* line 181, ../sass/layouts/_responsive.scss */
  .sidebar-second #content {
    float: left;
    width: 51%;
    margin-left: 0%;
    margin-right: -51%;
  }
  /* line 186, ../sass/layouts/_responsive.scss */
  .sidebar-second .region-sidebar-second {
    float: left;
    width: 46%;
    margin-left: 52%;
    margin-right: -98%;
  }

  /**
   * The layout when there are two sidebars.
   */
  /* line 194, ../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 196, ../sass/layouts/_responsive.scss */
  .two-sidebars #content {
    float: left;
    width: 60%;
    margin-left: 20%;
    margin-right: -80%;
  }
  /* line 201, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 20%;
    margin-left: 0%;
    margin-right: -20%;
  }
  /* line 206, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 20%;
    margin-left: 80%;
    margin-right: -100%;
  }
}
/* Component (SMACSS module) rules */
/**
 * @file
 * SMACSS Modules
 *
 * Adds modular sets of styles.
 *
 * Additional useful selectors can be found in Zen's online documentation.
 * https://drupal.org/node/1707736
 */
/**
 * Wireframes.
 */
/* line 15, ../sass/components/_misc.scss */
.with-wireframes #header,
.with-wireframes #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 39, ../sass/components/_misc.scss */
.element-invisible,
.element-focusable,
#navigation .block-menu .block__title,
#navigation .block-menu-block .block__title {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

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

/*
 * The skip-link link will be completely hidden until a user tabs to the link.
 */
/* line 63, ../sass/components/_misc.scss */
#skip-links,
#skip-link {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
/* line 69, ../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 85, ../sass/components/_misc.scss */
.header__logo {
  float: left;
  /* LTR */
  margin: 0;
  padding: 0;
}

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

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

/* The name of the website. */
/*
.header__site-name {
  margin: 0;
  @include adjust-font-size-to( $h1-font-size );
}
*/
/* The link around the name of the website. */
/* line 110, ../sass/components/_misc.scss */
.header__site-link:link, .header__site-link:visited {
  color: #000;
  text-decoration: none;
}
/* line 116, ../sass/components/_misc.scss */
.header__site-link:hover, .header__site-link:focus {
  text-decoration: underline;
}

/* The slogan (or tagline) of a website. */
/*
.header__site-slogan {
  margin: 0;
}*/
/* The secondary menu (login, etc.) */
/* line 129, ../sass/components/_misc.scss */
.header__secondary-menu {
  float: right;
  /* LTR */
}

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

/**
 * Navigation bar.
 */
/* line 142, ../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 146, ../sass/components/_misc.scss */
#navigation .block {
  margin-bottom: 0;
}
/* line 156, ../sass/components/_misc.scss */
#navigation .links,
#navigation .menu {
  margin: 0;
  padding: 0;
  text-align: left;
  /* LTR */
}
/* line 162, ../sass/components/_misc.scss */
#navigation .links li,
#navigation .menu li {
  /* A simple method to get navigation links to appear in one line. */
  float: left;
  /* LTR */
  padding: 0 10px 0 0;
  /* LTR */
  list-style-type: none;
  list-style-image: none;
}

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

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

/**
 * Messages.
 */
/* line 203, ../sass/components/_misc.scss */
.messages, .messages--status, .messages--warning, .messages--error {
  margin: 1.4em 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 218, ../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 227, ../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 237, ../sass/components/_misc.scss */
.messages__list {
  margin: 0;
}

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

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

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

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

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

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

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

/* line 288, ../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.4em;
  text-decoration: none;
}

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

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

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

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

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

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

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

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

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

/* line 381, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link:active, a.tabs-secondary__tab-link.is-active {
  text-shadow: 1px 1px 0 #333;
  background-color: #666;
  border-color: #000;
  color: #fff;
}

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

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

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

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

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

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

/**
 * Menus.
 */
/* line 488, ../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 495, ../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 502, ../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 511, ../sass/components/_misc.scss */
.menu a.active {
  color: #000;
}

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

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

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

/* Nested comments are indented. */
/* line 581, ../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 591, ../sass/components/_misc.scss */
.form-item {
  margin: 1.4em 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 595, ../sass/components/_misc.scss */
.form-checkboxes .form-item, .form-radios .form-item {
  /* Drupal core uses "0.4em 0". */
  margin: 0;
}
/* line 602, ../sass/components/_misc.scss */
tr.odd .form-item, tr.even .form-item {
  margin: 0;
}
/* line 608, ../sass/components/_misc.scss */
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}
/* line 615, ../sass/components/_misc.scss */
.form-item .description {
  font-size: 0.85em;
  line-height: 1.25em;
  margin: 0.5em 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @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;
  }
}
/* Custom theme style - add your style here */
/* line 1, ../sass/_theme.scss */
h1, #block-views-news-and-upcoming-events-block h2.block-title, #block-views-news-and-upcoming-events-block .view-research-topics .views-field-name .block-title.field-content, .view-research-topics .views-field-name #block-views-news-and-upcoming-events-block .block-title.field-content {
  font-family: "Proxima Nova", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  color: #0e7aa2;
}

/* line 8, ../sass/_theme.scss */
h2, .view-research-topics .views-field-name .field-content {
  font-family: "Proxima Nova", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  font-weight: bold;
  font-size: 23px;
}

/* line 14, ../sass/_theme.scss */
h3 {
  font-family: "Proxima Nova", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: #FFFFFF;
}

/* line 21, ../sass/_theme.scss */
h4 {
  font-family: "Proxima Nova", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  font-weight: bold;
  font-size: 24px;
  color: #0e7aa2;
}

/* line 28, ../sass/_theme.scss */
h5 {
  font-family: "Proxima Nova", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  font-size: 15px;
  color: #0071b9;
}

/* line 34, ../sass/_theme.scss */
h6, .field-name-field-related-publications .field-label {
  font-family: "Proxima Nova", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  font-size: 18px;
  color: #7b92a6;
  font-weight: bold;
}
/* line 40, ../sass/_theme.scss */
h6.principle-investigator-header, .field-name-field-related-publications .principle-investigator-header.field-label {
  margin-top: 0px;
}

/* line 45, ../sass/_theme.scss */
.h7 {
  font-family: "Proxima Nova", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  font-size: 18px;
  color: #FFFFFF;
  font-weight: bold;
}

/* line 52, ../sass/_theme.scss */
.research {
  font-size: 14px;
  color: #808080;
}

/* line 57, ../sass/_theme.scss */
.publication_year, h2.year-title, .view-research-topics .views-field-name .year-title.field-content {
  font-size: 26px;
  text-transform: uppercase;
  color: #0e7aa2;
}

/* line 63, ../sass/_theme.scss */
.list_publication {
  font-size: 15px;
  color: #4d4d4d;
}

/* line 68, ../sass/_theme.scss */
.members_only, a.members-only {
  font-family: "Proxima Nova", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  font-size: 15px;
  color: #cccccc;
}

/* line 74, ../sass/_theme.scss */
.navigation, #navigation #main-menu .links li a,
#navigation #main-menu .menu li a {
  font-family: "Proxima Nova", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  font-size: 18px;
  color: #000000;
}

/* line 80, ../sass/_theme.scss */
.rats {
  color: #000000;
  font-size: 14px;
}

/* line 85, ../sass/_theme.scss */
.name {
  font-size: 16px;
  text-transform: uppercase;
  color: #244674;
}

/* line 91, ../sass/_theme.scss */
.list_positions {
  font-family: "Proxima Nova", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  font-size: 15px;
  text-transform: uppercase;
}

/* line 97, ../sass/_theme.scss */
.head_name {
  font-family: "Proxima Nova", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  font-size: 72px;
  line-height: 60px;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  font-weight: 100;
  text-transform: uppercase;
}

/* line 108, ../sass/_theme.scss */
.main_title {
  font-family: "Proxima Nova", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  font-size: 27px;
  line-height: 32px;
  letter-spacing: 0.19px;
  color: #FFFFFF;
  font-weight: 100;
}

/* line 118, ../sass/_theme.scss */
.breadcrumbs_and_footer, .region-footer .block-weizmann-blocks, .region-footer .block-weizmann-blocks a, .breadcrumb li, .breadcrumb a {
  font-family: "Proxima Nova", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  font-size: 13px;
  color: #4d4d4d;
}

/* line 125, ../sass/_theme.scss */
.arrows, .view-research-topics .views-field-tid .views-row .views-field-title a:after, .view-research-topics .views-field-tid .views-row .views-field-title a:hover:after, .block-views .view-research-topics .views-row .views-field-name span.field-content a:after, .block-views .view-research-topics .views-row .views-field-name span.field-content a:hover:after {
  content: " ";
  background: url("../images/arrows.svg");
  width: 16px;
  height: 16px;
  display: block;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  padding: 4px;
}

/* line 137, ../sass/_theme.scss */
.arrows-red, .menu-block-wrapper ul.menu li.menu__item a.menu__link:after,
.menu-block-wrapper ul.menu li.menu__item span.nolink:after, .menu-block-wrapper ul.menu li.menu__item a.menu__link.active-trail:after,
.menu-block-wrapper ul.menu li.menu__item span.nolink.active-trail:after {
  content: " ";
  background: url("../images/arrows-red.svg");
  width: 16px;
  height: 16px;
  display: block;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  padding: 4px;
}

/* line 149, ../sass/_theme.scss */
.arrows-base, a.arrows-base-link:before, a.news-teaser p:after, .region-content .contactus-links a:before {
  content: " ";
  background: url("../images/arrows_base.svg");
  width: 16px;
  height: 16px;
  display: block;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: left 2px;
}

/* line 160, ../sass/_theme.scss */
a.arrows-base-link {
  text-decoration: none;
}
/* line 162, ../sass/_theme.scss */
a.arrows-base-link:before {
  height: 10px;
  margin-right: 10px;
  display: inline-block;
}

/* line 170, ../sass/_theme.scss */
#page {
  box-shadow: 1px 1px 20px #808080;
  background: #FFFFFF;
}

/* line 175, ../sass/_theme.scss */
#header {
  padding-top: 10px;
  padding-left: 0px;
  padding-right: 0px;
  position: relative;
}

/* line 182, ../sass/_theme.scss */
#name-and-slogan {
  float: right;
  width: 645px;
  margin-right: 3%;
}
/* line 187, ../sass/_theme.scss */
#name-and-slogan h1#site-name, #name-and-slogan #block-views-news-and-upcoming-events-block h2#site-name.block-title, #block-views-news-and-upcoming-events-block #name-and-slogan h2#site-name.block-title, #name-and-slogan #block-views-news-and-upcoming-events-block .view-research-topics .views-field-name #site-name.block-title.field-content, #block-views-news-and-upcoming-events-block .view-research-topics .views-field-name #name-and-slogan #site-name.block-title.field-content, #name-and-slogan .view-research-topics .views-field-name #block-views-news-and-upcoming-events-block #site-name.block-title.field-content, .view-research-topics .views-field-name #block-views-news-and-upcoming-events-block #name-and-slogan #site-name.block-title.field-content,
#name-and-slogan span#site-name {
  float: right;
  margin-top: 10px;
  margin-bottom: 0px;
  border-right: 1px solid #808080;
  padding-right: 10px;
}
/* line 194, ../sass/_theme.scss */
#name-and-slogan h1#site-name a, #name-and-slogan #block-views-news-and-upcoming-events-block h2#site-name.block-title a, #block-views-news-and-upcoming-events-block #name-and-slogan h2#site-name.block-title a, #name-and-slogan #block-views-news-and-upcoming-events-block .view-research-topics .views-field-name #site-name.block-title.field-content a, #block-views-news-and-upcoming-events-block .view-research-topics .views-field-name #name-and-slogan #site-name.block-title.field-content a, #name-and-slogan .view-research-topics .views-field-name #block-views-news-and-upcoming-events-block #site-name.block-title.field-content a, .view-research-topics .views-field-name #block-views-news-and-upcoming-events-block #name-and-slogan #site-name.block-title.field-content a,
#name-and-slogan span#site-name a {
  color: #808080;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 15px;
  font-weight: normal;
  margin-top: 25px;
  display: block;
}
/* line 205, ../sass/_theme.scss */
#name-and-slogan #logo {
  float: right;
}
/* line 207, ../sass/_theme.scss */
#name-and-slogan #logo img {
  margin-top: 5px;
  opacity: 0.7;
  padding-left: 10px;
  width: 230px;
}
@media (max-width: 480px) {
  /* line 182, ../sass/_theme.scss */
  #name-and-slogan {
    width: 100%;
    padding: 0px;
    margin: 0 auto;
    float: none;
  }
  /* line 222, ../sass/_theme.scss */
  #name-and-slogan #logo {
    float: none;
    width: 100%;
  }
  /* line 225, ../sass/_theme.scss */
  #name-and-slogan #logo img {
    width: 90%;
    padding-right: 5%;
    padding-left: 5%;
    padding-top: 20px;
  }
  /* line 233, ../sass/_theme.scss */
  #name-and-slogan h1#site-name, #name-and-slogan #block-views-news-and-upcoming-events-block h2#site-name.block-title, #block-views-news-and-upcoming-events-block #name-and-slogan h2#site-name.block-title, #name-and-slogan #block-views-news-and-upcoming-events-block .view-research-topics .views-field-name #site-name.block-title.field-content, #block-views-news-and-upcoming-events-block .view-research-topics .views-field-name #name-and-slogan #site-name.block-title.field-content, #name-and-slogan .view-research-topics .views-field-name #block-views-news-and-upcoming-events-block #site-name.block-title.field-content, .view-research-topics .views-field-name #block-views-news-and-upcoming-events-block #name-and-slogan #site-name.block-title.field-content,
  #name-and-slogan span#site-name {
    float: none;
    margin-top: 0px;
    margin-bottom: 0px;
    border-right: none;
    width: 90%;
    margin: 0 auto;
    padding-right: 5%;
    padding-left: 5%;
  }
  /* line 243, ../sass/_theme.scss */
  #name-and-slogan h1#site-name a, #name-and-slogan #block-views-news-and-upcoming-events-block h2#site-name.block-title a, #block-views-news-and-upcoming-events-block #name-and-slogan h2#site-name.block-title a, #name-and-slogan #block-views-news-and-upcoming-events-block .view-research-topics .views-field-name #site-name.block-title.field-content a, #block-views-news-and-upcoming-events-block .view-research-topics .views-field-name #name-and-slogan #site-name.block-title.field-content a, #name-and-slogan .view-research-topics .views-field-name #block-views-news-and-upcoming-events-block #site-name.block-title.field-content a, .view-research-topics .views-field-name #block-views-news-and-upcoming-events-block #name-and-slogan #site-name.block-title.field-content a,
  #name-and-slogan span#site-name a {
    text-transform: capitalize;
    font-size: 1.2em;
    line-height: 1em;
    margin-top: 0px;
    margin-left: 5%;
  }
  /* line 249, ../sass/_theme.scss */
  #name-and-slogan h1#site-name a span, #name-and-slogan #block-views-news-and-upcoming-events-block h2#site-name.block-title a span, #block-views-news-and-upcoming-events-block #name-and-slogan h2#site-name.block-title a span, #name-and-slogan #block-views-news-and-upcoming-events-block .view-research-topics .views-field-name #site-name.block-title.field-content a span, #block-views-news-and-upcoming-events-block .view-research-topics .views-field-name #name-and-slogan #site-name.block-title.field-content a span, #name-and-slogan .view-research-topics .views-field-name #block-views-news-and-upcoming-events-block #site-name.block-title.field-content a span, .view-research-topics .views-field-name #block-views-news-and-upcoming-events-block #name-and-slogan #site-name.block-title.field-content a span,
  #name-and-slogan span#site-name a span {
    display: block;
    position: absolute;
  }
  /* line 256, ../sass/_theme.scss */
  #name-and-slogan span#site-name {
    display: block;
    height: 15px;
    margin-top: 10px;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 645px) {
  /* line 182, ../sass/_theme.scss */
  #name-and-slogan {
    width: 100%;
    padding: 0px;
    margin: 0 auto;
    float: none;
  }
  /* line 272, ../sass/_theme.scss */
  #name-and-slogan #logo {
    float: none;
    width: 100%;
  }
  /* line 275, ../sass/_theme.scss */
  #name-and-slogan #logo img {
    width: 90%;
    padding-right: 5%;
    padding-left: 5%;
    padding-top: 20px;
  }
  /* line 283, ../sass/_theme.scss */
  #name-and-slogan h1#site-name, #name-and-slogan #block-views-news-and-upcoming-events-block h2#site-name.block-title, #block-views-news-and-upcoming-events-block #name-and-slogan h2#site-name.block-title, #name-and-slogan #block-views-news-and-upcoming-events-block .view-research-topics .views-field-name #site-name.block-title.field-content, #block-views-news-and-upcoming-events-block .view-research-topics .views-field-name #name-and-slogan #site-name.block-title.field-content, #name-and-slogan .view-research-topics .views-field-name #block-views-news-and-upcoming-events-block #site-name.block-title.field-content, .view-research-topics .views-field-name #block-views-news-and-upcoming-events-block #name-and-slogan #site-name.block-title.field-content,
  #name-and-slogan span#site-name {
    float: none;
    margin-top: 0px;
    margin-bottom: 0px;
    border-right: none;
    width: 90%;
    margin: 0 auto;
    padding-right: 5%;
    padding-left: 5%;
  }
  /* line 293, ../sass/_theme.scss */
  #name-and-slogan h1#site-name a, #name-and-slogan #block-views-news-and-upcoming-events-block h2#site-name.block-title a, #block-views-news-and-upcoming-events-block #name-and-slogan h2#site-name.block-title a, #name-and-slogan #block-views-news-and-upcoming-events-block .view-research-topics .views-field-name #site-name.block-title.field-content a, #block-views-news-and-upcoming-events-block .view-research-topics .views-field-name #name-and-slogan #site-name.block-title.field-content a, #name-and-slogan .view-research-topics .views-field-name #block-views-news-and-upcoming-events-block #site-name.block-title.field-content a, .view-research-topics .views-field-name #block-views-news-and-upcoming-events-block #name-and-slogan #site-name.block-title.field-content a,
  #name-and-slogan span#site-name a {
    text-transform: capitalize;
    margin-top: -5px;
  }
}

/* line 304, ../sass/_theme.scss */
ul.dotted-before li {
  display: block;
  padding-left: 18px;
  margin-bottom: 5px;
  list-style-image: none;
  list-style-position: inherit;
  list-style-type: none;
}
/* line 312, ../sass/_theme.scss */
ul.dotted-before li:before {
  content: "•";
  display: block;
  margin-left: -18px;
  font-size: 18px;
  float: left;
}

/* line 322, ../sass/_theme.scss */
#site-slogan {
  width: 35%;
  height: 360px;
  background: #be272d;
  margin-top: 70px;
}
/* line 329, ../sass/_theme.scss */
#site-slogan .head_name {
  display: block;
  width: 80%;
  padding: 10% 10% 0;
  margin-bottom: 5%;
}
/* line 336, ../sass/_theme.scss */
#site-slogan .main_title {
  display: block;
  width: 80%;
  padding: 0 10% 10%;
}
@media (max-width: 480px) {
  /* line 322, ../sass/_theme.scss */
  #site-slogan {
    width: 100%;
    display: block;
    margin-top: 10px;
    height: auto;
  }
  /* line 348, ../sass/_theme.scss */
  #site-slogan .head_name {
    display: block;
    width: 90%;
    padding: 2% 5% 0;
    margin-bottom: 0px;
    font-size: 2rem;
    line-height: 40px;
  }
  /* line 357, ../sass/_theme.scss */
  #site-slogan .main_title {
    display: block;
    width: 90%;
    padding: 0 5% 3%;
    font-size: 1.5rem;
    line-height: 25px;
  }
}
@media (min-width: 646px) and (max-width: 990px) {
  /* line 322, ../sass/_theme.scss */
  #site-slogan {
    width: 35%;
    height: 334px;
    background: #be272d;
    margin-top: 70px;
  }
  /* line 372, ../sass/_theme.scss */
  #site-slogan .head_name {
    font-size: 2.3rem;
  }
  /* line 376, ../sass/_theme.scss */
  #site-slogan .main_title {
    font-size: 1.5rem;
  }
}
@media (min-width: 481px) and (max-width: 645px) {
  /* line 322, ../sass/_theme.scss */
  #site-slogan {
    width: 100%;
    display: block;
    margin-top: 10px;
    height: auto;
  }
  /* line 387, ../sass/_theme.scss */
  #site-slogan .head_name {
    display: block;
    width: 90%;
    padding: 5% 5% 0;
    margin-bottom: 0px;
    font-size: 2.3rem;
  }
  /* line 395, ../sass/_theme.scss */
  #site-slogan .main_title {
    display: block;
    width: 90%;
    padding: 0 5% 5%;
    font-size: 1.5rem;
  }
}

/* line 404, ../sass/_theme.scss */
.views-slideshow-controls-bottom {
  bottom: 70px;
  display: block;
  position: absolute;
  right: 30px;
  z-index: 20;
}
/* line 410, ../sass/_theme.scss */
.views-slideshow-controls-bottom .views-slideshow-pager-field-item {
  display: inline-block;
  width: 15px;
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  display: inline-block;
  height: 15px;
  line-height: 30px;
  margin: 5px 2px 0;
}
/* line 420, ../sass/_theme.scss */
.views-slideshow-controls-bottom .views-slideshow-pager-field-item.active {
  opacity: 0.7;
}
@media (max-width: 480px) {
  /* line 404, ../sass/_theme.scss */
  .views-slideshow-controls-bottom {
    bottom: 20px;
    right: 20px;
  }
}
@media (min-width: 646px) and (max-width: 990px) {
  /* line 404, ../sass/_theme.scss */
  .views-slideshow-controls-bottom {
    left: 20px;
  }
}
@media (min-width: 481px) and (max-width: 645px) {
  /* line 404, ../sass/_theme.scss */
  .views-slideshow-controls-bottom {
    bottom: 20px;
    right: 20px;
  }
}

/* line 442, ../sass/_theme.scss */
#block-views-top-slider-block {
  position: absolute;
  top: 80px;
  right: 0px;
  width: 65.2%;
}
@media (max-width: 480px) {
  /* line 442, ../sass/_theme.scss */
  #block-views-top-slider-block {
    position: relative;
    top: 0px;
    right: 0px;
    width: 100%;
    margin-bottom: 5px;
  }
}
@media (min-width: 646px) and (max-width: 990px) {
  /* line 442, ../sass/_theme.scss */
  #block-views-top-slider-block {
    left: 35%;
    width: 65%;
    overflow: hidden;
    height: 334px;
  }
  /* line 461, ../sass/_theme.scss */
  #block-views-top-slider-block .views-slideshow-cycle-main-frame-row {
    height: 334px !important;
    width: 645px !important;
  }
}
@media (min-width: 481px) and (max-width: 645px) {
  /* line 442, ../sass/_theme.scss */
  #block-views-top-slider-block {
    position: relative;
    top: 0px;
    right: 0px;
    width: 100%;
  }
}

/* line 476, ../sass/_theme.scss */
#navigation {
  background: #FFFFFF;
  opacity: 0.9;
  margin-top: -45px;
  height: 45px;
  z-index: 30;
  padding-left: 3%;
  padding-right: 3%;
  position: relative;
}
/* line 487, ../sass/_theme.scss */
#navigation #main-menu .links li,
#navigation #main-menu .menu li {
  margin-bottom: 0px;
  margin-top: 0px;
  padding: 0 22px 0 0;
}
/* line 492, ../sass/_theme.scss */
#navigation #main-menu .links li a,
#navigation #main-menu .menu li a {
  text-decoration: none;
  text-transform: uppercase;
  line-height: 45px;
  padding-bottom: 10px;
  padding-right: 10px;
  padding-left: 10px;
}
/* line 500, ../sass/_theme.scss */
#navigation #main-menu .links li a.active, #navigation #main-menu .links li a.active-trail,
#navigation #main-menu .menu li a.active,
#navigation #main-menu .menu li a.active-trail {
  border-bottom: 5px solid #be272d;
}
@media (max-width: 480px) {
  /* line 476, ../sass/_theme.scss */
  #navigation {
    top: 0px;
    left: auto;
    right: 0px;
    width: auto;
    margin-top: 0px;
    position: fixed;
    width: 100%;
    background: #4d4d4d;
    height: 40px;
    width: 100%;
    padding: 0px;
  }
  /* line 520, ../sass/_theme.scss */
  #navigation .responsive-menus.responsified {
    width: 100%;
    padding-top: 10px;
  }
  /* line 523, ../sass/_theme.scss */
  #navigation .responsive-menus.responsified span.toggler {
    background: none;
    border: none;
    border-radius: 0px;
    box-shadow: none;
    font-weight: 100;
    position: relative;
    display: block;
    text-align: right;
    padding-right: 10px;
  }
  /* line 535, ../sass/_theme.scss */
  #navigation .responsive-menus.responsified nav#rm-removed {
    margin-top: 5px;
  }
  /* line 540, ../sass/_theme.scss */
  #navigation .responsive-menus.responsified nav#rm-removed ul li.active a,
  #navigation .responsive-menus.responsified nav#rm-removed ul li.active-trail a {
    background: #be272d;
  }
}
@media (min-width: 646px) and (max-width: 990px) {
  /* line 552, ../sass/_theme.scss */
  #navigation #main-menu .links li,
  #navigation #main-menu .menu li {
    padding: 0 12px 0 0;
  }
  /* line 555, ../sass/_theme.scss */
  #navigation #main-menu .links li a,
  #navigation #main-menu .menu li a {
    padding-bottom: 10px;
    padding-right: 5px;
    padding-left: 5px;
    font-size: 1rem;
  }
}
@media (min-width: 481px) and (max-width: 645px) {
  /* line 476, ../sass/_theme.scss */
  #navigation {
    top: 0px;
    left: auto;
    right: 0px;
    width: auto;
    margin-top: 0px;
    position: fixed;
    width: 100%;
    background: #4d4d4d;
    height: 40px;
    width: 100%;
    padding: 0px;
  }
  /* line 577, ../sass/_theme.scss */
  #navigation .responsive-menus.responsified {
    width: 100%;
    padding-top: 10px;
  }
  /* line 580, ../sass/_theme.scss */
  #navigation .responsive-menus.responsified span.toggler {
    background: none;
    border: none;
    border-radius: 0px;
    box-shadow: none;
    font-weight: 100;
    position: relative;
    display: block;
    text-align: right;
    padding-right: 10px;
  }
  /* line 592, ../sass/_theme.scss */
  #navigation .responsive-menus.responsified nav#rm-removed {
    margin-top: 5px;
  }
  /* line 597, ../sass/_theme.scss */
  #navigation .responsive-menus.responsified nav#rm-removed ul li.active a,
  #navigation .responsive-menus.responsified nav#rm-removed ul li.active-trail a {
    background: #be272d;
  }
}

/* line 610, ../sass/_theme.scss */
#clearFooter {
  clear: both;
  height: 100px;
  padding-top: 40px;
}

/* line 616, ../sass/_theme.scss */
.region-footer {
  background-color: #ffffff;
  bottom: 0;
  clear: both;
  display: block;
  height: 50px;
  margin-top: -50px;
  padding: 0;
  position: relative;
  width: 98%;
  margin-left: 1%;
  margin-right: 1%;
}
/* line 629, ../sass/_theme.scss */
.region-footer .block-weizmann-blocks {
  margin: 0 auto;
  max-width: 990px;
  border-top: 1px solid;
  padding-left: 1%;
  padding-right: 1%;
}

/* line 648, ../sass/_theme.scss */
.breadcrumb a {
  text-decoration: none;
}
/* line 653, ../sass/_theme.scss */
.breadcrumb a:hover {
  text-decoration: underline;
}

/* line 658, ../sass/_theme.scss */
h1#page-title, #block-views-news-and-upcoming-events-block h2#page-title.block-title, #block-views-news-and-upcoming-events-block .view-research-topics .views-field-name #page-title.block-title.field-content, .view-research-topics .views-field-name #block-views-news-and-upcoming-events-block #page-title.block-title.field-content {
  line-height: 1.125em;
  margin-bottom: 0.25em;
  margin-top: 1rem;
  font-weight: 100;
}

/* line 665, ../sass/_theme.scss */
h1.title-research, #block-views-news-and-upcoming-events-block h2.title-research.block-title, #block-views-news-and-upcoming-events-block .view-research-topics .views-field-name .title-research.block-title.field-content, .view-research-topics .views-field-name #block-views-news-and-upcoming-events-block .title-research.block-title.field-content {
  margin-top: 0.5em;
  margin-bottom: 1em;
}

/* line 670, ../sass/_theme.scss */
a.news-teaser {
  font-size: 16px;
  color: #4d4d4d;
  text-decoration: none;
}
/* line 677, ../sass/_theme.scss */
a.news-teaser p:after {
  display: inline-block;
  margin-left: 5px;
}
/* line 684, ../sass/_theme.scss */
a.news-teaser:hover {
  color: #be272d;
}
/* line 687, ../sass/_theme.scss */
a.news-teaser:hover p:after {
  background: url("../images/arrows-be272d.svg") no-repeat left 2px/16px 16px;
}
/* line 694, ../sass/_theme.scss */
a.news-teaser:focus p {
  outline: 1px dotted;
}

/* line 701, ../sass/_theme.scss */
#main {
  padding-right: 4%;
  padding-left: 4%;
}

@media (max-width: 480px) {
  /* line 706, ../sass/_theme.scss */
  #content {
    padding-left: 0px;
    padding-right: 0px;
  }
}

/* line 713, ../sass/_theme.scss */
.no-sidebars #content {
  padding: 0px;
}

/* line 718, ../sass/_theme.scss */
.sidebar-first .region-sidebar-first {
  padding-left: 0px;
  padding-right: 0px;
  margin-top: 1%;
}
/* line 724, ../sass/_theme.scss */
.sidebar-first #content {
  margin-top: 1%;
}

/* line 729, ../sass/_theme.scss */
.sidebar-second #content {
  padding-left: 0px;
}

/* line 733, ../sass/_theme.scss */
#block-views-news-and-upcoming-events-block {
  background: #e3e9ed;
  padding: 5%;
}
/* line 736, ../sass/_theme.scss */
#block-views-news-and-upcoming-events-block h2.block-title, #block-views-news-and-upcoming-events-block .view-research-topics .views-field-name .block-title.field-content, .view-research-topics .views-field-name #block-views-news-and-upcoming-events-block .block-title.field-content {
  float: left;
  display: block;
  width: 38%;
  margin-top: 0px;
  padding-right: 2%;
  font-weight: 200;
}
/* line 746, ../sass/_theme.scss */
#block-views-news-and-upcoming-events-block .view-news-and-upcoming-events {
  display: inline-block;
  width: 58%;
  padding-left: 2%;
}
/* line 752, ../sass/_theme.scss */
#block-views-news-and-upcoming-events-block .views-row {
  border-bottom: 2px solid #0071b9;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  /* line 758, ../sass/_theme.scss */
  #block-views-news-and-upcoming-events-block h2.block-title, #block-views-news-and-upcoming-events-block .view-research-topics .views-field-name .block-title.field-content, .view-research-topics .views-field-name #block-views-news-and-upcoming-events-block .block-title.field-content {
    width: 100%;
  }
  /* line 762, ../sass/_theme.scss */
  #block-views-news-and-upcoming-events-block .view-news-and-upcoming-events {
    width: 100%;
    padding: 0px;
  }
  /* line 767, ../sass/_theme.scss */
  #block-views-news-and-upcoming-events-block .views-row.views-row-first {
    border-top: 2px solid #0071b9;
    padding-top: 10px;
  }
}
@media (min-width: 646px) and (max-width: 990px) {
  /* line 774, ../sass/_theme.scss */
  #block-views-news-and-upcoming-events-block h2.block-title, #block-views-news-and-upcoming-events-block .view-research-topics .views-field-name .block-title.field-content, .view-research-topics .views-field-name #block-views-news-and-upcoming-events-block .block-title.field-content {
    width: 100%;
  }
  /* line 778, ../sass/_theme.scss */
  #block-views-news-and-upcoming-events-block .view-news-and-upcoming-events {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 645px) {
  /* line 784, ../sass/_theme.scss */
  #block-views-news-and-upcoming-events-block h2.block-title, #block-views-news-and-upcoming-events-block .view-research-topics .views-field-name .block-title.field-content, .view-research-topics .views-field-name #block-views-news-and-upcoming-events-block .block-title.field-content {
    width: 100%;
  }
  /* line 788, ../sass/_theme.scss */
  #block-views-news-and-upcoming-events-block .view-news-and-upcoming-events {
    width: 100%;
  }
}

/* line 795, ../sass/_theme.scss */
.views-row .node, .quicktabs_main .node {
  border-bottom: none;
  padding: 0px;
}

/* line 801, ../sass/_theme.scss */
.view-research-topics .views-row {
  width: 47%;
  display: block;
}
/* line 805, ../sass/_theme.scss */
.view-research-topics .views-row.views-row-odd {
  float: left;
}
/* line 808, ../sass/_theme.scss */
.view-research-topics .views-row.views-row-even {
  float: right;
}
/* line 813, ../sass/_theme.scss */
.view-research-topics .views-field-field-research-image {
  width: 100%;
  margin-bottom: -7px;
}
/* line 818, ../sass/_theme.scss */
.view-research-topics .views-field-name {
  padding: 20px;
  background-blend-mode: multiply;
  background: #be272d;
}
/* line 822, ../sass/_theme.scss */
.view-research-topics .views-field-name .field-content {
  color: #FFFFFF;
  font-weight: 400;
  margin-top: 0px;
  margin-bottom: 0px;
}
/* line 831, ../sass/_theme.scss */
.view-research-topics .views-field-tid {
  background: #e3e9ed;
  padding-bottom: 20px;
  padding-top: 10px;
}
/* line 836, ../sass/_theme.scss */
.view-research-topics .views-field-tid .views-row {
  width: 92%;
  padding: 0 4%;
}
/* line 839, ../sass/_theme.scss */
.view-research-topics .views-field-tid .views-row .views-field-title {
  border-bottom: 1px solid #0071b9;
  margin-top: 5px;
  padding: 5px 10px;
  position: relative;
}
/* line 845, ../sass/_theme.scss */
.view-research-topics .views-field-tid .views-row .views-field-title a {
  text-decoration: none;
  color: #4d4d4d;
  padding-right: 35px;
  display: inline-block;
}
/* line 852, ../sass/_theme.scss */
.view-research-topics .views-field-tid .views-row .views-field-title a:hover {
  color: #be272d;
}
/* line 856, ../sass/_theme.scss */
.view-research-topics .views-field-tid .views-row .views-field-title a:after {
  background-color: #8b989f;
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 30%;
}
/* line 865, ../sass/_theme.scss */
.view-research-topics .views-field-tid .views-row .views-field-title a:hover:after {
  background-color: #be272d;
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 30%;
}
/* line 876, ../sass/_theme.scss */
.view-research-topics .views-field-tid .views-row.views-row-last .views-field-title {
  border-bottom: 0px;
}
@media (max-width: 480px) {
  /* line 884, ../sass/_theme.scss */
  .view-research-topics .views-row {
    width: 100%;
    margin-bottom: 0px;
  }
  /* line 888, ../sass/_theme.scss */
  .view-research-topics .views-row .views-field-name .field-content {
    font-size: 1.3rem;
  }
  /* line 895, ../sass/_theme.scss */
  .view-research-topics .views-row .views-field-tid .views-field-title a {
    display: block;
    padding-right: 25px;
  }
}
@media (min-width: 481px) and (max-width: 645px) {
  /* line 905, ../sass/_theme.scss */
  .view-research-topics .views-row {
    width: 100%;
    margin-bottom: 20px;
  }
  /* line 909, ../sass/_theme.scss */
  .view-research-topics .views-row .views-field-name .field-content {
    font-size: 1.3rem;
  }
  /* line 916, ../sass/_theme.scss */
  .view-research-topics .views-row .views-field-tid .views-field-title a {
    display: block;
    padding-right: 25px;
  }
}

/* line 929, ../sass/_theme.scss */
.front .view-research-topics .views-field-name:hover {
  background: #852327;
}

/* line 936, ../sass/_theme.scss */
.menu-block-wrapper ul.menu {
  padding-left: 0px;
}
/* line 938, ../sass/_theme.scss */
.menu-block-wrapper ul.menu li.menu__item {
  background: #8B989F;
  list-style-image: none;
  list-style-position: inherit;
  list-style-type: none;
  margin: 0px;
  border-bottom: 1px solid #FFFFFF;
  opacity: 1;
}
/* line 947, ../sass/_theme.scss */
.menu-block-wrapper ul.menu li.menu__item:hover {
  background: #852327;
}
/* line 951, ../sass/_theme.scss */
.menu-block-wrapper ul.menu li.menu__item a.menu__link,
.menu-block-wrapper ul.menu li.menu__item span.nolink {
  color: #FFFFFF;
  text-decoration: none;
  padding: 10px 45px 10px 10px;
  display: block;
  position: relative;
}
/* line 959, ../sass/_theme.scss */
.menu-block-wrapper ul.menu li.menu__item a.menu__link:after,
.menu-block-wrapper ul.menu li.menu__item span.nolink:after {
  background-color: white;
  display: inline-block;
  right: 10px;
  top: 40%;
  position: absolute;
}
/* line 969, ../sass/_theme.scss */
.menu-block-wrapper ul.menu li.menu__item a.menu__link.active-trail:after,
.menu-block-wrapper ul.menu li.menu__item span.nolink.active-trail:after {
  background-color: white;
  fill: #be272d;
  display: inline-block;
  right: 10px;
  top: 40%;
  position: absolute;
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
/* line 984, ../sass/_theme.scss */
.menu-block-wrapper ul.menu li.menu__item ul.menu {
  display: none;
}
/* line 986, ../sass/_theme.scss */
.menu-block-wrapper ul.menu li.menu__item ul.menu li.menu__item {
  border-bottom: 0px;
  background: #e3e9ed;
  padding: 0px 10px;
  opacity: 1;
}
/* line 991, ../sass/_theme.scss */
.menu-block-wrapper ul.menu li.menu__item ul.menu li.menu__item a.menu__link {
  color: #4d4d4d;
  text-decoration: none;
  border-bottom: 1px solid #0071b9;
  display: block;
  padding: 10px 10px 10px 10px;
}
/* line 999, ../sass/_theme.scss */
.menu-block-wrapper ul.menu li.menu__item ul.menu li.menu__item a.menu__link:hover, .menu-block-wrapper ul.menu li.menu__item ul.menu li.menu__item a.menu__link.active {
  color: #be272d;
}
/* line 1004, ../sass/_theme.scss */
.menu-block-wrapper ul.menu li.menu__item ul.menu li.menu__item a.menu__link:before {
  content: "»";
  display: inline-block;
  margin-left: -10px;
  width: 10px;
}
/* line 1011, ../sass/_theme.scss */
.menu-block-wrapper ul.menu li.menu__item ul.menu li.menu__item a.menu__link:after {
  content: none;
}
/* line 1017, ../sass/_theme.scss */
.menu-block-wrapper ul.menu li.menu__item ul.menu li.menu__item.last a.menu__link {
  border-bottom: 0px;
}
/* line 1025, ../sass/_theme.scss */
.menu-block-wrapper ul.menu li.menu__item.active-trail {
  opacity: 1;
  background: #be272d;
}
/* line 1028, ../sass/_theme.scss */
.menu-block-wrapper ul.menu li.menu__item.active-trail ul.menu {
  display: block;
}

/* line 1037, ../sass/_theme.scss */
.field-name-field-related-publications .field-label {
  font-weight: 600;
}
/* line 1044, ../sass/_theme.scss */
.field-name-field-related-publications .field-items .field-item {
  display: block;
  padding-left: 18px;
  margin-bottom: 5px;
}
/* line 1048, ../sass/_theme.scss */
.field-name-field-related-publications .field-items .field-item:before {
  content: "•";
  display: block;
  margin-left: -18px;
  font-size: 18px;
  float: left;
  color: #7b92a6;
}

/* line 1062, ../sass/_theme.scss */
.block-views .view-research-topics .views-row {
  width: 100%;
  margin-bottom: 10px;
}
/* line 1065, ../sass/_theme.scss */
.block-views .view-research-topics .views-row .views-field-field-research-image {
  float: left;
  width: 26%;
}
/* line 1069, ../sass/_theme.scss */
.block-views .view-research-topics .views-row .views-field-field-research-image-1 {
  display: none;
}
/* line 1072, ../sass/_theme.scss */
.block-views .view-research-topics .views-row .views-field-name {
  float: left;
  width: 64%;
  padding: 10px;
  height: 78px;
  padding-top: 15px;
  position: relative;
}
/* line 1080, ../sass/_theme.scss */
.block-views .view-research-topics .views-row .views-field-name span.field-content {
  font-size: 15px;
}
/* line 1083, ../sass/_theme.scss */
.block-views .view-research-topics .views-row .views-field-name span.field-content a {
  color: #FFFFFF;
  font-size: 15px;
  line-height: 1.3rem;
  text-decoration: none;
  display: block;
  padding-right: 50px;
  font-weight: 600;
}
/* line 1092, ../sass/_theme.scss */
.block-views .view-research-topics .views-row .views-field-name span.field-content a:after {
  background: url("../images/arrows-e3e9ed.svg") no-repeat center center/16px 16px;
  background-color: #8b989f;
  display: inline-block;
  right: 0px;
  top: 0px;
  position: absolute;
  height: 95px;
  width: 50px;
  background-size: 30px;
}
/* line 1106, ../sass/_theme.scss */
.block-views .view-research-topics .views-row .views-field-name span.field-content a:hover:after {
  background: url("../images/arrows-e3e9ed.svg") no-repeat center center/16px 16px;
  background-color: #465b66;
  display: inline-block;
  right: 0px;
  top: 0px;
  position: absolute;
  height: 95px;
  width: 50px;
  background-size: 30px;
}
@media (max-width: 480px) {
  /* line 1129, ../sass/_theme.scss */
  .block-views .view-research-topics .views-row .views-field-field-research-image {
    display: none;
  }
  /* line 1132, ../sass/_theme.scss */
  .block-views .view-research-topics .views-row .views-field-field-research-image-1 {
    display: block;
    width: 100%;
  }
  /* line 1135, ../sass/_theme.scss */
  .block-views .view-research-topics .views-row .views-field-field-research-image-1 img {
    border: 0;
    vertical-align: bottom;
    max-width: 100%;
    height: 85px;
  }
  /* line 1142, ../sass/_theme.scss */
  .block-views .view-research-topics .views-row .views-field-name {
    width: 94%;
    padding: 3%;
    height: 70px;
  }
  /* line 1148, ../sass/_theme.scss */
  .block-views .view-research-topics .views-row .views-field-name span.field-content a {
    color: #FFFFFF;
    font-size: 15px;
    text-decoration: none;
    display: block;
    padding-right: 50px;
  }
  /* line 1155, ../sass/_theme.scss */
  .block-views .view-research-topics .views-row .views-field-name span.field-content a:after {
    background-color: #8b989f;
    display: inline-block;
    right: 0px;
    top: 0px;
    position: absolute;
    height: 91%;
    width: 10%;
    background-size: 30px;
  }
}
@media (min-width: 646px) and (max-width: 990px) {
  /* line 1173, ../sass/_theme.scss */
  .block-views .view-research-topics {
    width: 454px;
  }
}
@media (min-width: 481px) and (max-width: 645px) {
  /* line 1199, ../sass/_theme.scss */
  .block-views .view-research-topics .views-row .views-field-field-research-image {
    display: none;
  }
  /* line 1202, ../sass/_theme.scss */
  .block-views .view-research-topics .views-row .views-field-field-research-image-1 {
    display: block;
    width: 100%;
  }
  /* line 1205, ../sass/_theme.scss */
  .block-views .view-research-topics .views-row .views-field-field-research-image-1 img {
    border: 0;
    vertical-align: bottom;
    max-width: 100%;
    height: 85px;
  }
  /* line 1212, ../sass/_theme.scss */
  .block-views .view-research-topics .views-row .views-field-name {
    width: 94%;
    padding: 3%;
    height: 70px;
  }
  /* line 1218, ../sass/_theme.scss */
  .block-views .view-research-topics .views-row .views-field-name span.field-content a {
    color: #FFFFFF;
    font-size: 15px;
    text-decoration: none;
    display: block;
    padding-right: 50px;
  }
  /* line 1225, ../sass/_theme.scss */
  .block-views .view-research-topics .views-row .views-field-name span.field-content a:after {
    background-color: #8b989f;
    display: inline-block;
    right: 0px;
    top: 0px;
    position: absolute;
    height: 91%;
    width: 10%;
    background-size: 30px;
  }
}

/* line 1244, ../sass/_theme.scss */
h2.year-title, .view-research-topics .views-field-name .year-title.field-content {
  font-weight: 100;
  float: left;
  margin-top: 0px;
  margin-bottom: 0px;
  width: 12%;
  display: block !important;
}

/* line 1255, ../sass/_theme.scss */
.view-publications .item-list {
  display: inline-block;
  border-bottom: 1px solid #0071b9;
  padding-top: 1.5em;
}
/* line 1260, ../sass/_theme.scss */
.view-publications ul:not([class]) {
  float: left;
  display: block;
  width: 80%;
}
/* line 1264, ../sass/_theme.scss */
.view-publications ul:not([class]) li {
  margin-top: 0px;
}
/* line 1269, ../sass/_theme.scss */
.view-publications .views-exposed-form .views-submit-button {
  display: none;
}
/* line 1273, ../sass/_theme.scss */
.view-publications .views-exposed-widgets {
  margin-bottom: 0px;
  margin-top: 15px;
}
@media (max-width: 480px) {
  /* line 1279, ../sass/_theme.scss */
  .view-publications .item-list {
    padding-top: 10px;
  }
  /* line 1282, ../sass/_theme.scss */
  .view-publications .item-list h2.year-title, .view-publications .item-list .view-research-topics .views-field-name .year-title.field-content, .view-research-topics .views-field-name .view-publications .item-list .year-title.field-content {
    width: 100%;
  }
  /* line 1286, ../sass/_theme.scss */
  .view-publications ul:not([class]) {
    float: left;
    display: block;
    width: 100%;
  }
  /* line 1290, ../sass/_theme.scss */
  .view-publications ul:not([class]) li {
    margin-top: 0px;
  }
}
@media (min-width: 481px) and (max-width: 645px) {
  /* line 1297, ../sass/_theme.scss */
  .view-publications .item-list {
    padding-top: 3em;
  }
  /* line 1300, ../sass/_theme.scss */
  .view-publications .item-list h2.year-title, .view-publications .item-list .view-research-topics .views-field-name .year-title.field-content, .view-research-topics .views-field-name .view-publications .item-list .year-title.field-content {
    width: 100%;
  }
  /* line 1304, ../sass/_theme.scss */
  .view-publications ul:not([class]) {
    float: left;
    display: block;
    width: 100%;
  }
  /* line 1308, ../sass/_theme.scss */
  .view-publications ul:not([class]) li {
    margin-top: 0px;
  }
}

/* line 1316, ../sass/_theme.scss */
#edit-field-year-value-wrapper {
  float: none;
  height: auto;
}
/* line 1323, ../sass/_theme.scss */
#edit-field-year-value-wrapper #edit-field-year-value {
  width: 150px;
  margin-right: 10px;
}
/* line 1328, ../sass/_theme.scss */
#edit-field-year-value-wrapper label {
  /*float: left;
  margin-top: 25px;
  width: 30%;*/
  display: none;
}
/* line 1334, ../sass/_theme.scss */
#edit-field-year-value-wrapper .views-widget {
  float: left;
  position: relative;
}
/* line 1340, ../sass/_theme.scss */
#edit-field-year-value-wrapper .pub_year_indicator {
  position: relative;
  float: right;
}
@media (max-width: 480px) {
  /* line 1316, ../sass/_theme.scss */
  #edit-field-year-value-wrapper {
    width: 100%;
  }
  /* line 1350, ../sass/_theme.scss */
  #edit-field-year-value-wrapper .pub_year_indicator {
    margin-bottom: 10px;
    float: none;
  }
  /* line 1353, ../sass/_theme.scss */
  #edit-field-year-value-wrapper .pub_year_indicator span {
    font-weight: 100;
    font-size: 26px;
    font-family: "Proxima Nova", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  }
}
@media (min-width: 481px) and (max-width: 645px) {
  /* line 1316, ../sass/_theme.scss */
  #edit-field-year-value-wrapper {
    width: 100%;
  }
  /* line 1364, ../sass/_theme.scss */
  #edit-field-year-value-wrapper .pub_year_indicator {
    margin-bottom: 10px;
  }
  /* line 1366, ../sass/_theme.scss */
  #edit-field-year-value-wrapper .pub_year_indicator span {
    font-weight: 100;
    font-size: 26px;
    font-family: "Proxima Nova", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  }
}

/* line 1379, ../sass/_theme.scss */
ul.quicktabs-tabs li a {
  background: #8B989F;
  color: #FFFFFF;
  text-transform: none;
  opacity: 0.7;
}
/* line 1384, ../sass/_theme.scss */
ul.quicktabs-tabs li a:focus {
  outline: dotted;
}
/* line 1387, ../sass/_theme.scss */
ul.quicktabs-tabs li a:hover {
  background: #852327;
}
/* line 1393, ../sass/_theme.scss */
ul.quicktabs-tabs li.active a {
  background: #be272d;
  opacity: 1;
}
/* line 1397, ../sass/_theme.scss */
ul.quicktabs-tabs li.active a:hover {
  background: #852327;
}

/* line 1405, ../sass/_theme.scss */
.node-member, .quicktabs_main .node-member, .front .node-member,
.front .quicktabs_main .node-member {
  background: #cfe4ec;
  display: inline-block;
  width: 48%;
  margin-bottom: 10px;
  margin-right: 10px;
}
/* line 1413, ../sass/_theme.scss */
.node-member .member-left-wrapper img,
.front .quicktabs_main .node-member .member-left-wrapper img {
  border: none;
  box-shadow: 0px;
  float: left;
/*-webkit-filter: grayscale(100%);
filter: grayscale(100%);*/
}
/* line 1421, ../sass/_theme.scss */
.node-member .member-right-wrapper,
.front .quicktabs_main .node-member .member-right-wrapper {
  height: auto;
  padding-top: 4%;
}
/* line 1425, ../sass/_theme.scss */
.node-member .member-name,
.front .quicktabs_main .node-member .member-name {
  color: #244674;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 5px;
  line-height: 1.3rem;
  margin-bottom: 0px;
}
/* line 1433, ../sass/_theme.scss */
.node-member .field-type-text,
.front .quicktabs_main .node-member .field-type-text {
  font-size: 0.9rem;
  line-height: 1.3em;
}
/* line 1436, ../sass/_theme.scss */
.node-member .field-type-text.field-name-field-email {
  margin-top: 2px;
}
/* line 1441, ../sass/_theme.scss */
.node-member .field,
.front .quicktabs_main .node-member .field {
  line-height: 1.2rem;
  display: block;
}
/* line 1444, ../sass/_theme.scss */
.node-member .field a,
.front .quicktabs_main .node-member .field a {
  line-height: 1.3rem;
  text-decoration: none;
  margin-top: 5px;
  display: inline-block;
}
@media (max-width: 480px) {
  /* line 1405, ../sass/_theme.scss */
  .node-member, .quicktabs_main .node-member, .front .node-member,
  .front .quicktabs_main .node-member {
    width: 90%;
    padding: 5%;
  }
  /* line 1456, ../sass/_theme.scss */
  .node-member .member-right-wrapper,
  .front .quicktabs_main .node-member .member-right-wrapper {
    height: auto;
    padding-top: 4%;
    width: 90%;
    display: block;
    float: left;
    margin-left: 0px;
  }
}
@media (min-width: 646px) and (max-width: 990px) {
  /* line 1405, ../sass/_theme.scss */
  .node-member, .quicktabs_main .node-member, .front .node-member,
  .front .quicktabs_main .node-member {
    width: 90%;
    padding: 5% !important;
  }
  /* line 1469, ../sass/_theme.scss */
  .node-member .member-right-wrapper,
  .front .quicktabs_main .node-member .member-right-wrapper {
    height: auto;
    padding-top: 4%;
    width: 90%;
    display: block;
    float: left;
    margin-left: 0px;
  }
}
@media (min-width: 481px) and (max-width: 645px) {
  /* line 1405, ../sass/_theme.scss */
  .node-member, .quicktabs_main .node-member, .front .node-member,
  .front .quicktabs_main .node-member {
    width: 90%;
    padding: 5% !important;
  }
}

/* line 1487, ../sass/_theme.scss */
.quicktabs_main {
  border: none;
  padding: 0px;
}
/* line 1490, ../sass/_theme.scss */
.quicktabs_main .node-member,
.front .quicktabs_main .node-member {
  float: left;
  background: #e3e9ed;
}

/* line 1499, ../sass/_theme.scss */
.quicktabs-wrapper .item-list ul,
.quicktabs-tabs {
  border-bottom: 1px solid;
  display: inline-block;
  height: 2.1em;
  margin-bottom: 20px;
  margin-top: 0px;
  width: 97%;
}

/* line 1510, ../sass/_theme.scss */
.front .node-member,
.front .quicktabs_main .node-member,
.front .quicktabs_main .node-member {
  width: 100%;
}
@media (max-width: 480px) {
  /* line 1517, ../sass/_theme.scss */
  .front .node-member,
  .front .quicktabs_main .node-member,
  .front .quicktabs_main .node-member {
    width: 90%;
    padding: 5%;
  }
  /* line 1521, ../sass/_theme.scss */
  .front .node-member .field,
  .front .quicktabs_main .node-member .field {
    display: inline-block !important;
  }
  /* line 1523, ../sass/_theme.scss */
  .front .node-member .field:after,
  .front .quicktabs_main .node-member .field:after {
    content: "";
  }
}
@media (min-width: 646px) and (max-width: 990px) {
  /* line 1531, ../sass/_theme.scss */
  .front .node-member,
  .front .quicktabs_main .node-member,
  .front .quicktabs_main .node-member {
    width: 90%;
    padding: 5%;
  }
}
@media (min-width: 481px) and (max-width: 645px) {
  /* line 1539, ../sass/_theme.scss */
  .front .node-member,
  .front .quicktabs_main .node-member,
  .front .quicktabs_main .node-member {
    width: 90%;
    padding: 5%;
  }
}

@media (max-width: 480px) {
  /* line 1548, ../sass/_theme.scss */
  .region-sidebar-second {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (min-width: 481px) and (max-width: 645px) {
  /* line 1548, ../sass/_theme.scss */
  .region-sidebar-second {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media (max-width: 480px) {
  /* line 1562, ../sass/_theme.scss */
  .view-header .node-member,
  .view-header .front .quicktabs_main .node-member,
  .front .quicktabs_main .view-header .node-member {
    padding: 5%;
  }
}
@media (min-width: 481px) and (max-width: 645px) {
  /* line 1562, ../sass/_theme.scss */
  .view-header .node-member,
  .view-header .front .quicktabs_main .node-member,
  .front .quicktabs_main .view-header .node-member {
    padding: 5%;
  }
}

/* line 1572, ../sass/_theme.scss */
.gallery-image, .view-gallery .views-row img, .node-gallery img {
  border: 4px solid white;
  box-shadow: 1px 1px 20px #dadada;
  float: left;
}

/* line 1579, ../sass/_theme.scss */
.view-gallery .views-row {
  float: left;
  width: 30%;
}
/* line 1587, ../sass/_theme.scss */
.view-gallery .views-row .views-field-title a {
  text-decoration: none;
  padding: 10px;
  display: inline-block;
  font-size: 1.2rem;
}
@media (max-width: 480px) {
  /* line 1597, ../sass/_theme.scss */
  .view-gallery .views-row {
    float: left;
    width: 44%;
    margin-right: 5%;
  }
}
@media (min-width: 481px) and (max-width: 645px) {
  /* line 1605, ../sass/_theme.scss */
  .view-gallery .views-row {
    float: left;
    width: 44%;
    margin-right: 5%;
  }
}

/* line 1616, ../sass/_theme.scss */
.node-gallery .field-item {
  float: left;
  width: 30%;
  margin-bottom: 30px;
}

/* line 1627, ../sass/_theme.scss */
.region-content .contactus-image {
  float: left;
  height: 230px;
  max-width: 40%;
}
/* line 1631, ../sass/_theme.scss */
.region-content .contactus-image img {
  border: none;
  box-shadow: none;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
/* line 1638, ../sass/_theme.scss */
.region-content .contactus-content {
  background: #cfe4ec;
  float: left;
  height: 209px;
  margin-left: 0;
  padding: 10px 10px 10px 40px;
  width: 40%;
}
/* line 1646, ../sass/_theme.scss */
.region-content .contactus-links {
  float: left;
  width: 100%;
  margin-top: 20px;
  margin-left: 0px;
}
/* line 1651, ../sass/_theme.scss */
.region-content .contactus-links a {
  text-decoration: none;
}
@media (max-width: 480px) {
  /* line 1661, ../sass/_theme.scss */
  .region-content .contactus-image {
    float: none;
    height: auto;
    max-width: 100%;
    display: block;
  }
  /* line 1667, ../sass/_theme.scss */
  .region-content .contactus-content {
    background: #cfe4ec;
    float: left;
    height: auto;
    margin-left: 0;
    padding: 5%;
    width: 90%;
  }
  /* line 1675, ../sass/_theme.scss */
  .region-content .contactus-links {
    margin-left: 0px;
  }
}
@media (min-width: 481px) and (max-width: 645px) {
  /* line 1681, ../sass/_theme.scss */
  .region-content .contactus-image {
    float: none;
    height: auto;
    max-width: 100%;
    display: block;
  }
  /* line 1687, ../sass/_theme.scss */
  .region-content .contactus-content {
    background: #cfe4ec;
    float: left;
    height: auto;
    margin-left: 0;
    padding: 5%;
    width: 90%;
  }
  /* line 1695, ../sass/_theme.scss */
  .region-content .contactus-links {
    margin-left: 0px;
  }
}

/* line 1703, ../sass/_theme.scss */
#block-views-group-members-pi {
  margin-bottom: 0px;
}
/* line 1705, ../sass/_theme.scss */
#block-views-group-members-pi .view-group-members {
  margin-top: 5%;
}

/* line 1710, ../sass/_theme.scss */
.view-group-members {
  margin-top: 0px;
}

/* line 1715, ../sass/_theme.scss */
.not-front.no-sidebars .region-content {
  padding: 1% 3%;
}
/* line 1720, ../sass/_theme.scss */
.not-front.no-sidebars.page-research-activities .region-content {
  padding: 0;
}
/* line 1726, ../sass/_theme.scss */
.not-front.no-sidebars.page-publications .region-content {
  padding-top: 0px;
}
@media (max-width: 480px) {
  /* line 1732, ../sass/_theme.scss */
  .not-front.no-sidebars .region-content {
    padding: 0px;
  }
}

/* line 1738, ../sass/_theme.scss */
a.members-only {
  position: absolute;
  top: 35px;
  left: 3%;
  text-decoration: none;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  /* line 1738, ../sass/_theme.scss */
  a.members-only {
    position: fixed;
    top: 10px;
    z-index: 90;
  }
}
@media (min-width: 481px) and (max-width: 645px) {
  /* line 1738, ../sass/_theme.scss */
  a.members-only {
    position: fixed;
    top: 10px;
    z-index: 90;
  }
}

/* line 1759, ../sass/_theme.scss */
.nagish-zoom-0 {
  transform: initial;
}

/* line 1763, ../sass/_theme.scss */
#page-title-research {
  margin-bottom: 0.5em;
  font-weight: 600;
  font-family: "Proxima Nova", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  font-size: 24px;
  color: #0e7aa2;
}

/* line 1772, ../sass/_theme.scss */
.pub-pdf-wrapper,
.pub-cover-wrapper {
  float: none;
  width: auto;
  display: inline-block;
}
/* line 1777, ../sass/_theme.scss */
.pub-pdf-wrapper a,
.pub-cover-wrapper a {
  text-decoration: none;
}

/* line 1782, ../sass/_theme.scss */
.no-underline-link {
  text-decoration: none;
}

/* line 1786, ../sass/_theme.scss */
.mobile-only {
  display: none;
  float: none;
  width: 100%;
}
/* line 1790, ../sass/_theme.scss */
.mobile-only img {
  width: 80%;
  padding-right: 5%;
  padding-left: 5%;
  padding-top: 10%;
  opacity: 0.7;
}
@media (max-width: 480px) {
  /* line 1786, ../sass/_theme.scss */
  .mobile-only {
    display: block;
  }
}

/* line 1803, ../sass/_theme.scss */
.desktop-only {
  display: block;
}
@media (max-width: 480px) {
  /* line 1803, ../sass/_theme.scss */
  .desktop-only {
    display: none;
  }
}

/* line 1811, ../sass/_theme.scss */
.member-name {
  color: #244674;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 5px;
  line-height: 1.3rem;
  margin-bottom: 0px;
}

/* line 1821, ../sass/_theme.scss */
.node-position h2, .node-position .view-research-topics .views-field-name .field-content, .view-research-topics .views-field-name .node-position .field-content {
  font-family: "Proxima Nova", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  color: #4d4d4d;
  font-size: 15px;
  font-weight: 600;
  line-height: 21px;
  margin-bottom: 0px;
}
/* line 1829, ../sass/_theme.scss */
.node-position span.date-display-single {
  color: #4D4D4D;
  font-size: 13px;
  font-family: "Proxima Nova", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  display: block;
  margin-bottom: 5px;
}
/* line 1837, ../sass/_theme.scss */
.node-position .field-label-inline .field-label,
.node-position .field-label-inline .field-items {
  font-family: "Proxima Nova", Arial, Helvetica, "Nimbus Sans L", sans-serif;
  color: #4d4d4d !important;
  font-size: 15px;
  line-height: 21px;
  margin-bottom: 0px;
}

/* line 1847, ../sass/_theme.scss */
.node-position .field-label-inline .field-items {
  margin-left: 15px;
}

/**
* Nagish
**/
/* line 1855, ../sass/_theme.scss */
body[class*="nagish-zoom"] .region-content .contactus-links a {
  margin-bottom: 3px;
}

/* line 1859, ../sass/_theme.scss */
#edit-field-year-value-wrapper label {
  width: 1px;
  height: 1px;
  overflow: hidden;
  display: inline-block;
}

/* nagish-contrast */
/* line 1866, ../sass/_theme.scss */
body.nagish-contrast a,
body.nagish-grayscale a,
body.nagish-invert a {
  text-decoration: underline !important;
}

/* line 1871, ../sass/_theme.scss */
body.nagish-contrast #name-and-slogan #logo {
  background-color: #fff;
}

/* line 1874, ../sass/_theme.scss */
body.nagish-contrast #site-slogan {
  background: #000;
}

/* line 1877, ../sass/_theme.scss */
body.nagish-contrast .breadcrumb li {
  color: #ffff66;
}

/* line 1880, ../sass/_theme.scss */
body.nagish-contrast .region-footer {
  background-color: #222;
}

/* line 1883, ../sass/_theme.scss */
body.nagish-contrast .region-footer .block-weizmann-blocks {
  color: #ffff66;
}

/* line 1886, ../sass/_theme.scss */
.nagish-contrast .sidebar .block {
  background-color: #000;
}

/* line 1889, ../sass/_theme.scss */
body.nagish-contrast .node-member,
body.nagish-contrast .front .quicktabs_main .node-member,
.front .quicktabs_main body.nagish-contrast .node-member,
body.nagish-contrast #block-views-news-and-upcoming-events-block,
body.nagish-contrast .view-research-topics .views-field-name {
  background: #222;
}

/* line 1894, ../sass/_theme.scss */
body.nagish-contrast #navigation #main-menu .links li a:focus {
  outline: 1px dotted #fff;
}

/* line 1897, ../sass/_theme.scss */
body.nagish-contrast #navigation {
  background: #000;
  opacity: 1;
  outline: 1px solid #ffff66;
}

/* line 1902, ../sass/_theme.scss */
body.nagish-contrast ul.quicktabs-tabs li a {
  background: #222;
  opacity: 1;
  outline: 1px solid #ffffff;
}

/* line 1907, ../sass/_theme.scss */
body.nagish-contrast ul.quicktabs-tabs li.active a {
  outline: 1px solid #ffff66;
}

/* line 1910, ../sass/_theme.scss */
body.nagish-contrast ul.quicktabs-tabs li a:focus {
  outline-width: 2px;
}

/* line 1913, ../sass/_theme.scss */
body.nagish-contrast .node-position .field-label-inline .field-label,
body.nagish-contrast .node-position .field-label-inline .field-items {
  color: #ffff66;
}

/* line 1917, ../sass/_theme.scss */
body.nagish-contrast #navigation #main-menu .links li a.active,
body.nagish-contrast #navigation #main-menu .links li a.active-trail,
body.nagish-contrast #navigation #main-menu .menu li a.active,
body.nagish-contrast #navigation #main-menu .menu li a.active-trail {
  color: #ffff66 !important;
}

/* line 1923, ../sass/_theme.scss */
body.nagish-contrast .region-content .contactus-content {
  background: #222;
}

/* line 1926, ../sass/_theme.scss */
body.nagish-contrast .menu-block-wrapper ul.menu li.menu__item ul.menu li.menu__item {
  background: #000;
}

/* nagish-invert */
/* line 1930, ../sass/_theme.scss */
body.nagish-grayscale a.members-only,
body.nagish-invert a.members-only {
  color: #000;
}

/** PLEASE DO NOT ADD YOUR STYLE INTO THIS FILE **/
