/**
 * @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. */
/*
$legacy-support-for-ie6: false;
$legacy-support-for-ie7: false;
$legacy-support-for-ie8: true;
*/
@font-face {
  font-family: "bangwhackpow";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/bangwhackpow.eot");
  src: url("../fonts/bangwhackpow.eot?#iefix") format("embedded-opentype"), url("../fonts/bangwhackpow.woff") format("woff"), url("../fonts/bangwhackpow.ttf") format("truetype"), url("../fonts/bangwhackpow.svg#bangwhackpow") format("svg");
}
@font-face {
  font-family: "british_council";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/british_council_regular.eot");
  src: url("../fonts/british_council_regular.eot?#iefix") format("embedded-opentype"), url("../fonts/british_council_regular.woff") format("woff"), url("../fonts/british_council_regular.ttf") format("truetype"), url("../fonts/british_council_regular.svg#british_council_regular") format("svg");
}
@font-face {
  font-family: "british_council-bold";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/british_council_bold.eot");
  src: url("../fonts/british_council_bold.eot?#iefix") format("embedded-opentype"), url("../fonts/british_council_bold.woff") format("woff"), url("../fonts/british_council_bold.ttf") format("truetype"), url("../fonts/british_council_bold.svg#british_council_bold") format("svg");
}
@font-face {
  font-family: "kronika";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/kronika.eot");
  src: url("../fonts/kronika.eot?#iefix") format("embedded-opentype"), url("../fonts/kronika.woff") format("woff"), url("../fonts/kronika.ttf") format("truetype"), url("../fonts/kronika.svg#kronika") format("svg");
}
@font-face {
  font-family: "Sniglet-Regular";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/Sniglet-Regular.eot");
  src: url("../fonts/Sniglet-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Sniglet-Regular.woff") format("woff"), url("../fonts/Sniglet-Regular.ttf") format("truetype"), url("../fonts/Sniglet-Regular.svg#Sniglet-Regular") format("svg");
}
/* HTML element (SMACSS base) rules */
/**
 * @file
 * Normalize.css is intended to be used as an alternative to CSS resets.
 *
 * This file is a slight fork of these original sources:
 * - normalize.css v2.1.2 | MIT License | git.io/normalize
 * - normalize.scss v2.1.2 | MIT/GPLv2 License | bit.ly/normalize-with-compass
 *
 * It's suggested that you read the normalize.scss file and customise it to meet
 * your needs, rather then including the file in your project and overriding the
 * defaults later in your CSS.
 * @see http://nicolasgallagher.com/about-normalize-css/
 *
 * Also: @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 *       @see http://snook.ca/archives/html_and_css/no_css_reset/
 */
/**
 * HTML5 display definitions
 */
/* Correct `block` display not defined in IE 8/9. */
/* line 23, ../sass/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

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

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

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

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

/* line 141, ../sass/_normalize.scss */
a:visited {
  text-decoration: none;
  color: inherit;
}

/* line 145, ../sass/_normalize.scss */
a:hover,
a:focus {
  text-decoration: none;
  color: inherit;
}

/* line 150, ../sass/_normalize.scss */
a:active {
  text-decoration: none;
  color: inherit;
}

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

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

/* line 181, ../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 190, ../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.375em;
  margin-bottom: 0.375em;
}

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

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

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

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

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

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

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

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

/* Address differences between Firefox and other browsers. */
/* line 241, ../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 250, ../sass/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/* Correct font family set oddly in Safari 5 and Chrome. */
/* line 256, ../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 270, ../sass/_normalize.scss */
pre {
  white-space: pre-wrap;
}

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

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

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

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

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

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

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

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

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

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
/* line 349, ../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;
  /*
  @if $legacy-support-for-ie8 {
    __width: auto;
  }
  */
}

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

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

/**
 * Forms
 */
/* line 390, ../sass/_normalize.scss */
form {
  margin: 0;
}

/* Define consistent border, margin, and padding. */
/* line 393, ../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 408, ../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 423, ../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 442, ../sass/_normalize.scss */
button,
input {
  line-height: normal;
}

/* line 447, ../sass/_normalize.scss */
input[type="text"],
input[type="password"] {
  padding: 4px 6px;
}

/**
 * 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 458, ../sass/_normalize.scss */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
/* line 472, ../sass/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
/* line 486, ../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 497, ../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 512, ../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 521, ../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 527, ../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 537, ../sass/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

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

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

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

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

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

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

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

  /**
   * The layout when there is only one sidebar, the right one.
   */
  /* line 101, ../sass/layouts/_responsive.scss */
  .sidebar-second {
    /* Span 2 columns, starting in 1st column from left. */
    /* Span 1 column, starting in 3rd column from left. */
  }
  /* line 103, ../sass/layouts/_responsive.scss */
  .sidebar-second #content {
    /*
    @include zen-grid-item(2, 1);
    */
  }
  /* line 110, ../sass/layouts/_responsive.scss */
  .sidebar-second .region-sidebar-second {
    /*
    @include zen-grid-item(1, 3);
    */
  }

  /**
   * The layout when there are two sidebars.
   */
  /* line 120, ../sass/layouts/_responsive.scss */
  .two-sidebars {
    /* Span 2 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
    /* Start a new row and span all 3 columns. */
  }
  /* line 122, ../sass/layouts/_responsive.scss */
  .two-sidebars #content {
    float: left;
    width: 200%;
    margin-left: 100%;
    margin-right: -300%;
  }
  /* line 127, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }
  /* line 132, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 300%;
    margin-left: 0%;
    margin-right: -300%;
    padding-left: 0;
    padding-right: 0;
    clear: left;
    /* Apply the shared properties of grid items in a single, efficient ruleset. */
    /* Span 1 column, starting in the 1st column from left. */
    /* Span 1 column, starting in the 2nd column from left. */
    /* Span 1 column, starting in the 3rd column from left. */
  }
  /* line 138, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
  }
  /* line 142, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n+1) {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    clear: left;
  }
  /* line 147, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n+2) {
    float: left;
    width: 100%;
    margin-left: 100%;
    margin-right: -200%;
  }
  /* line 151, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second .block:nth-child(3n) {
    float: left;
    width: 100%;
    margin-left: 200%;
    margin-right: -300%;
  }
}
/**
 * Use 5 grid columns for larger screens.
 */
@media all and (min-width: 960px) {
  /**
   * The layout when there is only one sidebar, the left one.
   */
  /* line 168, ../sass/layouts/_responsive.scss */
  .sidebar-first {
    /* Span 4 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
  }
  /* line 170, ../sass/layouts/_responsive.scss */
  .sidebar-first #content {
    float: left;
    width: 400%;
    margin-left: 100%;
    margin-right: -500%;
  }
  /* line 175, ../sass/layouts/_responsive.scss */
  .sidebar-first .region-sidebar-first {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }

  /**
   * The layout when there is only one sidebar, the right one.
   */
  /* line 183, ../sass/layouts/_responsive.scss */
  .sidebar-second {
    /* Span 4 columns, starting in 1st column from left. */
    /* Span 1 column, starting in 5th column from left. */
  }
  /* line 185, ../sass/layouts/_responsive.scss */
  .sidebar-second #content {
    /*
    @include zen-grid-item(4, 1);
    */
  }
  /* line 192, ../sass/layouts/_responsive.scss */
  .sidebar-second .region-sidebar-second {
    /*
    @include zen-grid-item(1, 5);
    */
  }

  /**
   * The layout when there are two sidebars.
   */
  /* line 202, ../sass/layouts/_responsive.scss */
  .two-sidebars {
    /* Span 3 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
    /* Span 1 column, starting in 5th column from left. */
  }
}
/* 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;
  overflow: auto;
}

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

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

/* The name of the website. */
/* line 99, ../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 106, ../sass/components/_misc.scss */
.header__site-link:link, .header__site-link:visited {
  color: #000;
  text-decoration: none;
}
/* line 112, ../sass/components/_misc.scss */
.header__site-link:hover, .header__site-link:focus {
  text-decoration: underline;
}

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

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

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

/**
 * Navigation bar.
 */
/* line 137, ../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 141, ../sass/components/_misc.scss */
#navigation .block {
  margin-bottom: 0;
}
/* line 151, ../sass/components/_misc.scss */
#navigation .links,
#navigation .menu {
  margin: 0;
  padding: 0;
  text-align: left;
  /* LTR */
}
/* line 157, ../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 171, ../sass/components/_misc.scss */
.breadcrumb ol {
  margin: 0;
  padding: 0;
}
/* line 175, ../sass/components/_misc.scss */
.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/**
 * Titles.
 */
/* line 186, ../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 213, ../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 222, ../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 232, ../sass/components/_misc.scss */
.messages__list {
  margin: 0;
}

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

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

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

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

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

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

/* line 276, ../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 280, ../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 293, ../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 #eebe9a;
  border-bottom-color: transparent;
  /* IE 9 and earlier don't understand gradients. */
  border-bottom: 0 \0/ie;
}

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

/* line 308, ../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: #ffffff;
  letter-spacing: 1px;
  padding: 0 1em;
  text-align: center;
}

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

/* line 322, ../sass/components/_misc.scss */
a.tabs-primary__tab-link:active, a.tabs-primary__tab-link.is-active {
  background-color: #fef7e5;
  border-color: #fff;
}

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

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

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

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

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

/**
 * Inline styles.
 */
/* List of links generated by theme_links(). */
/* line 399, ../sass/components/_misc.scss */
.inline {
  display: inline;
  padding: 0;
}
/* line 403, ../sass/components/_misc.scss */
.inline li {
  display: inline;
  list-style-type: none;
  padding: 0 1em 0 0;
  /* LTR */
}

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

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

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

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

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

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

/**
 * Menus.
 */
/* line 478, ../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 485, ../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 492, ../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 501, ../sass/components/_misc.scss */
.menu a.active {
  __color: #000;
}

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

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

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

/* Nested comments are indented. */
/* line 571, ../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 581, ../sass/components/_misc.scss */
.form-item {
  margin: 0.75em 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 585, ../sass/components/_misc.scss */
.form-checkboxes .form-item, .form-radios .form-item {
  /* Drupal core uses "0.4em 0". */
  margin: 0;
  position: relative;
}
/* line 593, ../sass/components/_misc.scss */
tr.odd .form-item, tr.even .form-item {
  margin: 0;
}
/* line 599, ../sass/components/_misc.scss */
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}
/* line 606, ../sass/components/_misc.scss */
.form-item .description {
  font-size: 0.85em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @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;
  }
}
/* line 1, ../sass/components/_header.scss */
.block-region {
  color: #000000;
}

/* line 3, ../sass/components/_header.scss */
#mobile-region {
  display: none;
}
@media screen and (max-width: 768px) {
  /* line 3, ../sass/components/_header.scss */
  #mobile-region {
    display: block;
  }
}
/* line 8, ../sass/components/_header.scss */
#mobile-region #sidr-0-button {
  display: block;
}

/* line 10, ../sass/components/_header.scss */
.sidr ul li:hover > a,
.sidr ul li:hover > span,
.sidr ul li.active > a,
.sidr ul li.active > span,
.sidr ul li.sidr-class-active > a,
.sidr ul li.sidr-class-active > span,
.sidr ul li ul li:hover > a,
.sidr ul li ul li:hover > span,
.sidr ul li ul li.active > a,
.sidr ul li ul li.active > span,
.sidr ul li ul li.sidr-class-active > a,
.sidr ul li ul li.sidr-class-active > span {
  box-shadow: none;
  -webkit-box-shadow: none;
}

/* line 25, ../sass/components/_header.scss */
#sidr-0 {
  background-color: #333333;
  -webkit-overflow-scrolling: touch;
}
/* line 28, ../sass/components/_header.scss */
#sidr-0 ul {
  margin: 0;
}
/* line 30, ../sass/components/_header.scss */
#sidr-0 .sidr-left-menu-close-button {
  display: block;
  background-color: #484848;
  height: 50px;
  cursor: pointer;
}
/* line 36, ../sass/components/_header.scss */
#sidr-0 .sidr-left-menu-close-button:before {
  content: 'Close';
  line-height: 50px;
  margin-left: 15px;
}
/* line 43, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-menu-menu-section-menu .sidr-class-block__title {
  display: none;
}
/* line 44, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-menu-menu-section-menu ul {
  border: none;
}
/* line 46, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-menu-menu-section-menu ul .sidr-class-first {
  __display: none;
}
/* line 47, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-menu-menu-section-menu ul li {
  border: none;
}
/* line 51, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-menu-menu-section-menu > ul > li {
  background-color: #df4600;
  border-top: #4c88aa;
  border-bottom: #4c88aa;
}
/* line 55, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-menu-menu-section-menu > ul > li a {
  font-size: 14px;
  line-height: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}
/* line 61, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-menu-menu-section-menu > ul > li > a:after {
  content: ">";
  float: right;
}
/* line 66, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-menu-menu-section-menu > ul > li > ul > li {
  background-color: #A93500;
  border-top: #4c88aa;
}
/* line 69, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-menu-menu-section-menu > ul > li > ul > li a:hover, #sidr-0 #sidr-id-block-menu-menu-section-menu > ul > li > ul > li a:focus, #sidr-0 #sidr-id-block-menu-menu-section-menu > ul > li > ul > li a:active {
  color: #ffffff;
}
/* line 70, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-menu-menu-section-menu > ul > li > ul > li ul {
  margin-left: 15px;
}
/* line 72, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-menu-menu-section-menu > ul > li > ul > li.sidr-class-first {
  border-top: none;
}
/* line 81, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-system-user-menu--2 .sidr-class-contextual-links-wrapper {
  display: none;
}
/* line 82, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-system-user-menu--2 ul.sidr-class-menu {
  font-size: 13px;
  background-color: #858585;
  border: none;
}
/* line 86, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-system-user-menu--2 ul.sidr-class-menu li {
  border-color: #aaaaaa;
}
/* line 91, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-menu-menu-top-menu--2 .sidr-class-contextual-links-wrapper {
  display: none;
}
/* line 92, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-menu-menu-top-menu--2 ul.sidr-class-menu {
  font-size: 13px;
  border: none;
  text-align: center;
}
/* line 96, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-menu-menu-top-menu--2 ul.sidr-class-menu li {
  border: none;
}
/* line 97, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-menu-menu-top-menu--2 ul.sidr-class-menu li:nth-child(1) {
  background-color: #8F3778;
}
/* line 98, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-menu-menu-top-menu--2 ul.sidr-class-menu li:nth-child(2) {
  background-color: #006ec7;
}
/* line 99, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-menu-menu-top-menu--2 ul.sidr-class-menu li:nth-child(3) {
  background-color: #00843d;
}

/* line 105, ../sass/components/_header.scss */
.logged-in #header-bar {
  margin-top: 30px;
}

/* line 109, ../sass/components/_header.scss */
#header-bar {
  width: 100%;
  border-bottom: 1px solid #f49566;
  height: 33px;
  background-color: #c34e00;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  /* line 109, ../sass/components/_header.scss */
  #header-bar {
    display: none;
  }
}
/* line 118, ../sass/components/_header.scss */
#header-bar .region-header-bar {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 12px;
}
/* line 125, ../sass/components/_header.scss */
#header-bar .region-header-bar .block {
  margin-bottom: 0;
}
/* line 127, ../sass/components/_header.scss */
#header-bar .region-header-bar ul {
  text-decoration: none;
  list-style-type: none;
  margin: 0;
}
/* line 132, ../sass/components/_header.scss */
#header-bar .region-header-bar .top-login-menu-block {
  float: left;
  width: 27%;
  height: 33px;
}
/* line 136, ../sass/components/_header.scss */
#header-bar .region-header-bar .top-login-menu-block ul {
  padding-left: 10px;
}
/* line 138, ../sass/components/_header.scss */
#header-bar .region-header-bar .top-login-menu-block ul li {
  float: left;
  margin-right: 18px;
  padding: 8px 0;
  list-style-image: none;
}
/* line 146, ../sass/components/_header.scss */
#header-bar .region-header-bar .block-lang-dropdown {
  float: left;
  width: 16%;
  margin-bottom: 0;
  padding-top: 3px;
}
/* line 152, ../sass/components/_header.scss */
#header-bar .region-header-bar .block-lang-dropdown select.lang-dropdown-select-element {
  height: 25px;
  min-height: 0;
  font-size: 14px;
}
/* line 158, ../sass/components/_header.scss */
#header-bar .region-header-bar .friend_site_link {
  float: left;
  width: 57%;
}
/* line 162, ../sass/components/_header.scss */
#header-bar .region-header-bar .friend_site_link ul li {
  float: right;
  border-right: 1px solid #ffffff;
  padding: 7px 12px;
  cursor: pointer;
  list-style-image: none;
  height: 33px;
  box-sizing: border-box;
}
/* line 171, ../sass/components/_header.scss */
#header-bar .region-header-bar .friend_site_link li:nth-child(1):hover, #header-bar .region-header-bar .friend_site_link li:nth-child(1):active {
  background-color: #903779;
  color: #ffffff;
}
/* line 175, ../sass/components/_header.scss */
#header-bar .region-header-bar .friend_site_link li:nth-child(2):hover, #header-bar .region-header-bar .friend_site_link li:nth-child(2):active {
  background-color: #006ec7;
  color: #ffffff;
}
/* line 179, ../sass/components/_header.scss */
#header-bar .region-header-bar .friend_site_link li:nth-child(3):hover, #header-bar .region-header-bar .friend_site_link li:nth-child(3):active {
  background-color: #00843d;
  color: #ffffff;
}
/* line 183, ../sass/components/_header.scss */
#header-bar .region-header-bar .friend_site_link li:last-child {
  border-left: 1px solid #ffffff;
}

/* line 190, ../sass/components/_header.scss */
.header-bg {
  width: 100%;
  background: #df4600;
  background: -moz-linear-gradient(top, #df4600 0%, #fa8001 100%);
  background: -webkit-linear-gradient(top, #df4600 0%, #fa8001 100%);
  background: linear-gradient(to bottom, #df4600 0%, #fa8001 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$main-theme-color', endColorstr='#fa8001',GradientType=0 );
  background-repeat: no-repeat;
  background-position: center 140%;
  padding-top: 20px;
  position: relative;
}
/* line 202, ../sass/components/_header.scss */
.header-bg .header-wrapper {
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  /* line 207, ../sass/components/_header.scss */
  .header-bg .header-wrapper .header {
    padding: 0 !important;
  }
}
/* line 209, ../sass/components/_header.scss */
.header-bg .header-wrapper .header__logo {
  width: 100%;
  margin: 0 0 30px 0;
}
@media screen and (max-width: 1024px) {
  /* line 209, ../sass/components/_header.scss */
  .header-bg .header-wrapper .header__logo {
    padding: 10px;
    margin-bottom: 20px;
  }
}
/* line 216, ../sass/components/_header.scss */
.header-bg .header-wrapper .header__logo img {
  float: left;
}
/* line 217, ../sass/components/_header.scss */
.header-bg .header-wrapper .header__logo .header__logo-seperate {
  float: left;
  height: 35px;
  margin-left: 40px;
  padding-top: 4px;
  padding-left: 40px;
  border-left: 1px solid #3AB312;
}
@media screen and (max-width: 767px) {
  /* line 217, ../sass/components/_header.scss */
  .header-bg .header-wrapper .header__logo .header__logo-seperate {
    display: none;
  }
}
/* line 228, ../sass/components/_header.scss */
.header-bg .header-wrapper .header__logo .header__slogan {
  float: right;
}
@media screen and (max-width: 1024px) {
  /* line 230, ../sass/components/_header.scss */
  .header-bg .header-wrapper .header__logo .header__slogan img {
    width: 140px;
  }
}

/* line 236, ../sass/components/_header.scss */
.header-bg:before {
  content: "";
  background: url("../images/header_bg_left.png") right top no-repeat;
  width: calc(50% - 450px);
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

/* line 246, ../sass/components/_header.scss */
.header-bg:after {
  content: "";
  background: url("../images/header_bg_right.png") no-repeat;
  width: calc(50% - 450px);
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-position: 0 -30px;
}

/* line 259, ../sass/components/_header.scss */
.sticky-only {
  display: none;
  float: left;
}

/* line 265, ../sass/components/_header.scss */
.is-sticky #navigation {
  clear: both;
  z-index: 10;
  background-color: #df4600;
  margin: 0;
  width: 100% !important;
  left: 0;
}
/* line 272, ../sass/components/_header.scss */
.is-sticky #navigation .region-navigation {
  display: none;
}
/* line 274, ../sass/components/_header.scss */
.is-sticky .sticky-only {
  display: block;
}
/* line 276, ../sass/components/_header.scss */
.is-sticky .logo {
  border-right: 1px solid #ec9e80;
  background: url("../images/icon-sticky-logo.png") left center no-repeat;
  width: 150px;
  height: 30px;
  margin: 10px 5px;
}
/* line 283, ../sass/components/_header.scss */
.is-sticky #mobile-region {
  display: block;
  float: left;
  margin-top: 10px;
  margin-left: 10px;
}
/* line 288, ../sass/components/_header.scss */
.is-sticky #mobile-region .menu-mobile-menu {
  background: url("../images/icon-sticky-menu.svg") center center no-repeat;
  width: 22px;
  height: 30px;
}
/* line 295, ../sass/components/_header.scss */
.is-sticky .search {
  /*
  border-right: 1px solid #3AB312;
  background: url('../images/icon-sticky-search.png') left center no-repeat;
  width: 35px;
  */
  height: 20px;
  margin: 15px 0 15px 10px;
}
/* line 303, ../sass/components/_header.scss */
.is-sticky .search .block-search {
  float: initial !important;
  margin: 0 !important;
}
/* line 308, ../sass/components/_header.scss */
.is-sticky .title {
  height: 30px;
  margin: 5px 0 5px 10px;
  font-size: 13px;
  line-height: 30px;
  font-weight: normal;
  display: none;
}
/* line 316, ../sass/components/_header.scss */
.is-sticky .rating {
  float: right;
  font-size: 12px;
  text-align: center;
  margin-top: 2px;
}
/* line 321, ../sass/components/_header.scss */
.is-sticky .rating .fivestar-widget .star {
  width: 28px;
  height: 24px;
  background: none;
}
/* line 326, ../sass/components/_header.scss */
.is-sticky .rating .description {
  margin-top: 5px;
}
/* line 328, ../sass/components/_header.scss */
.is-sticky .sharing {
  float: right;
  margin-top: 10px;
  margin-left: 10px;
}
/* line 332, ../sass/components/_header.scss */
.is-sticky .sharing .sharethis-wrapper > span:nth-child(1), .is-sticky .sharing .sharethis-wrapper > span:nth-child(2), .is-sticky .sharing .sharethis-wrapper > span:nth-child(3) {
  display: none;
}
/* line 333, ../sass/components/_header.scss */
.is-sticky .sharing .sharethis-buttons:nth-child(2) {
  display: none;
}
/* line 334, ../sass/components/_header.scss */
.is-sticky .sharing .sharethis-wrapper {
  margin-top: 0 !important;
}

@media screen and (min-width: 769px) {
  /* line 339, ../sass/components/_header.scss */
  .node-type-article .is-sticky .title {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  /* line 343, ../sass/components/_header.scss */
  .is-sticky {
    display: none;
  }
}
/* line 346, ../sass/components/_header.scss */
#navigation-sticky-wrapper {
  clear: both;
  position: relative;
  z-index: 5;
}

