/**
 * @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. */
/**
* Set all color of link states.
* 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
*/
/*
 * Create link block.
 * It's used to make an overlay link above a content
 * Set this class to a's parent block element.
 * Use link-block(0) to show text within a tags
 * @todo Check it in most browser
 */
/* HTML element (SMACSS base) rules */
/**
 * @file
 * Normalize.css is intended to be used as an alternative to CSS resets.
 *
 * This file is a slight fork of these original sources:
 * - normalize.css v2.1.2 | MIT License | git.io/normalize
 * - normalize.scss v2.1.2 | MIT/GPLv2 License | bit.ly/normalize-with-compass
 *
 * It's suggested that you read the normalize.scss file and customise it to meet
 * your needs, rather then including the file in your project and overriding the
 * defaults later in your CSS.
 * @see http://nicolasgallagher.com/about-normalize-css/
 *
 * Also: @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 *       @see http://snook.ca/archives/html_and_css/no_css_reset/
 */
/**
 * HTML5 display definitions
 */
/* Correct `block` display not defined in IE 8/9. */
/* line 23, ../sass/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

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

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

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

/**
 * Base
 *
 * Instead of relying on the fonts that are available on a user's computer, you
 * can use web fonts which, like images, are resources downloaded to the user's
 * browser. Because of the bandwidth and rendering resources required, web fonts
 * should be used with care.
 *
 * Numerous resources for web fonts can be found on Google. Here are a few
 * websites where you can find Open Source fonts to download:
 * - http://www.fontsquirrel.com/fontface
 * - http://www.theleagueofmoveabletype.com
 *
 * In order to use these fonts, you will need to convert them into formats
 * suitable for web fonts. We recommend the free-to-use Font Squirrel's
 * Font-Face Generator:
 *   http://www.fontsquirrel.com/fontface/generator
 *
 * The following is an example @font-face declaration. This font can then be
 * used in any ruleset using a property like this:  font-family: Example, serif;
 *
 * Since we're using Sass, you'll need to declare your font faces here, then you
 * can add them to the font variables in the _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: Verdana, Tahoma, "DejaVu Sans", sans-serif;
  /* 1 */
  font-size: 100%;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  line-height: 1.5em;
}

/* Remove default margin. */
/* line 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 153, ../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 169, ../sass/_normalize.scss */
p,
pre {
  margin: 1.5em 0;
}

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

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

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

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

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

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

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

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

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

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

/* Address differences between Firefox and other browsers. */
/* line 233, ../sass/_normalize.scss */
hr {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  border: 1px solid #666;
  padding-bottom: -1px;
  margin: 1.5em 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
/* line 341, ../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 362, ../sass/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

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

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

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
/* line 398, ../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 413, ../sass/_normalize.scss */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
  max-width: 100%;
  /* 5 */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 5 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 432, ../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 443, ../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 457, ../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 471, ../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 482, ../sass/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
/* line 497, ../sass/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/* line 506, ../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 512, ../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 522, ../sass/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

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

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

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

/* line 38, ../sass/layouts/_responsive.scss */
.aotw-site-template {
  width: 100%;
  margin: 0 auto;
}

/* line 43, ../sass/layouts/_responsive.scss */
#main {
  padding-top: 20px;
  position: relative;
  max-width: 1402px;
  margin: 0 auto;
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 52, ../sass/layouts/_responsive.scss */
body.node-type-media #main {
  max-width: 1210px;
}

/* line 56, ../sass/layouts/_responsive.scss */
body.section-blog #main,
body.page-forum #main,
body.section-forum #main {
  max-width: 1210px;
}

/* line 62, ../sass/layouts/_responsive.scss */
body.section-recent #main,
body.section-awards #main,
body.section-contact #main,
body.section-links #main,
body.section-jobs #main {
  max-width: 1210px;
}

/* line 70, ../sass/layouts/_responsive.scss */
.content-wrapper {
  float: left;
  width: 100%;
}

/* line 75, ../sass/layouts/_responsive.scss */
#main-content {
  margin-left: 0;
  margin-right: 330px;
  overflow: visible;
  word-wrap: break-word;
  min-height: 1px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 84, ../sass/layouts/_responsive.scss */
aside {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: right;
  margin-top: 0;
  margin-left: -320px;
  margin-right: 10px;
  vertical-align: top;
  width: 300px;
}

/* Full media */
/* line 102, ../sass/layouts/_responsive.scss */
.aotw-site-template.no-sidebars #main {
  max-width: 100%;
  width: 100%;
  padding: 40px 0 0 0;
}

/* line 107, ../sass/layouts/_responsive.scss */
.aotw-site-template.no-sidebars #main-content {
  margin-right: 0;
  width: 100%;
}

/*body.node-type-media */
/* line 112, ../sass/layouts/_responsive.scss */
.aotw-site-template.no-sidebars #main .region-content {
  max-width: 100%;
  width: 100%;
}

/* line 116, ../sass/layouts/_responsive.scss */
.aotw-site-template.no-sidebars .view-mode-full.node-media .ds-media {
  max-width: 100%;
  width: auto;
}

/* line 121, ../sass/layouts/_responsive.scss */
.aotw-site-template.no-sidebars .ds-header,
.aotw-site-template.no-sidebars .ds-description,
.aotw-site-template.no-sidebars .ds-links,
.aotw-site-template.no-sidebars .ds-assets {
  margin-left: 10px !important;
}

@media only screen and (max-width: 900px) {
  /* line 129, ../sass/layouts/_responsive.scss */
  .aotw-site-template.no-sidebars .ds-header,
  .aotw-site-template.no-sidebars .ds-description,
  .aotw-site-template.no-sidebars .ds-links {
    width: calc(100% - 20px) !important;
  }
}
@media only screen and (max-width: 800px) {
  /* line 137, ../sass/layouts/_responsive.scss */
  #main {
    padding-right: 10px;
  }

  /* line 140, ../sass/layouts/_responsive.scss */
  #main-content {
    float: left;
    margin-right: 0px;
    width: 100%;
  }

  /* line 146, ../sass/layouts/_responsive.scss */
  aside {
    float: right;
    margin-left: 0px;
    padding: 20px 0 0 0;
    width: 100%;
    text-align: center;
  }

  /* line 154, ../sass/layouts/_responsive.scss */
  #right-inner {
    width: 300px;
    margin: 0 auto;
    text-align: left;
  }
  /* line 159, ../sass/layouts/_responsive.scss */
  #right-inner .panel-display {
    width: 300px !important;
    margin: 0 auto 20px auto !important;
  }

  /* line 165, ../sass/layouts/_responsive.scss */
  #top-menu #menu-all-creative-world .inner {
    display: none;
  }
}
@media only screen and (max-width: 340px) {
  /* line 172, ../sass/layouts/_responsive.scss */
  #main {
    padding-right: 0px;
    padding-left: 0px;
  }

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

/**
 * Accessibility features.
 */
/* element-invisible as defined by http://snook.ca/archives/html_and_css/hiding-content-for-accessibility */
/* line 39, ../sass/components/_misc.scss */
.element-invisible,
.element-focusable,
#navigation .block-menu .block__title,
#navigation .block-menu-block .block__title {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

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

/*
 * The skip-link link will be completely hidden until a user tabs to the link.
 */
/* line 62, ../sass/components/_misc.scss */
#skip-link {
  margin: 0;
}
/* line 65, ../sass/components/_misc.scss */
#skip-link a,
#skip-link a:visited {
  display: block;
  width: 100%;
  padding: 2px 0 3px 0;
  text-align: center;
  background-color: #666;
  color: #fff;
}

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

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

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

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

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

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

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

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

/**
 * Navigation bar.
 */
/* line 136, ../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 140, ../sass/components/_misc.scss */
#navigation .block {
  margin-bottom: 0;
}
/* line 150, ../sass/components/_misc.scss */
#navigation .links,
#navigation .menu {
  margin: 0;
  padding: 0;
  text-align: left;
  /* LTR */
}
/* line 156, ../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 170, ../sass/components/_misc.scss */
.breadcrumb ol {
  margin: 0;
  padding: 0;
}
/* line 174, ../sass/components/_misc.scss */
.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 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;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  color: #333;
  background-color: #dedede;
  letter-spacing: 1px;
  padding: 0 1em;
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * Progress bar.
 *
 * @see progress.js
 */
/* line 827, ../sass/components/_misc.scss */
.progress {
  font-weight: bold;
}
/* line 830, ../sass/components/_misc.scss */
.progress .bar {
  background: #ccc;
  border-color: #666;
  margin: 0 0.2em;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
/* line 836, ../sass/components/_misc.scss */
.progress .filled {
  background-color: #0072b9;
  background-image: url('../images/progress.gif?1422462090');
}

/* line 842, ../sass/components/_misc.scss */
.left {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}

/* line 846, ../sass/components/_misc.scss */
.right {
  float: right;
  margin-left: 10px;
  margin-bottom: 10px;
}

/* line 920, ../sass/components/_misc.scss */
.pane-aggregator-feed-30 a, .view-node-titles a {
  color: #000;
  font-size: 12px;
  line-height: 1.3;
}

/* line 926, ../sass/components/_misc.scss */
#top-menu #menu-all-creative-world h2, #top-menu #menu-all-creative-world strong {
  font-size: 12px;
  float: left;
  margin: 0 3px 0 0;
}

/* line 932, ../sass/components/_misc.scss */
.ds-media a.left-arrow, .ds-media a.right-arrow {
  height: 160px;
  display: block;
  width: 10%;
  position: absolute;
  top: 50%;
  margin-top: -80px;
  text-indent: -9999px;
}

/* line 942, ../sass/components/_misc.scss */
.comments h2.comment-form, .comments h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 25px;
}

/* line 949, ../sass/components/_misc.scss */
.comment .submitted-on, .pencil-icon {
  line-height: 1.9em;
  color: #918f8f;
  font-size: 13px;
  display: inline-block;
  margin-left: 6px;
}

/* line 957, ../sass/components/_misc.scss */
.user-signature, .user-signature a {
  font-style: italic;
  color: #918f8f;
  font-size: 13px;
}

/* line 963, ../sass/components/_misc.scss */
.liquid .previous, .liquid .next {
  cursor: pointer;
  display: block;
  height: 110px;
  width: 27px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  text-indent: -9999px;
}

/* line 3, ../sass/_istock_integration.scss */
.pane-istock-search, .pane-istock-search * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 7, ../sass/_istock_integration.scss */
.pane-istock-search .istock-prefix {
  margin: 20px 0;
  padding: 10px;
  background-color: #fff;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 0px 1px 1px 0px #B4B4B4;
  -webkit-box-shadow: 0px 1px 1px 0px #B4B4B4;
  box-shadow: 0px 1px 1px 0px #B4B4B4;
}
/* line 13, ../sass/_istock_integration.scss */
.pane-istock-search .istock-prefix, .pane-istock-search .istock-prefix p, .pane-istock-search .istock-prefix a {
  color: #888;
}
/* line 17, ../sass/_istock_integration.scss */
.pane-istock-search .istock-prefix p {
  margin: 10px 0;
}
/* line 24, ../sass/_istock_integration.scss */
.istock-search-widget-processed .pane-istock-search .prefix-text {
  display: table;
}
/* line 27, ../sass/_istock_integration.scss */
.istock-search-widget-processed .pane-istock-search .prefix-text .istock-search-widget {
  display: table-cell;
  width: 350px;
}
/* line 31, ../sass/_istock_integration.scss */
.istock-search-widget-processed .pane-istock-search .prefix-text .istock-search-widget .istock-logo {
  max-width: 70px;
  height: auto;
  vertical-align: middle;
}
/* line 37, ../sass/_istock_integration.scss */
.istock-search-widget-processed .pane-istock-search .prefix-text .istock-search-widget form {
  padding-left: 10px;
  display: inline-block;
}
/* line 41, ../sass/_istock_integration.scss */
.istock-search-widget-processed .pane-istock-search .prefix-text .istock-search-widget form .form-item {
  margin: 0;
}
/* line 44, ../sass/_istock_integration.scss */
.istock-search-widget-processed .pane-istock-search .prefix-text .istock-search-widget form .form-item .form-text {
  height: 30px;
  max-width: 98%;
  width: 120px;
  padding: 2px 2px 2px 27px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAK9JREFUeNpi/P//PwM2wMjI6ACkHJCELgDVbkBRBNKMjKEa7oOksOD3QBwAV4umMQCHBnSxBBTNQCCApnA+SAxJrgHNAAVkzQlIEvvRvQNV04+kph+XRAAOzQrIFjAhhZ0BEvsDthgAGvAAmY+sGVlCAEf0KeDSfBCJnc+AHSCLX6BaaBvgiNP/eOOZBI0oKYwRqnE/UiBdAGJHqDj+tI1m43mYP4nBDORqBGGAAAMAzusI8NAvclwAAAAASUVORK5CYII=") no-repeat 5px 50% #f2f2f2;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* line 1177, ../sass/components/_misc.scss */
  .istock-search-widget-processed .pane-istock-search .prefix-text .istock-search-widget form .form-item .form-text {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAkJJREFUeNq8ljFLHEEUx/f2TowHl0txpJUUqbRIMKkSCBEsPKLFxSss8h2s0umpnanyOUJyRUIULCyijaigEAnkQBBLr1CCyql3l9/IFOvwZndnDu7Bj2Fn581/Z3bmvZcJHC03OFigqcAkvIRhyEIbjmEH1qB+22r9s82TcRDM03yEOSimcDmHz7DCB1x5CSP6jOYLPA3crQFVxA+chBEdp/kB+cDfLmAa8Y1Uwog+p9mKEVXb+RuaUILRmN+gxF+ZKxf/KTSgK7ALZRgwfAbgnX4v+f2FoSThJYtzDZJ2KqPHSf6LsVcGziRRx6sniat5C6HF573wr/Zg2fFQLWu/qKl5KzbhstC3wMHouqjq8dLWTmYsW3RE8yTSdQaPmejGI9KpA3hq7OCRbcXDxvOhj6he9Y2+cvfmD4UvVH1mfzPozUz/bCh8YYemY3SXehQ2/du2rT42nkfMYOH4j0fN+W3C5hV4BBOeq50QruaOTfindCeTIpYUwSx3f80mXNcJIGpjMO+42gXtZyaWelYa3Wm3W2Eup4L5G+PVW/q78IsxsStlTM0SPFRhsB7nXIWOR3YqJ2SnvDUf83Ka5isknWQV0Q4j+XhEH0TJLnU+3heFHURdTIlORSuQ0EG06ymqaq7XUdFAl6VpRFW8nYU/oAq/BymrzE/wAdETscpMITqD83c99qGuq1XqfKETSqjDrIp4u7AK3+Lq6jtRuLacwmv9UUmBIvSJpZu9iHobkxdhu6+iFvH+iBrim/0S/S/AACz15lAFgSN5AAAAAElFTkSuQmCC");
    -webkit-background-size: 15px 15px;
    -moz-background-size: 15px 15px;
    -o-background-size: 15px 15px;
    background-size: 15px 15px;
  }
}
/* line 56, ../sass/_istock_integration.scss */
.istock-search-widget-processed .pane-istock-search .prefix-text .form-submit-wrapper {
  display: inline-block;
  padding-left: 10px;
}
/* line 60, ../sass/_istock_integration.scss */
.istock-search-widget-processed .pane-istock-search .prefix-text .form-submit-wrapper a {
  height: 33px;
  line-height: 33px;
  vertical-align: middle;
  padding: 0 10px;
  margin: 10px 15px 0 0;
  min-width: 140px;
  color: #FFF !important;
  cursor: pointer;
  background-color: #918f8f !important;
  border: 0 none;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -moz-box-shadow: 0px 1px 1px 0px #B4B4B4;
  -webkit-box-shadow: 0px 1px 1px 0px #B4B4B4;
  box-shadow: 0px 1px 1px 0px #B4B4B4;
  font-size: 18px;
  text-align: center;
  display: inline-block;
  margin: 0;
  margin-top: -3px;
  min-width: 0;
  font-size: 0.9em;
}
/* line 149, ../sass/_mixins.scss */
.istock-search-widget-processed .pane-istock-search .prefix-text .form-submit-wrapper a:hover {
  color: #FFF !important;
  background-color: #C80000 !important;
}
/* line 72, ../sass/_istock_integration.scss */
.istock-search-widget-processed .pane-istock-search .prefix-text p.center {
  display: table-cell;
  max-width: 500px;
  vertical-align: middle;
}
@media only screen and (max-width: 960px) {
  /* line 24, ../sass/_istock_integration.scss */
  .istock-search-widget-processed .pane-istock-search .prefix-text {
    display: block;
  }
  /* line 82, ../sass/_istock_integration.scss */
  .istock-search-widget-processed .pane-istock-search .prefix-text .istock-search-widget {
    display: block;
    width: auto;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 10px;
  }
  /* line 91, ../sass/_istock_integration.scss */
  .istock-search-widget-processed .pane-istock-search .prefix-text p.center {
    display: block;
    width: auto;
    max-width: 100%;
  }
}

/* line 104, ../sass/_istock_integration.scss */
.section-search .pane-istock-search .istock-result {
  margin: 20px 0 0;
  padding: 0;
  width: 100%;
}
/* line 230, ../sass/_mixins.scss */
.section-search .pane-istock-search .istock-result:before, .section-search .pane-istock-search .istock-result:after {
  content: " ";
  display: table;
}
/* line 235, ../sass/_mixins.scss */
.section-search .pane-istock-search .istock-result:after {
  clear: both;
}
/* line 111, ../sass/_istock_integration.scss */
.section-search .pane-istock-search .istock-result .istock-image {
  display: inline-block;
  margin: 0 0 18px 0;
  padding: 0;
  float: left;
  height: 200px;
  width: 50%;
}
@media (min-width: 321px) {
  /* line 111, ../sass/_istock_integration.scss */
  .section-search .pane-istock-search .istock-result .istock-image {
    width: 50%;
  }
}
@media (min-width: 540px) {
  /* line 111, ../sass/_istock_integration.scss */
  .section-search .pane-istock-search .istock-result .istock-image {
    width: 33.33%;
  }
}
@media (min-width: 720px) {
  /* line 111, ../sass/_istock_integration.scss */
  .section-search .pane-istock-search .istock-result .istock-image {
    width: 25%;
  }
}
@media (min-width: 800px) {
  /* line 111, ../sass/_istock_integration.scss */
  .section-search .pane-istock-search .istock-result .istock-image {
    width: 33.33%;
  }
}
@media (min-width: 900px) {
  /* line 111, ../sass/_istock_integration.scss */
  .section-search .pane-istock-search .istock-result .istock-image {
    width: 33.33%;
  }
}
@media (min-width: 1080px) {
  /* line 111, ../sass/_istock_integration.scss */
  .section-search .pane-istock-search .istock-result .istock-image {
    width: 25%;
    min-width: 186px;
  }
}
@media (min-width: 1260px) {
  /* line 111, ../sass/_istock_integration.scss */
  .section-search .pane-istock-search .istock-result .istock-image {
    width: 20%;
    min-width: 180px;
  }
}
@media (min-width: 1440px) {
  /* line 111, ../sass/_istock_integration.scss */
  .section-search .pane-istock-search .istock-result .istock-image {
    width: 16.66%;
    min-width: 177px;
  }
}
/* line 120, ../sass/_istock_integration.scss */
.section-search .pane-istock-search .istock-result .istock-image a {
  display: block;
  width: calc(100% - 20px);
  background-color: #fff;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 0px 1px 1px 0px #B4B4B4;
  -webkit-box-shadow: 0px 1px 1px 0px #B4B4B4;
  box-shadow: 0px 1px 1px 0px #B4B4B4;
  padding: 10px;
  text-align: center;
  height: 200px;
  line-height: 180px;
  vert-align: middle;
}
/* line 132, ../sass/_istock_integration.scss */
.section-search .pane-istock-search .istock-result .istock-image a img {
  max-width: 100%;
  max-height: 180px;
  height: auto;
  line-height: 180px;
  vertical-align: middle;
}
/* line 144, ../sass/_istock_integration.scss */
.section-search .pane-istock-search .istock-more-link {
  margin-right: 18px;
}

