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

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

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

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

/**
 * Base
 *
 * Instead of relying on the fonts that are available on a user's computer, you
 * can use web fonts which, like images, are resources downloaded to the user's
 * browser. Because of the bandwidth and rendering resources required, web fonts
 * should be used with care.
 *
 * Numerous resources for web fonts can be found on Google. Here are a few
 * websites where you can find Open Source fonts to download:
 * - http://www.fontsquirrel.com/fontface
 * - http://www.theleagueofmoveabletype.com
 *
 * In order to use these fonts, you will need to convert them into formats
 * suitable for web fonts. We recommend the free-to-use Font Squirrel's
 * Font-Face Generator:
 *   http://www.fontsquirrel.com/fontface/generator
 *
 * The following is an example @font-face declaration. This font can then be
 * used in any ruleset using a property like this:  font-family: Example, serif;
 *
 * Since we're using Sass, you'll need to declare your font faces here, then you
 * can add them to the font variables in the _init.scss partial.
 */
/*
@font-face {
  font-family: 'Example';
  src: url('../fonts/example.eot');
  src: url('../fonts/example.eot?iefix') format('eot'),
    url('../fonts/example.woff') format('woff'),
    url('../fonts/example.ttf') format('truetype'),
    url('../fonts/example.svg#webfontOkOndcij') format('svg');
  font-weight: normal;
  font-style: normal;
}
*/
@font-face {
  font-family: "DINWebPro-Bold";
  src: url('../fonts/../fonts/DINWebPro-Bold.woff?1442237241') format('woff'), url('../fonts/../fonts/DINCompPro-Bold.ttf?1442237241') format('truetype'), url('../fonts/../fonts/DINWebPro-Bold.eot?1442237241') format('embedded-opentype');
}
/* line 111, ../sass/_normalize.scss */
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/**
 * 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 124, ../sass/_normalize.scss */
html {
  font-family: Arial, Helvetica, sans-serif;
  /* 1 */
  font-size: 100%;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  line-height: 1.5em;
}

/* Remove default margin. */
/* line 144, ../sass/_normalize.scss */
body {
  -webkit-font-smoothing: antialiased;
  background-color: #f2f2f2;
  color: #505050;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.813em;
  line-height: 145%;
  margin: 0;
  padding: 0;
  text-rendering: optimizeLegibility;
}

/**
 * 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 163, ../sass/_normalize.scss */
a:link,
a:visited {
  color: #9b0014;
  text-decoration: none;
}

/* line 169, ../sass/_normalize.scss */
a:focus,
a:hover,
a:active {
  color: #9b0014;
  text-decoration: underline;
}

/* line 176, ../sass/_normalize.scss */
a:focus {
  outline: 0;
}

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

/* line 213, ../sass/_normalize.scss */
p {
  margin: 0.75em 0;
}
/* line 215, ../sass/_normalize.scss */
p:first-child {
  margin-top: 0;
}
/* line 218, ../sass/_normalize.scss */
p:last-child {
  margin-bottom: 0;
}

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

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 233, ../sass/_normalize.scss */
h1, h2, h3, h4, h5, h6 {
  font-family: "DINWebPro-Bold", Arial, Helvetica, sans-serif;
  font-weight: normal;
  line-height: 140%;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  margin: 1.5em 0 0 0;
}

/* line 238, ../sass/_normalize.scss */
h1 {
  font-size: 1.385em;
  font-weight: normal;
  line-height: 125%;
}

/* line 244, ../sass/_normalize.scss */
h2 {
  font-size: 1.154em;
  line-height: 145%;
}

/* line 253, ../sass/_normalize.scss */
h3 {
  font-size: 1.105em;
}

/* line 261, ../sass/_normalize.scss */
h4 {
  color: #838383;
  font-size: 1em;
}

/* line 266, ../sass/_normalize.scss */
h5 {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1em;
}

/* line 272, ../sass/_normalize.scss */
h6 {
  font-size: 1em;
}

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

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

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

/* Address differences between Firefox and other browsers. */
/* line 295, ../sass/_normalize.scss */
hr {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 1px;
  background-color: #eee;
  border: none;
  margin: 1.5em 0;
}

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

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

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

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

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

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

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

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

/* line 363, ../sass/_normalize.scss */
ul, ol {
  margin: 0;
  list-style: none;
  padding: 0;
}

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

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

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

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

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

/**
 * 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 445, ../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 460, ../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 479, ../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 490, ../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 504, ../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 518, ../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 529, ../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 544, ../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 553, ../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 559, ../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 569, ../sass/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

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

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

/**
 * Tables
 */
/* line 599, ../sass/_normalize.scss */
th {
  font-weight: normal;
  color: #838383;
  padding: 10px;
}

/* line 606, ../sass/_normalize.scss */
tr td {
  padding: 8px 10px;
}

/* line 612, ../sass/_normalize.scss */
iframe,
video {
  max-width: 100% !important;
}

/**
 * @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 62, ../sass/components/_misc.scss */
#skip-link {
  margin: 0;
}
/* line 65, ../sass/components/_misc.scss */
#skip-link a,
#skip-link a:visited {
  display: block;
  width: 100%;
  padding: 2px 0 3px 0;
  text-align: center;
  background-color: #666;
  color: #fff;
}

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

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

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

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

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

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

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

/**
 * Navigation bar.
 */
/* line 131, ../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 135, ../sass/components/_misc.scss */
#navigation .block {
  margin-bottom: 0;
}
/* line 145, ../sass/components/_misc.scss */
#navigation .links,
#navigation .menu {
  margin: 0;
  padding: 0;
  text-align: left;
  /* LTR */
}
/* line 151, ../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 */
  list-style-type: none;
  list-style-image: none;
}

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

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

/**
 * Messages.
 */
/* line 195, ../sass/components/_misc.scss */
.messages, .messages--status, .messages--warning, .messages--error {
  margin: 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 210, ../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: none;
}

/* line 220, ../sass/components/_misc.scss */
.messages--error {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACpElEQVR42rWWTUgbQRiGQ0Tx4MWDeFM8eBA9iKAoggiCoCiiIiL4L3oQV1CJB0UEf6iRYFpK7UniTw9VSqL2kvQsVDBpSZrtRo35czVNW3oprRf17exSl4yzu1ikAy9h59vvedhkMrMGAGoxknAk2w8MJ/WosXThiZkZt9jdLeglPjn5ATc3mhJNuNjbK0QbG3ExMICL/n6IfX0gcxB7ekDAELu6IHZ2IlJbi1hLS1BLogmPtbUhMTv7oMSamzUlqnByMxLT0/8STQkDj9TV4ZLj5OysrODl8jIu5Gs68dFR7JG6dWkJ0fFx+TpSX89IDMnwcHU1yKec12Yz3rlc4HkeLwjkXJpPip3U3+7vIx6P4ymph4eG5PlwTQ0lMdytlmBxMWKtrXLeT0zA5XTibvj9fjxfXETkb/3N/Dz2dneVuiTZtliU/rPSUsQ5ziuxZYG03IIlJdKKUPJjdRUAKMmzuTnskB/VYbdTtd9HR4g2NCi9Z2VliDY1BSnBaUEBzsrLqXyzWCiQ9HU5HA4afniIUFWV0hOqqMBpURErOM7NxWlhIZOvCwvA7S3Uxq+DA5AnZ3pO8vJYQSArC8c5Oeqx2Rj4udeLQH6+6v2B7GxW8DkjA0JmJpONwUHY7XZGIAgCzCYTeJUewmIFfqMRfEoKlQ2yJbza2oLWcLvdeDI2hk/3+iQWKzAYkJzNjg5srq9TwJ9OJ76YTNScx+ORJT66X1/grKyEbW2NgfPp6XKd/JMZySrHaQsSU1Oe+0/w3WpVgyu5HBlR6lc+H8gioevDwz6JrWwV5+3txyoSFk5DcOX1MnCyJ4Vwfb1zt1UY9SR8aioDpuppaVpwZbPTl+hHF04dOKzk8XBF8DgJC3/woU/W/EciOtELOWi8DDwp//215Q+p7kiKh2lQSAAAAABJRU5ErkJggg==');
  border-color: #ed541d;
}

/* line 230, ../sass/components/_misc.scss */
.messages__list {
  margin: 0;
}

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

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

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

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

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

/**
 * Tabs.
 */
/* Basic positioning styles shared by primary and secondary tabs. */
/* line 264, ../sass/components/_misc.scss */
.tabs-primary, .tabs-secondary {
  overflow: hidden;
  *zoom: 1;
  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;
  white-space: nowrap;
}

/* line 274, ../sass/components/_misc.scss */
.tabs-primary__tab, .tabs-primary__tab.is-active, .tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  float: left;
  /* LTR */
}

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

/* Primary tabs. */
/* line 291, ../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 300, ../sass/components/_misc.scss */
.tabs-primary__tab.is-active {
  border-bottom-color: #fff;
}

/* line 306, ../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 316, ../sass/components/_misc.scss */
a.tabs-primary__tab-link:hover, a.tabs-primary__tab-link:focus {
  background-color: #e9e9e9;
  border-color: #f2f2f2;
}

/* line 320, ../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 344, ../sass/components/_misc.scss */
.tabs-secondary {
  font-size: .9em;
  /* Collapse bottom margin of ul.primary. */
  margin-top: -1.5em;
}

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

/* line 357, ../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 366, ../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 371, ../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 399, ../sass/components/_misc.scss */
.inline {
  display: inline;
  padding: 0;
}
/* line 403, ../sass/components/_misc.scss */
.inline li {
  display: inline;
  background-image: none !important;
  list-style-type: none;
  padding: 0 1em 0 0;
  /* LTR */
}

/* The inline field label used by the Fences module. */
/* line 412, ../sass/components/_misc.scss */
span.field-label {
  padding: 0 1em 0 0;
  /* LTR */
}

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

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

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

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

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

/**
 * Marker.
 */
/* The "new" or "updated" marker. */
/* line 487, ../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 499, ../sass/components/_misc.scss */
.unpublished {
  height: 0;
  overflow: visible;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
  color: #d8d8d8;
  font-size: 70px;
  line-height: 1;
  font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  display: block;
  /* A very nice CSS3 property. */
  word-wrap: break-word;
}

/**
 * Comments.
 */
