/**
* @file
* Styles are organized using the SMACSS technique. @see http://smacss.com/book/
*
* When you turn on CSS aggregation at admin/config/development/performance, all
* of these @include files will be combined into a single file.
*/
/* Import Sass mixins, variables, Compass modules, etc. */
/* HTML element (SMACSS base) rules */
/**
 * @file
 * Normalize.css is intended to be used as an alternative to CSS resets.
 *
 * This file is a slight fork of these original sources:
 * - normalize.css v2.1.2 | MIT License | git.io/normalize
 * - normalize.scss v2.1.2 | MIT/GPLv2 License | bit.ly/normalize-with-compass
 *
 * It's suggested that you read the normalize.scss file and customise it to meet
 * your needs, rather then including the file in your project and overriding the
 * defaults later in your CSS.
 * @see http://nicolasgallagher.com/about-normalize-css/
 *
 * Also: @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 *       @see http://snook.ca/archives/html_and_css/no_css_reset/
 */
/**
 * HTML5 display definitions
 */
/* Correct `block` display not defined in IE 8/9. */
/* line 33, ../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 40, ../sass/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
/* line 52, ../sass/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* Address styling not present in IE 8/9. */
/* line 58, ../sass/_normalize.scss */
[hidden] {
  display: none;
}

/**
 * Base
 *
 * Instead of relying on the fonts that are available on a user's computer, you
 * can use web fonts which, like images, are resources downloaded to the user's
 * browser. Because of the bandwidth and rendering resources required, web fonts
 * should be used with care.
 *
 * Numerous resources for web fonts can be found on Google. Here are a few
 * websites where you can find Open Source fonts to download:
 * - http://www.fontsquirrel.com/fontface
 * - http://www.theleagueofmoveabletype.com
 *
 * In order to use these fonts, you will need to convert them into formats
 * suitable for web fonts. We recommend the free-to-use Font Squirrel's
 * Font-Face Generator:
 *   http://www.fontsquirrel.com/fontface/generator
 *
 * The following is an example @font-face declaration. This font can then be
 * used in any ruleset using a property like this:  font-family: Example, serif;
 *
 * Since we're using Sass, you'll need to declare your font faces here, then you
 * can add them to the font variables in the _base.scss partial.
 */
/*
@font-face {
  font-family: 'Example';
  src: url('../fonts/example.eot');
  src: url('../fonts/example.eot?iefix') format('eot'),
    url('../fonts/example.woff') format('woff'),
    url('../fonts/example.ttf') format('truetype'),
    url('../fonts/example.svg#webfontOkOndcij') format('svg');
  font-weight: normal;
  font-style: normal;
}
*/
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 * 3. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 */
/* line 106, ../sass/_normalize.scss */
html {
  font-family: "myriad-pro", sans-serif;
  /* 1 */
  font-size: 112.5%;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  line-height: 1.4em;
}

/* Remove default margin. */
/* line 126, ../sass/_normalize.scss */
body {
  margin: 0;
  padding: 0;
}

/**
 * Links
 *
 * The order of link states are based on Eric Meyer's article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
/* Address `outline` inconsistency between Chrome and other browsers. */
/* line 148, ../sass/_normalize.scss */
a:focus {
  outline: thin dotted;
}

/* Improve readability when focused and also mouse hovered in all browsers. */
/* line 154, ../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 170, ../sass/_normalize.scss */
p,
pre {
  margin: 1.33333em 0;
}

/* line 173, ../sass/_normalize.scss */
blockquote {
  /* Also indent the quote on both sides. */
  margin: 1.33333em 30px;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 182, ../sass/_normalize.scss */
h1 {
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
  font-size: 2em;
  line-height: 1.33333em;
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
  margin-top: 0.66667em;
  margin-bottom: 0.66667em;
  font-family: 'din-2014', sans-serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: .025em;
  line-height: 1em;
}

/* line 192, ../sass/_normalize.scss */
h2 {
  font-size: 1.5em;
  line-height: 1.77778em;
  margin-top: 0.88889em;
  margin-bottom: 0.88889em;
  font-family: 'din-2014', sans-serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: .025em;
  line-height: 1.2em;
}

/* line 199, ../sass/_normalize.scss */
h3 {
  font-size: 1.17em;
  line-height: 2.2792em;
  margin-top: 1.1396em;
  margin-bottom: 1.1396em;
  font-family: 'din-2014', sans-serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: .025em;
  line-height: 1.3em;
}

/* line 206, ../sass/_normalize.scss */
h4 {
  font-size: 1em;
  line-height: 1.33333em;
  margin-top: 1.33333em;
  margin-bottom: 1.33333em;
  font-family: 'din-2014', sans-serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: .025em;
  font-weight: 500;
}

/* line 213, ../sass/_normalize.scss */
h5 {
  font-size: 0.83em;
  line-height: 1.60643em;
  margin-top: 1.60643em;
  margin-bottom: 1.60643em;
  font-family: 'din-2014', sans-serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: .025em;
  line-height: 1.3em;
}

/* line 220, ../sass/_normalize.scss */
h6 {
  font-size: 0.67em;
  line-height: 1.99005em;
  margin-top: 1.99005em;
  margin-bottom: 1.99005em;
  font-family: 'din-2014', sans-serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: .025em;
  line-height: 1.4em;
}

/* Address styling not present in IE 8/9, Safari 5, and Chrome. */
/* line 229, ../sass/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */
/* line 235, ../sass/_normalize.scss */
b,
strong {
  font-weight: 500;
}

/* Address styling not present in Safari 5 and Chrome. */
/* line 240, ../sass/_normalize.scss */
dfn {
  font-style: italic;
}

/* Address differences between Firefox and other browsers. */
/* line 245, ../sass/_normalize.scss */
hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  border: 1px solid #666;
  padding-bottom: -1px;
  margin: 1.33333em 0;
}

/* Address styling not present in IE 8/9. */
/* line 254, ../sass/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/* Correct font family set oddly in Safari 5 and Chrome. */
/* line 265, ../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.33333em;
}

/* Improve readability of pre-formatted text in all browsers. */
/* line 274, ../sass/_normalize.scss */
pre {
  white-space: pre-wrap;
}

/* Set consistent quote types. */
/* line 286, ../sass/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/* Address inconsistent and variable font size in all browsers. */
/* line 291, ../sass/_normalize.scss */
small {
  font-size: 80%;
}

/* Prevent `sub` and `sup` affecting `line-height` in all browsers. */
/* line 297, ../sass/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 303, ../sass/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 306, ../sass/_normalize.scss */
sub {
  bottom: -0.25em;
}

/**
 * Lists
 */
/* line 316, ../sass/_normalize.scss */
dl,
menu,
ol,
ul {
  /* Address margins set differently in IE 6/7. */
  margin: 1.33333em 0;
}

/* line 323, ../sass/_normalize.scss */
ol ol,
ol ul,
ul ol,
ul ul {
  /* Turn off margins on nested lists. */
  margin: 0;
}

/* line 328, ../sass/_normalize.scss */
dd {
  margin: 0 0 0 30px;
  /* LTR */
}

/* Address paddings set differently in IE 6/7. */
/* line 335, ../sass/_normalize.scss */
menu,
ol,
ul {
  padding: 0 0 0 30px;
  /* LTR */
}

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
/* line 353, ../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 374, ../sass/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* Address margin not present in IE 8/9 and Safari 5. */
/* line 379, ../sass/_normalize.scss */
figure {
  margin: 0;
}

/**
 * Forms
 */
/* Define consistent border, margin, and padding. */
/* line 395, ../sass/_normalize.scss */
fieldset {
  margin: 0 2px;
  /* Apply borders and padding that keep the vertical rhythm. */
  border-color: #c0c0c0;
  border-top-style: solid;
  border-top-width: 0.05556em;
  padding-top: 0.41111em;
  border-bottom-style: solid;
  border-bottom-width: 0.05556em;
  padding-bottom: 0.81111em;
  border-left-style: solid;
  border-left-width: 0.05556em;
  padding-left: 0.81111em;
  border-right-style: solid;
  border-right-width: 0.05556em;
  padding-right: 0.81111em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
/* line 410, ../sass/_normalize.scss */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 * 4. Improve appearance and consistency with IE 6/7.
 * 5. Keep form elements constrained in their containers.
 */
/* line 428, ../sass/_normalize.scss */
button,
input,
select,
textarea {
  font-family: "din-2014", sans-serif;
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
  max-width: 100%;
  /* 5 */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 5 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 445, ../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 456, ../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 472, ../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 484, ../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 495, ../sass/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-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 509, ../sass/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
  -moz-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 519, ../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 525, ../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 534, ../sass/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* Drupal-style form labels. */
/* line 541, ../sass/_normalize.scss */
label,
.views-exposed-form label {
  font-family: "din-2014", sans-serif;
  font-weight: 500;
  display: block;
}

/**
 * Tables
 */
/* line 550, ../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.33333em;
  margin-bottom: 1.33333em;
}
/* line 560, ../sass/_normalize.scss */
table th,
table .views-field-title {
  font-family: "din-2014", sans-serif;
  font-weight: 500;
}

/* line 566, ../sass/_normalize.scss */
iframe {
  max-width: 100%;
}

/* Layout rules */
/* Component (SMACSS module) rules */
/**
 * @file
 * SMACSS Modules
 *
 * Adds modular sets of styles.
 *
 * Additional useful selectors can be found in Zen's online documentation.
 * https://drupal.org/node/1707736
 */
/**
 * Wireframes.
 */
/* line 22, ../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 52, ../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 57, ../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 74, ../sass/components/_misc.scss */
#skip-link {
  margin: 0;
}
/* line 78, ../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 93, ../sass/components/_misc.scss */
.header__logo {
  margin: 0;
  padding: 0;
}

/* Logo image. */
/* line 100, ../sass/components/_misc.scss */
.header__logo-image {
  vertical-align: bottom;
}

/* Wrapper for website name and slogan. */
/* line 105, ../sass/components/_misc.scss */
.header__name-and-slogan {
  float: left;
}

/* The name of the website. */
/* line 110, ../sass/components/_misc.scss */
.header__site-name {
  margin: 0;
  font-size: 2em;
  line-height: 1.33333em;
}

/* The link around the name of the website. */
/* line 118, ../sass/components/_misc.scss */
.header__site-link:link, .header__site-link:visited {
  color: #000;
  text-decoration: none;
}
/* line 124, ../sass/components/_misc.scss */
.header__site-link:hover, .header__site-link:focus {
  text-decoration: underline;
}

/* The slogan (or tagline) of a website. */
/* line 130, ../sass/components/_misc.scss */
.header__site-slogan {
  margin: 0;
}

/* The secondary menu (login, etc.) */
/* line 135, ../sass/components/_misc.scss */
.header__secondary-menu {
  float: right;
  /* LTR */
}

/* Wrapper for any blocks placed in the header region. */
/* line 140, ../sass/components/_misc.scss */
.header__region {
  /* Clear the logo. */
  clear: both;
}

/**
 * Navigation bar.
 */
/* line 148, ../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 152, ../sass/components/_misc.scss */
#navigation .block {
  margin-bottom: 0;
}
/* line 163, ../sass/components/_misc.scss */
#navigation .links,
#navigation .menu {
  margin: 0;
  padding: 0;
  text-align: left;
  /* LTR */
}
/* line 168, ../sass/components/_misc.scss */
#navigation .links li,
#navigation .menu li {
  /* A simple method to get navigation links to appear in one line. */
  float: left;
  /* LTR */
  padding: 0 10px 0 0;
  /* LTR */
  list-style-type: none;
  list-style-image: none;
}

/**
 * Breadcrumb navigation.
 */
/* line 182, ../sass/components/_misc.scss */
.breadcrumb ol {
  margin: 0;
  padding: 0;
}
/* line 186, ../sass/components/_misc.scss */
.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/**
 * Titles.
 */
/* line 202, ../sass/components/_misc.scss */
.page__title,
.node__title,
.block__title,
.comments__title,
.comments__form-title,
.comment__title {
  /* Comment title. */
  margin: 0;
}

/**
 * Messages.
 */
/* line 209, ../sass/components/_misc.scss */
.messages, .messages--status, .messages--warning, .messages--error {
  margin: 1.33333em 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 224, ../sass/components/_misc.scss */
.messages--warning {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACuElEQVRIiWP4//8/Ay0xSYqntTpnT252zqeJBf0Njhsykrz/pyd6/e9vcNpGVQv6q2wlm0qc/r0+IPD/3UG+/61l9v9mdrjIUc2C7hqHUzc3S///eZwBjO9tF/vfWe1wjioWTKixVm8otPn38wQT3IKfxxn/t5Va/utpsNSg2ILWcttrNzdJgQ3+dpQRjEHs+9tE/zeXWt+gyILOamuTqlxrsOtPLub+7+emBsSq/88v5wL7oqHQ9H9nmbkF2RbUF1rev7lJEuziuU3i/90ddcB4UZsoJC62ifyvK7R4QJYFrcUGrmUZ5v9hYb9hosh/bzcDMN42VRgeF9W5hv8bi/XdSbagKtfs2c1NEvCIPbaQ/7+/pwkYn17Ki0hR24T/l2eZPCfJgsZ83dCiNOP/yCnn7iau/8G+5mD8aBsHSoqqyNL9X5erHUm0BcVpRm9ubhZHMoTh/4eDzP/DA23+RwTZ/P96hAlF7t5Wof8FyfpvibKgNk8noyDZ4D9quofg1Bjr/1kJlhjiIF+Upmn/r83RzCJoQXaC3qcbm8SwGMLwvybP/H8jMGlik7u7VeB/Zqz2J7wWVGdr1uTG62J1PQgfWST1/+hiCaxyIF8UJqv9r8hQrcVpQVqkzrcbG0WwGvB2H/P/lnx5MAaxsam5vYn3f2KY+jesFpSlqfZnxWjidP2OGWL/g/0swBjExu4Lhv958Ur/i5KU+lEsCA1lYI4JUv95bZ0gTo2Pt3P+z0myBmMQG5e6mxu4/kf4Kf8EmQm3oCRNebKrvSawIGPBqRG9sMOp5hjjfwdrlf/58bKT4RaUpWvtcLZV/39iscD/H0AFP46jYwYiMeP/44u4/9tbKQODSXUH3II9G7v18hI0n8YGKv+IDVT6joxj/BVx4mgcOCde/SnITPRUJAHEGlTCEkQV19TAAN8FC67hZdFXAAAAAElFTkSuQmCC');
  border-color: #ed5;
}

/* line 233, ../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 243, ../sass/components/_misc.scss */
.messages__list {
  margin: 0;
}

/* line 246, ../sass/components/_misc.scss */
.messages__item {
  list-style-image: none;
}

/* Core/module installation error messages. */
/* line 251, ../sass/components/_misc.scss */
.messages--error p.error {
  color: #333;
}

/* System status report. */
/* line 257, ../sass/components/_misc.scss */
.ok,
.messages--status {
  background-color: #f8fff0;
  color: #234600;
}

/* line 262, ../sass/components/_misc.scss */
.warning,
.messages--warning {
  background-color: #fffce5;
  color: #840;
}

/* line 267, ../sass/components/_misc.scss */
.error,
.messages--error {
  background-color: #fef5f1;
  color: #8c2e0b;
}

/**
 * Tabs.
 */
/* Basic positioning styles shared by primary and secondary tabs. */
/* line 277, ../sass/components/_misc.scss */
.tabs-primary, .tabs-secondary {
  *zoom: 1;
  background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(100%, #bbbbbb), color-stop(100%, transparent));
  background-image: -webkit-linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  background-image: -moz-linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  background-image: -o-linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  background-image: linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  /* IE 9 and earlier don't understand gradients. */
  list-style: none;
  border-bottom: 1px solid #bbbbbb \0/ie;
  margin: 1.33333em 0;
  padding: 0 2px;
  white-space: nowrap;
}
/* line 41, ../sass/_mixins.scss */
.tabs-primary:before, .tabs-secondary:before, .tabs-primary:after, .tabs-secondary:after {
  content: " ";
  display: table;
}
/* line 45, ../sass/_mixins.scss */
.tabs-primary:after, .tabs-secondary:after {
  clear: both;
}

/* line 287, ../sass/components/_misc.scss */
.tabs-primary__tab, .tabs-primary__tab.is-active, .tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  float: left;
  /* LTR */
  margin: 0 3px;
}

/* line 291, ../sass/components/_misc.scss */
a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active, a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  border: 1px solid #e9e9e9;
  border-right: 0;
  border-bottom: 0;
  display: block;
  line-height: 1.4em;
  text-decoration: none;
}

/* Primary tabs. */
/* line 304, ../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 white;
  border: 1px solid #bbbbbb;
  border-bottom-color: transparent;
  /* IE 9 and earlier don't understand gradients. */
  border-bottom: 0 \0/ie;
}

/* line 313, ../sass/components/_misc.scss */
.is-active.tabs-primary__tab {
  border-bottom-color: white;
}

/* line 319, ../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;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-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 329, ../sass/components/_misc.scss */
a.tabs-primary__tab-link:hover, a.tabs-primary__tab-link:focus {
  background-color: #e9e9e9;
  border-color: #f2f2f2;
}

/* line 333, ../sass/components/_misc.scss */
a.tabs-primary__tab-link:active, a.tabs-primary__tab-link.is-active {
  background-color: transparent;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFE9E9E9', endColorstr='#00E9E9E9');
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e9e9e9), color-stop(100%, rgba(233, 233, 233, 0)));
  background-image: -webkit-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: -moz-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: -o-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  border-color: #fff;
}

/* Secondary tabs. */
/* line 357, ../sass/components/_misc.scss */
.tabs-secondary {
  font-size: .9em;
  /* Collapse bottom margin of ul.primary. */
  margin-top: -1.33333em;
}

/* line 364, ../sass/components/_misc.scss */
.tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  margin: 0.66667em 3px;
}

/* line 370, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  -webkit-border-radius: 0.75em;
  -moz-border-radius: 0.75em;
  -ms-border-radius: 0.75em;
  -o-border-radius: 0.75em;
  border-radius: 0.75em;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  text-shadow: 1px 1px 0 white;
  background-color: #f2f2f2;
  color: #666;
  padding: 0 .5em;
}

/* line 379, ../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 384, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link:active, a.tabs-secondary__tab-link.is-active {
  text-shadow: 1px 1px 0 #333333;
  background-color: #666;
  border-color: #000;
  color: #fff;
}

/**
 * Inline styles.
 */
/* List of links generated by theme_links(). */
/* line 412, ../sass/components/_misc.scss */
.inline {
  display: inline;
  padding: 0;
}
/* line 416, ../sass/components/_misc.scss */
.inline li {
  display: inline;
  list-style-type: none;
  padding: 0 1em 0 0;
  /* LTR */
}

/* The inline field label used by the Fences module. */
/* line 424, ../sass/components/_misc.scss */
span.field-label {
  padding: 0 1em 0 0;
  /* LTR */
}

/**
 * "More" links.
 */
/* line 431, ../sass/components/_misc.scss */
.more-link {
  text-align: right;
  /* LTR */
}

/* line 434, ../sass/components/_misc.scss */
.more-help-link {
  text-align: right;
  /* LTR */
}

/* line 437, ../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 452, ../sass/components/_misc.scss */
.pager {
  clear: both;
  padding: 0;
  text-align: center;
}

/* line 457, ../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 469, ../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 474, ../sass/components/_misc.scss */
.pager-current {
  font-weight: bold;
}

/**
 * Blocks.
 */
/* Block wrapper. */
/* line 484, ../sass/components/_misc.scss */
.block {
  margin-bottom: 1.33333em;
}

/**
 * Menus.
 */
/* line 491, ../sass/components/_misc.scss */
.menu__item.is-leaf {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHBAMAAAA2fErgAAAAD1BMVEX///+/v7+Li4sAAADAwMBFvsw8AAAAAXRSTlMAQObYZgAAAB1JREFUCFtjYAADYwMGBmYVZSDhKAwkFJWhYiAAAB2+Aa/9ugeaAAAAAElFTkSuQmCC');
  list-style-type: square;
}

/* line 498, ../sass/components/_misc.scss */
.menu__item.is-expanded {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');
  list-style-type: circle;
}

/* line 505, ../sass/components/_misc.scss */
.menu__item.is-collapsed {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');
  /* LTR */
  list-style-type: disc;
}

/* The active item in a Drupal menu. */
/* line 514, ../sass/components/_misc.scss */
.menu a.active {
  color: #000;
}

/**
 * Marker.
 */
/* The "new" or "updated" marker. */
/* line 524, ../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 535, ../sass/components/_misc.scss */
.unpublished {
  height: 0;
  overflow: visible;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
  color: #d8d8d8;
  font-size: 75px;
  line-height: 1;
  font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  /* A very nice CSS3 property. */
  word-wrap: break-word;
}

/**
 * Comments.
 */