/* line 351, ../sass/components/_header.scss */
#navigation {
  position: relative;
  color: #ffffff;
  font-size: 14px;
  height: auto;
  padding: 0;
  z-index: 3;
  /*.menu-mobile-home, .menu-mobile-search { display: none; }*/
  /*top bar search form*/
}
@media screen and (max-width: 1023px) {
  /* line 351, ../sass/components/_header.scss */
  #navigation {
    margin-bottom: 35px;
    z-index: 5;
  }
}
@media screen and (max-width: 768px) {
  /* line 351, ../sass/components/_header.scss */
  #navigation {
    margin-bottom: 0;
    overflow: auto;
    padding-left: 0 !important;
  }
  /* line 369, ../sass/components/_header.scss */
  #navigation > div {
    float: left;
    width: 33.3%;
    height: 100%;
    border-right: 1px solid #9b3001;
    border-top: 1px solid #9b3001;
    border-bottom: 1px solid #9b3001;
    text-align: center;
    cursor: pointer;
    height: 50px;
  }
  /* line 380, ../sass/components/_header.scss */
  #navigation > div:last-child {
    border-right: none;
  }
  /* line 381, ../sass/components/_header.scss */
  #navigation .region-navigation {
    display: none;
  }
  /* line 382, ../sass/components/_header.scss */
  #navigation .menu-mobile-menu {
    background: url("../images/icon-sticky-menu.svg") center center no-repeat;
    display: block;
    height: 49px;
  }
  /* line 387, ../sass/components/_header.scss */
  #navigation .menu-mobile-home {
    background: url("../images/icon-mobile-home.svg") center center no-repeat;
    display: block;
  }
  /* line 390, ../sass/components/_header.scss */
  #navigation .menu-mobile-home a {
    display: block;
    height: 100%;
  }
  /* line 395, ../sass/components/_header.scss */
  #navigation .menu-mobile-search {
    display: block;
  }
  /* line 397, ../sass/components/_header.scss */
  #navigation .menu-mobile-search #block-search-form {
    float: initial;
    margin-top: 15px;
  }
  /* line 401, ../sass/components/_header.scss */
  #navigation .menu-mobile-search #block-search-form .container-inline {
    background-color: transparent;
  }
  /* line 403, ../sass/components/_header.scss */
  #navigation .menu-mobile-search #block-search-form .container-inline .form-text {
    position: absolute;
    top: 40px;
    z-index: 7;
    left: 0;
    width: 100%;
    height: 40px;
    padding: 4px 8px;
    font-size: 16px;
  }
  /* line 413, ../sass/components/_header.scss */
  #navigation .menu-mobile-search #block-search-form .container-inline .search_icon {
    margin: 0 auto;
  }
  /* line 414, ../sass/components/_header.scss */
  #navigation .menu-mobile-search #block-search-form .container-inline .form-submit {
    background: url("../images/icon-search2.svg") no-repeat;
    height: 30px;
  }
}
/* line 425, ../sass/components/_header.scss */
#navigation .block-superfish {
  clear: both;
}
/* line 428, ../sass/components/_header.scss */
#navigation .block-superfish .sf-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px 10px 10px 10px;
  -moz-border-radius: 10px 10px 10px 10px;
  -webkit-border-radius: 10px 10px 10px 10px;
  -khtml-border-radius: 10px 10px 10px 10px;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  align-items: stretch;
  margin-left: 10px;
  margin-right: 10px;
  border: 1px solid #b4600e;
  background: #fea200 url("../images/nav_menu_bg.jpg") repeat-x;
  -webkit-box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.19);
  -moz-box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.19);
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.19);
  font-family: "kronika", arial;
}
/* line 441, ../sass/components/_header.scss */
#navigation .block-superfish .sf-menu .sf-item-2 a:before {
  background-image: url("../images/menu-icon_listen.png");
}
/* line 443, ../sass/components/_header.scss */
#navigation .block-superfish .sf-menu .sf-item-3 a:before {
  background-image: url("../images/menu-icon_read.png");
}
/* line 445, ../sass/components/_header.scss */
#navigation .block-superfish .sf-menu .sf-item-4 a:before {
  background-image: url("../images/menu-icon_speak.png");
}
/* line 447, ../sass/components/_header.scss */
#navigation .block-superfish .sf-menu .sf-item-5 a:before {
  background-image: url("../images/menu-icon_grammer.png");
}
/* line 449, ../sass/components/_header.scss */
#navigation .block-superfish .sf-menu .sf-item-6 a:before {
  background-image: url("../images/menu-icon_game.png");
}
/* line 451, ../sass/components/_header.scss */
#navigation .block-superfish .sf-menu .sf-item-7 a:before {
  background-image: url("../images/menu-icon_print.png");
}
/* line 453, ../sass/components/_header.scss */
#navigation .block-superfish .sf-menu .sf-item-8 a:before {
  background-image: url("../images/menu-icon_parent.png");
  width: 38px;
}
/* line 459, ../sass/components/_header.scss */
#navigation .block-superfish .sf-menu > .sf-depth-1 {
  padding: 6px 10px 6px 4.5%;
  line-height: normal;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  /* line 459, ../sass/components/_header.scss */
  #navigation .block-superfish .sf-menu > .sf-depth-1 {
    padding: 6px 8px;
  }
}
/* line 469, ../sass/components/_header.scss */
#navigation .block-superfish .sf-menu > .sf-depth-1 a {
  position: static;
}
/* line 471, ../sass/components/_header.scss */
#navigation .block-superfish .sf-menu > .sf-depth-1 > a {
  color: #c14300;
  text-shadow: -2px -2px 0 #ffffff, 2px -2px 0 #ffffff, -2px 2px 0 #ffffff, 2px 2px 0 #ffffff;
  font-size: 15px;
  line-height: 16px;
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
@media screen and (max-width: 1024px) {
  /* line 471, ../sass/components/_header.scss */
  #navigation .block-superfish .sf-menu > .sf-depth-1 > a {
    font-size: 14px;
  }
}
/* line 487, ../sass/components/_header.scss */
#navigation .block-superfish .sf-menu > .sf-depth-1 a.menu-11423 {
  padding-right: 10px;
}
/* line 489, ../sass/components/_header.scss */
#navigation .block-superfish .sf-menu > .sf-depth-1 > a:before {
  width: 34px;
  height: 88%;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  left: 4px;
  top: 3px;
}
@media screen and (max-width: 1024px) {
  /* line 489, ../sass/components/_header.scss */
  #navigation .block-superfish .sf-menu > .sf-depth-1 > a:before {
    left: 5px;
    width: 28px;
    background-image: none !important;
  }
}
/* line 507, ../sass/components/_header.scss */
#navigation .block-superfish .sf-menu > .sf-depth-1 a.menu-2 {
  padding-right: 8px;
}
/* line 508, ../sass/components/_header.scss */
#navigation .block-superfish .sf-menu > .sf-depth-1 a.menu-1:before {
  background-image: url("../images/menu-icon_listen.png");
}
/* line 509, ../sass/components/_header.scss */
#navigation .block-superfish .sf-menu > .sf-depth-1 a.menu-2:before {
  background-image: url("../images/menu-icon_read.png");
}
/* line 510, ../sass/components/_header.scss */
#navigation .block-superfish .sf-menu > .sf-depth-1 a.menu-3:before {
  background-image: url("../images/menu-icon_speak.png");
}
/* line 511, ../sass/components/_header.scss */
#navigation .block-superfish .sf-menu > .sf-depth-1 a.menu-4:before {
  background-image: url("../images/menu-icon_grammer.png");
}
/* line 512, ../sass/components/_header.scss */
#navigation .block-superfish .sf-menu > .sf-depth-1 a.menu-5:before {
  background-image: url("../images/menu-icon_game.png");
}
/* line 513, ../sass/components/_header.scss */
#navigation .block-superfish .sf-menu > .sf-depth-1 a.menu-6:before {
  background-image: url("../images/menu-icon_print.png");
}
/* line 514, ../sass/components/_header.scss */
#navigation .block-superfish .sf-menu > .sf-depth-1 a.menu-7:before {
  background-image: url("../images/menu-icon_course.png");
}
/* line 515, ../sass/components/_header.scss */
#navigation .block-superfish .sf-menu > .sf-depth-1 a.menu-parent:before {
  background-image: url("../images/menu-icon_parent.png");
  width: 38px;
}
/* line 521, ../sass/components/_header.scss */
#navigation .block-superfish .sf-menu > .sf-depth-1:after {
  content: "";
  background: url("../images/nav_sep_line.jpg") no-repeat;
  background-size: cover;
  width: 2px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
/* line 532, ../sass/components/_header.scss */
#navigation .block-superfish .sf-menu > .first {
  padding: 4px 13px;
  -webkit-box-flex: 0.5;
  -webkit-flex: 0.5;
  -moz-box-flex: 0.5;
  -moz-flex: 0.5;
  -ms-flex: 0.5;
  flex: 0.5;
  border-radius: 9px 0 0 9px;
  -moz-border-radius: 9px 0 0 9px;
  -webkit-border-radius: 9px 0 0 9px;
  -khtml-border-radius: 9px 0 0 9px;
}
/* line 537, ../sass/components/_header.scss */
#navigation .block-superfish .sf-menu > .first a {
  background: url("../images/menu-icon_home.png") no-repeat;
  background-position: center center;
  background-size: contain;
  width: 34px;
  height: 32px;
  text-indent: -9999px;
  margin: 0 auto;
}
/* line 548, ../sass/components/_header.scss */
#navigation .block-superfish .sf-menu > .last {
  background: #970006 url("../images/nav_menu_parent_bg.jpg") repeat-x;
  border-radius: 0 9px 9px 0;
  -moz-border-radius: 0 9px 9px 0;
  -webkit-border-radius: 0 9px 9px 0;
  -khtml-border-radius: 0 9px 9px 0;
}
/* line 553, ../sass/components/_header.scss */
#navigation .block-superfish .sf-menu > .last:after {
  content: none;
}
/* line 555, ../sass/components/_header.scss */
#navigation .block-superfish .sf-menu > li:hover {
  background-color: #df4600;
}
/* line 559, ../sass/components/_header.scss */
#navigation .block-superfish .sf-menu > li > ul {
  display: none;
  background-image: none;
  background-color: #df4600;
  border-radius: 0;
  margin-top: 25px;
}
@media screen and (max-width: 1024px) {
  /* line 559, ../sass/components/_header.scss */
  #navigation .block-superfish .sf-menu > li > ul {
    margin-top: 5px;
  }
}
/* line 569, ../sass/components/_header.scss */
#navigation .block-superfish .sf-menu > li > ul li {
  line-height: 16px;
}
/* line 571, ../sass/components/_header.scss */
#navigation .block-superfish .sf-menu > li > ul li a {
  padding: 7px 15px;
  font-size: 13px;
}
/* line 578, ../sass/components/_header.scss */
#navigation .block-superfish .sf-menu > .last > ul {
  background-color: #97005a;
}
/* line 584, ../sass/components/_header.scss */
#navigation .block-superfish .rtl.sf-menu {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
/* line 590, ../sass/components/_header.scss */
#navigation .block-search {
  float: right;
  margin: 0;
  margin-top: -32px;
}
/* line 596, ../sass/components/_header.scss */
#navigation .block-search .container-inline .form-text {
  border: 0;
  font-size: 12px;
  padding: 8px;
  width: auto;
  height: 25px;
  display: none;
}
/* line 604, ../sass/components/_header.scss */
#navigation .block-search .container-inline .form-submit {
  border: none;
  background: url("../images/icon-search.svg") 0 center no-repeat;
  text-indent: -9999px;
  background-color: transparent;
  background-size: 15px 15px;
  background-position: center center;
  text-indent: -9999px;
  width: 25px;
  height: 25px;
  padding: 0;
  display: none;
}
/* line 617, ../sass/components/_header.scss */
#navigation .block-search .container-inline .search_icon {
  background: url("../images/icon-search2.svg") no-repeat;
  display: block;
  width: 25px;
  height: 25px;
  background-color: #e34e01;
}
/* line 628, ../sass/components/_header.scss */
#navigation .expanded .container-inline {
  background-color: #ffffff;
}
/* line 629, ../sass/components/_header.scss */
#navigation .expanded .form-text {
  display: inline-block !important;
}
/* line 630, ../sass/components/_header.scss */
#navigation .expanded .form-submit {
  display: inline-block !important;
}
/* line 631, ../sass/components/_header.scss */
#navigation .expanded .search_icon {
  display: none !important;
}

/* line 636, ../sass/components/_header.scss */
.top_title_region {
  border: 1px solid #9b3001;
  border-radius: 10px 10px 10px 10px;
  -moz-border-radius: 10px 10px 10px 10px;
  -webkit-border-radius: 10px 10px 10px 10px;
  -khtml-border-radius: 10px 10px 10px 10px;
  margin-top: -12px;
  margin-bottom: -13px;
  padding: 18px 18px 0 18px;
  -webkit-box-shadow: inset -2px 2px 4px 0px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: inset -2px 2px 4px 0px rgba(0, 0, 0, 0.08);
  box-shadow: inset -2px 2px 4px 0px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
  background: #c34e00 url("../images/nav_menu_bg.png") left top no-repeat;
  min-height: 100px;
}
@media screen and (max-width: 768px) {
  /* line 636, ../sass/components/_header.scss */
  .top_title_region {
    padding: 10px;
    margin-top: 10px;
  }
}

/* line 656, ../sass/components/_header.scss */
.page-parents .top_title_region {
  background-color: #990038;
}

/* line 660, ../sass/components/_header.scss */
.top_title_region:after {
  content: "";
  background: url("../images/top_title_region_bottom.png") center top no-repeat;
  position: absolute;
  z-index: 6;
  width: calc(100% + 2px);
  height: 38px;
  bottom: -17px;
  left: -1px;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  /* line 660, ../sass/components/_header.scss */
  .top_title_region:after {
    content: none;
  }
}

/* line 676, ../sass/components/_header.scss */
.page-parents .top_title_region:after {
  background: url("../images/top_title_region_bottom-parent.png") center top no-repeat;
}