/* Wrapper for the list of comments and its title. */
/* line 528, ../sass/components/_misc.scss */
.comments {
  margin: 1.5em 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * Workbench Info Block
 */
/* line 765, ../sass/components/_misc.scss */
div.workbench-info-block {
  margin: 0;
  padding: 10px 20px;
}

/* line 773, ../sass/components/_misc.scss */
.error,
.messages--error {
  background-color: #9b0014;
  color: #fff;
  border: none;
  background-image: none;
  padding: 20px;
}
/* line 780, ../sass/components/_misc.scss */
.error a:link,
.error a:visited,
.messages--error a:link,
.messages--error a:visited {
  color: #fff;
  text-decoration: underline;
}
/* line 785, ../sass/components/_misc.scss */
.error a:focus,
.error a:hover,
.error a:active,
.messages--error a:focus,
.messages--error a:hover,
.messages--error a:active {
  text-decoration: none;
}

/* line 795, ../sass/components/_misc.scss */
.tooltipster-noir {
  border: 1px solid #ddd;
  background: #fff;
  color: #505050;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
/* line 802, ../sass/components/_misc.scss */
.tooltipster-noir .tooltipster-arrow {
  right: 30px;
}

/* line 807, ../sass/components/_misc.scss */
.tooltipster-noir .tooltipster-content {
  font-size: 12px;
  line-height: 16px;
  padding: 16px 20px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

/* line 815, ../sass/components/_misc.scss */
body.maintenance-page #logo, body.maintenance-page #name-and-slogan {
  display: none;
}
/* line 819, ../sass/components/_misc.scss */
body.maintenance-page #header {
  height: auto;
}

/* line 825, ../sass/components/_misc.scss */
.media-gallery {
  position: relative;
}
/* line 828, ../sass/components/_misc.scss */
.media-gallery .bx-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 87;
  text-align: center;
  width: 100%;
}
/* line 836, ../sass/components/_misc.scss */
.media-gallery .bx-controls .bx-pager {
  display: none;
}
/* line 841, ../sass/components/_misc.scss */
.media-gallery .bx-controls .bx-controls-direction a:link {
  transition: all,ease-out 0.15s;
  background-color: rgba(0, 0, 0, 0.3);
  background-image: url("../images/slider-prevnext.png");
  background-position: -9px -19px;
  display: block;
  height: 82px;
  overflow: hidden;
  position: absolute;
  text-indent: -99999em;
  width: 45px;
  outline: none;
  margin-top: -26%;
}
/* line 856, ../sass/components/_misc.scss */
.media-gallery .bx-controls .bx-controls-direction a.bx-prev {
  -moz-border-radius-topright: 2px;
  -webkit-border-top-right-radius: 2px;
  border-top-right-radius: 2px;
  -moz-border-radius-bottomright: 2px;
  -webkit-border-bottom-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
/* line 865, ../sass/components/_misc.scss */
.media-gallery .bx-controls .bx-controls-direction a.bx-next {
  -moz-border-radius-topleft: 2px;
  -webkit-border-top-left-radius: 2px;
  border-top-left-radius: 2px;
  -moz-border-radius-bottomleft: 2px;
  -webkit-border-bottom-left-radius: 2px;
  border-bottom-left-radius: 2px;
  background-position: -9px 103px;
  right: 0;
}
/* line 878, ../sass/components/_misc.scss */
.media-gallery.media-municipality {
  width: 200px;
}
/* line 880, ../sass/components/_misc.scss */
.media-gallery.media-municipality .bx-controls-direction a:link {
  margin-top: -59%;
}
/* line 886, ../sass/components/_misc.scss */
.media-gallery.media-full .bx-controls-direction a:link {
  margin-top: -40%;
}

/* line 892, ../sass/components/_misc.scss */
.piwik-ajax-ctn label {
  display: inline;
  padding-left: 6px;
}

/* line 3, ../sass/components/_blocks.scss */
#content .block {
  background-color: white;
  padding: 20px 20px 20px 20px;
  margin-bottom: 10px;
}
/* line 8, ../sass/components/_blocks.scss */
#content .block h2.block__title {
  margin: 0;
  padding: 15px 20px 13px;
  position: relative;
}
/* line 15, ../sass/components/_blocks.scss */
#content .block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
/* line 21, ../sass/components/_blocks.scss */
#content .block .view-id-kontexts_blocks {
  background-color: #fff;
}
/* line 25, ../sass/components/_blocks.scss */
#content .block .more {
  margin-top: 12px;
}

/* line 34, ../sass/components/_blocks.scss */
#content div.block:last-child:after {
  content: " ";
  display: block;
  clear: both;
}

/* line 42, ../sass/components/_blocks.scss */
#block-system-main-menu .block__title {
  display: none;
}

/* line 50, ../sass/components/_blocks.scss */
#block-locale-language .block__title,
.content-box.block-locale-language .block__title {
  display: none;
}
/* line 54, ../sass/components/_blocks.scss */
#block-locale-language .has-flag,
.content-box.block-locale-language .has-flag {
  display: block;
  padding-left: 20px;
  text-indent: -99999em;
  float: left;
  display: inline-block;
  width: 20px;
  height: 13px;
  background: 1px 1px no-repeat transparent;
}
/* line 64, ../sass/components/_blocks.scss */
#block-locale-language .has-flag.language-link-en,
.content-box.block-locale-language .has-flag.language-link-en {
  background: 1px 1px url(/sites/all/themes/adelphi/images/flags/en.png) no-repeat transparent;
}
/* line 68, ../sass/components/_blocks.scss */
#block-locale-language .has-flag.language-link-de,
.content-box.block-locale-language .has-flag.language-link-de {
  background: 1px 1px url(/sites/all/themes/adelphi/images/flags/de.png) no-repeat transparent;
}
/* line 72, ../sass/components/_blocks.scss */
#block-locale-language .has-flag.language-link-cs,
.content-box.block-locale-language .has-flag.language-link-cs {
  background: 1px 1px url(/sites/all/themes/adelphi/images/flags/cz.png) no-repeat transparent;
}
/* line 76, ../sass/components/_blocks.scss */
#block-locale-language .has-flag.language-link-da,
.content-box.block-locale-language .has-flag.language-link-da {
  background: 1px 1px url(/sites/all/themes/adelphi/images/flags/dk.png) no-repeat transparent;
}
/* line 80, ../sass/components/_blocks.scss */
#block-locale-language .has-flag.language-link-nl,
.content-box.block-locale-language .has-flag.language-link-nl {
  background: 1px 1px url(/sites/all/themes/adelphi/images/flags/nl.png) no-repeat transparent;
}
/* line 84, ../sass/components/_blocks.scss */
#block-locale-language .has-flag.language-link-el,
.content-box.block-locale-language .has-flag.language-link-el {
  background: 1px 1px url(/sites/all/themes/adelphi/images/flags/gr.png) no-repeat transparent;
}
/* line 88, ../sass/components/_blocks.scss */
#block-locale-language .has-flag.language-link-it,
.content-box.block-locale-language .has-flag.language-link-it {
  background: 1px 1px url(/sites/all/themes/adelphi/images/flags/it.png) no-repeat transparent;
}
/* line 92, ../sass/components/_blocks.scss */
#block-locale-language .has-flag.language-link-es,
.content-box.block-locale-language .has-flag.language-link-es {
  background: 1px 1px url(/sites/all/themes/adelphi/images/flags/es.png) no-repeat transparent;
}
/* line 96, ../sass/components/_blocks.scss */
#block-locale-language .has-flag.language-link-en-gb,
.content-box.block-locale-language .has-flag.language-link-en-gb {
  background: 1px 1px url(/sites/all/themes/adelphi/images/flags/gb.png) no-repeat transparent;
}
/* line 100, ../sass/components/_blocks.scss */
#block-locale-language .has-flag.language-link-de-AT,
.content-box.block-locale-language .has-flag.language-link-de-AT {
  background: 1px 1px url(/sites/all/themes/adelphi/images/flags/at.png) no-repeat transparent;
}
/* line 104, ../sass/components/_blocks.scss */
#block-locale-language .has-flag.language-link-ja,
.content-box.block-locale-language .has-flag.language-link-ja {
  background: 1px 1px url(/sites/all/themes/adelphi/images/flags/jp.png) no-repeat transparent;
}
/* line 108, ../sass/components/_blocks.scss */
#block-locale-language .has-flag.language-link-pl,
.content-box.block-locale-language .has-flag.language-link-pl {
  background: 1px 1px url(/sites/all/themes/adelphi/images/flags/pl.png) no-repeat transparent;
}
/* line 112, ../sass/components/_blocks.scss */
#block-locale-language .has-flag.language-link-zh-hans,
.content-box.block-locale-language .has-flag.language-link-zh-hans {
  background: 1px 1px url(/sites/all/themes/adelphi/images/flags/cn.png) no-repeat transparent;
}
/* line 116, ../sass/components/_blocks.scss */
#block-locale-language .has-flag.locale-untranslated,
.content-box.block-locale-language .has-flag.locale-untranslated {
  background-color: red !important;
}
/* line 121, ../sass/components/_blocks.scss */
#block-locale-language li.fr,
.content-box.block-locale-language li.fr {
  float: none;
}
/* line 125, ../sass/components/_blocks.scss */
#block-locale-language ul.language-switcher-locale-url:after,
.content-box.block-locale-language ul.language-switcher-locale-url:after {
  display: block;
  content: " ";
  clear: both;
}

@media screen and (max-width: 640px) {
  /* line 136, ../sass/components/_blocks.scss */
  #block-locale-language,
  .content-box.block-locale-language {
    padding: 0;
  }
  /* line 140, ../sass/components/_blocks.scss */
  #block-locale-language ul.language-switcher-locale-url,
  .content-box.block-locale-language ul.language-switcher-locale-url {
    margin-left: auto;
    margin-right: auto;
    width: 340px;
    display: flex;
  }
  /* line 146, ../sass/components/_blocks.scss */
  #block-locale-language ul.language-switcher-locale-url li,
  .content-box.block-locale-language ul.language-switcher-locale-url li {
    padding: 10px;
    float: left;
    flex-grow: 1;
  }
}
/* line 156, ../sass/components/_blocks.scss */
#block-menu-block-1 {
  text-align: right;
}

/* line 160, ../sass/components/_blocks.scss */
.view-tweets.view-id-tweets.view-display-id-block {
  color: transparent;
}
/* line 165, ../sass/components/_blocks.scss */
.view-tweets.view-id-tweets.view-display-id-block .view-header p {
  display: inline-block;
}
/* line 169, ../sass/components/_blocks.scss */
.view-tweets.view-id-tweets.view-display-id-block .view-header .twitter-title {
  display: inline-block;
}
/* line 172, ../sass/components/_blocks.scss */
.view-tweets.view-id-tweets.view-display-id-block .view-header .twitter-title p {
  position: relative;
  bottom: 10px;
}
/* line 179, ../sass/components/_blocks.scss */
.view-tweets.view-id-tweets.view-display-id-block span {
  color: #868686;
  display: block;
  margin-bottom: 0px;
}
/* line 186, ../sass/components/_blocks.scss */
.view-tweets.view-id-tweets.view-display-id-block .views-field-text a:last-child {
  display: block;
}
/* line 191, ../sass/components/_blocks.scss */
.view-tweets.view-id-tweets.view-display-id-block .views-field-created-time {
  display: block;
  margin-bottom: 12px;
  margin-top: -18px;
}

/* line 200, ../sass/components/_blocks.scss */
#content #block-menu-block-3 .menu-name-main-menu ul {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}
/* line 206, ../sass/components/_blocks.scss */
#content #block-menu-block-3 .menu-name-main-menu ul li {
  flex-grow: 1;
}
/* line 209, ../sass/components/_blocks.scss */
#content #block-menu-block-3 .menu-name-main-menu ul li a {
  width: 99%;
  text-align: center;
  border-right: 1px solid transparent;
}
/* line 217, ../sass/components/_blocks.scss */
#content #block-menu-block-3 .menu-name-main-menu ul li:last-child a {
  border-right: 0;
  width: 100%;
}

/* line 228, ../sass/components/_blocks.scss */
#block-views-events-block-knk-events .view-content ul {
  margin: 0;
  padding: 0;
}
/* line 232, ../sass/components/_blocks.scss */
#block-views-events-block-knk-events .view-content ul li {
  list-style: none;
  padding: 0;
}
/* line 236, ../sass/components/_blocks.scss */
#block-views-events-block-knk-events .view-content ul li .views-field-nothing {
  color: #505050;
  margin-bottom: 0;
}
/* line 241, ../sass/components/_blocks.scss */
#block-views-events-block-knk-events .view-content ul li .views-field-title {
  margin-bottom: 1rem;
}

/* line 10, ../sass/components/_content.scss */
#content .tabs-dropdown {
  position: absolute;
  right: 10px;
  top: 10px;
}
/* line 16, ../sass/components/_content.scss */
#content .embed {
  margin-top: 0;
}
/* line 24, ../sass/components/_content.scss */
#content .content-box {
  padding: 5px;
  background-color: #fff;
  overflow: hidden;
  margin-bottom: 10px;
}
/* line 31, ../sass/components/_content.scss */
#content .content-box .block__title {
  margin-bottom: 10px;
}
/* line 35, ../sass/components/_content.scss */
#content .content-box img {
  width: 100%;
  vertical-align: top;
}
/* line 40, ../sass/components/_content.scss */
#content .content-box li {
  margin: 0;
}

/* line 50, ../sass/components/_content.scss */
.not-front #content .node.view-mode-full > .field-name-field-bild {
  margin-bottom: 10px;
}
/* line 58, ../sass/components/_content.scss */
.not-front #content .field-name-field-download .field-label {
  color: #838383;
  font-weight: normal;
}