/* Wrapper for the list of comments and its title. */
/* line 563, ../sass/components/_misc.scss */
.comments {
  margin: 1.33333em 0;
}

/* Preview of the comment before submitting new or updated comment. */
/* line 568, ../sass/components/_misc.scss */
.comment-preview {
  /* Drupal core will use a #ffffea background. See #1110842. */
  background-color: #ffffea;
}

/* Wrapper for a single comment. */
/* line 574, ../sass/components/_misc.scss */
.comment {
  /* Comment's permalink wrapper. */
}
/* line 577, ../sass/components/_misc.scss */
.comment .permalink {
  text-transform: uppercase;
  font-size: 75%;
}

/* Nested comments are indented. */
/* line 584, ../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 594, ../sass/components/_misc.scss */
.form-item {
  margin: 1.33333em 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 599, ../sass/components/_misc.scss */
.form-checkboxes .form-item, .form-radios .form-item {
  /* Drupal core uses "0.4em 0". */
  margin: 0;
}
/* line 606, ../sass/components/_misc.scss */
tr.odd .form-item, tr.even .form-item {
  margin: 0;
}
/* line 613, ../sass/components/_misc.scss */
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}
/* line 618, ../sass/components/_misc.scss */
.form-item .description {
  font-size: 0.85em;
}

/* line 625, ../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 631, ../sass/components/_misc.scss */
.form-required {
  color: #c00;
}

/* Labels for radios and checkboxes. */
/* line 636, ../sass/components/_misc.scss */
label.option {
  display: inline;
  font-weight: normal;
}

/* Buttons used by contrib modules like Media. */
/* line 642, ../sass/components/_misc.scss */
a.button {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}

/* Password confirmation. */
/* line 648, ../sass/components/_misc.scss */
.password-parent,
.confirm-parent {
  margin: 0;
}

/* Drupal's default login form block. */
/* line 653, ../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 665, ../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 672, ../sass/components/_misc.scss */
.openid-link,
.user-link {
  margin-top: 1.33333em;
}

/* line 676, ../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 680, ../sass/components/_misc.scss */
#user-login ul {
  margin: 1.33333em 0;
}

/**
 * Drupal admin tables.
 */
/* line 688, ../sass/components/_misc.scss */
form th {
  text-align: left;
  /* LTR */
  padding-right: 1em;
  /* LTR */
  border-bottom: 3px solid #ccc;
}
/* line 693, ../sass/components/_misc.scss */
form tbody {
  border-top: 1px solid #ccc;
}
/* line 696, ../sass/components/_misc.scss */
form table ul {
  margin: 0;
}

/* line 701, ../sass/components/_misc.scss */
tr.even,
tr.odd {
  background-color: #eee;
  border-bottom: 1px solid #ccc;
  padding: 0.1em 0.6em;
}

/* line 706, ../sass/components/_misc.scss */
tr.even {
  background-color: #fff;
}

/* Markup generated by theme_tablesort_indicator(). */
/* line 721, ../sass/components/_misc.scss */
td.active {
  background-color: #ddd;
}

/* Center checkboxes inside table cell. */
/* line 727, ../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 732, ../sass/components/_misc.scss */
td.menu-disabled {
  background: #ccc;
}

/**
 * Autocomplete.
 *
 * @see autocomplete.js
 */
/* Suggestion list. */
/* line 743, ../sass/components/_misc.scss */
#autocomplete .selected {
  background: #0072b9;
  color: #fff;
}

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
/* line 754, ../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 763, ../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 770, ../sass/components/_misc.scss */
.fieldset-legend .summary {
  color: #999;
  font-size: 0.9em;
  margin-left: 0.5em;
}

/**
 * TableDrag behavior.
 *
 * @see tabledrag.js
 */
/* line 782, ../sass/components/_misc.scss */
tr.drag {
  background-color: #fffff0;
}

/* line 785, ../sass/components/_misc.scss */
tr.drag-previous {
  background-color: #ffd;
}

/* line 788, ../sass/components/_misc.scss */
.tabledrag-toggle-weight {
  font-size: 0.9em;
}

/**
 * TableSelect behavior.
 *
 * @see tableselect.js
 */
/* line 797, ../sass/components/_misc.scss */
tr.selected td {
  background: #ffc;
}

/**
 * Progress bar.
 *
 * @see progress.js
 */
/* line 806, ../sass/components/_misc.scss */
.progress {
  font-weight: bold;
}
/* line 809, ../sass/components/_misc.scss */
.progress .bar {
  background: #ccc;
  border-color: #666;
  margin: 0 0.2em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
/* line 815, ../sass/components/_misc.scss */
.progress .filled {
  background-color: #0072b9;
  background-image: url('../images/progress.gif?1537750524');
}

/**
 * Captcha.
 */
/* line 824, ../sass/components/_misc.scss */
.captcha {
  border: 0;
  padding: 20px 0;
  margin: 0;
}
/* line 828, ../sass/components/_misc.scss */
.captcha legend, .captcha .fieldset-description {
  display: none;
}

/*
* Utility Menu
*/
/* line 5, ../sass/components/_header.scss */
#block-menu-menu-utility-menu {
  background: whitesmoke;
  position: absolute;
  z-index: 10;
  top: 0;
  height: 45px;
  right: 0;
}
/* line 12, ../sass/components/_header.scss */
#block-menu-menu-utility-menu:before {
  content: " ";
  position: absolute;
  left: -25px;
  height: 100%;
  width: 25px;
  background-image: url("../images/angle-menu.jpg");
  background-repeat: no-repeat;
  background-color: white;
  background-position: right;
  display: block;
  z-index: 20;
}
/* line 26, ../sass/components/_header.scss */
#block-menu-menu-utility-menu .menu li {
  padding: 10px 5px;
  margin-right: 10px;
}
/* line 29, ../sass/components/_header.scss */
#block-menu-menu-utility-menu .menu li:nth-child(2):before {
  content: "Connect with Us";
  margin-right: 19px;
  color: #898989;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
@media screen and (max-width: 701px) {
  /* line 29, ../sass/components/_header.scss */
  #block-menu-menu-utility-menu .menu li:nth-child(2):before {
    display: none;
  }
}
/* line 40, ../sass/components/_header.scss */
#block-menu-menu-utility-menu .menu li a {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
}
/* line 44, ../sass/components/_header.scss */
#block-menu-menu-utility-menu .menu li a:hover {
  color: #565656;
}
@media screen and (max-width: 701px) {
  /* line 26, ../sass/components/_header.scss */
  #block-menu-menu-utility-menu .menu li {
    display: inline-block;
    width: auto;
  }
}
/* line 54, ../sass/components/_header.scss */
#block-menu-menu-utility-menu .utility-menu-right {
  position: absolute;
  z-index: 10;
  top: 0;
  height: 100%;
  width: 100vw;
  left: 100%;
  background: whitesmoke;
}
@media screen and (max-width: 701px) {
  /* line 54, ../sass/components/_header.scss */
  #block-menu-menu-utility-menu .utility-menu-right {
    display: none;
  }
}
/* line 67, ../sass/components/_header.scss */
#block-menu-menu-utility-menu a#facebook, #block-menu-menu-utility-menu a#linkedin, #block-menu-menu-utility-menu a#youtube {
  content: " ";
  left: 0;
  height: 25px;
  width: 25px;
  background-repeat: no-repeat;
  z-index: 20;
  text-indent: -9999px;
  background-size: cover;
  display: inline-block;
  vertical-align: top;
  border: 1px solid #aaaaaa;
  border-radius: 50%;
  background-position: center;
  background-size: 95%;
  transition: 0.1s ease-in-out all;
}
/* line 83, ../sass/components/_header.scss */
#block-menu-menu-utility-menu a#facebook:hover, #block-menu-menu-utility-menu a#linkedin:hover, #block-menu-menu-utility-menu a#youtube:hover {
  background-color: #e0e0e0;
}
/* line 87, ../sass/components/_header.scss */
#block-menu-menu-utility-menu a#facebook {
  background-image: url("../images/icon-facebook.svg");
}
/* line 90, ../sass/components/_header.scss */
#block-menu-menu-utility-menu a#linkedin {
  background-image: url("../images/icon-linkedin.svg");
}
/* line 93, ../sass/components/_header.scss */
#block-menu-menu-utility-menu a#youtube {
  background-image: url("../images/icon-youtube.svg");
}
@media screen and (max-width: 701px) {
  /* line 5, ../sass/components/_header.scss */
  #block-menu-menu-utility-menu {
    position: static;
    height: 100%;
  }
  /* line 99, ../sass/components/_header.scss */
  #block-menu-menu-utility-menu .menu {
    padding: 0;
  }
}

@media screen and (min-width: 702px) {
  /* line 107, ../sass/components/_header.scss */
  header .region-navigation {
    margin-top: 52px;
  }
}
/*
* Media Cards
*/
/* line 5, ../sass/components/_card-media.scss */
.view-media-centre-search .item-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
/* line 11, ../sass/components/_card-media.scss */
.view-media-centre-search .item-list li:first-of-type {
  margin-top: 50px;
}
/* line 14, ../sass/components/_card-media.scss */
.view-media-centre-search .item-list li.views-row {
  padding: 1.5rem;
  margin-bottom: 20px;
  position: relative;
  border: solid 1px #e0e0e0;
  transition: 0.1s ease-out all;
}
/* line 22, ../sass/components/_card-media.scss */
.view-media-centre-search .item-list .group-text {
  width: 75%;
  display: inline-block;
  margin-right: 28px;
}
@media screen and (max-width: 767px) {
  /* line 22, ../sass/components/_card-media.scss */
  .view-media-centre-search .item-list .group-text {
    width: 100%;
    margin-right: 0;
  }
}
/* line 32, ../sass/components/_card-media.scss */
.view-media-centre-search .item-list .group-text .field-name-body .field-item * {
  margin-bottom: 0;
  margin-top: 10px;
}
/* line 39, ../sass/components/_card-media.scss */
.view-media-centre-search .item-list .group-text .field-name-title .field-item * {
  margin-top: 0;
  font-size: 1.2em;
}
/* line 46, ../sass/components/_card-media.scss */
.view-media-centre-search .item-list .group-media {
  width: 20%;
  display: inline-block;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  /* line 46, ../sass/components/_card-media.scss */
  .view-media-centre-search .item-list .group-media {
    width: 100%;
    max-width: 150px;
    margin-top: 20px;
  }
}
/* line 57, ../sass/components/_card-media.scss */
.view-media-centre-search .item-list .group-media .field-type-image,
.view-media-centre-search .item-list .group-media .field-type-video-embed-field {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  border: 1px solid #e0e0e0;
}
/* line 63, ../sass/components/_card-media.scss */
.view-media-centre-search .item-list .group-media .field-type-image img,
.view-media-centre-search .item-list .group-media .field-type-video-embed-field img {
  transition: 0.4s ease-out all;
  position: absolute;
  top: 50%;
  left: 50%;
  min-height: 100%;
  max-width: none;
  transform: translate(-50%, -50%);
}
/* line 74, ../sass/components/_card-media.scss */
.view-media-centre-search .item-list .group-media .field-name-field-video-embed a {
  display: block;
  height: 200px;
}
/* line 77, ../sass/components/_card-media.scss */
.view-media-centre-search .item-list .group-media .field-name-field-video-embed a:before {
  transition: ease all 0.1s;
  content: ' ';
  position: absolute;
  display: block;
  width: 50px;
  height: 50px;
  background-image: url("../images/play-button.png");
  background-size: contain;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 1000;
}
/* line 92, ../sass/components/_card-media.scss */
.view-media-centre-search .item-list .group-media .field-name-field-video-embed a:hover:before {
  transform: translate(-50%, -50%) scale(1.2);
}
/* line 99, ../sass/components/_card-media.scss */
.view-media-centre-search .item-list .field-name-field-catergory .field-item {
  border: 1px solid #e0e0e0;
  display: inline-block;
  padding: 5px 10px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 20px;
}
/* line 108, ../sass/components/_card-media.scss */
.view-media-centre-search .item-list .group-publication .field {
  display: inline-block;
  padding-right: 30px;
  margin-bottom: 0;
  position: relative;
}
/* line 113, ../sass/components/_card-media.scss */
.view-media-centre-search .item-list .group-publication .field .field-item {
  font-size: 15px;
}
/* line 115, ../sass/components/_card-media.scss */
.view-media-centre-search .item-list .group-publication .field .field-item * {
  margin: 0;
}
/* line 121, ../sass/components/_card-media.scss */
.view-media-centre-search .item-list .group-publication .field.field-name-field-attachments img {
  display: none;
}
/* line 124, ../sass/components/_card-media.scss */
.view-media-centre-search .item-list .group-publication .field.field-name-field-attachments a {
  width: 70px;
  display: inline-block;
  overflow: hidden;
  height: 26px;
  vertical-align: bottom;
}
/* line 131, ../sass/components/_card-media.scss */
.view-media-centre-search .item-list .group-publication .field.field-name-field-attachments .field-item:before {
  content: "";
  left: -20px;
  height: 16px;
  width: 16px;
  background-repeat: no-repeat;
  background-image: url("../images/icon-download.svg");
  background-size: cover;
  position: absolute;
  z-index: 10;
  top: 4px;
}
@media screen and (max-width: 992px) {
  /* line 120, ../sass/components/_card-media.scss */
  .view-media-centre-search .item-list .group-publication .field.field-name-field-attachments {
    margin-left: 20px;
  }
}
@media screen and (max-width: 992px) {
  /* line 148, ../sass/components/_card-media.scss */
  .view-media-centre-search .item-list .group-publication .field.field-name-post-date {
    margin-left: 20px;
  }
}
/* line 152, ../sass/components/_card-media.scss */
.view-media-centre-search .item-list .group-publication .field.field-name-post-date .field-item:before {
  content: "";
  left: -20px;
  height: 16px;
  width: 16px;
  background-repeat: no-repeat;
  background-image: url("../images/icon-clock.svg");
  background-size: cover;
  position: absolute;
  z-index: 10;
  top: 4px;
}

/*
* Facets
*/
/* line 7, ../sass/components/_checkboxes.scss */
.block-facetapi .block__title {
  font-family: "din-2014", sans-serif;
  font-size: 20px;
  text-transform: none;
  font-weight: 600;
}
/* line 13, ../sass/components/_checkboxes.scss */
.block-facetapi ul.facetapi-disabled {
  opacity: 1;
}
/* line 17, ../sass/components/_checkboxes.scss */
.block-facetapi .filter-head * {
  font-size: 100%;
  font-family: "din-2014", sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}
/* line 25, ../sass/components/_checkboxes.scss */
.block-facetapi ul.facetapi-facetapi-checkbox-links, .block-facetapi ul.facetapi-collapsible {
  padding: 0;
  list-style-type: none;
  margin-top: 15px;
}

/* line 34, ../sass/components/_checkboxes.scss */
.facetapi-collapsible li {
  line-height: 2rem;
  position: relative;
}
/* line 37, ../sass/components/_checkboxes.scss */
.facetapi-collapsible li a {
  padding-left: 30px;
  color: black;
  font-size: 16px;
  display: inline-block;
}
/* line 42, ../sass/components/_checkboxes.scss */
.facetapi-collapsible li a:hover {
  color: #007bbb;
}
/* line 47, ../sass/components/_checkboxes.scss */
.facetapi-collapsible .facetapi-active {
  font-size: 16px;
}
/* line 51, ../sass/components/_checkboxes.scss */
.facetapi-collapsible .facetapi-facet {
  background: #e0e0e0;
  padding: 0 8px;
  border-bottom: 2px solid white;
}
/* line 56, ../sass/components/_checkboxes.scss */
.facetapi-collapsible li.expanded ul {
  padding: 0;
  background: #f5f5f5;
  list-style-type: none;
}
/* line 60, ../sass/components/_checkboxes.scss */
.facetapi-collapsible li.expanded ul a {
  line-height: 1.4rem;
  padding-top: 5px;
}
/* line 64, ../sass/components/_checkboxes.scss */
.facetapi-collapsible li.expanded ul .facetapi-facet {
  background: transparent;
}
/* line 70, ../sass/components/_checkboxes.scss */
.facetapi-collapsible a.facetapi-inactive:before {
  width: 18px;
  height: 18px;
  border: 2px solid #000;
  content: "";
  position: absolute;
  margin-left: -30px;
  top: 10px;
}
/* line 81, ../sass/components/_checkboxes.scss */
.facetapi-collapsible a.facetapi-inactive.active:before {
  content: "";
  position: absolute;
  background: black;
  width: 18px;
  height: 18px;
}
/* line 88, ../sass/components/_checkboxes.scss */
.facetapi-collapsible a.facetapi-inactive.active:after {
  content: '';
  position: absolute;
  left: 12px;
  top: 17px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  transform: rotate(45deg);
  transition: 0.1s ease-in-out all;
}
/* line 110, ../sass/components/_checkboxes.scss */
.facetapi-collapsible a.facetapi-active:before {
  width: 18px;
  height: 18px;
  border: 2px solid #000;
  content: "";
  position: absolute;
  margin-left: -30px;
  top: 8px;
  background: black;
}
/* line 120, ../sass/components/_checkboxes.scss */
.facetapi-collapsible a.facetapi-active:after {
  content: '';
  position: absolute;
  left: 12px;
  top: 15px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  transform: rotate(45deg);
  transition: 0.1s ease-in-out all;
}
/* line 140, ../sass/components/_checkboxes.scss */
.facetapi-collapsible span.facetapi-collapsible-handle {
  font-size: 20px;
  position: absolute;
  right: 7px;
}

/* line 149, ../sass/components/_checkboxes.scss */
.facetapi-facetapi-checkbox-links li {
  line-height: 2rem;
  position: relative;
}
/* line 152, ../sass/components/_checkboxes.scss */
.facetapi-facetapi-checkbox-links li a {
  color: black;
  font-size: 16px;
}
/* line 155, ../sass/components/_checkboxes.scss */
.facetapi-facetapi-checkbox-links li a:hover {
  color: #007bbb;
}
/* line 160, ../sass/components/_checkboxes.scss */
.facetapi-facetapi-checkbox-links input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 18px;
  height: 18px;
  z-index: 999;
  cursor: pointer;
  margin: 0;
  top: 8px;
}
/* line 170, ../sass/components/_checkboxes.scss */
.facetapi-facetapi-checkbox-links input[type="checkbox"] + .checkmark {
  position: relative;
  cursor: pointer;
  padding: 0;
  color: black;
  transition: 0.1s ease-in-out all;
  margin-right: 10px;
  top: 3px;
}
/* line 180, ../sass/components/_checkboxes.scss */
.facetapi-facetapi-checkbox-links input[type="checkbox"] + .checkmark:before {
  content: '';
  display: inline-block;
  vertical-align: text-top;
  width: 18px;
  height: 18px;
  background: transparent;
  border: 2px solid black;
  transition: 0.1s ease-in-out all;
}
/* line 191, ../sass/components/_checkboxes.scss */
.facetapi-facetapi-checkbox-links input[type="checkbox"]:checked + .checkmark:before {
  background-color: black;
  border-color: black;
}
/* line 197, ../sass/components/_checkboxes.scss */
.facetapi-facetapi-checkbox-links input[type="checkbox"]:checked + .checkmark:after {
  content: '';
  position: absolute;
  left: 4px;
  top: 8px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  transform: rotate(45deg);
  transition: 0.1s ease-in-out all;
}

/* line 218, ../sass/components/_checkboxes.scss */
.facetapi-active a {
  width: 20px;
  height: 20px;
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}

/*
* Mail-chimp Subscribtion form
*/
/* line 6, ../sass/components/_form--mailchimp.scss */
.block-mailchimp-signup .block-title, .block-mailchimp-signup .form-item-mergevars-EMAIL > label {
  display: none;
}
/* line 10, ../sass/components/_form--mailchimp.scss */
.block-mailchimp-signup .mailchimp-signup-subscribe-form-description {
  font-family: 'din-2014', sans-serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: .025em;
  font-size: 36px;
  margin-right: 58px;
  color: #007bbb;
  line-height: 1.1em;
  font-weight: 600;
  display: inline-block;
}
@media screen and (max-width: 1050px) {
  /* line 10, ../sass/components/_form--mailchimp.scss */
  .block-mailchimp-signup .mailchimp-signup-subscribe-form-description {
    display: block;
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  /* line 10, ../sass/components/_form--mailchimp.scss */
  .block-mailchimp-signup .mailchimp-signup-subscribe-form-description {
    font-size: 24px;
  }
}
/* line 26, ../sass/components/_form--mailchimp.scss */
.block-mailchimp-signup .mailchimp-newsletter-mergefields {
  display: inline-block;
}
/* line 28, ../sass/components/_form--mailchimp.scss */
.block-mailchimp-signup .mailchimp-newsletter-mergefields .form-item-mergevars-EMAIL {
  margin: 30px 0;
}
/* line 32, ../sass/components/_form--mailchimp.scss */
.block-mailchimp-signup .mailchimp-newsletter-mergefields input {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.25);
  width: 225px;
}
/* line 39, ../sass/components/_form--mailchimp.scss */
.block-mailchimp-signup .form-actions {
  display: inline-block;
  margin-left: -4px;
}
/* line 43, ../sass/components/_form--mailchimp.scss */
.block-mailchimp-signup .form-actions .form-submit {
  background: #007bbb;
  color: white;
  font-weight: 500;
  letter-spacing: 0.025rem;
  padding: 10px 20px;
  display: inline-block;
  transition: background 0.1s ease-out;
}
/* line 51, ../sass/components/_form--mailchimp.scss */
.block-mailchimp-signup .form-actions .form-submit:hover, .block-mailchimp-signup .form-actions .form-submit:focus {
  background: #005988;
}
@media screen and (max-width: 1050px) {
  /* line 57, ../sass/components/_form--mailchimp.scss */
  .block-mailchimp-signup .mailchimp-signup-subscribe-form {
    padding: 0 15px;
  }
}