/* line 151, ../sass/_istock_integration.scss */
.field-name-istock-related-images h2.block__title {
  margin-bottom: 1em;
  margin-top: 1em;
}
/* line 156, ../sass/_istock_integration.scss */
.field-name-istock-related-images .istock-result {
  margin: 20px 0 10px 0;
  background-color: #fff;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 0px 1px 1px 0px #B4B4B4;
  -webkit-box-shadow: 0px 1px 1px 0px #B4B4B4;
  box-shadow: 0px 1px 1px 0px #B4B4B4;
  padding: 10px;
  overflow: hidden;
  height: 180px;
  line-height: 160px;
  text-align: center;
  vert-align: middle;
}
/* line 230, ../sass/_mixins.scss */
.field-name-istock-related-images .istock-result:before, .field-name-istock-related-images .istock-result:after {
  content: " ";
  display: table;
}
/* line 235, ../sass/_mixins.scss */
.field-name-istock-related-images .istock-result:after {
  clear: both;
}
/* line 167, ../sass/_istock_integration.scss */
.field-name-istock-related-images .istock-result .istock-image {
  display: inline-block;
  float: left;
  width: 25%;
  padding: 0 5px;
  margin-bottom: 100px;
}
/* line 175, ../sass/_istock_integration.scss */
.field-name-istock-related-images .istock-result .istock-image a {
  display: block;
}
/* line 177, ../sass/_istock_integration.scss */
.field-name-istock-related-images .istock-result .istock-image a img {
  max-width: 100%;
  max-height: 160px;
  height: auto;
  line-height: 160px;
  vertical-align: middle;
}
@media (min-width: 1080px) {
  /* line 167, ../sass/_istock_integration.scss */
  .field-name-istock-related-images .istock-result .istock-image {
    width: 20%;
    height: 180px;
    line-height: 160px;
  }
  /* line 194, ../sass/_istock_integration.scss */
  .field-name-istock-related-images .istock-result .istock-image a img {
    max-height: 160px;
    line-height: 180px;
  }
}
/* line 203, ../sass/_istock_integration.scss */
.field-name-istock-related-images .istock-more-link {
  margin-right: 18px;
}

/* line 213, ../sass/_istock_integration.scss */
#mini-panel-aotw_about {
  overflow: hidden;
}

/**
 * @file
 * Print styling
 *
 * We provide some sane print styling for Drupal using Zen's layout method.
 */
/**
 * By importing this CSS file as media "all", we allow this print file to be
 * aggregated with other stylesheets, for improved front-end performance.
 */
@media print {
  /* Underline all links. */
  /* line 15, ../sass/_print.scss */
  a:link,
  a:visited {
    text-decoration: underline !important;
    /* Don't underline header. */
  }
  /* line 20, ../sass/_print.scss */
  a:link.header__site-link,
  a:visited.header__site-link {
    text-decoration: none !important;
  }

  /* line 25, ../sass/_print.scss */
  #content {
    /* Add visible URL after links. */
    /* Only display useful links. */
    /* Add visible title after abbreviations. */
  }
  /* line 27, ../sass/_print.scss */
  #content a[href]:after {
    content: " (" attr(href) ")";
    font-weight: normal;
    font-size: 16px;
  }
  /* line 34, ../sass/_print.scss */
  #content a[href^="javascript:"]:after,
  #content a[href^="#"]:after {
    content: "";
  }
  /* line 40, ../sass/_print.scss */
  #content abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* Un-float the content. */
  /* line 46, ../sass/_print.scss */
  #content {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Turn off any background colors or images. */
  /* line 54, ../sass/_print.scss */
  body,
  #page,
  #main,
  #content {
    color: #000;
    background-color: transparent !important;
    background-image: none !important;
  }

  /* Hide sidebars and nav elements. */
  /* line 64, ../sass/_print.scss */
  #skip-link,
  #toolbar,
  #navigation,
  .region-sidebar-first,
  .region-sidebar-second,
  #footer,
  .breadcrumb,
  .tabs,
  .action-links,
  .links,
  .book-navigation,
  .forum-topic-navigation,
  .pager,
  .feed-icons {
    visibility: hidden;
    display: none;
  }
}
/* SMACSS theme rules */
/* @import "theme-A"; */
/* @import "theme-B"; */
/* line 25, ../sass/styles.scss */
html {
  background: none repeat scroll 0 0 #DEDEDE;
  line-height: 1em;
  font-family: 'Open Sans', 'Helvetica Neue', Arial, Helvetica, sans-serif;
}

/* line 31, ../sass/styles.scss */
a {
  text-decoration: none;
  color: #C80000;
}

/* line 36, ../sass/styles.scss */
blockquote {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAATBAMAAABiojCGAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADBQTFRF////////////////////////////////////////////////////////////////Tq+4QAAAAA90Uk5TABEiM0RVZneImaq7zN3uRir1mQAAAJZJREFUCB0FwcENwWAAgNGvVHvg4OLmYAI6Qk3ABmxQG7ABG7CBERoTiAlEnKUX8gfVz3tApw8wAChOQHReQmKdwdAAY9/A1juU7iC2yYitga4v6PoEZh5g4g7YO4K1c6CqgaNA2wBcm8eKxN9nhBpI1QtqQ6oGKjVP1S+lmsfql0IbuGqgpwEWeiMq3UBS/TJoTQHijD+p9Vs4Zc5lcwAAAABJRU5ErkJggg==") no-repeat scroll left top transparent;
  color: #303030;
  margin: 10px 0;
  padding: 0 25px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* line 1177, ../sass/components/_misc.scss */
  blockquote {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAmCAYAAAC29NkdAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAghJREFUeNrslz1IAmEYx089I8VoyUjoY6gW7WMp2vpYwgiCxhqiLQiCCIKgpcacQhqiIgTXCJuiJRoiaoooaDAa2tJBCqEI4vprJ4l1z/P63h003B9+w/m878OP03vuVdE0TZGgFWyDecn9FFFwWbqudrMfbIAP7TuLFor1gAvtJ8XPVUU8w2APtCvWpgasgWXwy0dE0AVWwTpwWyzXDA5Bv9ECTtAD9sGMYn26wQkIUYtURi4JpmyQ6wKnoIFbSH1lmzbJNYFjEbliDJ6oWY3PHQhX+aR6wblA721qzETAO9NgB9RIjJIY0/cVjJfvqWzg0YcklZjknOsDn0TfFzBQua+yyQIjlwIuCTk3uGZ6T/y1t/wiADJEgxwISt69aUYuYbS3/GKFabIkKVe4e2mi7xsIcYKF394T0SQLfCZe/lTi1P7SHBwDLcQ02gVvknNvjqnHRQb1JNMkKSlXC6JE/Qo8iAiOEmsewb2k4KAuaZQjkVddh36qMMqZidfaCFM/ExHsYtbcmBCMMPVbEcEwsyZt8tRilGeQFxHsZNZkJeW8oI2oZ0SauPXjD5W8pGCQOc7lRJqoeiMqCfBuUNsCBwa1RqZvL/OQDJcEuTs4QNRSRI0TrAdDIl9xQLEnfiuauPW/fXakzipBn02CHqsE7Yr63wUD/11QcQQdQUfQEXQEzedLgAEA3trUXj2sjhEAAAAASUVORK5CYII=");
    -webkit-background-size: 20px 19px;
    -moz-background-size: 20px 19px;
    -o-background-size: 20px 19px;
    background-size: 20px 19px;
  }
}
/* line 42, ../sass/styles.scss */
blockquote p {
  margin: 0;
}

/* line 47, ../sass/styles.scss */
.center {
  text-align: center;
}

/* line 51, ../sass/styles.scss */
.messages, .messages--status, .messages--warning, .messages--error {
  margin-top: 0;
  margin-right: 10px;
}

/* line 56, ../sass/styles.scss */
.resizable-textarea .grippie,
.filter-wrapper {
  width: 98%;
}

/* line 62, ../sass/styles.scss */
#comments form .filter-wrapper,
#edit-comment-body-und-0-format {
  display: none;
}

/* line 67, ../sass/styles.scss */
#comments form > div {
  padding-bottom: 20px;
}

/* line 72, ../sass/styles.scss */
.facebook-action-connect img {
  vertical-align: middle;
}
/* line 75, ../sass/styles.scss */
.comment-forbidden .facebook-action-connect {
  margin-left: 2em;
}

/* line 80, ../sass/styles.scss */
#header, #content, #navigation, .region-sidebar-first, .region-sidebar-second, #footer {
  padding: 0;
  /* overvrite  zen-grid-item-base, see _responsive.scss */
}

/* line 84, ../sass/styles.scss */
header {
  position: relative;
  margin: 0 auto;
  max-width: 1280px;
}

/* line 90, ../sass/styles.scss */
#header-ad {
  height: 90px;
  margin: 0 auto;
  max-width: 729px;
  width: 100%;
  padding-top: 10px;
}

/* line 95, ../sass/styles.scss */
.site-top {
  background: url("../images/bg-head.png") no-repeat scroll 0 0 #fff;
  clear: both;
  padding-top: 10px;
  padding-left: 10px;
}

/* line 102, ../sass/styles.scss */
#main {
  padding-left: 10px;
}

/* line 106, ../sass/styles.scss */
#footer .content {
  height: 90px;
  margin: 0 auto;
  max-width: 729px;
  width: 100%;
}

@media only screen and (max-width: 740px) {
  /* line 111, ../sass/styles.scss */
  #footer .content {
    height: auto;
  }
}
/* line 116, ../sass/styles.scss */
a#logo {
  position: absolute;
  left: 0px;
  bottom: 3px;
  z-index: 9;
  width: 120px;
}

/* top navigation */
/* line 125, ../sass/styles.scss */
#skip-link {
  display: none;
}

/* line 129, ../sass/styles.scss */
#top-menu {
  height: 25px;
  background-color: #000;
  color: #fff;
  display: block;
  overflow: hidden;
  padding: 0.25em 0.83333em;
  z-index: 29;
  position: relative;
}
/* line 140, ../sass/styles.scss */
#top-menu #menu-all-creative-world .inner {
  float: left;
}
/* line 142, ../sass/styles.scss */
#top-menu #menu-all-creative-world .inner ul {
  display: inline-block;
  padding: 0;
}
/* line 145, ../sass/styles.scss */
#top-menu #menu-all-creative-world .inner ul > li {
  display: inline-block;
  list-style-type: none;
  padding: 0 1em 0 0;
}
/* line 151, ../sass/styles.scss */
#top-menu #menu-all-creative-world .inner a {
  color: #fff;
  font-size: 0.75em;
  line-height: 2em;
}
/* line 156, ../sass/styles.scss */
#top-menu #menu-all-creative-world .inner strong a {
  font-size: 12px;
  margin: 0 3px 0 0;
}
/* line 168, ../sass/styles.scss */
#top-menu .pane-fboauth-login {
  float: right;
  height: 1em;
  margin: 0.12em 0 0 0.75em;
  position: relative;
  width: 89px;
}
/* line 176, ../sass/styles.scss */
#top-menu #user-menu,
#top-menu .pane-system-user-menu {
  clear: none;
  float: right;
  font-size: 0.75em;
  width: auto;
  margin: 0 10px 0 0;
}
/* line 183, ../sass/styles.scss */
#top-menu #user-menu ul.menu,
#top-menu .pane-system-user-menu ul.menu {
  padding: 0;
  margin: 0;
}
/* line 186, ../sass/styles.scss */
#top-menu #user-menu ul.menu > li,
#top-menu .pane-system-user-menu ul.menu > li {
  font-size: 1em;
  line-height: 2em;
  list-style-image: none;
  list-style-type: none;
  padding: 0 1em 0 0;
  display: inline-block;
}
/* line 193, ../sass/styles.scss */
#top-menu #user-menu ul.menu > li a,
#top-menu .pane-system-user-menu ul.menu > li a {
  color: #fff;
  font-size: 12px;
}

/* line 203, ../sass/styles.scss */
#navigation {
  width: 100%;
  height: 40px;
  position: relative;
  margin: 20px auto 0;
  max-width: 1200px;
}
/* line 209, ../sass/styles.scss */
#navigation #nav-bottom {
  height: 40px;
  width: 100%;
}
/* line 214, ../sass/styles.scss */
#navigation > div.clearfix {
  height: 40px;
  width: 100%;
}

/* line 221, ../sass/styles.scss */
#main-menu {
  float: left;
  padding-left: 130px !important;
}
/* line 225, ../sass/styles.scss */
#main-menu .menu li {
  margin: 0 8px 0 0;
  text-align: center;
  display: inline-block;
  float: left;
  padding: 0;
}
/* line 232, ../sass/styles.scss */
#main-menu .menu a {
  background: linear-gradient(to bottom, #cccccc 0%, #c6c6c6 39%, #b7b7b7 100%) repeat scroll 0 0 transparent;
  color: #000;
  display: block;
  -moz-border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px;
  border-radius: 5px 5px 0 0;
  padding: 0 18px;
  height: 40px;
  line-height: 40px;
  font-weight: bold;
  text-decoration: none;
}
/* line 246, ../sass/styles.scss */
#main-menu .menu li a.active {
  background: none repeat scroll 0 0 #dedede;
  color: #000;
}
/* line 251, ../sass/styles.scss */
#main-menu .menu li a:hover {
  background: none repeat scroll 0 0 #dedede;
  color: #000;
}

/* line 260, ../sass/styles.scss */
#secondary-menu {
  float: left;
  margin: 0 !important;
  padding: 0.6em 0 0 !important;
}
/* line 265, ../sass/styles.scss */
#secondary-menu .menu li {
  position: relative;
  display: inline-block;
  padding: 0 0.425em;
}
/* line 269, ../sass/styles.scss */
#secondary-menu .menu li:before {
  background: none repeat scroll 0 0 #7a7a7a;
  content: "";
  height: 10px;
  left: 0;
  margin: -4px 0 0;
  position: absolute;
  top: 50%;
  width: 1px;
}
/* line 279, ../sass/styles.scss */
#secondary-menu .menu li:first-child:before {
  display: none;
}
/* line 283, ../sass/styles.scss */
#secondary-menu .menu a {
  color: #333;
  font-size: 0.92308em;
  line-height: 1.58333em;
  text-decoration: none;
  /* (1) line-height was set before: old value: 1.58333em - new value 20px */
}
/* line 289, ../sass/styles.scss */
#secondary-menu .menu a:hover {
  text-decoration: underline;
}

/* line 296, ../sass/styles.scss */
.main-nav-check {
  display: none;
}

/* line 300, ../sass/styles.scss */
.toggle-menu {
  display: none;
}

/* line 304, ../sass/styles.scss */
a#simple-menu {
  display: none;
}