/* line 1, ../sass/components/_contextbar.scss */
#contextbar {
  overflow: hidden;
  *zoom: 1;
  background-color: #505050;
  color: #ccc;
  font-size: .85em;
  height: 40px;
  padding: 10px 10px 10px 20px;
}
@media screen and (max-width: 640px) {
  /* line 1, ../sass/components/_contextbar.scss */
  #contextbar {
    display: none;
  }
}
/* line 13, ../sass/components/_contextbar.scss */
#contextbar.fixed {
  position: fixed;
  width: 980px;
  z-index: 9999;
}
/* line 41, ../sass/_mixins.scss */
#contextbar a:link,
#contextbar a:visited {
  color: #ccc;
  text-decoration: none;
}
/* line 48, ../sass/_mixins.scss */
#contextbar a:focus,
#contextbar a:hover,
#contextbar a:active {
  color: #f2f2f2;
  text-decoration: underline;
}
/* line 29, ../sass/components/_contextbar.scss */
#contextbar .breadcrumb {
  float: left;
}
@media screen and (min-width: 640px) and (max-width: 959px) {
  /* line 29, ../sass/components/_contextbar.scss */
  #contextbar .breadcrumb {
    max-width: 75%;
    height: 20px;
    overflow: hidden;
  }
}
/* line 38, ../sass/components/_contextbar.scss */
#contextbar .breadcrumb li {
  /*background-image: url('../images/breadcrumb-separator.png');
  background-position: center left;
  background-repeat: no-repeat;
  background-size: 5px;
  padding-left: 12px;*/
  margin-right: 8px;
}
/* line 46, ../sass/components/_contextbar.scss */
#contextbar .breadcrumb li:before {
  content: "> ";
  margin-right: 4px;
}
/* line 51, ../sass/components/_contextbar.scss */
#contextbar .breadcrumb li:first-child:before {
  content: "";
}
/* line 55, ../sass/components/_contextbar.scss */
#contextbar .breadcrumb li:first-child {
  background: none;
  padding: 0;
}
/* line 62, ../sass/components/_contextbar.scss */
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock {
  float: right;
  margin-top: -5px;
}
/* line 66, ../sass/components/_contextbar.scss */
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul {
  height: 25px;
  list-style: none;
  margin: 0;
}
/* line 71, ../sass/components/_contextbar.scss */
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li {
  opacity: 0.6;
  float: left;
  height: 30px;
  padding: 5px 6px;
}
/* line 77, ../sass/components/_contextbar.scss */
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li:last-child {
  border: 0;
}
/* line 41, ../sass/_mixins.scss */
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.print a:link,
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.print a:visited, #contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.facebook a:link,
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.facebook a:visited, #contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.twitter a:link,
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.twitter a:visited, #contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.linkedin a:link,
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.linkedin a:visited, #contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.pdf a:link,
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.pdf a:visited {
  background-image: url(../images/contextbar-icons.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 26px;
  text-indent: 999em;
  display: inline-block;
  overflow: hidden;
  height: 25px;
  width: 25px;
  position: relative;
  padding: 2px 6px;
  top: -5px;
  -moz-transition: all, 0.2s;
  -o-transition: all, 0.2s;
  -webkit-transition: all, 0.2s;
  transition: all, 0.2s;
}
/* line 100, ../sass/components/_contextbar.scss */
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.print a:link:hover, #contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.print a:link:focus, #contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.print a:link:active,
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.print a:visited:hover,
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.print a:visited:focus,
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.print a:visited:active, #contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.facebook a:link:hover, #contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.facebook a:link:focus, #contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.facebook a:link:active,
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.facebook a:visited:hover,
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.facebook a:visited:focus,
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.facebook a:visited:active, #contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.twitter a:link:hover, #contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.twitter a:link:focus, #contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.twitter a:link:active,
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.twitter a:visited:hover,
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.twitter a:visited:focus,
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.twitter a:visited:active, #contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.linkedin a:link:hover, #contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.linkedin a:link:focus, #contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.linkedin a:link:active,
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.linkedin a:visited:hover,
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.linkedin a:visited:focus,
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.linkedin a:visited:active, #contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.pdf a:link:hover, #contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.pdf a:link:focus, #contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.pdf a:link:active,
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.pdf a:visited:hover,
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.pdf a:visited:focus,
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.pdf a:visited:active {
  opacity: 1;
  text-decoration: none;
}
/* line 41, ../sass/_mixins.scss */
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.pdf a:link,
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.pdf a:visited {
  text-indent: 0;
  padding-left: 30px;
  background-position: 0 2px;
  width: auto;
  padding-top: 6px;
}
/* line 41, ../sass/_mixins.scss */
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.publications a:link,
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.publications a:visited {
  text-indent: 0;
  padding-left: 30px;
  background-position: 0 2px;
  width: auto;
  padding-top: 5px;
}
/* line 41, ../sass/_mixins.scss */
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.print a:link,
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.print a:visited {
  background-position: 0 -49px;
}
/* line 41, ../sass/_mixins.scss */
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.facebook a:link,
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.facebook a:visited {
  background-position: 0 -100px;
}
/* line 41, ../sass/_mixins.scss */
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.twitter a:link,
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.twitter a:visited {
  background-position: 0 -150px;
}
/* line 41, ../sass/_mixins.scss */
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.linkedin a:link,
#contextbar #block-w21-adelphi-contextlinks-w21-adelphi-contextblock ul li.linkedin a:visited {
  background-position: 0 -201px;
}

/* line 1, ../sass/components/_footer.scss */
#footer {
  background-color: #505050;
  color: #ddd;
  font-size: 0.85em;
  min-height: 90px;
  overflow: hidden;
  padding: 24px 20px;
  overflow: hidden;
  *zoom: 1;
}
@media screen and (max-width: 960px) {
  /* line 1, ../sass/components/_footer.scss */
  #footer {
    text-align: center;
  }
}
/* line 14, ../sass/components/_footer.scss */
#footer .region-bottom {
  margin: 0 auto;
  max-width: 980px;
}
/* line 18, ../sass/components/_footer.scss */
#footer .region-bottom ul li {
  list-style: none;
  display: inline-block;
}
/* line 23, ../sass/components/_footer.scss */
#footer .region-bottom ul li a {
  color: #fff;
  opacity: .6;
}
/* line 27, ../sass/components/_footer.scss */
#footer .region-bottom ul li a:hover {
  opacity: 1;
}

/* line 36, ../sass/components/_footer.scss */
#block-w21-adelphi-basic-elements-w21-adelphi-sociallinks {
  float: left;
}
@media screen and (max-width: 960px) {
  /* line 36, ../sass/components/_footer.scss */
  #block-w21-adelphi-basic-elements-w21-adelphi-sociallinks {
    float: none;
  }
}

/* line 44, ../sass/components/_footer.scss */
#block-menu-menu-footer-menu,
#block-menu-block-1 {
  float: right;
}
@media screen and (max-width: 960px) {
  /* line 44, ../sass/components/_footer.scss */
  #block-menu-menu-footer-menu,
  #block-menu-block-1 {
    float: none;
  }
}
/* line 52, ../sass/components/_footer.scss */
#block-menu-menu-footer-menu h2,
#block-menu-block-1 h2 {
  display: none;
}
/* line 56, ../sass/components/_footer.scss */
#block-menu-menu-footer-menu ul,
#block-menu-block-1 ul {
  margin: 10px 0 0 0;
}
/* line 60, ../sass/components/_footer.scss */
#block-menu-menu-footer-menu li:after,
#block-menu-block-1 li:after {
  content: '\00A0\00A0\01C0';
  color: #cccccc;
}
/* line 65, ../sass/components/_footer.scss */
#block-menu-menu-footer-menu li.last:after,
#block-menu-block-1 li.last:after {
  content: '';
}
/* line 69, ../sass/components/_footer.scss */
#block-menu-menu-footer-menu li,
#block-menu-block-1 li {
  margin-left: 3px;
}
/* line 73, ../sass/components/_footer.scss */
#block-menu-menu-footer-menu li.first,
#block-menu-block-1 li.first {
  margin-left: 0;
}

/* line 80, ../sass/components/_footer.scss */
#block-w21-adelphi-basic-elements-w21-adelphi-sociallinks .menu li {
  border-right: 1px solid #444;
  margin-right: 10px;
}
/* line 84, ../sass/components/_footer.scss */
#block-w21-adelphi-basic-elements-w21-adelphi-sociallinks .menu li:last-child {
  border-right: 0;
}
/* line 89, ../sass/components/_footer.scss */
#block-w21-adelphi-basic-elements-w21-adelphi-sociallinks .menu a:link,
#block-w21-adelphi-basic-elements-w21-adelphi-sociallinks .menu a:visited {
  display: block;
  height: 36px;
  width: 36px;
  text-indent: -99999em;
  background-repeat: no-repeat;
  background-image: url("../images/footer-social-icons.png");
  background-size: 200px;
  padding-top: 10px;
  -moz-transition: all, 0.2s;
  -o-transition: all, 0.2s;
  -webkit-transition: all, 0.2s;
  transition: all, 0.2s;
}
/* line 102, ../sass/components/_footer.scss */
#block-w21-adelphi-basic-elements-w21-adelphi-sociallinks .menu a:link.rss-feed-link,
#block-w21-adelphi-basic-elements-w21-adelphi-sociallinks .menu a:visited.rss-feed-link {
  margin-right: 10px;
  background-position: -3px -3px;
}
/* line 107, ../sass/components/_footer.scss */
#block-w21-adelphi-basic-elements-w21-adelphi-sociallinks .menu a:link.facebook-link,
#block-w21-adelphi-basic-elements-w21-adelphi-sociallinks .menu a:visited.facebook-link {
  background-position: -3px -83px;
  margin-right: 10px;
}
/* line 112, ../sass/components/_footer.scss */
#block-w21-adelphi-basic-elements-w21-adelphi-sociallinks .menu a:link.linkedin-link,
#block-w21-adelphi-basic-elements-w21-adelphi-sociallinks .menu a:visited.linkedin-link {
  background-position: -4px -163px;
  margin-right: 14px;
}
/* line 117, ../sass/components/_footer.scss */
#block-w21-adelphi-basic-elements-w21-adelphi-sociallinks .menu a:link.youtube-link,
#block-w21-adelphi-basic-elements-w21-adelphi-sociallinks .menu a:visited.youtube-link {
  background-position: -3px -243px;
  margin-right: 14px;
}
/* line 122, ../sass/components/_footer.scss */
#block-w21-adelphi-basic-elements-w21-adelphi-sociallinks .menu a:link.twitter-link,
#block-w21-adelphi-basic-elements-w21-adelphi-sociallinks .menu a:visited.twitter-link {
  background-position: -3px -322px;
  margin-right: 14px;
}
/* line 127, ../sass/components/_footer.scss */
#block-w21-adelphi-basic-elements-w21-adelphi-sociallinks .menu a:link.newsletter-link,
#block-w21-adelphi-basic-elements-w21-adelphi-sociallinks .menu a:visited.newsletter-link {
  background-image: url("../images/icon-newsletter-white.png");
  background-position: 0 4px;
  background-repeat: no-repeat;
  background-size: 22px;
  display: block;
  height: 36px;
  padding-left: 40px;
  text-indent: 0;
  width: auto;
  margin-left: 4px;
}
/* line 145, ../sass/components/_footer.scss */
#block-w21-adelphi-basic-elements-w21-adelphi-sociallinks .menu a:focus,
#block-w21-adelphi-basic-elements-w21-adelphi-sociallinks .menu a:hover,
#block-w21-adelphi-basic-elements-w21-adelphi-sociallinks .menu a:active  {
  opacity: 1;
}

/* line 6, ../sass/components/_forms.scss */
label {
  margin: 20px 0 10px;
}

/* line 10, ../sass/components/_forms.scss */
fieldset {
  border: none;
}

/* line 14, ../sass/components/_forms.scss */
.form-text {
  background-color: #fff;
  border: 1px solid #c4c4c4;
  color: #444;
  font-size: 1.2em;
  padding: 6px;
}
/* line 21, ../sass/components/_forms.scss */
.form-text:focus, .form-text:active {
  border: 1px solid #505050;
}

/* line 27, ../sass/components/_forms.scss */
input[type=radio] {
  margin-right: 5px;
}

/* line 31, ../sass/components/_forms.scss */
.form-submit,
.button-rounded {
  -moz-transition: all, 0.25s;
  -o-transition: all, 0.25s;
  -webkit-transition: all, 0.25s;
  transition: all, 0.25s;
  background-color: #9b0014;
  border: 0;
  color: #fff;
  font-size: 1.2em;
  padding: 8px 14px;
}
/* line 40, ../sass/components/_forms.scss */
.form-submit:focus, .form-submit:hover, .form-submit:active,
.button-rounded:focus,
.button-rounded:hover,
.button-rounded:active {
  background-color: #505050;
}