/*
* Media centre
*/
/* line 5, ../sass/pages/_media-centre.scss */
#page {
  overflow: hidden;
}

/* line 10, ../sass/pages/_media-centre.scss */
.page-media-centre.one-sidebar #content {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1030px) {
  /* line 10, ../sass/pages/_media-centre.scss */
  .page-media-centre.one-sidebar #content {
    padding: 15px;
  }
}
/* line 19, ../sass/pages/_media-centre.scss */
.page-media-centre.one-sidebar #content .region-inner {
  margin: 0;
  width: 70%;
  min-width: 0;
}
@media screen and (max-width: 992px) {
  /* line 19, ../sass/pages/_media-centre.scss */
  .page-media-centre.one-sidebar #content .region-inner {
    width: 100%;
  }
}
/* line 28, ../sass/pages/_media-centre.scss */
.page-media-centre.one-sidebar #content .region-sidebar-first {
  max-width: 300px;
}
@media screen and (min-width: 992px) {
  /* line 28, ../sass/pages/_media-centre.scss */
  .page-media-centre.one-sidebar #content .region-sidebar-first {
    margin-top: 3rem;
  }
}
/* line 36, ../sass/pages/_media-centre.scss */
.page-media-centre.one-sidebar #block-block-5 h2.block-title {
  font-family: "din-2014", sans-serif;
  font-size: 20px;
  text-transform: none;
  font-weight: 600;
  margin-bottom: 20px;
}

/**
 * @file
 * Print styling
 *
 * We provide some sane print styling for Drupal using Zen's layout method.
 */
/**
 * By importing this CSS file as media "all", we allow this print file to be
 * aggregated with other stylesheets, for improved front-end performance.
 */
@media print {
  /* Underline all links. */
  /* line 16, ../sass/_print.scss */
  a:link,
  a:visited {
    text-decoration: underline !important;
    /* Don't underline header. */
  }
  /* line 20, ../sass/_print.scss */
  a:link.header__site-link,
  a:visited.header__site-link {
    text-decoration: none !important;
  }

  /* line 25, ../sass/_print.scss */
  #content {
    /* Add visible URL after links. */
    /* Only display useful links. */
    /* Add visible title after abbreviations. */
  }
  /* line 27, ../sass/_print.scss */
  #content a[href]:after {
    content: " (" attr(href) ")";
    font-weight: normal;
    font-size: 18px;
  }
  /* line 35, ../sass/_print.scss */
  #content a[href^="javascript:"]:after,
  #content a[href^="#"]:after {
    content: "";
  }
  /* line 40, ../sass/_print.scss */
  #content abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* Un-float the content. */
  /* line 46, ../sass/_print.scss */
  #content {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Turn off any background colors or images. */
  /* line 57, ../sass/_print.scss */
  body,
  #page,
  #main,
  #content {
    color: #000;
    background-color: transparent !important;
    background-image: none !important;
  }

  /* Hide sidebars and nav elements. */
  /* line 77, ../sass/_print.scss */
  #skip-link,
  #toolbar,
  #navigation,
  .region-sidebar-first,
  .region-sidebar-second,
  #footer,
  .breadcrumb,
  .tabs,
  .action-links,
  .links,
  .book-navigation,
  .forum-topic-navigation,
  .pager,
  .feed-icons {
    visibility: hidden;
    display: none;
  }
}
/* line 1, ../sass/_boilerplate.scss */
body {
  font-weight: 300;
}

/* line 5, ../sass/_boilerplate.scss */
#block-views-flexslider-carousel-block .title-wrapper .views-field-field-title-link a {
  font-family: 'din-2014', sans-serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: .025em;
  font-size: 37px;
  text-transform: uppercase;
  line-height: 1.1em;
}
@media screen and (max-width: 480px) {
  /* line 5, ../sass/_boilerplate.scss */
  #block-views-flexslider-carousel-block .title-wrapper .views-field-field-title-link a {
    font-size: 26px;
  }
}

/* line 15, ../sass/_boilerplate.scss */
#block-views-flexslider-carousel-block .title-wrapper .views-field-title-1 {
  font-family: 'din-2014', sans-serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: .025em;
  font-size: 34px;
  text-transform: uppercase;
  font-weight: normal;
  color: #007bbb;
  line-height: 1.1em;
}
@media screen and (max-width: 480px) {
  /* line 15, ../sass/_boilerplate.scss */
  #block-views-flexslider-carousel-block .title-wrapper .views-field-title-1 {
    font-size: 24px;
  }
}

/* line 27, ../sass/_boilerplate.scss */
.block-title, #page-title, .node-type-basic-page .field-name-field-basic-page-subtitle,
.node-type-news-story .field-name-field-basic-page-subtitle,
.node-type-scheme .field-name-field-basic-page-subtitle,
.node-type-page .field-name-field-basic-page-subtitle,
.page-our-schemes .field-name-field-basic-page-subtitle,
.node-type-webform .field-name-field-basic-page-subtitle,
.node-type-help .field-name-field-basic-page-subtitle, .front .region-content-middle .region-blockgroup-partners #block-bean-our-partners h3 {
  font-family: 'din-2014', sans-serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: .025em;
  font-size: 34px;
  line-height: 1.1em;
  text-transform: uppercase;
  color: #555555;
}
@media screen and (max-width: 480px) {
  /* line 27, ../sass/_boilerplate.scss */
  .block-title, #page-title, .node-type-basic-page .field-name-field-basic-page-subtitle,
  .node-type-news-story .field-name-field-basic-page-subtitle,
  .node-type-scheme .field-name-field-basic-page-subtitle,
  .node-type-page .field-name-field-basic-page-subtitle,
  .page-our-schemes .field-name-field-basic-page-subtitle,
  .node-type-webform .field-name-field-basic-page-subtitle,
  .node-type-help .field-name-field-basic-page-subtitle, .front .region-content-middle .region-blockgroup-partners #block-bean-our-partners h3 {
    font-size: 22px;
  }
}

/* line 38, ../sass/_boilerplate.scss */
.region-navigation .menu li a, #block-views-flexslider-carousel-block-1 .views-field-field-button-title {
  font-family: 'din-2014', sans-serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: .025em;
  font-size: 24px;
  font-weight: 400;
  color: #007bbb;
  line-height: 1.2em;
}
@media screen and (max-width: 480px) {
  /* line 38, ../sass/_boilerplate.scss */
  .region-navigation .menu li a, #block-views-flexslider-carousel-block-1 .views-field-field-button-title {
    font-size: 20px;
  }
}

/* line 49, ../sass/_boilerplate.scss */
.view-category-view .view-content a, #main .form-submit, .section-accredited-bodies .view-display-id-schemes_standards .accredited-bodies-ul li .views-field-abbrev a,
.section-accredited-bodies .view-display-id-schemes_standards .accredited-bodies-ul li label a,
.section-accredited-bodies .view-display-id-schemes_standards .accredited-bodies-ul li .views-field-title a,
.section-accredited-bodies .view-display-id-schemes_standards .accredited-bodies-ul li .views-field-name a,
.section-accredited-bodies .view-display-id-technical_sectors .accredited-bodies-ul li .views-field-abbrev a,
.section-accredited-bodies .view-display-id-technical_sectors .accredited-bodies-ul li label a,
.section-accredited-bodies .view-display-id-technical_sectors .accredited-bodies-ul li .views-field-title a,
.section-accredited-bodies .view-display-id-technical_sectors .accredited-bodies-ul li .views-field-name a,
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li .views-field-abbrev a,
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li label a,
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li .views-field-title a,
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li .views-field-name a, .section-accredited-bodies .accredited-bodies-ul li .views-field-abbrev a,
.section-accredited-bodies .accredited-bodies-ul li label a,
.section-accredited-bodies .accredited-bodies-ul li .views-field-title a,
.section-accredited-bodies .accredited-bodies-ul li .views-field-name a, .section-accredited-bodies .tabs li a, .file-download .file-link, .view-homepage-news .views-field-title, .view-homepage-news .more-link a {
  font-family: 'din-2014', sans-serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: .025em;
  font-size: 18px;
  color: #007bbb;
  line-height: 1.2em;
}

/* line 56, ../sass/_boilerplate.scss */
.region-navigation .menu li .menu-link-description, .region-navigation .menu li ul li a, .region-footer #block-menu-block-1 ul li .menu-link-description, .subtitle, .node-type-basic-page .field-name-field-basic-page-body h3,
.node-type-basic-page .field-name-body h3,
.node-type-news-story .field-name-field-basic-page-body h3,
.node-type-news-story .field-name-body h3,
.node-type-scheme .field-name-field-basic-page-body h3,
.node-type-scheme .field-name-body h3,
.node-type-page .field-name-field-basic-page-body h3,
.node-type-page .field-name-body h3,
.page-our-schemes .field-name-field-basic-page-body h3,
.page-our-schemes .field-name-body h3,
.node-type-webform .field-name-field-basic-page-body h3,
.node-type-webform .field-name-body h3,
.node-type-help .field-name-field-basic-page-body h3,
.node-type-help .field-name-body h3, .field-type-file .field-label, .front .region-content-middle .region-blockgroup-partners #block-bean-our-partners .block-title, .front .region-content-middle .region-blockgroup-partners #block-views-our-partners-block .view-content .views-row a, #content .block-intermediary-data .count, .view-homepage-news .views-field-created {
  font-family: 'din-2014', sans-serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: .025em;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #898989;
}

/* line 68, ../sass/_boilerplate.scss */
a {
  color: #007bbb;
  text-decoration: none;
}
/* line 72, ../sass/_boilerplate.scss */
a:hover, a:focus {
  color: #005988;
}

/* line 77, ../sass/_boilerplate.scss */
.view-homepage-news .views-field-body {
  font-size: 14px;
  color: #555555;
  line-height: 1.5em;
}

/* line 1, ../sass/_tables.scss */
.table-responsive {
  overflow-x: auto;
  min-height: 0.01%;
}
@media screen and (max-width: 479px) {
  /* line 1, ../sass/_tables.scss */
  .table-responsive {
    width: 100%;
    margin-bottom: 1.125;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  /* line 12, ../sass/_tables.scss */
  .table-responsive > .table {
    margin-bottom: 0;
  }
  /* line 29, ../sass/_tables.scss */
  .table-responsive > .table-bordered {
    border: 0;
  }
  /* line 38, ../sass/_tables.scss */
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  /* line 42, ../sass/_tables.scss */
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  /* line 55, ../sass/_tables.scss */
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
/* line 64, ../sass/_tables.scss */
.table-responsive table tbody .file img {
  height: 100% !important;
  vertical-align: top;
}
/* line 68, ../sass/_tables.scss */
.table-responsive table td {
  vertical-align: top !important;
}

/* line 77, ../sass/_tables.scss */
.section-welcome-to-jas-anz-careers table,
.section-research table {
  table-layout: fixed;
}
/* line 79, ../sass/_tables.scss */
.section-welcome-to-jas-anz-careers table td,
.section-research table td {
  text-align: center;
}

/* line 1, ../sass/_nav.scss */
.nav-toggle {
  height: 24px;
  width: 24px;
  background-position: center;
  float: right;
  border: 0;
  position: absolute;
  top: 30px;
  right: 25px;
  background: url("../images/close.svg") no-repeat;
  background-position: center;
  background-size: 21px;
}
/* line 13, ../sass/_nav.scss */
.nav-toggle.closed {
  background: url("../images/hamburger.svg") no-repeat;
}
@media screen and (min-width: 702px) {
  /* line 1, ../sass/_nav.scss */
  .nav-toggle {
    display: none;
  }
}

/* line 21, ../sass/_nav.scss */
.header {
  position: relative;
}

@media screen and (max-width: 701px) {
  /* line 27, ../sass/_nav.scss */
  .region-navigation--show-menu.region-navigation {
    max-height: 800px;
    height: auto;
    transition: max-height 0.3s ease-out;
  }
}

/* line 34, ../sass/_nav.scss */
.region-navigation {
  float: right;
  margin-top: 37px;
  margin-right: -20px;
}
@media screen and (max-width: 1030px) {
  /* line 34, ../sass/_nav.scss */
  .region-navigation {
    padding: 15px 15px 15px 15px;
    margin-top: 22px;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  /* line 34, ../sass/_nav.scss */
  .region-navigation {
    margin-top: 0;
    padding: 10px;
  }
}
@media screen and (max-width: 701px) {
  /* line 34, ../sass/_nav.scss */
  .region-navigation {
    width: 100%;
    max-height: 0;
    padding: 0 10px;
    transition: max-height 0.3s ease-out;
    position: relative;
    overflow-y: hidden;
  }
}
/* line 55, ../sass/_nav.scss */
.region-navigation .block-menu-block {
  margin: 0;
}
/* line 59, ../sass/_nav.scss */
.region-navigation .menu {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 4;
  *zoom: 1;
}
/* line 41, ../sass/_mixins.scss */
.region-navigation .menu:before, .region-navigation .menu:after {
  content: " ";
  display: table;
}
/* line 45, ../sass/_mixins.scss */
.region-navigation .menu:after {
  clear: both;
}
@media screen and (max-width: 701px) {
  /* line 59, ../sass/_nav.scss */
  .region-navigation .menu {
    padding: 10px 0;
  }
}
/* line 68, ../sass/_nav.scss */
.region-navigation .menu li {
  float: left;
  list-style: none;
  margin-right: 15px;
  padding: 5px 20px 15px 20px;
}
@media screen and (max-width: 767px) {
  /* line 68, ../sass/_nav.scss */
  .region-navigation .menu li {
    margin-right: 0;
  }
}
@media screen and (max-width: 701px) {
  /* line 68, ../sass/_nav.scss */
  .region-navigation .menu li {
    width: 100%;
  }
}
@media screen and (max-width: 1100px) {
  /* line 80, ../sass/_nav.scss */
  .region-navigation .menu li.last ul {
    min-width: 178px !important;
  }
}
/* line 86, ../sass/_nav.scss */
.region-navigation .menu li a {
  font-size: 22px;
  font-weight: 600;
  line-height: 0;
  outline: none;
}
@media screen and (max-width: 895px) {
  /* line 86, ../sass/_nav.scss */
  .region-navigation .menu li a {
    font-size: 17px;
  }
}
/* line 96, ../sass/_nav.scss */
.region-navigation .menu li a:hover, .region-navigation .menu li a:focus {
  color: #005988;
}
/* line 100, ../sass/_nav.scss */
.region-navigation .menu li .menu-link-description {
  display: block;
  font-size: 14px;
}
/* line 106, ../sass/_nav.scss */
.region-navigation .menu li ul {
  position: absolute;
  top: 100%;
  margin-left: -22px;
  z-index: 2;
  border-left: 2px solid #dee1e2;
  border-right: 2px solid #dee1e2;
  border-bottom: 2px solid #dee1e2;
  min-width: 225px;
  max-width: 285px;
  display: none;
}
/* line 117, ../sass/_nav.scss */
.region-navigation .menu li ul li {
  margin-right: 0;
  float: none;
  padding: 0;
  background: white;
  border-bottom: 1px solid #dee1e2;
  -webkit-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
/* line 124, ../sass/_nav.scss */
.region-navigation .menu li ul li a {
  padding: 13px 20px;
  display: block;
  font-weight: 600;
  line-height: normal;
  color: #007bbb;
  text-transform: normal;
}
/* line 134, ../sass/_nav.scss */
.region-navigation .menu li ul li:hover, .region-navigation .menu li ul li:focus {
  background: #f0f3f5;
}
/* line 136, ../sass/_nav.scss */
.region-navigation .menu li ul li:hover a, .region-navigation .menu li ul li:focus a {
  color: #005988;
}
/* line 141, ../sass/_nav.scss */
.region-navigation .menu li ul .first {
  border-top: 1px solid #dee1e2;
}
/* line 146, ../sass/_nav.scss */
.region-navigation .menu li:hover > ul, .region-navigation .menu li:focus > ul {
  display: block;
}
@media screen and (max-width: 767px) {
  /* line 146, ../sass/_nav.scss */
  .region-navigation .menu li:hover > ul, .region-navigation .menu li:focus > ul {
    display: none !important;
  }
}
/* line 153, ../sass/_nav.scss */
.region-navigation .menu li.last {
  margin-right: 0;
}

/* line 160, ../sass/_nav.scss */
.menu-block-2 > .menu > li:hover,
.menu-block-2 > .menu > li:focus {
  outline: 2px solid #dee1e2;
}

/* line 164, ../sass/_nav.scss */
.view-category-view {
  position: relative;
  *zoom: 1;
}
/* line 41, ../sass/_mixins.scss */
.view-category-view:before, .view-category-view:after {
  content: " ";
  display: table;
}
/* line 45, ../sass/_mixins.scss */
.view-category-view:after {
  clear: both;
}
/* line 167, ../sass/_nav.scss */
.view-category-view ul {
  margin: 0;
  padding: 0;
}
/* line 170, ../sass/_nav.scss */
.view-category-view ul li {
  list-style: none;
  margin-bottom: 10px;
}
/* line 173, ../sass/_nav.scss */
.view-category-view ul li .item-list {
  display: none;
  -webkit-animation: fade-in 0.4s ease-in-out;
  /* Safari 4+ */
  -o-animation: fade-in 0.4s ease-in-out;
  /* Opera 12+ */
  animation: fade-in 0.4s ease-in-out;
  /* IE 10+ */
}
/* line 176, ../sass/_nav.scss */
.view-category-view ul li .item-list ul {
  position: absolute;
  margin-left: 360px;
  top: 0;
}
/* line 181, ../sass/_nav.scss */
.view-category-view ul li .item-list ul .item-list ul {
  top: 0;
}
/* line 184, ../sass/_nav.scss */
.view-category-view ul li .item-list ul .item-list ul a:after {
  display: none;
  -webkit-animation: fade-in 0.4s ease-in-out;
  /* Safari 4+ */
  -o-animation: fade-in 0.4s ease-in-out;
  /* Opera 12+ */
  animation: fade-in 0.4s ease-in-out;
  /* IE 10+ */
}
/* line 193, ../sass/_nav.scss */
.view-category-view ul li .item-list.category-shown {
  display: block;
}
/* line 197, ../sass/_nav.scss */
.view-category-view ul .last {
  margin-bottom: 0;
}
/* line 201, ../sass/_nav.scss */
.view-category-view .view-content {
  float: left;
  width: 33.33%;
  padding-right: 70px;
}
/* line 206, ../sass/_nav.scss */
.view-category-view .view-content a {
  line-height: normal;
  font-family: 'din-2014', sans-serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: .025em;
  -webkit-box-shadow: -1px 2px 0px 1px #006aa2;
  -moz-box-shadow: -1px 2px 0px 1px #006aa2;
  box-shadow: -1px 2px 0px 1px #006aa2;
  background: #007bbb;
  color: white;
  font-size: 19px;
  font-weight: 400;
  width: 265px;
  padding: 13px 0 13px 16px;
  display: block;
  position: relative;
  outline: none;
}
/* line 220, ../sass/_nav.scss */
.view-category-view .view-content a:after {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 25px 0 25px 12px;
  border-color: transparent transparent transparent #007bbb;
  position: absolute;
  top: 0;
  right: -12px;
}
/* line 225, ../sass/_nav.scss */
.view-category-view .view-content a:active, .view-category-view .view-content a:hover, .view-category-view .view-content a:focus {
  background: #005988;
}
/* line 227, ../sass/_nav.scss */
.view-category-view .view-content a:active:after, .view-category-view .view-content a:hover:after, .view-category-view .view-content a:focus:after {
  border-color: transparent transparent transparent #005988;
}
/* line 234, ../sass/_nav.scss */
.view-category-view .view-content .last .contextual-links-region {
  position: static;
}
/* line 238, ../sass/_nav.scss */
.view-category-view .view-content .contextual-links-wrapper {
  display: none;
}
/* line 242, ../sass/_nav.scss */
.view-category-view .view-footer {
  margin-top: 40px;
  margin-left: 295px;
}
/* line 245, ../sass/_nav.scss */
.view-category-view .view-footer .title {
  font-family: 'din-2014', sans-serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: .025em;
  color: #005988;
  font-size: 32px;
  font-weight: 300;
  text-transform: uppercase;
}
/* line 252, ../sass/_nav.scss */
.view-category-view .view-footer p {
  font-size: 18px;
}

/* line 259, ../sass/_nav.scss */
.region-footer #block-menu-block-1 {
  margin-left: 190px;
  color: white;
}
@media screen and (max-width: 650px) {
  /* line 259, ../sass/_nav.scss */
  .region-footer #block-menu-block-1 {
    margin-left: 0;
    margin-bottom: 0;
  }
}
/* line 266, ../sass/_nav.scss */
.region-footer #block-menu-block-1 ul {
  margin: 0;
  padding: 0;
  *zoom: 1;
}
/* line 41, ../sass/_mixins.scss */
.region-footer #block-menu-block-1 ul:before, .region-footer #block-menu-block-1 ul:after {
  content: " ";
  display: table;
}
/* line 45, ../sass/_mixins.scss */
.region-footer #block-menu-block-1 ul:after {
  clear: both;
}
/* line 270, ../sass/_nav.scss */
.region-footer #block-menu-block-1 ul li {
  list-style: none;
}
@media screen and (max-width: 1030px) {
  /* line 270, ../sass/_nav.scss */
  .region-footer #block-menu-block-1 ul li {
    width: 25%;
    margin: 0;
    padding: 0 15px 30px;
  }
}
@media screen and (max-width: 850px) {
  /* line 270, ../sass/_nav.scss */
  .region-footer #block-menu-block-1 ul li {
    width: 50%;
  }
}
/* line 281, ../sass/_nav.scss */
.region-footer #block-menu-block-1 ul li .menu-link-description {
  display: block;
  color: rgba(255, 255, 255, 0.75);
}
@media screen and (max-width: 550px) {
  /* line 281, ../sass/_nav.scss */
  .region-footer #block-menu-block-1 ul li .menu-link-description {
    font-size: 14px;
    line-height: 1em;
  }
}
/* line 290, ../sass/_nav.scss */
.region-footer #block-menu-block-1 ul li a {
  color: white;
}
/* line 293, ../sass/_nav.scss */
.region-footer #block-menu-block-1 ul li a:hover, .region-footer #block-menu-block-1 ul li a:focus {
  color: #b7c4c4;
}
/* line 298, ../sass/_nav.scss */
.region-footer #block-menu-block-1 ul li .menu .menu__item {
  width: 100%;
  padding: 0;
  line-height: 1;
  padding-bottom: 10px;
}
@media screen and (max-width: 550px) {
  /* line 298, ../sass/_nav.scss */
  .region-footer #block-menu-block-1 ul li .menu .menu__item {
    min-height: 0;
    padding-bottom: 5px;
  }
}
/* line 309, ../sass/_nav.scss */
.region-footer #block-menu-block-1 ul li .menu .menu__item a:hover,
.region-footer #block-menu-block-1 ul li .menu .menu__item a:focus {
  text-decoration: underline;
}
/* line 315, ../sass/_nav.scss */
.region-footer #block-menu-block-1 ul .expanded {
  float: left;
  margin-right: 45px;
  max-width: 228px;
}
@media screen and (max-width: 1030px) {
  /* line 315, ../sass/_nav.scss */
  .region-footer #block-menu-block-1 ul .expanded {
    height: 290px;
    margin: 0;
    max-width: none;
  }
}
/* line 325, ../sass/_nav.scss */
.region-footer #block-menu-block-1 ul .expanded li a {
  font-size: 14px;
}
/* line 330, ../sass/_nav.scss */
.region-footer #block-menu-block-1 ul .last.expanded {
  margin-right: 0;
}
@media screen and (max-width: 380px) {
  /* line 330, ../sass/_nav.scss */
  .region-footer #block-menu-block-1 ul .last.expanded {
    margin-right: auto;
  }
}
/* line 338, ../sass/_nav.scss */
.region-footer .menu-block-wrapper > ul > li > a {
  font-family: 'din-2014', sans-serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: .025em;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 10px;
  display: block;
}
@media screen and (max-width: 550px) {
  /* line 338, ../sass/_nav.scss */
  .region-footer .menu-block-wrapper > ul > li > a {
    font-size: 15px;
    margin-bottom: 5px;
  }
}