@media only screen and (max-width: 1023px) {
  /* line 310, ../sass/styles.scss */
  .main-nav-check {
    display: inline-block;
  }

  /* line 313, ../sass/styles.scss */
  .toggle-menu {
    display: inline-block;
  }

  /* line 317, ../sass/styles.scss */
  #main-menu {
    float: left;
    margin: 0;
    padding: 0;
    width: 100%;
    padding: 0 !important;
    clear: left;
  }
  /* line 321, ../sass/styles.scss */
  #main-menu .menu {
    float: left;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  /* line 323, ../sass/styles.scss */
  #main-menu .menu li {
    display: block;
    border-bottom: 1px solid #ccc;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
  }
  /* line 325, ../sass/styles.scss */
  #main-menu .menu li a {
    display: block;
    color: #ccc;
    font-size: 0.875em;
    line-height: 1.28571em;
    font-weight: bold;
    outline: none;
    padding: 8px 0;
    text-indent: 20px;
    height: auto;
    background: none repeat scroll 0 0 transparent;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
  }
  /* line 327, ../sass/styles.scss */
  #main-menu .menu li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
  }

  /* line 336, ../sass/styles.scss */
  #secondary-menu {
    float: left;
    margin: 0;
    padding: 0;
    width: 100%;
    padding: 0 !important;
    clear: left;
  }
  /* line 340, ../sass/styles.scss */
  #secondary-menu .menu {
    float: left;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  /* line 342, ../sass/styles.scss */
  #secondary-menu .menu li {
    display: block;
    border-bottom: 1px solid #ccc;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
  }
  /* line 344, ../sass/styles.scss */
  #secondary-menu .menu li a {
    display: block;
    color: #ccc;
    font-size: 0.875em;
    line-height: 1.28571em;
    font-weight: bold;
    outline: none;
    padding: 8px 0;
    text-indent: 20px;
    height: auto;
    background: none repeat scroll 0 0 transparent;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
  }
  /* line 346, ../sass/styles.scss */
  #secondary-menu .menu li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
  }

  /* line 355, ../sass/styles.scss */
  .toggle-menu {
    position: absolute;
    left: 180px;
    bottom: 15px;
    color: #000;
    font-size: 32px;
    cursor: pointer;
  }

  /* line 363, ../sass/styles.scss */
  .main-nav-check {
    display: none;
  }

  /* line 366, ../sass/styles.scss */
  .main-nav {
    position: fixed;
    top: 0px;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #3b3b3b;
    overflow: hidden;
    padding-top: 33px;
    -moz-transition: width 0.3s ease;
    -o-transition: width 0.3s ease;
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
  }
  /* line 376, ../sass/styles.scss */
  .main-nav:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 34px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
  }

  /* line 386, ../sass/styles.scss */
  a#simple-menu {
    position: absolute;
    top: 10px;
    left: 200px;
    display: block;
  }

  /* line 393, ../sass/styles.scss */
  #navigation > div.clearfix {
    height: auto;
    width: 100%;
  }

  /* line 399, ../sass/styles.scss */
  #main-nav-check:checked + #main-nav {
    width: 160px;
    z-index: 19;
  }

  /* line 403, ../sass/styles.scss */
  #main-nav-check:checked ~ .open-menu {
    display: none;
  }

  /* line 406, ../sass/styles.scss */
  #main-nav-check:checked ~ .close-menu {
    display: block;
  }
}
/* selector */
/* line 414, ../sass/styles.scss */
#views-exposed-form-aotw-front-panel-pane-1 .views-exposed-form {
  clear: both;
  float: left;
  width: 100%;
  margin: 0;
}
/* line 419, ../sass/styles.scss */
#views-exposed-form-aotw-front-panel-pane-1 .views-exposed-form .views-exposed-widgets {
  margin: 0;
}
/* line 422, ../sass/styles.scss */
#views-exposed-form-aotw-front-panel-pane-1 .views-exposed-form .form-item {
  padding: 5px 0 1px;
  margin: 0;
  line-height: 1;
}
/* line 428, ../sass/styles.scss */
#views-exposed-form-aotw-front-panel-pane-1 .views-exposed-form label {
  display: none;
}
/* line 431, ../sass/styles.scss */
#views-exposed-form-aotw-front-panel-pane-1 .views-exposed-form select {
  display: inline-block;
}
/* line 434, ../sass/styles.scss */
#views-exposed-form-aotw-front-panel-pane-1 .views-exposed-form .form-submit {
  background-color: #f2f2f2 !important;
  color: #333 !important;
  border: 0 none;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 0px 1px 1px 0px #B4B4B4;
  -webkit-box-shadow: 0px 1px 1px 0px #B4B4B4;
  box-shadow: 0px 1px 1px 0px #B4B4B4;
  cursor: pointer;
  font-size: 12px;
  height: 33px;
  line-height: 33px;
  width: 140px;
  text-align: center;
  margin: 0;
  padding: 0;
}
/* line 450, ../sass/styles.scss */
#views-exposed-form-aotw-front-panel-pane-1 .views-exposed-form .selectgroup {
  background-color: #f2f2f2;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 0px 1px 1px 0px #B4B4B4;
  -webkit-box-shadow: 0px 1px 1px 0px #B4B4B4;
  box-shadow: 0px 1px 1px 0px #B4B4B4;
  float: left;
  margin-right: 20px;
  width: calc(100% - 180px);
  height: 33px;
}
/* line 458, ../sass/styles.scss */
#views-exposed-form-aotw-front-panel-pane-1 .views-exposed-form .selectgroup .views-exposed-widget {
  width: 33.33%;
  padding: 0;
}
/* line 463, ../sass/styles.scss */
#views-exposed-form-aotw-front-panel-pane-1 .views-exposed-form .form-type-select {
  border-left: 1px solid #ccc;
}
/* line 465, ../sass/styles.scss */
#views-exposed-form-aotw-front-panel-pane-1 .views-exposed-form .form-type-select.form-item-media {
  border: 0;
}
/* line 468, ../sass/styles.scss */
#views-exposed-form-aotw-front-panel-pane-1 .views-exposed-form .form-type-select label {
  display: none;
}
/* line 472, ../sass/styles.scss */
#views-exposed-form-aotw-front-panel-pane-1 .views-exposed-form .form-type-select select, #views-exposed-form-aotw-front-panel-pane-1 .views-exposed-form .form-type-select .select {
  cursor: pointer;
  border: 0 !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  color: #222;
  font-size: 12px;
  line-height: 24px;
  height: 24px;
  text-indent: 8px;
}
/* line 484, ../sass/styles.scss */
#views-exposed-form-aotw-front-panel-pane-1 .views-exposed-form .form-type-select select {
  width: 100%;
}
/* line 487, ../sass/styles.scss */
#views-exposed-form-aotw-front-panel-pane-1 .views-exposed-form .form-type-select .arrow {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAICAYAAADA+m62AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAGhJREFUeNpiOXnypAIDA0MCA36wgAVIgBTWE1B4gImBSMBkZmZ2AGQ0PmtBahj///8P5p06dWo/kHJAtxKoyBFsIpJgIBBfQOJfgIqBAdxEqKkGQGo/lOsINO0CVoVIihmQFYEAQIABADQMIintJco/AAAAAElFTkSuQmCC") no-repeat 0 50%;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* line 1177, ../sass/components/_misc.scss */
  #views-exposed-form-aotw-front-panel-pane-1 .views-exposed-form .form-type-select .arrow {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAQCAYAAAAWGF8bAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHNJREFUeNrU1MENgDAIBdDWOBNDdSJmYikMjZioLa36L/4zeQf4IatqQmYVEai4JHD+ATLQYwMLCDWjGKgAtGJEpL7DL+iBXY/yBj1hrSs/QW9YrzYzKO8zOtvDCO1io2K30BCrz2GwJ0c9IWbJ6Pe1CTAAnSguFsNkLnsAAAAASUVORK5CYII=");
    -webkit-background-size: 10px 8px;
    -moz-background-size: 10px 8px;
    -o-background-size: 10px 8px;
    background-size: 10px 8px;
  }
}
/* line 493, ../sass/styles.scss */
#views-exposed-form-aotw-front-panel-pane-1 .views-exposed-form .views-exposed-widget {
  display: inline-block;
  padding: 0;
}
/* line 499, ../sass/styles.scss */
#views-exposed-form-aotw-front-panel-pane-1 .views-widget-filter-search_api_views_fulltext {
  display: none;
}
/* line 500, ../sass/styles.scss */
#views-exposed-form-aotw-front-panel-pane-1 .views-widget-filter-search_api_views_fulltext input[type="text"] {
  display: none;
}

/* line 507, ../sass/styles.scss */
.view-clone-of-taxonomy-term,
.view-aotw-front {
  margin-right: -20px;
}

/* line 513, ../sass/styles.scss */
.view-clone-of-taxonomy-term,
.view-aotw-front {
  margin-right: -20px;
}