/*slider*/
@media screen and (max-width: 768px) {
  /* line 684, ../sass/components/_header.scss */
  .header__region div {
    box-sizing: content-box;
  }
}
/* line 687, ../sass/components/_header.scss */
.header__region .view-content {
  overflow: auto;
}
/* line 688, ../sass/components/_header.scss */
.header__region .block {
  margin-bottom: 0;
}
/* line 690, ../sass/components/_header.scss */
.header__region > #block-views-custom-blocks-block-1 {
  margin-bottom: 0;
}
/* line 691, ../sass/components/_header.scss */
.header__region .views_slideshow_cycle_main {
  color: #ffffff;
  float: left;
  width: 75%;
}
/* line 696, ../sass/components/_header.scss */
.header__region .views_slideshow_cycle_main .views-slideshow-cycle-main-frame-row {
  max-width: 100%;
}
@media screen and (max-width: 1023px) {
  /* line 691, ../sass/components/_header.scss */
  .header__region .views_slideshow_cycle_main {
    width: 100%;
  }
  /* line 703, ../sass/components/_header.scss */
  .header__region .views_slideshow_cycle_main .views-slideshow-cycle-main-frame-row img {
    width: 100% !important;
    height: auto;
  }
}
/* line 710, ../sass/components/_header.scss */
.header__region .views_slideshow_cycle_main .views-field-nothing {
  width: 30%;
  height: 100%;
  font-size: 12px;
  line-height: 18px;
  padding: 20px 15px 20px 2px;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -moz-order: 1;
  -ms-flex-order: 1;
  order: 1;
}
/* line 718, ../sass/components/_header.scss */
.header__region .views_slideshow_cycle_main .views-field-nothing span.field-content {
  display: block;
  font-size: 26px;
  line-height: 22px;
  margin-bottom: 10px;
}
/* line 724, ../sass/components/_header.scss */
.header__region .views_slideshow_cycle_main .views-field-nothing span.field-content > a {
  font-family: "bangwhackpow", "Sniglet-Regular", arial, Verdana, Tahoma, sans-serif;
}
/* line 726, ../sass/components/_header.scss */
.header__region .views_slideshow_cycle_main .views-field-nothing span.field-content p {
  font-size: 12px;
  line-height: 18px;
}
@media screen and (max-width: 768px) {
  /* line 710, ../sass/components/_header.scss */
  .header__region .views_slideshow_cycle_main .views-field-nothing {
    position: static;
    box-sizing: border-box;
    top: initial;
    width: 98%;
    height: 110px;
    font-size: 11px;
    padding: 10px;
    margin: 0 auto;
    overflow: hidden;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  /* line 744, ../sass/components/_header.scss */
  .header__region .views_slideshow_cycle_main .views-field-nothing span.field-content {
    font-size: 15px;
    line-height: 18px;
  }
  /* line 749, ../sass/components/_header.scss */
  .header__region .views_slideshow_cycle_main .views-field-nothing p {
    margin: 8px 0;
  }
}
/* line 753, ../sass/components/_header.scss */
.header__region .views_slideshow_cycle_main .views-field-field-image {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -moz-order: 2;
  -ms-flex-order: 2;
  order: 2;
  max-width: 70%;
}
@media screen and (width: 768px) {
  /* line 753, ../sass/components/_header.scss */
  .header__region .views_slideshow_cycle_main .views-field-field-image {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
}
/* line 762, ../sass/components/_header.scss */
.header__region .views_slideshow_cycle_main .views-field-field-image-1 a {
  display: block;
}
/* line 767, ../sass/components/_header.scss */
.header__region .views-slideshow-cycle-main-frame {
  height: 310px !important;
}
@media screen and (max-width: 768px) {
  /* line 767, ../sass/components/_header.scss */
  .header__region .views-slideshow-cycle-main-frame {
    height: 540px !important;
    margin-left: 8px;
  }
}
@media screen and (max-width: 600px) {
  /* line 767, ../sass/components/_header.scss */
  .header__region .views-slideshow-cycle-main-frame {
    height: 420px !important;
  }
}
/* line 779, ../sass/components/_header.scss */
.header__region .views-slideshow-cycle-main-frame .views-slideshow-cycle-main-frame-row-item {
  height: 310px !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  /* line 779, ../sass/components/_header.scss */
  .header__region .views-slideshow-cycle-main-frame .views-slideshow-cycle-main-frame-row-item {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
/* line 789, ../sass/components/_header.scss */
.header__region .views-slideshow-controls-bottom {
  float: left;
  width: 25%;
  height: 100%;
  color: #ffffff;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1023px) {
  /* line 789, ../sass/components/_header.scss */
  .header__region .views-slideshow-controls-bottom {
    display: none;
  }
}
/* line 800, ../sass/components/_header.scss */
.header__region .views-slideshow-controls-bottom .views-slideshow-pager-fields {
  font-size: 18px;
}
/* line 803, ../sass/components/_header.scss */
.header__region .views-slideshow-controls-bottom .views-slideshow-pager-fields .views-slideshow-pager-field-item {
  height: 56px;
  line-height: 18px;
  cursor: pointer;
  padding: 0 15px;
  display: table;
  width: 100%;
  border-radius: 0 8px 8px 0;
  -moz-border-radius: 0 8px 8px 0;
  -webkit-border-radius: 0 8px 8px 0;
  -khtml-border-radius: 0 8px 8px 0;
}
/* line 812, ../sass/components/_header.scss */
.header__region .views-slideshow-controls-bottom .views-slideshow-pager-fields .views-slideshow-pager-field-item .views-field-field-tab {
  display: table-cell;
  vertical-align: middle;
  border-bottom: 1px solid #f49566;
  font-family: "bangwhackpow", "Sniglet-Regular", arial, Verdana, Tahoma, sans-serif;
}
/* line 821, ../sass/components/_header.scss */
.header__region .views-slideshow-controls-bottom .views-slideshow-pager-fields .views-slideshow-pager-field-item:last-child .views-field-field-tab {
  border-bottom: none;
}
/* line 826, ../sass/components/_header.scss */
.header__region .views-slideshow-controls-bottom .views-slideshow-pager-fields .active {
  background-color: #df4600;
  position: relative;
  box-shadow: 0px 1px 4px #662400;
  position: relative;
}
/* line 832, ../sass/components/_header.scss */
.header__region .views-slideshow-controls-bottom .views-slideshow-pager-fields .active .views-field-field-tab {
  border: none;
}
/* line 835, ../sass/components/_header.scss */
.header__region .views-slideshow-controls-bottom .views-slideshow-pager-fields .active:before {
  content: "";
  background: url("../images/banner_caption_arrow.svg") no-repeat;
  background-size: cover;
  width: 12px;
  height: calc(100% + 2px);
  position: absolute;
  z-index: 9;
  right: 100%;
}

/* line 849, ../sass/components/_header.scss */
html[dir="rtl"] .header__region .views-slideshow-cycle-main-frame .views-slideshow-cycle-main-frame-row-item {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

/*end slider*/
/*course detail*/
/* line 858, ../sass/components/_header.scss */
.node-type-teacher-training .header {
  position: relative;
}
/* line 861, ../sass/components/_header.scss */
.node-type-teacher-training .header .page__title {
  font-size: 22px;
  margin-top: 85px;
  background: url("../images/trans_bg.png");
  padding: 4px 8px;
  float: left;
  height: 34px;
}
@media screen and (max-width: 768px) {
  /* line 861, ../sass/components/_header.scss */
  .node-type-teacher-training .header .page__title {
    margin-top: 150px;
    font-size: 19px;
  }
}
/* line 875, ../sass/components/_header.scss */
.node-type-teacher-training .header .article-sharethis-container {
  margin-bottom: 10px;
  margin-top: 20px;
  clear: both;
}
@media screen and (max-width: 768px) {
  /* line 881, ../sass/components/_header.scss */
  .node-type-teacher-training .header .article-sharethis-container .st_twitter_hcount, .node-type-teacher-training .header .article-sharethis-container .st_facebook_hcount, .node-type-teacher-training .header .article-sharethis-container .st_email_hcount {
    display: none;
  }
}
/* line 886, ../sass/components/_header.scss */
.node-type-teacher-training .header .article-sharethis-container .sharethis-wrapper {
  float: none;
}
/* line 889, ../sass/components/_header.scss */
.node-type-teacher-training .header .page-field_apply_url-container {
  position: absolute;
  right: 10px;
  bottom: 12px;
  width: 270px;
  text-align: center;
  font-size: 14px;
  font-family: "bangwhackpow", "Sniglet-Regular", arial, Verdana, Tahoma, sans-serif;
  padding: 1px 0;
  border-radius: 4px 4px 4px 4px;
  -moz-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  -khtml-border-radius: 4px 4px 4px 4px;
  background: #0071cd;
  background: -moz-linear-gradient(top, #0071cd 0%, #0070c6 46%, #00568c 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #0071cd), color-stop(46%, #0070c6), color-stop(100%, #00568c));
  background: -webkit-linear-gradient(top, #0071cd 0%, #0070c6 46%, #00568c 100%);
  background: -o-linear-gradient(top, #0071cd 0%, #0070c6 46%, #00568c 100%);
  background: -ms-linear-gradient(top, #0071cd 0%, #0070c6 46%, #00568c 100%);
  background: linear-gradient(to bottom, #0071cd 0%, #0070c6 46%, #00568c 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071cd', endColorstr='#00568c', GradientType=0 );
}
/* line 907, ../sass/components/_header.scss */
.node-type-teacher-training .header .page-field_apply_url-container a {
  display: block;
}
@media screen and (max-width: 768px) {
  /* line 889, ../sass/components/_header.scss */
  .node-type-teacher-training .header .page-field_apply_url-container {
    position: static;
    width: 100%;
    border-top: 1px solid #000000;
  }
}
/* line 916, ../sass/components/_header.scss */
.node-type-teacher-training .header .page-field_apply_url-container:before {
  content: url("../images/icon-arrow-right-white.svg");
  position: absolute;
  margin-left: 115px;
  margin-top: 2px;
}
/* line 923, ../sass/components/_header.scss */
.node-type-teacher-training .header .teacher-training-field-apply-url-container {
  position: relative;
  float: right;
  width: 328px;
  margin-top: -50px;
  text-align: center;
  background: #0073cb;
  background: -moz-linear-gradient(top, #0073cb 0%, #01578c 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #0073cb), color-stop(100%, #01578c));
  background: -webkit-linear-gradient(top, #0073cb 0%, #01578c 100%);
  background: -o-linear-gradient(top, #0073cb 0%, #01578c 100%);
  background: -ms-linear-gradient(top, #0073cb 0%, #01578c 100%);
  background: linear-gradient(to bottom, #0073cb 0%, #01578c 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0073cb', endColorstr='#01578c', GradientType=0 );
  border-radius: 4px 4px 4px 4px;
  -moz-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  -khtml-border-radius: 4px 4px 4px 4px;
}
/* line 938, ../sass/components/_header.scss */
.node-type-teacher-training .header .teacher-training-field-apply-url-container a {
  display: block;
  padding: 8px 0;
}
@media screen and (max-width: 768px) {
  /* line 923, ../sass/components/_header.scss */
  .node-type-teacher-training .header .teacher-training-field-apply-url-container {
    width: 100px;
    margin-top: -35px;
    margin-right: 10px;
  }
  /* line 946, ../sass/components/_header.scss */
  .node-type-teacher-training .header .teacher-training-field-apply-url-container a {
    padding: 2px 0;
  }
}
/* line 949, ../sass/components/_header.scss */
.node-type-teacher-training .header .teacher-training-field-apply-url-container:after {
  content: url("../images/icon-apply-arrow.svg");
  position: absolute;
  right: 10px;
  top: 10px;
}
@media screen and (max-width: 768px) {
  /* line 949, ../sass/components/_header.scss */
  .node-type-teacher-training .header .teacher-training-field-apply-url-container:after {
    top: 2px;
  }
}

/*end course detail*/
/*for admin mode*/
/* line 2, ../sass/components/_main.scss */
.tabs-primary__tab, .tabs-primary__tab.is-active {
  font-size: 13px;
  list-style-image: none;
  margin-top: 4px;
}

/*end for admin mode*/
/*common styles*/
/* line 13, ../sass/components/_main.scss */
a img {
  display: block;
}

/* line 14, ../sass/components/_main.scss */
.showit {
  display: block !important;
}

/* line 15, ../sass/components/_main.scss */
#page {
  width: 100%;
  max-width: none;
  background-color: #ffedd5;
  overflow: hidden;
}

/* line 22, ../sass/components/_main.scss */
.page-parents #page {
  background-color: #f1e5e9;
}

/* line 24, ../sass/components/_main.scss */
div {
  box-sizing: border-box;
}

/* line 25, ../sass/components/_main.scss */
h1 {
  font-size: 1.5em;
}

@media screen and (max-width: 768px) {
  /* line 26, ../sass/components/_main.scss */
  .page__title {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* line 32, ../sass/components/_main.scss */
h3 {
  margin: 16px 0 8px 0;
  color: #df4600;
}

/* line 36, ../sass/components/_main.scss */
h4 {
  margin: 10px 0 6px 0;
  color: #df4600;
  font-size: 14px;
  line-height: 16px;
}

/* line 42, ../sass/components/_main.scss */
h1, h2, h3, h4, h5, h6 {
  font-family: "bangwhackpow", "Sniglet-Regular", arial, Verdana, Tahoma, sans-serif;
  letter-spacing: 0.3px;
  font-weight: normal;
}

/* line 47, ../sass/components/_main.scss */
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

/* line 53, ../sass/components/_main.scss */
body.toolbar {
  padding-top: 0 !important;
}

/* line 54, ../sass/components/_main.scss */
body #header {
  background-image: none;
  color: #ffffff;
}

/* line 58, ../sass/components/_main.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  background-color: #e7710f;
  color: #ffffff;
  border: 0;
  padding: 4px 10px;
}

/* line 67, ../sass/components/_main.scss */
select {
  font-family: arial;
  padding: 3px 6px;
  color: #666666;
  font-size: 16px;
  min-height: 32px;
  border: 1px solid #cccccc;
}

/* line 75, ../sass/components/_main.scss */
ul {
  padding-left: 15px;
  margin: 0;
}
/* line 79, ../sass/components/_main.scss */
ul li {
  list-style-image: url("../images/icon-list-dot.svg");
}

/* line 81, ../sass/components/_main.scss */
.triangle {
  list-style-image: url("../images/icon-list-tr-down.svg");
}

/* line 82, ../sass/components/_main.scss */
.tabs-primary ul li {
  list-style-image: none !important;
}

/* line 85, ../sass/components/_main.scss */
.print_html a {
  display: block;
  text-indent: -9999px;
  width: 20px;
  height: 20px;
  background: url("../images/icon-print.svg") center center no-repeat;
}
/* line 91, ../sass/components/_main.scss */
.print_html a img {
  display: none;
}

/* line 94, ../sass/components/_main.scss */
.ui-dialog .ui-dialog-content {
  padding: 0;
}
/* line 97, ../sass/components/_main.scss */
.ui-dialog .ui-dialog-titlebar {
  font-size: 14px;
}

/* line 102, ../sass/components/_main.scss */
.no-sidebars #content {
  width: 100% !important;
}

/* line 104, ../sass/components/_main.scss */
.field-type-text-long,
.field-type-text-with-summary {
  font-size: 14px;
  line-height: 20px;
}
/* line 109, ../sass/components/_main.scss */
.field-type-text-long h4,
.field-type-text-with-summary h4 {
  margin-top: 30px;
}
/* line 110, ../sass/components/_main.scss */
.field-type-text-long ul,
.field-type-text-with-summary ul {
  padding-left: 25px;
}
/* line 111, ../sass/components/_main.scss */
.field-type-text-long li,
.field-type-text-with-summary li {
  margin-bottom: 12px;
}
/* line 112, ../sass/components/_main.scss */
.field-type-text-long p,
.field-type-text-with-summary p {
  margin: 12px 0;
}

/* line 115, ../sass/components/_main.scss */
.breadcrumb {
  clear: both;
  color: #eabd9f;
  font-size: 11px;
  opacity: 0.7;
  margin-top: -8px;
}
@media screen and (max-width: 768px) {
  /* line 115, ../sass/components/_main.scss */
  .breadcrumb {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* line 128, ../sass/components/_main.scss */
#main {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding-top: 50px;
  clear: both;
}
@media screen and (max-width: 768px) {
  /* line 128, ../sass/components/_main.scss */
  #main {
    padding-top: 30px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* line 142, ../sass/components/_main.scss */
#main:before {
  content: "";
  background: url("../images/main_top_curve.png") center top no-repeat;
  width: 1144px;
  height: 18px;
  position: absolute;
  margin-top: -18px;
  top: 0;
  left: 50%;
  margin-left: -572px;
}

/* line 155, ../sass/components/_main.scss */
article a:visited, article a:link {
  color: #df4600;
}

/* line 160, ../sass/components/_main.scss */
p.rteindent1 {
  margin-left: 40px;
}

/* line 165, ../sass/components/_main.scss */
.field-name-field-viddler-video iframe {
  width: 100%;
}
@media screen and (max-width: 768px) {
  /* line 168, ../sass/components/_main.scss */
  .field-name-field-viddler-video object {
    width: 100%;
  }
}

/* line 172, ../sass/components/_main.scss */
.horizontal-tabs ul.horizontal-tabs-list li,
.flex-direction-nav li {
  list-style-image: none;
}

@media screen and (max-width: 768px) {
  /* line 176, ../sass/components/_main.scss */
  #header,
  #content,
  #navigation,
  .region-sidebar-first,
  .region-sidebar-second,
  #footer {
    padding-left: 0;
    padding-right: 0;
  }

  /* line 187, ../sass/components/_main.scss */
  .not-front .print_html {
    display: none;
  }
}
/* line 192, ../sass/components/_main.scss */
.field-collection-view-links .edit, .field-collection-view-links .delete {
  list-style-image: none;
  border: 1px solid #df4600;
  padding-left: 10px;
  margin-top: 10px;
}

/* line 200, ../sass/components/_main.scss */
.flex-direction-nav a:before {
  margin-top: 10px;
}

/* line 204, ../sass/components/_main.scss */
.viddler-app-wrap div.viddler-embed div.media-gui div.bottom,
.viddler-app-wrap div.viddler-embed div.media-gui div.top {
  z-index: 1 !important;
}

/* line 209, ../sass/components/_main.scss */
.field_viddler_video {
  width: calc(100% - 162px);
  margin-left: 162px;
}
@media screen and (max-width: 768px) {
  /* line 209, ../sass/components/_main.scss */
  .field_viddler_video {
    width: 100%;
    margin-left: 0;
  }
}
/* line 218, ../sass/components/_main.scss */
.field_viddler_video iframe {
  width: 100%;
}

/* line 223, ../sass/components/_main.scss */
video::-internal-media-controls-download-button,
audio::-internal-media-controls-download-button {
  display: none;
}

/* line 228, ../sass/components/_main.scss */
video::-webkit-media-controls-enclosure,
audio::-webkit-media-controls-enclosure {
  overflow: hidden;
}

/* line 233, ../sass/components/_main.scss */
video::-webkit-media-controls-panel,
audio::-webkit-media-controls-panel {
  width: calc(100% + 30px);
}

/*end common styles*/
/* common accordion */
/* line 243, ../sass/components/_main.scss */
.field-collection-container {
  border: 0;
}
/* line 246, ../sass/components/_main.scss */
.field-collection-container .action-links-field-collection-add {
  padding-left: 0 !important;
  float: none;
}
/* line 250, ../sass/components/_main.scss */
.field-collection-container .action-links-field-collection-add li {
  list-style-image: none;
  list-style-type: none;
  float: left;
  background-color: #df4600;
  padding: 2px 14px;
}
/* line 256, ../sass/components/_main.scss */
.field-collection-container .action-links-field-collection-add li a {
  color: #ffffff !important;
}

/* line 261, ../sass/components/_main.scss */
.field-group-accordion-wrapper {
  margin: 20px 0;
}
/* line 264, ../sass/components/_main.scss */
.field-group-accordion-wrapper > h3 {
  background-color: #df4600;
  background-image: none;
  border-radius: 0;
  color: #ffffff;
  padding: 8px 14px;
  padding-left: 25px;
  font-size: 12px;
  font-weight: normal;
  border: none;
}
/* line 275, ../sass/components/_main.scss */
.field-group-accordion-wrapper > h3 a {
  color: #ffffff !important;
}
/* line 276, ../sass/components/_main.scss */
.field-group-accordion-wrapper > h3 .ui-icon {
  background: url("../images/icon-arrow-right-white.svg") center center no-repeat;
}
/* line 281, ../sass/components/_main.scss */
.field-group-accordion-wrapper > h3.ui-state-active {
  background: #006747;
}
/* line 283, ../sass/components/_main.scss */
.field-group-accordion-wrapper > h3.ui-state-active .ui-icon {
  background: url("../images/icon-arrow-downward-white.svg") center center no-repeat;
}
/* line 288, ../sass/components/_main.scss */
.field-group-accordion-wrapper .field-group-accordion-item {
  background: #e8f0d8;
  padding: 14px;
  border: none;
  height: auto !important;
}
/* line 294, ../sass/components/_main.scss */
.field-group-accordion-wrapper .field-group-accordion-item iframe {
  min-height: 550px;
}
/* line 299, ../sass/components/_main.scss */
.field-group-accordion-wrapper .field-group-accordion-item p {
  margin: 10px 0;
}

/* end common accordion */
/* common table */
/* line 308, ../sass/components/_main.scss */
table thead {
  background-color: #df4600;
  color: #ffffff;
}
/* line 311, ../sass/components/_main.scss */
table thead th {
  border: none;
  padding-top: 4px;
  padding-bottom: 4px;
}
/* line 319, ../sass/components/_main.scss */
table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}
/* line 320, ../sass/components/_main.scss */
table tbody tr:last-child {
  border-bottom: 1px solid #cdcdcd;
}
/* line 321, ../sass/components/_main.scss */
table tbody td {
  border-right: 1px solid #cdcdcd;
  padding: 4px 6px;
}
/* line 325, ../sass/components/_main.scss */
table tbody td:first-child {
  border-left: 1px solid #cdcdcd;
}

/* end common table */
/* common widget */
/* line 334, ../sass/components/_main.scss */
.field-type-fivestar {
  margin-top: 5px;
}

/* line 336, ../sass/components/_main.scss */
.fivestar-form-item {
  font-size: 12px;
}

/* line 337, ../sass/components/_main.scss */
.ajax-progress-throbber {
  clear: both;
  float: left;
  width: 100%;
}
/* line 341, ../sass/components/_main.scss */
.ajax-progress-throbber .throbber {
  height: 22px;
}

/* line 344, ../sass/components/_main.scss */
.rate-widget {
  margin-top: 10px;
}
/* line 347, ../sass/components/_main.scss */
.rate-widget > div {
  float: left;
  clear: none;
  line-height: 24px;
  margin-right: 10px;
  color: #ffffff;
}
/* line 354, ../sass/components/_main.scss */
.rate-widget > div ul {
  padding-left: 0;
}
/* line 359, ../sass/components/_main.scss */
.rate-widget .rate-fivestar-btn-filled {
  background: url("../images/elt.png") -1px -29px no-repeat;
  width: 22px;
  height: 22px;
}
/* line 365, ../sass/components/_main.scss */
.rate-widget .rate-fivestar-btn-empty {
  background: url("../images/elt.png") -1px -3px no-repeat;
  width: 22px;
  height: 22px;
}

/* end common widget */
/* line 375, ../sass/components/_main.scss */
#content {
  float: left;
  width: 66%;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  /* line 375, ../sass/components/_main.scss */
  #content {
    float: none;
    width: 100%;
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  /* line 375, ../sass/components/_main.scss */
  #content {
    float: initial;
    width: auto;
  }
}
/* line 391, ../sass/components/_main.scss */
#content .news_block > .view-taxonomy-blocks > .view-content {
  overflow: auto;
}
/* line 394, ../sass/components/_main.scss */
#content .news_block > .view-taxonomy-blocks > .view-content > .views-row {
  float: left;
  width: 49%;
  height: 370px;
  overflow: hidden;
  margin-right: 2%;
  margin-bottom: 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  /* line 394, ../sass/components/_main.scss */
  #content .news_block > .view-taxonomy-blocks > .view-content > .views-row {
    height: auto;
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  /* line 394, ../sass/components/_main.scss */
  #content .news_block > .view-taxonomy-blocks > .view-content > .views-row {
    width: 100%;
    margin-right: 0;
  }
}
/* line 410, ../sass/components/_main.scss */
#content .news_block > .view-taxonomy-blocks > .view-content > .views-row .views-field-name {
  font-size: 11px;
  color: #df4600;
}
@media screen and (max-width: 768px) {
  /* line 410, ../sass/components/_main.scss */
  #content .news_block > .view-taxonomy-blocks > .view-content > .views-row .views-field-name {
    padding-left: 10px;
    padding-right: 10px;
    font-family: "bangwhackpow", "Sniglet-Regular", arial, Verdana, Tahoma, sans-serif;
    font-size: 13px;
    letter-spacing: 0.3px;
  }
}
/* line 422, ../sass/components/_main.scss */
#content .news_block > .view-taxonomy-blocks > .view-content > .views-row .views-field-title {
  font-size: 14px;
  line-height: 16px;
  font-family: "bangwhackpow", "Sniglet-Regular", arial, Verdana, Tahoma, sans-serif;
  color: #df4600;
  margin-bottom: 5px;
  letter-spacing: 0.3px;
}
@media screen and (max-width: 768px) {
  /* line 422, ../sass/components/_main.scss */
  #content .news_block > .view-taxonomy-blocks > .view-content > .views-row .views-field-title {
    padding-left: 10px;
    padding-right: 10px;
  }
}
/* line 435, ../sass/components/_main.scss */
#content .news_block > .view-taxonomy-blocks > .view-content > .views-row .views-field-field-image img {
  width: 100%;
  height: auto;
}
/* line 440, ../sass/components/_main.scss */
#content .news_block > .view-taxonomy-blocks > .view-content > .views-row .views-field-body,
#content .news_block > .view-taxonomy-blocks > .view-content > .views-row .views-field-field-text-teaser {
  font-size: 13px;
  line-height: 16px;
  padding-bottom: 12px;
  margin-bottom: 5px;
  border-bottom: 1px solid #e6e6e6;
  height: 100px;
  overflow: auto;
}
@media screen and (max-width: 768px) {
  /* line 440, ../sass/components/_main.scss */
  #content .news_block > .view-taxonomy-blocks > .view-content > .views-row .views-field-body,
  #content .news_block > .view-taxonomy-blocks > .view-content > .views-row .views-field-field-text-teaser {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
    height: auto;
    overflow: visible;
  }
}
/* line 458, ../sass/components/_main.scss */
#content .news_block > .view-taxonomy-blocks > .view-content > .views-row .views-field-body P,
#content .news_block > .view-taxonomy-blocks > .view-content > .views-row .views-field-field-text-teaser P {
  margin: 0;
}
/* line 461, ../sass/components/_main.scss */
#content .news_block > .view-taxonomy-blocks > .view-content > .views-row .views-field-comment-count {
  font-size: 11px;
  color: #c6c6c6;
  float: right;
}
@media screen and (max-width: 768px) {
  /* line 461, ../sass/components/_main.scss */
  #content .news_block > .view-taxonomy-blocks > .view-content > .views-row .views-field-comment-count {
    margin-top: -28px;
  }
}
/* line 470, ../sass/components/_main.scss */
#content .news_block > .view-taxonomy-blocks > .view-content > .views-row .views-field-comment-count:before {
  content: url("../images/icon-talk.svg");
}
/* line 475, ../sass/components/_main.scss */
#content .news_block > .view-taxonomy-blocks > .view-content > .views-row-even {
  margin-right: 0;
}
/* line 481, ../sass/components/_main.scss */
#content #block-views-comments-block {
  width: 100%;
  border: 1px solid #df4600;
  border-top: 5px solid #df4600;
  background-color: #fef7e5;
  padding: 6px 18px;
  -moz-border-radius: 6px / 6px;
  -webkit-border-radius: 6px 6px;
  border-radius: 6px / 6px;
}
@media screen and (max-width: 767px) {
  /* line 481, ../sass/components/_main.scss */
  #content #block-views-comments-block {
    padding: 6px;
    padding-bottom: 40px;
    position: relative;
  }
}
/* line 494, ../sass/components/_main.scss */
#content #block-views-comments-block .block-title {
  color: #df4600;
  font-size: 20px;
  font-weight: bold;
}
/* line 499, ../sass/components/_main.scss */
#content #block-views-comments-block .view-comments {
  position: relative;
}
/* line 500, ../sass/components/_main.scss */
#content #block-views-comments-block .views-slideshow-controls-top {
  float: right;
  margin-top: -30px;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  /* line 500, ../sass/components/_main.scss */
  #content #block-views-comments-block .views-slideshow-controls-top {
    float: none;
    position: absolute;
    margin-top: 230px;
    width: 100%;
  }
  /* line 509, ../sass/components/_main.scss */
  #content #block-views-comments-block .views-slideshow-controls-top .views-slideshow-slide-counter {
    display: none;
  }
}
/* line 512, ../sass/components/_main.scss */
#content #block-views-comments-block .views-slideshow-controls-top > div {
  float: left;
}
/* line 513, ../sass/components/_main.scss */
#content #block-views-comments-block .views-slideshow-controls-top .views-slideshow-slide-counter {
  color: #c6c6c6;
}
/* line 517, ../sass/components/_main.scss */
#content #block-views-comments-block .views-slideshow-controls-text > span {
  padding: 0 8px;
  border-right: 1px solid #000000;
}
/* line 521, ../sass/components/_main.scss */
#content #block-views-comments-block .views-slideshow-controls-text > span:last-child {
  border-right: none;
}
@media screen and (max-width: 767px) {
  /* line 516, ../sass/components/_main.scss */
  #content #block-views-comments-block .views-slideshow-controls-text {
    width: 100%;
  }
  /* line 524, ../sass/components/_main.scss */
  #content #block-views-comments-block .views-slideshow-controls-text > span {
    padding: 0;
    text-align: center;
    background-color: #f4f4f4;
    width: 33%;
    height: 35px;
    line-height: 35px;
    border-right: 1px solid #dbdbdb;
    display: block;
    float: left;
  }
  /* line 535, ../sass/components/_main.scss */
  #content #block-views-comments-block .views-slideshow-controls-text #views_slideshow_controls_text_pause_comments-block {
    display: none;
  }
}
/* line 539, ../sass/components/_main.scss */
#content #block-views-comments-block .views-slideshow-cycle-main-frame > .views-slideshow-cycle-main-frame-row {
  width: 100% !important;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  /* line 543, ../sass/components/_main.scss */
  #content #block-views-comments-block .views-slideshow-cycle-main-frame {
    width: 100% !important;
  }
}
/* line 546, ../sass/components/_main.scss */
#content #block-views-comments-block .views-slideshow-cycle-main-frame-row-item {
  margin-left: 60px;
  padding: 6px 15px;
  background-color: #ffedd5;
  font-size: 15px;
}
/* line 551, ../sass/components/_main.scss */
#content #block-views-comments-block .views-slideshow-cycle-main-frame-row-item .views-field-picture {
  float: left;
  margin-left: -75px;
  margin-top: -5px;
  width: 60px;
}
/* line 556, ../sass/components/_main.scss */
#content #block-views-comments-block .views-slideshow-cycle-main-frame-row-item .views-field-picture img {
  width: 100%;
}
/* line 558, ../sass/components/_main.scss */
#content #block-views-comments-block .views-slideshow-cycle-main-frame-row-item .views-field-subject {
  color: #df4600;
  margin-bottom: 10px;
}
/* line 562, ../sass/components/_main.scss */
#content #block-views-comments-block .views-slideshow-cycle-main-frame-row-item .views-field-created, #content #block-views-comments-block .blog-view .views_slideshow_cycle_main .views-slideshow-cycle-main-frame .views-slideshow-cycle-main-frame-row .views-slideshow-cycle-main-frame-row-item .views-field-comment-count, .blog-view .views_slideshow_cycle_main .views-slideshow-cycle-main-frame .views-slideshow-cycle-main-frame-row #content #block-views-comments-block .views-slideshow-cycle-main-frame-row-item .views-field-comment-count {
  float: right;
  font-size: 12px;
}
/* line 566, ../sass/components/_main.scss */
#content #block-views-comments-block .views-slideshow-cycle-main-frame-row-item .views-field-comment-body {
  margin: 0;
  line-height: 18px;
  height: 65px;
  overflow: auto;
  clear: both;
}
/* line 573, ../sass/components/_main.scss */
#content #block-views-comments-block .views-slideshow-cycle-main-frame-row-item .views-field-title {
  font-size: 12px;
  color: #df4600;
  border-top: 1px solid #c0967e;
  padding-top: 5px;
  margin-bottom: 0;
  text-align: right;
}
@media screen and (max-width: 767px) {
  /* line 583, ../sass/components/_main.scss */
  #content #block-views-comments-block .views-slideshow-cycle-main-frame-row-item {
    margin-left: 0;
    margin-top: 20px;
  }
  /* line 587, ../sass/components/_main.scss */
  #content #block-views-comments-block .views-slideshow-cycle-main-frame-row-item .views-field-picture {
    margin: -20px 10px 0 0 !important;
  }
  /* line 590, ../sass/components/_main.scss */
  #content #block-views-comments-block .views-slideshow-cycle-main-frame-row-item .views-field-subject {
    float: left;
    margin-top: -30px;
    margin-bottom: 0;
    line-height: 16px;
    height: 32px;
    overflow: hidden;
  }
  /* line 598, ../sass/components/_main.scss */
  #content #block-views-comments-block .views-slideshow-cycle-main-frame-row-item .views-field-created, #content #block-views-comments-block .blog-view .views_slideshow_cycle_main .views-slideshow-cycle-main-frame .views-slideshow-cycle-main-frame-row .views-slideshow-cycle-main-frame-row-item .views-field-comment-count, .blog-view .views_slideshow_cycle_main .views-slideshow-cycle-main-frame .views-slideshow-cycle-main-frame-row #content #block-views-comments-block .views-slideshow-cycle-main-frame-row-item .views-field-comment-count {
    float: left !important;
    color: #acacac;
    margin-top: 0 !important;
  }
  /* line 603, ../sass/components/_main.scss */
  #content #block-views-comments-block .views-slideshow-cycle-main-frame-row-item .views-field-comment-body {
    clear: both;
    height: 95px;
    overflow: hidden;
    font-size: 12px;
  }
  /* line 609, ../sass/components/_main.scss */
  #content #block-views-comments-block .views-slideshow-cycle-main-frame-row-item .views-field-title {
    font-size: 11px;
    line-height: 14px;
    height: 52px;
    overflow: hidden;
  }
}
/* line 618, ../sass/components/_main.scss */
#content #block-views-comments-block .views_slideshow_cycle_slide {
  max-width: 725px;
}
/* line 623, ../sass/components/_main.scss */
#content .welcome_intro {
  border-top: 4px solid #df4600;
  background-color: #f8e1b0;
  padding: 10px 14px;
}
/* line 628, ../sass/components/_main.scss */
#content .welcome_intro > h2.block__title {
  font-weight: normal;
  font-size: 24px;
  line-height: normal;
  color: #5D5D5D;
}
/* line 635, ../sass/components/_main.scss */
#content .welcome_intro > p {
  margin: 1em 0;
  font-size: 14px;
  line-height: normal;
}
/* line 641, ../sass/components/_main.scss */
#content .welcome_intro a {
  color: #df4600;
}
/* line 646, ../sass/components/_main.scss */
#content .block-views.country-select-block {
  height: 315px;
  background: url("../images/country_select_bg.jpg") no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  /* line 646, ../sass/components/_main.scss */
  #content .block-views.country-select-block {
    background-image: url("../images/country_select_bg_mobile.jpg");
  }
}
/* line 655, ../sass/components/_main.scss */
#content .block-views.country-select-block h2,
#content .block-views.country-select-block > .view-country-redirect {
  float: right;
  width: 55%;
}
@media screen and (max-width: 1024px) {
  /* line 655, ../sass/components/_main.scss */
  #content .block-views.country-select-block h2,
  #content .block-views.country-select-block > .view-country-redirect {
    width: 80%;
    float: none;
    margin: 0 auto;
    text-align: center;
  }
}
/* line 667, ../sass/components/_main.scss */
#content .block-views.country-select-block h2 {
  margin-top: 75px;
  font-weight: normal;
  font-family: "Sniglet-Regular", arial, Verdana, Tahoma, sans-serif;
  font-size: 32px;
  line-height: normal;
}
@media screen and (max-width: 1024px) {
  /* line 667, ../sass/components/_main.scss */
  #content .block-views.country-select-block h2 {
    margin-top: 0;
    padding-top: 15%;
  }
}
/* line 680, ../sass/components/_main.scss */
#content .block-views.country-select-block > .view-country-redirect {
  margin-top: 20px;
}
/* line 684, ../sass/components/_main.scss */
#content .block-views.country-select-block .form-type-select {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  /* line 687, ../sass/components/_main.scss */
  #content .block-views.country-select-block .form-type-select select {
    width: 100%;
  }
}

/* line 699, ../sass/components/_main.scss */
.region-highlighted .block {
  margin-bottom: 0;
}
/* line 701, ../sass/components/_main.scss */
.region-highlighted .view-content > .views-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: -8px;
  font-size: 22px;
  width: 100%;
}
@media all and (max-width: 768px) {
  /* line 701, ../sass/components/_main.scss */
  .region-highlighted .view-content > .views-row {
    font-size: 14px;
    line-height: normal;
    padding-top: 20px;
    padding-bottom: 25px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
  }
}
/* line 716, ../sass/components/_main.scss */
.region-highlighted .view-content > .views-row .views-field-field-image {
  margin-right: 15px;
}
@media all and (max-width: 768px) {
  /* line 716, ../sass/components/_main.scss */
  .region-highlighted .view-content > .views-row .views-field-field-image {
    max-width: 30%;
  }
}
/* line 724, ../sass/components/_main.scss */
.region-highlighted .view-content > .views-row .views-field-nothing {
  max-width: 55%;
}
/* line 728, ../sass/components/_main.scss */
.region-highlighted .view-content > .views-row .views-field-description {
  font-size: 12px;
  line-height: normal;
  margin-top: 10px;
  margin-bottom: 35px;
}
/* line 736, ../sass/components/_main.scss */
.region-highlighted .landing-header-details .view-content > .views-row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
}

/*new catagory landing*/
/* line 745, ../sass/components/_main.scss */
.catagory_landing .view-taxonomy-block > .view-header {
  font-size: 14px;
  line-height: normal;
}
/* line 752, ../sass/components/_main.scss */
.catagory_landing #main .view-taxonomy-block > .view-content > .views-row {
  padding: 10px 0;
  overflow: auto;
}
/* line 757, ../sass/components/_main.scss */
.catagory_landing #main .view-taxonomy-block > .view-content .views-field-name-i18n {
  color: #df4600;
  font-family: "kronika", arial;
  margin-bottom: 8px;
  font-size: 19px;
}
/* line 764, ../sass/components/_main.scss */
.catagory_landing #main .view-taxonomy-block > .view-content p {
  margin: 0 0 5px 0;
}
/* line 767, ../sass/components/_main.scss */
.catagory_landing #main .view-taxonomy-block > .view-content .views-field-field-j .view-header {
  color: #df4600;
  margin-top: 15px;
}
/* line 772, ../sass/components/_main.scss */
.catagory_landing #main .view-taxonomy-block > .view-content .views-field-field-j .view-content {
  padding: 12px 6px;
  background-color: #fef3dd;
  overflow: auto;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
