/**
 * @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.
 */
/* HTML element (SMACSS base) rules */
/**
 * @file
 * Normalize.css is intended to be used as an alternative to CSS resets.
 *
 * This file is a slight fork of these original sources:
 * - normalize.css v2.1.2 | MIT License | git.io/normalize
 * - normalize.scss v2.1.2 | MIT/GPLv2 License | bit.ly/normalize-with-compass
 *
 * It's suggested that you read the normalize.scss file and customise it to meet
 * your needs, rather then including the file in your project and overriding the
 * defaults later in your CSS.
 * @see http://nicolasgallagher.com/about-normalize-css/
 *
 * Also: @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 *       @see http://snook.ca/archives/html_and_css/no_css_reset/
 */
/**
 * HTML5 display definitions
 */
/* Correct `block` display not defined in IE 8/9. */
/* line 33, ../sass/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

/* Correct `inline-block` display not defined in IE 8/9. */
/* line 40, ../sass/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/**
 * 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;
}

/* Address `font-family` inconsistency between `textarea` and other form elements. */
/* line 120, ../sass/_normalize.scss */
button,
input,
select,
textarea {
  font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;
}

/* Remove default margin. */
/* line 126, ../sass/_normalize.scss */
body {
  margin: 0;
  padding: 0;
}

/**
 * Links
 *
 * The order of link states are based on Eric Meyer's article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
/* Address `outline` inconsistency between Chrome and other browsers. */
/* line 148, ../sass/_normalize.scss */
a:focus {
  outline: thin dotted;
}

/* Improve readability when focused and also mouse hovered in all browsers. */
/* line 154, ../sass/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/**
 * Typography
 *
 * To achieve a pleasant vertical rhythm, we use Compass' Vertical Rhythm mixins
 * so that the line height of our base font becomes the basic unit of vertical
 * measurement. We use multiples of that unit to set the top and bottom margins
 * for our block level elements and to set the line heights of any fonts.
 * For more information, see http://24ways.org/2006/compose-to-a-vertical-rhythm
 */
/* Set 1 unit of vertical rhythm on the top and bottom margin. */
/* line 170, ../sass/_normalize.scss */
p,
pre {
  margin: 1.5em 0;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 178, ../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 186, ../sass/_normalize.scss */
h2 {
  font-size: 1.5em;
  line-height: 2em;
  margin-top: 1em;
  margin-bottom: 1em;
}

/* line 191, ../sass/_normalize.scss */
h3 {
  font-size: 1.17em;
  line-height: 1.28205em;
  margin-top: 1.28205em;
  margin-bottom: 1.28205em;
}

/* line 196, ../sass/_normalize.scss */
h4 {
  font-size: 1em;
  line-height: 1.5em;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

/* line 201, ../sass/_normalize.scss */
h5 {
  font-size: 0.83em;
  line-height: 1.80723em;
  margin-top: 1.80723em;
  margin-bottom: 1.80723em;
}

/* line 206, ../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 213, ../sass/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */
/* line 219, ../sass/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/* Address styling not present in Safari 5 and Chrome. */
/* line 224, ../sass/_normalize.scss */
dfn {
  font-style: italic;
}

/* Address differences between Firefox and other browsers. */
/* line 229, ../sass/_normalize.scss */
hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  border: 1px solid #666;
  padding-bottom: -1px;
  margin: 1.5em 0;
}

/* Address styling not present in IE 8/9. */
/* line 238, ../sass/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/* Correct font family set oddly in Safari 5 and Chrome. */
/* line 249, ../sass/_normalize.scss */
code,
kbd,
pre,
samp,
tt,
var {
  font-family: "Courier New", "DejaVu Sans Mono", monospace, sans-serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
  line-height: 1.5em;
}

/* Improve readability of pre-formatted text in all browsers. */
/* line 258, ../sass/_normalize.scss */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* Set consistent quote types. */
/* line 270, ../sass/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/* Address inconsistent and variable font size in all browsers. */
/* line 275, ../sass/_normalize.scss */
small {
  font-size: 80%;
}

/* Prevent `sub` and `sup` affecting `line-height` in all browsers. */
/* line 281, ../sass/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 287, ../sass/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 290, ../sass/_normalize.scss */
sub {
  bottom: -0.25em;
}

/**
 * Lists
 */
/* line 300, ../sass/_normalize.scss */
dl,
menu,
ol,
ul {
  /* Address margins set differently in IE 6/7. */
  margin: 1.5em 0;
}

/* line 307, ../sass/_normalize.scss */
ol ol,
ol ul,
ul ol,
ul ul {
  /* Turn off margins on nested lists. */
  margin: 0;
}

/* Correct list images handled incorrectly in IE 7. */
/* line 319, ../sass/_normalize.scss */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
/* line 330, ../sass/_normalize.scss */
img {
  /* Remove border when inside `a` element in IE 8/9. */
  border: 0;
  /* Improve image quality when scaled in IE 7. */
  -ms-interpolation-mode: bicubic;
  /* 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 351, ../sass/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* Address margin not present in IE 8/9 and Safari 5. */
/* line 356, ../sass/_normalize.scss */
figure {
  margin: 0;
}

/**
 * Forms
 */
/* Correct margin displayed oddly in IE 6/7. */
/* line 366, ../sass/_normalize.scss */
form {
  margin: 0;
}

/* Define consistent border, margin, and padding. */
/* line 372, ../sass/_normalize.scss */
fieldset {
  margin: 0 2px;
  /* Apply borders and padding that keep the vertical rhythm. */
  border-color: #c0c0c0;
  border-top-style: solid;
  border-top-width: 0.0625em;
  padding-top: 0.4625em;
  border-bottom-style: solid;
  border-bottom-width: 0.0625em;
  padding-bottom: 0.9125em;
  border-left-style: solid;
  border-left-width: 0.0625em;
  padding-left: 0.9125em;
  border-right-style: solid;
  border-right-width: 0.0625em;
  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 387, ../sass/_normalize.scss */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
  *margin-left: -7px;
  /* 3 */
  /* LTR */
}

/**
 * 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 405, ../sass/_normalize.scss */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
  vertical-align: baseline;
  /* 4 */
  *vertical-align: middle;
  /* 4 */
  max-width: 100%;
  /* 5 */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 5 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 422, ../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 433, ../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 449, ../sass/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  *overflow: visible;
  /* 4 */
}

/**
 * Re-set default cursor for disabled elements.
 */
/* line 461, ../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 472, ../sass/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */
}

/**
 * 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 486, ../sass/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/* line 496, ../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 502, ../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 511, ../sass/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* Drupal-style form labels. */