@media only screen and (max-width: 1020px) {
  /* line 520, ../sass/styles.scss */
  #views-exposed-form-aotw-front-panel-pane-1 .views-exposed-form .selectgroup {
    width: calc(100% - 20px);
  }

  /* line 523, ../sass/styles.scss */
  #views-exposed-form-aotw-front-panel-pane-1 .views-submit-button {
    width: 100%;
    max-width: calc(100% - 20px);
  }

  /* line 527, ../sass/styles.scss */
  #views-exposed-form-aotw-front-panel-pane-1 .views-submit-button .form-submit {
    margin-top: 15px;
    float: right;
  }
}
@media only screen and (max-width: 480px) {
  /* line 537, ../sass/styles.scss */
  #views-exposed-form-aotw-front-panel-pane-1 .views-exposed-form .selectgroup {
    margin-right: 0px;
    width: 100% !important;
    height: auto;
  }
  /* line 541, ../sass/styles.scss */
  #views-exposed-form-aotw-front-panel-pane-1 .views-exposed-form .selectgroup .views-exposed-widget {
    width: 100%;
    padding: 0;
    margin-bottom: 4px;
  }
  /* line 547, ../sass/styles.scss */
  #views-exposed-form-aotw-front-panel-pane-1 .views-exposed-form .form-type-select {
    border-left: 0;
    border-top: 1px solid #ccc;
  }

  /* line 555, ../sass/styles.scss */
  #header-ad {
    height: auto;
  }

  /* line 558, ../sass/styles.scss */
  .site-top {
    padding-left: 0px;
  }

  /* line 562, ../sass/styles.scss */
  #navigation {
    height: 100px;
  }

  /* line 565, ../sass/styles.scss */
  a#logo {
    bottom: 43px;
    display: block;
    margin: 0 auto 10px;
    position: inherit;
  }

  /* line 571, ../sass/styles.scss */
  .toggle-menu {
    bottom: 15px;
  }

  /* line 574, ../sass/styles.scss */
  .search-block {
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
/* line 582, ../sass/styles.scss */
.ds-links {
  background-color: #fff;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 0px 1px 1px 0px #B4B4B4;
  -webkit-box-shadow: 0px 1px 1px 0px #B4B4B4;
  box-shadow: 0px 1px 1px 0px #B4B4B4;
}

/* line 586, ../sass/styles.scss */
article.node-teaser {
  background-color: #fff;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 0px 1px 1px 0px #B4B4B4;
  -webkit-box-shadow: 0px 1px 1px 0px #B4B4B4;
  box-shadow: 0px 1px 1px 0px #B4B4B4;
}

/* line 591, ../sass/styles.scss */
.view-mode-full.node-media .ds-header {
  background-color: #fff;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 0px 1px 1px 0px #B4B4B4;
  -webkit-box-shadow: 0px 1px 1px 0px #B4B4B4;
  box-shadow: 0px 1px 1px 0px #B4B4B4;
}

/* line 596, ../sass/styles.scss */
.field-name-aotw-comment-count {
  position: absolute;
  right: 0px;
  bottom: 50%;
  margin-bottom: -8px;
  font-size: 12px;
}

/* line 604, ../sass/styles.scss */
ul.inline-list {
  padding: 0;
  width: 100%;
  float: left;
  margin: 20px 0;
}
/* line 610, ../sass/styles.scss */
ul.inline-list li {
  display: inline-block;
  margin: 0 0 18px 0;
  padding: 0;
  float: left;
  height: 200px;
  width: 50%;
}
@media (min-width: 321px) {
  /* line 610, ../sass/styles.scss */
  ul.inline-list li {
    width: 50%;
  }
}
@media (min-width: 540px) {
  /* line 610, ../sass/styles.scss */
  ul.inline-list li {
    width: 33.33%;
  }
}
@media (min-width: 720px) {
  /* line 610, ../sass/styles.scss */
  ul.inline-list li {
    width: 25%;
  }
}
@media (min-width: 800px) {
  /* line 610, ../sass/styles.scss */
  ul.inline-list li {
    width: 33.33%;
  }
}
@media (min-width: 900px) {
  /* line 610, ../sass/styles.scss */
  ul.inline-list li {
    width: 33.33%;
  }
}
@media (min-width: 1080px) {
  /* line 610, ../sass/styles.scss */
  ul.inline-list li {
    width: 25%;
    min-width: 186px;
  }
}
@media (min-width: 1260px) {
  /* line 610, ../sass/styles.scss */
  ul.inline-list li {
    width: 20%;
    min-width: 180px;
  }
}
@media (min-width: 1440px) {
  /* line 610, ../sass/styles.scss */
  ul.inline-list li {
    width: 16.66%;
    min-width: 177px;
  }
}
/* line 620, ../sass/styles.scss */
ul.inline-list li article {
  width: calc(100% - 20px);
}

/*
@media(min-width: 456px){ul.inline-list li{width:33.33%;	}}
@media(min-width: 520px){ul.inline-list li{width:33.33%;	}}
@media(min-width: 638px){ul.inline-list li{width:25%;	}}
@media(min-width: 720px){ul.inline-list li{width:25%;	}}
@media(min-width: 786px){ul.inline-list li{width:33% ;	}}
@media(min-width: 938px){ul.inline-list li{width:25%;	}}
@media(min-width: 1090px){ul.inline-list li{width:20%;	}}
@media(min-width: 1242px){ul.inline-list li{width:16.66%;	}}
@media(min-width: 1394px){ul.inline-list li{width:14.28%;	}}
*/
/* line 692, ../sass/styles.scss */
.view-mode-teaser.node-media .ds-media {
  padding: 0.625em;
  text-align: center;
  height: 140px;
  position: relative;
}
/* line 698, ../sass/styles.scss */
.view-mode-teaser.node-media .ds-media .file {
  display: block;
  height: 140px;
}
/* line 701, ../sass/styles.scss */
.view-mode-teaser.node-media .ds-media .file img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 140px;
  margin: 0 auto;
  line-height: 1;
  /* ? alt text */
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* line 710, ../sass/styles.scss */
.view-mode-teaser.node-media .ds-media .file .content {
  display: block;
  height: 140px;
}
/* line 713, ../sass/styles.scss */
.view-mode-teaser.node-media .ds-media .file .content img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 140px;
  margin: 0 auto;
  line-height: 1;
  /* ? alt text */
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* line 724, ../sass/styles.scss */
.view-mode-teaser.node-media .ds-media .link-block {
  position: absolute;
  top: 0.625em;
  height: 140px;
  width: 100%;
  left: 0px;
}
/* line 730, ../sass/styles.scss */
.view-mode-teaser.node-media .ds-media .link-block a {
  text-indent: -9999px;
  height: 140px;
  width: 100%;
  display: block;
}
/* line 738, ../sass/styles.scss */
.view-mode-teaser.node-media .ds-description {
  font-weight: normal;
  overflow: hidden;
  padding: 0.75em 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  border-top: 1px solid #ccc;
  position: relative;
}
/* line 747, ../sass/styles.scss */
.view-mode-teaser.node-media .ds-description .field-name-taxonomy-vocabulary-1 {
  font-size: 12px;
  font-weight: normal;
  white-space: nowrap;
  line-height: 1.25;
}
/* line 752, ../sass/styles.scss */
.view-mode-teaser.node-media .ds-description .field-name-taxonomy-vocabulary-1 a {
  color: #000;
}
/* line 756, ../sass/styles.scss */
.view-mode-teaser.node-media .ds-description > .field {
  margin-left: 10px;
  margin-right: 10px;
}
/* line 761, ../sass/styles.scss */
.view-mode-teaser.node-media .field-name-aotw-comment-count-php span {
  padding-left: 18px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAANBAMAAACEMClyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAACRQTFRF////ysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKfD5CugAAAAt0Uk5TABAgMEBwgI+/z+9IqhXLAAAAQ0lEQVQI12NgYHRxcXFkAILs3UCQwMDADqJ3b2dgkAYzdgsweEMYDggGXAquGK6dgXH2rhCwgQzdkxkgoB1KMyiASQC9PCfrF5OLnwAAAABJRU5ErkJggg==") no-repeat scroll left 2px transparent;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* line 1177, ../sass/components/_misc.scss */
  .view-mode-teaser.node-media .field-name-aotw-comment-count-php span {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAaCAYAAACgoey0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAWhJREFUeNrElr1Kw1AYhk8l9AKKuEkJdCi6CAVnhdILcHDSxbro5C0ILs4OTkqvwE4upVUXFaR0KU6VBDpIUEHBsVR9PkmkhGCb3/PCQ5JD+J58+TsnZ1mWCsgq7MA6lGBOhcsXPME1nJum+eA/IecTL8ApbKhkcwF7XMCLNzDZiXTWTUGq3Jpd27ZLfnEB2rCo0ovUbiMvTIpPoKjST9F1/T7jJbaPKtssS8d1lX3qIq5qEFdFXNYgLos4r0GcF/FIg3gk4oEG8UDEHQ3ijogbGsQNEfegmaG0yWTR836Z++BkIHVc19+/WgZq8JaiVGrX6NbxT4t9qMBNClKpWUHa9wYM3wlDd9Uh3e+6+/MxOryCM4StaSuQoAynzNN3cACv7vEYPpB9/lfUmHH9FJRvOIJDJOOwt8OIeBuluy1oIY1UIIr4FjbhOc7bFnbZegxrcaVhOn6HbbhM6vuapeN7WElSKvkRYABLNFAuUdTGGQAAAABJRU5ErkJggg==");
    -webkit-background-size: 15px 13px;
    -moz-background-size: 15px 13px;
    -o-background-size: 15px 13px;
    background-size: 15px 13px;
  }
}
/* line 766, ../sass/styles.scss */
.view-mode-teaser.node-media .field-name-aotw-comment-count span {
  padding-left: 18px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAANBAMAAACEMClyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAACRQTFRF////ysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKfD5CugAAAAt0Uk5TABAgMEBwgI+/z+9IqhXLAAAAQ0lEQVQI12NgYHRxcXFkAILs3UCQwMDADqJ3b2dgkAYzdgsweEMYDggGXAquGK6dgXH2rhCwgQzdkxkgoB1KMyiASQC9PCfrF5OLnwAAAABJRU5ErkJggg==") no-repeat scroll left 2px transparent;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* line 1177, ../sass/components/_misc.scss */
  .view-mode-teaser.node-media .field-name-aotw-comment-count span {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAaCAYAAACgoey0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAWhJREFUeNrElr1Kw1AYhk8l9AKKuEkJdCi6CAVnhdILcHDSxbro5C0ILs4OTkqvwE4upVUXFaR0KU6VBDpIUEHBsVR9PkmkhGCb3/PCQ5JD+J58+TsnZ1mWCsgq7MA6lGBOhcsXPME1nJum+eA/IecTL8ApbKhkcwF7XMCLNzDZiXTWTUGq3Jpd27ZLfnEB2rCo0ovUbiMvTIpPoKjST9F1/T7jJbaPKtssS8d1lX3qIq5qEFdFXNYgLos4r0GcF/FIg3gk4oEG8UDEHQ3ijogbGsQNEfegmaG0yWTR836Z++BkIHVc19+/WgZq8JaiVGrX6NbxT4t9qMBNClKpWUHa9wYM3wlDd9Uh3e+6+/MxOryCM4StaSuQoAynzNN3cACv7vEYPpB9/lfUmHH9FJRvOIJDJOOwt8OIeBuluy1oIY1UIIr4FjbhOc7bFnbZegxrcaVhOn6HbbhM6vuapeN7WElSKvkRYABLNFAuUdTGGQAAAABJRU5ErkJggg==");
    -webkit-background-size: 15px 13px;
    -moz-background-size: 15px 13px;
    -o-background-size: 15px 13px;
    background-size: 15px 13px;
  }
}
/* line 770, ../sass/styles.scss */
.view-mode-teaser.node-media .field-name-aotw-comment-count span.comment-new {
  color: #d32222;
}

/* shutterstock-block */
/* line 777, ../sass/styles.scss */
.block-shutterstock-block {
  background-color: #fff;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 0px 1px 1px 0px #B4B4B4;
  -webkit-box-shadow: 0px 1px 1px 0px #B4B4B4;
  box-shadow: 0px 1px 1px 0px #B4B4B4;
  display: inline-block;
  height: 180px;
  overflow: hidden;
  margin-top: 20px;
  /*.shutterstock-video*/
}
/* line 783, ../sass/styles.scss */
.block-shutterstock-block h2 {
  margin-bottom: 0;
  margin-top: 10px;
  text-indent: 25px;
}
/* line 788, ../sass/styles.scss */
.block-shutterstock-block.pane-shutterstock-block-shutterstock-2 {
  height: 200px;
}
/* line 792, ../sass/styles.scss */
.block-shutterstock-block .shutterstock-thumb-large {
  margin: -10px 0 20px 0;
  padding: 0;
  float: left;
  text-align: center;
  height: 110px;
}
/* line 799, ../sass/styles.scss */
.block-shutterstock-block .shutterstock-thumb-large a {
  width: calc(100% - 10px);
  display: block;
  text-align: center;
  margin: 0 auto;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* line 806, ../sass/styles.scss */
.block-shutterstock-block .shutterstock-thumb-large a img {
  max-height: 110px;
  max-width: 100%;
  margin: 25px auto 0;
}
/* line 811, ../sass/styles.scss */
.block-shutterstock-block .shutterstock-thumb-large a .after {
  color: #353434;
  font-size: 11px;
  margin: 0;
  padding: 5px 0 10px 0;
  text-align: left;
  text-indent: 22px;
  width: 100%;
  display: none;
}
/* line 823, ../sass/styles.scss */
.block-shutterstock-block .shutterstock-thumb-large.shutterstock-image {
  height: 150px;
  margin-top: -5px;
}
/* line 827, ../sass/styles.scss */
.block-shutterstock-block .shutterstock-thumb-large.shutterstock-image a {
  height: 150px;
}
/* line 830, ../sass/styles.scss */
.block-shutterstock-block .shutterstock-thumb-large.shutterstock-image a img {
  margin: 0 auto;
}

/* line 840, ../sass/styles.scss */
body.front .block-shutterstock-block {
  margin-right: 20px;
}

@media only screen and (max-width: 800px) {
  /* line 845, ../sass/styles.scss */
  body.front .block-shutterstock-block {
    margin-right: 0;
  }
}
@media (min-width: 540px) {
  /* line 851, ../sass/styles.scss */
  .shutterstock-thumb-large {
    width: 33.33%;
  }
}
@media (min-width: 720px) {
  /* line 857, ../sass/styles.scss */
  .shutterstock-thumb-large {
    width: 25%;
  }
}
@media (min-width: 800px) {
  /* line 863, ../sass/styles.scss */
  .shutterstock-thumb-large {
    width: 33.33%;
  }
}
@media (min-width: 900px) {
  /* line 869, ../sass/styles.scss */
  .shutterstock-thumb-large {
    width: 33.33%;
  }
}
@media (min-width: 1080px) {
  /* line 875, ../sass/styles.scss */
  .shutterstock-thumb-large {
    width: 25%;
  }
}
@media (min-width: 1260px) {
  /* line 881, ../sass/styles.scss */
  .shutterstock-thumb-large {
    width: 20%;
  }
}
@media (min-width: 1440px) {
  /* line 887, ../sass/styles.scss */
  .shutterstock-thumb-large {
    width: 16.66%;
  }
}
/* media */
/* line 894, ../sass/styles.scss */
.view-mode-full.node-media .ds-media {
  float: left;
  max-width: 870px;
  overflow: hidden;
}
/* line 899, ../sass/styles.scss */
.view-mode-full.node-media .ds-media img {
  height: auto;
  display: block;
  width: 100%;
}
/* line 908, ../sass/styles.scss */
.view-mode-full.node-media .ds-media .file-video .media-youtube-video,
.view-mode-full.node-media .ds-media .file-video .media-vimeo-video {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  width: 100%;
}
/* line 917, ../sass/styles.scss */
.view-mode-full.node-media .ds-media .file-video .media-youtube-video iframe,
.view-mode-full.node-media .ds-media .file-video .media-youtube-video object,
.view-mode-full.node-media .ds-media .file-video .media-youtube-video embed,
.view-mode-full.node-media .ds-media .file-video .media-vimeo-video iframe,
.view-mode-full.node-media .ds-media .file-video .media-vimeo-video object,
.view-mode-full.node-media .ds-media .file-video .media-vimeo-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* line 930, ../sass/styles.scss */
.view-mode-full.node-media .ds-media .media-youtube-preview-wrapper {
  position: relative;
  height: 0;
  overflow: hidden;
}
/* line 938, ../sass/styles.scss */
.view-mode-full.node-media .ds-media .media-youtube-outer-wrapper {
  width: auto !important;
  height: auto !important;
}
/* line 943, ../sass/styles.scss */
.view-mode-full.node-media .ds-media .mejs-container {
  max-height: 100%;
  max-width: 100%;
  width: 100% !important;
  overflow: hidden;
}
/* line 230, ../sass/_mixins.scss */
.view-mode-full.node-media .ds-media .mejs-container:before, .view-mode-full.node-media .ds-media .mejs-container:after {
  content: " ";
  display: table;
}
/* line 235, ../sass/_mixins.scss */
.view-mode-full.node-media .ds-media .mejs-container:after {
  clear: both;
}
/* line 950, ../sass/styles.scss */
.view-mode-full.node-media .ds-media .mejs-container .mejs-controls {
  width: 100% !important;
}
/* line 955, ../sass/styles.scss */
.view-mode-full.node-media .ds-media .mejs-poster {
  width: 100% !important;
}
/* line 967, ../sass/styles.scss */
.view-mode-full.node-media .ds-media > .field {
  margin: 10px;
}
/* line 971, ../sass/styles.scss */
.view-mode-full.node-media .ds-media .field-name-media img {
  border: 1px solid #ccc;
}
/* line 230, ../sass/_mixins.scss */
.view-mode-full.node-media .ds-media .field-name-field-vote:before, .view-mode-full.node-media .ds-media .field-name-field-vote:after {
  content: " ";
  display: table;
}
/* line 235, ../sass/_mixins.scss */
.view-mode-full.node-media .ds-media .field-name-field-vote:after {
  clear: both;
}

/* line 985, ../sass/styles.scss */
.view-mode-full.node-media.filetype--video .ds-media,
.view-mode-full.node-media.filemime--video-youtube .ds-media,
.view-mode-full.node-media.filetype--audio .ds-media {
  width: 100%;
}

@-webkit-keyframes slideout {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes slideout {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes slideout {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes slideout {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* line 1038, ../sass/styles.scss */
.ds-media {
  position: relative;
}
/* line 1041, ../sass/styles.scss */
.ds-media a.left-arrow {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAABTCAYAAAD3J6XhAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABPlJREFUeNrkWr1PFFEQ310oTCTXQAehgUJBJBchcIEESITEWgqNmgCFxgK8QmPhR+FHYbQ4oSBaAH8AljZgAiYQj4C5IAIWR0OODpsLJhZH8A08yO7svN33sQuFk0xyednjfsyb329m3j774ODAitlqmNdyP8f8L/Nt7gX8sB0joEvMk8zrAp7ZYv6NeT5uQNeYtyk8/5X5HHxwYgDTowgGrIt5K3woN/1127ZPPrNo1/M/7rFP09PWl5lZq1gsWolEwrra12td7+/Hj3Uz3zTeMgTojjtnAMCtGzetzY0N3/fa2tut8Y8fDgG6bCGyLWNgOnEC3797jwQDtpTNWmOZ93j5shMRmHLOKM82wY8G2eTEhFUoeJifiCpCsP+V7q16/eKl1BcxaCeC6IDwdbrXpth/DqBkbMcboUho79kq2IJRf24IDZI7SkCgxlfcC7JbdVhTamoiB5TE+TA7MyP95eH0A7z0wwSQj+avFKIDkSHEcVsXEElzkeZQNuKPDhTaFee0aQ4GkcG5w6u+Vg4Z0RxKBZE7349bEB1ArSY0HxgaPGSXy/aPo6MDqIV5swnNR9JpvDzPfFcXkBHNnzx/hpd+u6OjCgjyptq98PjhIyWa9/b1UYlc0gFUwTwVUqkD7ak/Ouusl1rBi7KAgKPn3TQfU0hkoPnFhga8nKOelQFUj2kOYFRoTuTOIotOXhdQE6Y5bJcKzVGbui+KjgwgH81VEllA8zkWnV1dQD6ah7WlEjQP/APOadOcRaekA6iKD3zaNH/z7q0UzWUBwVaV6dJ8cGgI1ysrKJHDAAHNO3C9MqzmCyKaywDyJDI0XdB8qbSliOZ/whI5CBDQvFG3LYVtgu0iEnlPB1A5rldQyVVoTiTyDgOzoNJOOKheVer2OkBzoi3NWYrmiGg+msmY0nxVhuYiQD6aT01MmtJ8TWd6cHjTfmY0pwBdOEuaU4Bqvbkjr8jQdJnSPBSQStNOtKXKNNdtYaVOLvAEcaqAQBII0UxGAWjbvUD0MEIjykodP/yMDhBxKiE0ASNTDFSFCaBfmDnEuY3QCM06z8uQNiCoD4u4F0baIjRB89bJT/W1kzrHx5MT9YXxRdYE7W2TCSAYS+a8uZSm6pPQiAGgmUWpxYT2WT6mBI0xQhOMSEkTQCUsbCABhPipRKlaVQawMEL/sh5SHgLFkhizlWSAUuqciQwQBxFKMkAByp+lDIhqmU8GhhUUXCADSRNAPhkQtKkqCd4oIwNB1R76mp2QRj5QBojeKsVf9mm3HzmJUSewziGrDEvwMEAgA6u6UTo6VM/g5R4WpSqTBm1NYlwWGoxTSAbKghJcBlCe51PQpBEoA8TWdYhkQLaFzfLxRksGBK+ukiaA9nCdU5UBot0lZUClyY9FBix03UN16ohDBlImgOKQgW5++qI9l/lkQGVSARlAda7MHSUdQD4ZGGAJbtgNwLv/epPJdd7d7gpesATKANHupkwAlXCCC15BCY04ZYE7AC0mFwlg27Z0212IEDH11ppetfDJgMrZQBwXmn5aR+/ctUYn6gQlius6ORMZiByQbdsFExnARIjqype2DMQCiL+U88lAWJ0jOoZiZNcG+WGnRwbgnqJImwAsdaEp6ouVIP+3KWWWuOkJDeB4HJdz4Z1Jl8b3PjNfjuNyLgyYS4rfgdvCy4cR/1/uU3u00lK4cf5PgAEA27deccxwD8cAAAAASUVORK5CYII=") no-repeat 50% 50%;
  left: 0px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* line 1177, ../sass/components/_misc.scss */
  .ds-media a.left-arrow {
    background-image: url("data:image/png;base64,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");
    -webkit-background-size: 36px 83px;
    -moz-background-size: 36px 83px;
    -o-background-size: 36px 83px;
    background-size: 36px 83px;
  }
}
/* line 1047, ../sass/styles.scss */
.ds-media a.right-arrow {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAABTCAYAAAD3J6XhAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABMVJREFUeNrUWk1IVFEUvjO5CBI3umtw4yxKMhhUmqGRlNRN7XJRtFGhwkU/+34WZYuoxWSLqIUKFbWwXRCokNGECspg/tQiKeS5dDMktEjsHHkz3Lnv3Df3571xPHAwbjz93rnn+845993I7u4uIywG3uj6YfC/4BuuOyxEiwiA4uAp8CafZ9bBc+ArYQPqAj+j8ew8+MewALWDnzN4/jP4p6AB1cLPIfAj/H+8n5hg05NTLJ/Ps7q6Otbd28Mu9PVRv+N1JBL5aQpAzGEE1A0/04UFBDB09Rqbn5vzPHy8uZm9efd2DyCfUwDoVVCAouAn+YVnmackGLTva2t7YAVrgl+aDmrLEFDxdR3HYWOjo/6ZDGBxOwVLAKiaoACV/DEVe3j/wd7WclYP3hk4oE1HTfMQzLg3kmmIUixQQKeSSeUHRyDXHO8LJAIHFIupvyRunWCtEKUTtoC+8QvXb91UfnhqcpLKu4QtoA1+AcVPZ+uGvVGykgEEtOAWzKLd0IgSalOQMlDIoVkxlyRlInQZKADCWrQo5pJQIioiAzzLMEo7xQ4N2NY/OGArA+22DVoH+Fl+oTPdQf0h0np6e9nzly/E5Q9QfBd0iisTorTFL9y+d7eiMhAheuo28PP8wuWLl5TrHG71TPaLuDwNUcqaRIi5MrDKL9zRiJKkY0i5jaBe6eAsJzZmOjKAPZUgA9iNJm0AoQx8FXNJRwYQFCEDcVNAhSgVZQDB6MgAbhvBzhaTpC55K/BuUxlAxcce3E8GVJKatzkbGUBm6spAuQiFLgO6ESJl4NGTx7Yy0AVAGnSTWioD+NYDg4M2MnBItnWqgFAGsjbdANHunqZkIMrUDZNmm5cBnXYXmzhs5soluEpShy4Dbp5qR4i527ZpmuDITOwIxDoHXmMKyJPg+NY6QwGRS/V8nTMBhOFdspGBkUzGIwPgDaaA0JZtZGB8dEwqA6aAQpEBfDdTQGHJwDEbQH/EeQ63DZs5nUlFsEZdHaLsCvhRntpYfJX3/vcvY6WW2azNCYpN6ZBZQhQ/VeUOAxCWkqYypyG+g6VgGzaAal3ZL8ccqRGnLFaAkow7bJdoi9RwrCIY+cMUUJxxh+2SJkxqqFlEb45jl2MKqEWhTZUajlOCqu8UiraJDoXS9BdKUTQImquCkYxRW24ZOvgdo4fmknFZasQpyioPRheQh+bEgYIuzXOmSh0KzakPf1GTRNalOdG87VDROZCzfY2YyJKDTakRA8Cm7LxRBVDSHVP8xhhfmhMjUs60/WhwxxOu5cxo0ZyIzpLfmXU5QAl3PCnSHMcXVcP+mugcl00btLg7lpRslQ7NiQkkq/J9P6pCc8knKB2ab/P1SvdIr6pO8itO83Jblqo0zf0AIc07K01zP0ApnuYIRIfmOEGY0FwGCGnealPN+73HMVmTazxRLjolbakOzYkPM9iWzphOrm3i9Dmi0XhJPl3lIDr/TAE1itOnDs2JtnRdh+YUIM+FJp3Z3Jbmvjqke3JBtKWLEJ2VQAFZ0twqOh5AqsdxPjR39gVQkDSnAOX5Sl3uvFlyUcWY5hQgz4Um2acCjCBxlcKK5lQ/VHU3PfFnVd2FLfy7qm4L88191dynLmmN2T7dOP8vwAB49Kg+RzsPFwAAAABJRU5ErkJggg==") no-repeat 50% 50%;
  right: 0px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* line 1177, ../sass/components/_misc.scss */
  .ds-media a.right-arrow {
    background-image: url("data:image/png;base64,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");
    -webkit-background-size: 36px 83px;
    -moz-background-size: 36px 83px;
    -o-background-size: 36px 83px;
    background-size: 36px 83px;
  }
}
/* line 1053, ../sass/styles.scss */
.ds-media a.navi {
  opacity: 0;
  -webkit-animation: slideout 7s ease 2s none;
  -moz-animation: slideout 7s ease 2s none;
  -o-animation: slideout 7s ease 2s none;
  animation: slideout 7s ease 2s none;
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  -ms-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}
/* line 1067, ../sass/styles.scss */
.ds-media a.navi:hover {
  opacity: 1 !important;
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  -ms-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}

/* sidebar */
/* line 1082, ../sass/styles.scss */
#mini-panel-aotw_about p {
  margin: 0;
}

/* line 1087, ../sass/styles.scss */
#right-inner .panel-display h2, .pane-page-content .pane-featured-jobs-panel-pane-1 h2.pane-title {
  border-bottom: 1px solid #ccc;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  padding: 1.25em;
}

/* line 1097, ../sass/styles.scss */
#right-inner .panel-pane {
  margin-bottom: 20px;
}
/* line 1100, ../sass/styles.scss */
#right-inner .panel-display {
  background-color: #fff;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 0px 1px 1px 0px #B4B4B4;
  -webkit-box-shadow: 0px 1px 1px 0px #B4B4B4;
  box-shadow: 0px 1px 1px 0px #B4B4B4;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  clear: none;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
}
/* line 1108, ../sass/styles.scss */
#right-inner .panel-display .content {
  padding: 19px;
}
/* line 1116, ../sass/styles.scss */
#right-inner .panel-display ul {
  margin: 0;
}
/* line 1118, ../sass/styles.scss */
#right-inner .panel-display ul li {
  width: 100%;
  clear: both;
}
/* line 1135, ../sass/styles.scss */
#right-inner .pane-aggregator-feed-30 h2 {
  width: 100%;
  display: table;
  padding: 0;
}
/* line 200, ../sass/_mixins.scss */
#right-inner .pane-aggregator-feed-30 h2 span.wrapper {
  display: table-row;
  width: 100%;
}
/* line 204, ../sass/_mixins.scss */
#right-inner .pane-aggregator-feed-30 h2 span.wrapper span {
  padding: 1.25em;
  display: table-cell;
}
/* line 209, ../sass/_mixins.scss */
#right-inner .pane-aggregator-feed-30 h2 span.wrapper .link {
  text-align: right;
  padding-left: 0;
}
/* line 213, ../sass/_mixins.scss */
#right-inner .pane-aggregator-feed-30 h2 span.wrapper .link a {
  height: 33px;
  line-height: 33px;
  vertical-align: middle;
  padding: 0 10px;
  margin: 10px 15px 0 0;
  min-width: 140px;
  color: #FFF !important;
  cursor: pointer;
  background-color: #918f8f !important;
  border: 0 none;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -moz-box-shadow: 0px 1px 1px 0px #B4B4B4;
  -webkit-box-shadow: 0px 1px 1px 0px #B4B4B4;
  box-shadow: 0px 1px 1px 0px #B4B4B4;
  font-size: 18px;
  text-align: center;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  min-width: 0;
  margin: 0;
  line-height: inherit;
  padding-left: 2em;
  padding-right: 2em;
  font-size: .9em;
}
/* line 149, ../sass/_mixins.scss */
#right-inner .pane-aggregator-feed-30 h2 span.wrapper .link a:hover {
  color: #FFF !important;
  background-color: #C80000 !important;
}
/* line 1139, ../sass/styles.scss */
#right-inner .pane-aggregator-feed-30 .pane-content .item-list {
  margin: 0;
}
/* line 1142, ../sass/styles.scss */
#right-inner .pane-aggregator-feed-30 .pane-content .item-list li {
  width: auto;
  padding: 0.5em 0;
  padding-left: 40px;
  margin-bottom: 0;
  background-image: url("../images/porti-icon.png");
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 30px 30px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* line 1142, ../sass/styles.scss */
  #right-inner .pane-aggregator-feed-30 .pane-content .item-list li {
    background-image: url("../images/porti-icon.png");
    background-size: 30px 30px;
  }
}
/* line 1166, ../sass/styles.scss */
#right-inner #mini-panel-aw_marketplace.panel-display .content {
  padding: 12px;
}
/* line 1171, ../sass/styles.scss */
#right-inner .ad.panel-display {
  background-color: transparent;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -moz-box-shadow: 0px 1px 1px 0px #B4B4B4;
  -webkit-box-shadow: 0px 1px 1px 0px #B4B4B4;
  box-shadow: 0px 1px 1px 0px #B4B4B4;
}
/* line 1178, ../sass/styles.scss */
#right-inner .contextual-links-region.panel-pane.pane-block.pane-masquerade-masquerade {
  width: 100%;
}
/* line 1180, ../sass/styles.scss */
#right-inner .contextual-links-region.panel-pane.pane-block.pane-masquerade-masquerade > div {
  padding: 0 19px;
}
/* line 1186, ../sass/styles.scss */
#right-inner ul.titles {
  margin: 0;
  padding: 0;
  list-style: none outside none;
}
/* line 1190, ../sass/styles.scss */
#right-inner ul.titles li {
  width: 100%;
  clear: both;
  margin-bottom: 0.5em;
}
/* line 1194, ../sass/styles.scss */
#right-inner ul.titles li a {
  color: #000;
  font-size: 12px;
  line-height: 1.3;
}
/* line 1199, ../sass/styles.scss */
#right-inner ul.titles li .views-field-field-blog-image {
  float: left;
  width: 40px;
}
/* line 1202, ../sass/styles.scss */
#right-inner ul.titles li .views-field-field-blog-image img {
  width: 30px;
  height: auto;
  margin: 0 10px 10px 0;
}
/* line 1208, ../sass/styles.scss */
#right-inner ul.titles li .views-field.views-field-title {
  padding-left: 40px;
}
/* line 1214, ../sass/styles.scss */
#right-inner .view-display-id-panel_pane_1 ul.titles li .views-field.views-field-title {
  padding-left: 0;
}

/* line 1220, ../sass/styles.scss */
.pane-wmb-newsletter-subscribe .form-item-mail {
  display: inline-block;
  width: 55%;
}
/* line 1225, ../sass/styles.scss */
.pane-wmb-newsletter-subscribe #edit-submit {
  height: 33px;
  line-height: 33px;
  vertical-align: middle;
  padding: 0 10px;
  margin: 10px 15px 0 0;
  min-width: 140px;
  color: #FFF !important;
  cursor: pointer;
  background-color: #918f8f !important;
  border: 0 none;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -moz-box-shadow: 0px 1px 1px 0px #B4B4B4;
  -webkit-box-shadow: 0px 1px 1px 0px #B4B4B4;
  box-shadow: 0px 1px 1px 0px #B4B4B4;
  font-size: 18px;
  text-align: center;
  display: inline;
  line-height: inherit;
  margin: 0;
  margin-right: 0;
  padding: 0.35em 2em;
  min-width: 0;
  width: 43%;
  font-size: .9em;
  font-weight: bold;
}
/* line 149, ../sass/_mixins.scss */
.pane-wmb-newsletter-subscribe #edit-submit:hover {
  color: #FFF !important;
  background-color: #C80000 !important;
}