/* line 778, ../sass/components/_main.scss */
.catagory_landing #main .view-taxonomy-block > .view-content .views-field-field-j .view-content .jcarousel-skin-default {
  margin: 0;
}
/* line 780, ../sass/components/_main.scss */
.catagory_landing #main .view-taxonomy-block > .view-content .views-field-field-j .view-content .jcarousel-container-horizontal {
  width: 100%;
  height: auto;
  padding: 0 15px;
}
/* line 785, ../sass/components/_main.scss */
.catagory_landing #main .view-taxonomy-block > .view-content .views-field-field-j .view-content .jcarousel-container-horizontal .jcarousel-clip-horizontal {
  width: 100%;
}
/* line 788, ../sass/components/_main.scss */
.catagory_landing #main .view-taxonomy-block > .view-content .views-field-field-j .view-content .jcarousel-container-horizontal .jcarousel-clip-horizontal .jcarousel-item {
  border: 0;
  background-color: transparent;
  height: auto;
}
/* line 793, ../sass/components/_main.scss */
.catagory_landing #main .view-taxonomy-block > .view-content .views-field-field-j .view-content .jcarousel-container-horizontal .jcarousel-clip-horizontal .jcarousel-item > div {
  float: left;
  width: auto;
}
/* line 800, ../sass/components/_main.scss */
.catagory_landing #main .view-taxonomy-block > .view-content .views-field-field-j .view-content .jcarousel-container-horizontal .jcarousel-clip-horizontal .jcarousel-item .thumbnail-img .views-field-thumb_image {
  display: block;
  line-height: 0;
  margin-bottom: 5px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  border: 1px solid #ffa304;
  overflow: hidden;
}
/* line 810, ../sass/components/_main.scss */
.catagory_landing #main .view-taxonomy-block > .view-content .views-field-field-j .view-content .jcarousel-container-horizontal .jcarousel-clip-horizontal .jcarousel-item .text-caption {
  text-align: left;
  width: 55%;
  padding-left: 5px;
}
@media all and (max-width: 768px) {
  /* line 810, ../sass/components/_main.scss */
  .catagory_landing #main .view-taxonomy-block > .view-content .views-field-field-j .view-content .jcarousel-container-horizontal .jcarousel-clip-horizontal .jcarousel-item .text-caption {
    width: 100%;
  }
}
/* line 819, ../sass/components/_main.scss */
.catagory_landing #main .view-taxonomy-block > .view-content .views-field-field-j .view-content .jcarousel-container-horizontal .jcarousel-clip-horizontal .jcarousel-item .text-caption .views-field-title {
  font-size: 16px;
  color: #df4600;
}
/* line 824, ../sass/components/_main.scss */
.catagory_landing #main .view-taxonomy-block > .view-content .views-field-field-j .view-content .jcarousel-container-horizontal .jcarousel-clip-horizontal .jcarousel-item .text-caption .views-field-field-text-teaser {
  font-size: 12px;
  line-height: normal;
}
/* line 832, ../sass/components/_main.scss */
.catagory_landing #main .view-taxonomy-block > .view-content .views-field-field-j .view-content .jcarousel-container-horizontal .jcarousel-prev-horizontal {
  top: 40%;
  left: 0;
  width: 16px;
  background-position: -78px 0px;
}
/* line 839, ../sass/components/_main.scss */
.catagory_landing #main .view-taxonomy-block > .view-content .views-field-field-j .view-content .jcarousel-container-horizontal .jcarousel-next-horizontal {
  top: 40%;
  right: 0;
  width: 16px;
  background-position: -67px -32px;
}
/* line 851, ../sass/components/_main.scss */
.catagory_landing #main .view-taxonomy-block > .view-content > .views-row > .views-field-nothing {
  border: 2px solid #ffa205;
  background-color: #fde5b5;
  padding: 18px 12px;
  position: relative;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
/* line 862, ../sass/components/_main.scss */
.catagory_landing #main .view-taxonomy-block > .view-content > .views-row > .views-field-nothing .views-field-description {
  font-size: 13px;
  line-height: 16px;
  padding-right: 95px;
}
/* line 868, ../sass/components/_main.scss */
.catagory_landing #main .view-taxonomy-block > .view-content > .views-row > .views-field-nothing .views-field-field-image {
  position: absolute;
  top: -20px;
  right: 10px;
  max-width: 94px;
}
/* line 874, ../sass/components/_main.scss */
.catagory_landing #main .view-taxonomy-block > .view-content > .views-row > .views-field-nothing .views-field-field-image a {
  display: block;
}

/*end new catagory landing*/
/*index blog*/
/* line 882, ../sass/components/_main.scss */
.blog-view {
  width: 100%;
  border-top: 5px solid #4ea5e8;
  background-color: #df4600;
  padding: 15px 20px;
  color: #ffffff;
  height: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  /* line 882, ../sass/components/_main.scss */
  .blog-view {
    height: 350px;
    padding: 15px 0;
  }
}
/* line 895, ../sass/components/_main.scss */
.blog-view h2 {
  font-weight: normal;
  font-size: 18px;
  line-height: 20px;
}
/* line 900, ../sass/components/_main.scss */
.blog-view .views-slideshow-controls-top {
  float: right;
  font-size: 13px;
  margin-top: -35px;
}
/* line 904, ../sass/components/_main.scss */
.blog-view .views-slideshow-controls-top > div {
  float: left;
}
/* line 907, ../sass/components/_main.scss */
.blog-view .views-slideshow-controls-top .views-slideshow-slide-counter {
  margin-right: 15px;
  color: #5ea6e0;
}
/* line 912, ../sass/components/_main.scss */
.blog-view .views-slideshow-controls-top .views-slideshow-controls-text > span {
  padding: 0 8px;
  border-left: 1px solid #ffffff;
}
/* line 916, ../sass/components/_main.scss */
.blog-view .views-slideshow-controls-top .views-slideshow-controls-text > span:first-child {
  border-left: none;
}
@media screen and (max-width: 768px) {
  /* line 922, ../sass/components/_main.scss */
  .blog-view h2 {
    text-align: center;
  }
  /* line 923, ../sass/components/_main.scss */
  .blog-view .views-slideshow-controls-top {
    position: absolute;
    bottom: 0;
    border-top: 1px solid #ffffff;
    width: 100%;
  }
  /* line 928, ../sass/components/_main.scss */
  .blog-view .views-slideshow-controls-top .views-slideshow-slide-counter {
    display: none;
  }
  /* line 929, ../sass/components/_main.scss */
  .blog-view .views-slideshow-controls-top .views-slideshow-controls-text {
    float: none;
  }
  /* line 931, ../sass/components/_main.scss */
  .blog-view .views-slideshow-controls-top .views-slideshow-controls-text > span {
    padding: 5px 0;
    display: block;
    float: left;
    width: 50%;
    box-sizing: border-box;
    text-align: center;
  }
  /* line 940, ../sass/components/_main.scss */
  .blog-view .views-slideshow-controls-top .views-slideshow-controls-text-pause {
    display: none !important;
  }
}
/* line 944, ../sass/components/_main.scss */
.blog-view .views_slideshow_cycle_main {
  margin-top: 15px;
}
/* line 946, ../sass/components/_main.scss */
.blog-view .views_slideshow_cycle_main .views-slideshow-cycle-main-frame {
  width: 100% !important;
}
@media screen and (max-width: 768px) {
  /* line 946, ../sass/components/_main.scss */
  .blog-view .views_slideshow_cycle_main .views-slideshow-cycle-main-frame {
    padding: 0 5px;
  }
}
/* line 951, ../sass/components/_main.scss */
.blog-view .views_slideshow_cycle_main .views-slideshow-cycle-main-frame .views-slideshow-cycle-main-frame-row {
  width: 100% !important;
}
/* line 953, ../sass/components/_main.scss */
.blog-view .views_slideshow_cycle_main .views-slideshow-cycle-main-frame .views-slideshow-cycle-main-frame-row .views-slideshow-cycle-main-frame-row-item {
  width: 50%;
  float: left;
}
/* line 956, ../sass/components/_main.scss */
.blog-view .views_slideshow_cycle_main .views-slideshow-cycle-main-frame .views-slideshow-cycle-main-frame-row .views-slideshow-cycle-main-frame-row-item .views-field-picture {
  width: 35px;
  height: 35px;
  float: left;
}
/* line 960, ../sass/components/_main.scss */
.blog-view .views_slideshow_cycle_main .views-slideshow-cycle-main-frame .views-slideshow-cycle-main-frame-row .views-slideshow-cycle-main-frame-row-item .views-field-picture img {
  width: 100%;
  height: auto;
}
/* line 965, ../sass/components/_main.scss */
.blog-view .views_slideshow_cycle_main .views-slideshow-cycle-main-frame .views-slideshow-cycle-main-frame-row .views-slideshow-cycle-main-frame-row-item .views-field-value, .blog-view .views_slideshow_cycle_main .views-slideshow-cycle-main-frame .views-slideshow-cycle-main-frame-row .views-slideshow-cycle-main-frame-row-item .views-field-value-1 {
  margin-left: 10px;
  font-size: 12px;
  color: #ffffff;
}
/* line 970, ../sass/components/_main.scss */
.blog-view .views_slideshow_cycle_main .views-slideshow-cycle-main-frame .views-slideshow-cycle-main-frame-row .views-slideshow-cycle-main-frame-row-item .views-field-title {
  background-color: #ffffff;
  padding: 10px;
  color: #df4600;
  font-size: 15px !important;
  line-height: 18px;
  margin: 0;
  height: 62px;
  overflow: hidden;
  clear: both;
}
/* line 981, ../sass/components/_main.scss */
.blog-view .views_slideshow_cycle_main .views-slideshow-cycle-main-frame .views-slideshow-cycle-main-frame-row .views-slideshow-cycle-main-frame-row-item .views-field-created, .blog-view .views_slideshow_cycle_main .views-slideshow-cycle-main-frame .views-slideshow-cycle-main-frame-row .views-slideshow-cycle-main-frame-row-item .views-field-comment-count {
  color: #80b9e7;
  font-size: 12px;
}
/* line 985, ../sass/components/_main.scss */
.blog-view .views_slideshow_cycle_main .views-slideshow-cycle-main-frame .views-slideshow-cycle-main-frame-row .views-slideshow-cycle-main-frame-row-item .views-field-comment-count {
  float: right;
}
/* line 989, ../sass/components/_main.scss */
.blog-view .views_slideshow_cycle_main .views-slideshow-cycle-main-frame .views-slideshow-cycle-main-frame-row .views-slideshow-cycle-main-frame-row-item .views-field-comment-count:before {
  content: url("../images/icon-talk2.png");
}
@media screen and (max-width: 768px) {
  /* line 994, ../sass/components/_main.scss */
  .blog-view .views_slideshow_cycle_main .views-slideshow-cycle-main-frame .views-slideshow-cycle-main-frame-row .views-slideshow-cycle-main-frame-row-item {
    width: 100%;
    float: none;
    padding-left: 5px;
    padding-right: 5px;
  }
}
/* line 1002, ../sass/components/_main.scss */
.blog-view .views_slideshow_cycle_main .views-slideshow-cycle-main-frame .views-slideshow-cycle-main-frame-row .views-slideshow-cycle-main-frame-row-item:first-child {
  padding-right: 25px;
}
@media screen and (max-width: 768px) {
  /* line 1006, ../sass/components/_main.scss */
  .blog-view .views_slideshow_cycle_main .views-slideshow-cycle-main-frame .views-slideshow-cycle-main-frame-row .views-slideshow-cycle-main-frame-row-item:first-child {
    padding-right: 5px;
  }
}

/*end index blog*/
/* line 1017, ../sass/components/_main.scss */
.sidebars {
  float: left;
  width: 34%;
  	/*
  	.region-sidebar-second {
  		margin: 0 !important;
  		width: 100%;
  		.block-image img { width: 100%;	}
  	}
  
  	.sidebar-course-block {
  		.view-content > .views-row {
  			position: relative;
  		}
  		.views-field-title {
  			position: absolute;
  		  top: 12px;
  		  font-size: 11px;
  		  color: #ffffff;
  		  background-color: #006ec7;
  		  padding: 0 10px;
  		}
  		.views-field-field-site-structure {
  			position: absolute;
  		  z-index: 2;
  		  color: #ffffff;
  		  bottom: 5px;
  		  left: 0;
  		  width: 100%;
  		  padding: 2px 8px;
  		  background: url('../images/trans_bg.png');
  		  font-size: 14px;
  		  font-family: $bangwhackpow;
  		}
  		.views-field-field-image img {
  			width: 328px;
  		}
  		@media screen and (max-width: $mobile) { 
  			.views-field-field-image img {
  				width: 100%;
  				height: auto;
  			}
  		}
  	}
  
  	.sidebar-book-navigation {
  		>.menu {
  			padding-left: 0;
  			font-size: 12px;
  			list-style-type: none;
  
  			>li {
  				list-style-image: none;
  				border-top: 1px solid #dbdbdb;
  				>a {
  					padding: 5px 12px;
  					background-color: #f4f4f4;
  					display: block;
  				}
  				
  				>.menu {
  					background-color: #e8f0d8;
  					padding: 5px 12px 5px 27px;
  					color: $main-theme-color;
  				}
  
  				.is-active-trail > a { color: #000000; }
  			}
  
  			>li.active-trail >a {
  				background-color: $main-theme-color;
  				color: #ffffff;
  			}
  		}
  	}
  	*/
  /*choose front page country block*/
  /*end choose front page country block*/
}
@media screen and (max-width: 768px) {
  /* line 1017, ../sass/components/_main.scss */
  .sidebars {
    width: 100%;
    margin-top: 10px;
  }
}
/* line 1025, ../sass/components/_main.scss */
.sidebars #views-exposed-form-glossary-block-1 {
  display: none;
}
/* line 1027, ../sass/components/_main.scss */
.sidebars h2 {
  color: #df4600;
  font-weight: normal;
  font-size: 21px;
  line-height: normal;
  padding: 0 0 10px 0;
  font-family: "bangwhackpow", "Sniglet-Regular", arial, Verdana, Tahoma, sans-serif;
}
/* line 1036, ../sass/components/_main.scss */
.sidebars .form-type-textfield {
  display: inline-block;
  margin: 0;
}
/* line 1041, ../sass/components/_main.scss */
.sidebars input[type="submit"] {
  padding: 6px 10px;
}
/* line 1046, ../sass/components/_main.scss */
.sidebars > section > .block {
  border: 1px solid #df4600;
  border-top: 6px solid #df4600;
  border-radius: 6px 6px 6px 6px;
  -moz-border-radius: 6px 6px 6px 6px;
  -webkit-border-radius: 6px 6px 6px 6px;
  -khtml-border-radius: 6px 6px 6px 6px;
  background-color: #fef7e5;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}
/* line 1055, ../sass/components/_main.scss */
.sidebars > section > .block .header-text p {
  margin: 0;
  color: #df4600;
  font-weight: normal;
  font-size: 21px;
  line-height: normal;
  padding: 5px 0 10px 0;
  font-family: "bangwhackpow", "Sniglet-Regular", arial, Verdana, Tahoma, sans-serif;
  letter-spacing: 0.3px;
}
/* line 1067, ../sass/components/_main.scss */
.sidebars > section > .block .item-list ul {
  padding-left: 0;
}
/* line 1070, ../sass/components/_main.scss */
.sidebars > section > .block .item-list ul .relevant-node-type-article,
.sidebars > section > .block .item-list ul .relevant-node-type-language_games {
  list-style-image: none;
  list-style-type: none;
  margin-bottom: 10px;
  line-height: 1.3em;
  font-size: 13px;
}
/* line 1078, ../sass/components/_main.scss */
.sidebars > section > .block .item-list ul .relevant-node-type-article > a,
.sidebars > section > .block .item-list ul .relevant-node-type-language_games > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
/* line 1081, ../sass/components/_main.scss */
.sidebars > section > .block .item-list ul .relevant-node-type-article > a img,
.sidebars > section > .block .item-list ul .relevant-node-type-language_games > a img {
  margin-right: 5px;
  border: 1px solid #df4600;
  border-radius: 2px 2px 2px 2px;
  -moz-border-radius: 2px 2px 2px 2px;
  -webkit-border-radius: 2px 2px 2px 2px;
  -khtml-border-radius: 2px 2px 2px 2px;
}
/* line 1087, ../sass/components/_main.scss */
.sidebars > section > .block .item-list ul .relevant-node-type-article > a span,
.sidebars > section > .block .item-list ul .relevant-node-type-language_games > a span {
  display: block;
  font-family: "bangwhackpow", "Sniglet-Regular", arial, Verdana, Tahoma, sans-serif;
  color: #df4600;
  font-size: 17px;
  letter-spacing: 0.3px;
}
/* line 1096, ../sass/components/_main.scss */
.sidebars > section > .block .item-list ul .relevant-node-type-article p,
.sidebars > section > .block .item-list ul .relevant-node-type-language_games p {
  margin: 0;
}
/* line 1102, ../sass/components/_main.scss */
.sidebars > section .block-menu {
  border-width: 1px;
  background-color: #df4600;
  color: #ffffff;
}
/* line 1107, ../sass/components/_main.scss */
.sidebars > section .block-menu ul {
  padding-left: 22px;
}
/* line 1110, ../sass/components/_main.scss */
.sidebars > section .block-menu ul li {
  list-style-image: url("../images/style-image-play.svg");
}
/* line 1114, ../sass/components/_main.scss */
.sidebars > section .block-menu .contextual-links-wrapper ul {
  padding-left: 0;
}
/* line 1115, ../sass/components/_main.scss */
.sidebars > section .block-menu .contextual-links-wrapper li {
  list-style-image: none;
}
/* line 1118, ../sass/components/_main.scss */
.sidebars > section .block-menu h2 {
  color: #ffffff;
}
/* line 1123, ../sass/components/_main.scss */
.sidebars .pager .pager-previous {
  float: left;
}
/* line 1124, ../sass/components/_main.scss */
.sidebars .pager .pager-current {
  border-bottom: none;
  background-color: transparent;
  color: #000000;
  font-size: 11px;
}
/* line 1130, ../sass/components/_main.scss */
.sidebars .pager .pager-next {
  margin-right: 0;
  position: static;
  float: right;
}
/* line 1135, ../sass/components/_main.scss */
.sidebars .pager .ajax-progress {
  display: none;
}
/* line 1138, ../sass/components/_main.scss */
.sidebars .advert_block {
  padding: 0 !important;
  border: 0 !important;
}
/* line 1142, ../sass/components/_main.scss */
.sidebars .advert_block .views-row {
  margin-bottom: 10px;
}
/* line 1144, ../sass/components/_main.scss */
.sidebars .advert_block .views-field-title {
  color: #ffffff;
  font-size: 14px;
  padding: 6px 10px 6px 34px;
  background: #df4600 url("../images/style-image-play.svg") 10px center no-repeat;
  border-radius: 6px 6px 0 0;
  -moz-border-radius: 6px 6px 0 0;
  -webkit-border-radius: 6px 6px 0 0;
  -khtml-border-radius: 6px 6px 0 0;
}
@media screen and (max-width: 768px) {
  /* line 1154, ../sass/components/_main.scss */
  .sidebars .advert_block .views-field-field-image img {
    width: 100%;
  }
}
/* line 1159, ../sass/components/_main.scss */
.sidebars .popular_block {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
}
/* line 1164, ../sass/components/_main.scss */
.sidebars .popular_block h2 {
  padding-left: 10px;
  padding-right: 10px;
}
/* line 1170, ../sass/components/_main.scss */
.sidebars .popular_block .view-content > .views-row {
  border-top: 1px solid #df4600;
  padding-top: 8px;
  padding-bottom: 8px;
}
/* line 1176, ../sass/components/_main.scss */
.sidebars .popular_block .view-content > .views-row .views-field-title:before {
  color: #999999;
  font-size: 25px;
  font-style: italic;
  position: absolute;
  margin-left: -26px;
}
/* line 1183, ../sass/components/_main.scss */
.sidebars .popular_block .view-content > .views-row:nth-child(1) .views-field-title:before {
  content: "1";
}
/* line 1184, ../sass/components/_main.scss */
.sidebars .popular_block .view-content > .views-row:nth-child(2) .views-field-title:before {
  content: "2";
}
/* line 1185, ../sass/components/_main.scss */
.sidebars .popular_block .view-content > .views-row:nth-child(3) .views-field-title:before {
  content: "3";
}
/* line 1186, ../sass/components/_main.scss */
.sidebars .popular_block .view-content > .views-row:nth-child(4) .views-field-title:before {
  content: "4";
}
/* line 1187, ../sass/components/_main.scss */
.sidebars .popular_block .view-content > .views-row:nth-child(5) .views-field-title:before {
  content: "5";
}
/* line 1190, ../sass/components/_main.scss */
.sidebars .popular_block .views-field-comment-count {
  display: none;
}
/* line 1192, ../sass/components/_main.scss */
.sidebars .popular_block .views-field-title {
  margin-left: 35px;
}
/* line 1199, ../sass/components/_main.scss */
.sidebars .course_two {
  padding: 18px 30px;
  font-size: 14px;
  line-height: normal;
}
/* line 1204, ../sass/components/_main.scss */
.sidebars .course_two h2 {
  padding-left: 0;
  padding-right: 0;
}
/* line 1209, ../sass/components/_main.scss */
.sidebars .course_two p {
  margin: 0;
}
/* line 1211, ../sass/components/_main.scss */
.sidebars .course_two ul {
  margin: 10px 0;
}
/* line 1214, ../sass/components/_main.scss */
.sidebars .course_two ul li {
  list-style-image: none;
  list-style-type: none;
  line-height: 1.5em;
}
/* line 1220, ../sass/components/_main.scss */
.sidebars .course_two ul li:before {
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #df4600;
  position: absolute;
  margin-left: -15px;
  margin-top: 6px;
}
/* line 1235, ../sass/components/_main.scss */
.sidebars .letter-menu-block .attachment .view-content {
  border-top: 1px solid #df4600;
  border-bottom: 1px solid #df4600;
  padding: 4px 10px;
  overflow: auto;
}
/* line 1241, ../sass/components/_main.scss */
.sidebars .letter-menu-block .attachment .view-content .views-summary a {
  display: block;
  float: left;
  color: #000000;
  width: 23px;
  text-align: center;
  font-size: 13px;
}
/* line 1249, ../sass/components/_main.scss */
.sidebars .letter-menu-block .attachment .view-content .views-summary a.active {
  background-color: #e0612c;
  color: #ffffff;
}
/* line 1255, ../sass/components/_main.scss */
.sidebars .letter-menu-block .attachment .view-content .views-summary a:hover {
  background-color: #df4600;
  color: #ffffff;
}
/* line 1260, ../sass/components/_main.scss */
.sidebars .letter-menu-block .attachment .view-content .ajax-progress {
  display: none;
}
/* line 1263, ../sass/components/_main.scss */
.sidebars .letter-menu-block table.views-table {
  margin: 0;
  width: 100%;
  background-color: transparent;
}
/* line 1268, ../sass/components/_main.scss */
.sidebars .letter-menu-block table.views-table thead {
  display: none;
}
/* line 1270, ../sass/components/_main.scss */
.sidebars .letter-menu-block table.views-table th {
  text-align: left;
  padding: 4px 15px;
}
/* line 1275, ../sass/components/_main.scss */
.sidebars .letter-menu-block table.views-table td {
  padding: 4px 0;
  border: 0;
  color: #df4600;
}
/* line 1281, ../sass/components/_main.scss */
.sidebars .letter-menu-block table.views-table tr, .sidebars .letter-menu-block table.views-table td.active {
  border: none;
  background-color: transparent;
}
/* line 1286, ../sass/components/_main.scss */
.sidebars .letter-menu-block table.views-table tbody {
  font-size: 13px;
  margin-top: 10px;
}
/* line 1290, ../sass/components/_main.scss */
.sidebars .letter-menu-block table.views-table tbody td:first-child {
  width: 40px;
  max-width: 40px;
}
/* line 1295, ../sass/components/_main.scss */
.sidebars .letter-menu-block table.views-table tbody td:last-child {
  padding-left: 5px;
  padding-right: 5px;
}
/* line 1302, ../sass/components/_main.scss */
.sidebars .letter-menu-block .pager {
  margin-top: 0;
}
/* line 1380, ../sass/components/_main.scss */
.sidebars .country-select-block {
  background-color: #df4600;
  padding: 14px 8px;
}
/* line 1384, ../sass/components/_main.scss */
.sidebars .country-select-block h2 {
  padding: 0;
  background-color: transparent;
  color: #ffffff;
  font-size: 15px;
}
/* line 1391, ../sass/components/_main.scss */
.sidebars .country-select-block .form-item {
  margin: 0;
}
/* line 1395, ../sass/components/_main.scss */
.sidebars .country-select-block select {
  width: 100%;
  margin-top: 8px;
  padding: 2px;
  font-size: 12px;
}

/* line 1406, ../sass/components/_main.scss */
.book-navigation {
  clear: both;
  margin-bottom: 10px;
  margin-top: 10px;
  letter-spacing: 0.3px;
}
/* line 1412, ../sass/components/_main.scss */
.book-navigation .page-links {
  border: none;
  border-bottom: 1px solid #df4600;
  background-color: #e8f0d8;
  font-size: 14px;
  font-family: "bangwhackpow", "Sniglet-Regular", arial, Verdana, Tahoma, sans-serif;
}
/* line 1420, ../sass/components/_main.scss */
.book-navigation a {
  text-decoration: none;
  color: #df4600;
}
/* line 1425, ../sass/components/_main.scss */
.book-navigation .page-previous {
  padding-left: 15px;
  background: url("../images/icon-arrow-left-grey.svg") left center no-repeat;
}
/* line 1430, ../sass/components/_main.scss */
.book-navigation .page-next {
  padding-right: 15px;
  background: url("../images/icon-arrow-right-grey.svg") right center no-repeat;
}
/* line 1435, ../sass/components/_main.scss */
.book-navigation .page-up {
  width: auto;
}

/*header promote block*/
/* line 1441, ../sass/components/_main.scss */
.view-id-ad_block .views-field-field-site-link {
  background-color: #436300 !important;
}
/* line 1444, ../sass/components/_main.scss */
.view-id-ad_block .views-field-field-image {
  width: 100% !important;
  line-height: 0;
}
/* line 1447, ../sass/components/_main.scss */
.view-id-ad_block .views-field-field-image img {
  width: 100%;
}

/*end header promote block*/
/*aside promote block*/
/* line 1456, ../sass/components/_main.scss */
#block-views-content-blocks-block-5 {
  margin-bottom: 6px;
}

/* line 1460, ../sass/components/_main.scss */
.view-ad-block {
  position: relative;
}
/* line 1463, ../sass/components/_main.scss */
.view-ad-block > .view-content > .views-row {
  position: relative;
  margin-bottom: 1em;
}
/* line 1468, ../sass/components/_main.scss */
.view-ad-block .views-field-field-site-link-1 {
  background-color: #df4600;
  padding: 8px 8px;
  padding-left: 20px;
  color: #ffffff;
  font-size: 14px;
}
/* line 1476, ../sass/components/_main.scss */
.view-ad-block .views-field-field-site-link-1:before {
  content: url("../images/icon-arrow-right-white.svg");
  position: absolute;
  margin-left: -12px;
}
/* line 1482, ../sass/components/_main.scss */
.view-ad-block .views-field-body {
  display: none;
  position: absolute;
  bottom: 0;
  width: 100%;
  font-size: 14px;
  font-weight: normal;
  background: url("../images/promo_box_bg.png");
  float: none !important;
  color: #ffffff;
  padding: 6px;
}
/* line 1494, ../sass/components/_main.scss */
.view-ad-block .views-field-body a {
  display: block;
}
/* line 1499, ../sass/components/_main.scss */
.view-ad-block .views-field-field-image {
  line-height: 0;
}
@media screen and (max-width: 768px) {
  /* line 1502, ../sass/components/_main.scss */
  .view-ad-block .views-field-field-image img {
    width: 100%;
  }
}