/* line 48, ../sass/components/_forms.scss */
.form-item .description {
  color: #838383;
  font-size: .9em;
  line-height: 140%;
  margin-top: 10px;
  width: 90%;
}

/* line 59, ../sass/components/_forms.scss */
#content #edit-actions {
  text-align: right;
}

/* line 67, ../sass/components/_forms.scss */
.chosen-container-single .chosen-single {
  background: #fff;
  border-radius: 0;
  border: 1px solid #c4c4c4;
  box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  color: #444;
  height: 32px;
  padding: 4px 0 4px 8px;
}
/* line 76, ../sass/components/_forms.scss */
.chosen-container-single .chosen-single div b {
  background-position: 0 5px;
}

/* line 81, ../sass/components/_forms.scss */
.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 5px;
}

/* line 85, ../sass/components/_forms.scss */
.chosen-container .chosen-results li.highlighted {
  background-color: #9b0014;
  background-image: none;
}

/* line 90, ../sass/components/_forms.scss */
.chosen-container .chosen-results {
  padding-left: 0;
}

/* line 96, ../sass/components/_forms.scss */
#content .form-actions input {
  margin-right: 8px;
}

/* line 6, ../sass/components/_frontpage.scss */
.front #main {
  margin-top: 10px;
}
/* line 10, ../sass/components/_frontpage.scss */
.front #content {
  background-color: transparent;
}
/* line 13, ../sass/components/_frontpage.scss */
.front #content article.view-mode-full h2.node__title {
  display: none;
}
/* line 18, ../sass/components/_frontpage.scss */
.front #content h2 {
  padding-left: 0;
}
/* line 4, ../sass/components/_header.scss */
#header img {
  vertical-align: top;
}
/* line 8, ../sass/components/_header.scss */
#header .block {
  margin: 0;
  padding: 0;
}
/* line 13, ../sass/components/_header.scss */
.not-front #header {
  min-height: 90px;
  width: auto;
}
/* line 19, ../sass/components/_header.scss */
#header .menu-button,
#header .second-level-menu {
  display: none;
}
/* line 24, ../sass/components/_header.scss */
#header .header__image {
  position: relative;
  width: 1100px;
  #margin-left: -70px;
  max-width: 100%;
}
@media screen and (max-width: 640px) {
  /* line 24, ../sass/components/_header.scss */
  #header .header__image {
    width: 100%;
    margin-left: 0;
    height: 100%;
  }
}
/* line 36, ../sass/components/_header.scss */
#header .header__image img {
  width: 1100px;
  max-height: 300px;
}
@media screen and (max-width: 640px) {
  /* line 36, ../sass/components/_header.scss */
  #header .header__image img {
    width: 100%;
    max-height: none;
  }
}
/* line 47, ../sass/components/_header.scss */
#header .header__text {
  padding: 10px;
  position: absolute;
  display: block;
  z-index: 10;
  bottom: 20px;
  right: 100px;
  width: 250px;
  background-color: white;
}
@media screen and (max-width: 640px) {
  /* line 47, ../sass/components/_header.scss */
  #header .header__text {
    right: 20px;
  }
}
/* line 62, ../sass/components/_header.scss */
#header #navigation {
  display: none;
}

/* line 67, ../sass/components/_header.scss */
#header-navigation {
  height: auto;
  position: relative;
  width: 980px;
  z-index: 9998;
  overflow: visible;
}
/* line 74, ../sass/components/_header.scss */
#header-navigation.fixed {
  border-bottom: 1px solid #ddd;
  opacity: .98;
  position: fixed;
}

/* line 85, ../sass/components/_header.scss */
#header-top {
  font-size: .9em;
  margin-left: 267px;
  margin-top: 10px;
  outline: none;
  padding-right: 10px;
  text-align: right;
}
/* line 93, ../sass/components/_header.scss */
#header-top h2 {
  display: none;
}
/* line 97, ../sass/components/_header.scss */
#header-top ul,
#header-top ul li {
  display: inline;
  list-style: none;
}
/* line 103, ../sass/components/_header.scss */
#header-top a:link,
#header-top a:visited {
  color: #838383;
  padding: 4px;
}
/* line 112, ../sass/components/_header.scss */
#header-top .language-switcher-locale-url li.active {
  display: none;
}

/* line 118, ../sass/components/_header.scss */
#header-search {
  bottom: 2px;
  font-size: 0.8em;
  position: absolute;
  right: 12px;
}
/* line 124, ../sass/components/_header.scss */
#header-search label {
  display: none;
}
/* line 128, ../sass/components/_header.scss */
#header-search .search-form {
  -moz-transition: all, 0.25s;
  -o-transition: all, 0.25s;
  -webkit-transition: all, 0.25s;
  transition: all, 0.25s;
  border: 1px solid #ddd;
}
/* line 132, ../sass/components/_header.scss */
#header-search .search-form.active {
  border: 1px solid #9b0014;
}
/* line 135, ../sass/components/_header.scss */
#header-search .search-form.active .form-submit {
  background-color: #9b0014;
  background-position: 2px -30px;
}
/* line 142, ../sass/components/_header.scss */
#header-search .form-text {
  -moz-transition: all, 0.25s;
  -o-transition: all, 0.25s;
  -webkit-transition: all, 0.25s;
  transition: all, 0.25s;
  border: 0;
  position: relative;
  right: -4px;
  width: 80px;
}
/* line 149, ../sass/components/_header.scss */
#header-search .form-text:focus, #header-search .form-text:active, #header-search .form-text:hover {
  width: 120px;
  outline: none;
}
/* line 157, ../sass/components/_header.scss */
#header-search .form-text,
#header-search .form-submit {
  padding: 8px 4px;
}
/* line 162, ../sass/components/_header.scss */
#header-search .form-submit {
  background-color: #fff;
  background-image: url(../images/search.png);
  background-position: 2px 0;
  background-repeat: no-repeat;
  background-size: 30px;
  text-indent: -9999px;
  width: 33px;
}
/* line 171, ../sass/components/_header.scss */
#header-search .form-submit:hover {
  background-color: #505050 !important;
}

/* line 177, ../sass/components/_header.scss */
#site-logo {
  bottom: 20%;
  height: 60%;
  left: 20px;
  position: absolute;
  width: auto;
}

@media screen and (min-width: 640px) and (max-width: 959px) {
  /* line 205, ../sass/components/_header.scss */
  #header-navigation {
    width: 100%;
    position: relative;
  }

  /* line 211, ../sass/components/_header.scss */
  #navigation {
    display: none;
  }

  /* line 216, ../sass/components/_header.scss */
  #header-top {
    position: relative;
    right: 0px;
    padding-top: 10px;
  }

  /* line 222, ../sass/components/_header.scss */
  #header-search {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  /* line 232, ../sass/components/_header.scss */
  #header {
    height: auto;
    margin-left: 0;
    position: relative;
    width: 100%;
    background-color: #fff;
  }
  /* line 239, ../sass/components/_header.scss */
  #header #block-views-buehnenslider-block,
  #header #block-views-buehnenslider-buehne-unterseite {
    margin-left: 0;
    width: 100%;
  }
  /* line 245, ../sass/components/_header.scss */
  #header .menu-button,
  #header .second-level-menu {
    display: block;
  }

  /* line 251, ../sass/components/_header.scss */
  .menu-button {
    color: #838383;
    cursor: pointer;
    font-size: 30px;
    padding: 20px;
  }
  /* line 257, ../sass/components/_header.scss */
  .menu-button:link, .menu-button:visited {
    color: #838383;
  }
  /* line 262, ../sass/components/_header.scss */
  .menu-button:hover, .menu-button.active {
    color: #505050;
    text-decoration: none;
  }
  /* line 268, ../sass/components/_header.scss */
  .menu-button .text {
    display: none;
  }

  /* line 273, ../sass/components/_header.scss */
  .header .menu-button {
    left: 0;
    position: absolute;
    top: 0;
    z-index: 9999;
  }

  /* line 280, ../sass/components/_header.scss */
  #header-title {
    text-align: center;
  }
  /* line 283, ../sass/components/_header.scss */
  #header-title a {
    margin: 0 auto;
    width: 100px;
    display: block;
    height: 80px;
  }
  /* line 290, ../sass/components/_header.scss */
  #header-title img {
    top: 0;
  }

  /* line 295, ../sass/components/_header.scss */
  #header-navigation {
    width: 100%;
    margin-left: 0;
    position: relative;
    height: auto;
  }
  /* line 301, ../sass/components/_header.scss */
  #header-navigation.fixed {
    height: auto !important;
    position: relative;
  }

  /* line 307, ../sass/components/_header.scss */
  #site-logo {
    height: 60px;
    left: 0;
    margin: 10px auto 30px;
    position: relative;
  }

  /* line 314, ../sass/components/_header.scss */
  #header-search {
    display: none;
  }

  /* line 318, ../sass/components/_header.scss */
  #header-top {
    display: none !important;
  }
  /* line 321, ../sass/components/_header.scss */
  #header-top li.dropdown {
    display: none;
  }

  /* line 326, ../sass/components/_header.scss */
  .not-front #header {
    min-height: 80px;
  }

  /* line 330, ../sass/components/_header.scss */
  #navigation {
    display: block;
  }
}
@media screen and (min-width: 960px) {
  /* line 339, ../sass/components/_header.scss */
  #header-top .menu-8380,
  #header-top .menu-8489 {
    display: none;
  }
}
/* line 1, ../sass/components/_layout.scss */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* line 15, ../sass/components/_layout.scss */
#wrapper {
  min-height: 100%;
  position: relative;
}

/* line 23, ../sass/components/_layout.scss */
#page {
  margin: 0 auto;
  padding-bottom: 90px;
  padding-left: 10px;
  padding-right: 10px;
  max-width: 980px;
}
@media screen and (max-width: 960px) {
  /* line 23, ../sass/components/_layout.scss */
  #page {
    padding-bottom: 190px;
  }
}
/* line 34, ../sass/components/_layout.scss */
#page:after {
  content: '';
  display: block;
  clear: both;
}
@media screen and (max-width: 640px) {
  /* line 23, ../sass/components/_layout.scss */
  #page {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

/* line 50, ../sass/components/_layout.scss */
#main {
  margin-top: 10px;
  margin-bottom: 10px;
}
/* line 54, ../sass/components/_layout.scss */
.not-front #main {
  width: 100%;
}
/* line 69, ../sass/_mixins.scss */
.not-front #main:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
@media screen and (min-width: 960px) {
  /* line 54, ../sass/components/_layout.scss */
  .not-front #main {
    width: 960px;
  }
}

@media screen and (min-width: 640px) and (max-width: 959px) {
  /* line 68, ../sass/components/_layout.scss */
  #content {
    float: right;
    width: 75%;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 960px) {
  /* line 68, ../sass/components/_layout.scss */
  #content {
    float: right;
    margin-left: -812px;
    margin-right: 240px;
    width: 490px;
    margin-bottom: 10px;
  }
}
/* line 84, ../sass/components/_layout.scss */
#content .node.view-mode-full {
  padding: 20px;
  margin-bottom: 10px;
}

@media screen and (max-width: 640px) {
  /* line 92, ../sass/components/_layout.scss */
  #content,
  .no-sidebars #content {
    position: relative;
    width: 100%;
    float: none;
    margin: 0 0 10px;
  }
}
/* line 101, ../sass/components/_layout.scss */
.no-sidebars #content {
  float: none;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

/* line 111, ../sass/components/_layout.scss */
.sidebar {
  width: 230px;
}
@media screen and (min-width: 640px) and (max-width: 959px) {
  /* line 111, ../sass/components/_layout.scss */
  .sidebar {
    width: 25%;
  }
}

/* line 119, ../sass/components/_layout.scss */
.region-sidebar-first {
  float: left;
}

/* line 123, ../sass/components/_layout.scss */
.region-sidebar-second {
  float: right;
  margin-left: 10px;
  padding-right: 0;
}
@media screen and (min-width: 640px) and (max-width: 959px) {
  /* line 123, ../sass/components/_layout.scss */
  .region-sidebar-second {
    margin-left: 0;
    padding-right: 10px;
  }
}
@media screen and (max-width: 640px) {
  /* line 123, ../sass/components/_layout.scss */
  .region-sidebar-second {
    margin-left: 0;
  }
}