/* line 1240, ../sass/styles.scss */
.pane-aggregator-feed-30 ul {
  padding: 0.2em 0 0 0;
}
/* line 1243, ../sass/styles.scss */
.pane-aggregator-feed-30 li {
  display: inline-block;
  margin-bottom: 0.5em;
}

/* line 1253, ../sass/styles.scss */
.pane-page-title #page-title {
  width: 100%;
  display: table;
  padding: 0;
  margin-top: 0;
}
/* line 1259, ../sass/styles.scss */
.pane-page-title #page-title .feed-icon img {
  width: 22px;
  height: 22px;
}
/* line 1266, ../sass/styles.scss */
.pane-page-title span.wrapper {
  display: table-row;
  width: 100%;
}
/* line 1270, ../sass/styles.scss */
.pane-page-title span.wrapper span {
  padding: 0.25em;
  display: table-cell;
}
/* line 1275, ../sass/styles.scss */
.pane-page-title span.wrapper .title {
  padding-left: 0;
  padding-top: 0;
  margin-top: 0;
}
/* line 1281, ../sass/styles.scss */
.pane-page-title span.wrapper .link {
  text-align: right;
  padding-right: 0;
  padding-top: 0;
  vertical-align: top;
}
/* line 1288, ../sass/styles.scss */
.pane-page-title span.wrapper .link a {
  height: 33px;
  line-height: 33px;
  vertical-align: middle;
  padding: 0 10px;
  margin: 10px 15px 0 0;
  min-width: 140px;
  color: #FFF !important;
  cursor: pointer;
  background-color: #918f8f !important;
  border: 0 none;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -moz-box-shadow: 0px 1px 1px 0px #B4B4B4;
  -webkit-box-shadow: 0px 1px 1px 0px #B4B4B4;
  box-shadow: 0px 1px 1px 0px #B4B4B4;
  font-size: 18px;
  text-align: center;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  line-height: inherit;
  padding-left: 2em;
  padding-right: 2em;
  font-size: .9em;
}
/* line 149, ../sass/_mixins.scss */
.pane-page-title span.wrapper .link a:hover {
  color: #FFF !important;
  background-color: #C80000 !important;
}

/* line 1303, ../sass/styles.scss */
.view-node-titles ul {
  padding-top: 0.2em;
}
/* line 1306, ../sass/styles.scss */
.view-node-titles li {
  display: inline-block;
  margin-bottom: 0.5em;
}

/* line 1315, ../sass/styles.scss */
#marketplace-left {
  float: left;
  margin-bottom: 8px;
}

/* line 1320, ../sass/styles.scss */
#marketplace-right {
  float: right;
  margin-bottom: 8px;
}

/* line 1325, ../sass/styles.scss */
.marketplace-ad {
  padding: 6px;
}

/* line 1329, ../sass/styles.scss */
.dfp-tag-wrapper {
  margin: 0 auto;
}

/* line 1333, ../sass/styles.scss */
.flat-list {
  list-style: none outside none;
  margin: 0;
  padding: 0;
}

/* line 1340, ../sass/styles.scss */
.view-display-id-latest_posts li {
  margin: 1em 0 0;
  padding: 0;
}
/* line 1343, ../sass/styles.scss */
.view-display-id-latest_posts li:first-child {
  margin: 0;
}
/* line 1347, ../sass/styles.scss */
.view-display-id-latest_posts .field-name-field-picture {
  float: left;
  height: 30px;
  margin-right: 8px;
}
/* line 1352, ../sass/styles.scss */
.view-display-id-latest_posts .blog-post-title {
  font-size: 0.75em;
  line-height: 1.2;
  margin: 0;
  font-weight: normal;
}

/* line 1360, ../sass/styles.scss */
.blog-post-title a {
  color: #000;
}
/* line 1362, ../sass/styles.scss */
.blog-post-title a:hover {
  text-decoration: underline;
}

/* footer */
/* line 1368, ../sass/styles.scss */
#footer {
  margin-top: 30px;
}

/* line 1372, ../sass/styles.scss */
#footer .ad {
  background-color: #BCBABA;
  padding: 20px 0;
}

/* pager */
/* line 1378, ../sass/styles.scss */
.item-list {
  display: inline-block;
  width: 100%;
}

/* line 1383, ../sass/styles.scss */
.pager-current {
  font-weight: normal;
}

/* line 1388, ../sass/styles.scss */
.item-list .pager {
  clear: both;
  text-align: center;
}
/* line 1391, ../sass/styles.scss */
.item-list .pager li {
  background-image: none;
  display: inline;
  list-style-type: none;
  padding: 0.5em;
  font-size: 16px;
}
/* line 1397, ../sass/styles.scss */
.item-list .pager li a {
  color: #000;
}

/* line 1403, ../sass/styles.scss */
.form-item {
  /* Wrapper for a form element (or group of form elements) and its label */
  margin: 1em 0;
  line-height: 1.5em;
}
/* line 1408, ../sass/styles.scss */
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  /* Highlight the form elements that caused a form submission error */
  border: 1px solid #c00;
}
/* line 1415, ../sass/styles.scss */
.form-item label {
  /* The label for a form element */
  display: block;
  font-weight: bold;
}
/* line 1421, ../sass/styles.scss */
.form-item label.option {
  /* The label for a radio button or checkbox */
  display: inline;
  font-weight: normal;
}
/* line 1427, ../sass/styles.scss */
.form-item .form-required {
  /* The part of the label that indicates a required field */
  color: #c00;
}
/* line 1432, ../sass/styles.scss */
.form-item .description {
  /* The descriptive help text (separate from the label) */
  font-size: 0.85em;
}
/* line 1437, ../sass/styles.scss */
.form-item .form-text,
.form-item .form-textarea {
  color: #848484;
  width: 98%;
  padding: 1%;
  background: none repeat scroll 0 0 #FFFFFF;
  border: medium none;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-box-shadow: inset 0px 3px 3px 0px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: inset 0px 3px 3px 0px rgba(0, 0, 0, 0.25);
  box-shadow: inset 0px 3px 3px 0px rgba(0, 0, 0, 0.25);
}
/* line 1450, ../sass/styles.scss */
.form-checkboxes .form-item, .form-radios .form-item {
  /* Pack groups of checkboxes and radio buttons closer together */
  margin: 0;
  /* Drupal core uses "0.4em 0" */
}

/* line 1457, ../sass/styles.scss */
.form-submit {
  /* The submit button */
}

/* line 1462, ../sass/styles.scss */
.container-inline div,
.container-inline label {
  /* Inline labels and form divs */
  display: inline;
}

/* line 1469, ../sass/styles.scss */
.tips {
  /* Tips for Drupal's input formats */
}

/* line 1474, ../sass/styles.scss */
a.button {
  /* Buttons used by contrib modules like Media */
}

/*
 * Password confirmation
 */
/* line 1484, ../sass/styles.scss */
.password-parent,
.confirm-parent {
  margin: 0;
}

/*
 * Search (search-block-form.tpl.php)
 */
/* line 1493, ../sass/styles.scss */
#block-search-form {
  /* Wrapper for the search form */
}

/* line 1497, ../sass/styles.scss */
#search-block-form {
  margin-top: -1px;
}

/*
 * Drupal's default login form block
 */
/* line 1505, ../sass/styles.scss */
#user-login-form {
  text-align: left;
  /* LTR */
  padding: 15px;
  font-size: 10px;
  line-height: 12px;
  /*
   * OpenID
   *
   * The default styling for the OpenID login link seems to assume Garland's
   * styling of list items.
   */
}
/* line 1511, ../sass/styles.scss */
#user-login-form .form-item {
  float: left;
  margin: 0 3px 0 0;
}
/* line 1515, ../sass/styles.scss */
#user-login-form .form-item label,
#user-login-form .form-item .form-required {
  font-weight: normal;
  color: #848484;
  font-size: 10px;
}
/* line 1521, ../sass/styles.scss */
#user-login-form .form-item input {
  width: 60px;
}
/* line 1526, ../sass/styles.scss */
#user-login-form .form-actions {
  float: left;
  margin: 0 3px 0 0;
}
/* line 1531, ../sass/styles.scss */
#user-login-form .form-submit {
  padding: 1px 5px;
  margin: 0;
}
/* line 1536, ../sass/styles.scss */
#user-login-form .item-list {
  float: left;
  list-style: none;
  font-size: 9px;
  line-height: 9px;
}
/* line 851, ../sass/components/_misc.scss */
#user-login-form .item-list:link {
  color: #000;
}
/* line 854, ../sass/components/_misc.scss */
#user-login-form .item-list:visited {
  color: #000;
}
/* line 857, ../sass/components/_misc.scss */
#user-login-form .item-list:hover {
  color: #fff;
}
/* line 860, ../sass/components/_misc.scss */
#user-login-form .item-list:focus {
  color: #fff;
}
/* line 863, ../sass/components/_misc.scss */
#user-login-form .item-list:active, #user-login-form .item-list.active {
  color: #000;
}
/* line 869, ../sass/components/_misc.scss */
#user-login-form .item-list a:link {
  color: #000;
}
/* line 872, ../sass/components/_misc.scss */
#user-login-form .item-list a:visited {
  color: #000;
}
/* line 875, ../sass/components/_misc.scss */
#user-login-form .item-list a:hover {
  color: #fff;
}
/* line 878, ../sass/components/_misc.scss */
#user-login-form .item-list a:focus {
  color: #fff;
}
/* line 881, ../sass/components/_misc.scss */
#user-login-form .item-list a:active, #user-login-form .item-list a.active {
  color: #000;
}
/* line 1543, ../sass/styles.scss */
#user-login-form .item-list ul {
  margin: 6px 0 0 0;
  padding: 0;
}
/* line 1548, ../sass/styles.scss */
#user-login-form .item-list li {
  list-style: none;
  margin: 0 10px 0 0;
  float: left;
}
/* line 1561, ../sass/styles.scss */
#user-login-form ul {
  /* OpenID creates a new ul above the login form's links. */
  margin-bottom: 0;
  /* Position OpenID's ul next to the rest of the links. */
}
/* line 1566, ../sass/styles.scss */
html.js #user-login-form li.openid-link,
#user-login-form li.openid-link {
  /* The "Log in using OpenID" link. */
  margin-top: 1.5em;
  margin-left: -20px;
  /* LTR */
  /* Un-do some of the padding on the ul list. */
}
/* line 1574, ../sass/styles.scss */
#user-login-form li.user-link {
  /* The "Cancel OpenID login" link. */
  margin-top: 1.5em;
}

/* line 1580, ../sass/styles.scss */
#user-login ul {
  margin: 1.5em 0;
}

/*
 * Drupal admin tables
 *
 * We overrode these styles in normalize.css, but restore them for the admin
 * section of the site.
 */
/* line 1592, ../sass/styles.scss */
form th {
  text-align: left;
  /* LTR */
  padding-right: 1em;
  /* LTR */
  border-bottom: 3px solid #ccc;
}
/* line 1598, ../sass/styles.scss */
form tbody {
  border-top: 1px solid #ccc;
}
/* line 1602, ../sass/styles.scss */
form tr.even {
  background-color: #fff;
}
/* line 1606, ../sass/styles.scss */
form table .item-list ul {
  margin: 0;
}

/*
 * Drupal core wrongly puts this in system.menus.css. Since we override that, add it back.
 */
/* line 1625, ../sass/styles.scss */
td.menu-disabled {
  background: #ccc;
}

/* line 1629, ../sass/styles.scss */
.link-field-url .form-item {
  margin: 0;
}

/* line 1633, ../sass/styles.scss */
.contact-form .form-item .form-textarea,
.contact-form .form-item .form-text {
  max-width: 590px;
}

/* line 1639, ../sass/styles.scss */
.search-block .views-exposed-form .views-exposed-widget {
  padding: 0;
}

/* line 1644, ../sass/styles.scss */
.search-block {
  width: 152px;
  height: 30px;
  padding: 10px 10px 0 10px;
  background-color: #dedede;
  float: right;
  -moz-border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px;
  border-radius: 5px 5px 0 0;
}
/* line 1651, ../sass/styles.scss */
.search-block .views-submit-button {
  display: none;
}
/* line 1654, ../sass/styles.scss */
.search-block .form-item {
  margin: 0;
}
/* line 1657, ../sass/styles.scss */
.search-block .form-item input.form-text {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 123px;
  height: 26px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAK9JREFUeNpi/P//PwM2wMjI6ACkHJCELgDVbkBRBNKMjKEa7oOksOD3QBwAV4umMQCHBnSxBBTNQCCApnA+SAxJrgHNAAVkzQlIEvvRvQNV04+kph+XRAAOzQrIFjAhhZ0BEvsDthgAGvAAmY+sGVlCAEf0KeDSfBCJnc+AHSCLX6BaaBvgiNP/eOOZBI0oKYwRqnE/UiBdAGJHqDj+tI1m43mYP4nBDORqBGGAAAMAzusI8NAvclwAAAAASUVORK5CYII=") no-repeat 5px 50% #f2f2f2;
  border: 0px;
  padding: 2px 2px 2px 27px;
  -moz-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.3) inset;
  -webkit-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.3) inset;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.3) inset;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* line 1177, ../sass/components/_misc.scss */
  .search-block .form-item input.form-text {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAkJJREFUeNq8ljFLHEEUx/f2TowHl0txpJUUqbRIMKkSCBEsPKLFxSss8h2s0umpnanyOUJyRUIULCyijaigEAnkQBBLr1CCyql3l9/IFOvwZndnDu7Bj2Fn581/Z3bmvZcJHC03OFigqcAkvIRhyEIbjmEH1qB+22r9s82TcRDM03yEOSimcDmHz7DCB1x5CSP6jOYLPA3crQFVxA+chBEdp/kB+cDfLmAa8Y1Uwog+p9mKEVXb+RuaUILRmN+gxF+ZKxf/KTSgK7ALZRgwfAbgnX4v+f2FoSThJYtzDZJ2KqPHSf6LsVcGziRRx6sniat5C6HF573wr/Zg2fFQLWu/qKl5KzbhstC3wMHouqjq8dLWTmYsW3RE8yTSdQaPmejGI9KpA3hq7OCRbcXDxvOhj6he9Y2+cvfmD4UvVH1mfzPozUz/bCh8YYemY3SXehQ2/du2rT42nkfMYOH4j0fN+W3C5hV4BBOeq50QruaOTfindCeTIpYUwSx3f80mXNcJIGpjMO+42gXtZyaWelYa3Wm3W2Eup4L5G+PVW/q78IsxsStlTM0SPFRhsB7nXIWOR3YqJ2SnvDUf83Ka5isknWQV0Q4j+XhEH0TJLnU+3heFHURdTIlORSuQ0EG06ymqaq7XUdFAl6VpRFW8nYU/oAq/BymrzE/wAdETscpMITqD83c99qGuq1XqfKETSqjDrIp4u7AK3+Lq6jtRuLacwmv9UUmBIvSJpZu9iHobkxdhu6+iFvH+iBrim/0S/S/AACz15lAFgSN5AAAAAElFTkSuQmCC");
    -webkit-background-size: 15px 15px;
    -moz-background-size: 15px 15px;
    -o-background-size: 15px 15px;
    background-size: 15px 15px;
  }
}

/* comment */
/* line 1681, ../sass/styles.scss */
.comments .comment-form .form-item.form-type-item {
  display: none;
}
/* line 1683, ../sass/styles.scss */
.comments .comment-form .form-item.form-type-item#edit-subscriptions-notify {
  display: block;
}

/* line 1690, ../sass/styles.scss */
.comment {
  margin-bottom: 25px;
  background-color: #E8E8E8;
  padding-bottom: 15px;
}
/* line 1697, ../sass/styles.scss */
.comment.comment-by-viewer {
  background-color: #fff;
}
/* line 1703, ../sass/styles.scss */
.comment.comment-new {
  background-color: #f7f0db;
}
/* line 1709, ../sass/styles.scss */
.comment .group-avatar {
  float: left;
  width: 85px;
  margin-right: 0;
}
/* line 1714, ../sass/styles.scss */
.comment .group-avatar .user-picture {
  overflow: hidden;
  margin: 8px;
  display: inline-block;
  clear: both;
  padding: 0;
}
/* line 1722, ../sass/styles.scss */
.comment .group-comment-content {
  margin: 0;
  margin-left: 85px;
  position: relative;
  padding-right: 74px;
  min-height: 79px;
  list-style: none;
  /* (1) margin-left was set before: old value: 25px - new value 0 */
}
/* line 1732, ../sass/styles.scss */
.comment .group-comment-content .region-content {
  overflow: hidden;
  padding: 0;
}
/* line 1738, ../sass/styles.scss */
.comment .group-comment-content > .region-content {
  overflow: hidden;
  margin: 0 20px 0 0;
  padding-top: 4px;
}
/* line 1744, ../sass/styles.scss */
.comment .group-comment-content ul.links {
  font-size: 14px;
  margin-left: 14px;
}
/* line 1750, ../sass/styles.scss */
.comment.comment-preview {
  background-color: #ffffea;
}
/* line 1767, ../sass/styles.scss */
.comment .username {
  font-size: 0.92308em;
  line-height: 1.58333em;
  font-weight: bold;
  color: #c80000;
}
/* line 1772, ../sass/styles.scss */
.comment .username:link {
  color: #c80000;
}
/* line 1775, ../sass/styles.scss */
.comment .username:visited {
  color: #515151;
}
/* line 1778, ../sass/styles.scss */
.comment .username:hover {
  color: #515151;
}
/* line 1781, ../sass/styles.scss */
.comment .username:focus {
  color: #515151;
}
/* line 1784, ../sass/styles.scss */
.comment .username:active {
  color: #515151;
}
/* line 1787, ../sass/styles.scss */
.comment .username.active {
  color: #515151;
}
/* line 1791, ../sass/styles.scss */
.comment .username a:link {
  color: #515151;
}
/* line 1794, ../sass/styles.scss */
.comment .username a:visited {
  color: #515151;
}
/* line 1797, ../sass/styles.scss */
.comment .username a:hover {
  color: #515151;
}
/* line 1800, ../sass/styles.scss */
.comment .username a:focus {
  color: #515151;
}
/* line 1803, ../sass/styles.scss */
.comment .username a:active {
  color: #515151;
}
/* line 1806, ../sass/styles.scss */
.comment .username a.active {
  color: #515151;
}
/* line 1813, ../sass/styles.scss */
.comment .submitted-on:before {
  content: " | ";
}
/* line 1817, ../sass/styles.scss */
.comment .new {
  color: #c00;
}
/* line 1824, ../sass/styles.scss */
.comment .permalink {
  text-transform: uppercase;
  font-size: 75%;
}

/* line 1834, ../sass/styles.scss */
.pencil-icon:before {
  content: " | ";
}