/* line 1508, ../sass/components/_main.scss */
.view-ad-block .view-content > div:hover .views-field-body {
  display: block;
  float: none !important;
}

/*end aside promote block*/
/*Subcat landing*/
@media screen and (max-width: 768px) {
  /* line 1519, ../sass/components/_main.scss */
  .page-taxonomy-term- #content {
    width: 100% !important;
  }
}

/*end subcat landing*/
/*landing app page*/
/* line 1528, ../sass/components/_main.scss */
.landing_apps #page {
  background-color: #ffedd5;
}
/* line 1530, ../sass/components/_main.scss */
.landing_apps #main {
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  /* line 1530, ../sass/components/_main.scss */
  .landing_apps #main {
    padding-top: 0;
  }
}
/* line 1537, ../sass/components/_main.scss */
.landing_apps .top_title_region {
  background-color: #990038;
  padding: 0;
}
@media screen and (max-width: 768px) {
  /* line 1537, ../sass/components/_main.scss */
  .landing_apps .top_title_region {
    margin-left: 10px;
    margin-right: 10px;
  }
}
/* line 1546, ../sass/components/_main.scss */
.landing_apps .top_title_region .breadcrumb {
  display: none;
}
/* line 1551, ../sass/components/_main.scss */
.landing_apps .top_title_region:after {
  background: url("../images/top_title_region_bottom-app.png") center top no-repeat;
}
/* line 1553, ../sass/components/_main.scss */
.landing_apps #main:before {
  content: none;
}
/* line 1557, ../sass/components/_main.scss */
.landing_apps .featured-banner-region > .block-views {
  width: 100%;
  max-width: 1004px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  /* line 1557, ../sass/components/_main.scss */
  .landing_apps .featured-banner-region > .block-views {
    padding-left: 10px;
    padding-right: 10px;
  }
}
/* line 1566, ../sass/components/_main.scss */
.landing_apps .featured-banner-region > .block-views .views-row {
  background-color: #fff1df;
  padding-top: 40px;
  overflow: auto;
}
@media screen and (max-width: 768px) {
  /* line 1566, ../sass/components/_main.scss */
  .landing_apps .featured-banner-region > .block-views .views-row {
    padding-top: 20px;
  }
}
/* line 1575, ../sass/components/_main.scss */
.landing_apps .featured-banner-region > .block-views .views-field-field-featured-banner {
  border-radius: 10px 10px 10px 10px;
  -moz-border-radius: 10px 10px 10px 10px;
  -webkit-border-radius: 10px 10px 10px 10px;
  -khtml-border-radius: 10px 10px 10px 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  /* line 1580, ../sass/components/_main.scss */
  .landing_apps .featured-banner-region > .block-views .views-field-field-featured-banner img {
    width: 100%;
  }
}
/* line 1584, ../sass/components/_main.scss */
.landing_apps .featured-banner-region > .block-views .views-field-nothing {
  float: left;
  width: 60%;
}
@media screen and (max-width: 768px) {
  /* line 1584, ../sass/components/_main.scss */
  .landing_apps .featured-banner-region > .block-views .views-field-nothing {
    width: 100%;
  }
}
/* line 1592, ../sass/components/_main.scss */
.landing_apps .featured-banner-region > .block-views .views-field-nothing-1 {
  position: relative;
}
@media screen and (max-width: 768px) {
  /* line 1592, ../sass/components/_main.scss */
  .landing_apps .featured-banner-region > .block-views .views-field-nothing-1 {
    width: 100%;
  }
  /* line 1598, ../sass/components/_main.scss */
  .landing_apps .featured-banner-region > .block-views .views-field-nothing-1 img {
    width: 100%;
  }
}
/* line 1602, ../sass/components/_main.scss */
.landing_apps .featured-banner-region > .block-views .content_left {
  float: left;
  width: 25%;
  padding-right: 10px;
}
@media screen and (max-width: 768px) {
  /* line 1602, ../sass/components/_main.scss */
  .landing_apps .featured-banner-region > .block-views .content_left {
    width: 40%;
  }
}
/* line 1611, ../sass/components/_main.scss */
.landing_apps .featured-banner-region > .block-views .content_right {
  float: left;
  width: 75%;
}
@media screen and (max-width: 768px) {
  /* line 1611, ../sass/components/_main.scss */
  .landing_apps .featured-banner-region > .block-views .content_right {
    width: 60%;
  }
}
/* line 1619, ../sass/components/_main.scss */
.landing_apps .featured-banner-region > .block-views .featured-banner-text {
  position: absolute;
  top: 16%;
  left: 2%;
  color: #ffffff;
  max-width: 40%;
}
@media screen and (max-width: 768px) {
  /* line 1619, ../sass/components/_main.scss */
  .landing_apps .featured-banner-region > .block-views .featured-banner-text {
    top: 10%;
    max-width: 68%;
  }
}
/* line 1631, ../sass/components/_main.scss */
.landing_apps .featured-banner-region > .block-views .featured-banner-text .featured-banner-icon {
  float: left;
  width: 110px;
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  /* line 1631, ../sass/components/_main.scss */
  .landing_apps .featured-banner-region > .block-views .featured-banner-text .featured-banner-icon {
    display: none;
  }
}
/* line 1641, ../sass/components/_main.scss */
.landing_apps .featured-banner-region > .block-views .featured-banner-text .featured-banner-right {
  float: left;
  width: calc(100% - 125px);
}
@media screen and (max-width: 768px) {
  /* line 1641, ../sass/components/_main.scss */
  .landing_apps .featured-banner-region > .block-views .featured-banner-text .featured-banner-right {
    width: 100%;
  }
}
/* line 1650, ../sass/components/_main.scss */
.landing_apps .featured-banner-region > .block-views .featured-banner-text .featured-banner-title {
  font-size: 22px;
  color: #000;
}
@media screen and (max-width: 768px) {
  /* line 1650, ../sass/components/_main.scss */
  .landing_apps .featured-banner-region > .block-views .featured-banner-text .featured-banner-title {
    font-size: 16px;
    line-height: 1.2em;
  }
}
/* line 1660, ../sass/components/_main.scss */
.landing_apps .featured-banner-region > .block-views .featured-banner-text .featured-banner-teaser {
  font-size: 12px;
  line-height: normal;
  color: #000000;
}
/* line 1665, ../sass/components/_main.scss */
.landing_apps .featured-banner-region > .block-views .featured-banner-text .featured-banner-teaser p {
  margin: 10px 0 0 0;
}
/* line 1669, ../sass/components/_main.scss */
.landing_apps .featured-banner-region > .block-views .sub_title {
  font-size: 26px;
  line-height: 30px;
  color: #df4600;
}
/* line 1675, ../sass/components/_main.scss */
.landing_apps .featured-banner-region > .block-views .caption {
  margin-top: 10px;
  font-size: 12px;
  line-height: 15px;
  color: #000000;
}
/* line 1685, ../sass/components/_main.scss */
.landing_apps #content h2.block-title {
  padding: 8px 14px;
  color: #df4600;
  border-top: 4px solid #df4600;
  font-weight: normal;
  font-size: 16px;
  line-height: normal;
  font-family: 'british_council-bold';
}
/* line 1694, ../sass/components/_main.scss */
.landing_apps #content h2.block-title span {
  line-height: normal;
}
/* line 1697, ../sass/components/_main.scss */
.landing_apps #content > .app_views {
  border-radius: 4px 4px 4px 4px;
  -moz-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  -khtml-border-radius: 4px 4px 4px 4px;
  border: 1px solid #df4600;
  background-color: #fef7e5;
}
/* line 1704, ../sass/components/_main.scss */
.landing_apps #content > .app_views .view-content-blocks .view-content {
  padding: 5px 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* line 1709, ../sass/components/_main.scss */
.landing_apps #content > .app_views .view-content-blocks .view-content:after {
  content: "";
  flex: auto;
}
/* line 1714, ../sass/components/_main.scss */
.landing_apps #content > .app_views .view-content-blocks .view-content > .views-row {
  background-color: #fff;
  width: 48%;
  margin: 0 1% 15px 1%;
  padding: 15px 16px;
  border: 1px solid #e3b8a8;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-shadow: 2px 2px 2px 0px #b5b5b5;
  -moz-box-shadow: 2px 2px 2px 0px #b5b5b5;
  box-shadow: 2px 2px 2px 0px #b5b5b5;
  border-radius: 10px 10px 10px 10px;
  -moz-border-radius: 10px 10px 10px 10px;
  -webkit-border-radius: 10px 10px 10px 10px;
  -khtml-border-radius: 10px 10px 10px 10px;
}
@media screen and (max-width: 768px) {
  /* line 1714, ../sass/components/_main.scss */
  .landing_apps #content > .app_views .view-content-blocks .view-content > .views-row {
    width: 100%;
  }
}
/* line 1732, ../sass/components/_main.scss */
.landing_apps #content > .app_views .view-content-blocks .view-content .views-field-field-image {
  width: 32%;
}
/* line 1736, ../sass/components/_main.scss */
.landing_apps #content > .app_views .view-content-blocks .view-content .views-field-nothing-1 {
  width: 37%;
}
/* line 1740, ../sass/components/_main.scss */
.landing_apps #content > .app_views .view-content-blocks .view-content .views-field-nothing {
  width: 60%;
}
/* line 1744, ../sass/components/_main.scss */
.landing_apps #content > .app_views .view-content-blocks .view-content .title {
  color: #9b063d;
  line-height: normal;
  font-size: 20px;
}
/* line 1750, ../sass/components/_main.scss */
.landing_apps #content > .app_views .view-content-blocks .view-content .teaser {
  margin-top: 5px;
  font-size: 14px;
  line-height: normal;
}
/* line 1756, ../sass/components/_main.scss */
.landing_apps #content > .app_views .view-content-blocks .view-content p {
  margin: 0;
}
/* line 1758, ../sass/components/_main.scss */
.landing_apps #content > .app_views .view-content-blocks .view-content .app-icon {
  display: none;
}
/* line 1766, ../sass/components/_main.scss */
.landing_apps .app-icon-white {
  margin-top: 10px;
  display: none;
}
@media screen and (max-width: 768px) {
  /* line 1766, ../sass/components/_main.scss */
  .landing_apps .app-icon-white {
    display: none;
  }
}
/* line 1773, ../sass/components/_main.scss */
.landing_apps .app-icon-white > span a {
  display: block;
  text-indent: -9999px;
  display: block;
  float: left;
  width: 16px;
  height: 18px;
  background: url("../images/icon_app.png") no-repeat;
  margin: 0 3px;
}
/* line 1784, ../sass/components/_main.scss */
.landing_apps .app-icon-white .app-icon-apple a {
  background-position: 0 0px;
}
/* line 1785, ../sass/components/_main.scss */
.landing_apps .app-icon-white .app-icon-google a {
  background-position: -16px 0px;
}
/* line 1786, ../sass/components/_main.scss */
.landing_apps .app-icon-white .app-icon-blackberry a {
  background-position: -32px 0px;
}
/* line 1787, ../sass/components/_main.scss */
.landing_apps .app-icon-white .app-icon-windows a {
  background-position: -64px 0px;
}
/* line 1788, ../sass/components/_main.scss */
.landing_apps .app-icon-white .app-icon-amazon a {
  background-position: -96px 0;
}

/* line 1792, ../sass/components/_main.scss */
#block-views-learnenglishkids-apps-adults {
  border-color: #00843d;
  padding: 0 10px 10px 10px;
}
/* line 1796, ../sass/components/_main.scss */
#block-views-learnenglishkids-apps-adults .block-title {
  color: #00843d;
  margin-left: -10px;
  margin-right: -10px;
  padding: 8px 14px;
}

/* line 1805, ../sass/components/_main.scss */
.learnenglish-adults-feature-apps .views-row {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
/* line 1817, ../sass/components/_main.scss */
.learnenglish-adults-feature-apps .views-row .left {
  width: 32%;
}
/* line 1818, ../sass/components/_main.scss */
.learnenglish-adults-feature-apps .views-row .right {
  width: 65%;
}
/* line 1820, ../sass/components/_main.scss */
.learnenglish-adults-feature-apps .views-row .views-field-title {
  font-size: 20px;
  font-family: 'british_council-bold';
  color: #00843d;
}
/* line 1826, ../sass/components/_main.scss */
.learnenglish-adults-feature-apps .views-row .views-field-field-text-teaser {
  font-size: 13px;
  line-height: 17px;
}
/* line 1829, ../sass/components/_main.scss */
.learnenglish-adults-feature-apps .views-row .views-field-field-text-teaser p {
  margin: 8px 0 0 0;
}

/* line 1834, ../sass/components/_main.scss */
.app-icon {
  line-height: 0;
  margin-top: 5px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
@media screen and (max-width: 768px) {
  /* line 1834, ../sass/components/_main.scss */
  .app-icon {
    display: none;
  }
}
/* line 1857, ../sass/components/_main.scss */
.app-icon span a {
  display: block;
  width: 16px;
  height: 18px;
  background: url("../images/icon_app.png") no-repeat;
  margin: 0 4px;
  display: block;
  text-indent: -9999px;
}
/* line 1867, ../sass/components/_main.scss */
.app-icon .app-icon-apple a {
  background-position: 0 -30px;
}
/* line 1868, ../sass/components/_main.scss */
.app-icon .app-icon-google a {
  background-position: -16px -30px;
}
/* line 1869, ../sass/components/_main.scss */
.app-icon .app-icon-blackberry a {
  background-position: -32px -30px;
}
/* line 1870, ../sass/components/_main.scss */
.app-icon .app-icon-windows a {
  background-position: -64px -30px;
}
/* line 1871, ../sass/components/_main.scss */
.app-icon .app-icon-amazon a {
  background-position: -96px -30px;
}

/*end landing app page*/
/*detail app page*/
/* line 1878, ../sass/components/_main.scss */
.node-apps .group-banner {
  position: relative;
  padding: 0;
  float: left;
  width: 140px;
}
@media screen and (max-width: 768px) {
  /* line 1878, ../sass/components/_main.scss */
  .node-apps .group-banner {
    width: 100%;
    float: none;
  }
}
/* line 1889, ../sass/components/_main.scss */
.node-apps .group-banner > h3 {
  display: none;
}
/* line 1891, ../sass/components/_main.scss */
.node-apps .group-banner .field-group-format-wrapper {
  background-color: transparent;
  overflow: auto;
}
/* line 1896, ../sass/components/_main.scss */
.node-apps .group-banner .field-name-field-image {
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  /* line 1896, ../sass/components/_main.scss */
  .node-apps .group-banner .field-name-field-image {
    float: left;
    width: 133px;
    padding-right: 10px;
  }
}
/* line 1905, ../sass/components/_main.scss */
.node-apps .group-banner .field-name-field-image img {
  max-width: 100%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  /* line 1911, ../sass/components/_main.scss */
  .node-apps .group-banner .field-name-field-text-teaser {
    float: left;
    width: calc(100% - 143px);
  }
  /* line 1916, ../sass/components/_main.scss */
  .node-apps .group-banner .field-name-field-text-teaser p {
    margin: 0;
  }
}
/* line 1922, ../sass/components/_main.scss */
.node-apps .group-banner .group_top {
  float: left;
  width: 85%;
}
@media screen and (max-width: 768px) {
  /* line 1922, ../sass/components/_main.scss */
  .node-apps .group-banner .group_top {
    width: 70%;
  }
}
/* line 1930, ../sass/components/_main.scss */
.node-apps .group-banner .group_top .field-name-title {
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  /* line 1930, ../sass/components/_main.scss */
  .node-apps .group-banner .group_top .field-name-title {
    display: none;
  }
}
/* line 1936, ../sass/components/_main.scss */
.node-apps .group-banner .group_top .field-name-title h2 {
  line-height: normal;
  margin: 8px 0;
}
/* line 1943, ../sass/components/_main.scss */
.node-apps .group-banner .group-download-now {
  overflow: auto;
  clear: both;
}
@media screen and (max-width: 768px) {
  /* line 1943, ../sass/components/_main.scss */
  .node-apps .group-banner .group-download-now {
    width: 100%;
    clear: none;
  }
}
/* line 1952, ../sass/components/_main.scss */
.node-apps .group-banner .group-download-now > div {
  float: left;
}
@media screen and (max-width: 768px) {
  /* line 1952, ../sass/components/_main.scss */
  .node-apps .group-banner .group-download-now > div {
    width: 32.3%;
    margin-left: 1.5%;
    margin-bottom: 4px;
  }
  /* line 1960, ../sass/components/_main.scss */
  .node-apps .group-banner .group-download-now > div img {
    width: 100%;
  }
}
/* line 1963, ../sass/components/_main.scss */
.node-apps .group-banner .group-download-now > div.field-name-field-app-store {
  margin-left: 0;
}
/* line 1968, ../sass/components/_main.scss */
.node-apps .group-banner .group-download-now h3 {
  margin: 0 0 5px 0;
  color: #848282;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  /* line 1975, ../sass/components/_main.scss */
  .node-apps .group-banner .group-download-now .field-type-link-field a {
    display: block;
  }
}
/* line 1983, ../sass/components/_main.scss */
.node-apps .field-name-body.field-type-text-with-summary {
  float: left;
  width: calc(100% - 140px);
  padding-left: 22px;
}
@media screen and (max-width: 768px) {
  /* line 1983, ../sass/components/_main.scss */
  .node-apps .field-name-body.field-type-text-with-summary {
    width: 100%;
    padding-left: 0;
    float: none;
  }
}
/* line 1994, ../sass/components/_main.scss */
.node-apps .field-name-body.field-type-text-with-summary p strong {
  color: #df4600;
}
/* line 1999, ../sass/components/_main.scss */
.node-apps #comments {
  width: calc(100% - 162px);
  margin-left: 162px;
  box-sizing: border-box;
  background-color: #fef7e5;
}
@media screen and (max-width: 768px) {
  /* line 1999, ../sass/components/_main.scss */
  .node-apps #comments {
    width: 100%;
    margin-left: 0;
  }
}
/* line 2010, ../sass/components/_main.scss */
.node-apps #comments h2 {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  /* line 2016, ../sass/components/_main.scss */
  .node-mobile-learning {
    position: relative;
  }
}
/* line 2021, ../sass/components/_main.scss */
.node-mobile-learning .group-left {
  width: 65%;
}
@media screen and (max-width: 768px) {
  /* line 2021, ../sass/components/_main.scss */
  .node-mobile-learning .group-left {
    width: 100%;
  }
}
/* line 2028, ../sass/components/_main.scss */
.node-mobile-learning .group-left .field-name-body strong {
  color: #df4600;
}
/* line 2032, ../sass/components/_main.scss */
.node-mobile-learning .group-right {
  width: 35%;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  /* line 2032, ../sass/components/_main.scss */
  .node-mobile-learning .group-right {
    width: 100%;
    position: absolute;
    padding-left: 0;
    margin-top: 120px;
  }
}
/* line 2043, ../sass/components/_main.scss */
.node-mobile-learning .group-right .flex-control-paging li a {
  background: #cdcdcd;
}
/* line 2044, ../sass/components/_main.scss */
.node-mobile-learning .group-right .flex-control-paging li a.flex-active {
  background: #df4600;
}
/* line 2047, ../sass/components/_main.scss */
.node-mobile-learning .group-footer {
  padding-top: 20px;
}

/* line 2053, ../sass/components/_main.scss */
#colorbox {
  background: transparent;
}
/* line 2056, ../sass/components/_main.scss */
#colorbox #cboxContent {
  border-radius: 9px;
}
/* line 2058, ../sass/components/_main.scss */
#colorbox #cboxLoadedContent {
  padding: 15px 0;
  overflow: hidden !important;
}
/* line 2063, ../sass/components/_main.scss */
#colorbox .views-field {
  float: left;
  max-width: 33.3%;
}
/* line 2067, ../sass/components/_main.scss */
#colorbox .views-field .views-label {
  display: block;
  text-align: center;
  font-family: "bangwhackpow", "Sniglet-Regular", arial, Verdana, Tahoma, sans-serif;
  font-size: 13px;
  line-height: 15px;
  letter-spacing: 0.3px;
}

/*end detail app page*/
/* line 2080, ../sass/components/_main.scss */
.filter_slider {
  background-color: #f4f4f4;
  font-size: 13px;
  color: #df4600;
  line-height: 34px;
  overflow-x: hidden;
  overflow-y: visible;
  margin: 0 0 15px 0;
  letter-spacing: 0.3px;
}
/* line 2090, ../sass/components/_main.scss */
.filter_slider .jcarousel-clip-horizontal {
  margin: 0 30px;
  overflow: hidden;
}
/* line 2093, ../sass/components/_main.scss */
.filter_slider .jcarousel-clip-horizontal ul li {
  padding: 0 20px;
  font-family: "bangwhackpow", "Sniglet-Regular", arial, Verdana, Tahoma, sans-serif;
}
/* line 2097, ../sass/components/_main.scss */
.filter_slider .jcarousel-clip-horizontal li.is-active {
  background-color: #000000;
  color: #ffffff;
}
/* line 2102, ../sass/components/_main.scss */
.filter_slider .jcarousel-prev, .filter_slider .jcarousel-next {
  width: 30px;
  height: 34px;
  margin-top: -34px;
  float: left;
  background: url("../images/icon-filter-arrow-left.svg") center center no-repeat;
}
/* line 2109, ../sass/components/_main.scss */
.filter_slider .jcarousel-next {
  float: right;
  background: url("../images/icon-filter-arrow-right.svg") center center no-repeat;
}