/* line 142, ../sass/components/_layout.scss */
.one-sidebar.sidebar-first #content {
  margin-right: 0;
  width: 730px;
  max-width: 100%;
}
@media screen and (min-width: 640px) and (max-width: 959px) {
  /* line 142, ../sass/components/_layout.scss */
  .one-sidebar.sidebar-first #content {
    margin-right: 0;
    float: right;
    width: 75%;
  }
}
@media screen and (max-width: 640px) {
  /* line 142, ../sass/components/_layout.scss */
  .one-sidebar.sidebar-first #content {
    width: 100%;
    margin: 0;
  }
}

/* line 163, ../sass/components/_layout.scss */
.one-sidebar.sidebar-second #content {
  margin-left: -850px;
  margin-right: 240px;
  width: 610px;
}
@media screen and (min-width: 640px) and (max-width: 959px) {
  /* line 163, ../sass/components/_layout.scss */
  .one-sidebar.sidebar-second #content {
    width: 75%;
    margin: 0 0 10px 0;
    float: left;
  }
}
@media screen and (max-width: 640px) {
  /* line 163, ../sass/components/_layout.scss */
  .one-sidebar.sidebar-second #content {
    width: 100%;
    margin: 0 0 10px 0;
  }
}
@media screen and (min-width: 640px) and (max-width: 959px) {
  /* line 179, ../sass/components/_layout.scss */
  .one-sidebar.sidebar-second .region-sidebar-second {
    float: right;
    width: 25%;
    padding: 0 0 0 10px;
  }
}

@media screen and (min-width: 640px) and (max-width: 959px) {
  /* line 192, ../sass/components/_layout.scss */
  .two-sidebars .region-sidebar-first:after {
    clear: both;
    content: ' ';
    display: block;
  }
}
@media screen and (min-width: 640px) and (max-width: 959px) {
  /* line 200, ../sass/components/_layout.scss */
  .two-sidebars .region-sidebar-second {
    float: left;
  }
}
@media screen and (min-width: 640px) and (max-width: 959px) {
  /* line 205, ../sass/components/_layout.scss */
  .two-sidebars .region-sidebar-second #block-search-form {
    display: flex;
  }
}
@media screen and (min-width: 640px) and (max-width: 959px) {
  /* line 211, ../sass/components/_layout.scss */
  .two-sidebars .region-sidebar-second #block-locale-language {
    display: flex;
  }
  /* line 215, ../sass/components/_layout.scss */
  .two-sidebars .region-sidebar-second #block-locale-language ul.language-switcher-locale-url {
    width: 100%;
  }
}

/* line 226, ../sass/components/_layout.scss */
#footer {
  width: 100%;
  height: 90px;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 960px) {
  /* line 226, ../sass/components/_layout.scss */
  #footer {
    height: 190px;
  }
}

/* line 7, ../sass/components/_lists.scss */
#content > .node > .field-name-body ul,
#content > .node > .field-name-field-body ul {
  clear: both;
  list-style: none;
  padding-left: 20px;
  margin: 10px 0;
}
/* line 13, ../sass/components/_lists.scss */
#content > .node > .field-name-body ul li,
#content > .node > .field-name-field-body ul li {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAAHnlligAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAEVJREFUeNpi3Lx5MwMDAxMDGAAEECMKDyCAoDwIYGJAAgABhFsGNwcggFD04FRFmQRAANHDDnpIAAQYTn+QbNKoBko0AABsWw7l0GV5UAAAAABJRU5ErkJggg==");
  background-position: 5px 8px;
  background-repeat: no-repeat;
  background-size: 4px;
  margin: 0 0 6px -22px;
  padding: 0 0 0 20px;
}
/* line 23, ../sass/components/_lists.scss */
#content > .node > .field-name-body ol,
#content > .node > .field-name-field-body ol {
  clear: both;
  counter-reset: i 0;
  list-style: none;
  margin: 10px 0;
}
/* line 29, ../sass/components/_lists.scss */
#content > .node > .field-name-body ol li,
#content > .node > .field-name-field-body ol li {
  margin: 0 0 6px;
  padding: 0 0 0 20px;
}
/* line 34, ../sass/components/_lists.scss */
#content > .node > .field-name-body ol li:before,
#content > .node > .field-name-field-body ol li:before {
  color: #838383;
  content: counter(i) ". ";
  counter-increment: i;
  margin-left: -22px;
  padding-right: .5em;
}

/* line 7, ../sass/components/_misc-adelphi.scss */
#page-title {
  border-bottom: 1px solid #eee;
  margin: 0;
  padding: 15px 20px 13px;
  position: relative;
}
@media screen and (max-width: 640px) {
  /* line 7, ../sass/components/_misc-adelphi.scss */
  #page-title {
    position: static !important;
    clip: auto;
    height: auto;
    width: auto;
    overflow: auto;
  }
}

/* line 22, ../sass/components/_misc-adelphi.scss */
#content .block h2.block__title {
  color: #838383;
  font-size: 1.2em;
}

/* line 86, ../sass/components/_misc-adelphi.scss */
.links {
  display: block;
  clear: both;
}

/* line 95, ../sass/components/_misc-adelphi.scss */
.node-readmore a:link, .view > .more-link a:link, #content .block .more a:link, .sidebar .more-link:link, .sidebar .views-field-view-node a:link, .view-footer a:link, .node-readmore a:visited, .view > .more-link a:visited, #content .block .more a:visited, .sidebar .more-link:visited,
.sidebar .views-field-view-node a:visited,
.view-footer a:visited {
  background-image: url(../images/more-link-arrow.png);
  background-position: right 1px;
  background-repeat: no-repeat;
  background-size: 14px;
  color: #b6b6b6;
  font-family: "DINWebPro-Bold", Arial, Helvetica, sans-serif;
  font-size: 1em;
  line-height: 100%;
  padding-right: 18px;
  text-transform: uppercase;
}
/* line 109, ../sass/components/_misc-adelphi.scss */
.node-readmore a:hover, .view > .more-link a:hover, #content .block .more a:hover, .sidebar .more-link:hover:link, .sidebar .more-link:hover:visited, .sidebar .views-field-view-node a:hover:link,
.sidebar .views-field-view-node a:hover:visited, .view-footer a:hover:link,
.view-footer a:hover:visited, .node-readmore a:active, .view > .more-link a:active, #content .block .more a:active, .sidebar .more-link:active:link, .sidebar .more-link:active:visited, .sidebar .views-field-view-node a:active:link,
.sidebar .views-field-view-node a:active:visited, .view-footer a:active:link,
.view-footer a:active:visited, .node-readmore a:focus, .view > .more-link a:focus, #content .block .more a:focus, .sidebar .more-link:focus:link, .sidebar .more-link:focus:visited, .sidebar .views-field-view-node a:focus:link,
.sidebar .views-field-view-node a:focus:visited, .view-footer a:focus:link,
.view-footer a:focus:visited {
  background-position: 47px right;
}

/* line 129, ../sass/components/_misc-adelphi.scss */
.node-readmore {
  display: block;
  clear: both;
}

/* line 167, ../sass/components/_misc-adelphi.scss */
.field-name-field-download a:link:not(.contextual-links-trigger),
.field-name-field-download a:visited:not(.contextual-links-trigger) {
  background-image: url(../images/download.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 15px;
  padding: 2px 0 2px 25px;
  display: block;
}

/* line 182, ../sass/components/_misc-adelphi.scss */
body.page-views #content > .view .views-row, body.page-taxonomy #content > .node {
  background-color: #fff;
  padding: 20px;
  margin: 0 0 1px;
  position: relative;
}
/* line 189, ../sass/components/_misc-adelphi.scss */
body.page-views #content > .view .views-row h2, body.page-taxonomy #content > .node h2 {
  line-height: 135%;
  margin-bottom: 6px;
}
/* line 194, ../sass/components/_misc-adelphi.scss */
body.page-views #content > .view .views-row h2 a:link, body.page-taxonomy #content > .node h2 a:link,
body.page-views #content > .view .views-row h2 a:visited,
body.page-taxonomy #content > .node h2 a:visited {
  color: #838383;
}

/* line 207, ../sass/components/_misc-adelphi.scss */
body.page-taxonomy #content > .node h2.node-title {
  font-size: 1.154em;
  margin: 0 0 6px;
  padding: 0;
  text-transform: none;
}
/* line 213, ../sass/components/_misc-adelphi.scss */
body.page-taxonomy #content > .node h2.node-title a:link,
body.page-taxonomy #content > .node h2.node-title a:visited {
  color: #838383;
}

/* line 220, ../sass/components/_misc-adelphi.scss */
.views-field-title a:link,
.views-field-title a:visited {
  color: #838383;
}

/* line 228, ../sass/components/_misc-adelphi.scss */
#content .block .more a {
  margin-top: 12px;
}

/* line 236, ../sass/components/_misc-adelphi.scss */
body.page-taxonomy-term #page-title, body.page-taxonomy #content #page-title {
  background-color: #fff;
}
/* line 240, ../sass/components/_misc-adelphi.scss */
body.page-taxonomy-term #content, body.page-taxonomy #content #content {
  background: none;
}
/* line 242, ../sass/components/_misc-adelphi.scss */
body.page-taxonomy-term #content > .view, body.page-taxonomy #content #content > .view {
  padding: 0;
}

/* line 250, ../sass/components/_misc-adelphi.scss */
.not-front #content .node.view-mode-full > .field-name-field-bild {
  width: 100%;
  height: auto;
}

/* line 275, ../sass/components/_misc-adelphi.scss */
.field-name-field-tags .field-label,
.field-name-field-tags .field-items,
.field-name-field-tags .field-item {
  display: inline;
}

/* line 298, ../sass/components/_misc-adelphi.scss */
.header__image .copyright {
  font-size: 0.75em;
  line-height: 120%;
  color: #b6b6b6;
  padding: 4px 10px;
  position: absolute;
  bottom: 3px;
  right: 3px;
}

/* line 310, ../sass/components/_misc-adelphi.scss */
.node-unpublished {
  background: none;
  position: relative;
}
/* line 314, ../sass/components/_misc-adelphi.scss */
.node-unpublished .unpublished {
  background-color: #9b0014;
  color: #fff;
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9em;
  font-weight: normal;
  height: 0;
  line-height: 10%;
  overflow: visible;
  padding: 15px 10px;
  position: absolute;
  right: 0;
  text-align: left;
  text-transform: none;
  top: 0;
  word-wrap: break-word;
  z-index: 1;
}

/* line 335, ../sass/components/_misc-adelphi.scss */
div.contextual-links-wrapper {
  z-index: 10000;
  /* this is BS! use decent values! */
}

@media screen and (min-width: 960px) {
  /* line 343, ../sass/components/_misc-adelphi.scss */
  .sticky-wrapper-sidebarfirst {
    position: absolute;
  }
}
/* line 350, ../sass/components/_misc-adelphi.scss */
.media-video.media-vimeo .mejs-controls {
  display: none;
}

/* line 356, ../sass/components/_misc-adelphi.scss */
.entity-media.media-video:after {
  content: " ";
  display: block;
  clear: both;
}

@media screen and (min-width: 640px) {
  /* line 366, ../sass/components/_misc-adelphi.scss */
  .sidebar .entity-media.media-video .field-name-field-media-url .mejs-container.mejs-video {
    height: auto !important;
    width: auto !important;
  }

  /* line 374, ../sass/components/_misc-adelphi.scss */
  .sidebar .media-video {
    min-height: 150px;
  }
  /* line 377, ../sass/components/_misc-adelphi.scss */
  .sidebar .media-video .mejs-inner {
    min-height: 155px;
  }
  /* line 380, ../sass/components/_misc-adelphi.scss */
  .sidebar .media-video .mejs-inner .mejs-playpause-button,
  .sidebar .media-video .mejs-inner .mejs-currenttime-container,
  .sidebar .media-video .mejs-inner .mejs-time-rail,
  .sidebar .media-video .mejs-inner .mejs-duration-container {
    visibility: hidden !important;
  }
  /* line 389, ../sass/components/_misc-adelphi.scss */
  .sidebar .media-video .mejs-overlay-button,
  .sidebar .media-video .mejs-controls {
    display: none;
    visibility: hidden;
  }
}
@media screen and (max-width: 640px) {
  /* line 403, ../sass/components/_misc-adelphi.scss */
  .entity-media.media-video .me-plugin {
    width: 100%;
    height: 100%;
  }
  /* line 407, ../sass/components/_misc-adelphi.scss */
  .entity-media.media-video .me-plugin iframe {
    width: 100%;
    height: 100%;
  }
}
/* line 420, ../sass/components/_misc-adelphi.scss */
#content article .embed .entity-media.media-document {
  display: inline;
}
/* line 423, ../sass/components/_misc-adelphi.scss */
#content article .embed .entity-media.media-document .field-name-field-document-file {
  display: inline;
}
/* line 426, ../sass/components/_misc-adelphi.scss */
#content article .embed .entity-media.media-document .field-name-field-document-file .field-items {
  display: inline;
}
/* line 429, ../sass/components/_misc-adelphi.scss */
#content article .embed .entity-media.media-document .field-name-field-document-file .field-items .field-item {
  display: inline;
}
/* line 434, ../sass/components/_misc-adelphi.scss */
#content article .embed .entity-media.media-document .field-name-field-document-file .file-icon {
  display: none;
}
/* line 440, ../sass/components/_misc-adelphi.scss */
#content article .embed .entity-media.media-document:after {
  display: inline;
}