/* line 1839, ../sass/styles.scss */
.field-name-comment-body {
  color: #000;
  font-size: 14px;
  line-height: 150%;
  margin-top: 8px;
}
/* line 1844, ../sass/styles.scss */
.field-name-comment-body p {
  margin: 0 0 8px 0;
  font-size: 14px;
  line-height: 150%;
}

/* line 1853, ../sass/styles.scss */
.user-signature a {
  font-weight: bold;
  color: #918f8f;
}
/* line 1857, ../sass/styles.scss */
.user-signature a:hover {
  text-decoration: underline;
}
/* line 1861, ../sass/styles.scss */
.user-signature p {
  margin: 0;
}

/* line 1870, ../sass/styles.scss */
.comment-new .group-comment-content:before {
  border-right-color: #fffdeb;
}

/* line 1875, ../sass/styles.scss */
.indented {
  margin-left: 30px;
}
/* line 1879, ../sass/styles.scss */
.indented form {
  padding-bottom: 30px;
}

/* line 1885, ../sass/styles.scss */
.filter-wrapper {
  padding: 5px 0;
}
/* line 1888, ../sass/styles.scss */
.filter-wrapper > div {
  padding: 1.5em 0;
}

/* line 1894, ../sass/styles.scss */
.comment-unpublished p.unpublished {
  height: 0;
  overflow: visible;
  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;
  word-wrap: break-word;
}

/* carousel */
/* line 1909, ../sass/styles.scss */
.carousel {
  padding: 20px;
}

/* line 1913, ../sass/styles.scss */
.liquid {
  padding: 15px 0;
}
/* line 1915, ../sass/styles.scss */
.liquid .previous {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAuCAMAAAD5nwKwAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADNQTFRFAAAAIx8gIx8gIx8gIx8gIx8gIx8gIx8gIx8gIx8gIx8gIx8gIx8gIx8gIx8gIx8gIx8g8D4fWgAAABF0Uk5TAAgQGCAoMDhASFBYYGhweICBZ4nKAAAApUlEQVQoz32TwQ7EIAhE0drquq3O/39tDxhwgazHF8IwMBLpSxPAswHqAIANHLDktuRiMLXtYHIJaQxUKk8mRciXQRdQVtss5GHSBFQGI/0YAnBKyYfBrcoMcFhDqnwuZWlLy1C1hgZZ5WJWuSnTUs6WdPpX4/t4LT9PMHPgy3sP9uN3GOzZ3yK4V3BTf3eZwNvbouoz5nMYZDXIs8988C8o1VbTC6yhE+Txke8eAAAAAElFTkSuQmCC");
  float: left;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* line 1177, ../sass/components/_misc.scss */
  .liquid .previous {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAABcCAYAAAALb2dzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABDBJREFUeNrMmntojnEUx5/3NdfZXMJcSqQmi2hk0VL8MVlJUdaUW5FyN8wll2VyGXalhEIKU5JWZKVkb0SsLXJZaVq5y2XMZWOv73k7y1p7L+e856n31Lex93ee97Pn+T3nnN/5/Tx+v9+JBYvz+Xxuf0d3aCW0CBpL3wk9hS5Cxenp6Y00yFNVVeUmxFDoGjQ+yOf1UCZgnnldhOgKXQ0BQTYSuoGnkugmyDpoUgTjhkM5boEkQbsE47PcAtkHJQjGJ7sBQo9jqdDHbw3igUr5p8SqrUEWQFMUfmcsQeKhAoXfC+iUJcg2DmBS24CA1mwFQoFpk8KvEhAV9A8rkMOcUyT2B1rf9h8LkBnQXIXfMU5+JiCUSUsUfh+gvPa/iBZkBad2qe2EvliB9IfyFX410MmOv4wGhCD6KbNyqxXIOH4sUiuHbnf2gRaEJmgXoc9PKDfYhxqQedB0hd9BqMEKpAcHL6k1hMtDUhAK4yMUIJv50ZiADOPEJjWanJfCDZKAHIJ6CSHoNV0bycBIQaZC2Yq7QYGr1gqExpQpICiE74h0cCQgVAinKkAoqX20AunDSwOpPeE071iBUJYcpCn/uPAxARkd6YzvYLTerZQ6hQIp4oW0xJqhjZrkFQwkE5qluF4hLw9MQLrx3ZDaG+XEDgpC8yJZca2t0DcrkCR+U6R2DzoXTfHr7aSdkKi4Dt1FvxXIREU7gewsdD/axZG3XTuhTNFO+M5zw7ECyVa2E/ZCb61A4rnW0LQTihwjI5DV2nYCR1IzkIWadgJUYdhbCYCkRNNOsASJCfNyESNtRRS7AaIJzRnQbGuQo9BrhW8RZ2ozkCZeiUltFL/CppP1AnRX4U/LhcGWIJQ51ygyaG/ogPXr+xA6rbjGYmiydRzZDjUqrqPZCAgJ8s7RNejSlKkiZGSlv65OcS2aKwmWIM3K13IIP1rTXENbpNcV18vh+GKa9OiutAivR5H2iDXIc54vUpvDuci0DKA36L0yD8VZgnxVTkAqtlZZF0YUbasVMHnQAEuQVs5DUuvLyw3TUvEOZ2ipLXdCH1JQ1axUs/xQvAyl1iCvoP2KuzINmm9dxdOGwEsFDK0ke1qC/HJ0+7t0RiTXel1zGbql8NvCQKYLLGrM/BX60KMpsAZ5BJ1Q+GXx5DVdclIF/1nhV9LZ90YD8smRnSNqswkc6EwX4cehxwq/fE4BZiDaFsVAx/hsANlN6IrCj8qEMdb9EdoI+B1Ne8MKpF5Zq2b4fL5Ae8Py0GQ8r4ekjUHqTqZYtq6awuWTEO2NZdY9tPPK9sYSaxC/o9sgSHWjq/hA0d7wuNXepCWIZBOpzi0Qam/sEYwvd7PhW8KPKZzR2ZJCN0FaeB1cGyYQzqST4G63wKl/m8btihrn/+44ncjbTSUBnQAPzNZYOaAfU5sCMWH/BBgAJ7DIHewMpx4AAAAASUVORK5CYII=");
    -webkit-background-size: 17px 46px;
    -moz-background-size: 17px 46px;
    -o-background-size: 17px 46px;
    background-size: 17px 46px;
  }
}
/* line 1921, ../sass/styles.scss */
.liquid .next {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAuCAMAAAD5nwKwAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADNQTFRFAAAAIx8gIx8gIx8gIx8gIx8gIx8gIx8gIx8gIx8gIx8gIx8gIx8gIx8gIx8gIx8gIx8g8D4fWgAAABF0Uk5TAAgQGCAoMDhASFBYYGhweICBZ4nKAAAAnElEQVQoz33T2w6EIAxFUUAURgX6/187D23Smh31ccXU04tpiMjKKTwiInJCZIPcQZbS4XKozFB8KHWXqrKK06l0uRQrXp26ynDJU6k57VY8JLiVfi6bijBBaC9bgt2pWXthBvO1PSYIAy6WICHB1zuow28hDzKzL/TO+WCGmDN3gX1xp9h7xZdxP7wx3iFv9eWeHzfP/yK33h7wB8YFE+ShWRjgAAAAAElFTkSuQmCC");
  float: right;
  margin: 0;
  padding: 0;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* line 1177, ../sass/components/_misc.scss */
  .liquid .next {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAABcCAYAAAALb2dzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABCNJREFUeNrcmntozlEYx887M9fNyF0tUmMia2TRm+IPoqQoM7VQ5A82tplbhpDL3DcklFsRJUmRlZK9Ec3aormUaOUut5nLNl7Ps/d5a71t+/3O835/Wr71bZfe5+yz8zu/85zznOMLBoOmPSg2EAiEv08gryDPJaeQG8kPyafJh8m/vADw+/0hEPl5OPkqeUhzSHKqeD55OvmVVz0SIz1xPQIiUqPJl8kdvQTJIye5+OxY8nIvQTIsPr+B3M8rkGSLz8eTt3kFYvv+LpTHBAepsIzxkYvlKxTkpCJuPHkeGuQ4+ZkitojcDQlST85VxA4kr0WCsK6QSxXxKx0mQmsQI3mm0TK+E3k3GuQR+ZCijVnkyUgQ1ibye0U7B5olUAjIZ3Khop2R5CVIENYxcqWirS3kXkiQP8os21NgYCCsW+Tzivb48YxCgrBWkX9YttdBBi4UpIa8U9HmJPJsJEg4n9QoYHiS64wE4UdToAAZLNM/DIR1QQavrTghDkKCsHLktbZRV/IuNEiVTHS2yiRPQIKw1ksKsFWJm79jA/JBkqKt0mTBDQMxskyoVsDwFqQHEqRRuazs65TVYxSNlso+2Fb85g1DgrDyZdFtI97A70OD8PZjryJumpQ3YCDhAfhaEce9EocEqSWvUcQly3iBgbDOkO8q4gojyxvRggRb+u9cKCGyvBEtCOse+ZQijmfbMUgQI2Plm6K8URIIBHxIkDfkrcryRmYTVVlZGWpDHyd5aKhlHJdMk1E9YqIsbyxDgkRT3shCg2jLGyO8AIFuOaPRfkWJohoNMoM8RZMqkCBxba03HF7fg0iQXMUcwirw+/11KJD+st2w1R3yOeRg3UHursjc2dQbQRTIOBM64bLVCfJ91OsbPiCw1VfyOuQ8kkVOV8Rxre0tCiRexoatnrbUi9GAcNcOUL7m9SgQni/yFHHXTOhYF5Zr9rS0N3FQQ1vrFQ0I55KZijgeF09QILHKfPLOOFSlbUGW8iJGObC/oEB6G13FqEJmUdjCiLcLiQqQbOOiIukWhC8pLFZAcGa9jVwqFivG03djUbV20/gc8kRFb2wnv0SBdDEW1eNmemEsTz+dQPjMJkkBwgcCP1EgDLBaAXGTfBG5rymSR2Oj38rCTasgPDgzFO0dJT9AgfDvNOdyn5Qr+VZBeOJKVbTF948+okASje7sli/OHUFuwjmp9flHpYhWQVIkzdvqEvkGsiyhKSfw/cV8ZH1EW07gtetzFEg05QTY5TgGWaQsJ3AeqkOCLFCWE84CaytNIGmKckKOsb9a6Ahie9WPF8LlBqwY2RS7VW1kOQEJYnNzZnNkOQEJwoeEbu6IlCuzsmsQrt5MdZiYqmS/2+AlCOuxpP6NJnRDz0gSq5TyQ7rx8AY4y9deLuj/14cCKv0VYAAtrMJlwtjaTwAAAABJRU5ErkJggg==");
    -webkit-background-size: 17px 46px;
    -moz-background-size: 17px 46px;
    -o-background-size: 17px 46px;
    background-size: 17px 46px;
  }
}
/* line 1929, ../sass/styles.scss */
.liquid ul li {
  width: 152px;
  padding: 0 2px;
  margin: 0;
  text-align: center;
  height: 110px;
  line-height: 110px;
}
/* line 1936, ../sass/styles.scss */
.liquid ul li .link-block {
  margin: 0 auto;
  position: relative;
  width: 152px;
  height: 110px;
}
/* line 1941, ../sass/styles.scss */
.liquid ul li .link-block a {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 152px;
  height: 110px;
  text-indent: -9999px;
}
/* line 1949, ../sass/styles.scss */
.liquid ul li .link-block img {
  margin: 0 auto;
  vertical-align: middle;
  max-height: 110px;
}

/* line 1960, ../sass/styles.scss */
.view-mode-full.node-media .ds-assets {
  background-color: #fff;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 0px 1px 1px 0px #B4B4B4;
  -webkit-box-shadow: 0px 1px 1px 0px #B4B4B4;
  box-shadow: 0px 1px 1px 0px #B4B4B4;
  margin: 10px 0 15px;
  overflow: hidden;
  float: left;
  clear: left;
  width: 100%;
  max-width: 870px;
}
/* line 1969, ../sass/styles.scss */
.view-mode-full.node-media .ds-assets li.tags {
  font-size: 0.84615em;
  line-height: 1.72727em;
  padding: 0 0 0 20px;
  display: inline-block;
  margin-right: 10px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAMCAYAAACEJVa/AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFlJREFUeNpivHfvHgMQnAdiAwZU8AGIDYH4AQMeoKioyMAEpAOwGAACAkCcwEAEYMFhAAzUA7E9PgPu37+fyEKERQ4E5BWYGKgARg0Z7IY8oEA/KGt8AAgwAKxyDhVG7eV1AAAAAElFTkSuQmCC") no-repeat left 50%;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* line 1177, ../sass/components/_misc.scss */
  .view-mode-full.node-media .ds-assets li.tags {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJ1JREFUeNpi/P//P8NAApb79++D6BAgngrEYgTU/wXixUCcBsS/qeEAJiDmB+IFRFgOAsxAnADEKdQKAZAD/ICYm0R9UdR0gDcZ+myA2JkqaQCIrcjUux2I1wPxczL1/wTiZYz37t37A43bgQCvmAbQchAQY2IYYDDqgFEHjDpg1AGjDhh1wKBwwEA2i/+DHDANiP8NgOUgO6cBBBgAYKIavmVzFUkAAAAASUVORK5CYII=");
    -webkit-background-size: 16px 12px;
    -moz-background-size: 16px 12px;
    -o-background-size: 16px 12px;
    background-size: 16px 12px;
  }
}
/* line 1977, ../sass/styles.scss */
.view-mode-full.node-media .ds-assets li.tags a {
  color: #000;
  text-decoration: none;
}
/* line 1980, ../sass/styles.scss */
.view-mode-full.node-media .ds-assets li.tags a:hover {
  text-decoration: underline;
}
/* line 1985, ../sass/styles.scss */
.view-mode-full.node-media .ds-assets li.node-vid-20 a {
  color: #c80000;
  font-weight: bold;
}
/* line 1990, ../sass/styles.scss */
.view-mode-full.node-media .ds-assets h1 {
  display: none;
}
/* line 1993, ../sass/styles.scss */
.view-mode-full.node-media .ds-assets ul.view-node-term-list {
  padding: 20px;
  border-bottom: 1px solid #ccc;
  display: block;
  margin: 0;
}
/* line 2000, ../sass/styles.scss */
.view-mode-full.node-media .ds-description {
  font-size: 14px;
  line-height: 140%;
  font-family: Arial, sans-serif;
  color: #000;
  float: left;
  max-width: 870px;
  clear: both;
  padding: 0 0 0 10px;
}
/* line 2009, ../sass/styles.scss */
.view-mode-full.node-media .ds-description h1 {
  font-weight: bold;
  font-size: 20px;
  margin: 0;
}
/* line 2016, ../sass/styles.scss */
.view-mode-full.node-media .ds-links {
  width: 100%;
  float: left;
  clear: both;
  max-width: 870px;
}
/* line 2021, ../sass/styles.scss */
.view-mode-full.node-media .ds-links .field {
  float: left;
  font-size: 0.92308em;
  line-height: 1.58333em;
  padding: 20px 20px 16px;
  border-left: 1px solid #ccc;
  height: 24px;
}
/* line 2028, ../sass/styles.scss */
.view-mode-full.node-media .ds-links .field.field-name-rate-widget-full {
  border: 0;
}

@media only screen and (max-width: 480px) {
  /* line 2036, ../sass/styles.scss */
  .view-mode-full.node-media .ds-links .field {
    display: none;
  }

  /* line 2039, ../sass/styles.scss */
  .view-mode-full.node-media .ds-links .field.field-name-rate-widget-full {
    display: block;
  }
}
/* jobs */
/* line 2047, ../sass/styles.scss */
#aggregator .feed-item {
  background-color: #fff;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 0px 1px 1px 0px #B4B4B4;
  -webkit-box-shadow: 0px 1px 1px 0px #B4B4B4;
  box-shadow: 0px 1px 1px 0px #B4B4B4;
  padding: 10px;
  padding-left: 70px;
  background-image: url("../images/porti-icon.png");
  background-position: 20px 48%;
  background-repeat: no-repeat;
  background-size: 30px 30px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* line 2047, ../sass/styles.scss */
  #aggregator .feed-item {
    background-image: url("../images/porti-icon.png");
    background-size: 30px 30px;
  }
}
/* line 2060, ../sass/styles.scss */
#aggregator .feed-item .feed-item-title {
  margin: 0;
  padding-bottom: 0.3em;
  font-size: 1em;
}
/* line 2065, ../sass/styles.scss */
#aggregator .feed-item .feed-item-meta {
  font-size: 92%;
}

/* blog */
/* hide elements */
/*  clear for blog post content   */
/* line 2080, ../sass/styles.scss */
.clear {
  clear: both;
  display: block;
}

/* line 2085, ../sass/styles.scss */
.view-mode-teaser.node-blog {
  background: url("data:image/jpg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAABkAAD/7gAOQWRvYmUAZMAAAAAB/9sAhAABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgIDAwMDAwMDAwMDAQEBAQEBAQIBAQICAgECAgMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwP/wAARCAAYABkDAREAAhEBAxEB/8QAYAABAQEBAAAAAAAAAAAAAAAABwYICgEBAAAAAAAAAAAAAAAAAAAAABAAAgMAAgAGAQUBAAAAAAAAAQIDBAURBgAhEiITB5NhU9MUFlYRAQAAAAAAAAAAAAAAAAAAAAD/2gAMAwEAAhEDEQA/AOkb7c+19SPUt9W6zbkoQUHavqaVZzHcnuL5TVKs6kPVhqt7HZfTI0gIBCj3APdI3bVDt+NasWbE0Ny9FnaYlnkc2M/TYUbqyln5kPwTFhyfJ1B5BAPgFHpP2ZsdR7RZ6n2XQn08WHXs5Bt3pGmtZc1e3LUWwLMhMr0/Wo+RHJCIOU44KsGqfiufuH8ngMNdg+ve3Nqa1ulR/wBFA2jdd7uDNDreqRrEryLNWqPJdrWFfkOkkSsGBHn4Cep9W7TDfqluub8TRW4CxbI0UaNkmXkkmuChQj9OOPAXHcehdm0O39n0Fzlzsmfc0Zl1texWyMz4ZLMj/wBgWb0kAljYctzGHLDzAPgHn/O9p/6jP/Jf/h8Affa31fsrr2e3dSgs2FuSPY0qNH5F0K131EzXakcZEtiG049bBOZFkJYAqfaBn0i52nR7ZkZ0+1vxVaduO7qxS6OiqV8vMIuX/miabhENaEoARwWYDg8gEL3pv11u907PN2ztVS3SxH059NKmkJFs6JksvYipx1piZYqCH0h2YKrR+1OeSVDW3gP/2Q==") no-repeat 50% bottom;
  margin-bottom: 40px !important;
  padding-bottom: 70px !important;
}
/* line 2089, ../sass/styles.scss */
.view-mode-teaser.node-blog .field-name-field-blog-image {
  margin-bottom: 15px;
}
/* line 2091, ../sass/styles.scss */
.view-mode-teaser.node-blog .field-name-field-blog-image img {
  width: 100%;
  max-width: 870px;
}