/* line 2118, ../sass/components/_main.scss */
.item-list ul.quicktabs-tabs {
  margin: 0;
  padding: 0;
  background: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
/* line 2128, ../sass/components/_main.scss */
.item-list ul.quicktabs-tabs li:first-child:nth-last-child(1) {
  width: 100%;
}
/* line 2131, ../sass/components/_main.scss */
.item-list ul.quicktabs-tabs li:first-child:nth-last-child(2),
.item-list ul.quicktabs-tabs li:first-child:nth-last-child(2) ~ li {
  width: 50%;
}
/* line 2135, ../sass/components/_main.scss */
.item-list ul.quicktabs-tabs li:first-child:nth-last-child(3),
.item-list ul.quicktabs-tabs li:first-child:nth-last-child(3) ~ li {
  width: 33.3333%;
}
/* line 2139, ../sass/components/_main.scss */
.item-list ul.quicktabs-tabs li:first-child:nth-last-child(4),
.item-list ul.quicktabs-tabs li:first-child:nth-last-child(4) ~ li {
  width: 25%;
}
/* line 2143, ../sass/components/_main.scss */
.item-list ul.quicktabs-tabs li:first-child:nth-last-child(5),
.item-list ul.quicktabs-tabs li:first-child:nth-last-child(5) ~ li {
  width: 20%;
}
/* line 2147, ../sass/components/_main.scss */
.item-list ul.quicktabs-tabs li:first-child:nth-last-child(6),
.item-list ul.quicktabs-tabs li:first-child:nth-last-child(6) ~ li {
  width: 16.66%;
}
/* line 2152, ../sass/components/_main.scss */
.item-list ul.quicktabs-tabs li {
  display: block;
  text-align: center;
  box-sizing: border-box;
  color: #666666;
  border-bottom: 3px solid #f0b887;
  margin: 0 0 6px 0;
  padding: 4px 0;
  background: none !important;
  height: 36px;
}
/* line 2162, ../sass/components/_main.scss */
.item-list ul.quicktabs-tabs li a {
  font-weight: normal;
  font-size: 14px;
  display: block;
  margin: 0;
  padding: 0;
  background: none !important;
}
/* line 2171, ../sass/components/_main.scss */
.item-list ul.quicktabs-tabs li.active {
  color: #df4600;
  border-bottom: 3px solid #df4600;
  background: none !important;
}

/* line 2180, ../sass/components/_main.scss */
.quicktabs_main {
  clear: both;
}
/* line 2183, ../sass/components/_main.scss */
.quicktabs_main h2 {
  color: #df4600;
  font-weight: normal;
  font-size: 18px;
}
/* line 2189, ../sass/components/_main.scss */
.quicktabs_main div.views-row {
  margin-top: 15px;
  overflow: hidden;
}
/* line 2193, ../sass/components/_main.scss */
.quicktabs_main div.views-row > div {
  float: left;
}
/* line 2195, ../sass/components/_main.scss */
.quicktabs_main div.views-row .views-field-field-image {
  border: 4px solid #ffa204;
  border-radius: 8px 8px 8px 8px;
  -moz-border-radius: 8px 8px 8px 8px;
  -webkit-border-radius: 8px 8px 8px 8px;
  -khtml-border-radius: 8px 8px 8px 8px;
  background-color: #f8e0b0;
  -webkit-box-shadow: inset 1px 1px 4px 1px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: inset 1px 1px 4px 1px rgba(0, 0, 0, 0.4);
  box-shadow: inset 1px 1px 4px 1px rgba(0, 0, 0, 0.4);
  padding: 4px;
}
/* line 2204, ../sass/components/_main.scss */
.quicktabs_main div.views-row .views-field-field-image a {
  line-height: 0;
  display: block;
}
/* line 2209, ../sass/components/_main.scss */
.quicktabs_main div.views-row .views-field-field-image img {
  height: auto;
}
/* line 2212, ../sass/components/_main.scss */
.quicktabs_main div.views-row .views-field-title {
  color: #df4600;
  font-weight: normal;
  font-size: 18px;
  float: none;
}
/* line 2219, ../sass/components/_main.scss */
.quicktabs_main div.views-row .views-field-field-text-teaser {
  float: none;
  font-size: 13px;
  line-height: 16px;
  clear: both;
}
/* line 2224, ../sass/components/_main.scss */
.quicktabs_main div.views-row .views-field-field-text-teaser p {
  margin: 0;
}
/* line 2227, ../sass/components/_main.scss */
.quicktabs_main div.views-row .views-field-nothing {
  __width: 400px;
  position: relative;
  padding-bottom: 40px;
}
/* line 2232, ../sass/components/_main.scss */
.quicktabs_main div.views-row .views-field-nothing .views-field-field-section {
  padding: 2px 8px;
  float: left;
  background-color: #df4600;
  color: #ffffff;
  font-size: 12px;
  line-height: 18px;
}
/* line 2240, ../sass/components/_main.scss */
.quicktabs_main div.views-row .views-field-nothing .views-field-field-category {
  padding: 2px 8px;
  float: left;
  background-color: #df4600;
  color: #ffffff;
  font-size: 12px;
}
/* line 2247, ../sass/components/_main.scss */
.quicktabs_main div.views-row .views-field-nothing .views-field-created, .quicktabs_main div.views-row .views-field-nothing .blog-view .views_slideshow_cycle_main .views-slideshow-cycle-main-frame .views-slideshow-cycle-main-frame-row .views-slideshow-cycle-main-frame-row-item .views-field-comment-count, .blog-view .views_slideshow_cycle_main .views-slideshow-cycle-main-frame .views-slideshow-cycle-main-frame-row .views-slideshow-cycle-main-frame-row-item .quicktabs_main div.views-row .views-field-nothing .views-field-comment-count {
  float: right;
  color: #d2d2d2;
  font-size: 11px;
  line-height: 15px;
}
/* line 2253, ../sass/components/_main.scss */
.quicktabs_main div.views-row .views-field-nothing .views-field-comment-count {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  background: url("../images/talk_bubble.svg") left center no-repeat;
  padding-left: 15px;
  color: #df4600;
  font-size: 11px;
  height: 26px;
}
/* line 2265, ../sass/components/_main.scss */
.quicktabs_main div.views-row .views-field-nothing .views-field-vote {
  position: absolute;
  right: 50px;
  bottom: 5px;
}
/* line 2270, ../sass/components/_main.scss */
.quicktabs_main div.views-row .views-field-nothing .views-field-vote .clearfix:after {
  content: none;
}
/* line 2273, ../sass/components/_main.scss */
.quicktabs_main div.views-row .views-field-nothing .views-field-title {
  clear: both;
  color: #df4600;
  font-size: 18px;
  padding: 2px 0;
}
/* line 2280, ../sass/components/_main.scss */
.quicktabs_main div.views-row .views-field-nothing .views-field-body {
  font-size: 13px;
  line-height: 16px;
}
/* line 2283, ../sass/components/_main.scss */
.quicktabs_main div.views-row .views-field-nothing .views-field-body p {
  margin: 0;
}
@media screen and (max-width: 1024px) {
  /* line 2289, ../sass/components/_main.scss */
  .quicktabs_main div.views-row {
    overflow: initial;
    position: relative;
  }
  /* line 2293, ../sass/components/_main.scss */
  .quicktabs_main div.views-row .views-field-nothing {
    width: 62%;
  }
}
@media screen and (max-width: 768px) {
  /* line 2301, ../sass/components/_main.scss */
  .quicktabs_main div.views-row {
    height: auto;
  }
  /* line 2303, ../sass/components/_main.scss */
  .quicktabs_main div.views-row > div {
    float: none;
  }
  /* line 2304, ../sass/components/_main.scss */
  .quicktabs_main div.views-row .views-field-field-image {
    position: initial;
    width: 100%;
  }
  /* line 2307, ../sass/components/_main.scss */
  .quicktabs_main div.views-row .views-field-field-image img {
    width: 100%;
  }
  /* line 2310, ../sass/components/_main.scss */
  .quicktabs_main div.views-row .views-field-nothing {
    padding-left: 0;
    width: 100%;
    margin-top: 10px;
  }
}

/*flip page bar*/
/* line 2321, ../sass/components/_main.scss */
.pager {
  background-color: #f4f4f4;
  line-height: 35px;
  font-size: 14px;
  position: relative;
  margin-top: 10px;
}
/* line 2327, ../sass/components/_main.scss */
.pager .pager-item {
  color: #df4600;
}
/* line 2328, ../sass/components/_main.scss */
.pager .pager-current {
  color: #df4600;
  border-bottom: 2px solid #df4600;
  background-color: #ffffff;
  padding: 9px 1em 6px 1em;
}
/* line 2334, ../sass/components/_main.scss */
.pager .pager-first a, .pager .pager-last a {
  text-indent: -9999px;
  background: url("../images/icon-page-arrow.png") no-repeat;
  width: 28px;
  height: 18px;
  display: block;
}
/* line 2341, ../sass/components/_main.scss */
.pager .pager-first {
  float: left;
}
/* line 2343, ../sass/components/_main.scss */
.pager .pager-first a {
  float: left;
  background-position: -4px -82px;
  margin: 8px 0;
}
/* line 2347, ../sass/components/_main.scss */
.pager .pager-first a:hover {
  background-position: -4px -56px;
}
/* line 2350, ../sass/components/_main.scss */
.pager .pager-last {
  float: right;
}
/* line 2352, ../sass/components/_main.scss */
.pager .pager-last a {
  float: right;
  background-position: -41px -82px;
  margin: 8px 0;
}
/* line 2356, ../sass/components/_main.scss */
.pager .pager-last a:hover {
  background-position: -41px -56px;
}
/* line 2359, ../sass/components/_main.scss */
.pager .pager-previous a, .pager .pager-next a {
  text-indent: -9999px;
  background: url("../images/icon-page-arrow.png") no-repeat;
  width: 14px;
  height: 18px;
  display: block;
}
/* line 2366, ../sass/components/_main.scss */
.pager .pager-previous a {
  float: left;
  background-position: -4px -28px;
  margin: 8px 0;
}
/* line 2370, ../sass/components/_main.scss */
.pager .pager-previous a:hover {
  background-position: -4px -1px;
}
/* line 2373, ../sass/components/_main.scss */
.pager .pager-next {
  position: absolute;
  right: 0;
  margin-right: 38px;
}
/* line 2377, ../sass/components/_main.scss */
.pager .pager-next a {
  background-position: -28px -29px;
  margin: 8px 0 8px 8px;
}
/* line 2380, ../sass/components/_main.scss */
.pager .pager-next a:hover {
  background-position: -28px -2px;
}
@media screen and (max-width: 768px) {
  /* line 2384, ../sass/components/_main.scss */
  .pager li {
    padding: 0 4px;
  }
}

/*end flip page bar*/
/*Article*/
/* line 2391, ../sass/components/_main.scss */
.node-type-article {
  	/*
  	@media screen and (max-width: $mobile) { 
  		.field-group-accordion {
  			position: relative;
  			height: 1020px;
  
  			.accordion-item {
  				float: left; 
  				width: 25%;
  				box-sizing: border-box;
  				z-index: 1;
  				background-color: #e8f0d8;
  				color: $main-theme-color;
  				font-family: $bangwhackpow;
  				border-bottom: 3px solid $main-theme-color;
  				.ui-accordion-header-icon {
  					display: none;
  				}
  			}
  			.ui-state-active {
  				background-color: $main-theme-color;
  				color: #ffffff;
  				.ui-accordion-header-icon {
  					display: block;
  				}
  			}
  
  			.field-group-accordion-item {
  				position: absolute;
  				left: 0;
  				top: 27px;
  				background: #ffffff;
  			}
  		}
  	}
  	*/
}
/* line 2392, ../sass/components/_main.scss */
.node-type-article .header {
  padding-bottom: 10px;
}
/* line 2393, ../sass/components/_main.scss */
.node-type-article .page__title {
  color: #ffffff;
  font-weight: normal;
}
/* line 2398, ../sass/components/_main.scss */
.node-type-article table {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  /* line 2400, ../sass/components/_main.scss */
  .node-type-article #content {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
/* line 2406, ../sass/components/_main.scss */
.node-type-article #content a {
  color: #df4600;
}
/* line 2407, ../sass/components/_main.scss */
.node-type-article #content a:hover {
  text-decoration: underline;
}
/* line 2409, ../sass/components/_main.scss */
.node-type-article #content ul {
  padding-left: 15px;
}
/* line 2411, ../sass/components/_main.scss */
.node-type-article #content .field-name-submitted-by {
  color: #cdcdcd;
  font-size: 11px;
  float: left;
}
/* line 2417, ../sass/components/_main.scss */
.node-type-article #content .field-name-print {
  float: right;
  margin-top: -15px;
  margin-right: 10px;
}
/* line 2423, ../sass/components/_main.scss */
.node-type-article #content .field-name-field-text-teaser {
  clear: both;
}
/* line 2427, ../sass/components/_main.scss */
.node-type-article #content .field-name-body {
  clear: both;
  font-size: 14px;
  line-height: 20px;
}
/* line 2431, ../sass/components/_main.scss */
.node-type-article #content .field-name-body p {
  margin: 1em 0;
}
/* line 2434, ../sass/components/_main.scss */
.node-type-article #content .file {
  clear: both;
  display: block;
}
/* line 2439, ../sass/components/_main.scss */
.node-type-article #content .group-downloads {
  background-color: #f4f4f4;
  padding: 12px 20px;
  font-size: 16px;
  margin-top: 20px;
  clear: both;
  color: #000000;
  border: none;
}
/* line 2447, ../sass/components/_main.scss */
.node-type-article #content .group-downloads legend {
  background: url("../images/icon-download.svg") 97% center no-repeat;
  background-color: #f4f4f4;
  color: #a9a9a9;
  width: 100%;
  margin-left: -20px;
  margin-right: -20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 5px;
}
/* line 2459, ../sass/components/_main.scss */
.node-type-article #content .group-downloads .field-name-upload .field-item {
  padding: 5px 15px;
  background-color: #ffffff;
  border-top: 2px solid #f4f4f4;
  font-size: 13px;
}
/* line 2465, ../sass/components/_main.scss */
.node-type-article #content .group-downloads .field-name-upload .field-item:first-child {
  border-top: none;
}
/* line 2471, ../sass/components/_main.scss */
.node-type-article #content .field-name-comments-list {
  width: 100%;
  border-top: 5px solid #0072cf;
  padding: 6px 18px;
  margin-top: 15px;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  /* line 2471, ../sass/components/_main.scss */
  .node-type-article #content .field-name-comments-list {
    padding: 6px;
    padding-bottom: 40px;
  }
}
/* line 2482, ../sass/components/_main.scss */
.node-type-article #content .field-name-comments-list > .field-items:nth-child(1) .field-item > div:nth-child(1) {
  color: #df4600;
  font-size: 20px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  /* line 2482, ../sass/components/_main.scss */
  .node-type-article #content .field-name-comments-list > .field-items:nth-child(1) .field-item > div:nth-child(1) {
    text-align: center;
  }
}
/* line 2491, ../sass/components/_main.scss */
.node-type-article #content .field-name-comments-list .ds-1col {
  background-color: #f4f4f4;
  font-size: 12px;
  padding: 10px;
  margin-left: 55px;
}
/* line 2496, ../sass/components/_main.scss */
.node-type-article #content .field-name-comments-list .ds-1col .field-name-ds-user-picture {
  float: left;
  margin-left: -60px;
}
/* line 2500, ../sass/components/_main.scss */
.node-type-article #content .field-name-comments-list .ds-1col .field-name-post-date {
  color: #b6b6b6;
  font-size: 11px;
  float: right;
}
/* line 2505, ../sass/components/_main.scss */
.node-type-article #content .field-name-comments-list .ds-1col .field-name-comment-body {
  clear: both;
}
/* line 2507, ../sass/components/_main.scss */
.node-type-article #content .field-name-comments-list .ds-1col .field-name-comment-body p {
  margin: 0;
  line-height: 18px;
}
/* line 2512, ../sass/components/_main.scss */
.node-type-article #content .field-name-comments-list .ds-1col .links {
  display: block;
  border-top: 1px solid #dad9d9;
  text-align: right;
  color: #dad9d9;
  padding: 0;
  margin-top: 5px;
  margin-bottom: 0;
}
/* line 2520, ../sass/components/_main.scss */
.node-type-article #content .field-name-comments-list .ds-1col .links a {
  color: #df4600;
}
@media screen and (max-width: 768px) {
  /* line 2491, ../sass/components/_main.scss */
  .node-type-article #content .field-name-comments-list .ds-1col {
    margin-left: 0;
    margin-top: 30px;
  }
  /* line 2526, ../sass/components/_main.scss */
  .node-type-article #content .field-name-comments-list .ds-1col .field-name-ds-user-picture {
    margin: -30px 10px 0 0;
  }
  /* line 2527, ../sass/components/_main.scss */
  .node-type-article #content .field-name-comments-list .ds-1col .field-name-post-date {
    float: none;
  }
}
/* line 2534, ../sass/components/_main.scss */
.node-type-article .group-accordion {
  clear: both;
}
/* line 2537, ../sass/components/_main.scss */
.node-type-article .group-accordion .accordion-item {
  border: none;
  background-image: none;
  background-color: #f4f4f4;
  border-radius: 0;
  font-size: 14px;
  font-family: "bangwhackpow", "Sniglet-Regular", arial, Verdana, Tahoma, sans-serif;
  padding: 12px 20px;
  letter-spacing: 0.3px;
}
/* line 2547, ../sass/components/_main.scss */
.node-type-article .group-accordion .accordion-item a {
  color: #df4600;
  padding: 0;
  display: inline;
}
/* line 2553, ../sass/components/_main.scss */
.node-type-article .group-accordion .accordion-item span.ui-icon-triangle-1-e {
  background: url("../images/icon-accordion-btn.svg") -2px 0 no-repeat;
  width: 21px;
  height: 21px;
  left: inherit;
  right: 0.5em;
  margin-top: -11px;
}
/* line 2563, ../sass/components/_main.scss */
.node-type-article .group-accordion .ui-state-active {
  background-color: #000000;
}
/* line 2565, ../sass/components/_main.scss */
.node-type-article .group-accordion .ui-state-active a {
  color: #ffffff;
}
/* line 2566, ../sass/components/_main.scss */
.node-type-article .group-accordion .ui-state-active span.ui-icon-triangle-1-s {
  background: url("../images/icon-accordion-btn.svg") -2px 0 no-repeat;
  width: 21px;
  height: 21px;
  left: inherit;
  right: 0.5em;
  margin-top: -11px;
  background-position: -2px -24px;
}
/* line 2577, ../sass/components/_main.scss */
.node-type-article .group-accordion .field-group-accordion-item {
  border: none;
  padding: 20px;
  font-size: 13px;
}
/* line 2581, ../sass/components/_main.scss */
.node-type-article .group-accordion .field-group-accordion-item p {
  margin: 0;
}
@media screen and (max-width: 768px) {
  /* line 2622, ../sass/components/_main.scss */
  .node-type-article .print_html {
    display: none;
  }
}

/* line 2629, ../sass/components/_main.scss */
article {
  background-color: #fef7e5;
  border: 1px solid #eebe9a;
  padding: 20px;
  border-radius: 8px 8px 8px 8px;
  -moz-border-radius: 8px 8px 8px 8px;
  -webkit-border-radius: 8px 8px 8px 8px;
  -khtml-border-radius: 8px 8px 8px 8px;
  /*taxonomy tags in article*/
  /*end taxonomy tags in article*/
}
/* line 2635, ../sass/components/_main.scss */
article h2 {
  color: #df4600;
}
/* line 2637, ../sass/components/_main.scss */
article .collapsible {
  margin-top: 5px;
  margin-bottom: 15px;
  padding: 0 10px 10px 10px;
  background-color: #fde5b5;
}
/* line 2643, ../sass/components/_main.scss */
article .collapsible > h3 {
  margin: 0;
  background: #fde5b5 url("../images/icon-arrow-downward-grey.svg") 4px center no-repeat;
  font-size: 15px;
  padding-left: 15px;
  font-weight: normal;
}
/* line 2650, ../sass/components/_main.scss */
article .collapsible > h3 a {
  color: #333333 !important;
  text-decoration: none;
  display: block;
  padding: 4px 8px;
}
/* line 2658, ../sass/components/_main.scss */
article .collapsible .field-group-format-wrapper {
  font-size: 12px;
  width: 100%;
  width: 100%;
  background-color: #fef7e5;
  padding: 10px;
}
/* line 2665, ../sass/components/_main.scss */
article .collapsible .field-group-format-wrapper .field-label {
  color: #df4600;
}
/* line 2667, ../sass/components/_main.scss */
article .collapsible .field-group-format-wrapper p {
  margin-top: 5px;
  margin-bottom: 5px;
}
/* line 2674, ../sass/components/_main.scss */
article .collapsed h3 {
  background-image: url("../images/icon-arrow-right-grey.svg");
}
/* line 2676, ../sass/components/_main.scss */
article .field-name-field-gamelink {
  margin-bottom: 20px;
}
/* line 2678, ../sass/components/_main.scss */
article .group-preparation {
  margin: 0;
}
/* line 2681, ../sass/components/_main.scss */
article .group-preparation > h3 {
  margin: 0;
  background: url("../images/icon-arrow-downward-white.svg") #006747 8px center no-repeat;
  padding: .5em .5em .5em 2em;
}
/* line 2686, ../sass/components/_main.scss */
article .group-preparation > h3 a {
  color: #ffffff !important;
  text-decoration: none !important;
  display: block;
  padding: 0;
}
/* line 2694, ../sass/components/_main.scss */
article .group-preparation .field-group-format-wrapper {
  border: 1px solid #006747;
  padding: 0;
}
/* line 2701, ../sass/components/_main.scss */
article .group-preparation.collapsed > h3 {
  background: url("../images/icon-arrow-right-white.svg") #00843d 8px center no-repeat;
}
/* line 2705, ../sass/components/_main.scss */
article .group-preparation.collapsed .field-group-format-wrapper {
  background-color: #00843d;
}
/* line 2710, ../sass/components/_main.scss */
article ul.links.inline {
  clear: both;
  display: block;
  padding-left: 0 !important;
  font-size: 12px;
}
/* line 2715, ../sass/components/_main.scss */
article ul.links.inline .sharethis {
  display: block;
  margin-top: 10px;
}
/* line 2721, ../sass/components/_main.scss */
article > .form-type-item,
article > .field-name-field-hide-image {
  clear: both;
  margin: 10px 0;
  float: left;
  font-size: 14px;
  line-height: 18px;
}
/* line 2730, ../sass/components/_main.scss */
article .field-label-above {
  clear: both;
}
/* line 2732, ../sass/components/_main.scss */
article .webform-client-form {
  clear: both;
}
/* line 2737, ../sass/components/_main.scss */
article .group_vocabularies {
  float: left;
}
/* line 2738, ../sass/components/_main.scss */
article .field-type-taxonomy-term-reference {
  float: left;
  margin-top: 5px;
  margin-bottom: 10px;
}
/* line 2746, ../sass/components/_main.scss */
article .field-name-field-audio-upload a {
  font-size: 14px;
}

/* line 2751, ../sass/components/_main.scss */
.node-english-grammar .field-type-text-with-summary {
  line-height: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

/* line 2759, ../sass/components/_main.scss */
.article-sharethis-container .sharethis-buttons .sharethis-wrapper {
  float: right;
  margin-top: -5px;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  /* line 2759, ../sass/components/_main.scss */
  .article-sharethis-container .sharethis-buttons .sharethis-wrapper {
    float: none;
    margin-top: 10px;
  }
  /* line 2766, ../sass/components/_main.scss */
  .article-sharethis-container .sharethis-buttons .sharethis-wrapper > span:nth-child(1), .article-sharethis-container .sharethis-buttons .sharethis-wrapper > span:nth-child(2), .article-sharethis-container .sharethis-buttons .sharethis-wrapper > span:nth-child(3) {
    display: none;
  }
}
/* line 2772, ../sass/components/_main.scss */
.article-sharethis-container .jiathis-wrapper {
  float: right;
  margin-top: -30px !important;
  margin-bottom: 0 !important;
  height: auto !important;
}
@media screen and (max-width: 768px) {
  /* line 2772, ../sass/components/_main.scss */
  .article-sharethis-container .jiathis-wrapper {
    float: none;
    margin: 10px 0 0 10px !important;
  }
  /* line 2781, ../sass/components/_main.scss */
  .article-sharethis-container .jiathis-wrapper > span:nth-child(1), .article-sharethis-container .jiathis-wrapper > span:nth-child(2), .article-sharethis-container .jiathis-wrapper > span:nth-child(3) {
    display: none;
  }
}

/* line 2788, ../sass/components/_main.scss */
.article-field-vote-container {
  color: #ffffff;
}
/* line 2790, ../sass/components/_main.scss */
.article-field-vote-container .fivestar-widget {
  float: left;
}
/* line 2791, ../sass/components/_main.scss */
.article-field-vote-container .description {
  float: left;
  margin-left: 10px;
  line-height: 25px;
}

/*end article*/
/*blog pages*/
/* line 2803, ../sass/components/_main.scss */
.node-blog a {
  color: #df4600;
}
/* line 2805, ../sass/components/_main.scss */
.node-blog .field-name-submitted-by {
  color: #cdcdcd;
  font-size: 11px;
}
/* line 2810, ../sass/components/_main.scss */
.node-blog .field-name-print {
  float: right;
  margin-top: -15px;
  margin-right: 10px;
}
/* line 2816, ../sass/components/_main.scss */
.node-blog .field-name-field-text-teaser {
  clear: both;
}
/* line 2820, ../sass/components/_main.scss */
.node-blog .field-name-body {
  font-size: 14px;
  line-height: 20px;
}
/* line 2825, ../sass/components/_main.scss */
.node-blog .group-downloads {
  background-color: #f4f4f4;
  padding: 12px 20px;
  font-size: 16px;
  margin-top: 20px;
  clear: both;
  color: #000000;
  border: none;
}
/* line 2833, ../sass/components/_main.scss */
.node-blog .group-downloads legend {
  background: url("../images/icon-download.svg") 97% center no-repeat;
  background-color: #f4f4f4;
  color: #a9a9a9;
  width: 100%;
  margin-left: -20px;
  margin-right: -20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 5px;
}
/* line 2845, ../sass/components/_main.scss */
.node-blog .group-downloads .field-name-upload .field-item {
  padding: 5px 15px;
  background-color: #ffffff;
  border-top: 2px solid #f4f4f4;
  font-size: 13px;
}
/* line 2851, ../sass/components/_main.scss */
.node-blog .group-downloads .field-name-upload .field-item:first-child {
  border-top: none;
}
/* line 2857, ../sass/components/_main.scss */
.node-blog .field-name-comments-list {
  width: 100%;
  border-top: 5px solid #0072cf;
  padding: 6px 18px;
  margin-top: 15px;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  /* line 2857, ../sass/components/_main.scss */
  .node-blog .field-name-comments-list {
    padding: 6px;
    padding-bottom: 40px;
  }
}
/* line 2868, ../sass/components/_main.scss */
.node-blog .field-name-comments-list > .field-items:nth-child(1) .field-item > div:nth-child(1) {
  color: #df4600;
  font-size: 20px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  /* line 2868, ../sass/components/_main.scss */
  .node-blog .field-name-comments-list > .field-items:nth-child(1) .field-item > div:nth-child(1) {
    text-align: center;
  }
}
/* line 2877, ../sass/components/_main.scss */
.node-blog .field-name-comments-list .ds-1col {
  background-color: #f4f4f4;
  font-size: 12px;
  padding: 10px;
  margin-left: 55px;
}
/* line 2883, ../sass/components/_main.scss */
.node-blog .field-name-comments-list .ds-1col ul {
  padding-left: 15px;
}
/* line 2885, ../sass/components/_main.scss */
.node-blog .field-name-comments-list .ds-1col ul li {
  margin-bottom: 7px;
}
/* line 2890, ../sass/components/_main.scss */
.node-blog .field-name-comments-list .ds-1col .field-name-ds-user-picture {
  float: left;
  margin-left: -60px;
}
/* line 2895, ../sass/components/_main.scss */
.node-blog .field-name-comments-list .ds-1col .field-name-post-date {
  color: #b6b6b6;
  font-size: 11px;
  float: right;
}
/* line 2901, ../sass/components/_main.scss */
.node-blog .field-name-comments-list .ds-1col .field-name-comment-body {
  clear: both;
}
/* line 2903, ../sass/components/_main.scss */
.node-blog .field-name-comments-list .ds-1col .field-name-comment-body p {
  margin: 0;
  line-height: 18px;
}
/* line 2909, ../sass/components/_main.scss */
.node-blog .field-name-comments-list .ds-1col .links {
  display: block;
  border-top: 1px solid #dad9d9;
  text-align: right;
  color: #dad9d9;
  padding: 0;
  margin-top: 5px;
  margin-bottom: 0;
}
/* line 2917, ../sass/components/_main.scss */
.node-blog .field-name-comments-list .ds-1col .links li {
  background-color: #eaeaea;
  padding: 5px 10px;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  /* line 2877, ../sass/components/_main.scss */
  .node-blog .field-name-comments-list .ds-1col {
    margin-left: 0;
    margin-top: 30px;
  }
  /* line 2927, ../sass/components/_main.scss */
  .node-blog .field-name-comments-list .ds-1col .field-name-ds-user-picture {
    margin: -30px 10px 0 0;
  }
  /* line 2928, ../sass/components/_main.scss */
  .node-blog .field-name-comments-list .ds-1col .field-name-post-date {
    float: none;
  }
}

/*end blog pages*/
/*comment block in article*/
/* line 2939, ../sass/components/_main.scss */
#comments {
  border: 1px solid #df4600;
  border-top: 3px solid #df4600;
  clear: both;
  margin-top: 10px;
  margin-bottom: 0;
  background-color: #ffffff;
  padding: 10px 20px;
  -moz-border-radius: 6px / 6px;
  -webkit-border-radius: 6px 6px;
  border-radius: 6px / 6px;
}
@media screen and (max-width: 768px) {
  /* line 2939, ../sass/components/_main.scss */
  #comments {
    padding-left: 5px;
    padding-right: 5px;
  }
}
/* line 2953, ../sass/components/_main.scss */
#comments h2 {
  color: #df4600;
  margin-top: 5px;
  font-size: 20px;
  line-height: normal;
  clear: both;
}
/* line 2961, ../sass/components/_main.scss */
#comments > span {
  font-size: 11px;
}
/* line 2963, ../sass/components/_main.scss */
#comments article {
  border: 0;
  background-color: #ffedd5;
  padding: 10px;
  margin: 5px 0 15px 70px;
  position: relative;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  /* line 2963, ../sass/components/_main.scss */
  #comments article {
    margin: 20px 0 35px 0;
  }
}
/* line 2975, ../sass/components/_main.scss */
#comments article p {
  margin: 0;
}
/* line 2976, ../sass/components/_main.scss */
#comments article p.submitted {
  text-align: right;
  font-size: 11px;
}
@media screen and (max-width: 768px) {
  /* line 2976, ../sass/components/_main.scss */
  #comments article p.submitted {
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  /* line 2983, ../sass/components/_main.scss */
  #comments article p.submitted .username {
    text-align: left;
    margin-top: -32px;
  }
}
/* line 2990, ../sass/components/_main.scss */
#comments article .user-picture {
  float: left;
  margin-left: -70px;
  margin-top: -10px;
  left: 0;
}
/* line 2996, ../sass/components/_main.scss */
#comments article .user-picture a {
  display: block;
}
@media screen and (max-width: 768px) {
  /* line 2990, ../sass/components/_main.scss */
  #comments article .user-picture {
    margin: -30px 10px 0 0;
  }
}
/* line 3002, ../sass/components/_main.scss */
#comments article .username {
  color: #df4600;
  font-size: 15px;
  display: block;
  float: left;
  font-family: 'Arial';
}
/* line 3009, ../sass/components/_main.scss */
#comments article h3.comment__title a {
  font-size: 16px;
  font-family: "bangwhackpow", "Sniglet-Regular", arial, Verdana, Tahoma, sans-serif;
  text-decoration: none;
  color: #df4600;
  letter-spacing: 0.3px;
}
/* line 3016, ../sass/components/_main.scss */
#comments article .field-name-comment-body {
  clear: both;
  font-size: 13px;
}
/* line 3020, ../sass/components/_main.scss */
#comments article .links {
  font-size: 12px;
  margin-top: 15px;
  padding-top: 4px;
  display: block;
  border-top: 1px solid #cccccc;
}
/* line 3028, ../sass/components/_main.scss */
#comments form.comment-form {
  padding: 8px 10px;
  background-color: #ffedd5;
  font-size: 14px;
}
/* line 3033, ../sass/components/_main.scss */
#comments form.comment-form .form-item {
  margin: 0;
}
/* line 3035, ../sass/components/_main.scss */
#comments form.comment-form input[type=text] {
  width: 100%;
}
/* line 3037, ../sass/components/_main.scss */
#comments form.comment-form .filter-wrapper {
  padding: 5px;
}
/* line 3039, ../sass/components/_main.scss */
#comments form.comment-form .filter-wrapper .fieldset-wrapper > div {
  padding: 0;
}
/* line 3040, ../sass/components/_main.scss */
#comments form.comment-form .filter-wrapper .filter-list {
  width: 150px;
}
/* line 3041, ../sass/components/_main.scss */
#comments form.comment-form .filter-wrapper li {
  margin-bottom: 0;
}
/* line 3044, ../sass/components/_main.scss */
#comments form.comment-form .form-item-notify {
  margin: 10px 0;
}
/* line 3047, ../sass/components/_main.scss */
#comments form.comment-form .form-actions input[type=submit] {
  width: 48%;
  margin: 0 1% 0 0;
}