/* line 517, ../sass/_normalize.scss */
label {
  display: block;
  font-weight: bold;
}

/**
 * Tables
 */
/* line 525, ../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;
}

/* Common fonts rules */
@font-face {
  font-family: 'ubuntubold';
  src: url("../fonts/ubuntu-b-webfont.eot");
  src: url("../fonts/ubuntu-b-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/ubuntu-b-webfont.woff") format("woff"), url("../fonts/ubuntu-b-webfont.ttf") format("truetype"), url("../fonts/ubuntu-b-webfont.svg#ubuntubold") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'ubuntulight';
  src: url("../fonts/ubuntu-l-webfont.eot");
  src: url("../fonts/ubuntu-l-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/ubuntu-l-webfont.woff") format("woff"), url("../fonts/ubuntu-l-webfont.ttf") format("truetype"), url("../fonts/ubuntu-l-webfont.svg#ubuntulight") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'ubunturegular';
  src: url("../fonts/ubuntu-r-webfont.eot");
  src: url("../fonts/ubuntu-r-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/ubuntu-r-webfont.woff") format("woff"), url("../fonts/ubuntu-r-webfont.ttf") format("truetype"), url("../fonts/ubuntu-r-webfont.svg#ubunturegular") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'ubuntumedium';
  src: url("../fonts/ubuntu-m-webfont.eot");
  src: url("../fonts/ubuntu-m-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/ubuntu-m-webfont.woff") format("woff"), url("../fonts/ubuntu-m-webfont.ttf") format("truetype"), url("../fonts/ubuntu-m-webfont.svg#ubuntumedium") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'ubuntu_condensedregular';
  src: url("../fonts/ubuntu-c-webfont.eot");
  src: url("../fonts/ubuntu-c-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/ubuntu-c-webfont.woff") format("woff"), url("../fonts/ubuntu-c-webfont.ttf") format("truetype"), url("../fonts/ubuntu-c-webfont.svg#ubuntu_condensedregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'permianseriftypefaceregular';
  src: url("../fonts/permianseriftypeface-webfont.eot");
  src: url("../fonts/permianseriftypeface-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/permianseriftypeface-webfont.woff") format("woff"), url("../fonts/permianseriftypeface-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'permianseriftypefacebold';
  src: url("../fonts/permianseriftypeface-bold-webfont.eot");
  src: url("../fonts/permianseriftypeface-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/permianseriftypeface-bold-webfont.woff") format("woff"), url("../fonts/permianseriftypeface-bold-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'permianseriftypefaceitalic';
  src: url("../fonts/permianseriftypeface-italic-webfont.eot");
  src: url("../fonts/permianseriftypeface-italic-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/permianseriftypeface-italic-webfont.woff") format("woff"), url("../fonts/permianseriftypeface-italic-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'permianslabseriftypefaceRg';
  src: url("../fonts/permianslabseriftypeface-webfont.eot");
  src: url("../fonts/permianslabseriftypeface-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/permianslabseriftypeface-webfont.woff") format("woff"), url("../fonts/permianslabseriftypeface-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'permianslabseriftypefaceBold';
  src: url("../fonts/permianslabseriftypeface-bold-webfont.eot");
  src: url("../fonts/permianslabseriftypeface-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/permianslabseriftypeface-bold-webfont.woff") format("woff"), url("../fonts/permianslabseriftypeface-bold-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'permianslabseriftypefaceItalic';
  src: url("../fonts/permianslabseriftypeface-italic-webfont.eot");
  src: url("../fonts/permianslabseriftypeface-italic-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/permianslabseriftypeface-italic-webfont.woff") format("woff"), url("../fonts/permianslabseriftypeface-italic-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'permiansanstypefaceregular';
  src: url("../fonts/permiansanstypeface-webfont.eot");
  src: url("../fonts/permiansanstypeface-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/permiansanstypeface-webfont.woff") format("woff"), url("../fonts/permiansanstypeface-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'permiansanstypefacebold';
  src: url("../fonts/permiansanstypeface-bold-webfont.eot");
  src: url("../fonts/permiansanstypeface-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/permiansanstypeface-bold-webfont.woff") format("woff"), url("../fonts/permiansanstypeface-bold-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'permiansanstypefaceitalic';
  src: url("../fonts/permiansanstypeface-italic-webfont.eot");
  src: url("../fonts/permiansanstypeface-italic-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/permiansanstypeface-italic-webfont.woff") format("woff"), url("../fonts/permiansanstypeface-italic-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* SMACSS theme rules */
/**
 * GLOBALS
 */
/* line 6, ../sass/_custom.scss */
* {
  margin: 0;
  padding: 0;
}

/* line 10, ../sass/_custom.scss */
body {
  color: #4d4d4d;
  font-family: 'ubunturegular', "Trebuchet MS",  Arial, Helvetica, FreeSans, sans-serif;
  font-size: 100%;
  height: 100%;
  width: 100%;
}

/* line 18, ../sass/_custom.scss */
h1 {
  font-size: 2.0em;
}

/* line 19, ../sass/_custom.scss */
h2 {
  font-size: 1.8em;
}

/* line 20, ../sass/_custom.scss */
h3 {
  font-size: 1.6em;
}

/* line 21, ../sass/_custom.scss */
h4 {
  font-size: 1.4em;
}

/* line 22, ../sass/_custom.scss */
h5 {
  font-size: 1.2em;
}

/* line 23, ../sass/_custom.scss */
h6 {
  font-size: 1em;
}

/* line 25, ../sass/_custom.scss */
h1, h2, h3, h4, h5, h6 {
  color: #222222;
  margin: 0 0 20px 0;
  font-weight: normal;
}

/* line 31, ../sass/_custom.scss */
p, ul, ol, dl, table {
  margin: 0 0 20px 0;
}

/* line 35, ../sass/_custom.scss */
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: #3d5267;
}

/* line 39, ../sass/_custom.scss */
a {
  outline: none;
  text-decoration: underline;
  color: #4c4a45;
}

/* line 44, ../sass/_custom.scss */
a:hover {
  text-decoration: none;
}

/* line 47, ../sass/_custom.scss */
img {
  border: 0;
}

/* line 50, ../sass/_custom.scss */
div.clear-both {
  clear: both;
  font-size: 0;
  height: 0;
  line-height: 0;
}

/* line 57, ../sass/_custom.scss */
textarea:focus, input:focus {
  outline: none;
}

/* line 60, ../sass/_custom.scss */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* line 67, ../sass/_custom.scss */
.header {
  background: url(../images/bannerbackground-bdi.png) center 0 no-repeat;
  width: auto;
  height: 230px;
}

.header-small {
  background: url(../images/bannerbackground-bdi.png) center 0 no-repeat;
  width: auto;
  height: 40px;
}


/* line 72, ../sass/_custom.scss */
.header .header-content {
  width: auto;
  max-width: 984px;
  margin: 0 auto;
  position: relative;
}

.header-small .header-content {
  width: auto;
  max-width: 984px;
  margin: 0 auto;
  position: relative;
}

/* line 78, ../sass/_custom.scss */
.header-manage-elements {
  height: 40px;
  position: fixed;
  max-width: 984px;
  width: 100%;
  z-index: 10;
}

/* line 86, ../sass/_custom.scss */
.region-header-right {
  float: right;
  position: relative;
  max-width: 334px;
  width: 100%;
  -webkit-box-shadow: 0 0 3px #666666;
  -moz-box-shadow: 0 0 3px #666666;
  box-shadow: 0 0 3px #666666;
  background: #FAFAFA;
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  -moz-border-radius-bottomleft: 3px;
  -moz-border-radius-bottomright: 3px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

/* line 98, ../sass/_custom.scss */
.contact-phone {
  width: 16.16766%;
  float: left;
  background: url(../images/header-separator.png) 100% 0 no-repeat;
}
/* line 103, ../sass/_custom.scss */
.contact-phone .phone-button {
  display: block;
  text-indent: -9999px;
  height: 40px;
  background: url(../images/icon-phone.png) 50% 11px no-repeat #fafafa;
  margin-right: 2px;
}
/* line 110, ../sass/_custom.scss */
.contact-phone .phone-button:hover, .contact-phone .phone-button.active {
  background-position: 50% -23px;
}
/* line 113, ../sass/_custom.scss */
.contact-phone .phone-button:active {
  background-position: 50% -53px;
}

/* line 119, ../sass/_custom.scss */
.header-home-block {
  width: 15.86826%;
  float: left;
  background: url(../images/header-separator.png) 100% 0 no-repeat;
}
/* line 124, ../sass/_custom.scss */
.header-home-block .home-button {
  display: block;
  text-indent: -9999px;
  height: 40px;
  background: url(../images/icon-home.png) 50% 7px no-repeat #fafafa;
  margin-right: 2px;
  -moz-border-radius-bottomleft: 3px;
  -webkit-border-bottom-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
/* line 135, ../sass/_custom.scss */
.header-home-block .home-button:hover, .header-home-block .home-button.active {
  background-position: 50% -27px;
}
/* line 138, ../sass/_custom.scss */
.header-home-block .home-button:active {
  background-position: 50% -27px;
}

/* line 143, ../sass/_custom.scss */
.help-center {
  width: 13.17365%;
  float: left;
  background: url(../images/header-separator.png) 100% 0 no-repeat;
}
/* line 148, ../sass/_custom.scss */
.help-center .help-center-button {
  display: block;
  text-indent: -9999px;
  height: 40px;
  background: url(../images/icon-help-center.png) 50% 11px no-repeat #fafafa;
  margin-right: 2px;
}
/* line 155, ../sass/_custom.scss */
.help-center .help-center-button:hover, .help-center .help-center-button.active {
  background-position: 50% -21px;
}
/* line 158, ../sass/_custom.scss */
.help-center .help-center-button:active {
  background-position: 50% -51px;
}

/* line 164, ../sass/_custom.scss */
.block-locale {
  width: 29.94012%;
  float: left;
  background: url(../images/header-separator.png) 100% 0 no-repeat;
}
/* line 169, ../sass/_custom.scss */
.block-locale ul {
  margin: 0;
}
/* line 172, ../sass/_custom.scss */
.block-locale ul li {
  list-style: none;
}
/* line 176, ../sass/_custom.scss */
.block-locale .language-link, .block-locale div.active-lang {
  margin-right: 2px;
  height: 40px;
  display: block;
  line-height: 37px;
  background: none #FAFAFA;
  font-size: 16px;
  font-family: 'ubuntumedium';
  font-weight: normal;
  color: #b3ada4;
  text-decoration: none;
  padding-left: 15%;
}
/* line 189, ../sass/_custom.scss */
.block-locale div.active-lang {
  cursor: pointer;
  position: relative;
  background: url(../images/icon-choose-language.png) 90% -155% no-repeat #fafafa;
}
/* line 193, ../sass/_custom.scss */
.block-locale div.active-lang:hover {
  color: #4C4A45;
  background-position: 90% 262%;
}
/* line 199, ../sass/_custom.scss */
.block-locale .language-link:hover {
  color: #4C4A45;
  background-position: 90% 262%;
}
/* line 204, ../sass/_custom.scss */
.block-locale .language-link a {
  cursor: default;
  color: #4c4a45;
}
/* line 209, ../sass/_custom.scss */
.block-locale .language-switcher-locale-url {
  background: #fafafa;
  left: 0;
  top: 38px;
  padding: 15px 0;
  font-family: 'permianseriftypefaceregular';
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  -moz-border-radius-bottomleft: 3px;
  -moz-border-radius-bottomright: 3px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  -webkit-box-shadow: 0px 1px 3px 0px #666666;
  -moz-box-shadow: 0px 1px 3px 0px #666666;
  box-shadow: 0px 1px 3px 0px #666666;
}
/* line 218, ../sass/_custom.scss */
.block-locale .language-switcher-locale-url li {
  display: inline;
  padding: 0 15px;
}
/* line 223, ../sass/_custom.scss */
.block-locale .language-switcher-locale-url li.active-lg .language-link {
  color: #4c4a45;
  cursor: default;
}
/* line 226, ../sass/_custom.scss */
.block-locale .language-switcher-locale-url li.active-lg .language-link:hover {
  text-decoration: none;
}

/* line 223, ../sass/_custom.scss */
.block-locale .language-switcher-locale-url li.active-lg1 .language-link {
  color: grey;
  cursor: default;
}
/* line 226, ../sass/_custom.scss */
.block-locale .language-switcher-locale-url li.active-lg1 .language-link:hover {
  text-decoration: none;
}


/* line 232, ../sass/_custom.scss */
.block-locale .language-switcher-locale-url a {
  color: #999287;
  background: transparent;
  padding: 0;
  display: inline;
  height: auto;
  line-height: 1em;
  font-family: 'permianseriftypefaceregular';
}
/* line 241, ../sass/_custom.scss */
.block-locale .language-switcher-locale-url a:hover {
  color: #4c4a45;
  text-decoration: underline;
}

/* line 251, ../sass/_custom.scss */
.change-font {
  width: 22.51462%;
  float: left;
}
/* line 255, ../sass/_custom.scss */
.change-font .font-wrapper {
  background: #FAFAFA;
  height: 39px;
  line-height: 34px;
  padding-left: 15.58441558441558%;
  padding-top: 1px;
  -moz-border-radius-bottomright: 3px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
/* line 265, ../sass/_custom.scss */
.change-font .font-wrapper a {
  text-decoration: none;
  font-family: 'ubuntumedium';
  color: #b3ada4;
}
/* line 271, ../sass/_custom.scss */
.change-font .font-wrapper a.active-size, .change-font .font-wrapper a:hover {
  color: #4c4a45;
}
/* line 274, ../sass/_custom.scss */
.change-font .font-wrapper a.size-small {
  font-size: 16px;
}
/* line 277, ../sass/_custom.scss */
.change-font .font-wrapper a.size-medium {
  font-size: 20px;
}
/* line 280, ../sass/_custom.scss */
.change-font .font-wrapper a.size-big {
  font-size: 24px;
}

/* line 288, ../sass/_custom.scss */
h1.site-name {
  padding: 25px 0 0 0;
  margin-bottom: 0;
}
/* line 292, ../sass/_custom.scss */
h1.site-name a.logo {
  background: url(../images/logo-ro.png) 0 0 no-repeat;
  display: block;
  overflow: hidden;
  text-indent: -9999px;
  max-width: 571px;
  background-size: contain;
  width: 100%;
  height: 62px;
}

/* line 308, ../sass/_custom.scss */
.site-description {
  text-align: center;
  color: #FFF;
  font-family: 'permianseriftypefaceregular';
  padding: 25px 0 0;
  width: 82.92683%;
  text-shadow: 0px 0px 4px rgba(39, 8, 14, 0.8);
  margin: 0 auto;
}
/* line 317, ../sass/_custom.scss */
.site-description .title {
  font-size: 48px;
  line-height: 1em;
  text-transform: uppercase;
  font-family: 'permianseriftypefacebold';
}
/* line 323, ../sass/_custom.scss */
.site-description .description {
  font-size: 22px;
  line-height: 29px;
}

/* line 329, ../sass/_custom.scss */
.footer {
  border-top: 1px solid #DDDDDD;
  padding: 34px 10px;
}

/* line 333, ../sass/_custom.scss */
.footer-wrapper {
  width: auto;
  max-width: 984px;
  margin: 0 auto;
}
/* line 338, ../sass/_custom.scss */
.footer-wrapper .left {
  float: left;
  width: 50%;
}
/* line 342, ../sass/_custom.scss */
.footer-wrapper .right {
  float: right;
  width: 50%;
  text-align: right;
}
/* line 347, ../sass/_custom.scss */
.footer-wrapper p {
  font-size: 14px;
  font-family: 'ubuntulight';
}

/* line 353, ../sass/_custom.scss */
.content-container {
  padding: 24px 0;
  background: #EFEFEF;
}

/* line 358, ../sass/_custom.scss */
.content-container-wrapper {
  width: auto;
  max-width: 984px;
  margin: 0 auto;
  position: relative;
}

/* line 366, ../sass/_custom.scss */
a.file {
  color: #e66247 !important;
  font-family: 'ubunturegular';
  text-decoration: none;
  padding-left: 20px;
}
/* line 372, ../sass/_custom.scss */
a.file.pdf {
  background: url(../images/file-pdf.png) 0 center no-repeat;
}
/* line 375, ../sass/_custom.scss */
a.file:hover {
  text-decoration: underline;
}

/* line 379, ../sass/_custom.scss */
a.big-file {
  color: #e66247 !important;
  font-family: 'ubunturegular';
  text-decoration: none;
  padding-left: 30px;
}
/* line 385, ../sass/_custom.scss */
a.big-file.pdf {
  background: url(../images/file-pdf-big.png) 0 center no-repeat;
}
/* line 388, ../sass/_custom.scss */
a.big-file:hover {
  text-decoration: underline;
}

/* line 392, ../sass/_custom.scss */
.slight-submenu-master-ul {
  position: relative;
}

/* line 396, ../sass/_custom.scss */
.slight-submenu-button {
  background: url(../images/arrow-more.png) center center no-repeat;
  display: inline;
  margin-left: 8px;
  width: 10px;
  height: 18px;
  cursor: pointer;
  position: absolute;
}

/* line 405, ../sass/_custom.scss */
.configurator {
  background: url(../images/configurator-shadow.png) center 100% no-repeat;
  padding-bottom: 3px;
  margin-bottom: 1.5em;
}
/* line 410, ../sass/_custom.scss */
.configurator .configurator-content {
  background: #f6f6f6;
  border: 1px solid #dddddd;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  position: relative;
  z-index: 3;
}
/* line 417, ../sass/_custom.scss */
.configurator .configurator-content a.conf-toggle,.configurator .configurator-content a.conf-toggle-modif {
  background: url(../images/conf-toggle-bg.png) 0 0 repeat-x;
  display: block;
  font-size: 0.9em;
  text-align: center;
  text-decoration: none;
  color: #8f8b83;
  padding: 3px 0;
}
/* line 425, ../sass/_custom.scss */
.configurator .configurator-content a.conf-toggle span,.configurator .configurator-content a.conf-toggle-modif span  {
  background:  url(../images/arrow-down.png) 100% center no-repeat;
  padding-right: 25px;
}
/* line 430, ../sass/_custom.scss */
.configurator .configurator-content a.conf-toggle.active span,.configurator .configurator-content a.conf-toggle-modif.active span  {
  background: url(../images/arrow-up.png) 100% center no-repeat;
}

/* line 435, ../sass/_custom.scss */
.configurator .configurator-content .conf-wrapper,.configurator .configurator-content .conf-wrapper-modif{
  border-bottom: 1px solid #ebebea;
  background: #fefefe;
  background: -moz-linear-gradient(90deg, #fefefe 0%, #f6f6f6 50%);
  background: -webkit-linear-gradient(90deg, #fefefe 0%, #f6f6f6 50%);
  background: -o-linear-gradient(90deg, #fefefe 0%, #f6f6f6 50%);
  background: -ms-linear-gradient(90deg, #fefefe 0%, #f6f6f6 50%);
  background: linear-gradient(180deg, #fefefe 0%, #f6f6f6 50%);
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.configurator .configurator-content .conf-wrapper-modif{
  border-bottom: 1px solid #ebebea;
  background: #fefefe;
  background: -moz-linear-gradient(90deg, #fefefe 0%, #f6f6f6 50%);
  background: -webkit-linear-gradient(90deg, #fefefe 0%, #f6f6f6 50%);
  background: -o-linear-gradient(90deg, #fefefe 0%, #f6f6f6 50%);
  background: -ms-linear-gradient(90deg, #fefefe 0%, #f6f6f6 50%);
  background: linear-gradient(180deg, #fefefe 0%, #f6f6f6 50%);
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
/* line 445, ../sass/_custom.scss */
.configurator .configurator-content .filter-block {
  float: left;
  width: 33.29939%;
}
/* line 449, ../sass/_custom.scss */
.configurator .configurator-content .filter-block .block-title {
  background: url(../images/arrow-right.png) 100% 50% no-repeat #f8f8f7;
  border-bottom: 1px solid #FFFFFF;
  text-align: center;
  color: #7b7871;
  padding: 10px 0;
  font-family: 'permiansanstypefaceregular';
}
/* line 458, ../sass/_custom.scss */
.configurator .configurator-content .filter-block.last .block-title {
  background: #f8f8f7;
}
/* line 462, ../sass/_custom.scss */
.configurator .configurator-content .filter-block .block-content {
  padding: 10px 20px;
  border-top: 1px solid #eceae9;
}
/* line 466, ../sass/_custom.scss */
.configurator .configurator-content .filter-block .options {
  line-height: 1.3em;
  font-family: 'permianseriftypefaceregular';
}
/* line 470, ../sass/_custom.scss */
.configurator .configurator-content .filter-block .options ul {
  list-style: none;
  margin: 0;
}
/* line 474, ../sass/_custom.scss */
.configurator .configurator-content .filter-block .options ul li {
  display: block;
  margin: 7px 0 7px 0;
  padding: 0;
}
/* line 479, ../sass/_custom.scss */
.configurator .configurator-content .filter-block .options ul li a {
  color: #393632;
  padding-bottom: 10px;
}
/* line 482, ../sass/_custom.scss */
.configurator .configurator-content .filter-block .options ul li a.select-option {
  display: inline-block;
  margin-bottom: 10px;
}
/* line 486, ../sass/_custom.scss */
.configurator .configurator-content .filter-block .options ul li a.active {
  color: #7b7871;
  text-decoration: none;
}
/* line 493, ../sass/_custom.scss */
.configurator .configurator-content .filter-block .options ul li li li li {
  padding-left: 10px;
  font-size: 0.9em;
}
/* line 500, ../sass/_custom.scss */
.configurator .configurator-content .filter-block .options ul li.li-with-ul li {
  padding-left: 10px;
}
/* line 504, ../sass/_custom.scss */
.configurator .configurator-content .filter-block .options ul li label {
  text-decoration: underline;
  font-size: 15px;
}
/* line 508, ../sass/_custom.scss */
.configurator .configurator-content .filter-block .options ul li input {
  margin-right: 5px;
}
/* line 514, ../sass/_custom.scss */
.configurator .configurator-content .filter-block label {
  display: inline;
  font-weight: normal;
}
/* line 518, ../sass/_custom.scss */
.configurator .configurator-content .filter-block .period {
  display: block;
  margin-bottom: 1em;
}
/* line 522, ../sass/_custom.scss */
.configurator .configurator-content .filter-block .period input[type="text"] {
  background: url(../images/calendar-icon.png) 100% 0 no-repeat #ebe9e6;
  border: 0;
  color: #7b7871;
  font-size: 0.9em;
  font-family: 'permianseriftypefaceregular';
  display: block;
  padding: 0 40px 0 10px;
  height: 32px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  width: 100%;
}
/* line 534, ../sass/_custom.scss */
.configurator .configurator-content .filter-block .period input[type="text"]:focus {
  background-position: 100% -32px;
}
/* line 539, ../sass/_custom.scss */
.configurator .configurator-content .filter-block .dropdowns {
  min-height: 170px;
  margin-bottom: 1em;
}
/* line 542, ../sass/_custom.scss */
.configurator .configurator-content .filter-block .dropdowns .ui-multiselect {
  width: 100% !important;
  background: #ebe9e6;
  border: 0;
  color: #7b7871;
  font-size: 0.9em;
  font-family: 'permianseriftypefaceregular';
  display: block;
  padding: 0 10px;
  height: 32px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}
/* line 555, ../sass/_custom.scss */
.configurator .configurator-content .filter-block .dropdowns .ui-multiselect.ui-state-default span.ui-icon {
  background: url(../images/arrow-more.png) center center no-repeat;
}
/* line 561, ../sass/_custom.scss */
.configurator .configurator-content .filter-block .export {
  float: left;
  background: #ebe9e6;
  width: 61.67883%;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
  color: #7b7871;
  font-family: 'permianslabseriftypefaceRg';
  position: relative;
  padding-bottom: 5px;
  padding-top: 5px;
  margin-bottom: 1em;
}
/* line 574, ../sass/_custom.scss */
.configurator .configurator-content .filter-block .export span {
  background: url(../images/arrow-more.png) 100% center no-repeat;
  padding-right: 12px;
  cursor: pointer;
}
/* line 579, ../sass/_custom.scss */
.configurator .configurator-content .filter-block .export span.disabled {
  cursor: default;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=44)";
  filter: alpha(opacity=44);
  -moz-opacity: 0.44;
  -khtml-opacity: 0.44;
  opacity: 0.44;
}
/* line 588, ../sass/_custom.scss */
.configurator .configurator-content .filter-block .export .export-format {
  position: absolute;
  top: 100%;
  display: none;
  left: 0;
  font-size: 0.9em;
  background: #ebe9e6;
  padding: 0.5em 5%;
  border-top: 1px solid #e4e2df;
  width: 90%;
  text-align: left;
}
/* line 599, ../sass/_custom.scss */
.configurator .configurator-content .filter-block .export .export-format a {
  display: block;
  color: #68635a !important;
}
/* line 603, ../sass/_custom.scss */
.configurator .configurator-content .filter-block .export .export-format a:hover {
  color: #1f1d1b !important;
}
/* line 609, ../sass/_custom.scss */
.configurator .configurator-content .filter-block .export:hover .export-format {
  display: block;
}

/* line 617, ../sass/_custom.scss */
.report-container {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #dddddd;
  background: #FFFFFF;
}
/* line 622, ../sass/_custom.scss */
.report-container .block-title {
  border-bottom: 1px solid #e4e2de;
  text-align: center;
  padding: 0.8em 0;
  color: #7b7871;
  font-family: 'permiansanstypefaceregular';
}
/* line 629, ../sass/_custom.scss */
.report-container .block-title span {
  color: #393632;
  font-family: 'permianseriftypefaceregular';
}
/* line 634, ../sass/_custom.scss */
.report-container .report {
  background: #fdfdfd;
  border-top: 1px solid #f9f9f8;
  max-height: 100% !important;
  height: auto !important;
}
/* line 639, ../sass/_custom.scss */
.report-container .report.scrollbar-inner {
  padding-right: 0 !important;
  padding-bottom: 8px !important;
}
/* line 643, ../sass/_custom.scss */
.report-container .report table {
  margin: 0;
  font-family: 'ubuntulight';
  font-size: 0.9em;
}
/* line 648, ../sass/_custom.scss */
.report-container .report table th {
  background: #f1f0ee;
  border: 1px solid #e1dfda;
  border-top: 0;
  color: #54514d;
  font-family: 'permiansanstypefaceregular';
  padding: 1em;
  line-height: 1.4em;
  vertical-align: middle;
  font-weight: normal;
}
/* line 659, ../sass/_custom.scss */
.report-container .report table th:first-child {
  border-left: 0;
}
/* line 662, ../sass/_custom.scss */
.report-container .report table th:last-child {
  border-right: 0;
}
/* line 666, ../sass/_custom.scss */
.report-container .report table td {
  border: 1px solid #e4e4e4;
  padding: 0.4em 1em;
  text-align: right;
  min-width: 5em;
}
/* line 672, ../sass/_custom.scss */
.report-container .report table td:first-child {
  border-left: 0;
}
/* line 675, ../sass/_custom.scss */
.report-container .report table td:last-child {
  border-right: 0;
}

/* line 682, ../sass/_custom.scss */
.form-submit {
  border: 0;
  background: #eec22a;
  color: #FFFFFF;
  display: block;
  width: 36.49635%;
  text-align: center;
  font-family: 'permianslabseriftypefaceRg';
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding-bottom: 5px;
  padding-top: 5px;
  float: right;
  margin-bottom: 1em;
}
/* line 696, ../sass/_custom.scss */
.form-submit.disabled {
  background: #d6d2c9;
  color: #e9e8e5;
}

/* line 701, ../sass/_custom.scss */
.ui-datepicker {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(56, 51, 45, 0.2);
  -moz-box-shadow: 0px 0px 10px 0px rgba(56, 51, 45, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(56, 51, 45, 0.2);
}
/* line 706, ../sass/_custom.scss */
.ui-datepicker.ui-widget-content {
  border: 0;
  border-top: 1px solid #ebe9e6;
  background: #ebe9e6;
  color: #68635a;
  padding: 0;
  font-family: 'permiansanstypefaceregular';
  font-size: 0.9em;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  padding-left: 1px;
}
/* line 717, ../sass/_custom.scss */
.ui-datepicker table {
  margin: 0 0 1px;
}
/* line 720, ../sass/_custom.scss */
.ui-datepicker .ui-datepicker-header {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  padding: 2px 0;
  border: 0;
  background: #dfddd9;
  color: #54514d;
  font-weight: normal;
}
/* line 729, ../sass/_custom.scss */
.ui-datepicker .ui-datepicker-header .ui-datepicker-next span {
  background: url(../images/month-next.png) center center no-repeat;
}
/* line 734, ../sass/_custom.scss */
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev span {
  background: url(../images/month-prev.png) center center no-repeat;
}
/* line 739, ../sass/_custom.scss */
.ui-datepicker .ui-datepicker-header .ui-state-hover,
.ui-datepicker .ui-datepicker-header .ui-state-focus {
  background: transparent;
  border: 0;
  cursor: pointer;
}
/* line 744, ../sass/_custom.scss */
.ui-datepicker .ui-datepicker-header .ui-datepicker-next-hover {
  right: 2px;
  top: 2px;
}
/* line 747, ../sass/_custom.scss */
.ui-datepicker .ui-datepicker-header .ui-datepicker-next-hover span {
  background: url(../images/month-next-hover.png) center center no-repeat;
}
/* line 751, ../sass/_custom.scss */
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev-hover {
  left: 2px;
  top: 2px;
}
/* line 754, ../sass/_custom.scss */
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev-hover span {
  background: url(../images/month-prev-hover.png) center center no-repeat;
}
/* line 762, ../sass/_custom.scss */
.ui-datepicker .ui-datepicker-calendar th {
  background: #dfddd9;
  padding: 0;
  font-weight: normal;
  color: #68635a;
  font-size: 0.9em;
}
/* line 769, ../sass/_custom.scss */
.ui-datepicker .ui-datepicker-calendar td {
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9em;
}
/* line 774, ../sass/_custom.scss */
.ui-datepicker .ui-datepicker-calendar td a {
  text-align: center;
  margin-left: -1px;
  margin-bottom: -1px;
}
/* line 779, ../sass/_custom.scss */
.ui-datepicker .ui-datepicker-calendar td a.ui-state-default {
  background: #ffffff;
  border: 1px solid #e0deda;
  color: #4e4c48;
}
/* line 784, ../sass/_custom.scss */
.ui-datepicker .ui-datepicker-calendar td a.ui-state-active {
  background: #6c6963;
  color: #ffffff;
}
/* line 790, ../sass/_custom.scss */
.ui-datepicker .ui-datepicker-calendar td span.ui-state-default {
  background: #f3f2f0;
  border: 1px solid #e0deda;
  color: #aaa9a7;
  margin-bottom: -1px;
  margin-left: -1px;
  text-align: center;
}

/* line 802, ../sass/_custom.scss */
.ui-multiselect {
  padding: 2px 0 2px 4px;
  text-align: left;
}
/* line 806, ../sass/_custom.scss */
.ui-multiselect span.ui-icon {
  float: right;
}

/* line 811, ../sass/_custom.scss */
.ui-multiselect-single .ui-multiselect-checkboxes input {
  position: absolute !important;
  top: auto !important;
  left: -9999px;
}

/* line 812, ../sass/_custom.scss */
.ui-multiselect-single .ui-multiselect-checkboxes label {
  padding: 5px !important;
}

/* line 814, ../sass/_custom.scss */
.ui-multiselect-header {
  margin-bottom: 3px;
  padding: 3px 0 3px 4px;
}
/* line 818, ../sass/_custom.scss */
.ui-multiselect-header ul {
  font-size: 0.9em;
}
/* line 821, ../sass/_custom.scss */
.ui-multiselect-header ul li {
  float: left;
  padding: 0 10px 0 0;
}
/* line 824, ../sass/_custom.scss */
.ui-multiselect-header ul li.ui-multiselect-close {
  float: right;
  text-align: right;
  padding-right: 0;
}
/* line 830, ../sass/_custom.scss */
.ui-multiselect-header a {
  text-decoration: none;
}
/* line 832, ../sass/_custom.scss */
.ui-multiselect-header a:hover {
  text-decoration: underline;
}
/* line 836, ../sass/_custom.scss */
.ui-multiselect-header span.ui-icon {
  float: left;
}

/* line 840, ../sass/_custom.scss */
.ui-multiselect-menu {
  display: none;
  padding: 3px;
  position: absolute;
  z-index: 10000;
  text-align: left;
}
/* line 847, ../sass/_custom.scss */
.ui-multiselect-menu.ui-widget-content {
  border: 0;
  border-top: 1px solid #e4e2df;
  background: #ebe9e6;
  color: #68635a;
  padding: 5px 10px;
  font-family: 'permianseriftypefaceregular';
  font-size: 0.9em;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  margin-top: -2px;
}
/* line 861, ../sass/_custom.scss */
.ui-multiselect-menu.ui-widget-content .ui-state-hover,
.ui-multiselect-menu.ui-widget-content .ui-state-focus {
  background: transparent;
  border: 0;
  color: #68635a;
}

/* line 869, ../sass/_custom.scss */
.ui-multiselect-checkboxes {
  position: relative;
}
/* line 873, ../sass/_custom.scss */
.ui-multiselect-checkboxes label {
  cursor: default;
  display: block;
  border: 0;
  padding: 4px 0;
  font-weight: normal;
  text-decoration: underline;
}
/* line 881, ../sass/_custom.scss */
.ui-multiselect-checkboxes label.ui-state-hover {
  color: #1f1d1b !important;
}
/* line 885, ../sass/_custom.scss */
.ui-multiselect-checkboxes label input {
  position: relative;
  top: 1px;
  margin-right: 5px;
}
/* line 891, ../sass/_custom.scss */
.ui-multiselect-checkboxes li {
  clear: both;
  font-size: 0.9em;
  padding-right: 3px;
  display: block;
}
/* line 897, ../sass/_custom.scss */
.ui-multiselect-checkboxes li.ui-multiselect-optgroup-label {
  text-align: center;
  font-weight: bold;
  border-bottom: 0;
}
/* line 902, ../sass/_custom.scss */
.ui-multiselect-checkboxes li.ui-multiselect-optgroup-label a {
  display: block;
  padding: 3px;
  margin: 1px 0;
  text-decoration: none;
}

/* remove label borders in IE6 because IE6 does not support transparency */
/* line 912, ../sass/_custom.scss */
* html .ui-multiselect-checkboxes label {
  border: none;
}

/*  Styled scroll  */
/*************** SCROLLBAR BASE CSS ***************/
/* line 918, ../sass/_custom.scss */
.scroll-wrapper {
  overflow: hidden !important;
  padding: 0 !important;
  position: relative;
  max-height: 300px;
}
/* line 924, ../sass/_custom.scss */
.scroll-wrapper > .scroll-content {
  border: none !important;
  box-sizing: content-box !important;
  height: auto;
  left: 0;
  margin: 0;
  max-height: none !important;
  max-width: none !important;
  overflow: scroll !important;
  padding: 0;
  position: relative !important;
  top: 0;
  width: auto !important;
  -webkit-overflow-scrolling: touch
  
}
/* line 937, ../sass/_custom.scss */
.scroll-wrapper > .scroll-content::-webkit-scrollbar {
  height: 0;
  width: 0;
}

/* line 944, ../sass/_custom.scss */
.scroll-element {
  display: none;
}

/* line 948, ../sass/_custom.scss */
.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
  display: block;
}

/* line 954, ../sass/_custom.scss */
.scroll-element .scroll-bar,
.scroll-element .scroll-arrow {
  cursor: default;
}

/* line 959, ../sass/_custom.scss */
.scrollbar-inner {
  max-height: 300px;
  overflow: auto;
}
/* line 963, ../sass/_custom.scss */
.scrollbar-inner > .scroll-element {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}
/* line 970, ../sass/_custom.scss */
.scrollbar-inner > .scroll-element div {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}
/* line 982, ../sass/_custom.scss */
.scrollbar-inner > .scroll-element .scroll-bar {
  background-color: #4c4a45;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}
/* line 985, ../sass/_custom.scss */
.scrollbar-inner > .scroll-element .scroll-bar:hover {
  background-color: #4c4a45;
}
/* line 990, ../sass/_custom.scss */
.scrollbar-inner > .scroll-element.scroll-x {
  bottom: 0;
  height: 0;
  left: 0;
  width: 100%;
}
/* line 995, ../sass/_custom.scss */
.scrollbar-inner > .scroll-element.scroll-x .scroll-bar {
  height: 8px;
  min-width: 10px;
  top: -12px;
}
/* line 1001, ../sass/_custom.scss */
.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -16px;
}
/* line 1006, ../sass/_custom.scss */
.scrollbar-inner > .scroll-element.scroll-y {
  height: 100%;
  right: 0;
  top: 0;
  width: 0;
}
/* line 1011, ../sass/_custom.scss */
.scrollbar-inner > .scroll-element.scroll-y .scroll-bar {
  left: -12px;
  min-height: 10px;
  width: 8px;
}
/* line 1017, ../sass/_custom.scss */
.scrollbar-inner > .scroll-element.scroll-y.scroll-scrolly_visible .scroll-element_size {
  top: -16px;
}
/* line 1023, ../sass/_custom.scss */
.scrollbar-inner.scroll-draggable .scroll-bar {
  background-color: #4c4a45;
}

/* line 1029, ../sass/_custom.scss */
.scroll-wrapper .scrollbar-inner {
  padding-right: 20px !important;
}

/* line 1034, ../sass/_custom.scss */
.contacts-block {
  display: none;
}
/* line 1036, ../sass/_custom.scss */
.contacts-block .content {
  background: #fafafa;
  z-index: 0;
  width: 100%;
  position: absolute;
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  -moz-border-radius-bottomleft: 3px;
  -moz-border-radius-bottomright: 3px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  -webkit-box-shadow: 0px 1px 3px 0px #666666;
  -moz-box-shadow: 0px 1px 3px 0px #666666;
  box-shadow: 0px 1px 3px 0px #666666;
  left: 0;
  top: 38px;
  padding-top: 4px;
}
/* line 1047, ../sass/_custom.scss */
.contacts-block ul {
  list-style: none;
  margin: 0;
}
/* line 1051, ../sass/_custom.scss */
.contacts-block .contact-titles {
  margin-bottom: 15px;
}
/* line 1053, ../sass/_custom.scss */
.contacts-block .contact-titles li {
  display: inline;
  margin-right: 25px;
}
/* line 1056, ../sass/_custom.scss */
.contacts-block .contact-titles li.last {
  margin-right: 0;
}
/* line 1059, ../sass/_custom.scss */
.contacts-block .contact-titles li a {
  color: #999287;
  text-decoration: none;
}
/* line 1062, ../sass/_custom.scss */
.contacts-block .contact-titles li a:hover {
  color: #4c4a45;
  text-decoration: underline;
}
/* line 1066, ../sass/_custom.scss */
.contacts-block .contact-titles li a.active-tab {
  color: #4c4a45;
  cursor: default;
  text-decoration: none;
}
/* line 1075, ../sass/_custom.scss */
.contacts-block .contacts-text li {
  display: block;
  padding: 1em 0;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #eeedec;
  line-height: 1.4em;
  margin: 0;
  color: #4c4a45;
}
/* line 1083, ../sass/_custom.scss */
.contacts-block .contacts-text li.first {
  padding-top: 0;
  border-top: 0;
}
/* line 1087, ../sass/_custom.scss */
.contacts-block .contacts-text li.last {
  padding-bottom: 0;
  border-bottom: 0;
}
/* line 1091, ../sass/_custom.scss */
.contacts-block .contacts-text li p {
  margin: 0;
}
/* line 1094, ../sass/_custom.scss */
.contacts-block .contacts-text li span {
  color: #999796;
  font-family: 'permianseriftypefaceitalic';
}
/* line 1098, ../sass/_custom.scss */
.contacts-block .contacts-text li a {
  color: #4c4a45;
  font-size: 1.1em;
  text-decoration: none;
}
/* line 1102, ../sass/_custom.scss */
.contacts-block .contacts-text li a:hover {
  text-decoration: underline;
}
/* line 1108, ../sass/_custom.scss */
.contacts-block .contacts-text #working-hours span {
  display: block;
}
/* line 1111, ../sass/_custom.scss */
.contacts-block .contacts-text #working-hours .intro {
  color: #999287;
  font-size: 0.8em;
}
/* line 1117, ../sass/_custom.scss */
.contacts-block .contact-container {
  padding: 10px 2px 10px 18px;
}

/* line 1121, ../sass/_custom.scss */
#block-interface-ext-help-block {
  display: none;
}
/* line 1123, ../sass/_custom.scss */
#block-interface-ext-help-block h2 {
  display: none;
}
/* line 1126, ../sass/_custom.scss */
#block-interface-ext-help-block .content {
  background: #fafafa;
  z-index: 0;
  width: 100%;
  position: absolute;
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  -moz-border-radius-bottomleft: 3px;
  -moz-border-radius-bottomright: 3px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  -webkit-box-shadow: 0px 1px 3px 0px #666666;
  -moz-box-shadow: 0px 1px 3px 0px #666666;
  box-shadow: 0px 1px 3px 0px #666666;
  left: 0;
  top: 38px;
  padding-top: 4px;
}
/* line 1137, ../sass/_custom.scss */
#block-interface-ext-help-block .node-list {
  padding: 15px 18px;
}
/* line 1139, ../sass/_custom.scss */
#block-interface-ext-help-block .node-list a {
  background: url(../images/question-item.png) 0 11px no-repeat;
  color: #66635d;
  display: block;
  padding-left: 10px;
  line-height: 1.4em;
}
/* line 1145, ../sass/_custom.scss */
#block-interface-ext-help-block .node-list a:hover {
  color: #000000;
  text-decoration: underline;
}
/* line 1150, ../sass/_custom.scss */
#block-interface-ext-help-block .node-list .text {
  color: #999287;
  font-size: 0.8em;
  line-height: 1.5em;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #eeedec;
}
/* line 1158, ../sass/_custom.scss */
#block-interface-ext-help-block .node-list .footer-text {
  color: #999287;
  font-size: 0.8em;
  line-height: 1.5em;
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #eeedec;
}
/* line 1166, ../sass/_custom.scss */
#block-interface-ext-help-block .node-list .footer-text a {
  background: none;
  padding: 0;
  display: inline;
}

/*  QTIP   */
/* line 1177, ../sass/_custom.scss */
.qtip-bnm {
  background: #ffffff;
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  color: #999690;
  font-family: 'permiansanstypefaceregular';
  font-size: 0.9em;
  line-height: 1.3em;
  padding: 0.3em;
  margin-top: 5px;
  -webkit-box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.28);
  box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.28);
}
/* line 1190, ../sass/_custom.scss */
.qtip-bnm:after {
  content: '';
  background: url(../images/qtip-tail.png) 0 0 no-repeat;
  height: 11px;
  width: 23px;
  display: block;
  position: absolute;
  top: -11px;
  right: 50%;
  margin-left: -11px;
}

@media screen and (max-width: 984px) {
  /* line 1205, ../sass/_custom.scss */
  .content-container,
  .header,
  .footer {
    padding-left: 1em;
    padding-right: 1em;
  }
}
@media screen and (max-width: 880px) {
  /* line 1211, ../sass/_custom.scss */
  .site-description {
    width: 95%;
    padding: 0;
  }
  /* line 1215, ../sass/_custom.scss */
  .site-description .title {
    font-size: 32px;
  }
  /* line 1218, ../sass/_custom.scss */
  .site-description .description {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  /* line 1226, ../sass/_custom.scss */
  .configurator .configurator-content .filter-block {
    float: none;
    width: 100%;
  }
  /* line 1230, ../sass/_custom.scss */
  .configurator .configurator-content .filter-block .block-title {
    background: #f8f8f7;
  }
}
@media screen and (max-width: 480px) {
  /* line 1238, ../sass/_custom.scss */
  h1.site-name {
    padding-top: 50px;
  }
  /* line 1240, ../sass/_custom.scss */
  h1.site-name a.logo {
    height: 48px;
  }

  /* line 1244, ../sass/_custom.scss */
  .site-description {
    width: 100%;
    padding: 0;
  }
  /* line 1248, ../sass/_custom.scss */
  .site-description .title {
    font-size: 24px;
  }
  /* line 1251, ../sass/_custom.scss */
  .site-description .description {
    font-size: 14px;
    line-height: 1.3em;
  }

  /* line 1258, ../sass/_custom.scss */
  .footer-wrapper .left,
  .footer-wrapper .right {
    width: 100%;
    float: none;
    text-align: center;
  }
}