/* line 447, ../sass/components/_misc-adelphi.scss */
#site-map h2.title {
  display: none;
}

/* line 451, ../sass/components/_misc-adelphi.scss */
.field-name-field-video-poster {
  display: inline-block;
}

/* line 457, ../sass/components/_misc-adelphi.scss */
.field-name-body .float-left .media-image.media-page-half,
.field-name-body .float-left .media-original {
  margin-right: 20px;
  margin-bottom: 10px;
}
/* line 465, ../sass/components/_misc-adelphi.scss */
.field-name-body .float-right .media-image.media-page-half,
.field-name-body .float-right .media-original {
  margin-left: 20px;
  margin-bottom: 10px;
}

/* line 474, ../sass/components/_misc-adelphi.scss */
.media-gallery img {
  width: 100%;
}
/* line 478, ../sass/components/_misc-adelphi.scss */
.media-gallery .bx-controls {
  top: 37%;
  bottom: auto;
  height: 50%;
}
/* line 483, ../sass/components/_misc-adelphi.scss */
.media-gallery .bx-controls .bx-controls-direction a:link {
  margin-top: auto;
}

/* line 489, ../sass/components/_misc-adelphi.scss */
.media-gallery.media-page-half {
  max-width: 50%;
}
/* line 492, ../sass/components/_misc-adelphi.scss */
.media-gallery.media-page-half .bx-controls {
  top: 30%;
}

/* line 497, ../sass/components/_misc-adelphi.scss */
.entity-media.entity-media {
  position: relative;
}

/* line 504, ../sass/components/_misc-adelphi.scss */
body.page-node-add-network-participant #content .node-form.node-network_participant-form {
  background-color: white;
  padding: 20px;
}
/* line 510, ../sass/components/_misc-adelphi.scss */
body.page-node-add-network-participant #content .node-form.node-network_participant-form .filter-wrapper.form-wrapper#edit-body-und-0-format {
  display: none;
}
/* line 514, ../sass/components/_misc-adelphi.scss */
body.page-node-add-network-participant #content .node-form.node-network_participant-form #edit-actions {
  text-align: left;
  margin-bottom: 50px;
  margin-top: 20px;
}

/* line 523, ../sass/components/_misc-adelphi.scss */
#network-participant-node-form .description:after {
  display: none;
}

/* line 529, ../sass/components/_misc-adelphi.scss */
iframe[src^="https://piwik.adelphi.de"],
iframe[src^="https://matomo.adelphi.de"] {
  height: 290px;
}

@media screen and (min-width: 960px) {
  /* line 536, ../sass/components/_misc-adelphi.scss */
  iframe[src^="https://piwik.adelphi.de"],
  iframe[src^="https://matomo.adelphi.de"] {
    height: 195px;
  }
}
@media (max-width: 415px) {
  /* line 543, ../sass/components/_misc-adelphi.scss */
  .embed.float-right.media-page-half,
  .embed.float-left.media-page-half {
    width: 50%;
  }
}
/* line 3, ../sass/components/_navigation.scss */
#navigation {
  position: absolute;
  bottom: 18px;
  left: 100px;
  outline: none;
}
/* line 13, ../sass/components/_navigation.scss */
#navigation #block-menu-block-2 .menu li {
  overflow: visible;
}
/* line 41, ../sass/_mixins.scss */
#navigation #block-menu-block-2 .menu a:link,
#navigation #block-menu-block-2 .menu a:visited {
  -moz-transition: all, 0.25s;
  -o-transition: all, 0.25s;
  -webkit-transition: all, 0.25s;
  transition: all, 0.25s;
  border-right: 1px solid #ddd;
  color: #838383;
  font-family: "DINWebPro-Bold", Arial, Helvetica, sans-serif;
  font-size: 1.2em;
  outline: none;
  padding: 7px 20px;
}
/* line 28, ../sass/components/_navigation.scss */
#navigation #block-menu-block-2 .menu a:link.active, #navigation #block-menu-block-2 .menu a:link.active-trail,
#navigation #block-menu-block-2 .menu a:visited.active,
#navigation #block-menu-block-2 .menu a:visited.active-trail {
  color: #9b0014;
}
/* line 34, ../sass/components/_navigation.scss */
#navigation #block-menu-block-2 .menu li.menu__item ul.menu li a {
  padding-left: 36px !important;
}
/* line 48, ../sass/_mixins.scss */
#navigation #block-menu-block-2 .menu a:focus,
#navigation #block-menu-block-2 .menu a:hover,
#navigation #block-menu-block-2 .menu a:active {
  color: #838383;
}

/* line 45, ../sass/components/_navigation.scss */
#content #block-menu-block-3 {
  padding: 0 0 1px;
  margin: 0;
  background-color: transparent;
}
/* line 50, ../sass/components/_navigation.scss */
#content #block-menu-block-3 .menu-block-wrapper:after {
  content: " ";
  display: block;
  clear: both;
}
/* line 56, ../sass/components/_navigation.scss */
#content #block-menu-block-3 li a {
  display: block;
  padding: 10px 10px;
  margin-right: 1px;
  background-color: white;
  float: left;
}

/* line 66, ../sass/components/_navigation.scss */
.submenu,
.submenu-toggle {
  display: none;
}

@media screen and (max-width: 640px) {
  /* line 76, ../sass/components/_navigation.scss */
  #navigation {
    bottom: inherit;
    left: 0;
    border-top: 1px solid #ddd;
    display: none;
    font-size: 1.3em;
    left: 0;
    position: relative;
  }
  /* line 89, ../sass/components/_navigation.scss */
  #navigation #block-menu-block-2 .menu li {
    display: block;
    text-align: left;
    width: 100%;
    float: none;
  }
  /* line 41, ../sass/_mixins.scss */
  #navigation #block-menu-block-2 .menu a:link,
  #navigation #block-menu-block-2 .menu a:visited {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    display: block;
    padding: 18px 20px !important;
    width: 100%;
  }

  /* line 110, ../sass/components/_navigation.scss */
  .submenu {
    display: none;
    border-top: 1px solid #ddd;
  }
  /* line 114, ../sass/components/_navigation.scss */
  .submenu ul {
    list-style: none;
    padding: 0;
  }
  /* line 119, ../sass/components/_navigation.scss */
  .submenu li a {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    display: block;
    padding: 18px 20px !important;
    width: 100%;
  }
  /* line 126, ../sass/components/_navigation.scss */
  .submenu li a.active-trail {
    color: #9b0014;
  }

  /* line 132, ../sass/components/_navigation.scss */
  .submenu-toggle {
    text-align: center;
    padding: 16px 0;
    width: 50px;
    height: 50px;
    z-index: 1;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
  }

  /* line 145, ../sass/components/_navigation.scss */
  #block-system-main-menu {
    display: none;
  }
}
@media screen and (min-width: 640px) and (max-width: 959px) {
  /* line 41, ../sass/_mixins.scss */
  #navigation #block-menu-block-2 .menu a:link,
  #navigation #block-menu-block-2 .menu a:visited {
    font-size: 1.1em;
    padding: 7px 10px;
  }
}
/* line 4, ../sass/components/_override.scss */
#admin-menu,
#admin-menu .dropdown {
  z-index: 99999;
}

/* line 9, ../sass/components/_override.scss */
html.ie9 #site-logo {
  -ms-transform: scale(0.5, 0.5);
}

/* line 13, ../sass/components/_override.scss */
.embed {
  margin: 15px 0 10px 0;
}

/* line 17, ../sass/components/_override.scss */
.fl {
  float: left;
}
/* line 19, ../sass/components/_override.scss */
.fl.embed {
  margin: 0 20px 1em 0;
}

/* line 24, ../sass/components/_override.scss */
.fr {
  float: right;
}
/* line 26, ../sass/components/_override.scss */
.fr.embed {
  margin: 0 0 1em 20px;
}

/* line 31, ../sass/components/_override.scss */
a.contextual-links-trigger {
  background: white url("/modules/contextual/images/gear-select.png") no-repeat 2px 0;
}

/* line 3, ../sass/components/_pager.scss */
.pager {
  padding: 14px 0;
  margin-bottom: 20px;
  margin-top: 20px;
}

/* line 10, ../sass/components/_pager.scss */
.pager li {
  background-image: none !important;
  height: 30px;
  padding: 0;
}

/* line 16, ../sass/components/_pager.scss */
.pager li.pager-current, .pager li.pager-current:focus, .pager li.pager-current:hover, .pager li.pager-current:active, .pager li a {
  margin: 0 4px;
  padding: 10px;
  border: 1px solid #ddd;
  color: #888;
}

/* line 23, ../sass/components/_pager.scss */
.pager li a:focus, .pager li a:hover, .pager li a:active {
  background-color: #ddd;
  border: 1px solid #ddd;
  text-decoration: none;
}

/* line 29, ../sass/components/_pager.scss */
.pager li.pager-current, .pager li.pager-current:focus, .pager li.pager-current:hover, .pager li.pager-current:active {
  background-color: #9b0014;
  border: 1px solid #9b0014;
  color: #fff;
  cursor: default;
}

/* line 9, ../sass/components/_pages.scss */
body.page-node #page-title,
body.page-node #content > .node {
  background: #fff;
}
/* line 14, ../sass/components/_pages.scss */
body.page-node #page-title {
  color: #505050;
  padding-right: 2.5em;
}

/* line 20, ../sass/components/_pages.scss */
#site-map {
  background-color: #ffffff;
  padding: 20px;
}

/* line 43, ../sass/components/_pages.scss */
#page-title.backgrounded {
  background: #fff;
}

/* line 51, ../sass/components/_pages.scss */
.page-newsletter #content {
  background-color: #fff;
}
/* line 54, ../sass/components/_pages.scss */
.page-newsletter #content > h1,
.page-newsletter #content > p,
.page-newsletter #content > form > table td:first-child {
  padding-left: 20px;
}
/* line 60, ../sass/components/_pages.scss */
.page-newsletter #content > form > table {
  width: 100%;
}

/* line 74, ../sass/components/_pages.scss */
#webform-component-first-name,
#webform-component-name,
#webform-component-email {
  float: left;
  width: 33%;
}
/* line 80, ../sass/components/_pages.scss */
#webform-component-first-name label,
#webform-component-name label,
#webform-component-email label {
  margin-top: 0;
}
/* line 84, ../sass/components/_pages.scss */
#webform-component-first-name .form-text,
#webform-component-name .form-text,
#webform-component-email .form-text {
  width: 95%;
}
@media screen and (max-width: 640px) {
  /* line 74, ../sass/components/_pages.scss */
  #webform-component-first-name,
  #webform-component-name,
  #webform-component-email {
    width: 100%;
  }
}

/* line 93, ../sass/components/_pages.scss */
#webform-component-privacy-policy {
  font-size: 0.7rem;
  line-height: 150%;
  margin-bottom: 20px;
}

/* line 99, ../sass/components/_pages.scss */
#content .webform-confirmation {
  background: #fff;
  padding: 20px;
  display: block;
}

/* line 105, ../sass/components/_pages.scss */
#content .webform-confirmation + .links {
  background: #fff;
  padding: 0 20px 20px 20px;
  display: block;
}

/* line 114, ../sass/components/_pages.scss */
.page-taxonomy .term-listing-heading {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 10px;
}