/*end comment block in article*/
/*tag*/
/* line 3058, ../sass/components/_main.scss */
.group-tag, .field-type-taxonomy-term-reference {
  border: none;
  margin-top: 15px;
  padding: 0;
  overflow: auto;
}
/* line 3064, ../sass/components/_main.scss */
.group-tag legend, .field-type-taxonomy-term-reference legend {
  color: #df4600;
  font-family: "bangwhackpow", "Sniglet-Regular", arial, Verdana, Tahoma, sans-serif;
}
/* line 3068, ../sass/components/_main.scss */
.group-tag .field-label, .field-type-taxonomy-term-reference .field-label {
  display: none;
}
/* line 3070, ../sass/components/_main.scss */
.group-tag .field-items > div, .field-type-taxonomy-term-reference .field-items > div {
  float: left;
  background-color: #df4600;
  padding: 2px 8px;
  color: #ffffff;
  margin-right: 6px;
  margin-top: 5px;
  font-size: 13px;
}
/* line 3080, ../sass/components/_main.scss */
.group-tag a, .field-type-taxonomy-term-reference a {
  color: #ffffff !important;
}
/* line 3081, ../sass/components/_main.scss */
.group-tag a.fieldset-title, .field-type-taxonomy-term-reference a.fieldset-title {
  color: #df4600 !important;
}

/*end tag*/
/*search result*/
/* line 3088, ../sass/components/_main.scss */
.section-search form.search-form {
  border-bottom: 1px solid #cccccc;
  padding: 15px 10px;
}
/* line 3092, ../sass/components/_main.scss */
.section-search .spelling-suggestions {
  font-size: 13px;
}
/* line 3093, ../sass/components/_main.scss */
.section-search h2 {
  color: #df4600;
}
/* line 3094, ../sass/components/_main.scss */
.section-search ol.search-results {
  padding-left: 0;
}
/* line 3096, ../sass/components/_main.scss */
.section-search ol.search-results li {
  border-top: 1px solid #e5e5e5;
  padding: 6px 0;
  margin-bottom: 8px;
}
/* line 3101, ../sass/components/_main.scss */
.section-search ol.search-results li:first-child {
  border-top: none;
}
/* line 3102, ../sass/components/_main.scss */
.section-search ol.search-results h3 {
  font-size: 15px;
  margin-top: 6px;
  margin-bottom: 6px;
}
/* line 3107, ../sass/components/_main.scss */
.section-search ol.search-results p {
  margin: 8px 0;
}
/* line 3108, ../sass/components/_main.scss */
.section-search ol.search-results .search-snippet-info {
  font-size: 11px;
  line-height: 16px;
}

/*end search result*/
/*faq*/
/* line 3119, ../sass/components/_main.scss */
.node-teacher-training p {
  margin-bottom: 12px;
}
/* line 3120, ../sass/components/_main.scss */
.node-teacher-training a {
  color: #df4600;
}
/* line 3122, ../sass/components/_main.scss */
.node-teacher-training .field-name-upload table {
  margin: 0;
  width: 100%;
}
/* line 3125, ../sass/components/_main.scss */
.node-teacher-training .field-name-upload table thead {
  color: #979797;
  text-align: left;
  font-size: 14px;
}
/* line 3129, ../sass/components/_main.scss */
.node-teacher-training .field-name-upload table thead th {
  padding-bottom: 8px;
  font-weight: normal;
}
/* line 3135, ../sass/components/_main.scss */
.node-teacher-training .field-name-upload table tbody td {
  background-color: #ffffff;
  padding: 7px 12px;
  margin-bottom: 2px;
}
/* line 3140, ../sass/components/_main.scss */
.node-teacher-training .field-name-upload table tbody img {
  vertical-align: middle;
}
/* line 3144, ../sass/components/_main.scss */
.node-teacher-training .sharethis-buttons {
  margin-top: 15px;
}

/*end faq*/
/*elt development*/
/* line 3150, ../sass/components/_main.scss */
.view-display-id-block_3_wrapper {
  float: none !important;
}
/* line 3154, ../sass/components/_main.scss */
.view-display-id-block_3_wrapper .view-display-id-block_3 .views-row {
  overflow: auto;
}
/* line 3157, ../sass/components/_main.scss */
.view-display-id-block_3_wrapper .view-display-id-block_3 .views-row .views-field-nothing {
  float: right;
  width: 35%;
  height: 250px;
  background-color: #df4600;
  color: #ffffff;
  padding: 12px;
}
@media screen and (max-width: 768px) {
  /* line 3157, ../sass/components/_main.scss */
  .view-display-id-block_3_wrapper .view-display-id-block_3 .views-row .views-field-nothing {
    width: 100%;
    height: auto;
  }
}
/* line 3169, ../sass/components/_main.scss */
.view-display-id-block_3_wrapper .view-display-id-block_3 .views-row .views-field-nothing .views-field-description {
  font-size: 11px;
  line-height: 16px;
}
/* line 3175, ../sass/components/_main.scss */
.view-display-id-block_3_wrapper .view-display-id-block_3 .views-row .views-field-field-image {
  float: right;
  width: 65%;
  height: 250px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  /* line 3181, ../sass/components/_main.scss */
  .view-display-id-block_3_wrapper .view-display-id-block_3 .views-row .views-field-field-image img {
    height: 100%;
    max-width: none;
  }
}
@media screen and (max-width: 768px) {
  /* line 3175, ../sass/components/_main.scss */
  .view-display-id-block_3_wrapper .view-display-id-block_3 .views-row .views-field-field-image {
    width: 100%;
    height: auto;
  }
  /* line 3189, ../sass/components/_main.scss */
  .view-display-id-block_3_wrapper .view-display-id-block_3 .views-row .views-field-field-image img {
    height: auto;
    width: 100%;
  }
}

/* line 3200, ../sass/components/_main.scss */
.block-quicktabs {
  clear: both;
}

/* line 3203, ../sass/components/_main.scss */
#quicktabs-elt_research .quicktabs-tabs {
  clear: both;
}
/* line 3205, ../sass/components/_main.scss */
#quicktabs-elt_research .quicktabs-tabs li {
  border-bottom: none;
  background-color: #cccccc;
  color: #666666;
  margin-right: 4px;
  margin-bottom: -1px;
  font-family: "bangwhackpow", "Sniglet-Regular", arial, Verdana, Tahoma, sans-serif;
  white-space: normal;
  font-size: 13px;
  line-height: 20px;
  height: 45px;
  border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px 4px 0 0;
  -khtml-border-radius: 4px 4px 0 0;
}
/* line 3217, ../sass/components/_main.scss */
#quicktabs-elt_research .quicktabs-tabs li a {
  display: block;
}
/* line 3219, ../sass/components/_main.scss */
#quicktabs-elt_research .quicktabs-tabs li.active {
  background-color: #ffffff;
  border-top: 3px solid #df4600;
  border-left: 1px solid #999999;
  border-right: 1px solid #999999;
  color: #000000;
}
/* line 3228, ../sass/components/_main.scss */
#quicktabs-elt_research #quicktabs-container-elt_research {
  border: 1px solid #999999;
  font-size: 12px;
  line-height: 20px;
  padding: 15px;
}

/*end elt development*/
/*seminars quicktabs*/
/* line 3242, ../sass/components/_main.scss */
#quicktabs-container-_seminars .quicktabs-tabpage .field-name-submitted-by {
  float: right;
  color: #d2d2d2;
  font-size: 11px;
  line-height: 15px;
}
/* line 3249, ../sass/components/_main.scss */
#quicktabs-container-_seminars .quicktabs-tabpage .field-name-body {
  clear: both;
  padding-top: 1px;
  font-size: 13px;
}
/* line 3254, ../sass/components/_main.scss */
#quicktabs-container-_seminars .quicktabs-tabpage .field-name-body h4 {
  font-size: 15px;
  color: #df4600;
}
/* line 3259, ../sass/components/_main.scss */
#quicktabs-container-_seminars .quicktabs-tabpage .field-name-body > .field-items > .field-item > div {
  max-width: 100%;
}
/* line 3261, ../sass/components/_main.scss */
#quicktabs-container-_seminars .quicktabs-tabpage .field-name-body > .field-items > .field-item > div > div {
  overflow: visible;
}
@media screen and (max-width: 1024px) {
  /* line 3264, ../sass/components/_main.scss */
  #quicktabs-container-_seminars .quicktabs-tabpage .field-name-body > .field-items > .field-item > div > div .vidget-list {
    width: 100%;
  }
}
/* line 3269, ../sass/components/_main.scss */
#quicktabs-container-_seminars .quicktabs-tabpage .field-name-body .vidget-list > li {
  list-style-image: none;
  list-style-type: none;
}
/* line 3273, ../sass/components/_main.scss */
#quicktabs-container-_seminars .quicktabs-tabpage .field-name-body .vidget-list > li > a:last-child {
  margin-left: 50px;
  text-indent: -12px;
  display: block;
  line-height: 14px;
  font-size: 12px;
  list-style-image: none;
  list-style-type: none;
}

/*end seminars quicktabs*/
/* upcoming event */
/* line 3291, ../sass/components/_main.scss */
#block-quicktabs-upcoming-events h3.ui-accordion-header {
  border-radius: 0;
  border: 0;
  cursor: default !important;
}
/* line 3296, ../sass/components/_main.scss */
#block-quicktabs-upcoming-events h3.ui-accordion-header a {
  cursor: default;
  font-size: 14px;
  background-color: #df4600;
  color: #ffffff;
}
/* line 3304, ../sass/components/_main.scss */
#block-quicktabs-upcoming-events .ui-accordion-content {
  border-radius: 0;
  border: 0;
  padding: 12px 10px;
  font-size: 12px;
  overflow: visible;
  border-bottom: 1px solid #cccccc;
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
}

/* end upcoming event */
/* one-column */
/* line 3321, ../sass/components/_main.scss */
.one-column .view-content > div {
  clear: both;
  margin-bottom: 20px;
  position: relative;
  overflow: auto;
}
@media screen and (max-width: 768px) {
  /* line 3321, ../sass/components/_main.scss */
  .one-column .view-content > div {
    margin-bottom: 10px;
  }
}
/* line 3332, ../sass/components/_main.scss */
.one-column .views-field-field-image,
.one-column .views-field-nothing {
  float: left;
}
@media screen and (max-width: 768px) {
  /* line 3332, ../sass/components/_main.scss */
  .one-column .views-field-field-image,
  .one-column .views-field-nothing {
    float: none;
  }
}
/* line 3341, ../sass/components/_main.scss */
.one-column .views-field-field-image {
  width: 36%;
  margin-right: 2%;
}
@media screen and (max-width: 768px) {
  /* line 3341, ../sass/components/_main.scss */
  .one-column .views-field-field-image {
    width: 100%;
    margin-right: 0;
  }
  /* line 3349, ../sass/components/_main.scss */
  .one-column .views-field-field-image img {
    width: 100%;
  }
}
/* line 3353, ../sass/components/_main.scss */
.one-column .views-field-nothing {
  width: 62%;
  position: relative;
}
@media screen and (max-width: 768px) {
  /* line 3353, ../sass/components/_main.scss */
  .one-column .views-field-nothing {
    width: 100%;
  }
}
/* line 3361, ../sass/components/_main.scss */
.one-column .views-field-nothing .views-field-field-section {
  display: none;
}
/* line 3363, ../sass/components/_main.scss */
.one-column .views-field-nothing .views-field-title {
  color: #df4600;
  font-size: 18px;
  line-height: 20px;
}
@media screen and (max-width: 768px) {
  /* line 3363, ../sass/components/_main.scss */
  .one-column .views-field-nothing .views-field-title {
    padding-left: 10px;
    padding-right: 10px;
  }
}
/* line 3373, ../sass/components/_main.scss */
.one-column .views-field-nothing .views-field-field-text-teaser {
  font-size: 13px;
  line-height: normal;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  /* line 3373, ../sass/components/_main.scss */
  .one-column .views-field-nothing .views-field-field-text-teaser {
    padding-left: 10px;
    padding-right: 10px;
  }
}
/* line 3383, ../sass/components/_main.scss */
.one-column .views-field-nothing .views-field-field-text-teaser p {
  margin: 6px 0;
}
/* line 3386, ../sass/components/_main.scss */
.one-column .views-field-nothing .views-field-comment-count {
  background: url("../images/talk_bubble.svg") left center no-repeat;
  padding-left: 15px;
  color: #df4600;
  font-size: 11px;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  /* line 3386, ../sass/components/_main.scss */
  .one-column .views-field-nothing .views-field-comment-count {
    margin-right: 10px;
    position: static;
    float: right;
  }
}
/* line 3402, ../sass/components/_main.scss */
.one-column .views-field-nothing .views-field-vote {
  float: right;
  margin-right: 40px;
  height: 20px;
}
@media screen and (max-width: 768px) {
  /* line 3402, ../sass/components/_main.scss */
  .one-column .views-field-nothing .views-field-vote {
    margin-right: 30px;
    margin-top: 5px;
  }
}
/* line 3414, ../sass/components/_main.scss */
.one-column .views-field-nothing .views-field-vote .clearfix:after {
  content: none;
}

/* end one-column */
/* grid a */
/* line 3424, ../sass/components/_main.scss */
.grid-a .view-header {
  font-size: 14px;
  line-height: 18px;
}
/* line 3428, ../sass/components/_main.scss */
.grid-a .view-header p {
  margin: 15px 0;
}
/* line 3431, ../sass/components/_main.scss */
.grid-a .view-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-content: flex-start;
  -moz-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
/* line 3437, ../sass/components/_main.scss */
.grid-a .view-content > .views-row {
  width: 32%;
  background-color: #ebeff0;
  padding: 10px 15px;
  margin-bottom: 15px;
  text-align: center;
  border: 3px solid #fea204;
  background-color: #f8e1b0;
  border-radius: 8px 8px 8px 8px;
  -moz-border-radius: 8px 8px 8px 8px;
  -webkit-border-radius: 8px 8px 8px 8px;
  -khtml-border-radius: 8px 8px 8px 8px;
}
@media screen and (max-width: 768px) {
  /* line 3437, ../sass/components/_main.scss */
  .grid-a .view-content > .views-row {
    width: 100%;
    margin-right: 0;
    padding-left: 8px;
    padding-right: 8px;
  }
}
/* line 3454, ../sass/components/_main.scss */
.grid-a .view-content > .views-row .views-field-name-i18n {
  color: #df4600;
  font-family: "kronika", arial;
  font-size: 15px;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  /* line 3454, ../sass/components/_main.scss */
  .grid-a .view-content > .views-row .views-field-name-i18n {
    padding-left: 10px;
    padding-right: 10px;
  }
}
/* line 3466, ../sass/components/_main.scss */
.grid-a .view-content > .views-row .views-field-description-i18n-1 {
  font-size: 12px;
  line-height: 16px;
  font-weight: bold;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  /* line 3466, ../sass/components/_main.scss */
  .grid-a .view-content > .views-row .views-field-description-i18n-1 {
    padding-left: 10px;
    padding-right: 10px;
  }
}
/* line 3477, ../sass/components/_main.scss */
.grid-a .view-content > .views-row .views-field-description-i18n-1 p {
  margin: 0;
}

/* line 3484, ../sass/components/_main.scss */
.page-parents .grid-a .view-content > .views-row {
  border-color: #d36194;
  background-color: #f7f1f3;
}
/* line 3488, ../sass/components/_main.scss */
.page-parents .grid-a .view-content > .views-row .views-field-name-i18n {
  color: #9a0038;
}

/* end grid a */
/* video tips layout */
/* line 3497, ../sass/components/_main.scss */
.video-tips .one-column > .view-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* line 3502, ../sass/components/_main.scss */
.video-tips .one-column > .view-content > .views-row {
  border: 1px solid #990038;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  line-height: normal;
  max-width: 49%;
}
/* line 3508, ../sass/components/_main.scss */
.video-tips .one-column > .view-content > .views-row .views-field-field-image {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
  margin-right: 0;
}
/* line 3514, ../sass/components/_main.scss */
.video-tips .one-column > .view-content > .views-row .views-field-field-image a {
  display: block;
  line-height: 0;
}

/* end video tips layout */
/* online learn english page filter */
/* line 3527, ../sass/components/_main.scss */
.views-exposed-form {
  font-size: 12px;
}
/* line 3529, ../sass/components/_main.scss */
.views-exposed-form .views-exposed-widget .form-submit {
  margin-top: 25px;
}

/* line 3535, ../sass/components/_main.scss */
.english-level-content .views-table {
  font-size: 12px;
  width: 100%;
}
/* line 3539, ../sass/components/_main.scss */
.english-level-content .views-table .views-field-taxonomy-vocabulary-1 {
  width: 100px;
}
/* line 3543, ../sass/components/_main.scss */
.english-level-content .views-table a {
  color: #df4600;
}
/* line 3545, ../sass/components/_main.scss */
.english-level-content .views-table thead {
  text-align: left;
}
/* line 3550, ../sass/components/_main.scss */
.english-level-content .views-table tbody td {
  padding: 10px 6px;
}
/* line 3552, ../sass/components/_main.scss */
.english-level-content .views-table tbody h2 {
  color: #df4600;
  margin: 0;
  font-size: 14px;
  line-height: 16px;
}
/* line 3559, ../sass/components/_main.scss */
.english-level-content .views-table tbody ul {
  padding-left: 0;
}

/* end online learn english page filter */
/*getting start page faq*/
/* line 3568, ../sass/components/_main.scss */
.field-name-field-faq > .field-label {
  margin-top: 30px;
  margin-bottom: 6px;
  color: #df4600;
}
/* line 3575, ../sass/components/_main.scss */
.field-name-field-faq .field-item .field-label {
  display: none;
}
/* line 3580, ../sass/components/_main.scss */
.field-name-field-faq .field-collection-view {
  margin: 0;
  padding: 0;
  border-bottom: 0;
}
/* line 3586, ../sass/components/_main.scss */
.field-name-field-faq .field-name-field-label {
  background-color: #df4600;
  color: #ffffff;
  padding: 4px 12px;
  overflow: auto;
  cursor: pointer;
  font-size: 12px;
  font-family: "bangwhackpow", "Sniglet-Regular", arial, Verdana, Tahoma, sans-serif;
}
/* line 3595, ../sass/components/_main.scss */
.field-name-field-faq .field-name-field-label .field-item {
  padding-left: 15px;
  background: url("../images/icon-arrow-right-white.svg") left center no-repeat;
}
/* line 3601, ../sass/components/_main.scss */
.field-name-field-faq .active_arrow {
  background-color: #006747;
}
/* line 3603, ../sass/components/_main.scss */
.field-name-field-faq .active_arrow .field-item {
  background: url("../images/icon-arrow-downward-white.svg") left center no-repeat;
}
/* line 3606, ../sass/components/_main.scss */
.field-name-field-faq .field-name-field-text-teaser {
  padding: 4px 12px;
}

/*end getting start page faq*/
/*404 page*/
/* line 3615, ../sass/components/_main.scss */
.section-search404 #content a {
  color: #df4600;
}
/* line 3617, ../sass/components/_main.scss */
.section-search404 h1 {
  color: #df4600;
  font-size: 20px;
  margin-bottom: 0;
}
/* line 3623, ../sass/components/_main.scss */
.section-search404 #search404-page-text {
  font-size: 14px;
}
/* line 3627, ../sass/components/_main.scss */
.section-search404 .search-form {
  margin-top: 15px;
  font-size: 12px;
}

/*end 404 page*/
/*magazine page*/
/* line 3637, ../sass/components/_main.scss */
.block > .view-id-magazine_glossary .view-display-id-attachment {
  font-size: 14px;
  color: #999999;
}
/* line 3641, ../sass/components/_main.scss */
.block > .view-id-magazine_glossary .view-display-id-attachment .views-summary {
  float: left;
}
/* line 3644, ../sass/components/_main.scss */
.block > .view-id-magazine_glossary .view-display-id-attachment .views-summary a {
  border-bottom: 3px solid #eeb987;
  padding: 4px 8px;
  margin-bottom: 10px;
  display: block;
}
/* line 3650, ../sass/components/_main.scss */
.block > .view-id-magazine_glossary .view-display-id-attachment .views-summary .active {
  background-color: #e0612c;
  color: #ffffff;
  border-color: #e0612c;
}