/* line 353, ../sass/_nav.scss */
#block-menu-block-3 .menu-block-3 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* line 358, ../sass/_nav.scss */
#block-menu-block-3 .menu-block-3 li {
  list-style: none;
  display: block;
  border-bottom: 1px solid rgba(56, 68, 68, 0.35);
  padding: 15px;
  -webkit-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
/* line 365, ../sass/_nav.scss */
#block-menu-block-3 .menu-block-3 li:hover, #block-menu-block-3 .menu-block-3 li:focus {
  background: #f0f3f5;
}
/* line 367, ../sass/_nav.scss */
#block-menu-block-3 .menu-block-3 li:hover p, #block-menu-block-3 .menu-block-3 li:focus p {
  color: #005988;
}
/* line 372, ../sass/_nav.scss */
#block-menu-block-3 .menu-block-3 a {
  display: block;
}
/* line 375, ../sass/_nav.scss */
#block-menu-block-3 .menu-block-3 p {
  font-family: 'din-2014', sans-serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: .025em;
  color: #007bbb;
  line-height: 1.2em;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
}
/* line 384, ../sass/_nav.scss */
#block-menu-block-3 .menu-block-3 .menu-link-description-level-2 {
  font-family: 'din-2014', sans-serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: .025em;
  color: #252525;
  display: block;
  font-size: 14px;
  font-weight: 500;
}

/* line 395, ../sass/_nav.scss */
#block-menu-block-4,
#block-book-navigation {
  width: 100%;
}
/* line 397, ../sass/_nav.scss */
#block-menu-block-4 .block-title,
#block-book-navigation .block-title {
  text-transform: uppercase;
  font-size: 14px;
  color: #474b55;
  font-weight: normal;
  margin-bottom: 10px;
  line-height: 1.5em;
}
/* line 405, ../sass/_nav.scss */
#block-menu-block-4 .menu,
#block-book-navigation .menu {
  margin: 0;
  padding: 0;
}
/* line 408, ../sass/_nav.scss */
#block-menu-block-4 .menu li,
#block-book-navigation .menu li {
  list-style: none;
}
/* line 411, ../sass/_nav.scss */
#block-menu-block-4 .menu li .menu a,
#block-book-navigation .menu li .menu a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
}
/* line 417, ../sass/_nav.scss */
#block-menu-block-4 .menu li a,
#block-book-navigation .menu li a {
  display: block;
  padding: 10px;
  border-bottom: 1px solid #ccc;
  font-family: "din-2014", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
}
/* line 425, ../sass/_nav.scss */
#block-menu-block-4 .menu li a:hover, #block-menu-block-4 .menu li a:focus,
#block-book-navigation .menu li a:hover,
#block-book-navigation .menu li a:focus {
  background-color: #eee;
}

/* line 433, ../sass/_nav.scss */
#block-menu-block-4 .menu li a {
  font-weight: 500;
  text-transform: none;
}

/* line 2, ../sass/_admin.scss */
.page-user #main {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
/* line 8, ../sass/_admin.scss */
.page-user #content {
  padding-bottom: 100px;
}

/* line 1, ../sass/_basic-page.scss */
#page-title {
  margin-bottom: 1em;
}

/* line 11, ../sass/_basic-page.scss */
.not-front .region-banner .block-search {
  top: 30px;
}
/* line 15, ../sass/_basic-page.scss */
.not-front .column {
  margin-top: 2em;
}

/* line 27, ../sass/_basic-page.scss */
.node-type-basic-page #content,
.node-type-news-story #content,
.node-type-scheme #content,
.node-type-page #content,
.page-our-schemes #content,
.node-type-webform #content,
.node-type-help #content {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1030px) {
  /* line 27, ../sass/_basic-page.scss */
  .node-type-basic-page #content,
  .node-type-news-story #content,
  .node-type-scheme #content,
  .node-type-page #content,
  .page-our-schemes #content,
  .node-type-webform #content,
  .node-type-help #content {
    padding: 15px;
  }
}
/* line 34, ../sass/_basic-page.scss */
.node-type-basic-page #content .region-inner,
.node-type-news-story #content .region-inner,
.node-type-scheme #content .region-inner,
.node-type-page #content .region-inner,
.page-our-schemes #content .region-inner,
.node-type-webform #content .region-inner,
.node-type-help #content .region-inner {
  margin: 0;
  width: 70%;
  min-width: 0;
}
@media screen and (max-width: 992px) {
  /* line 34, ../sass/_basic-page.scss */
  .node-type-basic-page #content .region-inner,
  .node-type-news-story #content .region-inner,
  .node-type-scheme #content .region-inner,
  .node-type-page #content .region-inner,
  .page-our-schemes #content .region-inner,
  .node-type-webform #content .region-inner,
  .node-type-help #content .region-inner {
    width: 100%;
  }
}
/* line 44, ../sass/_basic-page.scss */
.node-type-basic-page .node-basic-page p,
.node-type-news-story .node-basic-page p,
.node-type-scheme .node-basic-page p,
.node-type-page .node-basic-page p,
.page-our-schemes .node-basic-page p,
.node-type-webform .node-basic-page p,
.node-type-help .node-basic-page p {
  margin: 0;
  margin-bottom: 1.5em;
}
/* line 49, ../sass/_basic-page.scss */
.node-type-basic-page .field-name-field-basic-page-subtitle,
.node-type-news-story .field-name-field-basic-page-subtitle,
.node-type-scheme .field-name-field-basic-page-subtitle,
.node-type-page .field-name-field-basic-page-subtitle,
.page-our-schemes .field-name-field-basic-page-subtitle,
.node-type-webform .field-name-field-basic-page-subtitle,
.node-type-help .field-name-field-basic-page-subtitle {
  margin-bottom: 1em;
}
/* line 53, ../sass/_basic-page.scss */
.node-type-basic-page .field-name-field-basic-page-summary,
.node-type-news-story .field-name-field-basic-page-summary,
.node-type-scheme .field-name-field-basic-page-summary,
.node-type-page .field-name-field-basic-page-summary,
.page-our-schemes .field-name-field-basic-page-summary,
.node-type-webform .field-name-field-basic-page-summary,
.node-type-help .field-name-field-basic-page-summary {
  font-style: italic;
  font-size: 22px;
  margin-bottom: 1em;
  line-height: 30px;
}
/* line 60, ../sass/_basic-page.scss */
.node-type-basic-page .field-name-field-basic-page-body,
.node-type-basic-page .field-name-body,
.node-type-news-story .field-name-field-basic-page-body,
.node-type-news-story .field-name-body,
.node-type-scheme .field-name-field-basic-page-body,
.node-type-scheme .field-name-body,
.node-type-page .field-name-field-basic-page-body,
.node-type-page .field-name-body,
.page-our-schemes .field-name-field-basic-page-body,
.page-our-schemes .field-name-body,
.node-type-webform .field-name-field-basic-page-body,
.node-type-webform .field-name-body,
.node-type-help .field-name-field-basic-page-body,
.node-type-help .field-name-body {
  overflow-wrap: break-word;
  word-wrap: break-word;
}
/* line 63, ../sass/_basic-page.scss */
.node-type-basic-page .field-name-field-basic-page-body h3,
.node-type-basic-page .field-name-body h3,
.node-type-news-story .field-name-field-basic-page-body h3,
.node-type-news-story .field-name-body h3,
.node-type-scheme .field-name-field-basic-page-body h3,
.node-type-scheme .field-name-body h3,
.node-type-page .field-name-field-basic-page-body h3,
.node-type-page .field-name-body h3,
.page-our-schemes .field-name-field-basic-page-body h3,
.page-our-schemes .field-name-body h3,
.node-type-webform .field-name-field-basic-page-body h3,
.node-type-webform .field-name-body h3,
.node-type-help .field-name-field-basic-page-body h3,
.node-type-help .field-name-body h3 {
  font-size: 17px;
}

/* line 71, ../sass/_basic-page.scss */
.one-sidebar #content {
  *zoom: 1;
}
/* line 41, ../sass/_mixins.scss */
.one-sidebar #content:before, .one-sidebar #content:after {
  content: " ";
  display: table;
}
/* line 45, ../sass/_mixins.scss */
.one-sidebar #content:after {
  clear: both;
}
/* line 73, ../sass/_basic-page.scss */
.one-sidebar #content .region-sidebar-first {
  float: left;
  width: 30%;
  padding-right: 30px;
  margin-top: 0;
}
@media screen and (max-width: 992px) {
  /* line 73, ../sass/_basic-page.scss */
  .one-sidebar #content .region-sidebar-first {
    width: 100%;
  }
}
/* line 82, ../sass/_basic-page.scss */
.one-sidebar #content .region-sidebar-second {
  float: left;
  width: 30%;
  padding-left: 30px;
  margin-top: 0;
}
@media screen and (max-width: 992px) {
  /* line 82, ../sass/_basic-page.scss */
  .one-sidebar #content .region-sidebar-second {
    width: 100%;
  }
}
/* line 91, ../sass/_basic-page.scss */
.one-sidebar #content .region-inner {
  float: left;
}

/* line 98, ../sass/_basic-page.scss */
.page-search .search-results {
  padding: 0;
}
/* line 100, ../sass/_basic-page.scss */
.page-search .search-results .title {
  margin-bottom: 0;
}
/* line 103, ../sass/_basic-page.scss */
.page-search .search-results .search-snippet-info {
  padding: 0;
}

/* line 110, ../sass/_basic-page.scss */
.page-our-schemes #main #edit-submit-our-schemes {
  display: none;
}
/* line 113, ../sass/_basic-page.scss */
.page-our-schemes #page-title {
  margin-bottom: 20px;
}
/* line 116, ../sass/_basic-page.scss */
.page-our-schemes select {
  padding-right: 50px;
}

/* line 2, ../sass/_form.scss */
textarea, input, select {
  border: none;
  background: #f0f3f5;
}
/* line 5, ../sass/_form.scss */
textarea:focus, input:focus, select:focus {
  outline: 2px solid #007bbb;
}

/* line 10, ../sass/_form.scss */
.form-item {
  margin: 2em 0;
}
/* line 12, ../sass/_form.scss */
.form-item .description {
  line-height: 1.2em;
  margin: 6px 0;
  font-size: 0.8em;
}

/* line 19, ../sass/_form.scss */
textarea {
  padding-left: 15px;
}

/* line 23, ../sass/_form.scss */
input {
  padding: 0 15px;
  height: 45px;
}

/* line 29, ../sass/_form.scss */
.webform-component-multifile input {
  background: transparent;
  margin: 0;
  padding: 0;
  height: 30px;
}

/* line 36, ../sass/_form.scss */
select {
  background: url("../images/dropdown.png") no-repeat 100% #f0f3f5;
  padding: 13px 50px 13px 15px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
}

/* line 49, ../sass/_form.scss */
select::-ms-expand {
  display: none;
}

@-moz-document url-prefix() {
  /* If you use a background image */
  /* line 56, ../sass/_form.scss */
  select {
    background-image: none;
  }
}

/* line 61, ../sass/_form.scss */
.form-item label {
  padding-left: 10px;
  margin-bottom: 3px;
}

/* line 66, ../sass/_form.scss */
input[type="checkbox"],
input[type="radio"] {
  height: auto;
}

/* line 70, ../sass/_form.scss */
.form-radios {
  margin-left: 10px;
  *zoom: 1;
}
/* line 41, ../sass/_mixins.scss */
.form-radios:before, .form-radios:after {
  content: " ";
  display: table;
}
/* line 45, ../sass/_mixins.scss */
.form-radios:after {
  clear: both;
}
/* line 73, ../sass/_form.scss */
.form-radios .form-type-radio {
  float: left;
  margin-right: 30px;
}
/* line 76, ../sass/_form.scss */
.form-radios .form-type-radio .form-radio {
  cursor: pointer;
}
/* line 79, ../sass/_form.scss */
.form-radios .form-type-radio label {
  padding: 0;
  cursor: pointer;
}

/* line 88, ../sass/_form.scss */
.region-banner .form-item-search-block-form {
  margin: 0;
}
/* line 90, ../sass/_form.scss */
.region-banner .form-item-search-block-form input {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  background: white;
  outline: none;
  width: 260px;
  font-size: 18px;
  font-style: italic;
  float: right;
  position: relative;
  z-index: 4;
}
/* line 103, ../sass/_form.scss */
.region-banner .container-inline {
  position: relative;
}
/* line 107, ../sass/_form.scss */
.region-banner .form-actions {
  position: absolute;
  top: 0;
  right: 0;
  width: 51px;
}
/* line 112, ../sass/_form.scss */
.region-banner .form-actions input {
  background-image: url("../images/search-icon.png");
  background-color: white;
  background-repeat: no-repeat;
  background-position: center;
  float: right;
  text-indent: -119988px;
  overflow: hidden;
  text-align: left;
  width: 51px;
  padding: 0;
  position: relative;
  z-index: 5;
}
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  /* line 112, ../sass/_form.scss */
  .region-banner .form-actions input {
    /* on retina, use image that's scaled by 2 */
    background-image: url("../images/search-icon@2x.png");
    background-size: 20px 20px;
  }
}

/* line 129, ../sass/_form.scss */
#main .form-submit {
  background: #007bbb;
  color: white;
  font-weight: 500;
  letter-spacing: 0.025rem;
  padding: 10px 20px;
  display: inline-block;
  -webkit-transition: background 0.1s ease-out;
  -moz-transition: background 0.1s ease-out;
  -ms-transition: background 0.1s ease-out;
  -o-transition: background 0.1s ease-out;
  transition: background 0.1s ease-out;
}
/* line 104, ../sass/_mixins.scss */
#main .form-submit:hover, #main .form-submit:focus {
  background: #005988;
}

/* line 135, ../sass/_form.scss */
.block-campaignmonitor {
  *zoom: 1;
  margin: 0;
}
/* line 41, ../sass/_mixins.scss */
.block-campaignmonitor:before, .block-campaignmonitor:after {
  content: " ";
  display: table;
}
/* line 45, ../sass/_mixins.scss */
.block-campaignmonitor:after {
  clear: both;
}
/* line 138, ../sass/_form.scss */
.block-campaignmonitor .block-title {
  font-size: 30px;
  float: left;
  margin: 5px 0;
}
@media screen and (max-width: 1050px) {
  /* line 138, ../sass/_form.scss */
  .block-campaignmonitor .block-title {
    margin: 15px;
  }
}
@media screen and (max-width: 480px) {
  /* line 138, ../sass/_form.scss */
  .block-campaignmonitor .block-title {
    font-size: 22px;
  }
}
/* line 149, ../sass/_form.scss */
.block-campaignmonitor .content {
  float: right;
  width: 350px;
}
@media screen and (max-width: 1050px) {
  /* line 149, ../sass/_form.scss */
  .block-campaignmonitor .content {
    width: 100%;
    float: left;
    padding: 15px;
  }
}
/* line 158, ../sass/_form.scss */
.block-campaignmonitor .form-text {
  float: left;
}
/* line 162, ../sass/_form.scss */
.block-campaignmonitor .campaignmonitor-subscribe-form .form-item {
  margin: 0;
}
/* line 164, ../sass/_form.scss */
.block-campaignmonitor .campaignmonitor-subscribe-form .form-item input {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.25);
  width: 225px;
}
@media screen and (max-width: 440px) {
  /* line 164, ../sass/_form.scss */
  .block-campaignmonitor .campaignmonitor-subscribe-form .form-item input {
    width: unset;
  }
}
/* line 173, ../sass/_form.scss */
.block-campaignmonitor .campaignmonitor-subscribe-form label {
  display: none;
}
@media screen and (max-width: 440px) {
  /* line 176, ../sass/_form.scss */
  .block-campaignmonitor .campaignmonitor-subscribe-form .form-submit {
    margin-top: 10px;
  }
}

/* line 185, ../sass/_form.scss */
.section-general-enquiries .region-content-middle {
  background: #3b808a;
  padding: 0;
  border: none;
}
/* line 190, ../sass/_form.scss */
.section-general-enquiries .region-content-bottom {
  padding: 0;
}
/* line 193, ../sass/_form.scss */
.section-general-enquiries #main {
  padding-bottom: 0;
}
/* line 196, ../sass/_form.scss */
.section-general-enquiries #webform-client-form-41 {
  margin-bottom: 2.5em;
}

/* line 202, ../sass/_form.scss */
.chosen-container-single .chosen-single {
  border-radius: 0;
  border: 0;
  background-image: none;
  background-color: #f0f3f5;
  box-shadow: none;
  padding: 11px 15px;
  height: auto;
}
/* line 210, ../sass/_form.scss */
.chosen-container-single .chosen-single div b {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0;
  background-position: 0 -6px;
  position: absolute;
  top: 50%;
  margin-top: -5px;
}
/* line 220, ../sass/_form.scss */
.chosen-container-single .chosen-single span {
  max-width: 210px;
  color: #999;
  font-family: sans-serif;
  font-weight: 400;
}