/* line 125, ../sass/components/_pages.scss */
.page-user #content > .profile {
  padding-left: 20px;
}
/* line 131, ../sass/components/_pages.scss */
.page-user.not-logged-in #content > form {
  padding: 20px;
}
/* line 135, ../sass/components/_pages.scss */
.page-user.not-logged-in #content .form-text,
.page-user.not-logged-in #content .form-password {
  width: 100%;
}
@media screen and (min-width: 640px) {
  /* line 147, ../sass/components/_pages.scss */
  .page-user.no-sidebars.not-logged-in #content .tabs-primary {
    padding-left: 240px;
  }
  /* line 151, ../sass/components/_pages.scss */
  .page-user.no-sidebars.not-logged-in #content #page-title {
    padding-left: 250px;
  }
  /* line 155, ../sass/components/_pages.scss */
  .page-user.no-sidebars.not-logged-in #content > form {
    padding: 0 20px 20px 250px;
    width: 700px;
  }
}

/* line 165, ../sass/components/_pages.scss */
.page-user #content {
  background-color: #fff;
}

/* line 172, ../sass/components/_pages.scss */
#block-w21-sitemap-all {
  background: #fff;
  padding: 0 20px 20px;
}
/* line 176, ../sass/components/_pages.scss */
#block-w21-sitemap-all ul.sitemap ul {
  padding-left: 3em;
}

/* line 1, ../sass/components/_prefooter.scss */
#prefooter + #footer {
  position: static;
}

/* line 5, ../sass/components/_prefooter.scss */
#prefooter {
  display: block;
  height: auto;
  background: #151618;
  color: white;
}
/* line 11, ../sass/components/_prefooter.scss */
#prefooter .block + #block-w21-adelphi-basic-elements-w21-adelphi-sociallinks {
  margin-top: 24px;
}
/* line 15, ../sass/components/_prefooter.scss */
#prefooter #block-w21-adelphi-basic-elements-w21-adelphi-sociallinks {
  float: none !important;
}
/* line 20, ../sass/components/_prefooter.scss */
#prefooter #block-w21-adelphi-basic-elements-w21-adelphi-sociallinks .menu li {
  float: left;
}
/* line 23, ../sass/components/_prefooter.scss */
#prefooter #block-w21-adelphi-basic-elements-w21-adelphi-sociallinks .menu li.first {
  margin-left: 0px;
}
/* line 27, ../sass/components/_prefooter.scss */
#prefooter #block-w21-adelphi-basic-elements-w21-adelphi-sociallinks .menu li.last {
  margin-right: 0px;
}
/* line 30, ../sass/components/_prefooter.scss */
#prefooter #block-w21-adelphi-basic-elements-w21-adelphi-sociallinks .menu li.last:after {
  content: "";
  display: table;
  clear: both;
}
/* line 40, ../sass/components/_prefooter.scss */
#prefooter > .wrap {
  max-width: 980px;
  display: flex;
  flex-direction: row;
  margin: 0 auto;
}
/* line 46, ../sass/components/_prefooter.scss */
#prefooter > .wrap > div.block {
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 15px 20px;
}
/* line 51, ../sass/components/_prefooter.scss */
#prefooter > .wrap > div.block.first {
  width: 38%;
}
/* line 55, ../sass/components/_prefooter.scss */
#prefooter > .wrap > div.block.second {
  width: 32%;
}
/* line 59, ../sass/components/_prefooter.scss */
#prefooter > .wrap > div.block.last {
  width: 30%;
}
/* line 62, ../sass/components/_prefooter.scss */
#prefooter > .wrap > div.block.last img {
  width: 110px;
  height: auto;
}
/* line 68, ../sass/components/_prefooter.scss */
#prefooter > .wrap > div.block h3 {
  color: white;
  font-size: 1.4em;
}

@media screen and (max-width: 650px) {
  /* line 77, ../sass/components/_prefooter.scss */
  #prefooter {
    height: auto;
  }
  /* line 80, ../sass/components/_prefooter.scss */
  #prefooter > .wrap {
    flex-direction: column;
  }
  /* line 83, ../sass/components/_prefooter.scss */
  #prefooter > .wrap div.block.first,
  #prefooter > .wrap div.block.second,
  #prefooter > .wrap div.block.last {
    width: 100%;
  }
  /* line 90, ../sass/components/_prefooter.scss */
  #prefooter > .wrap .block.last p a {
    display: block;
  }
}
@media screen and (min-width: 650px) and (max-width: 700px) {
  /* line 99, ../sass/components/_prefooter.scss */
  #prefooter {
    height: 295px;
  }
}
/* line 6, ../sass/components/_search.scss */
.page-search .search-info {
  display: none;
}
/* line 10, ../sass/components/_search.scss */
.page-search .search-advanced {
  margin-top: 10px;
}
/* line 14, ../sass/components/_search.scss */
.page-search .search-results li {
  margin-right: 1em;
  margin-bottom: 1em;
}
/* line 19, ../sass/components/_search.scss */
.page-search #content {
  background-color: #fff;
  padding-bottom: 10px;
}
/* line 25, ../sass/components/_search.scss */
.page-search #search-form .form-item-keys label {
  display: block;
}
/* line 29, ../sass/components/_search.scss */
.page-search #search-form #edit-keys {
  font-size: 1.5em;
  margin-bottom: 10px;
}
/* line 34, ../sass/components/_search.scss */
.page-search #search-form #edit-submit {
  position: relative;
  padding: 9px 12px;
  top: -1px;
}
/* line 41, ../sass/components/_search.scss */
.page-search .search-results-wrapper {
  padding-left: 20px;
}
/* line 44, ../sass/components/_search.scss */
.page-search .search-results-wrapper h2 {
  margin: 10px 0;
}

/* line 51, ../sass/components/_search.scss */
.search-results .search-snippet-info {
  padding-left: 0;
}

/* line 56, ../sass/components/_search.scss */
#content > .search-form {
  padding-left: 20px;
}

/* line 62, ../sass/components/_search.scss */
.sidebar-second .pager {
  padding-left: 20px;
  padding-right: 20px;
}

/* line 70, ../sass/components/_search.scss */
.no-sidebars #content > .search-form,
.no-sidebars #content > h2,
.no-sidebars .search-results {
  padding: 0 20%;
}
/* line 76, ../sass/components/_search.scss */
.no-sidebars .search-results .search-snippet-info {
  padding-left: 0;
}
/* line 80, ../sass/components/_search.scss */
.no-sidebars.page-search #page-title {
  padding-left: 20%;
}

/* line 3, ../sass/components/_sidebars.scss */
.sidebar.region-sidebar-first {
  padding-right: 10px;
}
@media screen and (max-width: 640px) {
  /* line 3, ../sass/components/_sidebars.scss */
  .sidebar.region-sidebar-first {
    padding-right: 0;
  }
}
@media screen and (max-width: 640px) {
  /* line 1, ../sass/components/_sidebars.scss */
  .sidebar {
    float: none;
    width: 100%;
    padding-right: 0;
  }
}
/* line 20, ../sass/components/_sidebars.scss */
.sidebar a:link,
.sidebar a:visited {
  color: #505050;
}
/* line 28, ../sass/components/_sidebars.scss */
.sidebar .views-field {
  margin-bottom: 10px;
}
/* line 31, ../sass/components/_sidebars.scss */
.sidebar .views-field:last-child {
  margin-bottom: 0;
}
/* line 36, ../sass/components/_sidebars.scss */
.sidebar .views-label {
  display: block;
  color: #838383;
}
/* line 44, ../sass/components/_sidebars.scss */
.sidebar .more-link {
  margin-top: 5px;
}
/* line 47, ../sass/components/_sidebars.scss */
.sidebar .more-link:link, .sidebar .more-link:visited {
  display: block;
  text-align: right;
}
/* line 55, ../sass/components/_sidebars.scss */
.sidebar .views-field-view-node {
  text-align: right;
}
/* line 66, ../sass/components/_sidebars.scss */
.sidebar .field-name-field-mail a {
  color: #9b0014;
}
/* line 73, ../sass/components/_sidebars.scss */
.sidebar .views-field-nid a:link,
.sidebar .views-field-nid a:visited {
  display: block;
  padding: 5px 5px 4px 27px;
  background-image: url("../images/download@1x.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-position: 0 2px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* line 73, ../sass/components/_sidebars.scss */
  .sidebar .views-field-nid a:link,
  .sidebar .views-field-nid a:visited {
    background-image: url("../images/download@2x.png");
    background-size: 19px auto;
  }
}
/* line 98, ../sass/components/_sidebars.scss */
.sidebar .views-field-field-mail a:link,
.sidebar .views-field-field-mail a:visited {
  color: #9b0014;
}
/* line 107, ../sass/components/_sidebars.scss */
.sidebar .field-name-field-copyright {
  color: #b6b6b6;
  font-size: 0.75em;
  line-height: 120%;
  margin-bottom: 6px;
  padding-left: 20%;
  text-align: right;
}
/* line 119, ../sass/components/_sidebars.scss */
.sidebar video {
  background-color: #111;
}
/* line 126, ../sass/components/_sidebars.scss */
.sidebar ul, .sidebar ol {
  padding: 0 0 0 20px;
}
/* line 130, ../sass/components/_sidebars.scss */
.sidebar ul {
  list-style: disc;
}
/* line 134, ../sass/components/_sidebars.scss */
.sidebar ol {
  list-style: decimal;
}
/* line 141, ../sass/components/_sidebars.scss */
.sidebar #block-system-main-menu ul,
.sidebar #block-system-main-menu ul li,
.sidebar #block-locale-language ul,
.sidebar #block-locale-language ul li,
.sidebar #block-views-tweets-block ul,
.sidebar #block-views-tweets-block ul li {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}
/* line 148, ../sass/components/_sidebars.scss */
.sidebar #block-system-main-menu ul ul li,
.sidebar #block-system-main-menu ul li ul li,
.sidebar #block-locale-language ul ul li,
.sidebar #block-locale-language ul li ul li,
.sidebar #block-views-tweets-block ul ul li,
.sidebar #block-views-tweets-block ul li ul li {
  margin-left: 10px;
}
/* line 156, ../sass/components/_sidebars.scss */
.sidebar #block-views-news-block-news ul,
.sidebar #block-views-news-block-news ul li,
.sidebar #block-views-events-block-events ul,
.sidebar #block-views-events-block-events ul li {
  list-style: none;
  list-style-image: none;
  margin: 0 0 0.7rem 0;
  padding: 0;
}
/* line 163, ../sass/components/_sidebars.scss */
.sidebar #block-views-news-block-news ul ul li,
.sidebar #block-views-news-block-news ul li ul li,
.sidebar #block-views-events-block-events ul ul li,
.sidebar #block-views-events-block-events ul li ul li {
  margin-left: 10px;
}
/* line 170, ../sass/components/_sidebars.scss */
.sidebar #block-system-main-menu > ul > li.is-expanded {
  margin: 0 0 7px 0;
}
/* line 173, ../sass/components/_sidebars.scss */
.sidebar #block-system-main-menu > ul > li.is-expanded:last-child > a:link {
  padding-bottom: 8px;
}
/* line 179, ../sass/components/_sidebars.scss */
.sidebar .chosen-container {
  width: 100% !important;
}
@media screen and (min-width: 640px) and (max-width: 959px) {
  /* line 185, ../sass/components/_sidebars.scss */
  .sidebar .block-block .media-image.clearfix:after {
    clear: none;
  }
}
/* line 5, ../sass/components/_sidebars-blocks.scss */
.sidebar .block-block h2 {
  margin: 0 0 5px 0;
}
@media screen and (min-width: 640px) and (max-width: 959px) {
  /* line 12, ../sass/components/_sidebars-blocks.scss */
  .sidebar .sidebar .block-block .media-image.clearfix:after {
    clear: left;
  }
}
@media screen and (min-width: 640px) and (max-width: 959px) {
  /* line 20, ../sass/components/_sidebars-blocks.scss */
  .sidebar .sidebar .block-block .media-image.clearfix:after {
    clear: none;
  }
}
/* line 26, ../sass/components/_sidebars-blocks.scss */
.sidebar .block:not(.block-w21-block-overrides) {
  background-color: #fff;
  margin-bottom: 10px;
  padding: 10px;
}
@media screen and (max-width: 640px) {
  /* line 26, ../sass/components/_sidebars-blocks.scss */
  .sidebar .block:not(.block-w21-block-overrides) {
    padding: 20px;
  }
}
/* line 36, ../sass/components/_sidebars-blocks.scss */
.sidebar .block:not(.block-w21-block-overrides) .node-medien-bild.view-mode-teaserbox_publikation_230_width img {
  width: 100%;
}
/* line 43, ../sass/components/_sidebars-blocks.scss */
.sidebar .block-views .views-row {
  padding: 5px 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  margin: 0;
}
/* line 50, ../sass/components/_sidebars-blocks.scss */
.sidebar .block-views .views-row:first-child {
  border: 0;
  padding-top: 0;
}
/* line 55, ../sass/components/_sidebars-blocks.scss */
.sidebar .block-views .views-row:last-child {
  border: 0;
  padding-bottom: 0;
}
/* line 61, ../sass/components/_sidebars-blocks.scss */
.sidebar .block-views .views-field-title {
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  font-size: 1em;
}
/* line 67, ../sass/components/_sidebars-blocks.scss */
.sidebar .block-views .view-footer {
  text-align: right;
}
/* line 70, ../sass/components/_sidebars-blocks.scss */
.sidebar .block-views .view-footer a:link,
.sidebar .block-views .view-footer a:visited {
  color: #B6B6B6;
}
/* line 77, ../sass/components/_sidebars-blocks.scss */
.sidebar h2 {
  font-size: 1.2em;
  font-weight: normal;
  line-height: 150%;
  margin-bottom: 5px;
}
/* line 84, ../sass/components/_sidebars-blocks.scss */
.sidebar .view ul li {
  margin-bottom: 10px;
}
/* line 88, ../sass/components/_sidebars-blocks.scss */
.sidebar .sidebar .embed > .media-video {
  min-height: 150px;
}
/* line 4, ../sass/components/_sidebars-menus.scss */
.sidebar .block-menu .menu,
.sidebar .block-menu-block .menu {
  background-color: none;
  font-size: 1.2em;
  line-height: 140%;
  font-family: "DINWebPro-Bold", Arial, Helvetica, sans-serif;
  font-weight: normal;
  line-height: 140%;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}