/* line 3660, ../sass/components/_main.scss */
.magazine_image > .view-id-magazine_glossary > .view-content {
  clear: both;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* line 3665, ../sass/components/_main.scss */
.magazine_image > .view-id-magazine_glossary > .view-content > .views-row {
  margin-bottom: 10px;
  margin-right: 3.5%;
  border: 2px solid #fac366;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  background-color: #fde5b5;
  max-width: 140px;
}
/* line 3673, ../sass/components/_main.scss */
.magazine_image > .view-id-magazine_glossary > .view-content > .views-row .views-field-field-image {
  line-height: 0;
  border-radius: 6px 6px 0 0;
  -moz-border-radius: 6px 6px 0 0;
  -webkit-border-radius: 6px 6px 0 0;
  -khtml-border-radius: 6px 6px 0 0;
  overflow: hidden;
}
/* line 3679, ../sass/components/_main.scss */
.magazine_image > .view-id-magazine_glossary > .view-content > .views-row .views-field-title {
  color: #df4600;
  padding: 10px 6px;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  font-family: "kronika", arial;
}

/* line 3692, ../sass/components/_main.scss */
.magazine_title > .view-id-magazine_glossary > .view-content {
  clear: both;
}
/* line 3695, ../sass/components/_main.scss */
.magazine_title > .view-id-magazine_glossary > .view-content h3 {
  color: #006747;
  width: 10%;
  float: left;
  margin: 0;
  font-size: 16px;
}
/* line 3703, ../sass/components/_main.scss */
.magazine_title > .view-id-magazine_glossary > .view-content > table {
  width: 90%;
  float: left;
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 20px 0;
  color: #df4600;
}
/* line 3711, ../sass/components/_main.scss */
.magazine_title > .view-id-magazine_glossary > .view-content > table tr:nth-child(even) {
  background-color: transparent;
}
/* line 3713, ../sass/components/_main.scss */
.magazine_title > .view-id-magazine_glossary > .view-content > table td {
  border-left: 0;
  border-right: 0;
  width: 50%;
  padding: 0 10px 10px 0;
  vertical-align: top;
}
/* line 3721, ../sass/components/_main.scss */
.magazine_title > .view-id-magazine_glossary > .view-content > table tr:last-child td {
  padding-bottom: 20px;
}

/* line 3728, ../sass/components/_main.scss */
.view-magazine-glossary form .views-exposed-form {
  display: none;
}

/*end magazine page*/
/*field collection accordioin*/
/* line 3734, ../sass/components/_main.scss */
.field-collection-container .field-name-field-label {
  background: #df4600 url("../images/icon-arrow-right-white.svg") 10px center no-repeat;
  border-radius: 0;
  color: #ffffff;
  padding: .5em .5em .5em .7em;
  padding-left: 25px;
  font-size: 12px;
  font-weight: normal;
  border: none;
  line-height: normal;
  cursor: pointer;
}
/* line 3746, ../sass/components/_main.scss */
.field-collection-container .field-name-field-label .field-item {
  padding-left: 0;
  background: none;
}
/* line 3752, ../sass/components/_main.scss */
.field-collection-container .active_arrow {
  background: #df4600 url("../images/icon-arrow-downward-white.svg") 10px center no-repeat;
}
/* line 3756, ../sass/components/_main.scss */
.field-collection-container .group_fold .field-name-field-text-teaser {
  background: #e8f0d8;
  padding: 14px;
  border: none;
}
/* line 3761, ../sass/components/_main.scss */
.field-collection-container .group_fold .field-name-field-text-teaser p {
  margin: 10px 0;
}

/*end field collection accordioin*/
/*two_box_promote*/
/* line 3768, ../sass/components/_main.scss */
.two_box_promote {
  clear: both;
  overflow: auto;
}
/* line 3772, ../sass/components/_main.scss */
.two_box_promote .views-row {
  float: left;
  width: 49%;
  overflow: hidden;
  margin-left: 2%;
  margin-bottom: 10px;
  position: relative;
  height: 362px;
}
@media screen and (max-width: 768px) {
  /* line 3772, ../sass/components/_main.scss */
  .two_box_promote .views-row {
    width: 100%;
    margin-left: 0;
  }
}
/* line 3786, ../sass/components/_main.scss */
.two_box_promote .views-row .views-field-name {
  color: #df4600;
}
/* line 3788, ../sass/components/_main.scss */
.two_box_promote .views-row .views-field-name h1 {
  font-size: 18px;
  font-weight: bold;
}
/* line 3794, ../sass/components/_main.scss */
.two_box_promote .views-row .views-row {
  width: 100%;
  float: none;
  margin-left: 0;
}
/* line 3800, ../sass/components/_main.scss */
.two_box_promote .views-row .views-field-field-image {
  border: 4px solid #fea204;
  border-radius: 8px 8px 8px 8px;
  -moz-border-radius: 8px 8px 8px 8px;
  -webkit-border-radius: 8px 8px 8px 8px;
  -khtml-border-radius: 8px 8px 8px 8px;
  background-color: #f8e1b0;
  padding: 5px;
  -webkit-box-shadow: inset 1px 1px 4px 1px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: inset 1px 1px 4px 1px rgba(0, 0, 0, 0.4);
  box-shadow: inset 1px 1px 4px 1px rgba(0, 0, 0, 0.4);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  /* line 3811, ../sass/components/_main.scss */
  .two_box_promote .views-row .views-field-field-image img {
    width: 100%;
  }
}
/* line 3816, ../sass/components/_main.scss */
.two_box_promote .views-row .views-field-title {
  padding-left: 2px;
  color: #df4600;
  font-size: 21px;
  margin-top: 4px;
  font-family: "bangwhackpow", "Sniglet-Regular", arial, Verdana, Tahoma, sans-serif;
}
/* line 3824, ../sass/components/_main.scss */
.two_box_promote .views-row .views-field-field-text-teaser {
  font-size: 15px;
  line-height: normal;
  margin-top: 8px;
}
/* line 3830, ../sass/components/_main.scss */
.two_box_promote .views-row .views-field-body {
  overflow: hidden;
}
/* line 3833, ../sass/components/_main.scss */
.two_box_promote .views-row .views-field-body p {
  margin: 0.8em 0;
  font-size: 14px;
  line-height: normal;
}
/* line 3840, ../sass/components/_main.scss */
.two_box_promote .views-row .views-field-comment-count {
  border-top: 1px solid #df4600;
  color: #df4600;
  margin-top: 8px;
  text-align: right;
  font-size: 12px;
}
/* line 3848, ../sass/components/_main.scss */
.two_box_promote .views-row .views-field-comment-count:before {
  content: url("../images/talk_bubble.svg");
}
/* line 3854, ../sass/components/_main.scss */
.two_box_promote .views-row-odd {
  margin-left: 0;
}

/*end two_box_promote*/
/* line 3861, ../sass/components/_main.scss */
.user-info-from-cookie a {
  color: #df4600;
}

/* line 3864, ../sass/components/_main.scss */
.promotion-banner-course {
  min-height: 120px;
  background: url("../images/promotion-banner1.png") no-repeat;
  background-size: 100%;
  margin-top: 30px;
}
/* line 3870, ../sass/components/_main.scss */
.promotion-banner-course .text_info {
  margin-left: 38%;
  color: #ffffff;
  padding-top: 10px;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  /* line 3870, ../sass/components/_main.scss */
  .promotion-banner-course .text_info {
    padding-top: 5px;
    padding-right: 5px;
  }
}
@media screen and (max-width: 480px) {
  /* line 3870, ../sass/components/_main.scss */
  .promotion-banner-course .text_info {
    padding-top: 70px;
    padding-right: 0;
    margin-left: 0;
    color: #000;
  }
}
/* line 3886, ../sass/components/_main.scss */
.promotion-banner-course .text_info h5 {
  margin: 0;
  line-height: 1.2;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  /* line 3886, ../sass/components/_main.scss */
  .promotion-banner-course .text_info h5 {
    font-size: 14px;
  }
}
/* line 3896, ../sass/components/_main.scss */
.promotion-banner-course .text_info a {
  font-size: 14px;
  color: #ffb338 !important;
  padding-left: 20px;
  font-family: "bangwhackpow", "Sniglet-Regular", arial, Verdana, Tahoma, sans-serif;
  background: url("../images/icon-arrow-orange.png") left center no-repeat;
}

/* line 3909, ../sass/components/_main.scss */
.contents-overview .view-header h4 {
  font-size: 15px;
  color: #000000;
  font-family: "british_council-bold", arial;
}
/* line 3915, ../sass/components/_main.scss */
.contents-overview .view-header p {
  font-size: 13px;
  margin-top: 0;
}
/* line 3921, ../sass/components/_main.scss */
.contents-overview .view-filters {
  background-color: #f4f4f4;
  padding: 30px 30px 20px 30px;
}
@media screen and (max-width: 768px) {
  /* line 3921, ../sass/components/_main.scss */
  .contents-overview .view-filters {
    padding: 20px 10px;
    margin-left: -15px;
    margin-right: -15px;
  }
}
/* line 3931, ../sass/components/_main.scss */
.contents-overview .view-filters .views-exposed-widgets {
  margin-bottom: 0;
}
/* line 3935, ../sass/components/_main.scss */
.contents-overview .view-filters .views-exposed-widget {
  padding-top: 0;
}
/* line 3939, ../sass/components/_main.scss */
.contents-overview .view-filters label {
  font-weight: normal;
  font-family: "british_council-bold", arial;
  font-size: 14px;
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  /* line 3946, ../sass/components/_main.scss */
  .contents-overview .view-filters .views-widget-filter-field_language_level_tid {
    width: 28%;
    padding: 0;
    margin-right: 2%;
  }
}
@media screen and (max-width: 768px) {
  /* line 3954, ../sass/components/_main.scss */
  .contents-overview .view-filters .views-widget-filter-field_section_tid {
    width: 70%;
    padding: 0;
  }
}
/* line 3961, ../sass/components/_main.scss */
.contents-overview .view-filters .views-widget-filter-taxonomy_vocabulary_29_tid {
  width: 240px;
  padding-right: 0;
}
@media screen and (max-width: 768px) {
  /* line 3961, ../sass/components/_main.scss */
  .contents-overview .view-filters .views-widget-filter-taxonomy_vocabulary_29_tid {
    width: 100%;
    padding-right: 0;
    margin-top: 5px;
  }
}
/* line 3970, ../sass/components/_main.scss */
.contents-overview .view-filters .views-widget-filter-taxonomy_vocabulary_29_tid input {
  background-image: none;
}
@media screen and (max-width: 768px) {
  /* line 3975, ../sass/components/_main.scss */
  .contents-overview .view-filters .views-widget-filter-language {
    width: 100%;
    padding-right: 0;
    margin-top: 5px;
  }
}
/* line 3983, ../sass/components/_main.scss */
.contents-overview .view-filters .views-submit-button {
  padding-right: 0;
}
@media screen and (max-width: 768px) {
  /* line 3983, ../sass/components/_main.scss */
  .contents-overview .view-filters .views-submit-button {
    width: 100%;
  }
}
/* line 3990, ../sass/components/_main.scss */
.contents-overview .view-filters select,
.contents-overview .view-filters input[type="text"] {
  border-radius: 4px 4px 4px 4px;
  -moz-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  -khtml-border-radius: 4px 4px 4px 4px;
  padding: 4px 12px;
  border: 1px solid #dfdfdf;
  height: 26px;
}
@media screen and (max-width: 768px) {
  /* line 3990, ../sass/components/_main.scss */
  .contents-overview .view-filters select,
  .contents-overview .view-filters input[type="text"] {
    width: 100%;
  }
}
/* line 4002, ../sass/components/_main.scss */
.contents-overview .view-filters input[type="submit"] {
  border-radius: 4px 4px 4px 4px;
  -moz-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  -khtml-border-radius: 4px 4px 4px 4px;
  border: 0;
  background-color: #903779;
  color: #ffffff;
  padding-top: 6px;
  padding-bottom: 6px;
  margin-top: 28px;
  width: 90px;
}
@media screen and (max-width: 768px) {
  /* line 4002, ../sass/components/_main.scss */
  .contents-overview .view-filters input[type="submit"] {
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
/* line 4020, ../sass/components/_main.scss */
.contents-overview .view-content {
  background-color: #f4f4f4;
  padding: 20px 30px 20px 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  /* line 4020, ../sass/components/_main.scss */
  .contents-overview .view-content {
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 0;
  }
}
/* line 4035, ../sass/components/_main.scss */
.contents-overview .view-content > .views-row {
  width: 32%;
  margin-right: 1.95%;
  padding: 0 10px 10px 10px;
  margin-bottom: 25px;
  background-color: #ffffff;
  -webkit-box-shadow: 2px 1px 4px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 2px 1px 4px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 1px 4px 0px rgba(0, 0, 0, 0.2);
  line-height: normal;
  font-size: 13px;
  border-radius: 4px 4px 4px 4px;
  -moz-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  -khtml-border-radius: 4px 4px 4px 4px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  /* line 4035, ../sass/components/_main.scss */
  .contents-overview .view-content > .views-row {
    width: 100%;
    margin-right: 0;
  }
}
/* line 4054, ../sass/components/_main.scss */
.contents-overview .view-content > .views-row:nth-child(3n+3) {
  margin-right: 0;
}
/* line 4059, ../sass/components/_main.scss */
.contents-overview .view-content .views-field-field-image {
  margin-left: -20px;
  margin-right: -20px;
  width: auto;
  float: none;
}
/* line 4065, ../sass/components/_main.scss */
.contents-overview .view-content .views-field-field-image img {
  width: 100%;
}
/* line 4070, ../sass/components/_main.scss */
.contents-overview .view-content .views-field-title {
  margin-top: 10px;
  margin-bottom: 10px;
  color: #df4600;
  line-height: normal;
  font-size: 20px;
  font-family: "british_council-bold", arial;
}
/* line 4079, ../sass/components/_main.scss */
.contents-overview .view-content .views-field-field-section {
  font-style: italic;
  color: #a5a5a5;
}
/* line 4084, ../sass/components/_main.scss */
.contents-overview .view-content .views-field-taxonomy-vocabulary-29 {
  font-size: 13px;
  color: #df4600;
  margin-bottom: 15px;
}
/* line 4090, ../sass/components/_main.scss */
.contents-overview .view-content .views-field-taxonomy-vocabulary-30 {
  __float: left;
}
/* line 4093, ../sass/components/_main.scss */
.contents-overview .view-content .views-field-taxonomy-vocabulary-30 .views-label-taxonomy-vocabulary-30 {
  font-style: italic;
  color: #a5a5a5;
}
/* line 4098, ../sass/components/_main.scss */
.contents-overview .view-content .views-field-taxonomy-vocabulary-30 .field-content {
  color: #df4600;
  font-family: "british_council-bold", arial;
}
/* line 4104, ../sass/components/_main.scss */
.contents-overview .view-content .views-field-created, .contents-overview .view-content .blog-view .views_slideshow_cycle_main .views-slideshow-cycle-main-frame .views-slideshow-cycle-main-frame-row .views-slideshow-cycle-main-frame-row-item .views-field-comment-count, .blog-view .views_slideshow_cycle_main .views-slideshow-cycle-main-frame .views-slideshow-cycle-main-frame-row .views-slideshow-cycle-main-frame-row-item .contents-overview .view-content .views-field-comment-count {
  __float: right;
  margin-top: 10px;
}
/* line 4108, ../sass/components/_main.scss */
.contents-overview .view-content .views-field-created .views-label-created, .contents-overview .view-content .blog-view .views_slideshow_cycle_main .views-slideshow-cycle-main-frame .views-slideshow-cycle-main-frame-row .views-slideshow-cycle-main-frame-row-item .views-field-comment-count .views-label-created, .blog-view .views_slideshow_cycle_main .views-slideshow-cycle-main-frame .views-slideshow-cycle-main-frame-row .views-slideshow-cycle-main-frame-row-item .contents-overview .view-content .views-field-comment-count .views-label-created {
  font-style: italic;
  color: #a5a5a5;
}
/* line 4113, ../sass/components/_main.scss */
.contents-overview .view-content .views-field-created .field-content, .contents-overview .view-content .blog-view .views_slideshow_cycle_main .views-slideshow-cycle-main-frame .views-slideshow-cycle-main-frame-row .views-slideshow-cycle-main-frame-row-item .views-field-comment-count .field-content, .blog-view .views_slideshow_cycle_main .views-slideshow-cycle-main-frame .views-slideshow-cycle-main-frame-row .views-slideshow-cycle-main-frame-row-item .contents-overview .view-content .views-field-comment-count .field-content {
  color: #df4600;
  font-family: "british_council-bold", arial;
}
/* line 4118, ../sass/components/_main.scss */
.contents-overview .view-content .views-field-created span, .contents-overview .view-content .blog-view .views_slideshow_cycle_main .views-slideshow-cycle-main-frame .views-slideshow-cycle-main-frame-row .views-slideshow-cycle-main-frame-row-item .views-field-comment-count span, .blog-view .views_slideshow_cycle_main .views-slideshow-cycle-main-frame .views-slideshow-cycle-main-frame-row .views-slideshow-cycle-main-frame-row-item .contents-overview .view-content .views-field-comment-count span {
  display: block;
}
/* line 4123, ../sass/components/_main.scss */
.contents-overview .view-content .views-field-comment-count {
  clear: both;
  margin-top: 10px;
  padding-top: 1px;
}
/* line 4128, ../sass/components/_main.scss */
.contents-overview .view-content .views-field-comment-count .rate-widget {
  width: 100%;
}
/* line 4132, ../sass/components/_main.scss */
.contents-overview .view-content .views-field-comment-count .field-content {
  font-style: italic;
  color: #a5a5a5;
  font-size: 11px;
}

/* 20171114 youtube video on mobile */
@media screen and (max-width: 768px) {
  /* line 4145, ../sass/components/_main.scss */
  #content .field-name-field-video iframe {
    width: 100%;
  }
}
/* line 4154, ../sass/components/_main.scss */
.smartbanner__info {
  font-family: "british_council", arial;
}
/* line 4157, ../sass/components/_main.scss */
.smartbanner--british-council {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding-right: 10px;
}
/* line 4162, ../sass/components/_main.scss */
.smartbanner__exit {
  position: static;
  padding: 12px;
}
/* line 4166, ../sass/components/_main.scss */
.smartbanner__exit:before, .smartbanner__exit:after {
  width: 2px;
  height: 16px;
}
/* line 4172, ../sass/components/_main.scss */
.smartbanner__icon {
  position: static;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
/* line 4178, ../sass/components/_main.scss */
.smartbanner__info {
  flex: 1;
  line-height: 1.5;
  position: static;
  padding: 0 10px;
}
/* line 4184, ../sass/components/_main.scss */
.smartbanner__info__title {
  font-weight: bold;
  font-size: 16px;
}
/* line 4188, ../sass/components/_main.scss */
.smartbanner__info__price {
  color: #aaa;
}
/* line 4191, ../sass/components/_main.scss */
.smartbanner__button {
  font-family: "british_council", arial;
  font-size: 13px;
  background-color: #ba6a94;
  color: #ffffff !important;
  padding: 5px 10px;
  position: static;
}
/* line 4199, ../sass/components/_main.scss */
.smartbanner__button:hover, .smartbanner__button:visited, .smartbanner__button:active, .smartbanner__button:focus {
  color: #ffffff;
}
@media all and (max-width: 400px) {
  /* line 4208, ../sass/components/_main.scss */
  .smartbanner__info__title {
    font-size: 4.5vw;
  }
  /* line 4211, ../sass/components/_main.scss */
  .smartbanner__info__author, .smartbanner__info__price {
    font-size: 2.75vw;
  }
  /* line 4215, ../sass/components/_main.scss */
  .smartbanner__button {
    font-size: 3vw;
    padding: 5px 2vw;
    min-width: 50px;
  }
}

/* line 1, ../sass/components/_footer.scss */
#footer {
  width: 100%;
  background-color: #c34e00;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  /* line 1, ../sass/components/_footer.scss */
  #footer {
    padding: 0;
  }
}
/* line 6, ../sass/components/_footer.scss */
#footer .footer__wrapper {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 14px;
}
/* line 12, ../sass/components/_footer.scss */
#footer .footer__wrapper > div.block {
  float: left;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  /* line 12, ../sass/components/_footer.scss */
  #footer .footer__wrapper > div.block {
    padding: 0;
  }
}
/* line 20, ../sass/components/_footer.scss */
#footer .footer__wrapper .block-region {
  clear: both;
}
/* line 22, ../sass/components/_footer.scss */
#footer .footer__wrapper .backToTop {
  display: none;
}
@media screen and (max-width: 768px) {
  /* line 22, ../sass/components/_footer.scss */
  #footer .footer__wrapper .backToTop {
    display: block;
    color: #df4600;
    font-size: 14px;
    text-align: center;
    background-color: #ffffff;
    margin: 12px 6px;
    padding: 10px 0;
  }
}
/* line 35, ../sass/components/_footer.scss */
#footer .footer__wrapper .backToTop:after {
  content: url(../images/icon-backTop.svg);
  position: absolute;
  margin-top: 2px;
  margin-left: 8px;
}
/* line 44, ../sass/components/_footer.scss */
#footer #block-menu-menu-follow-us {
  width: 27%;
  padding-left: 140px;
  padding-top: 25px;
  background: url("../images/bc_logo.png") left 30px no-repeat;
}
@media screen and (max-width: 1024px) {
  /* line 44, ../sass/components/_footer.scss */
  #footer #block-menu-menu-follow-us {
    padding-left: 0;
    padding-top: 100px;
    width: 18%;
  }
}
@media screen and (max-width: 768px) {
  /* line 44, ../sass/components/_footer.scss */
  #footer #block-menu-menu-follow-us {
    width: 100%;
    height: auto;
    background: none;
    padding-left: 0;
    padding-top: 40px;
    padding-bottom: 20px;
    margin-bottom: 0;
  }
  /* line 62, ../sass/components/_footer.scss */
  #footer #block-menu-menu-follow-us h2.block__title {
    display: none;
  }
}
/* line 64, ../sass/components/_footer.scss */
#footer #block-menu-menu-follow-us h2.block__title {
  font-size: 14px;
}
/* line 65, ../sass/components/_footer.scss */
#footer #block-menu-menu-follow-us ul.menu {
  padding: 0;
  margin: 0;
}
/* line 68, ../sass/components/_footer.scss */
#footer #block-menu-menu-follow-us ul.menu li {
  list-style-image: none;
  list-style-type: none;
  color: #ffffff;
  margin: 10px 0;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  /* line 68, ../sass/components/_footer.scss */
  #footer #block-menu-menu-follow-us ul.menu li {
    float: left;
    width: 50%;
    margin: 0;
    border: 1px solid #dbdbdb;
  }
}
/* line 81, ../sass/components/_footer.scss */
#footer #block-menu-menu-follow-us ul.menu li a {
  padding-left: 40px;
  display: block;
}
@media screen and (max-width: 768px) {
  /* line 81, ../sass/components/_footer.scss */
  #footer #block-menu-menu-follow-us ul.menu li a {
    padding: 10px 0;
    padding-left: 42%;
  }
}
/* line 91, ../sass/components/_footer.scss */
#footer #block-menu-menu-follow-us ul.menu .twi {
  background: url("../images/icon-footer-twit.svg") no-repeat;
}
/* line 92, ../sass/components/_footer.scss */
#footer #block-menu-menu-follow-us ul.menu .facebook {
  background: url("../images/icon-footer-fb.svg") no-repeat;
}
/* line 93, ../sass/components/_footer.scss */
#footer #block-menu-menu-follow-us ul.menu .rss {
  background: url("../images/icon-footer-rss.svg") no-repeat;
}
/* line 94, ../sass/components/_footer.scss */
#footer #block-menu-menu-follow-us ul.menu .email {
  background: url("../images/icon-footer-email.svg") no-repeat;
}
/* line 95, ../sass/components/_footer.scss */
#footer #block-menu-menu-follow-us ul.menu .weibo {
  background: url("../images/icon-footer-weibo.png") no-repeat;
}
/* line 96, ../sass/components/_footer.scss */
#footer #block-menu-menu-follow-us ul.menu .qq {
  background: url("../images/icon-footer-qq.png") no-repeat;
}
/* line 97, ../sass/components/_footer.scss */
#footer #block-menu-menu-follow-us ul.menu .qrcode {
  background: url("../images/footer_qr_code.png") no-repeat;
  text-indent: -9999px;
  height: 106px;
}
@media screen and (max-width: 768px) {
  /* line 103, ../sass/components/_footer.scss */
  #footer #block-menu-menu-follow-us ul.menu li:nth-child(even) {
    border-right: none;
  }
  /* line 104, ../sass/components/_footer.scss */
  #footer #block-menu-menu-follow-us ul.menu .twi,
  #footer #block-menu-menu-follow-us ul.menu .facebook,
  #footer #block-menu-menu-follow-us ul.menu .rss,
  #footer #block-menu-menu-follow-us ul.menu .email,
  #footer #block-menu-menu-follow-us ul.menu .weibo,
  #footer #block-menu-menu-follow-us ul.menu .qq {
    background-position: 25% center;
  }
  /* line 111, ../sass/components/_footer.scss */
  #footer #block-menu-menu-follow-us ul.menu .qrcode {
    background-position: center;
  }
}
@media screen and (max-width: 768px) {
  /* line 116, ../sass/components/_footer.scss */
  #footer #block-menu-menu-follow-us:before {
    content: "Follow us";
    position: absolute;
    width: 100%;
    text-align: center;
    margin-top: -30px;
  }
}
/* line 126, ../sass/components/_footer.scss */
#footer #block-menu-block-1 {
  width: 73%;
  padding: 15px 30px 20px 30px;
  margin-bottom: 0;
  border-left: 1px solid #ec9e80;
}
@media screen and (max-width: 1024px) {
  /* line 126, ../sass/components/_footer.scss */
  #footer #block-menu-block-1 {
    width: 82%;
  }
}
@media screen and (max-width: 768px) {
  /* line 126, ../sass/components/_footer.scss */
  #footer #block-menu-block-1 {
    display: none;
  }
}
/* line 138, ../sass/components/_footer.scss */
#footer #block-menu-block-1 .menu-block-wrapper > ul.menu > li.first {
  display: none;
}
/* line 139, ../sass/components/_footer.scss */
#footer #block-menu-block-1 .menu-block-wrapper > ul.menu > li {
  float: left;
  padding-top: 10px;
  padding-left: 1%;
  width: 32.3%;
  min-height: 130px;
}
/* line 148, ../sass/components/_footer.scss */
#footer #block-menu-block-1 ul.menu {
  margin: 0;
  padding: 0;
}
/* line 151, ../sass/components/_footer.scss */
#footer #block-menu-block-1 ul.menu li {
  list-style-image: none;
  list-style-type: none;
}
/* line 154, ../sass/components/_footer.scss */
#footer #block-menu-block-1 ul.menu li ul.menu li {
  font-size: 12px;
  font-weight: normal;
  line-height: 16px;
  margin-top: 7px;
  color: #ffffff;
}

/* line 166, ../sass/components/_footer.scss */
.region-bottom-bg {
  width: 100%;
  background-color: #df4600;
  border-top: 1px solid #ec9e80;
  padding: 10px;
  padding-top: 15px;
}
@media screen and (max-width 767px) {
  /* line 166, ../sass/components/_footer.scss */
  .region-bottom-bg {
    border-top: none;
    padding: 0;
  }
}

/* line 177, ../sass/components/_footer.scss */
.region-bottom {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  /* line 177, ../sass/components/_footer.scss */
  .region-bottom {
    padding-bottom: 80px;
    background-position: center bottom;
  }
}
/* line 188, ../sass/components/_footer.scss */
.region-bottom .block {
  margin: 0;
}
/* line 189, ../sass/components/_footer.scss */
.region-bottom ul.menu {
  margin: 0;
  padding: 0;
  color: #ffffff;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  /* line 189, ../sass/components/_footer.scss */
  .region-bottom ul.menu {
    padding: 10px 0;
  }
}
/* line 197, ../sass/components/_footer.scss */
.region-bottom ul.menu li {
  list-style-image: none;
  list-style-type: none;
  float: left;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  /* line 197, ../sass/components/_footer.scss */
  .region-bottom ul.menu li {
    float: none;
    margin-right: 0;
    text-align: center;
    line-height: 30px;
  }
}
/* line 210, ../sass/components/_footer.scss */
.region-bottom .copy_right_area {
  clear: both;
  color: #ffffff;
  font-size: 11px;
  line-height: 15px;
}
@media screen and (max-width: 767px) {
  /* line 210, ../sass/components/_footer.scss */
  .region-bottom .copy_right_area {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #dbdbdb;
  }
}
/* line 220, ../sass/components/_footer.scss */
.region-bottom .copy_right_area p {
  margin: 0;
}

/* SMACSS theme rules */
/* @import "theme-A"; */
/* @import "theme-B"; */