/* line 2098, ../sass/styles.scss */
.node-forum,
.node-blog {
  margin-bottom: 1em;
}
/* line 2103, ../sass/styles.scss */
.node-forum .file-image img,
.node-blog .file-image img {
  width: 100%;
  max-width: 870px;
  height: auto;
}
/* line 2111, ../sass/styles.scss */
.node-forum .group-comment-content p,
.node-blog .group-comment-content p {
  line-height: 145%;
}
/* line 2115, ../sass/styles.scss */
.node-forum .group-comment-content a:link,
.node-blog .group-comment-content a:link {
  color: #cc0000;
}
/* line 2118, ../sass/styles.scss */
.node-forum .group-comment-content a:visited,
.node-forum .group-comment-content a:hover,
.node-blog .group-comment-content a:visited,
.node-blog .group-comment-content a:hover {
  color: #660000;
}
/* line 2125, ../sass/styles.scss */
.node-forum h1,
.node-blog h1 {
  margin: 0;
  font-size: 20px;
  padding: 0;
  float: left;
}
/* line 2131, ../sass/styles.scss */
.node-forum h2.node-title,
.node-blog h2.node-title {
  color: #000;
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 25px 0;
}
/* line 2136, ../sass/styles.scss */
.node-forum h2.node-title a,
.node-blog h2.node-title a {
  color: #000;
}
/* line 1106, ../sass/components/_misc.scss */
.node-forum .region-content img,
.node-blog .region-content img {
  margin: 0 20px 0 0;
  width: auto;
  max-width: 100%;
}
/* line 2145, ../sass/styles.scss */
.node-forum .ds-media,
.node-blog .ds-media {
  margin-bottom: 20px;
}
/* line 2150, ../sass/styles.scss */
.node-forum .ds-description h1,
.node-blog .ds-description h1 {
  margin-bottom: 15px;
}
/* line 2153, ../sass/styles.scss */
.node-forum .ds-description p,
.node-blog .ds-description p {
  font-size: 15px;
  line-height: 150%;
}
/* line 2159, ../sass/styles.scss */
.node-forum .tags,
.node-blog .tags {
  float: right;
  margin-top: 28px;
}
/* line 2162, ../sass/styles.scss */
.node-forum .tags a,
.node-blog .tags a {
  font-size: 15px;
  font-weight: bold;
  color: #C80000;
  padding-left: 20px;
  display: inline-block;
  margin-right: 16px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAMCAYAAABr5z2BAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAElJREFUeNpiXL9+PQMQnAdiAwZU8AGIDYH4AQMewATEAVg0g4AAECcwEAAsODTDQD0Q2xMygBBwIOQFisCoAYPFgAcU6P8AEGAA2YgJF2y4ihYAAAAASUVORK5CYII=") no-repeat left 50%;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* line 1177, ../sass/components/_misc.scss */
  .node-forum .tags a,
  .node-blog .tags a {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJ1JREFUeNpi/P//P8NAApb79++D6BAgngrEYgTU/wXixUCcBsS/qeEAJiDmB+IFRFgOAsxAnADEKdQKAZAD/ICYm0R9UdR0gDcZ+myA2JkqaQCIrcjUux2I1wPxczL1/wTiZYz37t37A43bgQCvmAbQchAQY2IYYDDqgFEHjDpg1AGjDhh1wKBwwEA2i/+DHDANiP8NgOUgO6cBBBgAYKIavmVzFUkAAAAASUVORK5CYII=");
    -webkit-background-size: 16px 12px;
    -moz-background-size: 16px 12px;
    -o-background-size: 16px 12px;
    background-size: 16px 12px;
  }
}
/* line 2172, ../sass/styles.scss */
.node-forum .tags a:visited,
.node-forum .tags a:hover,
.node-blog .tags a:visited,
.node-blog .tags a:hover {
  color: #C80000;
}
/* line 2179, ../sass/styles.scss */
.node-forum .field-name-body p,
.node-blog .field-name-body p {
  font-size: 15px;
  line-height: 150%;
}
/* line 2185, ../sass/styles.scss */
.node-forum .field-name-author,
.node-blog .field-name-author {
  font-size: 12px;
  font-weight: bold;
  clear: left;
  float: left;
  margin-bottom: 12px;
}
/* line 851, ../sass/components/_misc.scss */
.node-forum .field-name-author:link,
.node-blog .field-name-author:link {
  color: #515151;
}
/* line 854, ../sass/components/_misc.scss */
.node-forum .field-name-author:visited,
.node-blog .field-name-author:visited {
  color: #515151;
}
/* line 857, ../sass/components/_misc.scss */
.node-forum .field-name-author:hover,
.node-blog .field-name-author:hover {
  color: #515151;
}
/* line 860, ../sass/components/_misc.scss */
.node-forum .field-name-author:focus,
.node-blog .field-name-author:focus {
  color: #515151;
}
/* line 863, ../sass/components/_misc.scss */
.node-forum .field-name-author:active, .node-forum .field-name-author.active,
.node-blog .field-name-author:active,
.node-blog .field-name-author.active {
  color: #515151;
}
/* line 869, ../sass/components/_misc.scss */
.node-forum .field-name-author a:link,
.node-blog .field-name-author a:link {
  color: #515151;
}
/* line 872, ../sass/components/_misc.scss */
.node-forum .field-name-author a:visited,
.node-blog .field-name-author a:visited {
  color: #515151;
}
/* line 875, ../sass/components/_misc.scss */
.node-forum .field-name-author a:hover,
.node-blog .field-name-author a:hover {
  color: #515151;
}
/* line 878, ../sass/components/_misc.scss */
.node-forum .field-name-author a:focus,
.node-blog .field-name-author a:focus {
  color: #515151;
}
/* line 881, ../sass/components/_misc.scss */
.node-forum .field-name-author a:active, .node-forum .field-name-author a.active,
.node-blog .field-name-author a:active,
.node-blog .field-name-author a.active {
  color: #515151;
}
/* line 2190, ../sass/styles.scss */
.node-forum .field-name-author a.username,
.node-blog .field-name-author a.username {
  font-size: 13px;
  font-weight: bold;
  color: #C80000;
}
/* line 2198, ../sass/styles.scss */
.node-forum .field-name-post-date,
.node-blog .field-name-post-date {
  font-size: 13px;
  color: #918F8F;
  float: left;
  margin-left: 6px;
  margin-bottom: 12px;
}
/* line 2204, ../sass/styles.scss */
.node-forum .field-name-post-date:before,
.node-blog .field-name-post-date:before {
  content: " | ";
}
/* line 2215, ../sass/styles.scss */
.node-forum .links,
.node-blog .links {
  display: block;
  margin-bottom: 20px;
  clear: both;
  float: left;
  max-width: 870px;
  width: 100%;
  background-color: #fff;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 0px 1px 1px 0px #B4B4B4;
  -webkit-box-shadow: 0px 1px 1px 0px #B4B4B4;
  box-shadow: 0px 1px 1px 0px #B4B4B4;
}
/* line 2224, ../sass/styles.scss */
.node-forum .links li,
.node-blog .links li {
  float: left;
  font-size: 0.92308em;
  padding: 0 10px;
  margin: 20px 0;
  border-left: 1px solid #cc0000;
}
/* line 2230, ../sass/styles.scss */
.node-forum .links li a,
.node-blog .links li a {
  font-weight: bold;
  font-size: 15px;
}
/* line 2235, ../sass/styles.scss */
.node-forum .links li:first-child,
.node-blog .links li:first-child {
  border: 0px;
}
/* line 2241, ../sass/styles.scss */
.node-forum .ds-links,
.node-blog .ds-links {
  width: 100%;
  float: left;
  clear: both;
  max-width: 870px;
}
/* line 2247, ../sass/styles.scss */
.node-forum .ds-links .field,
.node-blog .ds-links .field {
  float: left;
  font-size: 0.92308em;
  line-height: 1.58333em;
  padding: 20px 20px 16px;
  border-left: 1px solid #ccc;
  height: 24px;
}

/* line 2261, ../sass/styles.scss */
.ds-comment .form-actions input {
  height: 33px;
  line-height: 33px;
  vertical-align: middle;
  padding: 0 10px;
  margin: 10px 15px 0 0;
  min-width: 140px;
  color: #FFF !important;
  cursor: pointer;
  background-color: #918f8f !important;
  border: 0 none;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -moz-box-shadow: 0px 1px 1px 0px #B4B4B4;
  -webkit-box-shadow: 0px 1px 1px 0px #B4B4B4;
  box-shadow: 0px 1px 1px 0px #B4B4B4;
  font-size: 18px;
  text-align: center;
}
/* line 149, ../sass/_mixins.scss */
.ds-comment .form-actions input:hover {
  color: #FFF !important;
  background-color: #918f8f !important;
}

/* line 2269, ../sass/styles.scss */
.add-topic-link a {
  background-color: #918F8F;
  border: 0 none;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -moz-box-shadow: 0px 1px 1px 0px #B4B4B4;
  -webkit-box-shadow: 0px 1px 1px 0px #B4B4B4;
  box-shadow: 0px 1px 1px 0px #B4B4B4;
  cursor: pointer;
  color: #FFFFFF;
  float: right;
  font-size: 16px;
  height: 33px;
  line-height: 33px;
  padding: 0 25px;
  text-align: center;
  width: 180px;
  padding: 0;
  -webkit-appearance: none;
}

/* line 2290, ../sass/styles.scss */
.node-media.view-mode-anonymus_creative {
  background-color: white;
  border-right: 1px solid #bababa;
  border-bottom: 1px solid #bababa;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  display: block;
  padding: 4px;
}

/* line 230, ../sass/_mixins.scss */
.field-name-rate-widget-full:before, .field-name-rate-widget-full:after,
.field-name-rate-widget-disabled:before,
.field-name-rate-widget-disabled:after {
  content: " ";
  display: table;
}
/* line 235, ../sass/_mixins.scss */
.field-name-rate-widget-full:after,
.field-name-rate-widget-disabled:after {
  clear: both;
}

/* line 2315, ../sass/styles.scss */
.node-type-apply-for-job--view-mode-full, .node-type-apply-for-job--view-mode-teaser {
  margin-top: 0;
  position: relative;
}
/* line 2319, ../sass/styles.scss */
.node-type-apply-for-job--view-mode-full .field-name-node-edit-button, .node-type-apply-for-job--view-mode-teaser .field-name-node-edit-button {
  position: absolute;
  right: 0;
}
/* line 2324, ../sass/styles.scss */
.node-type-apply-for-job--view-mode-full .label-inline, .node-type-apply-for-job--view-mode-teaser .label-inline {
  width: 90px;
  float: left;
  margin-bottom: 4px;
}
/* line 2330, ../sass/styles.scss */
.node-type-apply-for-job--view-mode-full .label-above, .node-type-apply-for-job--view-mode-teaser .label-above {
  font-weight: bold;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
/* line 2337, ../sass/styles.scss */
.node-type-apply-for-job--view-mode-full .group-dropdown .field, .node-type-apply-for-job--view-mode-teaser .group-dropdown .field {
  clear: both;
}
/* line 2341, ../sass/styles.scss */
.node-type-apply-for-job--view-mode-full .group-dropdown .fieldset-wrapper, .node-type-apply-for-job--view-mode-teaser .group-dropdown .fieldset-wrapper {
  margin-top: 6px;
}

/* line 2347, ../sass/styles.scss */
.node-type-apply-for-job--view-mode-teaser {
  margin-top: 0;
}

/* line 2356, ../sass/styles.scss */
.pane-page-content table thead th {
  background-color: #fff;
  padding: 12px 10px;
  text-align: left;
}
/* line 2363, ../sass/styles.scss */
.pane-page-content table tr.even,
.pane-page-content table tr.odd {
  background-color: transparent;
  border-bottom: 0;
  padding: 0;
}
/* line 2369, ../sass/styles.scss */
.pane-page-content table tr.even {
  background-color: #fff;
}
/* line 2372, ../sass/styles.scss */
.pane-page-content table td {
  padding: 12px 10px;
  font-size: 14px;
}
/* line 2376, ../sass/styles.scss */
.pane-page-content table td .name > a {
  font-size: 18px;
  font-weight: bold;
}
/* line 2380, ../sass/styles.scss */
.pane-page-content table td .submitted {
  font-size: 12px;
}

/* line 2388, ../sass/styles.scss */
#footer .dfp-tag-wrapper .dfp-tag-wrapper,
#header-ad .dfp-tag-wrapper .dfp-tag-wrapper {
  max-width: 100%;
  position: relative;
}

/* line 2394, ../sass/styles.scss */
#footer .dfp-tag-wrapper .dfp-tag-wrapper > div,
#header-ad .dfp-tag-wrapper .dfp-tag-wrapper > div {
  height: 90px;
  width: 728px;
  position: absolute;
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  -o-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
}

@media only screen and (max-width: 740px) {
  /* line 2407, ../sass/styles.scss */
  #footer .dfp-tag-wrapper .dfp-tag-wrapper,
  #header-ad .dfp-tag-wrapper .dfp-tag-wrapper {
    width: 618px;
    height: 76.4011px;
  }

  /* line 2412, ../sass/styles.scss */
  #footer .dfp-tag-wrapper .dfp-tag-wrapper > div,
  #header-ad .dfp-tag-wrapper .dfp-tag-wrapper > div {
    -moz-transform: scale(0.8479);
    -webkit-transform: scale(0.8479);
    -o-transform: scale(0.8479);
    -ms-transform: scale(0.8479);
    transform: scale(0.8479);
  }
}
@media only screen and (max-width: 640px) {
  /* line 2423, ../sass/styles.scss */
  #footer .dfp-tag-wrapper .dfp-tag-wrapper,
  #header-ad .dfp-tag-wrapper .dfp-tag-wrapper {
    width: 457px;
    height: 56.4973px;
  }

  /* line 2428, ../sass/styles.scss */
  #footer .dfp-tag-wrapper .dfp-tag-wrapper > div,
  #header-ad .dfp-tag-wrapper .dfp-tag-wrapper > div {
    -moz-transform: scale(0.62675);
    -webkit-transform: scale(0.62675);
    -o-transform: scale(0.62675);
    -ms-transform: scale(0.62675);
    transform: scale(0.62675);
  }
}
@media only screen and (max-width: 468px) {
  /* line 2440, ../sass/styles.scss */
  #footer .dfp-tag-wrapper .dfp-tag-wrapper,
  #header-ad .dfp-tag-wrapper .dfp-tag-wrapper {
    width: 318px;
    height: 39.3132px;
  }

  /* line 2445, ../sass/styles.scss */
  #footer .dfp-tag-wrapper .dfp-tag-wrapper > div,
  #header-ad .dfp-tag-wrapper .dfp-tag-wrapper > div {
    -moz-transform: scale(0.43581);
    -webkit-transform: scale(0.43581);
    -o-transform: scale(0.43581);
    -ms-transform: scale(0.43581);
    transform: scale(0.43581);
  }
}
/* line 2456, ../sass/styles.scss */
.search-results {
  background: none !important;
  border-top: 1px solid #CCCCCC;
}

/* line 2461, ../sass/styles.scss */
.search-results-categories .inline-list > li {
  display: inline-block;
  height: auto;
  width: 100%;
  margin-bottom: 8px;
}

/* line 2468, ../sass/styles.scss */
.search-results-categories .view-content {
  font-size: 16px;
  font-weight: normal;
}

/* line 2473, ../sass/styles.scss */
.search-results .item-list ul {
  font-size: 16px;
  list-style: none outside none;
}
/* line 2476, ../sass/styles.scss */
.search-results .item-list ul li {
  margin-bottom: 8px;
}

/* line 2482, ../sass/styles.scss */
.search-form .form-submit {
  height: 33px;
  line-height: 33px;
  vertical-align: middle;
  padding: 0 10px;
  margin: 10px 15px 0 0;
  min-width: 140px;
  color: #FFF !important;
  cursor: pointer;
  background-color: #918f8f !important;
  border: 0 none;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -moz-box-shadow: 0px 1px 1px 0px #B4B4B4;
  -webkit-box-shadow: 0px 1px 1px 0px #B4B4B4;
  box-shadow: 0px 1px 1px 0px #B4B4B4;
  font-size: 18px;
  text-align: center;
  -moz-box-shadow: 0px 1px 1px 0px #B4B4B4;
  -webkit-box-shadow: 0px 1px 1px 0px #B4B4B4;
  box-shadow: 0px 1px 1px 0px #B4B4B4;
  width: 120px;
}
/* line 149, ../sass/_mixins.scss */
.search-form .form-submit:hover {
  color: #FFF !important;
  background-color: #787575 !important;
}

/* line 2504, ../sass/styles.scss */
.no-sidebars article.view-mode-original_media {
  text-align: center;
}
/* line 2506, ../sass/styles.scss */
.no-sidebars article.view-mode-original_media .ds-media {
  display: inline-block;
  float: none;
  margin: 0 auto;
  max-width: 100%;
  width: auto;
}
/* line 2514, ../sass/styles.scss */
.no-sidebars article.view-mode-original_media .ds-assets {
  clear: left;
  display: block;
  float: none;
  margin: 0 auto 15px !important;
  text-align: left;
  max-width: 870px;
  overflow: hidden;
  width: 100%;
}
/* line 2524, ../sass/styles.scss */
.no-sidebars article.view-mode-original_media .ds-description {
  clear: both;
  color: #000000;
  float: none;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 140%;
  margin: 0 auto !important;
  max-width: 870px;
  padding: 0 0 0 10px;
  text-align: left;
}
/* line 2536, ../sass/styles.scss */
.no-sidebars article.view-mode-original_media .ds-links {
  clear: both;
  display: inline-block;
  float: none;
  margin: 0 auto !important;
  max-width: 870px;
  width: 100%;
}
/* line 2551, ../sass/styles.scss */
.no-sidebars .node-media.view-mode-full .ds-comment {
  clear: both;
  display: block;
  float: none;
  margin: 0 auto !important;
  max-width: 870px;
  width: 100%;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* line 2570, ../sass/styles.scss */
  div.fivestar-aotw .fivestar-widget-static .star,
  div.fivestar-aotw .fivestar-widget .star a,
  div.fivestar-aotw .fivestar-widget-static .star span.on,
  div.fivestar-aotw .fivestar-widget-static .star span.off,
  .rate-widget a, .rate-widget span {
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAABCCAYAAABTqybaAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAc5JREFUeNrslz9Lw0AYh5P4Z9ESurgV/AQOnbRDpxro0C6Cq4NgZrtnSb6Aq6H4CVz7ATraQT+AiyQUQVxEHVqV+jt4g9eQxDtzqcu98JD0knsgb+/yI2YURYZghXQ84wcbjUbmzZag1AYnhC0yQVTcB5tEX6X4OOe8lJg9usP9dkTaYUm0ISmhdliSbRBuxzo91i7YANs0zs63wFqqDXw7jsBXHMfvOH7Q+BudPzBxDGqGXLF2XBdcf2WtGIBPQ10x14CJh6ADnhRImaOD3ThM/rwxaIJJCSmb24R0nF4VU9AGV3+QsjltSKf8quBrBk7BDbgUlLoQhqLreCLZAuEN0pUQd/9dXAetjPFHIl0t7L66iNihrczXCOwRo9S1zG1v/fJoc3AOeuCZ6NHYvKgdWeJDOt6DfXABFtz1BY0d0D38nFyxSS+kkHbiXcGfdkv3sHtr6LO5JJJYsJkpnVeiYpt7Se2AF53SOqXzUxrolM5PaeZUntLkUpvS5MhcbklKuxJSl+bMdEpXl9I0R6d0xSlNc39Evu+XSmnP8/S3tE7pVaV0EAQ6pfNTGrtRfUpDqj6lIVX7LQ2h/pauOKWx+3RKryCl0eellP4WYACdIb+21vGlVAAAAABJRU5ErkJggg==") no-repeat scroll 0 0 transparent;
    -webkit-background-size: 11px 33px;
    -moz-background-size: 11px 33px;
    -o-background-size: 11px 33px;
    background-size: 11px 33px;
  }
}
/* line 2588, ../sass/styles.scss */
.comment .rate-widget .item-list ul,
.comment .rate-widget-emotion .item-list ul {
  margin: 0;
  padding: 0;
}
/* line 2592, ../sass/styles.scss */
.comment .rate-widget .item-list ul li,
.comment .rate-widget-emotion .item-list ul li {
  vertical-align: middle;
  line-height: 33px;
  font-size: 0.8em;
  text-indent: 0;
}
/* line 2600, ../sass/styles.scss */
.comment .rate-widget .item-list a,
.comment .rate-widget .item-list .rate-button,
.comment .rate-widget-emotion .item-list a,
.comment .rate-widget-emotion .item-list .rate-button {
  display: block;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 64px;
  background: #DEDEDE;
  background-image: none;
  font-size: 1em;
}
/* line 2613, ../sass/styles.scss */
.comment .rate-widget .item-list a .vote-count,
.comment .rate-widget .item-list .rate-button .vote-count,
.comment .rate-widget-emotion .item-list a .vote-count,
.comment .rate-widget-emotion .item-list .rate-button .vote-count {
  display: block;
  float: none;
  height: 42px;
  width: auto;
  background-image: none;
  color: #908e8e;
  font-size: 32px;
  font-weight: lighter;
  line-height: 42px;
  vertical-align: middle;
  text-align: center;
}
/* line 2628, ../sass/styles.scss */
.comment .rate-widget .item-list a .vote-text,
.comment .rate-widget .item-list .rate-button .vote-text,
.comment .rate-widget-emotion .item-list a .vote-text,
.comment .rate-widget-emotion .item-list .rate-button .vote-text {
  display: block;
  float: none;
  height: 22px;
  width: auto;
  background-image: none;
  color: #c80000;
  font-size: 11px;
  line-height: 22px;
  text-align: center;
  vertical-align: middle;
}
/* line 2644, ../sass/styles.scss */
.comment .rate-widget a,
.comment .rate-widget .rate-button,
.comment .rate-widget-emotion a,
.comment .rate-widget-emotion .rate-button {
  height: auto;
}