/* line 14, ../sass/components/_sidebars-menus.scss */
.sidebar .block-menu .menu h2,
.sidebar .block-menu-block .menu h2 {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
/* line 19, ../sass/components/_sidebars-menus.scss */
.sidebar ul.menu {
  padding-left: 0;
  font-family: "DINWebPro-Bold", Arial, Helvetica, sans-serif;
}
/* line 41, ../sass/_mixins.scss */
.sidebar ul.menu a:link,
.sidebar ul.menu a:visited {
  background-color: #fff;
  color: #505050;
  display: block;
  padding: 0 0 8px 0;
  text-decoration: none;
  outline: none;
}
/* line 31, ../sass/components/_sidebars-menus.scss */
.sidebar ul.menu a:link.active-trail,
.sidebar ul.menu a:visited.active-trail {
  color: #9b0014;
}
/* line 48, ../sass/_mixins.scss */
.sidebar ul.menu a:focus,
.sidebar ul.menu a:hover,
.sidebar ul.menu a:active {
  text-decoration: underline;
}
/* line 41, ../sass/_mixins.scss */
.sidebar li:last-child a:link,
.sidebar li:last-child a:visited {
  padding-bottom: 0;
}
/* line 48, ../sass/components/_sidebars-menus.scss */
.sidebar ul.menu > li > ul.menu {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85em;
  padding-bottom: 10px;
  padding-left: 15px;
}
/* line 41, ../sass/_mixins.scss */
.sidebar ul.menu > li > ul.menu a:link,
.sidebar ul.menu > li > ul.menu a:visited {
  color: #888;
  text-decoration: none;
  padding: 2px 0;
}
/* line 60, ../sass/components/_sidebars-menus.scss */
.sidebar ul.menu > li > ul.menu a:link.active-trail,
.sidebar ul.menu > li > ul.menu a:visited.active-trail {
  text-decoration: underline;
  color: #505050;
}
/* line 48, ../sass/_mixins.scss */
.sidebar ul.menu > li > ul.menu a:focus,
.sidebar ul.menu > li > ul.menu a:hover,
.sidebar ul.menu > li > ul.menu a:active {
  background: none;
  text-decoration: underline;
  color: #505050;
}
/* line 72, ../sass/components/_sidebars-menus.scss */
.sidebar ul.menu > li > ul.menu ul.menu a {
  padding: 0 0 0.1em 0;
}
/* line 3, ../sass/components/_sidebars-forms.scss */
.sidebar .form-text {
  font-size: 1em;
  width: 100%;
}
/* line 8, ../sass/components/_sidebars-forms.scss */
.sidebar .form-submit {
  font-size: 1em;
  width: 100%;
}
/* line 4, ../sass/components/_sidebars-block-login.scss */
.sidebar #block-user-login {
  padding: 0;
}
/* line 8, ../sass/components/_sidebars-block-login.scss */
.sidebar #block-user-login h2 {
  padding: 10px;
}
/* line 12, ../sass/components/_sidebars-block-login.scss */
.sidebar #block-user-login .item-list {
  font-size: 0.8em;
  clear: both;
  line-height: 140%;
  padding: 10px;
  border-top: 1px solid #eee;
  text-align: center;
}
/* line 20, ../sass/components/_sidebars-block-login.scss */
.sidebar #block-user-login .form-item {
  padding: 0;
  margin: 0;
  border-top: 1px solid #eee;
  position: relative;
  overflow: hidden;
  *zoom: 1;
}
/* line 28, ../sass/components/_sidebars-block-login.scss */
.sidebar #block-user-login label {
  padding: 10px 5px 10px 10px;
  margin: 0;
  width: 38%;
  float: left;
  font-size: 0.8em;
  text-align: right;
  font-family: Arial, Helvetica, sans-serif;
}
/* line 36, ../sass/components/_sidebars-block-login.scss */
.sidebar #block-user-login label:after {
  content: ':';
}
/* line 41, ../sass/components/_sidebars-block-login.scss */
.sidebar #block-user-login .form-text {
  background: none;
  border: none;
  padding: 12px 10px 12px 4px;
  width: 62%;
  float: right;
  font-size: 0.9em;
  outline: none;
  position: absolute;
}
/* line 55, ../sass/components/_sidebars-block-login.scss */
.sidebar #block-user-login .form-text:hover {
  border-bottom: 2px solid #ccc;
}
/* line 58, ../sass/components/_sidebars-block-login.scss */
.sidebar #block-user-login .form-text:active, .sidebar #block-user-login .form-text:focus {
  border-bottom: 2px solid #111;
}
/* line 64, ../sass/components/_sidebars-block-login.scss */
.sidebar #block-user-login input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
}
/* line 68, ../sass/components/_sidebars-block-login.scss */
.sidebar #block-user-login .form-required {
  display: none;
}
/* line 72, ../sass/components/_sidebars-block-login.scss */
.sidebar #block-user-login #edit-actions {
  padding: 0 10px 10px 10px;
}

/* line 201, ../sass/components/_sidebars.scss */
.not-logged-in .block-w21-block-overrides > .block-title {
  display: none;
}

@media screen and (max-width: 640px) {
  /* line 210, ../sass/components/_sidebars.scss */
  #undefined-sticky-wrapper {
    position: relative !important;
    top: 0 !important;
    height: auto !important;
  }
  /* line 214, ../sass/components/_sidebars.scss */
  #undefined-sticky-wrapper .sidebar {
    top: 0 !important;
    position: relative !important;
  }
}
/* line 2, ../sass/components/_tabs.scss */
.tabs-primary {
  background-image: none !important;
  border-bottom: 1px solid #eee;
  font-size: 0.9em;
  margin: 0 0 10px 0;
  padding: 0;
  position: relative;
  width: 100%;
}
/* line 12, ../sass/components/_tabs.scss */
.tabs-primary a.tabs-primary__tab-link,
.tabs-primary a.tabs-primary__tab-link.is-active {
  text-shadow: none;
  -moz-transition: none;
  -o-transition: none;
  -webkit-transition: none;
  transition: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  background: none;
  background-color: #fff;
  border: none;
  color: #888;
  letter-spacing: 0;
  padding: 10px 10px;
  text-decoration: underline;
  border-right: 1px solid #eee;
}
/* line 26, ../sass/components/_tabs.scss */
.tabs-primary a.tabs-primary__tab-link:hover,
.tabs-primary a.tabs-primary__tab-link.is-active:hover {
  color: #111;
  background-color: #ddd;
  text-decoration: none;
}
/* line 34, ../sass/components/_tabs.scss */
.tabs-primary li:last-child a {
  border: none;
}
/* line 38, ../sass/components/_tabs.scss */
.tabs-primary a.tabs-primary__tab-link.is-active {
  cursor: default;
}
/* line 41, ../sass/components/_tabs.scss */
.tabs-primary a.tabs-primary__tab-link {
  cursor: pointer;
}
/* line 45, ../sass/components/_tabs.scss */
.tabs-primary .tabs-primary__tab,
.tabs-primary .tabs-primary__tab.is-active {
  background-color: #fff;
  border: none;
  text-decoration: none;
}
/* line 52, ../sass/components/_tabs.scss */
.tabs-primary .tabs-primary__tab.is-active a.tabs-primary__tab-link {
  color: #111;
  background-color: #fff;
  text-decoration: none;
}

/*
.page-taxonomy-term {

  #content {
    .taxonomy-term-description,
    .views-row {
      @extend %node-list-item;
      h2 {
        margin-top: 0;
        margin-bottom: 10px;
      }
      .links {
        //border-top: 1px solid #ddd;
        display: block;
        width: 100%;
        margin-bottom: 0;
        padding-top: 17px;
        margin-bottom: 0;
        text-align: right;
        li:last-child {
          margin-right: 0;
          padding-right: 0;
        }
      }
      .more {
        margin-top: 15px;
        a {
          @extend %more-link;
        }
      }
    }
  }
}
*/
/* line 39, ../sass/components/_taxonomy.scss */
.taxonomy-term-description {
  margin: 0;
  padding: 20px;
}

/* line 45, ../sass/components/_taxonomy.scss */
.taxonomy-term .field-name-field-bild {
  display: none;
}

/* line 52, ../sass/components/_taxonomy.scss */
body.page-taxonomy .taxonomy-term-description {
  background: #fff;
}
/* line 58, ../sass/components/_taxonomy.scss */
body.page-taxonomy #content > .node {
  padding-bottom: 0;
}

/* line 3, ../sass/components/_views.scss */
.views-row {
  margin: 1em 0;
}

/* line 7, ../sass/components/_views.scss */
.views-field-title {
  font-family: "DINWebPro-Bold", Arial, Helvetica, sans-serif;
  font-weight: normal;
  line-height: 140%;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  font-size: 1.2em;
}

/* line 12, ../sass/components/_views.scss */
.view-footer {
  margin-top: 6px;
  text-align: right;
  display: block;
}

/* line 27, ../sass/components/_views.scss */
.page-views #content > .view > .view-header {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 10px;
}
/* line 32, ../sass/components/_views.scss */
.page-views #content > .view > .view-footer {
  background-color: #fff;
  padding: 20px;
  border-top: 1px solid #eee;
  margin-top: 30px;
}

/* line 46, ../sass/components/_views.scss */
#content .view-header h1 {
  margin: 0 0 10px;
}
/* line 50, ../sass/components/_views.scss */
#content .view-header p:first-of-type {
  margin-top: 0 !important;
}

/* line 59, ../sass/components/_views.scss */
.node-news .field-name-field-date,
.node-events .field-name-field-date {
  display: inline-block;
  float: left;
  margin-right: 5px;
  border-right: 1px solid #ccc;
  padding-right: 10px;
  margin-right: 10px;
}

/* line 70, ../sass/components/_views.scss */
.view-display-id-block_events h5.views-field-title {
  margin-bottom: 0;
}

/* Hier kommen uncommittete Änderungen von der Adelphi Live-Seite rein */
/* Änerderung am Banner für die waste-concepts Seite  */
/* line 5, ../sass/_adelphi.scss */
.header__text.waste-concepts {
  left: -15px !important;
}

@media (max-width: 660px) {
  /* line 10, ../sass/_adelphi.scss */
  .header__text.waste-concepts {
    margin-left: 10px;
    margin-right: 10px;
    width: 100% !important;
    left: 0 !important;
  }
}