/* line 229, ../sass/_form.scss */
.chosen-container .chosen-results li.group-result {
  padding: 10px 10px 5px 10px;
  text-transform: uppercase;
  line-height: 1.2em;
  font-size: 14px;
}

/* line 236, ../sass/_form.scss */
.chosen-container-multi .chosen-choices li.search-choice {
  border: 0;
  background-color: #007bbb;
  color: white;
  border-radius: 0;
  background-image: none;
  box-shadow: none;
}

/* line 245, ../sass/_form.scss */
.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  width: 100% !important;
}

/* line 249, ../sass/_form.scss */
.chosen-container .chosen-results li.group-option {
  padding: 10px 20px;
  font-size: 14px;
}

/* line 254, ../sass/_form.scss */
.chosen-container-multi .chosen-choices {
  border-radius: 0;
  border: 0;
  background-image: none;
  background-color: #f0f3f5;
  box-shadow: none;
  padding: 11px 15px;
  height: auto;
}

/* line 264, ../sass/_form.scss */
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/icon-close.png");
}
/* line 269, ../sass/_form.scss */
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover, .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:focus {
  background-image: url("../images/icon-close.png");
  background-repeat: no-repeat;
  background-position: center;
}

/* line 277, ../sass/_form.scss */
.chosen-container-active.chosen-with-drop .chosen-single {
  border-radius: 0;
  border: 0;
  background-image: none;
  background-color: #f0f3f5;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  padding: 11px 15px;
  height: auto;
}
/* line 285, ../sass/_form.scss */
.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -19px -3px;
}
/* line 289, ../sass/_form.scss */
.chosen-container-active.chosen-with-drop .chosen-drop {
  top: 85%;
  width: 96%;
  left: 2%;
}

/* line 296, ../sass/_form.scss */
#views-exposed-form-certified-organisations-search .description {
  font-size: 0.7em;
}

/* line 300, ../sass/_form.scss */
.chosen-container {
  border: 2px solid #f0f3f5;
  width: 100% !important;
  max-width: 275px;
}
/* line 304, ../sass/_form.scss */
.chosen-container .chosen-results li.highlighted {
  background-color: #007bbb;
  background-image: none;
}
/* line 308, ../sass/_form.scss */
.chosen-container .chosen-drop {
  border: 0;
  background-color: #f0f3f5;
  border-radius: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
/* line 313, ../sass/_form.scss */
.chosen-container .chosen-drop .chosen-search {
  padding: 0;
  margin: 10px;
}
/* line 316, ../sass/_form.scss */
.chosen-container .chosen-drop .chosen-search input {
  background-color: white;
  padding: 15px 10px;
  background-image: url("../images/icon-search-small.png");
  background-repeat: no-repeat;
  background-position: 95% center;
}

/* line 327, ../sass/_form.scss */
.chosen-container-active {
  border: 2px solid #007bbb;
}

/* line 331, ../sass/_form.scss */
html.js .collapsible {
  padding: 0;
  border: 0;
  background-color: whitesmoke;
  min-width: 100%;
  width: 100%;
}
/* line 340, ../sass/_form.scss */
html.js .collapsible .fieldset-wrapper {
  padding: 20px 10px;
}
@media screen and (max-width: 980px) {
  /* line 340, ../sass/_form.scss */
  html.js .collapsible .fieldset-wrapper {
    padding-top: 0;
  }
}
/* line 345, ../sass/_form.scss */
html.js .collapsible .fieldset-wrapper .fieldset-wrapper {
  padding: 0;
}
/* line 349, ../sass/_form.scss */
html.js .collapsible .fieldset-legend {
  font-family: "din-2014", sans-serif;
  background: none;
  padding: 0;
}
/* line 353, ../sass/_form.scss */
html.js .collapsible .fieldset-legend a {
  display: block;
  background-color: whitesmoke;
  padding: 10px 20px 10px 45px;
  background-image: url("../images/icon-minus.png");
  background-repeat: no-repeat;
  background-position: 10px center;
  font-size: 18px;
}
/* line 363, ../sass/_form.scss */
html.js .collapsible .summary {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* line 368, ../sass/_form.scss */
html.js fieldset.collapsed {
  border: 0;
  padding: 0;
  height: auto;
}
/* line 372, ../sass/_form.scss */
html.js fieldset.collapsed .fieldset-legend {
  background: none;
  padding: 0;
}
/* line 375, ../sass/_form.scss */
html.js fieldset.collapsed .fieldset-legend a {
  background-image: url("../images/icon-plus.png");
}

/* line 381, ../sass/_form.scss */
html.js fieldset.collapsible {
  margin-bottom: 20px;
}
/* line 383, ../sass/_form.scss */
html.js fieldset.collapsible legend {
  width: 100%;
}

/* line 388, ../sass/_form.scss */
.views-exposed-widgets {
  margin-bottom: 0;
}

/* line 394, ../sass/_form.scss */
.page-our-directory-codemark-certified-organisations h1.description,
.page-our-directory-certified-organisations h1.description {
  font-size: 34px;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1em;
  text-transform: none;
  color: #555555;
  margin-top: 0;
}
/* line 404, ../sass/_form.scss */
.page-our-directory-codemark-certified-organisations .section,
.page-our-directory-certified-organisations .section {
  text-transform: uppercase;
  margin: 0;
  color: #555555;
}
/* line 409, ../sass/_form.scss */
.page-our-directory-codemark-certified-organisations .views-exposed-form,
.page-our-directory-certified-organisations .views-exposed-form {
  background: whitesmoke;
}
@media screen and (max-width: 980px) {
  /* line 409, ../sass/_form.scss */
  .page-our-directory-codemark-certified-organisations .views-exposed-form,
  .page-our-directory-certified-organisations .views-exposed-form {
    padding: 15px;
  }
}
/* line 414, ../sass/_form.scss */
.page-our-directory-codemark-certified-organisations .views-exposed-form fieldset.collapsed,
.page-our-directory-certified-organisations .views-exposed-form fieldset.collapsed {
  margin-bottom: 0px;
}
/* line 418, ../sass/_form.scss */
.page-our-directory-codemark-certified-organisations div,
.page-our-directory-certified-organisations div {
  *zoom: 1;
}
/* line 41, ../sass/_mixins.scss */
.page-our-directory-codemark-certified-organisations div:before, .page-our-directory-codemark-certified-organisations div:after,
.page-our-directory-certified-organisations div:before,
.page-our-directory-certified-organisations div:after {
  content: " ";
  display: table;
}
/* line 45, ../sass/_mixins.scss */
.page-our-directory-codemark-certified-organisations div:after,
.page-our-directory-certified-organisations div:after {
  clear: both;
}
/* line 421, ../sass/_form.scss */
.page-our-directory-codemark-certified-organisations .views-exposed-form .views-exposed-widget,
.page-our-directory-certified-organisations .views-exposed-form .views-exposed-widget {
  float: none;
  *zoom: 1;
  padding: 0;
}
/* line 41, ../sass/_mixins.scss */
.page-our-directory-codemark-certified-organisations .views-exposed-form .views-exposed-widget:before, .page-our-directory-codemark-certified-organisations .views-exposed-form .views-exposed-widget:after,
.page-our-directory-certified-organisations .views-exposed-form .views-exposed-widget:before,
.page-our-directory-certified-organisations .views-exposed-form .views-exposed-widget:after {
  content: " ";
  display: table;
}
/* line 45, ../sass/_mixins.scss */
.page-our-directory-codemark-certified-organisations .views-exposed-form .views-exposed-widget:after,
.page-our-directory-certified-organisations .views-exposed-form .views-exposed-widget:after {
  clear: both;
}
/* line 426, ../sass/_form.scss */
.page-our-directory-codemark-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper,
.page-our-directory-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper {
  max-width: 32%;
  min-width: 32%;
  margin: 0 0.5%;
  display: inline-block;
  padding: 65px 2% 2% 2%;
  vertical-align: top;
  border: 1px solid #e0e0e0;
  background-color: white;
  position: relative;
}
/* line 436, ../sass/_form.scss */
.page-our-directory-codemark-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper .form-item,
.page-our-directory-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper .form-item {
  margin-bottom: 30px;
}
/* line 438, ../sass/_form.scss */
.page-our-directory-codemark-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper .form-item:last-of-type,
.page-our-directory-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper .form-item:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 980px) {
  /* line 436, ../sass/_form.scss */
  .page-our-directory-codemark-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper .form-item,
  .page-our-directory-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper .form-item {
    padding: 0 10px;
  }
  /* line 443, ../sass/_form.scss */
  .page-our-directory-codemark-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper .form-item:last-of-type,
  .page-our-directory-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper .form-item:last-of-type {
    margin-bottom: 10px;
  }
}
/* line 449, ../sass/_form.scss */
.page-our-directory-codemark-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper .form-item-scope input,
.page-our-directory-codemark-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper select,
.page-our-directory-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper .form-item-scope input,
.page-our-directory-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper select {
  padding: 11px 15px;
  font-size: 13px;
}
/* line 453, ../sass/_form.scss */
.page-our-directory-codemark-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper label,
.page-our-directory-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper label {
  padding: 0;
}
/* line 456, ../sass/_form.scss */
.page-our-directory-codemark-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper legend,
.page-our-directory-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper legend {
  text-align: left;
  position: absolute;
  top: 20px;
  left: 20px;
  width: auto;
}
/* line 462, ../sass/_form.scss */
.page-our-directory-codemark-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper legend .fieldset-legend,
.page-our-directory-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper legend .fieldset-legend {
  font-size: 24px;
  color: #555555;
}
/* line 468, ../sass/_form.scss */
.page-our-directory-codemark-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper input,
.page-our-directory-codemark-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper input::placeholder,
.page-our-directory-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper input,
.page-our-directory-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper input::placeholder {
  color: #999;
  font-size: 13px;
  font-family: sans-serif;
}
/* line 473, ../sass/_form.scss */
.page-our-directory-codemark-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper input::-webkit-input-placeholder,
.page-our-directory-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #999;
  font-size: 13px;
}
/* line 478, ../sass/_form.scss */
.page-our-directory-codemark-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper input::-moz-placeholder,
.page-our-directory-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper input::-moz-placeholder {
  /* Firefox 19+ */
  color: #999;
  font-size: 13px;
}
/* line 483, ../sass/_form.scss */
.page-our-directory-codemark-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper input:-ms-input-placeholder,
.page-our-directory-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper input:-ms-input-placeholder {
  /* IE 10+ */
  color: #999;
  font-size: 13px;
}
/* line 488, ../sass/_form.scss */
.page-our-directory-codemark-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper input:-moz-placeholder,
.page-our-directory-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper input:-moz-placeholder {
  /* Firefox 18- */
  color: #999;
  font-size: 13px;
}
@media screen and (max-width: 980px) {
  /* line 425, ../sass/_form.scss */
  .page-our-directory-codemark-certified-organisations .views-exposed-form .views-exposed-widget fieldset,
  .page-our-directory-certified-organisations .views-exposed-form .views-exposed-widget fieldset {
    min-width: 100%;
  }
  /* line 496, ../sass/_form.scss */
  .page-our-directory-codemark-certified-organisations .views-exposed-form .views-exposed-widget fieldset .chosen-container,
  .page-our-directory-codemark-certified-organisations .views-exposed-form .views-exposed-widget fieldset input[type="text"],
  .page-our-directory-certified-organisations .views-exposed-form .views-exposed-widget fieldset .chosen-container,
  .page-our-directory-certified-organisations .views-exposed-form .views-exposed-widget fieldset input[type="text"] {
    max-width: 100%;
    width: 100%;
  }
  /* line 501, ../sass/_form.scss */
  .page-our-directory-codemark-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper,
  .page-our-directory-certified-organisations .views-exposed-form .views-exposed-widget fieldset .form-wrapper {
    min-width: 100%;
    width: 100%;
    margin: 15px 0;
    display: block;
  }
}
/* line 509, ../sass/_form.scss */
.page-our-directory-codemark-certified-organisations .views-exposed-form .views-exposed-widget .form-submit,
.page-our-directory-certified-organisations .views-exposed-form .views-exposed-widget .form-submit {
  margin-left: 1%;
  margin-top: 20px;
}
/* line 514, ../sass/_form.scss */
.page-our-directory-codemark-certified-organisations .views-table,
.page-our-directory-certified-organisations .views-table {
  width: 100%;
  color: #555555;
}
/* line 518, ../sass/_form.scss */
.page-our-directory-codemark-certified-organisations .views-table th,
.page-our-directory-certified-organisations .views-table th {
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}
/* line 523, ../sass/_form.scss */
.page-our-directory-codemark-certified-organisations .views-table th.active a,
.page-our-directory-certified-organisations .views-table th.active a {
  color: #0055a4;
}
/* line 525, ../sass/_form.scss */
.page-our-directory-codemark-certified-organisations .views-table th.active a img,
.page-our-directory-certified-organisations .views-table th.active a img {
  margin-left: 8px;
}
/* line 530, ../sass/_form.scss */
.page-our-directory-codemark-certified-organisations .views-table td,
.page-our-directory-certified-organisations .views-table td {
  font-size: 14px;
}
/* line 534, ../sass/_form.scss */
.page-our-directory-codemark-certified-organisations .views-table th,
.page-our-directory-codemark-certified-organisations .views-table td,
.page-our-directory-certified-organisations .views-table th,
.page-our-directory-certified-organisations .views-table td {
  padding: 15px 10px;
}
/* line 538, ../sass/_form.scss */
.page-our-directory-codemark-certified-organisations .views-table tr.even,
.page-our-directory-codemark-certified-organisations .views-table tr.odd,
.page-our-directory-certified-organisations .views-table tr.even,
.page-our-directory-certified-organisations .views-table tr.odd {
  background-color: white;
  border-bottom: 1px solid #e0e0e0;
}
/* line 543, ../sass/_form.scss */
.page-our-directory-codemark-certified-organisations .views-table td.active,
.page-our-directory-codemark-certified-organisations .views-table th.active,
.page-our-directory-certified-organisations .views-table td.active,
.page-our-directory-certified-organisations .views-table th.active {
  background-color: whitesmoke;
}
/* line 555, ../sass/_form.scss */
.page-our-directory-codemark-certified-organisations .view-display-id-search .view-header,
.page-our-directory-codemark-certified-organisations .view-display-id-search .view-empty,
.page-our-directory-certified-organisations .view-display-id-search .view-header,
.page-our-directory-certified-organisations .view-display-id-search .view-empty {
  font-size: 24px;
  margin-top: 75px;
  font-weight: bold;
  color: #555555;
}
/* line 562, ../sass/_form.scss */
.page-our-directory-codemark-certified-organisations .views-field,
.page-our-directory-certified-organisations .views-field {
  margin-bottom: 10px;
  margin-left: 320px;
  color: #555555;
}
@media screen and (max-width: 767px) {
  /* line 562, ../sass/_form.scss */
  .page-our-directory-codemark-certified-organisations .views-field,
  .page-our-directory-certified-organisations .views-field {
    width: 100%;
    margin-left: 0;
  }
}
/* line 570, ../sass/_form.scss */
.page-our-directory-codemark-certified-organisations .views-field span.label,
.page-our-directory-certified-organisations .views-field span.label {
  width: 320px;
  font-weight: bold;
  display: inline-block;
  margin-left: -320px;
}
@media screen and (max-width: 767px) {
  /* line 570, ../sass/_form.scss */
  .page-our-directory-codemark-certified-organisations .views-field span.label,
  .page-our-directory-certified-organisations .views-field span.label {
    width: 100%;
    margin-left: 0;
  }
}
/* line 581, ../sass/_form.scss */
.page-our-directory-codemark-certified-organisations .table-responsive,
.page-our-directory-certified-organisations .table-responsive {
  overflow-x: initial;
}

/* line 586, ../sass/_form.scss */
#webform-client-form-40 fieldset.form-wrapper {
  margin: 0;
  background-color: whitesmoke;
  vertical-align: top;
  border: 0;
}
/* line 591, ../sass/_form.scss */
#webform-client-form-40 fieldset.form-wrapper legend {
  position: relative;
  top: -15px;
  font-weight: bold;
}
/* line 595, ../sass/_form.scss */
#webform-client-form-40 fieldset.form-wrapper legend .fieldset-legend {
  display: inline-block;
}
/* line 601, ../sass/_form.scss */
#webform-client-form-40 .tabledrag-toggle-weight-wrapper {
  display: none;
}

/* line 606, ../sass/_form.scss */
#edit-submitted-attach-your-cv-upload {
  vertical-align: top;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  /* line 606, ../sass/_form.scss */
  #edit-submitted-attach-your-cv-upload {
    padding-top: 14px;
  }
}

@media screen and (max-width: 380px) {
  /* line 612, ../sass/_form.scss */
  .collapsible .fieldset-wrapper .fieldset-wrapper {
    max-width: 250px;
    width: 100%;
  }
}

/* line 620, ../sass/_form.scss */
#views-exposed-form-our-directory-filter .form-item-program {
  max-width: 350px;
}

/* line 626, ../sass/_form.scss */
#views-exposed-form-our-directory-search #edit-program-wrapper {
  clear: left;
}
/* line 631, ../sass/_form.scss */
#views-exposed-form-our-directory-search #edit-program-wrapper,
#views-exposed-form-our-directory-search #edit-scheme-wrapper,
#views-exposed-form-our-directory-search #edit-country-wrapper {
  min-width: 250px;
}

/* line 636, ../sass/_form.scss */
.mailchimp-lists-user-subscribe-form {
  *zoom: 1;
}
/* line 41, ../sass/_mixins.scss */
.mailchimp-lists-user-subscribe-form:before, .mailchimp-lists-user-subscribe-form:after {
  content: " ";
  display: table;
}
/* line 45, ../sass/_mixins.scss */
.mailchimp-lists-user-subscribe-form:after {
  clear: both;
}
/* line 639, ../sass/_form.scss */
.mailchimp-lists-user-subscribe-form .mailchimp-newsletter-wrapper,
.mailchimp-lists-user-subscribe-form .form-submit {
  float: left;
}
@media screen and (max-width: 480px) {
  /* line 639, ../sass/_form.scss */
  .mailchimp-lists-user-subscribe-form .mailchimp-newsletter-wrapper,
  .mailchimp-lists-user-subscribe-form .form-submit {
    float: none;
  }
}
/* line 645, ../sass/_form.scss */
.mailchimp-lists-user-subscribe-form .form-submit {
  margin-top: 59px;
}
@media screen and (max-width: 480px) {
  /* line 645, ../sass/_form.scss */
  .mailchimp-lists-user-subscribe-form .form-submit {
    margin-top: 0;
  }
}

/* line 655, ../sass/_form.scss */
#edit-submitted-attach-files-evidence .form-item .file-widget,
#edit-submitted-attach-files-evidence .form-item #edit-submitted-attach-files-evidence-0-upload-button {
  margin: 10px 0;
}
/* line 659, ../sass/_form.scss */
#edit-submitted-attach-files-evidence .form-item label,
#edit-submitted-attach-files-evidence .form-item #edit-submitted-attach-files-evidence-0-upload {
  padding: 0;
}

/* line 666, ../sass/_form.scss */
#main .view-media-centre-search .form-item-search-api-views-fulltext input {
  background: transparent;
  border: 1px solid #e0e0e0;
  width: 380px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}
/* line 671, ../sass/_form.scss */
#main .view-media-centre-search .form-item-search-api-views-fulltext input::placeholder {
  font-style: italic;
}
@media screen and (max-width: 640px) {
  /* line 666, ../sass/_form.scss */
  #main .view-media-centre-search .form-item-search-api-views-fulltext input {
    width: 260px;
  }
}
/* line 678, ../sass/_form.scss */
#main .view-media-centre-search .views-submit-button input {
  background-image: url(../images/search-icon.png);
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -119988px;
  width: 51px;
  position: relative;
  margin-top: 0px;
  right: 70px;
}