/* line 2654, ../sass/styles.scss */
.comment-new .rate-widget-emotion .item-list .rate-button {
  background: #E6DFCC;
  background-image: none;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* line 2673, ../sass/styles.scss */
  .comment .rate-widget a,
  .comment .rate-widget span, .comment-new .rate-widget a,
  .comment-new .rate-widget span {
    display: block;
    float: none;
    width: 64px;
    height: auto;
    background-image: none;
    background-color: #DEDEDE;
    background-size: auto;
  }
  /* line 2686, ../sass/styles.scss */
  .comment .item-list .rate-button.rate-closed, .comment-new .item-list .rate-button.rate-closed {
    background-color: #FFF;
    -moz-transition: all 1s easing 1s;
    -o-transition: all 1s easing 1s;
    -webkit-transition: all 1s easing;
    -webkit-transition-delay: 1s;
    transition: all 1s easing 1s;
  }

  /* line 2694, ../sass/styles.scss */
  .comment-new .rate-widget a,
  .comment-new .rate-widget span {
    background-image: none;
    background-color: #E6DFCC;
    background-size: auto;
  }
}
/* line 2705, ../sass/styles.scss */
.comment .item-list .rate-button.rate-closed {
  background-color: #FFF;
  -moz-transition: all 1s easing 1s;
  -o-transition: all 1s easing 1s;
  -webkit-transition: all 1s easing;
  -webkit-transition-delay: 1s;
  transition: all 1s easing 1s;
}

/* line 2715, ../sass/styles.scss */
.comment-by-viewer .item-list .rate-button {
  background-color: #ECECEC;
  font-size: 1em;
  cursor: default;
}
/* line 2720, ../sass/styles.scss */
.comment-by-viewer .item-list .rate-button .vote-text {
  color: #AAAAAA;
}

/* line 2729, ../sass/styles.scss */
.node-type-creative .inside .panel-pane.pane-user-picture {
  float: left;
  margin: 0 20px 0 0;
}
/* line 2733, ../sass/styles.scss */
.node-type-creative .inside .panel-pane.pane-node-title {
  height: 65px;
  line-height: 65px;
  margin-top: 20px;
}
/* line 2737, ../sass/styles.scss */
.node-type-creative .inside .panel-pane.pane-node-title h1 {
  font-size: 2em;
  line-height: 65px;
  margin-bottom: 0;
  margin-top: 0;
}
/* line 2749, ../sass/styles.scss */
.node-type-creative .inside .pane-user h3,
.node-type-creative .inside .pane-user-summary h3,
.node-type-creative .inside .pane-user-userpoints h3 {
  margin-bottom: 0.5em;
}
/* line 2752, ../sass/styles.scss */
.node-type-creative .inside .pane-user .field,
.node-type-creative .inside .pane-user-summary .field,
.node-type-creative .inside .pane-user-userpoints .field {
  margin-bottom: 5px;
}
/* line 2756, ../sass/styles.scss */
.node-type-creative .inside .pane-user .item-list,
.node-type-creative .inside .pane-user-summary .item-list,
.node-type-creative .inside .pane-user-userpoints .item-list {
  display: none;
}
/* line 2759, ../sass/styles.scss */
.node-type-creative .inside .pane-user a,
.node-type-creative .inside .pane-user-summary a,
.node-type-creative .inside .pane-user-userpoints a {
  color: #000;
}
/* line 2764, ../sass/styles.scss */
.node-type-creative .inside .label-inline {
  float: left;
}
/* line 2767, ../sass/styles.scss */
.node-type-creative .inside h2 {
  margin-bottom: 0;
}

/* line 2775, ../sass/styles.scss */
.pane-user-summary dl,
.user-profile dl {
  margin: 0.5em 0;
}
/* line 2777, ../sass/styles.scss */
.pane-user-summary dl dt,
.user-profile dl dt {
  display: inline-block;
  float: left;
  clear: left;
  margin: 0 8px 5px 0;
}
/* line 2783, ../sass/styles.scss */
.pane-user-summary dl dd,
.user-profile dl dd {
  display: inline-block;
  margin: 0 0 5px 0;
  float: left;
}

/* line 2794, ../sass/styles.scss */
.page-user .user-profile h3 {
  margin-bottom: 0.5em;
}
/* line 2797, ../sass/styles.scss */
.page-user .user-profile .item-list {
  display: none;
}

/* line 2804, ../sass/styles.scss */
.button a {
  height: 33px;
  line-height: 33px;
  vertical-align: middle;
  padding: 0 10px;
  margin: 10px 15px 0 0;
  min-width: 140px;
  color: #FFF !important;
  cursor: pointer;
  background-color: #918f8f !important;
  border: 0 none;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -moz-box-shadow: 0px 1px 1px 0px #B4B4B4;
  -webkit-box-shadow: 0px 1px 1px 0px #B4B4B4;
  box-shadow: 0px 1px 1px 0px #B4B4B4;
  font-size: 18px;
  text-align: center;
}
/* line 149, ../sass/_mixins.scss */
.button a:hover {
  color: #FFF !important;
  background-color: #787575 !important;
}

/* Branded page header */
/* line 2810, ../sass/styles.scss */
h1#page-title span {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 2814, ../sass/styles.scss */
h1#page-title .branded-header {
  display: table;
}
/* line 2818, ../sass/styles.scss */
h1#page-title .brand-logo {
  display: table-cell;
  padding-right: 30px;
  vertical-align: top;
}
/* line 2824, ../sass/styles.scss */
h1#page-title .branded-title {
  display: table-cell;
  vertical-align: top;
}
/* line 2829, ../sass/styles.scss */
h1#page-title .branded-verb {
  display: block;
  font-weight: normal;
  font-size: 0.5em;
  line-height: 1em;
  text-transform: uppercase;
}

/* line 2840, ../sass/styles.scss */
.page-aotw-visitors-by-profession .pane-aotw-bloodhound-chart {
  float: left;
}
/* line 2844, ../sass/styles.scss */
.page-aotw-visitors-by-profession .pane-specialization-counter-specialization-statistics {
  float: left;
  margin: 15px 0 0 90px;
}
/* line 2849, ../sass/styles.scss */
.page-aotw-visitors-by-profession .boodhound-marker {
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: -1px;
}
/* line 2857, ../sass/styles.scss */
.page-aotw-visitors-by-profession .bloodhound-stat {
  display: inline-block;
  margin-left: 26px;
}
/* line 2862, ../sass/styles.scss */
.page-aotw-visitors-by-profession .views-row {
  margin-bottom: 12px;
  font-size: 14px;
  position: relative;
}
/* line 2868, ../sass/styles.scss */
.page-aotw-visitors-by-profession .pane-page-content {
  padding: 30px 0 0 65px;
}

/* line 2873, ../sass/styles.scss */
#block-aotw-bloodhound-bloodhound-form {
  background-color: #7b7b7b;
  color: #fff;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  width: calc(100% - 20px);
}
/* line 2879, ../sass/styles.scss */
#block-aotw-bloodhound-bloodhound-form a {
  text-decoration: underline;
  color: #fff;
}
/* line 2884, ../sass/styles.scss */
#block-aotw-bloodhound-bloodhound-form h2 {
  display: none;
}
/* line 2888, ../sass/styles.scss */
#block-aotw-bloodhound-bloodhound-form form > div {
  padding: 20px 10px 20px 20px;
}
/* line 2892, ../sass/styles.scss */
#block-aotw-bloodhound-bloodhound-form .form-item-specialization {
  float: left;
  margin: 0 20px 0 0;
  position: relative;
}
/* line 2897, ../sass/styles.scss */
#block-aotw-bloodhound-bloodhound-form .form-item-specialization .field-prefix {
  display: inline-block;
  margin: 0 15px 0 35px;
}
/* line 2903, ../sass/styles.scss */
#block-aotw-bloodhound-bloodhound-form .qm {
  display: block;
  position: absolute;
  background-color: #fff;
  color: #7b7b7b;
  width: 23px;
  height: 23px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  top: 0;
  left: 0;
  text-align: center;
  font-weight: bold;
}
/* line 2917, ../sass/styles.scss */
#block-aotw-bloodhound-bloodhound-form .form-submit {
  background-color: #f2f2f2 !important;
  color: #333 !important;
  border: 0 none;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 0px 1px 1px 0px #B4B4B4;
  -webkit-box-shadow: 0px 1px 1px 0px #B4B4B4;
  box-shadow: 0px 1px 1px 0px #B4B4B4;
  cursor: pointer;
  font-size: 12px;
  height: 33px;
  line-height: 33px;
  width: 140px;
  text-align: center;
  margin: -3px 0 0;
  padding: 0;
}

/* line 2936, ../sass/styles.scss */
.pane-featured-jobs-panel-pane-1 h2 {
  width: 100%;
  display: table;
  padding: 0;
  padding: 0 !important;
  margin: 0 !important;
}
/* line 200, ../sass/_mixins.scss */
.pane-featured-jobs-panel-pane-1 h2 span.wrapper {
  display: table-row;
  width: 100%;
}
/* line 204, ../sass/_mixins.scss */
.pane-featured-jobs-panel-pane-1 h2 span.wrapper span {
  padding: 1.25em;
  display: table-cell;
}
/* line 209, ../sass/_mixins.scss */
.pane-featured-jobs-panel-pane-1 h2 span.wrapper .link {
  text-align: right;
  padding-left: 0;
}
/* line 213, ../sass/_mixins.scss */
.pane-featured-jobs-panel-pane-1 h2 span.wrapper .link a {
  height: 33px;
  line-height: 33px;
  vertical-align: middle;
  padding: 0 10px;
  margin: 10px 15px 0 0;
  min-width: 140px;
  color: #FFF !important;
  cursor: pointer;
  background-color: #918f8f !important;
  border: 0 none;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -moz-box-shadow: 0px 1px 1px 0px #B4B4B4;
  -webkit-box-shadow: 0px 1px 1px 0px #B4B4B4;
  box-shadow: 0px 1px 1px 0px #B4B4B4;
  font-size: 18px;
  text-align: center;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  min-width: 0;
  margin: 0;
  line-height: inherit;
  padding-left: 2em;
  padding-right: 2em;
  font-size: .9em;
}
/* line 149, ../sass/_mixins.scss */
.pane-featured-jobs-panel-pane-1 h2 span.wrapper .link a:hover {
  color: #FFF !important;
  background-color: #C80000 !important;
}

/* line 2945, ../sass/styles.scss */
.featured-jobs-panel .view-content {
  padding: 19px;
}
/* line 2948, ../sass/styles.scss */
.featured-jobs-panel .view-content ul {
  margin: 0;
  padding: 0;
}
/* line 2952, ../sass/styles.scss */
.featured-jobs-panel .view-content ul li {
  display: inline-block;
  margin-bottom: 0;
  padding: 0.5em 0;
  padding-left: 40px;
  width: auto !important;
  list-style-type: none;
  list-style: none;
  background-image: url("../images/porti-icon.png");
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 30px 30px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* line 2952, ../sass/styles.scss */
  .featured-jobs-panel .view-content ul li {
    background-image: url("../images/porti-icon.png");
    background-size: 30px 30px;
  }
}
/* line 187, ../sass/_mixins.scss */
.featured-jobs-panel .view-content ul li a {
  color: #000000;
  font-size: 12px;
  line-height: 1.3;
}
/* line 2958, ../sass/styles.scss */
.featured-jobs-panel .more-link {
  padding: 0 19px 19px 19px;
}
/* line 2960, ../sass/styles.scss */
.featured-jobs-panel .more-link a {
  color: black;
  font-size: 12px;
  line-height: 1.3;
}

/* line 2969, ../sass/styles.scss */
.pane-page-content .pane-featured-jobs-panel-pane-1 {
  background-color: #FFF;
  width: 300px;
}

/* line 2981, ../sass/styles.scss */
.pane-feed-panel-pane-1 .view-content {
  padding: 0;
}
/* line 2983, ../sass/styles.scss */
.pane-feed-panel-pane-1 .view-content .view-content {
  padding: 19px;
}
/* line 2986, ../sass/styles.scss */
.pane-feed-panel-pane-1 .view-content ul {
  margin: 0;
  padding: 0;
}
/* line 2990, ../sass/styles.scss */
.pane-feed-panel-pane-1 .view-content ul li {
  display: inline-block;
  margin-bottom: 0;
  padding: 0.5em 0;
  padding-left: 40px;
  width: auto !important;
  list-style-type: none;
  list-style: none;
  background-image: url("../images/porti-icon.png");
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 30px 30px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* line 2990, ../sass/styles.scss */
  .pane-feed-panel-pane-1 .view-content ul li {
    background-image: url("../images/porti-icon.png");
    background-size: 30px 30px;
  }
}
/* line 187, ../sass/_mixins.scss */
.pane-feed-panel-pane-1 .view-content ul li a {
  color: #000000;
  font-size: 12px;
  line-height: 1.3;
}
/* line 2995, ../sass/styles.scss */
.pane-feed-panel-pane-1 .view-content .more-link {
  padding: 19px;
  padding-top: 0;
}
/* line 2999, ../sass/styles.scss */
.pane-feed-panel-pane-1 .view-content .more-link a {
  color: black;
  font-size: 12px;
  line-height: 1.3;
}

/* line 2, ../sass/_front.scss */
.chosen-container-single .chosen-single {
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

/* line 2, ../sass/_search-form.scss */
.search-form .views-exposed-widget > div,
.search-form .views-exposed-widgets > div {
  display: block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 230, ../sass/_mixins.scss */
.search-form .views-exposed-form:before, .search-form .views-exposed-form:after {
  content: " ";
  display: table;
}
/* line 235, ../sass/_mixins.scss */
.search-form .views-exposed-form:after {
  clear: both;
}
/* line 11, ../sass/_search-form.scss */
.search-form .views-exposed-form .views-exposed-widget {
  float: none;
}
/* line 15, ../sass/_search-form.scss */
.search-form .views-exposed-form .selectgroup {
  float: left;
  width: 60%;
}
/* line 230, ../sass/_mixins.scss */
.search-form .views-exposed-form .selectgroup .views-exposed-widget:before, .search-form .views-exposed-form .selectgroup .views-exposed-widget:after {
  content: " ";
  display: table;
}
/* line 235, ../sass/_mixins.scss */
.search-form .views-exposed-form .selectgroup .views-exposed-widget:after {
  clear: both;
}
/* line 21, ../sass/_search-form.scss */
.search-form .views-exposed-form .selectgroup .views-exposed-widget label {
  float: left;
  width: 30%;
  margin: 0;
  font-weight: normal;
}
/* line 29, ../sass/_search-form.scss */
.search-form .views-exposed-form .selectgroup .views-exposed-widget .views-widget {
  float: left;
  width: 70%;
  padding-left: 10px;
}
/* line 34, ../sass/_search-form.scss */
.search-form .views-exposed-form .selectgroup .views-exposed-widget .views-widget .form-text {
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto !important;
  height: 1%;
  border: 1px solid #aaa;
  background-color: #fff;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
  background-image: -webkit-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background-image: -moz-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background-image: -o-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background-image: linear-gradient(#eeeeee 1%, #ffffff 15%);
  cursor: text;
  box-shadow: none;
  border-radius: 0;
  color: #666666;
  font-family: sans-serif;
  font-size: 13px;
  line-height: 1.5em;
  padding: 5px;
  padding-left: 26px;
  background-image: url('../images/../images/search-icon.png?1427390389');
  background-repeat: no-repeat;
  background-position: 5px 50%;
  background-size: 17px 17px;
}
/* line 71, ../sass/_search-form.scss */
.search-form .views-exposed-form .selectgroup .views-exposed-widget .views-widget ul.chosen-choices {
  padding-left: 23px;
  background-image: url('../images/../images/filter-icon.png?1427390389');
  background-repeat: no-repeat;
  background-position: 5px 50%;
  background-size: 17px 17px;
}
/* line 82, ../sass/_search-form.scss */
.search-form .views-exposed-form .selectgroup .views-widget-filter-search_api_views_fulltext label {
  font-weight: bold;
}
/* line 87, ../sass/_search-form.scss */
.search-form .views-exposed-form .views-exposed-widget-buttons {
  float: left;
  width: 40%;
}
@media only screen and (max-width: 1024px) {
  /* line 93, ../sass/_search-form.scss */
  .search-form .views-exposed-form .selectgroup {
    float: left;
    width: 80%;
  }
  /* line 98, ../sass/_search-form.scss */
  .search-form .views-exposed-form .views-exposed-widget-buttons {
    float: left;
    width: 20%;
  }
}
@media only screen and (max-width: 800px) {
  /* line 105, ../sass/_search-form.scss */
  .search-form .views-exposed-form .selectgroup {
    float: none;
    width: 100%;
  }
  /* line 110, ../sass/_search-form.scss */
  .search-form .views-exposed-form .views-exposed-widget-buttons {
    float: none;
    width: 100%;
    margin-left: 30%;
    padding-left: 6px;
  }
}