/* line 693, ../sass/_form.scss */
#block-webform-client-block-377,
#block-webform-client-block-389 {
  margin-bottom: 0;
  border-top: 1px solid #d5d5d5;
  padding-top: 30px;
}
/* line 702, ../sass/_form.scss */
#block-webform-client-block-377 form.webform-client-form #edit-submitted-helpful,
#block-webform-client-block-377 form.webform-client-form #edit-submitted-helpful *,
#block-webform-client-block-377 form.webform-client-form label[for="edit-submitted-helpful"],
#block-webform-client-block-377 form.webform-client-form label[for="edit-submitted-helpful"] *,
#block-webform-client-block-389 form.webform-client-form #edit-submitted-helpful,
#block-webform-client-block-389 form.webform-client-form #edit-submitted-helpful *,
#block-webform-client-block-389 form.webform-client-form label[for="edit-submitted-helpful"],
#block-webform-client-block-389 form.webform-client-form label[for="edit-submitted-helpful"] * {
  display: inline-block;
  vertical-align: bottom;
  padding: 0;
}
/* line 708, ../sass/_form.scss */
#block-webform-client-block-377 form.webform-client-form .webform-component--helpful,
#block-webform-client-block-389 form.webform-client-form .webform-component--helpful {
  margin-top: 0;
}
/* line 711, ../sass/_form.scss */
#block-webform-client-block-377 form.webform-client-form .form-item-submitted-helpful,
#block-webform-client-block-389 form.webform-client-form .form-item-submitted-helpful {
  color: #007bbb;
  margin-bottom: 0;
}
/* line 714, ../sass/_form.scss */
#block-webform-client-block-377 form.webform-client-form .form-item-submitted-helpful input[type="radio"],
#block-webform-client-block-389 form.webform-client-form .form-item-submitted-helpful input[type="radio"] {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  cursor: pointer;
}
/* line 722, ../sass/_form.scss */
#block-webform-client-block-377 form.webform-client-form .form-item-submitted-helpful label,
#block-webform-client-block-389 form.webform-client-form .form-item-submitted-helpful label {
  cursor: pointer;
}
/* line 725, ../sass/_form.scss */
#block-webform-client-block-377 form.webform-client-form .form-item-submitted-helpful label::before,
#block-webform-client-block-389 form.webform-client-form .form-item-submitted-helpful label::before {
  content: " ";
  line-height: 2;
  background-image: url(../images/thumb-up-white.png);
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  font-weight: bold;
  display: inline-block;
  background-color: #3b808a;
  width: 2rem;
  height: 2rem;
  border-radius: 50rem;
  margin: 0 0.5em -10px 0;
  transition: all 0.1s ease-in-out;
}
/* line 745, ../sass/_form.scss */
#block-webform-client-block-377 form.webform-client-form .form-item-submitted-helpful label:focus::before, #block-webform-client-block-377 form.webform-client-form .form-item-submitted-helpful label:hover::before,
#block-webform-client-block-389 form.webform-client-form .form-item-submitted-helpful label:focus::before,
#block-webform-client-block-389 form.webform-client-form .form-item-submitted-helpful label:hover::before {
  background-color: #358540;
}
/* line 750, ../sass/_form.scss */
#block-webform-client-block-377 form.webform-client-form .form-item-submitted-helpful label[for="edit-submitted-helpful-2"]::before,
#block-webform-client-block-389 form.webform-client-form .form-item-submitted-helpful label[for="edit-submitted-helpful-2"]::before {
  background-image: url(../images/thumb-down-blue.png);
  background-color: whitesmoke;
}
/* line 757, ../sass/_form.scss */
#block-webform-client-block-377 form.webform-client-form .form-item-submitted-helpful label[for="edit-submitted-helpful-2"]:focus::before, #block-webform-client-block-377 form.webform-client-form .form-item-submitted-helpful label[for="edit-submitted-helpful-2"]:hover::before,
#block-webform-client-block-389 form.webform-client-form .form-item-submitted-helpful label[for="edit-submitted-helpful-2"]:focus::before,
#block-webform-client-block-389 form.webform-client-form .form-item-submitted-helpful label[for="edit-submitted-helpful-2"]:hover::before {
  background-color: red;
  background-image: url(../images/thumb-down-wht.png);
}
/* line 765, ../sass/_form.scss */
#block-webform-client-block-377 form.webform-client-form .form-actions,
#block-webform-client-block-389 form.webform-client-form .form-actions {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* line 2, ../sass/_directory.scss */
.section-accredited-bodies {
  color: #555555;
}
/* line 4, ../sass/_directory.scss */
.section-accredited-bodies .section {
  text-transform: uppercase;
}
/* line 7, ../sass/_directory.scss */
.section-accredited-bodies .accredited-bodies-notices {
  background-color: #f0f3f5;
  padding: 15px;
}
/* line 10, ../sass/_directory.scss */
.section-accredited-bodies .accredited-bodies-notices h3 {
  color: red;
  font-size: 24px;
  margin-top: 0px;
  margin-bottom: 10px;
}
/* line 16, ../sass/_directory.scss */
.section-accredited-bodies .accredited-bodies-notices .accredited-bodies-notice {
  padding-bottom: 20px;
}
/* line 18, ../sass/_directory.scss */
.section-accredited-bodies .accredited-bodies-notices .accredited-bodies-notice:last-of-type {
  padding-bottom: 0;
}
/* line 21, ../sass/_directory.scss */
.section-accredited-bodies .accredited-bodies-notices .accredited-bodies-notice .accredited-bodies-notice-title {
  font-weight: 600;
}
/* line 24, ../sass/_directory.scss */
.section-accredited-bodies .accredited-bodies-notices .accredited-bodies-notice .accredited-bodies-notice-description {
  line-height: 18px;
  margin-top: 0.25rem;
  font-size: 16px;
}
/* line 32, ../sass/_directory.scss */
.section-accredited-bodies .description {
  margin-top: 0;
  color: #555555;
  font-size: 37px;
  line-height: 1em;
}
/* line 38, ../sass/_directory.scss */
.section-accredited-bodies .accredited-body-logo {
  float: right;
}
/* line 44, ../sass/_directory.scss */
.section-accredited-bodies .view-our-directory .views-field-title,
.section-accredited-bodies .view-our-directory .views-field-name,
.section-accredited-bodies .view-our-directory .rows-count {
  font-weight: 600;
}
/* line 47, ../sass/_directory.scss */
.section-accredited-bodies .view-our-directory .rows-count {
  font-size: 26px;
  margin-top: 75px;
  padding-left: 15px;
}
@media screen and (max-width: 992px) {
  /* line 47, ../sass/_directory.scss */
  .section-accredited-bodies .view-our-directory .rows-count {
    padding-left: 0;
  }
}
/* line 55, ../sass/_directory.scss */
.section-accredited-bodies .view-our-directory .views-field-name span {
  font-weight: normal;
}
/* line 58, ../sass/_directory.scss */
.section-accredited-bodies .view-our-directory .views-lists-header span {
  font-weight: 600;
}
/* line 63, ../sass/_directory.scss */
.section-accredited-bodies .item-list {
  margin-left: 20px;
}
@media screen and (max-width: 992px) {
  /* line 63, ../sass/_directory.scss */
  .section-accredited-bodies .item-list {
    margin-left: 0;
  }
}
/* line 68, ../sass/_directory.scss */
.section-accredited-bodies .item-list h3 {
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 10px;
}
/* line 75, ../sass/_directory.scss */
.section-accredited-bodies .view-grouping-header {
  font-size: 28px;
  margin-bottom: 30px;
}
/* line 80, ../sass/_directory.scss */
.section-accredited-bodies .view-grouping {
  margin: 50px 0;
}
/* line 86, ../sass/_directory.scss */
.section-accredited-bodies .view-display-id-schemes_standards .accredited-bodies-ul,
.section-accredited-bodies .view-display-id-technical_sectors .accredited-bodies-ul,
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul {
  list-style: none;
  padding: 0;
  margin-left: 20px;
  margin-top: 0;
}
/* line 91, ../sass/_directory.scss */
.section-accredited-bodies .view-display-id-schemes_standards .accredited-bodies-ul li,
.section-accredited-bodies .view-display-id-technical_sectors .accredited-bodies-ul li,
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li {
  *zoom: 1;
  border-bottom: 1px solid #aaaaaa;
  padding: 20px 0 20px 0;
}
/* line 41, ../sass/_mixins.scss */
.section-accredited-bodies .view-display-id-schemes_standards .accredited-bodies-ul li:before, .section-accredited-bodies .view-display-id-schemes_standards .accredited-bodies-ul li:after,
.section-accredited-bodies .view-display-id-technical_sectors .accredited-bodies-ul li:before,
.section-accredited-bodies .view-display-id-technical_sectors .accredited-bodies-ul li:after,
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li:before,
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li:after {
  content: " ";
  display: table;
}
/* line 45, ../sass/_mixins.scss */
.section-accredited-bodies .view-display-id-schemes_standards .accredited-bodies-ul li:after,
.section-accredited-bodies .view-display-id-technical_sectors .accredited-bodies-ul li:after,
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li:after {
  clear: both;
}
/* line 98, ../sass/_directory.scss */
.section-accredited-bodies .view-display-id-schemes_standards .accredited-bodies-ul li .views-field-abbrev,
.section-accredited-bodies .view-display-id-schemes_standards .accredited-bodies-ul li label,
.section-accredited-bodies .view-display-id-schemes_standards .accredited-bodies-ul li .views-field-title,
.section-accredited-bodies .view-display-id-schemes_standards .accredited-bodies-ul li .views-field-name,
.section-accredited-bodies .view-display-id-technical_sectors .accredited-bodies-ul li .views-field-abbrev,
.section-accredited-bodies .view-display-id-technical_sectors .accredited-bodies-ul li label,
.section-accredited-bodies .view-display-id-technical_sectors .accredited-bodies-ul li .views-field-title,
.section-accredited-bodies .view-display-id-technical_sectors .accredited-bodies-ul li .views-field-name,
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li .views-field-abbrev,
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li label,
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li .views-field-title,
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li .views-field-name {
  margin-bottom: 5px;
}
/* line 103, ../sass/_directory.scss */
.section-accredited-bodies .view-display-id-schemes_standards .accredited-bodies-ul li .views-field-abbrev a:hover, .section-accredited-bodies .view-display-id-schemes_standards .accredited-bodies-ul li .views-field-abbrev a:focus,
.section-accredited-bodies .view-display-id-schemes_standards .accredited-bodies-ul li label a:hover,
.section-accredited-bodies .view-display-id-schemes_standards .accredited-bodies-ul li label a:focus,
.section-accredited-bodies .view-display-id-schemes_standards .accredited-bodies-ul li .views-field-title a:hover,
.section-accredited-bodies .view-display-id-schemes_standards .accredited-bodies-ul li .views-field-title a:focus,
.section-accredited-bodies .view-display-id-schemes_standards .accredited-bodies-ul li .views-field-name a:hover,
.section-accredited-bodies .view-display-id-schemes_standards .accredited-bodies-ul li .views-field-name a:focus,
.section-accredited-bodies .view-display-id-technical_sectors .accredited-bodies-ul li .views-field-abbrev a:hover,
.section-accredited-bodies .view-display-id-technical_sectors .accredited-bodies-ul li .views-field-abbrev a:focus,
.section-accredited-bodies .view-display-id-technical_sectors .accredited-bodies-ul li label a:hover,
.section-accredited-bodies .view-display-id-technical_sectors .accredited-bodies-ul li label a:focus,
.section-accredited-bodies .view-display-id-technical_sectors .accredited-bodies-ul li .views-field-title a:hover,
.section-accredited-bodies .view-display-id-technical_sectors .accredited-bodies-ul li .views-field-title a:focus,
.section-accredited-bodies .view-display-id-technical_sectors .accredited-bodies-ul li .views-field-name a:hover,
.section-accredited-bodies .view-display-id-technical_sectors .accredited-bodies-ul li .views-field-name a:focus,
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li .views-field-abbrev a:hover,
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li .views-field-abbrev a:focus,
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li label a:hover,
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li label a:focus,
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li .views-field-title a:hover,
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li .views-field-title a:focus,
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li .views-field-name a:hover,
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li .views-field-name a:focus {
  color: #005988;
}
/* line 113, ../sass/_directory.scss */
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul {
  list-style: none;
  padding: 0;
  margin-top: 0;
}
/* line 117, ../sass/_directory.scss */
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li {
  *zoom: 1;
  border-bottom: 1px solid #aaaaaa;
  padding: 20px 0 20px 0;
}
/* line 41, ../sass/_mixins.scss */
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li:before, .section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li:after {
  content: " ";
  display: table;
}
/* line 45, ../sass/_mixins.scss */
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li:after {
  clear: both;
}
/* line 124, ../sass/_directory.scss */
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li .views-field-abbrev,
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li label,
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li .views-field-title,
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li .views-field-name {
  margin-bottom: 5px;
}
/* line 129, ../sass/_directory.scss */
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li .views-field-abbrev a:hover, .section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li .views-field-abbrev a:focus,
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li label a:hover,
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li label a:focus,
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li .views-field-title a:hover,
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li .views-field-title a:focus,
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li .views-field-name a:hover,
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li .views-field-name a:focus {
  color: #005988;
}
/* line 135, ../sass/_directory.scss */
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li .views-field-description,
.section-accredited-bodies .view-display-id-accreditation_standard .accredited-bodies-ul li .views-field-type {
  margin-left: 0px;
}
/* line 142, ../sass/_directory.scss */
.section-accredited-bodies .accredited-bodies-ul {
  list-style: none;
  padding: 0;
  margin-left: 0px;
  margin-top: 0;
}
/* line 147, ../sass/_directory.scss */
.section-accredited-bodies .accredited-bodies-ul li {
  *zoom: 1;
  border-bottom: 1px solid #aaaaaa;
  padding: 20px 0 20px 0;
}
/* line 41, ../sass/_mixins.scss */
.section-accredited-bodies .accredited-bodies-ul li:before, .section-accredited-bodies .accredited-bodies-ul li:after {
  content: " ";
  display: table;
}
/* line 45, ../sass/_mixins.scss */
.section-accredited-bodies .accredited-bodies-ul li:after {
  clear: both;
}
/* line 154, ../sass/_directory.scss */
.section-accredited-bodies .accredited-bodies-ul li .views-field-abbrev,
.section-accredited-bodies .accredited-bodies-ul li label,
.section-accredited-bodies .accredited-bodies-ul li .views-field-title,
.section-accredited-bodies .accredited-bodies-ul li .views-field-name {
  float: left;
  width: 320px;
}
@media screen and (max-width: 767px) {
  /* line 154, ../sass/_directory.scss */
  .section-accredited-bodies .accredited-bodies-ul li .views-field-abbrev,
  .section-accredited-bodies .accredited-bodies-ul li label,
  .section-accredited-bodies .accredited-bodies-ul li .views-field-title,
  .section-accredited-bodies .accredited-bodies-ul li .views-field-name {
    width: 100%;
  }
}
/* line 164, ../sass/_directory.scss */
.section-accredited-bodies .accredited-bodies-ul li .views-field-abbrev a:hover, .section-accredited-bodies .accredited-bodies-ul li .views-field-abbrev a:focus,
.section-accredited-bodies .accredited-bodies-ul li label a:hover,
.section-accredited-bodies .accredited-bodies-ul li label a:focus,
.section-accredited-bodies .accredited-bodies-ul li .views-field-title a:hover,
.section-accredited-bodies .accredited-bodies-ul li .views-field-title a:focus,
.section-accredited-bodies .accredited-bodies-ul li .views-field-name a:hover,
.section-accredited-bodies .accredited-bodies-ul li .views-field-name a:focus {
  color: #005988;
}
/* line 170, ../sass/_directory.scss */
.section-accredited-bodies .accredited-bodies-ul li .views-field-description,
.section-accredited-bodies .accredited-bodies-ul li .views-field-type {
  margin-left: 350px;
}
@media screen and (max-width: 767px) {
  /* line 170, ../sass/_directory.scss */
  .section-accredited-bodies .accredited-bodies-ul li .views-field-description,
  .section-accredited-bodies .accredited-bodies-ul li .views-field-type {
    margin-left: 0;
  }
}
/* line 179, ../sass/_directory.scss */
.section-accredited-bodies .tabs {
  padding: 0;
  list-style: none;
  *zoom: 1;
}
/* line 41, ../sass/_mixins.scss */
.section-accredited-bodies .tabs:before, .section-accredited-bodies .tabs:after {
  content: " ";
  display: table;
}
/* line 45, ../sass/_mixins.scss */
.section-accredited-bodies .tabs:after {
  clear: both;
}
/* line 183, ../sass/_directory.scss */
.section-accredited-bodies .tabs li {
  float: left;
  margin-right: 1px;
}
/* line 186, ../sass/_directory.scss */
.section-accredited-bodies .tabs li a {
  display: block;
  padding: 15px;
  background: #f0f3f5;
  font-size: 14px;
  color: #555555;
  -webkit-transition: background 0.1s ease-out;
  -moz-transition: background 0.1s ease-out;
  -ms-transition: background 0.1s ease-out;
  -o-transition: background 0.1s ease-out;
  transition: background 0.1s ease-out;
}
/* line 195, ../sass/_directory.scss */
.section-accredited-bodies .tabs li a:hover, .section-accredited-bodies .tabs li a:focus {
  color: white;
  background: #005988;
}
/* line 201, ../sass/_directory.scss */
.section-accredited-bodies .tabs li:first-child > a {
  -webkit-border-radius: 8px 0 0 8px;
  -moz-border-radius: 8px 0 0 8px;
  border-radius: 8px 0 0 8px;
}
/* line 206, ../sass/_directory.scss */
.section-accredited-bodies .tabs li:last-child > a {
  -webkit-border-radius: 0 8px 8px 0;
  -moz-border-radius: 0 8px 8px 0;
  border-radius: 0 8px 8px 0;
}
/* line 211, ../sass/_directory.scss */
.section-accredited-bodies .tabs .active a {
  color: white;
  background: #005988;
}
/* line 218, ../sass/_directory.scss */
.section-accredited-bodies .addresses,
.section-accredited-bodies .contact-details {
  *zoom: 1;
  margin: 30px 0;
}
/* line 41, ../sass/_mixins.scss */
.section-accredited-bodies .addresses:before, .section-accredited-bodies .addresses:after,
.section-accredited-bodies .contact-details:before,
.section-accredited-bodies .contact-details:after {
  content: " ";
  display: table;
}
/* line 45, ../sass/_mixins.scss */
.section-accredited-bodies .addresses:after,
.section-accredited-bodies .contact-details:after {
  clear: both;
}
/* line 221, ../sass/_directory.scss */
.section-accredited-bodies .addresses h2,
.section-accredited-bodies .contact-details h2 {
  margin: 0;
  margin-bottom: 10px;
}
/* line 225, ../sass/_directory.scss */
.section-accredited-bodies .addresses .address,
.section-accredited-bodies .contact-details .address {
  float: left;
  width: 33%;
  min-height: 210px;
  padding: 0 45px 0 0;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  /* line 225, ../sass/_directory.scss */
  .section-accredited-bodies .addresses .address,
  .section-accredited-bodies .contact-details .address {
    width: 50%;
  }
}
@media screen and (max-width: 600px) {
  /* line 225, ../sass/_directory.scss */
  .section-accredited-bodies .addresses .address,
  .section-accredited-bodies .contact-details .address {
    width: 100%;
    min-height: 0;
    padding: 0 0 10px 0;
  }
}
/* line 239, ../sass/_directory.scss */
.section-accredited-bodies .addresses .address h3,
.section-accredited-bodies .contact-details .address h3 {
  margin: 0;
}
/* line 246, ../sass/_directory.scss */
.section-accredited-bodies .addresses,
.section-accredited-bodies .organisation-description {
  margin: 30px 20px;
}
/* line 248, ../sass/_directory.scss */
.section-accredited-bodies .addresses h2,
.section-accredited-bodies .organisation-description h2 {
  margin: 0 -20px 20px -20px;
}
/* line 254, ../sass/_directory.scss */
.section-accredited-bodies #views-exposed-form-our-directory-filter .views-exposed-form .views-exposed-widget {
  float: none;
  padding: 0;
  margin-top: 1.3em;
}
/* line 260, ../sass/_directory.scss */
.section-accredited-bodies #views-exposed-form-our-directory-filter #edit-category-wrapper select {
  min-width: 310px;
}
/* line 265, ../sass/_directory.scss */
.section-accredited-bodies #views-exposed-form-our-directory-filter #edit-title-wrapper select {
  min-width: 600px;
}
/* line 269, ../sass/_directory.scss */
.section-accredited-bodies #views-exposed-form-our-directory-filter label {
  padding-left: 15px;
}
/* line 272, ../sass/_directory.scss */
.section-accredited-bodies #views-exposed-form-our-directory-filter .form-submit {
  margin-top: 0;
}
/* line 277, ../sass/_directory.scss */
.section-accredited-bodies #views-exposed-form-our-directory-search .views-submit-button {
  float: none;
  padding: 0;
  clear: left;
}
/* line 283, ../sass/_directory.scss */
.section-accredited-bodies #views-exposed-form-our-directory-search #edit-category-wrapper select {
  min-width: 310px;
}
/* line 287, ../sass/_directory.scss */
.section-accredited-bodies #views-exposed-form-our-directory-search label {
  padding-left: 15px;
}
/* line 293, ../sass/_directory.scss */
.section-accredited-bodies .view-display-id-conformity_assessment_schemes h3 {
  font-size: 1.5em;
  padding-left: 15px;
}

/* line 301, ../sass/_directory.scss */
.view-display-id-countries .view-header {
  margin-bottom: 20px;
}
/* line 305, ../sass/_directory.scss */
.view-display-id-countries .accredited-bodies-ul,
.view-display-id-countries .item-list {
  margin: 0;
}

@-moz-document url-prefix() {
  /* line 313, ../sass/_directory.scss */
  #views-exposed-form-our-directory-search .views-exposed-form .views-exposed-widget {
    min-height: 75px;
  }
}

/* line 1, ../sass/_component.scss */
.field-type-file {
  margin-bottom: 2em;
}
/* line 3, ../sass/_component.scss */
.field-type-file .field-label {
  color: #555555;
  margin: 2em 0 1em 0;
}

/* line 10, ../sass/_component.scss */
.file-download {
  *zoom: 1;
  margin-bottom: 20px;
}
/* line 41, ../sass/_mixins.scss */
.file-download:before, .file-download:after {
  content: " ";
  display: table;
}
/* line 45, ../sass/_mixins.scss */
.file-download:after {
  clear: both;
}
/* line 13, ../sass/_component.scss */
.file-download .file-icon {
  background: url(../images/file-icon.png) no-repeat;
  width: 51px;
  height: 51px;
  float: left;
  margin-right: 13px;
}
/* line 20, ../sass/_component.scss */
.file-download .file-size {
  font-size: 14px;
  color: #555555;
}
/* line 24, ../sass/_component.scss */
.file-download .file-link {
  font-weight: 600;
}

/* line 30, ../sass/_component.scss */
.flexslider .slides img {
  width: auto;
  max-width: none;
}

/* line 36, ../sass/_component.scss */
.bean-basic-page-banner img {
  max-width: none;
  width: auto;
}

/* line 3, ../sass/_ie.scss */
.ie9 select,
.lt-ie9 select {
  background-image: none;
}

/* line 9, ../sass/_ie.scss */
.lt-ie9 input {
  line-height: 50px;
}
/* line 13, ../sass/_ie.scss */
.lt-ie9 .region-footer {
  background: url(../images/footerbg.jpg) no-repeat center;
}
/* line 17, ../sass/_ie.scss */
.lt-ie9 .region-banner .block-search {
  width: 305px;
  left: 450px;
}

/* SMACSS theme rules */
/* @import "theme-A"; */
/* @import "theme-B"; */
@-webkit-keyframes fade-in {
  /* line 44, ../sass/styles.scss */
  from {
    opacity: 0;
  }

  /* line 45, ../sass/styles.scss */
  to {
    opacity: 1;
  }
}

@-o-keyframes fade-in {
  /* line 48, ../sass/styles.scss */
  from {
    opacity: 0;
  }

  /* line 49, ../sass/styles.scss */
  to {
    opacity: 1;
  }
}

/*@-moz-keyframes fade-in {
from { opacity: 0 }
to { opacity: 1 }
}*/
@keyframes fade-in {
  /* line 56, ../sass/styles.scss */
  from {
    opacity: 0;
  }

  /* line 57, ../sass/styles.scss */
  to {
    opacity: 1;
  }
}

/* line 62, ../sass/styles.scss */
footer {
  max-width: 1920px;
}

/* line 66, ../sass/styles.scss */
html {
  box-sizing: border-box;
}

/* line 69, ../sass/styles.scss */
*, *:before, *:after {
  box-sizing: inherit;
}

/* line 74, ../sass/styles.scss */
body {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

@media screen and (max-width: 992px) {
  /* line 82, ../sass/styles.scss */
  p, li {
    font-size: 16px;
  }
}
/* line 87, ../sass/styles.scss */
#content {
  padding: 0;
}

/* line 94, ../sass/styles.scss */
.header,
.region-inner,
#block-views-flexslider-carousel-block-1 {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}

/* line 99, ../sass/styles.scss */
#block-views-flexslider-carousel-block-1 {
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 1030px) {
  /* line 103, ../sass/styles.scss */
  .region-inner {
    padding: 15px;
  }
}

/* line 111, ../sass/styles.scss */
.header .region-inner,
.region-banner .region-inner {
  max-width: none;
  min-width: 0;
  padding: 0;
}

/* line 119, ../sass/styles.scss */
#block-views-flexslider-carousel-block,
#block-bean-basic-page-banner {
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
}

/* line 125, ../sass/styles.scss */
#header {
  padding: 0;
}

/* line 128, ../sass/styles.scss */
.header {
  margin-bottom: 15px;
  *zoom: 1;
}
/* line 41, ../sass/_mixins.scss */
.header:before, .header:after {
  content: " ";
  display: table;
}
/* line 45, ../sass/_mixins.scss */
.header:after {
  clear: both;
}
@media screen and (max-width: 767px) {
  /* line 128, ../sass/styles.scss */
  .header {
    margin-bottom: 0;
  }
}
/* line 134, ../sass/styles.scss */
.header .region-header {
  float: left;
  margin-top: 26px;
}
@media screen and (max-width: 1030px) {
  /* line 134, ../sass/styles.scss */
  .header .region-header {
    margin-left: 15px;
  }
}
@media screen and (max-width: 767px) {
  /* line 134, ../sass/styles.scss */
  .header .region-header {
    margin: 15px;
  }
}

/* line 146, ../sass/styles.scss */
#block-block-3 {
  margin: 0;
}
/* line 148, ../sass/styles.scss */
#block-block-3 p {
  margin: 0;
}
/* line 151, ../sass/styles.scss */
#block-block-3 .logo {
  text-indent: -119988px;
  overflow: hidden;
  text-align: left;
  background: url(../images/header-logo.png) no-repeat;
  background-size: cover;
  width: 84px;
  height: 87px;
  display: block;
}
@media screen and (max-width: 767px) {
  /* line 151, ../sass/styles.scss */
  #block-block-3 .logo {
    height: 55px;
    width: 55px;
    background-size: 55px;
  }
}

/* line 166, ../sass/styles.scss */
.header__name-and-slogan {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* line 170, ../sass/styles.scss */
.region-banner {
  position: relative;
}
/* line 173, ../sass/styles.scss */
.region-banner .block-search {
  position: absolute;
  top: 40px;
  z-index: 3;
  width: 100%;
  right: 0;
}
@media screen and (max-width: 1030px) {
  /* line 173, ../sass/styles.scss */
  .region-banner .block-search {
    right: 15px;
  }
}
@media screen and (max-width: 550px) {
  /* line 173, ../sass/styles.scss */
  .region-banner .block-search {
    top: 20px;
    padding-left: 30px;
  }
  /* line 185, ../sass/styles.scss */
  .region-banner .block-search input.form-text {
    width: 100%;
  }
}
/* line 189, ../sass/styles.scss */
.region-banner .block-search .content {
  margin: 0 auto;
  max-width: 1000px;
}

/* line 197, ../sass/styles.scss */
.flexslider {
  border: none;
  box-shadow: none;
  margin: 0;
}
/* line 202, ../sass/styles.scss */
.flexslider .flex-direction-nav a {
  display: none !important;
  text-shadow: none;
  border: 0;
  background: #fff;
  opacity: 1 !important;
  text-indent: 500px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
}
/* line 212, ../sass/styles.scss */
.flexslider .flex-direction-nav a:before {
  display: none;
}
@media screen and (max-width: 550px) {
  /* line 202, ../sass/styles.scss */
  .flexslider .flex-direction-nav a {
    display: block !important;
  }
}
/* line 219, ../sass/styles.scss */
.flexslider .flex-direction-nav .flex-prev {
  left: 15px;
  background-image: url("../images/icon-prev.png");
}
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  /* line 219, ../sass/styles.scss */
  .flexslider .flex-direction-nav .flex-prev {
    /* on retina, use image that's scaled by 2 */
    background-image: url("../images/icon-prev@2x.png");
    background-size: 20px 20px;
  }
}
/* line 224, ../sass/styles.scss */
.flexslider .flex-direction-nav .flex-next {
  right: 15px;
  background-image: url("../images/icon-next.png");
}
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  /* line 224, ../sass/styles.scss */
  .flexslider .flex-direction-nav .flex-next {
    /* on retina, use image that's scaled by 2 */
    background-image: url("../images/icon-next@2x.png");
    background-size: 20px 20px;
  }
}

/* line 232, ../sass/styles.scss */
#block-views-flexslider-carousel-block {
  margin-bottom: 0;
  height: 400px;
}
/* line 235, ../sass/styles.scss */
#block-views-flexslider-carousel-block .flex-viewport li {
  position: relative;
}
/* line 238, ../sass/styles.scss */
#block-views-flexslider-carousel-block .title-wrapper {
  height: 100%;
  width: 100%;
  top: 0;
  position: absolute;
}
/* line 243, ../sass/styles.scss */
#block-views-flexslider-carousel-block .title-wrapper .title-inner {
  height: 100%;
  top: 0;
  margin: 0 auto;
  max-width: 1150px;
  margin-right: auto;
  position: relative;
  transform: translate3d(0, 0, 0);
}
/* line 252, ../sass/styles.scss */
#block-views-flexslider-carousel-block .title-wrapper .title-inner .views-field {
  margin-left: 110px;
  position: relative;
  width: 420px;
  z-index: 2;
}
/* line 257, ../sass/styles.scss */
#block-views-flexslider-carousel-block .title-wrapper .title-inner .views-field:first-child {
  margin-top: 90px;
}
/* line 261, ../sass/styles.scss */
#block-views-flexslider-carousel-block .title-wrapper .views-field-title-1 {
  font-family: "din-2014", sans-serif;
  font-size: 40px;
  color: white;
  margin-bottom: 1rem;
  padding: 10px 0;
  display: inline-block;
  letter-spacing: 0.005em;
}
/* line 272, ../sass/styles.scss */
#block-views-flexslider-carousel-block .title-wrapper .views-field-field-title-link a {
  background: #3b808a;
  border-radius: 0 0 3px 3px;
  color: white;
  padding: 12px 20px;
  display: inline-block;
  -webkit-box-shadow: 0 4px 0px 1px #2c5f66;
  -moz-box-shadow: 0 4px 0px 1px #2c5f66;
  box-shadow: 0 4px 0px 1px #2c5f66;
  -webkit-transition: background 0.1s ease-out;
  -moz-transition: background 0.1s ease-out;
  -ms-transition: background 0.1s ease-out;
  -o-transition: background 0.1s ease-out;
  transition: background 0.1s ease-out;
  font-size: 30px;
}
/* line 120, ../sass/_mixins.scss */
#block-views-flexslider-carousel-block .title-wrapper .views-field-field-title-link a:hover, #block-views-flexslider-carousel-block .title-wrapper .views-field-field-title-link a:focus {
  background: #336f78;
}
/* line 278, ../sass/styles.scss */
#block-views-flexslider-carousel-block .title-wrapper .title-inner::before {
  content: "";
  display: block;
  position: absolute;
  background: no-repeat url(../images/carousel-circle-grey.png) left -110px;
  background-size: 610px;
  height: 100%;
  width: 100%;
  transform: translate3d(0, 0, 0);
  z-index: 1;
}
/* line 290, ../sass/styles.scss */
#block-views-flexslider-carousel-block .title-wrapper.slide-grey .title-inner::before {
  background: no-repeat url(../images/carousel-circle-grey.png) left -110px;
  background-size: 610px;
}
/* line 294, ../sass/styles.scss */
#block-views-flexslider-carousel-block .title-wrapper.slide-cool-grey .title-inner::before {
  background: no-repeat url(../images/carousel-circle-cool-grey.png) left -110px;
  background-size: 610px;
}
/* line 298, ../sass/styles.scss */
#block-views-flexslider-carousel-block .title-wrapper.slide-crimson .title-inner::before {
  background: no-repeat url(../images/carousel-circle-crimson.png) left -110px;
  background-size: 610px;
}
/* line 302, ../sass/styles.scss */
#block-views-flexslider-carousel-block .title-wrapper.slide-fuschia .title-inner::before {
  background: no-repeat url(../images/carousel-circle-fuschia.png) left -110px;
  background-size: 610px;
}
/* line 306, ../sass/styles.scss */
#block-views-flexslider-carousel-block .title-wrapper.slide-dark-purple .title-inner::before {
  background: no-repeat url(../images/carousel-circle-dark-purple.png) left -110px;
  background-size: 610px;
}
/* line 310, ../sass/styles.scss */
#block-views-flexslider-carousel-block .title-wrapper.slide-deep-blue .title-inner::before {
  background: no-repeat url(../images/carousel-circle-deep-blue.png) left -110px;
  background-size: 610px;
}
/* line 314, ../sass/styles.scss */
#block-views-flexslider-carousel-block .title-wrapper.slide-dark-green .title-inner::before {
  background: no-repeat url(../images/carousel-circle-dark-green.png) left -110px;
  background-size: 610px;
}
/* line 318, ../sass/styles.scss */
#block-views-flexslider-carousel-block .title-wrapper.slide-deep-purple .title-inner::before {
  background: no-repeat url(../images/carousel-circle-deep-purple.png) left -110px;
  background-size: 610px;
}
@media screen and (max-width: 777px) {
  /* line 323, ../sass/styles.scss */
  #block-views-flexslider-carousel-block .title-wrapper .title-inner .views-field {
    margin-left: 0;
    max-width: 80%;
    width: auto;
  }
  /* line 327, ../sass/styles.scss */
  #block-views-flexslider-carousel-block .title-wrapper .title-inner .views-field:first-child {
    margin-top: 120px;
  }
  /* line 330, ../sass/styles.scss */
  #block-views-flexslider-carousel-block .title-wrapper .title-inner .views-field.views-field-title-1 {
    background: #384444;
    font-size: 30px;
    padding: 10px 15px;
    margin-bottom: 0;
  }
  /* line 336, ../sass/styles.scss */
  #block-views-flexslider-carousel-block .title-wrapper .title-inner .views-field.views-field-field-title-link a {
    font-size: 32px;
  }
  /* line 340, ../sass/styles.scss */
  #block-views-flexslider-carousel-block .title-wrapper .title-inner::before {
    content: none;
  }
  /* line 343, ../sass/styles.scss */
  #block-views-flexslider-carousel-block .title-wrapper.slide-grey .title-inner .views-field.views-field-title-1 {
    background: #384444;
  }
  /* line 346, ../sass/styles.scss */
  #block-views-flexslider-carousel-block .title-wrapper.slide-cool-grey .title-inner .views-field.views-field-title-1 {
    background: #474b55;
  }
  /* line 349, ../sass/styles.scss */
  #block-views-flexslider-carousel-block .title-wrapper.slide-crimson .title-inner .views-field.views-field-title-1 {
    background: #d01947;
  }
  /* line 352, ../sass/styles.scss */
  #block-views-flexslider-carousel-block .title-wrapper.slide-fuschia .title-inner .views-field.views-field-title-1 {
    background: #b6006a;
  }
  /* line 355, ../sass/styles.scss */
  #block-views-flexslider-carousel-block .title-wrapper.slide-dark-purple .title-inner .views-field.views-field-title-1 {
    background: #9261a8;
  }
  /* line 358, ../sass/styles.scss */
  #block-views-flexslider-carousel-block .title-wrapper.slide-deep-blue .title-inner .views-field.views-field-title-1 {
    background: #007bbb;
  }
  /* line 361, ../sass/styles.scss */
  #block-views-flexslider-carousel-block .title-wrapper.slide-dark-green .title-inner .views-field.views-field-title-1 {
    background: #358540;
  }
  /* line 364, ../sass/styles.scss */
  #block-views-flexslider-carousel-block .title-wrapper.slide-deep-purple .title-inner .views-field.views-field-title-1 {
    background: #91268f;
  }
}
@media screen and (max-width: 550px) {
  /* line 369, ../sass/styles.scss */
  #block-views-flexslider-carousel-block .title-wrapper {
    top: 80px;
  }
  /* line 371, ../sass/styles.scss */
  #block-views-flexslider-carousel-block .title-wrapper .title-inner .views-field {
    max-width: 100%;
  }
  /* line 373, ../sass/styles.scss */
  #block-views-flexslider-carousel-block .title-wrapper .title-inner .views-field:first-child {
    margin-top: 0;
  }
  /* line 376, ../sass/styles.scss */
  #block-views-flexslider-carousel-block .title-wrapper .title-inner .views-field.views-field-title-1 {
    font-size: 17px;
  }
  /* line 379, ../sass/styles.scss */
  #block-views-flexslider-carousel-block .title-wrapper .title-inner .views-field.views-field-field-title-link a {
    font-size: 16px;
  }
}

/* line 388, ../sass/styles.scss */
#homepage-carousel-navigation .flex-viewport {
  height: auto !important;
  overflow: visible !important;
}
/* line 393, ../sass/styles.scss */
#homepage-carousel-navigation .slides {
  width: 100% !important;
}

/* line 398, ../sass/styles.scss */
#block-views-flexslider-carousel-block-1 {
  margin-bottom: 0px;
}
@media screen and (max-width: 1030px) {
  /* line 398, ../sass/styles.scss */
  #block-views-flexslider-carousel-block-1 {
    padding: 0 15px;
  }
}
/* line 403, ../sass/styles.scss */
#block-views-flexslider-carousel-block-1 ul {
  *zoom: 1;
  padding: 30px 0;
  width: 100%;
}
/* line 41, ../sass/_mixins.scss */
#block-views-flexslider-carousel-block-1 ul:before, #block-views-flexslider-carousel-block-1 ul:after {
  content: " ";
  display: table;
}
/* line 45, ../sass/_mixins.scss */
#block-views-flexslider-carousel-block-1 ul:after {
  clear: both;
}
@media screen and (max-width: 550px) {
  /* line 403, ../sass/styles.scss */
  #block-views-flexslider-carousel-block-1 ul {
    padding: 0;
    height: 0;
  }
}
/* line 412, ../sass/styles.scss */
#block-views-flexslider-carousel-block-1 li {
  padding-left: 20px;
  min-height: 110px;
  cursor: pointer;
  position: relative;
  overflow: visible;
  padding-top: 45px;
  margin-top: -45px;
  width: 33.33% !important;
}
/* line 423, ../sass/styles.scss */
#block-views-flexslider-carousel-block-1 li:hover a, #block-views-flexslider-carousel-block-1 li:focus a {
  color: #555555;
}
/* line 427, ../sass/styles.scss */
#block-views-flexslider-carousel-block-1 li .title-wrapper {
  border-right: 1px solid #e0e0e0;
  padding-right: 30px;
}
/* line 431, ../sass/styles.scss */
#block-views-flexslider-carousel-block-1 li:last-of-type .title-wrapper {
  border: 0;
}
/* line 435, ../sass/styles.scss */
#block-views-flexslider-carousel-block-1 .flex-active-slide {
  background-image: url(../images/white-arrow.png);
  background-position: center 0;
  background-repeat: no-repeat;
  z-index: 1;
}
/* line 441, ../sass/styles.scss */
#block-views-flexslider-carousel-block-1 li:first-child {
  padding-left: 0;
}
/* line 444, ../sass/styles.scss */
#block-views-flexslider-carousel-block-1 li:last-child {
  border: none;
  padding-right: 0;
}
@media screen and (max-width: 550px) {
  /* line 449, ../sass/styles.scss */
  #block-views-flexslider-carousel-block-1 li {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
  }
  /* line 451, ../sass/styles.scss */
  #block-views-flexslider-carousel-block-1 li .title-wrapper {
    opacity: 0 !important;
  }
  /* line 455, ../sass/styles.scss */
  #block-views-flexslider-carousel-block-1 li.flex-active-slide {
    position: static !important;
    clip: auto;
    height: auto;
    width: auto;
    overflow: auto;
    position: absolute !important;
    top: -120px;
    width: 100% !important;
    padding: 15px;
    background: #fff;
    height: 140px;
  }
  /* line 463, ../sass/styles.scss */
  #block-views-flexslider-carousel-block-1 li.flex-active-slide:after {
    display: none;
  }
  /* line 466, ../sass/styles.scss */
  #block-views-flexslider-carousel-block-1 li.flex-active-slide .title-wrapper {
    border: 0;
    opacity: 1 !important;
    transition: opacity 1s ease-in-out !important;
    -moz-transition: opacity 1s ease-in-out !important;
    -webkit-transition: opacity 1s ease-in-out !important;
  }
}
/* line 475, ../sass/styles.scss */
#block-views-flexslider-carousel-block-1 .views-field-field-section {
  font-family: 'din-2014', sans-serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: .025em;
  color: black;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}
/* line 482, ../sass/styles.scss */
#block-views-flexslider-carousel-block-1 .views-field-field-button-title {
  font-size: 18px;
  line-height: normal;
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
}
/* line 490, ../sass/styles.scss */
#block-views-flexslider-carousel-block-1 .views-field-field-button-title:hover, #block-views-flexslider-carousel-block-1 .views-field-field-button-title:focus {
  color: #555555;
}
/* line 494, ../sass/styles.scss */
#block-views-flexslider-carousel-block-1 .views-field-field-link-description {
  line-height: 1.36em;
  font-size: 15px;
  color: #555555;
}
/* line 502, ../sass/styles.scss */
#block-views-flexslider-carousel-block-1 .flex-active-slide .views-field-field-link a {
  color: #555555;
}

/* line 509, ../sass/styles.scss */
#main {
  padding: 0;
}

/* line 514, ../sass/styles.scss */
.front .region-content-intro {
  *zoom: 1;
  background: #3b808a;
  padding: 60px 0;
}
/* line 41, ../sass/_mixins.scss */
.front .region-content-intro:before, .front .region-content-intro:after {
  content: " ";
  display: table;
}
/* line 45, ../sass/_mixins.scss */
.front .region-content-intro:after {
  clear: both;
}
/* line 518, ../sass/styles.scss */
.front .region-content-intro h3, .front .region-content-intro * {
  color: #fff;
}
/* line 522, ../sass/styles.scss */
.front .region-content-intro #block-bean-about-jas-anz,
.front .region-content-intro #block-bean-about-video {
  display: inline-block;
}
/* line 525, ../sass/styles.scss */
.front .region-content-intro #block-bean-about-jas-anz {
  width: calc(45% - 50px);
  height: 100%;
}
/* line 529, ../sass/styles.scss */
.front .region-content-intro #block-bean-about-video {
  float: right;
  margin: 0;
  width: 55%;
}
/* line 533, ../sass/styles.scss */
.front .region-content-intro #block-bean-about-video iframe {
  width: 100%;
}
@media screen and (max-width: 1030px) {
  /* line 514, ../sass/styles.scss */
  .front .region-content-intro {
    padding: 30px 15px;
  }
}
@media screen and (max-width: 800px) {
  /* line 542, ../sass/styles.scss */
  .front .region-content-intro #block-bean-about-jas-anz,
  .front .region-content-intro #block-bean-about-video {
    display: block;
    margin: 0;
    padding: 0 15px;
    width: 100%;
  }
  /* line 548, ../sass/styles.scss */
  .front .region-content-intro #block-bean-about-jas-anz {
    margin-bottom: 1rem;
  }
  /* line 551, ../sass/styles.scss */
  .front .region-content-intro #block-bean-about-video {
    float: none;
    max-width: 560px;
    margin: auto;
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  /* line 559, ../sass/styles.scss */
  .front .region-content-intro iframe {
    height: 260px;
  }
}
@media screen and (max-width: 460px) {
  /* line 564, ../sass/styles.scss */
  .front .region-content-intro iframe {
    height: 205px;
  }
}
@media screen and (max-width: 370px) {
  /* line 569, ../sass/styles.scss */
  .front .region-content-intro iframe {
    height: 145px;
  }
}
/* line 575, ../sass/styles.scss */
.front .region-content-middle {
  padding: 60px 0 10px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (max-width: 1030px) {
  /* line 575, ../sass/styles.scss */
  .front .region-content-middle {
    padding: 30px 0 15px;
  }
}
/* line 582, ../sass/styles.scss */
.front .region-content-middle .region-blockgroup-partners {
  *zoom: 1;
}
/* line 41, ../sass/_mixins.scss */
.front .region-content-middle .region-blockgroup-partners:before, .front .region-content-middle .region-blockgroup-partners:after {
  content: " ";
  display: table;
}
/* line 45, ../sass/_mixins.scss */
.front .region-content-middle .region-blockgroup-partners:after {
  clear: both;
}
/* line 584, ../sass/styles.scss */
.front .region-content-middle .region-blockgroup-partners #block-bean-our-partners {
  float: left;
  width: 50%;
}
@media screen and (max-width: 950px) {
  /* line 584, ../sass/styles.scss */
  .front .region-content-middle .region-blockgroup-partners #block-bean-our-partners {
    width: 100%;
  }
}
/* line 590, ../sass/styles.scss */
.front .region-content-middle .region-blockgroup-partners #block-bean-our-partners p {
  color: #555555;
}
@media screen and (max-width: 550px) {
  /* line 590, ../sass/styles.scss */
  .front .region-content-middle .region-blockgroup-partners #block-bean-our-partners p {
    display: none;
  }
}
/* line 596, ../sass/styles.scss */
.front .region-content-middle .region-blockgroup-partners #block-bean-our-partners .block-title {
  margin-bottom: 5px;
  font-weight: normal;
}
/* line 601, ../sass/styles.scss */
.front .region-content-middle .region-blockgroup-partners #block-bean-our-partners h3 {
  margin: 0;
}
/* line 606, ../sass/styles.scss */
.front .region-content-middle .region-blockgroup-partners #block-views-our-partners-block {
  float: right;
  margin-bottom: 0;
  max-width: 390px;
}
@media screen and (max-width: 950px) {
  /* line 606, ../sass/styles.scss */
  .front .region-content-middle .region-blockgroup-partners #block-views-our-partners-block {
    width: 100%;
    max-width: none;
    float: left;
  }
}
/* line 615, ../sass/styles.scss */
.front .region-content-middle .region-blockgroup-partners #block-views-our-partners-block .view-content {
  *zoom: 1;
}
/* line 41, ../sass/_mixins.scss */
.front .region-content-middle .region-blockgroup-partners #block-views-our-partners-block .view-content:before, .front .region-content-middle .region-blockgroup-partners #block-views-our-partners-block .view-content:after {
  content: " ";
  display: table;
}
/* line 45, ../sass/_mixins.scss */
.front .region-content-middle .region-blockgroup-partners #block-views-our-partners-block .view-content:after {
  clear: both;
}
/* line 617, ../sass/styles.scss */
.front .region-content-middle .region-blockgroup-partners #block-views-our-partners-block .view-content .views-row {
  float: left;
  margin: 0 0 25px 30px;
}
@media screen and (max-width: 950px) {
  /* line 617, ../sass/styles.scss */
  .front .region-content-middle .region-blockgroup-partners #block-views-our-partners-block .view-content .views-row {
    margin-left: 0;
    margin-right: 30px;
  }
}
@media screen and (max-width: 400px) {
  /* line 617, ../sass/styles.scss */
  .front .region-content-middle .region-blockgroup-partners #block-views-our-partners-block .view-content .views-row {
    margin: 0;
    padding-right: 15px;
    padding-bottom: 15px;
    width: 50%;
  }
}
/* line 630, ../sass/styles.scss */
.front .region-content-middle .region-blockgroup-partners #block-views-our-partners-block .view-content .views-row a {
  font-size: 14px;
  line-height: 15px;
  display: block;
  text-align: center;
}
/* line 638, ../sass/styles.scss */
.front .region-content-middle .region-blockgroup-partners #block-views-our-partners-block .view-content .views-row a:hover, .front .region-content-middle .region-blockgroup-partners #block-views-our-partners-block .view-content .views-row a:focus {
  color: #007bbb;
}

/* line 648, ../sass/styles.scss */
.region-content-top {
  border-top: 1px solid #e0e0e0;
  background: whitesmoke;
}
/* line 651, ../sass/styles.scss */
.region-content-top #block-views-category-view-block {
  padding: 30px 15px;
  margin-bottom: 0;
}

/* line 657, ../sass/styles.scss */
#content {
  padding: 40px 0;
}
/* line 659, ../sass/styles.scss */
#content .block-intermediary-data {
  margin-bottom: 0;
}
/* line 661, ../sass/styles.scss */
#content .block-intermediary-data .content {
  *zoom: 1;
}
/* line 41, ../sass/_mixins.scss */
#content .block-intermediary-data .content:before, #content .block-intermediary-data .content:after {
  content: " ";
  display: table;
}
/* line 45, ../sass/_mixins.scss */
#content .block-intermediary-data .content:after {
  clear: both;
}
/* line 664, ../sass/styles.scss */
#content .block-intermediary-data .count {
  text-align: center;
  float: left;
  width: 25%;
}
@media screen and (max-width: 767px) {
  /* line 664, ../sass/styles.scss */
  #content .block-intermediary-data .count {
    width: 50%;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 480px) {
  /* line 664, ../sass/styles.scss */
  #content .block-intermediary-data .count {
    width: 100%;
    margin-bottom: 15px;
  }
}
/* line 678, ../sass/styles.scss */
#content .block-intermediary-data .number {
  font-family: 'din-2014', sans-serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: .025em;
  font-size: 38px;
  font-weight: 600;
  color: #358540;
  display: block;
  margin-bottom: 10px;
}
@media screen and (max-width: 550px) {
  /* line 678, ../sass/styles.scss */
  #content .block-intermediary-data .number {
    font-size: 28px;
  }
}
@media screen and (max-width: 1030px) {
  /* line 657, ../sass/styles.scss */
  #content {
    padding: 30px 0;
  }
}

/* line 695, ../sass/styles.scss */
.region-content-bottom {
  padding: 50px 0;
}
@media screen and (max-width: 1030px) {
  /* line 695, ../sass/styles.scss */
  .region-content-bottom {
    padding: 30px 0;
  }
}

/* line 702, ../sass/styles.scss */
.region-content-subscribe {
  background: whitesmoke;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 40px 0;
}
/* line 703, ../sass/styles.scss */
.region-content-subscribe .block.block-campaignmonitor h2 {
  color: #007bbb;
  text-transform: none;
  font-size: 36px;
  font-weight: 600;
}
/* line 709, ../sass/styles.scss */
.region-content-subscribe .campaignmonitor-subscribe-form {
  position: relative;
  height: 145px;
}
/* line 712, ../sass/styles.scss */
.region-content-subscribe .campaignmonitor-subscribe-form .captcha {
  bottom: 0;
  padding: 20px 0 0;
  position: absolute;
}
@media screen and (max-width: 440px) {
  /* line 709, ../sass/styles.scss */
  .region-content-subscribe .campaignmonitor-subscribe-form {
    height: 200px;
  }
  /* line 719, ../sass/styles.scss */
  .region-content-subscribe .campaignmonitor-subscribe-form .captcha {
    transform: scale(0.9);
    transform-origin: 0 0;
  }
}
@media screen and (max-width: 1030px) {
  /* line 702, ../sass/styles.scss */
  .region-content-subscribe {
    padding: 30px 0;
  }
}

@media screen and (max-width: 1030px) {
  /* line 734, ../sass/styles.scss */
  .view-homepage-news {
    padding: 15px;
  }
}
/* line 738, ../sass/styles.scss */
.view-homepage-news .view-content {
  *zoom: 1;
}
/* line 41, ../sass/_mixins.scss */
.view-homepage-news .view-content:before, .view-homepage-news .view-content:after {
  content: " ";
  display: table;
}
/* line 45, ../sass/_mixins.scss */
.view-homepage-news .view-content:after {
  clear: both;
}
/* line 740, ../sass/styles.scss */
.view-homepage-news .view-content .views-row {
  float: left;
  width: 30%;
  margin-right: 5%;
}
@media screen and (max-width: 500px) {
  /* line 740, ../sass/styles.scss */
  .view-homepage-news .view-content .views-row {
    width: 100%;
    margin: 0 0 40px 0;
  }
  /* line 747, ../sass/styles.scss */
  .view-homepage-news .view-content .views-row:last-child {
    margin-bottom: 0;
  }
}
/* line 752, ../sass/styles.scss */
.view-homepage-news .view-content .views-row-last {
  margin-right: 0;
}
/* line 756, ../sass/styles.scss */
.view-homepage-news .field-content {
  font-weight: 500;
}
/* line 759, ../sass/styles.scss */
.view-homepage-news .views-field-field-news-story-image {
  margin-bottom: 10px;
}
/* line 761, ../sass/styles.scss */
.view-homepage-news .views-field-field-news-story-image a {
  display: block;
}
@media screen and (max-width: 500px) {
  /* line 761, ../sass/styles.scss */
  .view-homepage-news .views-field-field-news-story-image a {
    max-height: 100px;
    overflow: hidden;
  }
  /* line 766, ../sass/styles.scss */
  .view-homepage-news .views-field-field-news-story-image a img {
    margin-top: -38px;
  }
}
/* line 771, ../sass/styles.scss */
.view-homepage-news .views-field-field-news-story-image img {
  width: 100%;
  display: block;
}
/* line 777, ../sass/styles.scss */
.view-homepage-news .views-field-created {
  text-transform: none;
}
/* line 782, ../sass/styles.scss */
.view-homepage-news .views-field-title {
  margin-bottom: 10px;
}
/* line 787, ../sass/styles.scss */
.view-homepage-news .views-field-body {
  font-size: 14px;
}
/* line 791, ../sass/styles.scss */
.view-homepage-news .views-field-body p {
  margin: 0;
}
/* line 796, ../sass/styles.scss */
.view-homepage-news .more-link {
  margin-bottom: 20px;
}
@media screen and (max-width: 800px) {
  /* line 796, ../sass/styles.scss */
  .view-homepage-news .more-link {
    text-align: left;
  }
}
/* line 801, ../sass/styles.scss */
.view-homepage-news .more-link a {
  background: #007bbb;
  color: white;
  font-weight: 500;
  letter-spacing: 0.025rem;
  padding: 10px 20px;
  display: inline-block;
  -webkit-transition: background 0.1s ease-out;
  -moz-transition: background 0.1s ease-out;
  -ms-transition: background 0.1s ease-out;
  -o-transition: background 0.1s ease-out;
  transition: background 0.1s ease-out;
}
/* line 104, ../sass/_mixins.scss */
.view-homepage-news .more-link a:hover, .view-homepage-news .more-link a:focus {
  background: #005988;
}
@media screen and (max-width: 480px) {
  /* line 801, ../sass/styles.scss */
  .view-homepage-news .more-link a {
    font-size: 16px;
  }
}

/* line 813, ../sass/styles.scss */
.page-stories .view-content .views-row {
  width: 28%;
  margin-bottom: 2em;
}
/* line 816, ../sass/styles.scss */
.page-stories .view-content .views-row:nth-child(3n+1) {
  clear: left;
}
@media screen and (max-width: 650px) {
  /* line 813, ../sass/styles.scss */
  .page-stories .view-content .views-row {
    width: 100%;
    margin: 0 0 40px 0;
  }
  /* line 822, ../sass/styles.scss */
  .page-stories .view-content .views-row:last-child {
    margin-bottom: 0;
  }
}

/* line 831, ../sass/styles.scss */
#block-views-homepage-news-block .block-title {
  float: left;
  width: 100%;
  margin-right: -100%;
}
@media screen and (max-width: 1030px) {
  /* line 831, ../sass/styles.scss */
  #block-views-homepage-news-block .block-title {
    padding: 15px;
  }
}
@media screen and (max-width: 800px) {
  /* line 831, ../sass/styles.scss */
  #block-views-homepage-news-block .block-title {
    margin-right: 0;
  }
}

/* line 844, ../sass/styles.scss */
.region-footer {
  background: url(../images/footerbg.jpg) no-repeat;
  background-size: cover;
  padding-top: 40px;
}
@media screen and (max-width: 550px) {
  /* line 844, ../sass/styles.scss */
  .region-footer {
    padding: 0;
  }
}
/* line 851, ../sass/styles.scss */
.region-footer .region-blockgroup-footer-content {
  *zoom: 1;
}
/* line 41, ../sass/_mixins.scss */
.region-footer .region-blockgroup-footer-content:before, .region-footer .region-blockgroup-footer-content:after {
  content: " ";
  display: table;
}
/* line 45, ../sass/_mixins.scss */
.region-footer .region-blockgroup-footer-content:after {
  clear: both;
}
/* line 855, ../sass/styles.scss */
.region-footer #block-block-2 {
  float: left;
  margin: 0;
}
@media screen and (max-width: 1030px) {
  /* line 855, ../sass/styles.scss */
  .region-footer #block-block-2 {
    padding: 15px;
  }
}
@media screen and (max-width: 650px) {
  /* line 855, ../sass/styles.scss */
  .region-footer #block-block-2 {
    width: 100%;
    padding-bottom: 40px;
  }
}
/* line 865, ../sass/styles.scss */
.region-footer #block-block-2 p {
  margin: 0;
}
/* line 868, ../sass/styles.scss */
.region-footer #block-block-2 .logo {
  text-indent: -119988px;
  overflow: hidden;
  text-align: left;
  background: url(../images/footer-logo.png) no-repeat;
  width: 132px;
  height: 143px;
  display: block;
}
@media screen and (max-width: 1030px) {
  /* line 855, ../sass/styles.scss */
  .region-footer #block-block-2 {
    padding: 15px;
  }
}
@media screen and (max-width: 650px) {
  /* line 855, ../sass/styles.scss */
  .region-footer #block-block-2 {
    width: 100%;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 550px) {
  /* line 855, ../sass/styles.scss */
  .region-footer #block-block-2 {
    padding: 0 0 20px 0;
    float: none;
  }
  /* line 885, ../sass/styles.scss */
  .region-footer #block-block-2 .logo {
    width: 100px;
    height: 90px;
    background-size: 75px;
    background-position: center;
    margin: 0 auto;
  }
}

/* line 896, ../sass/styles.scss */
.region-bottom {
  background: #384444;
}
/* line 898, ../sass/styles.scss */
.region-bottom #block-block-4 {
  margin: 0;
}
/* line 901, ../sass/styles.scss */
.region-bottom p {
  margin: 0;
  padding: 4px 0;
  text-align: center;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
}
/* line 907, ../sass/styles.scss */
.region-bottom p a {
  color: rgba(255, 255, 255, 0.75);
}
/* line 910, ../sass/styles.scss */
.region-bottom p a:hover, .region-bottom p a:focus {
  color: #fff;
}

/* line 917, ../sass/styles.scss */
table {
  width: 100%;
}
/* line 920, ../sass/styles.scss */
table td {
  padding: 10px;
}
/* line 923, ../sass/styles.scss */
table tr.even, table tr.odd {
  border: 1px solid #ccc;
}
/* line 926, ../sass/styles.scss */
table caption {
  text-align: left;
}

/* line 931, ../sass/styles.scss */
.ww-featured-box {
  padding: 15px 30px;
  background-color: #eee;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}
/* line 936, ../sass/styles.scss */
.ww-featured-box p:last-of-type {
  margin: 0;
}

@media screen and (max-width: 1057px) {
  /* line 944, ../sass/styles.scss */
  #block-views-category-view-block {
    overflow-x: hidden;
    padding: 10px 0;
  }

  /* line 948, ../sass/styles.scss */
  .view-category-view .view-content {
    width: 100%;
    padding: 0;
  }

  /* line 952, ../sass/styles.scss */
  .view-category-view .view-content a {
    width: 100%;
  }

  /* line 955, ../sass/styles.scss */
  .view-category-view .view-content {
    width: 100%;
  }

  /* line 958, ../sass/styles.scss */
  .view-category-view .view-footer {
    margin: 40px auto 0;
    float: left;
  }
  /* line 961, ../sass/styles.scss */
  .view-category-view .view-footer .title {
    line-height: 1.2;
  }
  /* line 967, ../sass/styles.scss */
  .view-category-view .view-footer p {
    margin-bottom: 0;
  }
  /* line 978, ../sass/styles.scss */
  .view-category-view ul {
    position: relative;
    left: 0;
    padding: 0 15px 0 0;
    transition: left 0.3s ease-out;
  }
  /* line 983, ../sass/styles.scss */
  .view-category-view ul.slide-first {
    left: -100%;
  }

  /* line 987, ../sass/styles.scss */
  .view-category-view ul li .item-list ul {
    left: 100%;
    margin-left: 0;
    width: 100%;
  }
  /* line 991, ../sass/styles.scss */
  .view-category-view ul li .item-list ul.slide-second {
    left: 0;
  }

  /* line 995, ../sass/styles.scss */
  .view-category-view ul li .item-list ul li ul {
    left: 100%;
    width: 100%;
  }

  /* line 1000, ../sass/styles.scss */
  .view-category-view__button {
    content: 'Back';
    cursor: pointer;
    background: #fff;
    border: 0;
    padding: 5px 10px;
    color: #007bbb;
  }
  /* line 1008, ../sass/styles.scss */
  .view-category-view__button:hover, .view-category-view__button:focus {
    background-color: #005988;
    color: #fff;
  }

  /* line 1013, ../sass/styles.scss */
  #block-views-category-view-block .view-header {
    display: block;
    min-height: 62px;
    padding: 15px 0;
  }
  /* line 1017, ../sass/styles.scss */
  #block-views-category-view-block .view-header p {
    margin: 0;
  }
}
@media screen and (max-width: 1057px) and (max-width: 550px) {
  /* line 961, ../sass/styles.scss */
  .view-category-view .view-footer .title {
    font-size: 22px;
  }
}
@media screen and (max-width: 1057px) and (max-width: 550px) {
  /* line 967, ../sass/styles.scss */
  .view-category-view .view-footer p {
    line-height: 1.5em;
    font-size: 14px;
  }
}
@media screen and (max-width: 1057px) and (max-width: 550px) {
  /* line 958, ../sass/styles.scss */
  .view-category-view .view-footer {
    padding: 20px 0 0;
  }
}

/* line 1023, ../sass/styles.scss */
.is-invisible {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* line 1027, ../sass/styles.scss */
.media-element-container .file-image img {
  height: auto !important;
}
