/**
 * @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. */
@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: "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");
}
/* 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: "british_council", 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.75em;
  margin-bottom: 0.75em;
}

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

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

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

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

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

/* Address styling not present in IE 8/9, Safari 5, and Chrome. */
/* line 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;
  /* Correct IE 8 not scaling image height when resized. */
  __width: auto;
}

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

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

/**
 * Forms
 */
/* Define consistent border, margin, and padding. */
/* line 391, ../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 406, ../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 421, ../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 440, ../sass/_normalize.scss */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
/* line 451, ../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 465, ../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 479, ../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 490, ../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 505, ../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 514, ../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 520, ../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 530, ../sass/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

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

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

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

  /**
   * The layout when there are two sidebars.
   */
  /* line 116, ../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 118, ../sass/layouts/_responsive.scss */
  .two-sidebars #content {
    float: left;
    width: 200%;
    margin-left: 100%;
    margin-right: -300%;
  }
  /* line 123, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }
  /* line 128, ../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 134, ../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 138, ../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 143, ../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 147, ../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 164, ../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 166, ../sass/layouts/_responsive.scss */
  .sidebar-first #content {
    float: left;
    width: 400%;
    margin-left: 100%;
    margin-right: -500%;
  }
  /* line 171, ../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 179, ../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 181, ../sass/layouts/_responsive.scss */
  .sidebar-second #content {
    float: left;
    width: 400%;
    margin-left: 0%;
    margin-right: -400%;
  }
  /* line 186, ../sass/layouts/_responsive.scss */
  .sidebar-second .region-sidebar-second {
    float: left;
    width: 100%;
    margin-left: 400%;
    margin-right: -500%;
  }

  /**
   * The layout when there are two sidebars.
   */
  /* line 194, ../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. */
  }
  /* line 196, ../sass/layouts/_responsive.scss */
  .two-sidebars #content {
    float: left;
    width: 300%;
    margin-left: 100%;
    margin-right: -400%;
  }
  /* line 201, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }
  /* line 206, ../sass/layouts/_responsive.scss */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 100%;
    margin-left: 400%;
    margin-right: -500%;
  }
}
/* Component (SMACSS module) rules */
/**
 * @file
 * SMACSS Modules
 *
 * Adds modular sets of styles.
 *
 * Additional useful selectors can be found in Zen's online documentation.
 * https://drupal.org/node/1707736
 */
/**
 * Wireframes.
 */
/* line 15, ../sass/components/_misc.scss */
.with-wireframes #header,
.with-wireframes #main,
.with-wireframes #content,
.with-wireframes #navigation,
.with-wireframes .region-sidebar-first,
.with-wireframes .region-sidebar-second,
.with-wireframes #footer,
.with-wireframes .region-bottom {
  outline: 1px solid #ccc;
}

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

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

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

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

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

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

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

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

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

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

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

/**
 * Navigation bar.
 */
/* line 136, ../sass/components/_misc.scss */
#navigation {
  /* Sometimes you want to prevent overlapping with main div. */
  /* overflow: hidden; */
  /* Main menu and secondary menu links and menu block links. */
}
/* line 140, ../sass/components/_misc.scss */
#navigation .block {
  margin-bottom: 0;
}
/* line 150, ../sass/components/_misc.scss */
#navigation .links,
#navigation .menu {
  margin: 0;
  padding: 0;
  text-align: left;
  /* LTR */
}
/* line 156, ../sass/components/_misc.scss */
#navigation .links li,
#navigation .menu li {
  /* A simple method to get navigation links to appear in one line. */
  float: left;
  /* LTR */
  padding: 0 10px 0 0;
  /* LTR */
  list-style-type: none;
  list-style-image: none;
}

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

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

/**
 * Messages.
 */
/* line 197, ../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 212, ../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 221, ../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 231, ../sass/components/_misc.scss */
.messages__list {
  margin: 0;
}

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

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

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

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

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

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

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

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

/* line 307, ../sass/components/_misc.scss */
a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  color: #333;
  background-color: #dedede;
  letter-spacing: 1px;
  padding: 0 1em;
  text-align: center;
}

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

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

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

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

/* line 358, ../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 367, ../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 372, ../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 400, ../sass/components/_misc.scss */
.inline {
  display: inline;
  padding: 0;
}
/* line 404, ../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 412, ../sass/components/_misc.scss */
span.field-label {
  padding: 0 1em 0 0;
  /* LTR */
}

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

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

/* line 425, ../sass/components/_misc.scss */
.more-help-link a {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA7UlEQVR42qWTPQqDQBCFcwSPkCNITpAj5AjeIm1uYpkyR7Cy2Mot7OwsBAsRwUKwmOwLGRle3EIy8PyBfZ/z3J2TiPylz8VWWZZpUB40BonRKyizaxkA88MYYiqCEgv4MTvnZJom0VqWRbz3FlJZgLYtqmEY1Lg9r+sKsIXcLSC3AC019H0vqLquLeC5AfiHYSGkcdAJimKIBQiJ4+CO92OAtm0FNc8zOjkMwE5Q63FAtbeg6zpAYvG8BWR7i5qmQYwY4MIHqYhE2DOPQWcGJBQF2XU72ZzyUeZ5GCNt5/hybJgYdAXsq5sOEE/jG6dC5IOqCXTmAAAAAElFTkSuQmCC');
  background-position: 0 50%;
  /* LTR */
  background-repeat: no-repeat;
  padding: 1px 0 1px 20px;
  /* LTR */
}

/**
 * Pager.
 */
/* A list of page numbers when more than 1 page of content is available. */
/* line 440, ../sass/components/_misc.scss */
.pager {
  clear: both;
  padding: 0;
  text-align: center;
}

/* line 445, ../sass/components/_misc.scss */
.pager-item,
.pager-first,
.pager-previous,
.pager-next,
.pager-last,
.pager-ellipsis, .pager-current {
  display: inline;
  padding: 0 0.5em;
  list-style-type: none;
  background-image: none;
}

/* line 452, ../sass/components/_misc.scss */
.pager-item,
.pager-first,
.pager-previous,
.pager-next,
.pager-last,
.pager-ellipsis {
  /* A concatenation of several list items using an ellipsis. */
}

/* The current page's list item. */
/* line 462, ../sass/components/_misc.scss */
.pager-current {
  font-weight: bold;
}

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

/**
 * Menus.
 */
/* line 479, ../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 486, ../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 493, ../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 502, ../sass/components/_misc.scss */
.menu a.active {
  __color: #000;
}

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

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

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

/* Nested comments are indented. */
/* line 572, ../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 582, ../sass/components/_misc.scss */
.form-item {
  margin: 1.5em 0;
  /* Pack groups of checkboxes and radio buttons closer together. */
  /* Form items in a table. */
  /* Highlight the form elements that caused a form submission error. */
  /* The descriptive help text (separate from the label). */
}
/* line 586, ../sass/components/_misc.scss */
.form-checkboxes .form-item, .form-radios .form-item {
  /* Drupal core uses "0.4em 0". */
  margin: 0;
}
/* 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?1487141481');
}

/**
 * @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;
  }
}
/*common styles*/
/* line 2, ../sass/components/_header.scss */
.showit {
  display: block !important;
}

/* line 3, ../sass/components/_header.scss */
#page {
  width: 100%;
  max-width: none;
}

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

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

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

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

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

/* line 20, ../sass/components/_header.scss */
ul {
  padding-left: 15px;
  margin: 0;
}
/* line 23, ../sass/components/_header.scss */
ul li {
  list-style-image: url("../images/icon-list-blue-dot.png");
}

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

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

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

/* line 49, ../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 64, ../sass/components/_header.scss */
#sidr-0 {
  background-color: #333333;
  -webkit-overflow-scrolling: touch;
}
/* line 67, ../sass/components/_header.scss */
#sidr-0 ul {
  margin: 0;
}
/* line 69, ../sass/components/_header.scss */
#sidr-0 .sidr-left-menu-close-button {
  display: block;
  background-color: #484848;
  height: 50px;
  cursor: pointer;
}
/* line 75, ../sass/components/_header.scss */
#sidr-0 .sidr-left-menu-close-button:before {
  content: 'Close';
  line-height: 50px;
  margin-left: 15px;
}
/* line 82, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-menu-menu-section-menu .sidr-class-block__title {
  display: none;
}
/* line 83, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-menu-menu-section-menu ul {
  border: none;
}
/* line 85, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-menu-menu-section-menu ul .sidr-class-first {
  __display: none;
}
/* line 86, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-menu-menu-section-menu ul li {
  border: none;
}
/* line 90, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-menu-menu-section-menu > ul > li {
  background-color: #015486;
  border-top: #4c88aa;
  border-bottom: #4c88aa;
}
/* line 94, ../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 100, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-menu-menu-section-menu > ul > li > a:after {
  content: ">";
  float: right;
}
/* line 105, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-menu-menu-section-menu > ul > li > ul > li {
  background-color: #00456e;
  border-top: #4c88aa;
}
/* line 108, ../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 109, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-menu-menu-section-menu > ul > li > ul > li ul {
  margin-left: 15px;
}
/* line 111, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-menu-menu-section-menu > ul > li > ul > li.sidr-class-first {
  border-top: none;
}
/* line 120, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-system-user-menu--2 .sidr-class-contextual-links-wrapper {
  display: none;
}
/* line 121, ../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 125, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-system-user-menu--2 ul.sidr-class-menu li {
  border-color: #aaaaaa;
}
/* line 130, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-menu-menu-top-menu--2 .sidr-class-contextual-links-wrapper {
  display: none;
}
/* line 131, ../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 135, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-menu-menu-top-menu--2 ul.sidr-class-menu li {
  border: none;
}
/* line 136, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-menu-menu-top-menu--2 ul.sidr-class-menu li:nth-child(1) {
  background-color: #903779;
}
/* line 137, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-menu-menu-top-menu--2 ul.sidr-class-menu li:nth-child(2) {
  background-color: #9bcf00;
}
/* line 138, ../sass/components/_header.scss */
#sidr-0 #sidr-id-block-menu-menu-top-menu--2 ul.sidr-class-menu li:nth-child(3) {
  background-color: #ff6600;
}

/* line 145, ../sass/components/_header.scss */
#header-bar {
  width: 100%;
  border-bottom: 1px solid #4e9ed9;
  height: 33px;
  background-color: #006ec7;
}
@media screen and (max-width: 768px) {
  /* line 145, ../sass/components/_header.scss */
  #header-bar {
    display: none;
  }
}
/* line 153, ../sass/components/_header.scss */
#header-bar .region-header-bar {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  color: #4e9ad8;
  font-size: 12px;
}
/* line 159, ../sass/components/_header.scss */
#header-bar .region-header-bar ul {
  text-decoration: none;
  list-style-type: none;
  margin: 0;
}
/* line 164, ../sass/components/_header.scss */
#header-bar .region-header-bar .block-system-user-menu {
  float: left;
  width: 40%;
}
/* line 167, ../sass/components/_header.scss */
#header-bar .region-header-bar .block-system-user-menu ul {
  padding-left: 10px;
}
/* line 169, ../sass/components/_header.scss */
#header-bar .region-header-bar .block-system-user-menu ul li {
  float: left;
  margin-right: 18px;
  padding: 5px 0;
  list-style-image: none;
}
/* line 177, ../sass/components/_header.scss */
#header-bar .region-header-bar .block-menu-menu-top-menu {
  float: left;
  width: 60%;
}
/* line 180, ../sass/components/_header.scss */
#header-bar .region-header-bar .block-menu-menu-top-menu ul li {
  float: right;
  border-right: 1px solid #4e9ed9;
  padding: 5px 12px;
  cursor: pointer;
}
/* line 186, ../sass/components/_header.scss */
#header-bar .region-header-bar .block-menu-menu-top-menu li:nth-child(4):hover, #header-bar .region-header-bar .block-menu-menu-top-menu li:nth-child(4):active {
  background-color: #00a4e4;
  color: #ffffff;
}
/* line 190, ../sass/components/_header.scss */
#header-bar .region-header-bar .block-menu-menu-top-menu li:nth-child(1):hover, #header-bar .region-header-bar .block-menu-menu-top-menu li:nth-child(1):active {
  background-color: #903779;
  color: #ffffff;
}
/* line 194, ../sass/components/_header.scss */
#header-bar .region-header-bar .block-menu-menu-top-menu li:nth-child(2):hover, #header-bar .region-header-bar .block-menu-menu-top-menu li:nth-child(2):active {
  background-color: #9CCF00;
  color: #ffffff;
}
/* line 198, ../sass/components/_header.scss */
#header-bar .region-header-bar .block-menu-menu-top-menu li:nth-child(3):hover, #header-bar .region-header-bar .block-menu-menu-top-menu li:nth-child(3):active {
  background-color: #f60;
  color: #ffffff;
}
/* line 203, ../sass/components/_header.scss */
#header-bar .region-header-bar .block-menu-menu-top-menu li:last-child {
  border-left: 1px solid #4e9ed9;
}

/* line 211, ../sass/components/_header.scss */
.header-bg {
  width: 100%;
  background-color: #006ec7;
  background-repeat: no-repeat;
  background-position: center 140%;
}
/* line 216, ../sass/components/_header.scss */
.header-bg .header-wrapper {
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  /* line 221, ../sass/components/_header.scss */
  .header-bg .header-wrapper .header {
    padding: 0 !important;
  }
}
/* line 223, ../sass/components/_header.scss */
.header-bg .header-wrapper .header__logo {
  width: 100%;
  margin: 0 0 10px 0;
}
@media screen and (max-width: 1024px) {
  /* line 223, ../sass/components/_header.scss */
  .header-bg .header-wrapper .header__logo {
    padding: 10px;
  }
}
/* line 229, ../sass/components/_header.scss */
.header-bg .header-wrapper .header__logo img {
  float: left;
}
@media screen and (max-width: 1024px) {
  /* line 229, ../sass/components/_header.scss */
  .header-bg .header-wrapper .header__logo img {
    width: 80px;
  }
}
/* line 235, ../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 #5ea5dd;
}
@media screen and (max-width: 767px) {
  /* line 235, ../sass/components/_header.scss */
  .header-bg .header-wrapper .header__logo .header__logo-seperate {
    display: none;
  }
}
/* line 246, ../sass/components/_header.scss */
.header-bg .header-wrapper .header__logo .header__slogan {
  float: right;
}
@media screen and (max-width: 1024px) {
  /* line 248, ../sass/components/_header.scss */
  .header-bg .header-wrapper .header__logo .header__slogan img {
    width: 140px;
  }
}

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

@media screen and (min-width: 769px) {
  /* line 261, ../sass/components/_header.scss */
  .is-sticky #navigation {
    clear: both;
    z-index: 10;
    background-color: #006ec7;
    margin: 0;
    width: 100% !important;
    left: 0;
  }
  /* line 268, ../sass/components/_header.scss */
  .is-sticky #navigation .region-navigation {
    display: none;
  }
  /* line 270, ../sass/components/_header.scss */
  .is-sticky .sticky-only {
    display: block;
  }
  /* line 272, ../sass/components/_header.scss */
  .is-sticky .logo {
    border-right: 1px solid #5ea5dd;
    background: url("../images/icon-sticky-logo.jpg") left center no-repeat;
    width: 125px;
    height: 30px;
    margin: 10px 5px;
  }
  /* line 279, ../sass/components/_header.scss */
  .is-sticky #mobile-region {
    display: block;
    float: left;
    margin-top: 10px;
    margin-left: 10px;
  }
  /* line 284, ../sass/components/_header.scss */
  .is-sticky #mobile-region .menu-mobile-menu {
    background: url("../images/icon-sticky-menu.png") center center no-repeat;
    width: 22px;
    height: 30px;
  }
  /* line 291, ../sass/components/_header.scss */
  .is-sticky .search {
    /*
    border-right: 1px solid #5ea5dd;
    background: url('../images/icon-sticky-search.png') left center no-repeat;
    width: 35px;
    */
    height: 30px;
    margin: 10px 0 10px 10px;
  }
  /* line 299, ../sass/components/_header.scss */
  .is-sticky .search .block-search {
    float: initial !important;
    margin: 0 !important;
  }
  /* line 304, ../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 312, ../sass/components/_header.scss */
  .is-sticky .rating {
    float: right;
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
  }
  /* line 317, ../sass/components/_header.scss */
  .is-sticky .rating .fivestar-widget .star {
    width: 28px;
    height: 24px;
    background: none;
  }
  /* line 322, ../sass/components/_header.scss */
  .is-sticky .rating .description {
    margin-top: 5px;
  }
  /* line 324, ../sass/components/_header.scss */
  .is-sticky .sharing {
    float: right;
    margin-top: 10px;
    margin-left: 10px;
  }
  /* line 328, ../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 329, ../sass/components/_header.scss */
  .is-sticky .sharing .sharethis-buttons:nth-child(2) {
    display: none;
  }
  /* line 330, ../sass/components/_header.scss */
  .is-sticky .sharing .sharethis-wrapper {
    margin-top: 0 !important;
  }

  /* line 334, ../sass/components/_header.scss */
  .node-type-article .is-sticky .title {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  /* line 337, ../sass/components/_header.scss */
  .is-sticky {
    display: none;
  }
}
/* line 340, ../sass/components/_header.scss */
#navigation-sticky-wrapper {
  clear: both;
}

/* line 341, ../sass/components/_header.scss */
#navigation {
  position: static;
  color: #ffffff;
  font-size: 14px;
  height: 50px;
  padding: 0;
  /*top bar search form*/
}
/* line 347, ../sass/components/_header.scss */
#navigation .menu-mobile-home, #navigation .menu-mobile-search {
  display: none;
}
@media screen and (max-width: 1023px) {
  /* line 341, ../sass/components/_header.scss */
  #navigation {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 768px) {
  /* line 341, ../sass/components/_header.scss */
  #navigation {
    margin-bottom: 0;
    border-top: 1px solid #65abe1;
  }
  /* line 354, ../sass/components/_header.scss */
  #navigation > div {
    float: left;
    width: 33.3%;
    height: 100%;
    border-right: 1px solid #65abe1;
    border-top: 1px solid #65abe1;
    border-bottom: 1px solid #65abe1;
    text-align: center;
    cursor: pointer;
  }
  /* line 364, ../sass/components/_header.scss */
  #navigation > div:last-child {
    border-right: none;
  }
  /* line 365, ../sass/components/_header.scss */
  #navigation .region-navigation {
    display: none;
  }
  /* line 366, ../sass/components/_header.scss */
  #navigation .menu-mobile-menu {
    background: url("../images/icon-mobile-menu.png") center center no-repeat;
    display: block;
    height: 49px;
  }
  /* line 371, ../sass/components/_header.scss */
  #navigation .menu-mobile-home {
    background: url("../images/icon-mobile-home.png") center center no-repeat;
    display: block;
  }
  /* line 374, ../sass/components/_header.scss */
  #navigation .menu-mobile-home a {
    display: block;
  }
  /* line 376, ../sass/components/_header.scss */
  #navigation .menu-mobile-search {
    display: block;
  }
  /* line 378, ../sass/components/_header.scss */
  #navigation .menu-mobile-search #block-search-form {
    float: initial;
    margin-top: -15px;
    background-color: #006ec7;
    width: 100%;
  }
  /* line 383, ../sass/components/_header.scss */
  #navigation .menu-mobile-search #block-search-form .container-inline {
    background-color: transparent;
  }
  /* line 385, ../sass/components/_header.scss */
  #navigation .menu-mobile-search #block-search-form .container-inline .form-text {
    position: absolute;
    top: 114px;
    z-index: 7;
    left: 0;
    width: 100%;
  }
  /* line 392, ../sass/components/_header.scss */
  #navigation .menu-mobile-search #block-search-form .container-inline .search_icon {
    margin: 0 auto;
  }
  /* line 393, ../sass/components/_header.scss */
  #navigation .menu-mobile-search #block-search-form .container-inline .form-submit {
    background: url("../images/icon-search2.png") -3px 0 no-repeat;
    height: 30px;
  }
}
/* line 403, ../sass/components/_header.scss */
#navigation .block-superfish-1 .sf-menu {
  line-height: 50px;
}
/* line 405, ../sass/components/_header.scss */
#navigation .block-superfish-1 .sf-menu > .sf-depth-1 {
  padding: 14px 13px;
  max-width: 160px;
  line-height: 17px;
}
@media screen and (max-width: 1023px) {
  /* line 405, ../sass/components/_header.scss */
  #navigation .block-superfish-1 .sf-menu > .sf-depth-1 {
    padding: 0 6px;
    max-width: 140px;
  }
}
/* line 414, ../sass/components/_header.scss */
#navigation .block-superfish-1 .sf-menu > .first {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
/* line 419, ../sass/components/_header.scss */
#navigation .block-superfish-1 .sf-menu > .first a {
  background: url("../images/icon-nav-home.png") no-repeat;
  width: 21px;
  height: 21px;
  text-indent: -9999px;
}
/* line 426, ../sass/components/_header.scss */
#navigation .block-superfish-1 .sf-menu > li:hover {
  background-color: #015486;
}
/* line 429, ../sass/components/_header.scss */
#navigation .block-superfish-1 .sf-menu > li > ul {
  display: none;
  background-image: none;
  background-color: #015486;
  border-radius: 0;
  margin-top: 10px;
}
/* line 435, ../sass/components/_header.scss */
#navigation .block-superfish-1 .sf-menu > li > ul li {
  line-height: 16px;
}
/* line 437, ../sass/components/_header.scss */
#navigation .block-superfish-1 .sf-menu > li > ul li a {
  padding: 7px 15px;
  font-size: 13px;
}
/* line 447, ../sass/components/_header.scss */
#navigation .block-search {
  float: right;
  margin: 8px 0;
}
/* line 450, ../sass/components/_header.scss */
#navigation .block-search .container-inline {
  background-color: #ffffff;
}
/* line 452, ../sass/components/_header.scss */
#navigation .block-search .container-inline .form-text {
  border: 0;
  font-size: 12px;
  padding: 8px;
  display: none;
}
/* line 458, ../sass/components/_header.scss */
#navigation .block-search .container-inline .form-submit {
  border: none;
  background: url("../images/icon-search.jpg") no-repeat;
  background-color: transparent;
  text-indent: -9999px;
  width: 25px;
  display: none;
}
/* line 466, ../sass/components/_header.scss */
#navigation .block-search .container-inline .search_icon {
  background: url("../images/icon-search2.png") no-repeat;
  background-color: #006ec7;
  display: block;
  width: 30px;
  height: 31px;
}
/* line 475, ../sass/components/_header.scss */
#navigation .expanded .form-text {
  display: inline-block !important;
}
/* line 476, ../sass/components/_header.scss */
#navigation .expanded .form-submit {
  display: inline-block !important;
}
/* line 477, ../sass/components/_header.scss */
#navigation .expanded .search_icon {
  display: none !important;
}

/*slider*/
@media screen and (max-width: 768px) {
  /* line 485, ../sass/components/_header.scss */
  .header__region div {
    box-sizing: content-box;
  }
}
/* line 487, ../sass/components/_header.scss */
.header__region > #block-views-custom-blocks-block-6 {
  margin-bottom: 0;
}
/* line 488, ../sass/components/_header.scss */
.header__region .views_slideshow_cycle_main {
  color: #ffffff;
  float: left;
  width: 75%;
}
@media screen and (max-width: 1023px) {
  /* line 488, ../sass/components/_header.scss */
  .header__region .views_slideshow_cycle_main {
    width: 100%;
  }
  /* line 495, ../sass/components/_header.scss */
  .header__region .views_slideshow_cycle_main .views-slideshow-cycle-main-frame-row img {
    width: 100% !important;
    height: auto;
  }
}
/* line 501, ../sass/components/_header.scss */
.header__region .views_slideshow_cycle_main .views-field-nothing {
  position: absolute;
  top: 0;
  width: 270px;
  height: 100%;
  background: url("../images/slider_bg.png");
  font-size: 12px;
  line-height: 18px;
  padding: 20px 15px;
}
/* line 510, ../sass/components/_header.scss */
.header__region .views_slideshow_cycle_main .views-field-nothing a {
  display: block;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  /* line 501, ../sass/components/_header.scss */
  .header__region .views_slideshow_cycle_main .views-field-nothing {
    box-sizing: border-box;
    top: initial;
    width: 100%;
    height: 150px;
    font-size: 11px;
    padding: 10px;
    overflow: hidden;
  }
  /* line 524, ../sass/components/_header.scss */
  .header__region .views_slideshow_cycle_main .views-field-nothing a {
    font-size: 15px;
    line-height: 18px;
  }
}
/* line 530, ../sass/components/_header.scss */
.header__region .views_slideshow_cycle_main .views-field-field-image-1 a {
  display: block;
}
/* line 535, ../sass/components/_header.scss */
.header__region .views-slideshow-cycle-main-frame {
  height: 340px !important;
}
/* line 537, ../sass/components/_header.scss */
.header__region .views-slideshow-cycle-main-frame .views-slideshow-cycle-main-frame-row-item {
  height: 340px !important;
}
@media screen and (width: 768px) {
  /* line 542, ../sass/components/_header.scss */
  .header__region .views-slideshow-cycle-main-frame {
    height: 500px !important;
    margin-left: 8px;
  }
}
/* line 548, ../sass/components/_header.scss */
.header__region .views-slideshow-controls-bottom {
  float: left;
  width: 25%;
  height: 100%;
  color: #ffffff;
}
@media screen and (max-width: 1023px) {
  /* line 548, ../sass/components/_header.scss */
  .header__region .views-slideshow-controls-bottom {
    display: none;
  }
}
/* line 556, ../sass/components/_header.scss */
.header__region .views-slideshow-controls-bottom .views-slideshow-pager-fields {
  background-color: #0172ce;
  font-size: 14px;
}
/* line 559, ../sass/components/_header.scss */
.header__region .views-slideshow-controls-bottom .views-slideshow-pager-fields .views-slideshow-pager-field-item {
  height: 67px;
  line-height: 67px;
  cursor: pointer;
}
/* line 563, ../sass/components/_header.scss */
.header__region .views-slideshow-controls-bottom .views-slideshow-pager-fields .views-slideshow-pager-field-item .views-field-field-tab {
  width: 90%;
  margin: 0 auto;
  padding: 0 10px;
  border-bottom: 1px solid #2d8fde;
}
/* line 571, ../sass/components/_header.scss */
.header__region .views-slideshow-controls-bottom .views-slideshow-pager-fields .views-slideshow-pager-field-item:last-child .views-field-taxonomy-vocabulary-88 {
  border-bottom: none;
}
/* line 575, ../sass/components/_header.scss */
.header__region .views-slideshow-controls-bottom .views-slideshow-pager-fields .active {
  background-color: #015486;
  position: relative;
}
/* line 578, ../sass/components/_header.scss */
.header__region .views-slideshow-controls-bottom .views-slideshow-pager-fields .active .views-field-taxonomy-vocabulary-88 {
  border: none;
}
/* line 580, ../sass/components/_header.scss */
.header__region .views-slideshow-controls-bottom .views-slideshow-pager-fields .active:before {
  content: "";
  position: absolute;
  z-index: 9;
  right: 100%;
  width: 0;
  height: 0;
  border-top: 35px solid transparent;
  border-right: 20px solid #015486;
  border-bottom: 35px solid transparent;
}

/*end slider*/
/*course detail*/
/* line 600, ../sass/components/_header.scss */
.node-type-teacher-training .header {
  position: relative;
  /*
  .teacher-training-field-site-structure-container {
  	font-size: 14px;
  	font-family: 'british_council-bold';
  	margin-top: 110px;
  	@media screen and (max-width: $mobile) { 
  		margin-top: 150px;
  	}
  }
  */
}
/* line 614, ../sass/components/_header.scss */
.node-type-teacher-training .header .page__title {
  font-size: 22px;
  font-family: 'british_council';
  margin-top: 85px;
  background: url("../images/trans_bg.png");
  padding: 4px 8px;
  float: left;
  height: 34px;
}
@media screen and (max-width: 768px) {
  /* line 614, ../sass/components/_header.scss */
  .node-type-teacher-training .header .page__title {
    margin-top: 150px;
    font-size: 19px;
  }
}
/* line 629, ../sass/components/_header.scss */
.node-type-teacher-training .header .article-sharethis-container {
  margin-bottom: 10px;
  margin-top: 20px;
  clear: both;
  float: left;
}
@media screen and (max-width: 768px) {
  /* line 636, ../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 641, ../sass/components/_header.scss */
.node-type-teacher-training .header .article-sharethis-container .sharethis-wrapper {
  float: none;
}
/* line 644, ../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: 'british_council-bold';
  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 662, ../sass/components/_header.scss */
.node-type-teacher-training .header .page-field_apply_url-container a {
  display: block;
}
@media screen and (max-width: 768px) {
  /* line 644, ../sass/components/_header.scss */
  .node-type-teacher-training .header .page-field_apply_url-container {
    position: static;
    width: 100%;
    border-top: 1px solid #000000;
  }
}
/* line 671, ../sass/components/_header.scss */
.node-type-teacher-training .header .page-field_apply_url-container:before {
  content: url("../images/icon-arrow-white.png");
  position: absolute;
  margin-left: 115px;
  margin-top: 2px;
}
/* line 678, ../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 693, ../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 678, ../sass/components/_header.scss */
  .node-type-teacher-training .header .teacher-training-field-apply-url-container {
    width: 100px;
    margin-top: -35px;
    margin-right: 10px;
  }
  /* line 701, ../sass/components/_header.scss */
  .node-type-teacher-training .header .teacher-training-field-apply-url-container a {
    padding: 2px 0;
  }
}
/* line 704, ../sass/components/_header.scss */
.node-type-teacher-training .header .teacher-training-field-apply-url-container:after {
  content: url("../images/icon-apply-arrow.png");
  position: absolute;
  right: 10px;
  top: 10px;
}
@media screen and (max-width: 768px) {
  /* line 704, ../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*/
/* line 10, ../sass/components/_main.scss */
.breadcrumb {
  clear: both;
  color: #ffffff;
  font-size: 11px;
  opacity: 0.7;
}

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

/* line 26, ../sass/components/_main.scss */
article a:link {
  color: blue;
  text-decoration: underline;
}

/* line 31, ../sass/components/_main.scss */
#content .welcome_intro {
  border-top: 4px solid #006ec7;
  background-color: #ebeff0;
  padding: 10px 14px 20px 14px;
  font-size: 14px;
  line-height: normal;
}
/* line 38, ../sass/components/_main.scss */
#content .welcome_intro > h2.block__title {
  font-weight: normal;
  font-family: 'british_council';
  font-size: 24px;
  line-height: normal;
  color: #5D5D5D;
  margin-bottom: 0.6em;
}
/* line 47, ../sass/components/_main.scss */
#content .welcome_intro p > a {
  color: #006ec7;
}
/* line 50, ../sass/components/_main.scss */
#content .welcome_intro p > a:hover {
  text-decoration: underline;
}

/* line 57, ../sass/components/_main.scss */
#content {
  width: 66% !important;
  margin-right: 0 !important;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  /* line 57, ../sass/components/_main.scss */
  #content {
    float: initial !important;
    width: auto !important;
  }
}
/* line 64, ../sass/components/_main.scss */
#content > .block-views {
  float: left;
}
/* line 65, ../sass/components/_main.scss */
#content .news_block {
  width: 50%;
  height: 370px;
  overflow: hidden;
  padding-right: 20px;
  margin-bottom: 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  /* line 65, ../sass/components/_main.scss */
  #content .news_block {
    height: auto;
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  /* line 65, ../sass/components/_main.scss */
  #content .news_block {
    width: 100%;
    padding-right: 0;
  }
}
/* line 80, ../sass/components/_main.scss */
#content .news_block .views-field-nothing {
  font-size: 14px;
  font-weight: bold;
  color: #006ec7;
  margin-bottom: 5px;
}
/* line 86, ../sass/components/_main.scss */
#content .news_block .views-field-field-image img {
  width: 100%;
  height: auto;
}
/* line 91, ../sass/components/_main.scss */
#content .news_block .views-field-nothing-1 .views-field-title, #content .news_block .views-field-nothing-1 .view-moderators .views-field-field-subtitle, .view-moderators #content .news_block .views-field-nothing-1 .views-field-field-subtitle {
  font-size: 18px;
  line-height: 21px;
  color: #006ec7;
  margin-top: 8px;
  margin-bottom: 8px;
}
/* line 98, ../sass/components/_main.scss */
#content .news_block .views-field-nothing-1 .views-field-body {
  font-size: 13px;
  line-height: 16px;
  padding-bottom: 12px;
  margin-bottom: 5px;
  border-bottom: 1px solid #e6e6e6;
  height: 65px;
}
/* line 107, ../sass/components/_main.scss */
#content .news_block .views-field-created, #content .news_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 .views-slideshow-cycle-main-frame-row-item #content .news_block .views-field-comment-count {
  font-size: 11px;
  color: #c6c6c6;
}
/* line 111, ../sass/components/_main.scss */
#content .news_block .views-field-comment-count {
  font-size: 11px;
  color: #c6c6c6;
  float: right;
}
/* line 116, ../sass/components/_main.scss */
#content .news_block .views-field-comment-count:before {
  content: url("../images/icon-talk.png");
}
/* line 121, ../sass/components/_main.scss */
#content #block-views-comments-block {
  width: 100%;
  border-top: 5px solid #006ec7;
  background-color: #f4f4f4;
  padding: 6px 18px;
}
@media screen and (max-width: 767px) {
  /* line 121, ../sass/components/_main.scss */
  #content #block-views-comments-block {
    padding: 6px;
    padding-bottom: 40px;
    position: relative;
  }
}
/* line 131, ../sass/components/_main.scss */
#content #block-views-comments-block .block-title {
  color: #006ec7;
  font-size: 20px;
  font-weight: normal;
}
/* line 136, ../sass/components/_main.scss */
#content #block-views-comments-block .view-comments {
  position: relative;
}
/* line 137, ../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 137, ../sass/components/_main.scss */
  #content #block-views-comments-block .views-slideshow-controls-top {
    float: none;
    position: absolute;
    margin-top: 235px;
    width: 100%;
  }
  /* line 146, ../sass/components/_main.scss */
  #content #block-views-comments-block .views-slideshow-controls-top .views-slideshow-slide-counter {
    display: none;
  }
}
/* line 149, ../sass/components/_main.scss */
#content #block-views-comments-block .views-slideshow-controls-top > div {
  float: left;
}
/* line 150, ../sass/components/_main.scss */
#content #block-views-comments-block .views-slideshow-controls-top .views-slideshow-slide-counter {
  color: #c6c6c6;
}
/* line 153, ../sass/components/_main.scss */
#content #block-views-comments-block .views_slideshow_cycle_teaser_section_comments-block {
  width: auto !important;
}
/* line 158, ../sass/components/_main.scss */
#content #block-views-comments-block .views-slideshow-controls-text > span {
  padding: 0 8px;
  border-right: 1px solid #000000;
}
/* line 162, ../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 157, ../sass/components/_main.scss */
  #content #block-views-comments-block .views-slideshow-controls-text {
    width: 100%;
  }
  /* line 165, ../sass/components/_main.scss */
  #content #block-views-comments-block .views-slideshow-controls-text > span {
    padding: 0;
    text-align: center;
    background-color: #f4f4f4;
    width: 48%;
    height: 35px;
    line-height: 35px;
    border-right: 1px solid #dbdbdb;
    display: block;
    float: left;
  }
  /* line 176, ../sass/components/_main.scss */
  #content #block-views-comments-block .views-slideshow-controls-text #views_slideshow_controls_text_pause_comments-block {
    display: none;
  }
}
/* line 180, ../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 184, ../sass/components/_main.scss */
  #content #block-views-comments-block .views-slideshow-cycle-main-frame {
    width: 100% !important;
  }
}
/* line 187, ../sass/components/_main.scss */
#content #block-views-comments-block .views-slideshow-cycle-main-frame-row-item {
  margin-left: 60px;
  padding: 6px 15px;
  background-color: #ffffff;
  font-size: 15px;
}
/* line 192, ../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 197, ../sass/components/_main.scss */
#content #block-views-comments-block .views-slideshow-cycle-main-frame-row-item .views-field-picture img {
  width: 100%;
}
/* line 199, ../sass/components/_main.scss */
#content #block-views-comments-block .views-slideshow-cycle-main-frame-row-item .views-field-subject {
  color: #006ec7;
  margin-bottom: 10px;
}
/* line 203, ../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;
  margin-top: -18px;
}
/* line 208, ../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 215, ../sass/components/_main.scss */
#content #block-views-comments-block .views-slideshow-cycle-main-frame-row-item .views-field-title, #content #block-views-comments-block .views-slideshow-cycle-main-frame-row-item .view-moderators .views-field-field-subtitle, .view-moderators #content #block-views-comments-block .views-slideshow-cycle-main-frame-row-item .views-field-field-subtitle {
  font-size: 12px;
  color: #006ec7;
  border-top: 1px solid #e6e6e6;
  padding-top: 5px;
  margin-bottom: 0;
  text-align: right;
}
@media screen and (max-width: 767px) {
  /* line 225, ../sass/components/_main.scss */
  #content #block-views-comments-block .views-slideshow-cycle-main-frame-row-item {
    margin-left: 0;
    margin-top: 30px;
  }
  /* line 229, ../sass/components/_main.scss */
  #content #block-views-comments-block .views-field-picture {
    margin: -20px 10px 0 0 !important;
  }
  /* line 232, ../sass/components/_main.scss */
  #content #block-views-comments-block .views-field-subject {
    float: left;
    margin-top: -20px;
    margin-bottom: 0;
    line-height: 16px;
    height: 32px;
    overflow: hidden;
  }
  /* line 240, ../sass/components/_main.scss */
  #content #block-views-comments-block .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 .views-slideshow-cycle-main-frame-row-item #content #block-views-comments-block .views-field-comment-count {
    float: left !important;
    color: #acacac;
    margin-top: 0 !important;
  }
  /* line 245, ../sass/components/_main.scss */
  #content #block-views-comments-block .views-field-comment-body {
    clear: both;
    height: 95px;
    overflow: hidden;
    font-size: 12px;
  }
  /* line 251, ../sass/components/_main.scss */
  #content #block-views-comments-block .views-field-title, #content #block-views-comments-block .view-moderators .views-field-field-subtitle, .view-moderators #content #block-views-comments-block .views-field-field-subtitle {
    font-size: 11px;
    line-height: 14px;
    height: 52px;
    overflow: hidden;
  }
}

/* line 261, ../sass/components/_main.scss */
.video-js {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  /* line 261, ../sass/components/_main.scss */
  .video-js {
    width: 100% !important;
    height: 250px !important;
  }
}

/*catagory landing*/
/* line 274, ../sass/components/_main.scss */
.catagory_landing .view-section-landing > .view-content > .views-row {
  border-bottom: 1px solid #006ec7;
  padding: 10px 0;
  overflow: auto;
}
/* line 279, ../sass/components/_main.scss */
.catagory_landing .view-section-landing > .view-content > .views-row > div {
  float: left;
  width: 50%;
}
@media all and (max-width: 768px) {
  /* line 279, ../sass/components/_main.scss */
  .catagory_landing .view-section-landing > .view-content > .views-row > div {
    float: none;
    width: 100%;
  }
  /* line 285, ../sass/components/_main.scss */
  .catagory_landing .view-section-landing > .view-content > .views-row > div img {
    width: 100%;
  }
}
/* line 289, ../sass/components/_main.scss */
.catagory_landing .view-section-landing > .view-content .views-field-nothing {
  padding-right: 15px;
}
@media all and (max-width: 768px) {
  /* line 289, ../sass/components/_main.scss */
  .catagory_landing .view-section-landing > .view-content .views-field-nothing {
    padding-right: 0;
  }
}
/* line 294, ../sass/components/_main.scss */
.catagory_landing .view-section-landing > .view-content .views-field-nothing .views-field-name {
  color: #006ec7;
  font-family: 'british_council-bold';
  margin-bottom: 8px;
  font-size: 18px;
}
/* line 300, ../sass/components/_main.scss */
.catagory_landing .view-section-landing > .view-content .views-field-nothing .views-field-description {
  font-size: 12px;
  line-height: 15px;
}
/* line 305, ../sass/components/_main.scss */
.catagory_landing .view-section-landing > .view-content .views-field-view {
  padding: 12px 15px;
  background-color: #ebeef0;
}
/* line 308, ../sass/components/_main.scss */
.catagory_landing .view-section-landing > .view-content .views-field-view .view-content {
  background-color: #ffffff;
  padding: 8px;
  overflow: auto;
}
/* line 312, ../sass/components/_main.scss */
.catagory_landing .view-section-landing > .view-content .views-field-view .view-content > div {
  position: relative;
  border-top: 1px solid #f1f1f1;
  padding-bottom: 10px;
  padding-top: 10px;
}
/* line 318, ../sass/components/_main.scss */
.catagory_landing .view-section-landing > .view-content .views-field-view .view-content > div:first-child {
  border-top: 0;
  padding-top: 0;
}
/* line 323, ../sass/components/_main.scss */
.catagory_landing .view-section-landing > .view-content .views-field-view .views-field-field-site-structure {
  background-color: #006ec7;
  color: #ffffff;
  font-size: 13px;
  line-height: 16px;
  padding: 4px 6px;
  float: left;
}
/* line 331, ../sass/components/_main.scss */
.catagory_landing .view-section-landing > .view-content .views-field-view .views-field-comment-count {
  float: left;
  position: absolute;
  left: 130px;
  width: 40px;
  background: url("../images/icon-bubble.jpg") left center no-repeat;
  padding-left: 15px;
  color: #adadad;
  font-size: 11px;
}
/* line 341, ../sass/components/_main.scss */
.catagory_landing .view-section-landing > .view-content .views-field-view .views-field-created, .catagory_landing .view-section-landing > .view-content .views-field-view .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 .catagory_landing .view-section-landing > .view-content .views-field-view .views-field-comment-count {
  float: right;
  color: #adadad;
  font-size: 11px;
}
/* line 346, ../sass/components/_main.scss */
.catagory_landing .view-section-landing > .view-content .views-field-view .views-field-field-image {
  position: absolute;
  left: 0;
  top: 48px;
}
@media all and (max-width: 768px) {
  /* line 346, ../sass/components/_main.scss */
  .catagory_landing .view-section-landing > .view-content .views-field-view .views-field-field-image {
    position: static;
  }
}
/* line 354, ../sass/components/_main.scss */
.catagory_landing .view-section-landing > .view-content .views-field-view .views-field-title, .catagory_landing .view-section-landing > .view-content .views-field-view .view-moderators .views-field-field-subtitle, .view-moderators .catagory_landing .view-section-landing > .view-content .views-field-view .views-field-field-subtitle {
  padding-left: 130px;
  padding-top: 30px;
  font-size: 12px;
  font-weight: bold;
}
@media all and (max-width: 768px) {
  /* line 354, ../sass/components/_main.scss */
  .catagory_landing .view-section-landing > .view-content .views-field-view .views-field-title, .catagory_landing .view-section-landing > .view-content .views-field-view .view-moderators .views-field-field-subtitle, .view-moderators .catagory_landing .view-section-landing > .view-content .views-field-view .views-field-field-subtitle {
    padding: 0;
  }
}
/* line 363, ../sass/components/_main.scss */
.catagory_landing .view-section-landing > .view-content .views-field-view .views-field-field-text-teaser {
  padding-left: 130px;
  font-size: 11px;
  line-height: 14px;
}
@media all and (max-width: 768px) {
  /* line 363, ../sass/components/_main.scss */
  .catagory_landing .view-section-landing > .view-content .views-field-view .views-field-field-text-teaser {
    padding-left: 0;
  }
}

/*
.catagory_news_block {
	width: 100%;
	height: auto;
	.view-section-landing > .view-content > .views-row {
		width: 50%;
		height: 410px;
		vertical-align: top;
		padding-right: 20px;
		float: left;
	}
	.views-field-name {
		font-size: 14px;
		font-weight: bold;
		color: #006ec7;
		margin-bottom: 5px;
	}
	.views-field-title {
		font-size: 19px;
	  	line-height: 21px;
	  	color: #006ec7;
	  	margin-top: 8px;
	  	margin-bottom: 8px;
	}
	.views-field-body, .views-field-description {
		font-size: 13px;
		line-height: 16px;
		padding-bottom: 12px;
		margin-bottom: 5px;
		border-bottom: 1px solid #e6e6e6;
		height: 85px;
		overflow: hidden;
	}
	.views-field-created {
		font-size: 11px;
		color: #c6c6c6;
	}
	.views-field-comment-count {
		font-size: 11px;
		color: #c6c6c6;
		float: right;
	}
	.views-field-comment-count:before {
		content: url('../images/icon-talk.png');
	}
	@media screen and (max-width: $mobile-1) {
		.view-section-landing > .view-content > .views-row {
			width: 100%;
			height: auto;
			padding: 0;
			float: initial;
		}
		.views-field-field-image img {
			width: 100%;
			height: auto;
		}
	}
}
*/
/*end catagory landing*/
/*teacher development -> training course -> page*/
/*
.teacher_course_block {
	.view-header {
		padding: 0 20px 10px 20px;
		border-bottom: 3px solid $main-theme-color;
		p {
			font-size: 13px;
			line-height: 18px;
		}
	}
	.view-content {
		table {
			width: 100%;
			margin: 18px 10px;
			td {
				width: 50%;
				padding: 10px;
			}
		}
		.views-field-name {
			background-color: $main-theme-color;
		  color: #ffffff;
		  font-size: 12px;
		  padding: 0 8px;
		  float: left;
		  position: absolute;
		  margin-top: 15px;
		  font-family: 'british_council-bold';
		}
		.views-field-field-image img {
			max-width: 100%;
		}
	}
}
*/
/*end teacher development -> training course -> page*/
/*index blog*/
/* line 483, ../sass/components/_main.scss */
.blog-view {
  width: 100%;
  border-top: 5px solid #4ea5e8;
  background-color: #006ec7;
  padding: 15px 20px;
  color: #ffffff;
  height: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  /* line 483, ../sass/components/_main.scss */
  .blog-view {
    height: 350px;
    padding: 15px 0;
  }
}
/* line 496, ../sass/components/_main.scss */
.blog-view h2 {
  font-weight: normal;
  font-size: 18px;
  line-height: 20px;
}
/* line 501, ../sass/components/_main.scss */
.blog-view .views-slideshow-controls-top {
  float: right;
  font-size: 13px;
  margin-top: -35px;
}
/* line 505, ../sass/components/_main.scss */
.blog-view .views-slideshow-controls-top > div {
  float: left;
}
/* line 508, ../sass/components/_main.scss */
.blog-view .views-slideshow-controls-top .views-slideshow-slide-counter {
  margin-right: 15px;
  color: #5ea6e0;
}
/* line 513, ../sass/components/_main.scss */
.blog-view .views-slideshow-controls-top .views-slideshow-controls-text > span {
  padding: 0 8px;
  border-left: 1px solid #ffffff;
}
/* line 517, ../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 523, ../sass/components/_main.scss */
  .blog-view h2 {
    text-align: center;
  }
  /* line 524, ../sass/components/_main.scss */
  .blog-view .views-slideshow-controls-top {
    position: absolute;
    bottom: 0;
    border-top: 1px solid #ffffff;
    width: 100%;
  }
  /* line 529, ../sass/components/_main.scss */
  .blog-view .views-slideshow-controls-top .views-slideshow-slide-counter {
    display: none;
  }
  /* line 530, ../sass/components/_main.scss */
  .blog-view .views-slideshow-controls-top .views-slideshow-controls-text {
    float: none;
  }
  /* line 532, ../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 541, ../sass/components/_main.scss */
  .blog-view .views-slideshow-controls-top .views-slideshow-controls-text-pause {
    display: none !important;
  }
}
/* line 545, ../sass/components/_main.scss */
.blog-view .views_slideshow_cycle_main {
  margin-top: 15px;
}
/* line 547, ../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 547, ../sass/components/_main.scss */
  .blog-view .views_slideshow_cycle_main .views-slideshow-cycle-main-frame {
    padding: 0 5px;
  }
}
/* line 552, ../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 554, ../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 557, ../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 561, ../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 566, ../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 571, ../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, .blog-view .views_slideshow_cycle_main .views-slideshow-cycle-main-frame .views-slideshow-cycle-main-frame-row .views-slideshow-cycle-main-frame-row-item .view-moderators .views-field-field-subtitle, .view-moderators .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-field-subtitle {
  background-color: #ffffff;
  padding: 10px;
  color: #006ec7;
  font-size: 15px !important;
  line-height: 18px;
  margin: 0;
  height: 62px;
  overflow: hidden;
  clear: both;
}
/* line 582, ../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 586, ../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 590, ../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 595, ../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 603, ../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 607, ../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 623, ../sass/components/_main.scss */
.sidebars {
  float: left;
  width: 34%;
  /*popular block*/
  /*end popular block*/
  /*help and support block*/
  /*end help and support block*/
  /*dictionary block*/
  /*end dictionary block*/
  /*course block*/
  /*end course block*/
  /*course_two block*/
  /*end course_two block*/
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  /* line 623, ../sass/components/_main.scss */
  .sidebars {
    width: 100%;
  }
}
/* line 630, ../sass/components/_main.scss */
.sidebars .block {
  margin-bottom: 0;
}
/* line 632, ../sass/components/_main.scss */
.sidebars p {
  margin: 0;
}
/* line 634, ../sass/components/_main.scss */
.sidebars .training_course_contact_us,
.sidebars .training_course_faqs {
  display: block;
  color: #ffffff;
  background-color: #006ec7;
  padding: 6px 0;
  margin-bottom: 10px;
  font-family: "british_council-bold";
  text-align: center;
}
/* line 645, ../sass/components/_main.scss */
.sidebars #views-exposed-form-glossary-block-1 {
  display: none;
}
/* line 646, ../sass/components/_main.scss */
.sidebars h2 {
  color: #006ec7;
  font-weight: normal;
  font-size: 17px;
  line-height: 21px;
  padding: 10px 18px;
}
/* line 654, ../sass/components/_main.scss */
.sidebars .pager .pager-previous {
  float: left;
}
/* line 655, ../sass/components/_main.scss */
.sidebars .pager .pager-current {
  border-bottom: none;
  background-color: transparent;
  color: #000000;
  font-size: 11px;
}
/* line 661, ../sass/components/_main.scss */
.sidebars .pager .pager-next {
  margin-right: 0;
  position: static;
  float: right;
}
/* line 666, ../sass/components/_main.scss */
.sidebars .pager .ajax-progress {
  display: none;
}
/* line 668, ../sass/components/_main.scss */
.sidebars .region-sidebar-second {
  margin: 0 !important;
  width: 100%;
}
/* line 671, ../sass/components/_main.scss */
.sidebars .region-sidebar-second .block-image img {
  width: 100%;
}
/* line 674, ../sass/components/_main.scss */
.sidebars .cpd-overview {
  background-color: #f4f4f4;
}
/* line 676, ../sass/components/_main.scss */
.sidebars .cpd-overview h2 {
  border-bottom: 1px solid #dbdbdb;
}
/* line 679, ../sass/components/_main.scss */
.sidebars .cpd-overview ul {
  padding: 0;
}
/* line 681, ../sass/components/_main.scss */
.sidebars .cpd-overview ul li {
  list-style-image: none;
  list-style-type: none;
  padding: 5px 18px;
  line-height: 17px;
}
/* line 686, ../sass/components/_main.scss */
.sidebars .cpd-overview ul li:hover {
  background-color: #005587;
  color: #ffffff;
}
/* line 692, ../sass/components/_main.scss */
.sidebars .cpd-overview .menu-block-wrapper {
  padding: 10px 0;
  font-size: 14px;
}
/* line 698, ../sass/components/_main.scss */
.sidebars .letter-menu-block {
  background-color: #f4f4f4;
  border-top: 3px solid #0071cf;
  padding-bottom: 10px;
}
/* line 702, ../sass/components/_main.scss */
.sidebars .letter-menu-block .attachment .view-content {
  border-top: 1px solid #b0b0b0;
  border-bottom: 1px solid #b0b0b0;
  padding: 4px 10px;
  overflow: auto;
}
/* line 707, ../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 715, ../sass/components/_main.scss */
.sidebars .letter-menu-block .attachment .view-content .views-summary a:hover {
  background-color: #000000;
  color: #ffffff;
}
/* line 719, ../sass/components/_main.scss */
.sidebars .letter-menu-block .attachment .view-content .ajax-progress {
  display: none;
}
/* line 721, ../sass/components/_main.scss */
.sidebars .letter-menu-block table.views-table {
  margin: 0;
  width: 100%;
}
/* line 724, ../sass/components/_main.scss */
.sidebars .letter-menu-block table.views-table th {
  text-align: left;
  padding: 4px 15px;
}
/* line 728, ../sass/components/_main.scss */
.sidebars .letter-menu-block table.views-table td {
  padding: 2px 15px;
}
/* line 731, ../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 735, ../sass/components/_main.scss */
.sidebars .letter-menu-block table.views-table td:hover {
  background-color: #676767;
  color: #ffffff;
}
/* line 739, ../sass/components/_main.scss */
.sidebars .letter-menu-block table.views-table tbody {
  font-size: 13px;
}
/* line 746, ../sass/components/_main.scss */
.sidebars .popular-block {
  background-color: #f4f4f4;
  border-top: 3px solid #0071cf;
}
/* line 749, ../sass/components/_main.scss */
.sidebars .popular-block h2 {
  color: #0071cf;
  font-size: 18px;
  padding: 6px 12px;
}
/* line 755, ../sass/components/_main.scss */
.sidebars .popular-block .view-content .views-row {
  font-family: 'arial';
  font-size: 12px;
  padding: 8px 12px 8px 35px;
  border-top: 1px solid #b0b0b0;
  line-height: 18px;
  position: relative;
}
/* line 762, ../sass/components/_main.scss */
.sidebars .popular-block .view-content .views-row .views-field-comment-count {
  color: #acacac;
  margin-right: 10px;
  display: none;
}
/* line 767, ../sass/components/_main.scss */
.sidebars .popular-block .view-content .views-row .views-field-comment-count:before {
  content: url("../images/icon-talk.png");
}
/* line 772, ../sass/components/_main.scss */
.sidebars .popular-block .view-content .views-row:hover .views-field-comment-count {
  display: inline;
}
/* line 774, ../sass/components/_main.scss */
.sidebars .popular-block .view-content .views-row:before {
  font-family: 'Times New Roman';
  color: #b3b3b3;
  font-size: 24px;
  font-weight: bold;
  font-style: italic;
  position: absolute;
  left: 12px;
}
/* line 784, ../sass/components/_main.scss */
.sidebars .popular-block .view-content .views-row:nth-child(1):before {
  content: "1";
}
/* line 785, ../sass/components/_main.scss */
.sidebars .popular-block .view-content .views-row:nth-child(2):before {
  content: "2";
}
/* line 786, ../sass/components/_main.scss */
.sidebars .popular-block .view-content .views-row:nth-child(3):before {
  content: "3";
}
/* line 787, ../sass/components/_main.scss */
.sidebars .popular-block .view-content .views-row:nth-child(4):before {
  content: "4";
}
/* line 788, ../sass/components/_main.scss */
.sidebars .popular-block .view-content .views-row:nth-child(5):before {
  content: "5";
}
/* line 794, ../sass/components/_main.scss */
.sidebars .help_support, .sidebars .dictionaries_block {
  background-color: #ebeff0;
  border: 1px solid #333;
  color: #000;
  margin: 15px 0;
}
/* line 801, ../sass/components/_main.scss */
.sidebars .help_support h2, .sidebars .dictionaries_block h2 {
  font-size: 17px;
  line-height: 18px;
  background: url("../images/icon-i.png") 10px 12px no-repeat;
  color: #fff;
  background-color: #333;
  font-weight: bold;
  text-transform: uppercase;
  padding-left: 25px;
}
/* line 811, ../sass/components/_main.scss */
.sidebars .help_support ul, .sidebars .dictionaries_block ul {
  font-size: 14px;
  padding: 10px 30px;
  line-height: 26px;
}
/* line 815, ../sass/components/_main.scss */
.sidebars .help_support ul li, .sidebars .dictionaries_block ul li {
  list-style-image: url("../images/icon-list-tri.png");
}
/* line 823, ../sass/components/_main.scss */
.sidebars .dictionaries_block {
  background: url("../images/icon-dict.png") 10px 12px no-repeat;
  background-color: #ebeff0;
}
/* line 828, ../sass/components/_main.scss */
.sidebars .dictionaries_block form {
  padding: 20px 15px;
}
/* line 830, ../sass/components/_main.scss */
.sidebars .dictionaries_block form .form-item {
  margin: 0 5px 0 0;
  float: left;
}
/* line 833, ../sass/components/_main.scss */
.sidebars .dictionaries_block form .form-item input {
  width: 100%;
  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 838, ../sass/components/_main.scss */
.sidebars .dictionaries_block form input[type=submit] {
  color: #ffffff;
  font-size: 12px;
  padding: 6px 10px;
  border: none;
  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;
  background: #0071ce;
  background: -moz-linear-gradient(top, #0071ce 0%, #005689 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #0071ce), color-stop(100%, #005689));
  background: -webkit-linear-gradient(top, #0071ce 0%, #005689 100%);
  background: -o-linear-gradient(top, #0071ce 0%, #005689 100%);
  background: -ms-linear-gradient(top, #0071ce 0%, #005689 100%);
  background: linear-gradient(to bottom, #0071ce 0%, #005689 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071ce', endColorstr='#005689', GradientType=0 );
}
/* line 859, ../sass/components/_main.scss */
.sidebars .sidebar-course-block .view-content > .views-row {
  position: relative;
}
/* line 862, ../sass/components/_main.scss */
.sidebars .sidebar-course-block .views-field-title, .sidebars .sidebar-course-block .view-moderators .views-field-field-subtitle, .view-moderators .sidebars .sidebar-course-block .views-field-field-subtitle {
  position: absolute;
  top: 12px;
  font-size: 11px;
  color: #ffffff;
  background-color: #006ec7;
  padding: 0 10px;
}
/* line 870, ../sass/components/_main.scss */
.sidebars .sidebar-course-block .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: "british_council-bold";
}
/* line 882, ../sass/components/_main.scss */
.sidebars .sidebar-course-block .views-field-field-image img {
  width: 328px;
}
@media screen and (max-width: 768px) {
  /* line 886, ../sass/components/_main.scss */
  .sidebars .sidebar-course-block .views-field-field-image img {
    width: 100%;
    height: auto;
  }
}
/* line 894, ../sass/components/_main.scss */
.sidebars .view-id-testimonial {
  font-size: 12px;
  background-color: #f4f4f4;
  border-top: 3px solid #0071cf;
  margin-bottom: 10px;
}
/* line 900, ../sass/components/_main.scss */
.sidebars .view-id-testimonial .views-label {
  color: #006ec7;
  font-size: 18px;
  padding: 6px 12px;
  display: block;
}
/* line 907, ../sass/components/_main.scss */
.sidebars .view-id-testimonial ul {
  padding-left: 0;
}
/* line 909, ../sass/components/_main.scss */
.sidebars .view-id-testimonial ul li {
  list-style-image: none;
  list-style-type: none;
  font-family: 'arial';
  padding: 8px 12px;
  border-top: 1px solid #b0b0b0;
  line-height: 18px;
}
/* line 921, ../sass/components/_main.scss */
.sidebars .course_two {
  background-color: #ebeff0;
  border: 1px solid #333;
  color: #000;
  margin: 15px 0;
}
/* line 928, ../sass/components/_main.scss */
.sidebars .course_two h2 {
  font-size: 17px;
  line-height: 18px;
  background: url("../images/icon-hat.png") 10px 12px no-repeat;
  color: #fff;
  background-color: #333;
  font-weight: bold;
  text-transform: uppercase;
  padding-left: 37px;
}
/* line 939, ../sass/components/_main.scss */
.sidebars .course_two p {
  margin: 0;
}
/* line 941, ../sass/components/_main.scss */
.sidebars .course_two ul {
  font-size: 14px;
  padding: 10px 30px;
  line-height: 26px;
}
/* line 946, ../sass/components/_main.scss */
.sidebars .course_two ul li {
  list-style-image: none;
  list-style-type: none;
  line-height: 1.5em;
}
/* line 952, ../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 #006ec7;
  position: absolute;
  margin-left: -15px;
  margin-top: 6px;
}

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

/*end header promote block*/
/*aside promote block*/
/* line 986, ../sass/components/_main.scss */
.view-ad-block .view-content > div {
  color: #ffffff;
  position: relative;
  margin-bottom: 5px;
}
/* line 990, ../sass/components/_main.scss */
.view-ad-block .view-content > div a {
  color: #ffffff;
}
/* line 991, ../sass/components/_main.scss */
.view-ad-block .view-content > div .views-field-field-site-link {
  font-size: 14px;
  line-height: 18px;
  background-color: #006ec7;
  padding: 6px 9px;
  padding-left: 28px;
  float: none !important;
  border: 1px solid #0058a0;
}
/* line 1000, ../sass/components/_main.scss */
.view-ad-block .view-content > div .views-field-field-site-link:before {
  content: url("../images/icon-promo-arrow-white.png");
  position: absolute;
  margin-left: -18px;
  margin-top: 1px;
}
/* line 1007, ../sass/components/_main.scss */
.view-ad-block .view-content > div .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;
  line-height: normal;
  text-decoration: underline;
}
/* line 1018, ../sass/components/_main.scss */
.view-ad-block .view-content > div .views-field-body p {
  margin: 0;
  padding: 6px;
}
/* line 1023, ../sass/components/_main.scss */
.view-ad-block .view-content > div .views-field-field-image {
  float: none !important;
}

/* line 1028, ../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 1043, ../sass/components/_main.scss */
  .page-taxonomy-term- #content {
    width: 100% !important;
  }
}
/* line 1045, ../sass/components/_main.scss */
.page-taxonomy-term- #top-main {
  background-color: #006ec7;
  width: 100%;
  overflow: auto;
}
@media screen and (max-width: 768px) {
  /* line 1045, ../sass/components/_main.scss */
  .page-taxonomy-term- #top-main {
    background-color: transparent;
  }
}
/* line 1052, ../sass/components/_main.scss */
.page-taxonomy-term- #top-main .top-main__wrapper {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}
/* line 1057, ../sass/components/_main.scss */
.page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted {
  color: #ffffff;
}
/* line 1060, ../sass/components/_main.scss */
.page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted > div:first-child {
  width: 66%;
  padding: 0 10px;
  float: left;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  /* line 1060, ../sass/components/_main.scss */
  .page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted > div:first-child {
    width: 100%;
    float: none;
  }
}
/* line 1071, ../sass/components/_main.scss */
.page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted > div:nth-child(2) {
  width: 34%;
  padding: 0 10px;
  float: left;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  /* line 1071, ../sass/components/_main.scss */
  .page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted > div:nth-child(2) {
    width: 100%;
    float: none;
    margin-top: 10px;
  }
}
/* line 1083, ../sass/components/_main.scss */
.page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted .view-content {
  height: 221px;
}
@media screen and (max-width: 768px) {
  /* line 1083, ../sass/components/_main.scss */
  .page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted .view-content {
    height: auto;
  }
}
/* line 1089, ../sass/components/_main.scss */
.page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted .views-row {
  background-color: #015486;
  height: 100%;
  margin-bottom: 0;
}
/* line 1094, ../sass/components/_main.scss */
.page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted .views-row > div {
  float: right;
}
@media screen and (max-width: 768px) {
  /* line 1094, ../sass/components/_main.scss */
  .page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted .views-row > div {
    float: none;
  }
}
/* line 1102, ../sass/components/_main.scss */
.page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted .views-row .views-field-field-image,
.page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted .views-row .views-field-field-viddler-video {
  width: 60%;
  max-height: 230px;
  overflow: hidden;
}
/* line 1108, ../sass/components/_main.scss */
.page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted .views-row .views-field-field-image .field-content,
.page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted .views-row .views-field-field-viddler-video .field-content {
  line-height: normal;
}
/* line 1111, ../sass/components/_main.scss */
.page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted .views-row .views-field-field-image .field-content img,
.page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted .views-row .views-field-field-viddler-video .field-content img {
  display: block;
}
/* line 1114, ../sass/components/_main.scss */
.page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted .views-row .views-field-field-image iframe,
.page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted .views-row .views-field-field-viddler-video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
}
/* line 1123, ../sass/components/_main.scss */
.page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted .views-row .views-field-field-viddler-video {
  height: 100%;
  position: relative;
}
/* line 1128, ../sass/components/_main.scss */
.page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted .views-row .views-field-nothing {
  width: 40%;
  background-color: #015486;
  height: 100%;
  padding: 10px 18px;
  overflow: hidden;
}
/* line 1134, ../sass/components/_main.scss */
.page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted .views-row .views-field-nothing .views-field-name {
  font-family: "british_council-bold";
  font-size: 12px;
}
/* line 1138, ../sass/components/_main.scss */
.page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted .views-row .views-field-nothing .views-field-name-1 {
  font-size: 24px;
  line-height: 24px;
  margin-top: 8px;
}
/* line 1143, ../sass/components/_main.scss */
.page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted .views-row .views-field-nothing .views-field-description {
  font-size: 11px;
  line-height: 16px;
}
@media screen and (max-width: 1024px) {
  /* line 1150, ../sass/components/_main.scss */
  .page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted .views-row .views-field-field-image,
  .page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted .views-row .views-field-field-viddler-video {
    width: 40%;
  }
  /* line 1154, ../sass/components/_main.scss */
  .page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted .views-row .views-field-field-image img,
  .page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted .views-row .views-field-field-viddler-video img {
    max-width: initial;
  }
  /* line 1156, ../sass/components/_main.scss */
  .page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted .views-row .views-field-field-image iframe,
  .page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted .views-row .views-field-field-viddler-video iframe {
    position: static;
    height: 365px;
  }
  /* line 1161, ../sass/components/_main.scss */
  .page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted .views-row .views-field-nothing {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  /* line 1168, ../sass/components/_main.scss */
  .page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted .views-row .views-field-field-image,
  .page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted .views-row .views-field-field-viddler-video {
    width: 100%;
    background-color: #015486;
    max-width: initial;
    max-height: inherit;
    overflow: initial;
  }
  /* line 1175, ../sass/components/_main.scss */
  .page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted .views-row .views-field-field-image img,
  .page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted .views-row .views-field-field-viddler-video img {
    width: 100%;
    height: auto;
  }
  /* line 1180, ../sass/components/_main.scss */
  .page-taxonomy-term- #top-main .top-main__wrapper .region-highlighted .views-row .views-field-nothing {
    width: 98%;
    margin: 0 auto;
    position: relative;
  }
}

/*end subcat landing*/
/* line 1197, ../sass/components/_main.scss */
.articles_filter {
  background-color: #f4f4f4;
  font-size: 13px;
  color: #006ec7;
  line-height: 34px;
  overflow: hidden;
  margin: 0;
}
/* line 1204, ../sass/components/_main.scss */
.articles_filter .jcarousel-clip-horizontal {
  margin: 0 30px;
  overflow: hidden;
}
/* line 1207, ../sass/components/_main.scss */
.articles_filter .jcarousel-clip-horizontal ul li {
  padding: 0 15px;
  font-weight: bold;
}
/* line 1211, ../sass/components/_main.scss */
.articles_filter .jcarousel-clip-horizontal li.is-active {
  background-color: #000000;
  color: #ffffff;
}
/* line 1216, ../sass/components/_main.scss */
.articles_filter .jcarousel-prev, .articles_filter .jcarousel-next {
  width: 30px;
  height: 34px;
  margin-top: -34px;
  float: left;
  background: url("../images/icon-filter-arrow-left.png") center center no-repeat;
}
/* line 1223, ../sass/components/_main.scss */
.articles_filter .jcarousel-next {
  float: right;
  background: url("../images/icon-filter-arrow-right.png") center center no-repeat;
}

/* line 1234, ../sass/components/_main.scss */
.item-list ul.quicktabs-tabs {
  margin: 0;
  padding: 0;
}
/* line 1237, ../sass/components/_main.scss */
.item-list ul.quicktabs-tabs li {
  display: block;
  float: left;
  width: 33.3%;
  text-align: center;
  font-size: 14px;
  box-sizing: border-box;
  color: #999999;
  border-bottom: 3px solid #ecebeb;
  margin-bottom: 10px;
  padding-top: 4px;
  padding-bottom: 4px;
}
/* line 1250, ../sass/components/_main.scss */
.item-list ul.quicktabs-tabs li.active {
  color: #006ec7;
  border-bottom: 3px solid #006ec7;
}

/* line 1260, ../sass/components/_main.scss */
.quicktabs_main {
  clear: both;
}
/* line 1262, ../sass/components/_main.scss */
.quicktabs_main h2 {
  color: #006ec7;
  font-weight: normal;
  font-size: 18px;
}
/* line 1267, ../sass/components/_main.scss */
.quicktabs_main div.views-row {
  height: 130px;
  margin-top: 30px;
  overflow: hidden;
}
/* line 1271, ../sass/components/_main.scss */
.quicktabs_main div.views-row > div {
  float: left;
}
/* line 1272, ../sass/components/_main.scss */
.quicktabs_main div.views-row .views-field-field-image {
  width: 230px;
}
/* line 1274, ../sass/components/_main.scss */
.quicktabs_main div.views-row .views-field-field-image img {
  height: auto;
}
/* line 1276, ../sass/components/_main.scss */
.quicktabs_main div.views-row .views-field-nothing {
  width: 410px;
  margin-left: 15px;
}
/* line 1279, ../sass/components/_main.scss */
.quicktabs_main div.views-row .views-field-nothing .views-field-field-category {
  padding: 2px 8px;
  float: left;
  background-color: #006ec7;
  color: #ffffff;
  font-size: 12px;
}
/* line 1286, ../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 1292, ../sass/components/_main.scss */
.quicktabs_main div.views-row .views-field-nothing .views-field-title, .quicktabs_main div.views-row .views-field-nothing .view-moderators .views-field-field-subtitle, .view-moderators .quicktabs_main div.views-row .views-field-nothing .views-field-field-subtitle {
  clear: both;
  color: #006ec7;
  font-size: 18px;
  padding: 2px 0;
}
/* line 1298, ../sass/components/_main.scss */
.quicktabs_main div.views-row .views-field-nothing .views-field-body {
  font-size: 13px;
  line-height: 16px;
}
/* line 1301, ../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 1306, ../sass/components/_main.scss */
  .quicktabs_main div.views-row {
    overflow: initial;
    position: relative;
  }
  /* line 1309, ../sass/components/_main.scss */
  .quicktabs_main div.views-row .views-field-field-image {
    position: absolute;
  }
  /* line 1310, ../sass/components/_main.scss */
  .quicktabs_main div.views-row .views-field-nothing {
    margin-left: 0;
    padding-left: 245px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  /* line 1318, ../sass/components/_main.scss */
  .quicktabs_main div.views-row {
    height: auto;
  }
  /* line 1320, ../sass/components/_main.scss */
  .quicktabs_main div.views-row > div {
    float: none;
  }
  /* line 1321, ../sass/components/_main.scss */
  .quicktabs_main div.views-row .views-field-field-image {
    position: initial;
    width: 100%;
  }
  /* line 1324, ../sass/components/_main.scss */
  .quicktabs_main div.views-row .views-field-field-image img {
    width: 100%;
  }
  /* line 1326, ../sass/components/_main.scss */
  .quicktabs_main div.views-row .views-field-nothing {
    padding-left: 0;
  }
}

/*flip page bar*/
/* line 1337, ../sass/components/_main.scss */
.pager {
  background-color: #f4f4f4;
  line-height: 35px;
  font-size: 14px;
  position: relative;
  margin-top: 10px;
}
/* line 1343, ../sass/components/_main.scss */
.pager .pager-item {
  color: #0072cd;
}
/* line 1344, ../sass/components/_main.scss */
.pager .pager-current {
  color: #006ec7;
  border-bottom: 2px solid #006ec7;
  background-color: #ffffff;
  padding-top: 9px;
  padding-bottom: 6px;
}
/* line 1351, ../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 1358, ../sass/components/_main.scss */
.pager .pager-first {
  float: left;
}
/* line 1360, ../sass/components/_main.scss */
.pager .pager-first a {
  float: left;
  background-position: -4px -82px;
  margin: 8px 0;
}
/* line 1364, ../sass/components/_main.scss */
.pager .pager-first a:hover {
  background-position: -4px -56px;
}
/* line 1367, ../sass/components/_main.scss */
.pager .pager-last {
  float: right;
}
/* line 1369, ../sass/components/_main.scss */
.pager .pager-last a {
  float: right;
  background-position: -41px -82px;
  margin: 8px 0;
}
/* line 1373, ../sass/components/_main.scss */
.pager .pager-last a:hover {
  background-position: -41px -56px;
}
/* line 1376, ../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 1383, ../sass/components/_main.scss */
.pager .pager-previous a {
  float: left;
  background-position: -4px -28px;
  margin: 8px 0;
}
/* line 1387, ../sass/components/_main.scss */
.pager .pager-previous a:hover {
  background-position: -4px -1px;
}
/* line 1390, ../sass/components/_main.scss */
.pager .pager-next {
  position: absolute;
  right: 0;
  margin-right: 38px;
}
/* line 1394, ../sass/components/_main.scss */
.pager .pager-next a {
  background-position: -28px -29px;
  margin: 8px 0 8px 8px;
}
/* line 1397, ../sass/components/_main.scss */
.pager .pager-next a:hover {
  background-position: -28px -2px;
}
@media screen and (max-width: 768px) {
  /* line 1401, ../sass/components/_main.scss */
  .pager li {
    padding: 0 4px;
  }
}

/*end flip page bar*/
/*Article*/
/* line 1414, ../sass/components/_main.scss */
.node-type-article .header {
  padding-bottom: 10px;
}
/* line 1415, ../sass/components/_main.scss */
.node-type-article .page__title {
  color: #ffffff;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  /* line 1420, ../sass/components/_main.scss */
  .node-type-article #content {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
/* line 1426, ../sass/components/_main.scss */
.node-type-article #content a {
  color: #006ec7;
}
/* line 1427, ../sass/components/_main.scss */
.node-type-article #content a:hover {
  text-decoration: underline;
}
/* line 1429, ../sass/components/_main.scss */
.node-type-article #content ul {
  padding-left: 15px;
}
/* line 1431, ../sass/components/_main.scss */
.node-type-article #content ul li {
  margin-bottom: 7px;
}
/* line 1436, ../sass/components/_main.scss */
.node-type-article #content .field-name-submitted-by {
  color: #cdcdcd;
  font-size: 11px;
  float: left;
}
/* line 1442, ../sass/components/_main.scss */
.node-type-article #content .field-name-print {
  float: right;
  margin-top: -15px;
  margin-right: 10px;
}
/* line 1448, ../sass/components/_main.scss */
.node-type-article #content .field-name-field-text-teaser {
  clear: both;
}
/* line 1452, ../sass/components/_main.scss */
.node-type-article #content .field-name-body {
  clear: both;
  font-size: 14px;
  line-height: 20px;
}
/* line 1456, ../sass/components/_main.scss */
.node-type-article #content .field-name-body p {
  margin: 1em 0;
}
/* line 1460, ../sass/components/_main.scss */
.node-type-article #content .field-name-field-audio-file .field-label {
  color: #006ec7;
}
/* line 1463, ../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 1471, ../sass/components/_main.scss */
.node-type-article #content .group-downloads legend {
  background: url("../images/icon-download.png") 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 1483, ../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 1489, ../sass/components/_main.scss */
.node-type-article #content .group-downloads .field-name-upload .field-item:first-child {
  border-top: none;
}
/* line 1495, ../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 1495, ../sass/components/_main.scss */
  .node-type-article #content .field-name-comments-list {
    padding: 6px;
    padding-bottom: 40px;
  }
}
/* line 1506, ../sass/components/_main.scss */
.node-type-article #content .field-name-comments-list > .field-items:nth-child(1) .field-item > div:nth-child(1) {
  color: #006ec7;
  font-size: 20px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  /* line 1506, ../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 1515, ../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 1520, ../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 1524, ../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 1529, ../sass/components/_main.scss */
.node-type-article #content .field-name-comments-list .ds-1col .field-name-comment-body {
  clear: both;
}
/* line 1531, ../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 1536, ../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 1544, ../sass/components/_main.scss */
.node-type-article #content .field-name-comments-list .ds-1col .links a {
  color: #006ec7;
}
@media screen and (max-width: 768px) {
  /* line 1515, ../sass/components/_main.scss */
  .node-type-article #content .field-name-comments-list .ds-1col {
    margin-left: 0;
    margin-top: 30px;
  }
  /* line 1550, ../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 1551, ../sass/components/_main.scss */
  .node-type-article #content .field-name-comments-list .ds-1col .field-name-post-date {
    float: none;
  }
}
/* line 1558, ../sass/components/_main.scss */
.node-type-article #content .field-name-field-viddler-video iframe {
  width: 100%;
}
/* line 1563, ../sass/components/_main.scss */
.node-type-article .group-accordion {
  clear: both;
}
/* line 1565, ../sass/components/_main.scss */
.node-type-article .group-accordion h3.accordion-item {
  border: none;
  background-image: none;
  background-color: #f4f4f4;
  border-radius: 0;
  font-size: 14px;
  font-weight: bold;
  padding: 12px 20px;
}
/* line 1573, ../sass/components/_main.scss */
.node-type-article .group-accordion h3.accordion-item a {
  color: #006ec7;
  padding: 0;
  display: inline;
}
/* line 1578, ../sass/components/_main.scss */
.node-type-article .group-accordion h3.accordion-item span.ui-icon-triangle-1-e {
  background: url("../images/icon-accordion-btn.png") -2px 0 no-repeat;
  width: 21px;
  height: 21px;
  left: inherit;
  right: 0.5em;
  margin-top: -11px;
}
/* line 1587, ../sass/components/_main.scss */
.node-type-article .group-accordion h3.ui-state-active {
  background-color: #000000;
}
/* line 1589, ../sass/components/_main.scss */
.node-type-article .group-accordion h3.ui-state-active a {
  color: #ffffff;
}
/* line 1590, ../sass/components/_main.scss */
.node-type-article .group-accordion h3.ui-state-active span.ui-icon-triangle-1-s {
  background: url("../images/icon-accordion-btn.png") -2px 0 no-repeat;
  width: 21px;
  height: 21px;
  left: inherit;
  right: 0.5em;
  margin-top: -11px;
  background-position: -2px -24px;
}
/* line 1601, ../sass/components/_main.scss */
.node-type-article .group-accordion div.field-group-accordion-item {
  border: none;
  padding: 20px;
  font-size: 13px;
}
/* line 1605, ../sass/components/_main.scss */
.node-type-article .group-accordion div.field-group-accordion-item p {
  margin: 0;
}

/* line 1611, ../sass/components/_main.scss */
.article-sharethis-container .sharethis-buttons .sharethis-wrapper {
  float: right;
  margin-top: -10px;
  padding-bottom: 5px;
}
@media screen and (max-width: 768px) {
  /* line 1611, ../sass/components/_main.scss */
  .article-sharethis-container .sharethis-buttons .sharethis-wrapper {
    float: none;
    margin-top: 10px;
  }
  /* line 1618, ../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 1625, ../sass/components/_main.scss */
.article-field-vote-container {
  color: #ffffff;
}
/* line 1627, ../sass/components/_main.scss */
.article-field-vote-container .fivestar-widget {
  float: left;
}
/* line 1628, ../sass/components/_main.scss */
.article-field-vote-container .description {
  float: left;
  margin-left: 10px;
  line-height: 25px;
}

/* line 1636, ../sass/components/_main.scss */
.find_course_link {
  margin-top: 10px;
  border-top: 3px solid #006ec7;
  background-color: #f4f4f4;
  color: #00843d;
  padding: 0.5em;
  padding-left: 40px;
  position: relative;
}
/* line 1645, ../sass/components/_main.scss */
.find_course_link p {
  margin: 0;
  font-size: 14px;
}
/* line 1650, ../sass/components/_main.scss */
.find_course_link:before {
  content: url("../images/icon-hat-white.svg");
  position: absolute;
  left: 0;
  background-color: #006ec7;
  height: 100%;
  top: 0;
  padding: 8px 6px 0 6px;
  box-sizing: border-box;
}

/*end article*/
/* line 1665, ../sass/components/_main.scss */
.field-name-text-size {
  float: right;
  margin-top: 10px;
}
/* line 1669, ../sass/components/_main.scss */
.field-name-text-size .textsize_list {
  padding-left: 0 !important;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
}
/* line 1681, ../sass/components/_main.scss */
.field-name-text-size .textsize_list li {
  margin-right: 5px;
  margin-bottom: 0 !important;
}
/* line 1684, ../sass/components/_main.scss */
.field-name-text-size .textsize_list li a {
  margin-bottom: 0;
}
/* line 1687, ../sass/components/_main.scss */
.field-name-text-size .textsize_list a.textsize_normal,
.field-name-text-size .textsize_list a.ts_normal_variable,
.field-name-text-size .textsize_list a.ts_normal_fix {
  width: auto;
}

/*blog pages*/
/* line 1699, ../sass/components/_main.scss */
.node-blog a {
  color: #006ec7;
}
/* line 1701, ../sass/components/_main.scss */
.node-blog .field-name-submitted-by {
  color: #cdcdcd;
  font-size: 11px;
}
/* line 1706, ../sass/components/_main.scss */
.node-blog .field-name-print {
  float: right;
  margin-top: -15px;
  margin-right: 10px;
}
/* line 1712, ../sass/components/_main.scss */
.node-blog .field-name-field-text-teaser {
  clear: both;
}
/* line 1716, ../sass/components/_main.scss */
.node-blog .field-name-body {
  font-size: 14px;
  line-height: 20px;
}
/* line 1721, ../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 1729, ../sass/components/_main.scss */
.node-blog .group-downloads legend {
  background: url("../images/icon-download.png") 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 1741, ../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 1747, ../sass/components/_main.scss */
.node-blog .group-downloads .field-name-upload .field-item:first-child {
  border-top: none;
}
/* line 1753, ../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 1753, ../sass/components/_main.scss */
  .node-blog .field-name-comments-list {
    padding: 6px;
    padding-bottom: 40px;
  }
}
/* line 1764, ../sass/components/_main.scss */
.node-blog .field-name-comments-list > .field-items:nth-child(1) .field-item > div:nth-child(1) {
  color: #006ec7;
  font-size: 20px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  /* line 1764, ../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 1773, ../sass/components/_main.scss */
.node-blog .field-name-comments-list .ds-1col {
  background-color: #f4f4f4;
  font-size: 12px;
  padding: 10px;
  margin-left: 55px;
}
/* line 1779, ../sass/components/_main.scss */
.node-blog .field-name-comments-list .ds-1col ul {
  padding-left: 15px;
}
/* line 1781, ../sass/components/_main.scss */
.node-blog .field-name-comments-list .ds-1col ul li {
  margin-bottom: 7px;
}
/* line 1786, ../sass/components/_main.scss */
.node-blog .field-name-comments-list .ds-1col .field-name-ds-user-picture {
  float: left;
  margin-left: -60px;
}
/* line 1791, ../sass/components/_main.scss */
.node-blog .field-name-comments-list .ds-1col .field-name-post-date {
  color: #b6b6b6;
  font-size: 11px;
  float: right;
}
/* line 1797, ../sass/components/_main.scss */
.node-blog .field-name-comments-list .ds-1col .field-name-comment-body {
  clear: both;
}
/* line 1799, ../sass/components/_main.scss */
.node-blog .field-name-comments-list .ds-1col .field-name-comment-body p {
  margin: 0;
  line-height: 18px;
}
/* line 1805, ../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 1813, ../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 1773, ../sass/components/_main.scss */
  .node-blog .field-name-comments-list .ds-1col {
    margin-left: 0;
    margin-top: 30px;
  }
  /* line 1823, ../sass/components/_main.scss */
  .node-blog .field-name-comments-list .ds-1col .field-name-ds-user-picture {
    margin: -30px 10px 0 0;
  }
  /* line 1824, ../sass/components/_main.scss */
  .node-blog .field-name-comments-list .ds-1col .field-name-post-date {
    float: none;
  }
}
/* line 1831, ../sass/components/_main.scss */
.node-blog .field-name-field-viddler-video iframe {
  width: 100%;
}

/*end blog pages*/
/*comment block in article*/
/* line 1840, ../sass/components/_main.scss */
#comments {
  border-top: 3px solid #006ec7;
  clear: both;
  margin-top: 10px;
  background-color: #f4f4f4;
  padding: 10px 20px;
}
@media screen and (max-width: 768px) {
  /* line 1840, ../sass/components/_main.scss */
  #comments {
    padding-left: 5px;
    padding-right: 5px;
  }
}
/* line 1851, ../sass/components/_main.scss */
#comments h2 {
  color: #006ec7;
  margin-top: 5px;
  font-size: 22px;
  clear: both;
}
/* line 1857, ../sass/components/_main.scss */
#comments article {
  border: 1px solid #ebeaea;
  background-color: #fafafa;
  padding: 10px;
  margin-left: 60px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  /* line 1857, ../sass/components/_main.scss */
  #comments article {
    margin: 20px 0 35px 0;
  }
}
/* line 1867, ../sass/components/_main.scss */
#comments article p {
  margin: 0;
}
/* line 1868, ../sass/components/_main.scss */
#comments article p.submitted {
  text-align: right;
  color: #cecece;
  font-size: 11px;
}
@media screen and (max-width: 768px) {
  /* line 1868, ../sass/components/_main.scss */
  #comments article p.submitted {
    text-align: left;
  }
}
/* line 1876, ../sass/components/_main.scss */
#comments article p.submitted .username {
  color: #000000;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  /* line 1876, ../sass/components/_main.scss */
  #comments article p.submitted .username {
    text-align: left;
    margin-top: -32px;
  }
}
/* line 1885, ../sass/components/_main.scss */
#comments article .user-picture {
  float: left;
  margin-left: -70px;
  margin-top: -10px;
}
/* line 1889, ../sass/components/_main.scss */
#comments article .user-picture a {
  display: block;
}
@media screen and (max-width: 768px) {
  /* line 1885, ../sass/components/_main.scss */
  #comments article .user-picture {
    margin: -30px 10px 0 0;
  }
}
/* line 1894, ../sass/components/_main.scss */
#comments article .username {
  color: #006ec7;
  font-size: 15px;
  display: block;
  float: left;
  font-family: 'Arial';
}
/* line 1901, ../sass/components/_main.scss */
#comments article h3.comment__title a {
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #006ec7;
}
/* line 1907, ../sass/components/_main.scss */
#comments article .field-name-comment-body {
  clear: both;
  font-size: 13px;
}
/* line 1911, ../sass/components/_main.scss */
#comments article .links {
  font-size: 12px;
  margin-top: 15px;
  display: block;
  border-top: 1px solid #cccccc;
}
/* line 1918, ../sass/components/_main.scss */
#comments form.comment-form {
  padding: 8px 10px;
  background-color: #fafafa;
  font-size: 14px;
}
/* line 1922, ../sass/components/_main.scss */
#comments form.comment-form .form-item {
  margin: 0;
}
/* line 1923, ../sass/components/_main.scss */
#comments form.comment-form input[type=text] {
  width: 100%;
}
/* line 1924, ../sass/components/_main.scss */
#comments form.comment-form .filter-wrapper {
  padding: 5px 0;
}
/* line 1926, ../sass/components/_main.scss */
#comments form.comment-form .filter-wrapper .fieldset-wrapper > div {
  padding: 0;
}
/* line 1927, ../sass/components/_main.scss */
#comments form.comment-form .filter-wrapper .filter-list {
  width: 150px;
}
/* line 1928, ../sass/components/_main.scss */
#comments form.comment-form .filter-wrapper li {
  margin-bottom: 0;
}
/* line 1931, ../sass/components/_main.scss */
#comments form.comment-form .form-actions input[type=submit] {
  width: 48%;
  margin: 0 1%;
}

/*end comment block in article*/
/*tag*/
/* line 1945, ../sass/components/_main.scss */
.group-tag, .field-type-taxonomy-term-reference {
  border: none;
  margin-top: 15px;
  padding: 0;
  overflow: auto;
}
/* line 1951, ../sass/components/_main.scss */
.group-tag legend, .field-type-taxonomy-term-reference legend {
  color: #006ec7;
  font-weight: bold;
}
/* line 1955, ../sass/components/_main.scss */
.group-tag .field-label, .field-type-taxonomy-term-reference .field-label {
  display: none;
}
/* line 1957, ../sass/components/_main.scss */
.group-tag .field-items > div, .field-type-taxonomy-term-reference .field-items > div {
  float: left;
  background-color: #006ec7;
  padding: 2px 8px;
  color: #ffffff;
  margin-right: 6px;
  margin-top: 5px;
  font-size: 13px;
}
/* line 1967, ../sass/components/_main.scss */
.group-tag a, .field-type-taxonomy-term-reference a {
  color: #ffffff !important;
}
/* line 1968, ../sass/components/_main.scss */
.group-tag a.fieldset-title, .field-type-taxonomy-term-reference a.fieldset-title {
  color: #006ec7 !important;
}

/*end tag*/
/*course landing*/
@media screen and (max-width: 768px) {
  /* line 1976, ../sass/components/_main.scss */
  .courses_landing {
    float: none;
  }
}
/* line 1981, ../sass/components/_main.scss */
.courses_landing #top-main .top-main__wrapper .top-main__left {
  width: 100%;
}
/* line 1985, ../sass/components/_main.scss */
.courses_landing #top-main .top-main__wrapper .region-highlighted > div:first-child {
  width: 100%;
}
/* line 1986, ../sass/components/_main.scss */
.courses_landing #top-main .top-main__wrapper .region-highlighted .views-row {
  background-color: transparent;
  position: relative;
}
/* line 1989, ../sass/components/_main.scss */
.courses_landing #top-main .top-main__wrapper .region-highlighted .views-row > div {
  float: left;
}
/* line 1992, ../sass/components/_main.scss */
.courses_landing #top-main .top-main__wrapper .region-highlighted .views-row .views-field-field-viddler-video {
  width: 36%;
  float: right;
  text-align: right;
  line-height: initial;
}
/* line 1998, ../sass/components/_main.scss */
.courses_landing #top-main .top-main__wrapper .region-highlighted .views-row .views-field-field-viddler-video iframe {
  width: 360px;
  height: 230px;
}
/* line 2003, ../sass/components/_main.scss */
.courses_landing #top-main .top-main__wrapper .region-highlighted .views-row .views-field-nothing {
  width: 64%;
  float: right;
}
/* line 2006, ../sass/components/_main.scss */
.courses_landing #top-main .top-main__wrapper .region-highlighted .views-row .views-field-nothing .views-field-name-1 {
  font-size: 26px;
}
/* line 2007, ../sass/components/_main.scss */
.courses_landing #top-main .top-main__wrapper .region-highlighted .views-row .views-field-nothing .views-field-description {
  font-size: 13px;
  line-height: 16px;
  width: 60%;
  clear: both;
}
/* line 2013, ../sass/components/_main.scss */
.courses_landing #top-main .top-main__wrapper .region-highlighted .views-row .views-field-nothing .help-link {
  width: 30%;
  text-align: center;
  background-color: #ffffff;
  color: #006ec7;
  padding: 4px 10px;
  font-family: 'british_council-bold';
  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 2021, ../sass/components/_main.scss */
.courses_landing #top-main .top-main__wrapper .region-highlighted .views-row .views-field-nothing .help-link a {
  display: block;
}
@media screen and (max-width: 1024px) {
  /* line 2029, ../sass/components/_main.scss */
  .courses_landing #top-main .top-main__wrapper .region-highlighted .view-content {
    height: auto;
  }
  /* line 2032, ../sass/components/_main.scss */
  .courses_landing #top-main .top-main__wrapper .region-highlighted .views-row .views-field-field-viddler-video {
    width: 100%;
    float: none;
    text-align: center;
  }
  /* line 2037, ../sass/components/_main.scss */
  .courses_landing #top-main .top-main__wrapper .region-highlighted .views-row .views-field-nothing {
    width: 100%;
    float: none;
    margin-top: 0;
    text-align: center;
  }
  /* line 2042, ../sass/components/_main.scss */
  .courses_landing #top-main .top-main__wrapper .region-highlighted .views-row .views-field-nothing .views-field-description, .courses_landing #top-main .top-main__wrapper .region-highlighted .views-row .views-field-nothing .help-link {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  /* line 2048, ../sass/components/_main.scss */
  .courses_landing #top-main .top-main__wrapper .region-highlighted .views-row {
    background-color: #015486;
    padding: 0;
  }
  /* line 2053, ../sass/components/_main.scss */
  .courses_landing #top-main .top-main__wrapper .region-highlighted .views-row .views-field-field-viddler-video iframe {
    width: 100%;
  }
  /* line 2057, ../sass/components/_main.scss */
  .courses_landing #top-main .top-main__wrapper .region-highlighted .views-row .views-field-nothing .views-field-name-1 {
    background-color: #015486;
    padding: 5px 0;
    margin: 0 5px;
    margin-top: -10px;
  }
  /* line 2063, ../sass/components/_main.scss */
  .courses_landing #top-main .top-main__wrapper .region-highlighted .views-row .views-field-nothing .views-field-description {
    margin: 0 5px;
  }
}
/* line 2071, ../sass/components/_main.scss */
.courses_landing #content {
  width: 100% !important;
}

@media screen and (max-width: 768px) {
  /* line 2078, ../sass/components/_main.scss */
  .course_landing {
    float: none !important;
  }
}
/* line 2083, ../sass/components/_main.scss */
.course_landing h1 {
  font-family: "british_council-bold";
  color: #006ec7;
  font-size: 16px;
  margin: 25px 0 10px 0;
}
/* line 2089, ../sass/components/_main.scss */
.course_landing p {
  font-family: "Arial";
  font-size: 12px;
  line-height: 16px;
  margin: 10px 0;
}
/* line 2096, ../sass/components/_main.scss */
.course_landing .view-header {
  padding: 0 20px;
}
/* line 2098, ../sass/components/_main.scss */
.course_landing .view-content {
  margin: 20px 0;
  padding: 0 10px;
  border-top: 2px solid #006ec7;
  overflow: auto;
}
/* line 2104, ../sass/components/_main.scss */
.course_landing .view-content > .views-row {
  width: 48%;
  margin: 10px 1%;
  float: left;
  position: relative;
}
@media screen and (max-width: 768px) {
  /* line 2104, ../sass/components/_main.scss */
  .course_landing .view-content > .views-row {
    width: 100%;
    margin: 15px 0;
    float: none;
  }
}
/* line 2115, ../sass/components/_main.scss */
.course_landing .view-content .views-field-field-image {
  line-height: 0;
}
/* line 2117, ../sass/components/_main.scss */
.course_landing .view-content .views-field-field-image a {
  display: block;
}
/* line 2118, ../sass/components/_main.scss */
.course_landing .view-content .views-field-field-image img {
  width: 100%;
  height: auto;
  overflow: hidden;
}
/* line 2124, ../sass/components/_main.scss */
.course_landing .view-content .views-field-field-site-structure {
  position: absolute;
  top: 12px;
  font-size: 11px;
  color: #ffffff;
  background-color: #006ec7;
  padding: 0 10px;
}
/* line 2132, ../sass/components/_main.scss */
.course_landing .view-content .views-field-title, .course_landing .view-content .view-moderators .views-field-field-subtitle, .view-moderators .course_landing .view-content .views-field-field-subtitle {
  position: absolute;
  z-index: 2;
  color: #ffffff;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2px 8px;
  background: url("../images/trans_bg.png");
  font-size: 14px;
  font-family: "british_council-bold";
}
/* line 2144, ../sass/components/_main.scss */
.course_landing .view-content .views-field-title-hover {
  top: 12px;
  bottom: initial;
}
/* line 2148, ../sass/components/_main.scss */
.course_landing .view-content .views-field-field-text-teaser {
  position: absolute;
  z-index: 1;
  background: url("../images/bg-course-landing.png");
  top: 0;
  height: 100%;
  width: 100%;
  color: #ffffff;
  padding: 25px 15px 15px 15px;
  font-size: 11px;
  line-height: 16px;
  display: none;
}
/* line 2160, ../sass/components/_main.scss */
.course_landing .view-content .views-field-field-text-teaser .field-content {
  margin-top: 20px;
}
/* line 2161, ../sass/components/_main.scss */
.course_landing .view-content .views-field-field-text-teaser .field-content:after {
  content: url("../images/icon-course-arrow.png");
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -17px;
}
/* line 2168, ../sass/components/_main.scss */
.course_landing .view-content .views-field-field-text-teaser p {
  font-size: 10px;
  line-height: 14px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  /* line 2176, ../sass/components/_main.scss */
  .course_landing .view-content .views-field-field-image {
    width: 100%;
    overflow: hidden;
  }
  /* line 2179, ../sass/components/_main.scss */
  .course_landing .view-content .views-field-field-image img {
    height: 200px;
    max-width: none;
    width: auto;
  }
  /* line 2185, ../sass/components/_main.scss */
  .course_landing .view-content .views-field-title, .course_landing .view-content .view-moderators .views-field-field-subtitle, .view-moderators .course_landing .view-content .views-field-field-subtitle {
    bottom: initial;
    margin-top: -40px;
  }
  /* line 2189, ../sass/components/_main.scss */
  .course_landing .view-content .views-field-field-text-teaser {
    position: static;
    background: none;
    background-color: #006ec7;
    display: block;
  }
  /* line 2194, ../sass/components/_main.scss */
  .course_landing .view-content .views-field-field-text-teaser .field-content {
    margin-top: 0;
  }
  /* line 2195, ../sass/components/_main.scss */
  .course_landing .view-content .views-field-field-text-teaser .field-content:after {
    content: none;
  }
}
@media screen and (max-width: 480px) {
  /* line 2200, ../sass/components/_main.scss */
  .course_landing .view-content .views-field-field-image img {
    height: 120px;
  }
}

/*end course landing*/
/*course detail*/
/* line 2212, ../sass/components/_main.scss */
.node-teacher-training .submitted {
  margin: 0;
  color: #cdcdcd;
  font-size: 11px;
}
/* line 2217, ../sass/components/_main.scss */
.node-teacher-training > .field {
  clear: both;
  background-color: #f4f4f4;
  margin-top: 20px;
  padding: 12px 18px;
  overflow: auto;
}
/* line 2224, ../sass/components/_main.scss */
.node-teacher-training .field-label, .node-teacher-training h5 {
  font-weight: normal;
  font-size: 14px;
  color: #006ec7;
  line-height: 19px;
  margin: 0;
  margin-bottom: 6px;
}
/* line 2232, ../sass/components/_main.scss */
.node-teacher-training .field-items {
  font-size: 12px;
  color: #000000;
  font-family: 'Arial';
  line-height: 17px;
}
/* line 2238, ../sass/components/_main.scss */
.node-teacher-training p {
  margin: 0;
}
/* line 2239, ../sass/components/_main.scss */
.node-teacher-training ul {
  padding-left: 20px;
}
/* line 2240, ../sass/components/_main.scss */
.node-teacher-training li {
  margin: 5px 0;
}
/* line 2242, ../sass/components/_main.scss */
.node-teacher-training .node_teacher_training_full_group_top_date > h3 {
  display: none;
}
/* line 2243, ../sass/components/_main.scss */
.node-teacher-training .field-group-format-wrapper {
  overflow: auto;
}
/* line 2245, ../sass/components/_main.scss */
.node-teacher-training .field-group-format-wrapper .field-name-field-start-dates, .node-teacher-training .field-group-format-wrapper .field-name-field-duration {
  padding: 8px 0;
  background-color: #f4f4f4;
  width: 49%;
  margin-right: 2%;
  text-align: center;
  float: left;
}
/* line 2252, ../sass/components/_main.scss */
.node-teacher-training .field-group-format-wrapper .field-name-field-start-dates .field-label, .node-teacher-training .field-group-format-wrapper .field-name-field-duration .field-label {
  color: #000000;
  font-weight: normal;
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 0;
}
/* line 2259, ../sass/components/_main.scss */
.node-teacher-training .field-group-format-wrapper .field-name-field-start-dates .field-items, .node-teacher-training .field-group-format-wrapper .field-name-field-duration .field-items {
  color: #006ec7;
  font-weight: bold;
  font-size: 17px;
  line-height: 24px;
}
/* line 2266, ../sass/components/_main.scss */
.node-teacher-training .field-group-format-wrapper .field-name-field-duration {
  margin-right: 0;
}
/* line 2272, ../sass/components/_main.scss */
.node-teacher-training .field-name-field-level-of-english-req {
  background-color: transparent;
  border-top: 1px solid #f4f4f4;
}
/* line 2275, ../sass/components/_main.scss */
.node-teacher-training .field-name-field-level-of-english-req .field-label {
  color: #000000;
}

/*end course detail*/
/*page-moderators*/
/* line 2287, ../sass/components/_main.scss */
.section-moderators .header .page__title {
  text-align: center;
  font-weight: bold;
  padding: 20px 0;
}
/* line 2292, ../sass/components/_main.scss */
.section-moderators #content {
  width: 100% !important;
}

/* line 2297, ../sass/components/_main.scss */
.view-moderators .views-row {
  width: 31.3%;
  margin: 8px 1%;
  height: 370px;
  font-size: 12px;
  position: relative;
  float: left;
}
@media screen and (max-width: 767px) {
  /* line 2297, ../sass/components/_main.scss */
  .view-moderators .views-row {
    width: 100%;
    margin: 15px 1%;
    height: auto;
    float: initial;
  }
}
/* line 2311, ../sass/components/_main.scss */
.view-moderators .views-field-field-image {
  text-align: center;
  background-color: #006ec7;
  -webkit-clip-path: circle(70px at center);
  -moz-clip-path: circle(70px, 70px, 70px);
  clip-path: circle(70px, 70px, 70px);
}
/* line 2318, ../sass/components/_main.scss */
.view-moderators .views-field-field-image .field-content {
  margin: 0 auto;
  width: 80%;
  max-width: 150px;
  border: 3px solid #006ec7;
  -webkit-clip-path: circle(65px at center);
  -moz-clip-path: circle(65px, 65px, 65px);
  clip-path: circle(65px, 65px, 65px);
}
/* line 2326, ../sass/components/_main.scss */
.view-moderators .views-field-field-image .field-content img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  /* line 2318, ../sass/components/_main.scss */
  .view-moderators .views-field-field-image .field-content {
    width: 100%;
    height: auto;
  }
}
/* line 2336, ../sass/components/_main.scss */
.view-moderators .views-field-field-image_fix {
  background-color: transparent;
}
/* line 2337, ../sass/components/_main.scss */
.view-moderators .views-field-nothing {
  position: absolute;
  right: 50%;
  top: 100px;
  margin-right: -75px;
  cursor: pointer;
}
/* line 2343, ../sass/components/_main.scss */
.view-moderators .views-field-nothing .light_ball {
  background: url("../images/icon-lightball.png") center no-repeat;
  background-color: #006ec7;
  width: 40px;
  height: 40px;
  border-radius: 50% 50% 50% 50%;
  -moz-border-radius: 50% 50% 50% 50%;
  -webkit-border-radius: 50% 50% 50% 50%;
  -khtml-border-radius: 50% 50% 50% 50%;
}
/* line 2351, ../sass/components/_main.scss */
.view-moderators .views-field-title, .view-moderators .views-field-field-subtitle {
  text-align: center;
  font-size: 16px;
  font-family: 'british_council-bold';
  color: #006ec7;
}
/* line 2357, ../sass/components/_main.scss */
.view-moderators .views-field-field-subtitle {
  font-size: 12px;
  line-height: 14px;
}
/* line 2362, ../sass/components/_main.scss */
.view-moderators .views-field-body {
  margin: 10px 0;
  line-height: 16px;
}
/* line 2366, ../sass/components/_main.scss */
.view-moderators .views-field-field-learning-tip {
  background-color: #005587;
  color: #ffffff;
  line-height: 18px;
  padding: 16px 20px;
  position: absolute;
  z-index: 1;
  top: 100px;
  cursor: pointer;
  display: none;
}
/* line 2376, ../sass/components/_main.scss */
.view-moderators .views-field-field-learning-tip .views-label-field-learning-tip {
  font-family: 'british_council-bold';
  display: block;
  margin-bottom: 6px;
}
/* line 2381, ../sass/components/_main.scss */
.view-moderators .views-field-field-learning-tip .views-label-field-learning-tip:after {
  content: "X";
  position: absolute;
  z-index: 1;
  top: -10px;
  right: -10px;
  width: 25px;
  height: 25px;
  padding-top: 4px;
  text-align: center;
  background-color: #005587;
  border-radius: 25px 25px 25px 25px;
  -moz-border-radius: 25px 25px 25px 25px;
  -webkit-border-radius: 25px 25px 25px 25px;
  -khtml-border-radius: 25px 25px 25px 25px;
}
@media screen and (max-width: 768px) {
  /* line 2381, ../sass/components/_main.scss */
  .view-moderators .views-field-field-learning-tip .views-label-field-learning-tip:after {
    right: 0;
    top: 0;
  }
}
/* line 2398, ../sass/components/_main.scss */
.view-moderators .views-field-field-learning-tip .field-content {
  font-size: 10px;
  line-height: 16px;
}

/*end page-moderators*/
/*CPD landing*/
/* line 2412, ../sass/components/_main.scss */
.cpd-catagory #content > .block-views {
  width: 100%;
}

/* line 2417, ../sass/components/_main.scss */
.cpd-landing .view-header {
  font-size: 13px;
  line-height: 21px;
}
/* line 2422, ../sass/components/_main.scss */
.cpd-landing .view-content > .views-row {
  float: left;
  width: 31.3%;
  background-color: #ebeff0;
  text-align: center;
  padding: 10px;
  margin: 8px 1%;
}
@media screen and (max-width: 768px) {
  /* line 2422, ../sass/components/_main.scss */
  .cpd-landing .view-content > .views-row {
    width: 48%;
    margin: 8px 1%;
  }
}
/* line 2433, ../sass/components/_main.scss */
.cpd-landing .view-content > .views-row .views-field-name {
  color: #006ec7;
  font-size: 14px;
  line-height: 16px;
  font-weight: bold;
  margin: 0 auto;
  margin-top: 5px;
  min-height: 34px;
}

/*end CPD landing*/
/*CPD sublanding*/
/* line 2455, ../sass/components/_main.scss */
.cpd-sublanding .sidebars {
  margin-top: -250px;
}
@media screen and (max-width: 768px) {
  /* line 2455, ../sass/components/_main.scss */
  .cpd-sublanding .sidebars {
    margin-top: 0;
    width: 100%;
  }
}
/* line 2463, ../sass/components/_main.scss */
.cpd-sublanding #content > .block-views {
  float: none;
}
/* line 2467, ../sass/components/_main.scss */
.cpd-sublanding #content > .contextual-links-region {
  width: 100%;
}
/* line 2469, ../sass/components/_main.scss */
.cpd-sublanding #content .view-taxonomy-term-landing-text {
  background-color: #006ec7;
  padding: 30px 22px;
  font-size: 13px;
  line-height: 18px;
  color: #ffffff;
  width: 100%;
  position: relative;
}
/* line 2479, ../sass/components/_main.scss */
.cpd-sublanding .views-field-field-text-teaser {
  width: 63%;
}
@media screen and (max-width: 768px) {
  /* line 2479, ../sass/components/_main.scss */
  .cpd-sublanding .views-field-field-text-teaser {
    width: 100%;
  }
}
/* line 2485, ../sass/components/_main.scss */
.cpd-sublanding .views-field-view-node a {
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -10px;
  line-height: 30px;
  font-size: 14px;
  font-weight: bold;
  display: block;
  width: 210px;
  height: 30px;
  text-align: center;
  background-color: #ffffff;
  color: #006ec7;
  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;
}
@media all and (max-width: 768px) {
  /* line 2485, ../sass/components/_main.scss */
  .cpd-sublanding .views-field-view-node a {
    position: static;
    margin: 10px 0 0 0;
  }
}
/* line 2505, ../sass/components/_main.scss */
.cpd-sublanding .views-field-view-node a:after {
  content: url("../images/icon-arrow-right.png");
  position: absolute;
  right: 5px;
  margin-top: 1px;
}

/*end CPD sublanding*/
/*CPD overview*/
/* line 2519, ../sass/components/_main.scss */
.section-overview header {
  position: relative;
}
/* line 2521, ../sass/components/_main.scss */
.section-overview header .teacher-training-field-site-structure-container {
  position: absolute;
  right: 50px;
  margin-top: 50px;
  background-color: #ffffff;
  color: #006ec7;
  padding: 4px 10px 4px 25px;
  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 2529, ../sass/components/_main.scss */
.section-overview header .teacher-training-field-site-structure-container a {
  display: block;
  text-indent: -9999px;
  background: url("../images/back-resource-btn.png") center center no-repeat;
  width: 145px;
}
@media screen and (max-width: 1024px) {
  /* line 2521, ../sass/components/_main.scss */
  .section-overview header .teacher-training-field-site-structure-container {
    position: static;
    margin-top: 70px;
  }
}
/* line 2540, ../sass/components/_main.scss */
.section-overview header .teacher-training-field-site-structure-container:before {
  content: url("../images/icon-overview-arrow.png");
  position: absolute;
  margin-left: -15px;
}
/* line 2545, ../sass/components/_main.scss */
.section-overview header .article-sharethis-container {
  margin-top: 20px;
  margin-bottom: 10px;
}
/* line 2551, ../sass/components/_main.scss */
.section-overview .node-overview h2 {
  color: #006ec7;
  font-family: 'british_council-bold';
  font-size: 20px;
  line-height: 24px;
  margin-top: 15px;
  margin-bottom: 10px;
}
/* line 2559, ../sass/components/_main.scss */
.section-overview .node-overview p {
  font-size: 13px;
  line-height: 20px;
  margin: 10px 0;
}
/* line 2564, ../sass/components/_main.scss */
.section-overview .node-overview ul {
  padding-left: 0;
}
/* line 2566, ../sass/components/_main.scss */
.section-overview .node-overview ul li {
  list-style-image: none;
  list-style-type: none;
  background-color: #f4f4f4;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 2px;
}
/* line 2576, ../sass/components/_main.scss */
.section-overview .node-overview .field-type-file {
  margin-top: 10px;
}
/* line 2578, ../sass/components/_main.scss */
.section-overview .node-overview .field-type-file .field-label {
  background: #006ec7 url("../images/icon-download-white.png") 96% center no-repeat;
  color: #ffffff;
  padding: 16px 24px;
  font-weight: normal;
}
/* line 2584, ../sass/components/_main.scss */
.section-overview .node-overview .field-type-file .field-items {
  background-color: #f4f4f4;
  padding: 10px 24px;
}
/* line 2587, ../sass/components/_main.scss */
.section-overview .node-overview .field-type-file .field-items .field-item {
  background-color: #ffffff;
  margin: 2px 0;
  font-size: 13px;
}
/* line 2591, ../sass/components/_main.scss */
.section-overview .node-overview .field-type-file .field-items .field-item table {
  width: 100%;
  margin: 0;
  text-align: left;
}
/* line 2595, ../sass/components/_main.scss */
.section-overview .node-overview .field-type-file .field-items .field-item table thead {
  color: #afafaf;
}
/* line 2597, ../sass/components/_main.scss */
.section-overview .node-overview .field-type-file .field-items .field-item table thead th {
  font-weight: normal;
  padding: 2px 5px;
}
/* line 2602, ../sass/components/_main.scss */
.section-overview .node-overview .field-type-file .field-items .field-item table tbody tr {
  background-color: transparent;
}
/* line 2603, ../sass/components/_main.scss */
.section-overview .node-overview .field-type-file .field-items .field-item table td {
  padding: 2px 5px;
}
/* line 2606, ../sass/components/_main.scss */
.section-overview .node-overview .field-type-file .field-items img {
  width: auto;
  height: auto;
  vertical-align: middle;
}

/*search result*/
/* line 2622, ../sass/components/_main.scss */
.section-search form.search-form {
  border-bottom: 1px solid #cccccc;
  padding: 15px 10px;
}
/* line 2626, ../sass/components/_main.scss */
.section-search .spelling-suggestions {
  font-size: 13px;
}
/* line 2627, ../sass/components/_main.scss */
.section-search h2 {
  color: #006ec7;
}
/* line 2628, ../sass/components/_main.scss */
.section-search ol.search-results {
  padding-left: 0;
}
/* line 2630, ../sass/components/_main.scss */
.section-search ol.search-results li {
  border-top: 1px solid #e5e5e5;
  padding: 6px 0;
  margin-bottom: 8px;
}
/* line 2635, ../sass/components/_main.scss */
.section-search ol.search-results li:first-child {
  border-top: none;
}
/* line 2636, ../sass/components/_main.scss */
.section-search ol.search-results h3 {
  font-size: 15px;
  margin-top: 6px;
  margin-bottom: 6px;
}
/* line 2641, ../sass/components/_main.scss */
.section-search ol.search-results p {
  margin: 8px 0;
}
/* line 2642, ../sass/components/_main.scss */
.section-search ol.search-results .search-snippet-info {
  font-size: 11px;
  line-height: 16px;
}

/*end search result*/
/*faq*/
/* line 2654, ../sass/components/_main.scss */
.node-teacher-training p {
  margin-bottom: 12px;
}
/* line 2655, ../sass/components/_main.scss */
.node-teacher-training a {
  color: #006ec7;
}
/* line 2657, ../sass/components/_main.scss */
.node-teacher-training .field-name-upload table {
  margin: 0;
  width: 100%;
}
/* line 2660, ../sass/components/_main.scss */
.node-teacher-training .field-name-upload table thead {
  color: #979797;
  text-align: left;
  font-size: 14px;
}
/* line 2664, ../sass/components/_main.scss */
.node-teacher-training .field-name-upload table thead th {
  padding-bottom: 8px;
  font-weight: normal;
}
/* line 2670, ../sass/components/_main.scss */
.node-teacher-training .field-name-upload table tbody td {
  background-color: #ffffff;
  padding: 7px 12px;
  margin-bottom: 2px;
}
/* line 2675, ../sass/components/_main.scss */
.node-teacher-training .field-name-upload table tbody img {
  vertical-align: middle;
}
/* line 2679, ../sass/components/_main.scss */
.node-teacher-training .sharethis-buttons {
  margin-top: 15px;
}

/*end faq*/
/*elt development*/
/* line 2685, ../sass/components/_main.scss */
.view-display-id-block_3_wrapper {
  float: none !important;
}
/* line 2689, ../sass/components/_main.scss */
.view-display-id-block_3_wrapper .view-display-id-block_3 .views-row {
  overflow: auto;
}
/* line 2692, ../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: #006ec7;
  color: #ffffff;
  padding: 12px;
}
@media screen and (max-width: 768px) {
  /* line 2692, ../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 2704, ../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 2710, ../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 2716, ../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 2710, ../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 2724, ../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 2735, ../sass/components/_main.scss */
.block-quicktabs {
  clear: both;
}

/* line 2737, ../sass/components/_main.scss */
#quicktabs-elt_research .quicktabs-tabs {
  clear: both;
}
/* line 2739, ../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-weight: bold;
  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 2751, ../sass/components/_main.scss */
#quicktabs-elt_research .quicktabs-tabs li a {
  display: block;
}
/* line 2753, ../sass/components/_main.scss */
#quicktabs-elt_research .quicktabs-tabs li.active {
  background-color: #ffffff;
  border-top: 3px solid #006ec7;
  border-left: 1px solid #999999;
  border-right: 1px solid #999999;
  color: #000000;
}
/* line 2762, ../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 2777, ../sass/components/_main.scss */
#quicktabs-container-_seminars .quicktabs-tabpage .field-name-submitted-by {
  float: right;
  color: #d2d2d2;
  font-size: 11px;
  line-height: 15px;
}
/* line 2784, ../sass/components/_main.scss */
#quicktabs-container-_seminars .quicktabs-tabpage .field-name-body {
  clear: both;
  padding-top: 1px;
  font-size: 13px;
}
/* line 2789, ../sass/components/_main.scss */
#quicktabs-container-_seminars .quicktabs-tabpage .field-name-body h4 {
  font-size: 15px;
  color: #006ec7;
}
/* line 2794, ../sass/components/_main.scss */
#quicktabs-container-_seminars .quicktabs-tabpage .field-name-body > .field-items > .field-item > div {
  max-width: 100%;
}
/* line 2796, ../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 2799, ../sass/components/_main.scss */
  #quicktabs-container-_seminars .quicktabs-tabpage .field-name-body > .field-items > .field-item > div > div .vidget-list {
    width: 100%;
  }
}
/* line 2804, ../sass/components/_main.scss */
#quicktabs-container-_seminars .quicktabs-tabpage .field-name-body .vidget-list > li {
  list-style-image: none;
  list-style-type: none;
}
/* line 2808, ../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 2827, ../sass/components/_main.scss */
#block-quicktabs-upcoming-events h3.ui-accordion-header {
  border-radius: 0;
  border: 0;
  cursor: default !important;
}
/* line 2832, ../sass/components/_main.scss */
#block-quicktabs-upcoming-events h3.ui-accordion-header a {
  cursor: default;
  font-size: 14px;
  background-color: #006ec7;
  color: #ffffff;
}
/* line 2840, ../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 */
/* line 2854, ../sass/components/_main.scss */
.two_box_promote {
  border-top: 1px solid #006ec7;
  padding-top: 10px;
  clear: both;
  overflow: auto;
}
/* line 2860, ../sass/components/_main.scss */
.two_box_promote .views-row:first-child {
  margin-left: 0;
}
/* line 2864, ../sass/components/_main.scss */
.two_box_promote .views-row {
  float: left;
  width: 50%;
  overflow: hidden;
  padding-right: 20px;
  margin-bottom: 10px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  /* line 2864, ../sass/components/_main.scss */
  .two_box_promote .views-row {
    width: 100%;
    padding-right: 0;
  }
}
/* line 2877, ../sass/components/_main.scss */
.two_box_promote .views-row .views-field-nothing {
  position: relative;
}
/* line 2880, ../sass/components/_main.scss */
.two_box_promote .views-row .views-field-nothing .views-field-field-image {
  line-height: 0;
}
/* line 2884, ../sass/components/_main.scss */
.two_box_promote .views-row .views-field-nothing .field-info {
  background-color: #006ec7;
  padding: 10px 14px;
  color: #ffffff;
  width: 100%;
  height: 76px;
  overflow: hidden;
}
/* line 2891, ../sass/components/_main.scss */
.two_box_promote .views-row .views-field-nothing .field-info .field-title {
  font-family: 'british_council-bold';
  font-size: 15px;
}
/* line 2895, ../sass/components/_main.scss */
.two_box_promote .views-row .views-field-nothing .field-info .field-body {
  font-size: 13px;
  line-height: 16px;
}
/* line 2900, ../sass/components/_main.scss */
.two_box_promote .views-row .views-field-nothing .field-info p {
  margin: 0;
}

/* line 2906, ../sass/components/_main.scss */
.teacher-select-block {
  height: 315px;
  background-size: contain;
  background-color: #dde5ea;
  padding: 10px 20px;
  background-image: url("../images/95170a.png");
  background-repeat: no-repeat;
  background-position: left top;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  /* line 2906, ../sass/components/_main.scss */
  .teacher-select-block {
    background-image: url("../images/95170a-mobile.png");
    text-align: center;
    background-size: cover;
  }
}
/* line 2922, ../sass/components/_main.scss */
.teacher-select-block h2 {
  margin-top: 75px;
  font-weight: normal;
  font-family: 'british_council-bold';
  font-size: 32px;
  line-height: normal;
  width: 55%;
  margin-left: 45%;
}
@media screen and (max-width: 1024px) {
  /* line 2922, ../sass/components/_main.scss */
  .teacher-select-block h2 {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    padding-top: 15%;
  }
}
/* line 2938, ../sass/components/_main.scss */
.teacher-select-block > a {
  margin-top: 20px;
  text-decoration: none;
  color: #ffffff;
  border: 1px solid #2f3030;
  background: #087daf;
  background: -moz-linear-gradient(top, #087daf 0%, #004a69 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #087daf), color-stop(100%, #004a69));
  background: -webkit-linear-gradient(top, #087daf 0%, #004a69 100%);
  background: -o-linear-gradient(top, #087daf 0%, #004a69 100%);
  background: -ms-linear-gradient(top, #087daf 0%, #004a69 100%);
  background: linear-gradient(to bottom, #087daf 0%, #004a69 100%);
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.4);
  -webkit-border-radius: 5px;
  border-radius: 5px;
  font-size: 20px;
  display: inline-block;
  padding: 5px 8px 5px 30px;
  margin-left: 45%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  /* line 2938, ../sass/components/_main.scss */
  .teacher-select-block > a {
    margin: 20px auto 0;
  }
}
/* line 2964, ../sass/components/_main.scss */
.teacher-select-block > a:before {
  background-position: -103px -28px;
  background-image: url("../images/333-arrows.png");
  background-repeat: no-repeat;
  position: absolute;
  width: 15px;
  height: 15px;
  content: "";
  top: 50%;
  margin-top: -8px;
  left: 10px;
}

/* line 2979, ../sass/components/_main.scss */
.cpd-term-description .view-content > .views-row {
  float: none;
  width: 100%;
  margin: 0;
  background-color: transparent;
  text-align: left;
  padding: 0;
}

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

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

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

/* line 1, ../sass/components/_footer.scss */
#footer {
  width: 100%;
  background-color: #015486;
  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 {
  float: left;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  /* line 12, ../sass/components/_footer.scss */
  #footer .footer__wrapper > div {
    padding: 0;
  }
}
/* line 20, ../sass/components/_footer.scss */
#footer .footer__wrapper .backToTop {
  display: none;
}
@media screen and (max-width: 768px) {
  /* line 20, ../sass/components/_footer.scss */
  #footer .footer__wrapper .backToTop {
    display: block;
    color: #b3c8d9;
    font-size: 14px;
    text-align: center;
    background-color: #124972;
    margin: 12px 6px;
    padding: 10px 0;
  }
}
/* line 33, ../sass/components/_footer.scss */
#footer .footer__wrapper .backToTop:after {
  content: url(../images/icon-backTop.png);
  position: absolute;
  margin-top: 4px;
  margin-left: 8px;
}
/* line 42, ../sass/components/_footer.scss */
#footer #block-menu-menu-follow-us {
  width: 27%;
  padding-left: 140px;
  padding-top: 25px;
  background: url("../images/footer-logo.jpg") left 30px no-repeat #015486;
}
@media screen and (max-width: 1024px) {
  /* line 42, ../sass/components/_footer.scss */
  #footer #block-menu-menu-follow-us {
    padding-left: 0;
    padding-top: 100px;
    width: 18%;
  }
}
@media screen and (max-width: 767px) {
  /* line 42, ../sass/components/_footer.scss */
  #footer #block-menu-menu-follow-us {
    width: 100%;
    height: auto;
    background: none;
    padding-left: 0;
    padding-top: 20px;
    margin-bottom: 0;
    border-bottom: 1px solid #6799b3;
  }
  /* line 60, ../sass/components/_footer.scss */
  #footer #block-menu-menu-follow-us h2.block__title {
    display: none;
  }
}
/* line 62, ../sass/components/_footer.scss */
#footer #block-menu-menu-follow-us h2.block__title {
  font-size: 14px;
}
/* line 63, ../sass/components/_footer.scss */
#footer #block-menu-menu-follow-us ul.menu {
  padding: 0;
  margin: 0;
}
/* line 66, ../sass/components/_footer.scss */
#footer #block-menu-menu-follow-us ul.menu li {
  list-style-image: none;
  list-style-type: none;
  color: #ffffff;
  padding-left: 40px;
  margin: 10px 0;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  /* line 66, ../sass/components/_footer.scss */
  #footer #block-menu-menu-follow-us ul.menu li {
    float: left;
    width: 50%;
    padding: 10px 0;
    padding-left: 22%;
    margin: 0;
    border-right: 1px solid #6799b3;
    border-top: 1px solid #6799b3;
  }
}
/* line 83, ../sass/components/_footer.scss */
#footer #block-menu-menu-follow-us ul.menu li:nth-child(1) {
  background: url("../images/icon-footer-twit.jpg") no-repeat;
}
/* line 84, ../sass/components/_footer.scss */
#footer #block-menu-menu-follow-us ul.menu li:nth-child(2) {
  background: url("../images/icon-footer-fb.jpg") no-repeat;
}
/* line 85, ../sass/components/_footer.scss */
#footer #block-menu-menu-follow-us ul.menu li:nth-child(3) {
  background: url("../images/icon-footer-rss.jpg") no-repeat;
}
/* line 86, ../sass/components/_footer.scss */
#footer #block-menu-menu-follow-us ul.menu li:nth-child(4) {
  background: url("../images/icon-footer-email.jpg") no-repeat;
}
@media screen and (max-width: 767px) {
  /* line 88, ../sass/components/_footer.scss */
  #footer #block-menu-menu-follow-us ul.menu li:nth-child(even) {
    border-right: none;
  }
  /* line 89, ../sass/components/_footer.scss */
  #footer #block-menu-menu-follow-us ul.menu li:nth-child(1) {
    background-position: 30% center;
  }
  /* line 90, ../sass/components/_footer.scss */
  #footer #block-menu-menu-follow-us ul.menu li:nth-child(2) {
    background-position: 30% center;
  }
  /* line 91, ../sass/components/_footer.scss */
  #footer #block-menu-menu-follow-us ul.menu li:nth-child(3) {
    background-position: 30% center;
  }
  /* line 92, ../sass/components/_footer.scss */
  #footer #block-menu-menu-follow-us ul.menu li:nth-child(4) {
    background-position: 30% center;
  }
}
/* line 98, ../sass/components/_footer.scss */
#footer #block-menu-block-1 {
  width: 73%;
  padding-top: 15px;
  padding-bottom: 20px;
  margin-bottom: 0;
  border-left: 1px solid #6196b5;
}
@media screen and (max-width: 1024px) {
  /* line 98, ../sass/components/_footer.scss */
  #footer #block-menu-block-1 {
    width: 82%;
  }
}
@media screen and (max-width: 767px) {
  /* line 98, ../sass/components/_footer.scss */
  #footer #block-menu-block-1 {
    display: none;
  }
}
/* line 111, ../sass/components/_footer.scss */
#footer #block-menu-block-1 .menu-block-wrapper > ul.menu > li.first {
  display: none;
}
/* line 112, ../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 120, ../sass/components/_footer.scss */
#footer #block-menu-block-1 ul.menu {
  margin: 0;
  padding: 0;
}
/* line 123, ../sass/components/_footer.scss */
#footer #block-menu-block-1 ul.menu li {
  list-style-image: none;
  list-style-type: none;
}
/* line 126, ../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: #81a9c2;
}

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

/* line 149, ../sass/components/_footer.scss */
.region-bottom {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding-bottom: 10px;
}
/* line 154, ../sass/components/_footer.scss */
.region-bottom .block {
  margin: 0;
}
/* line 155, ../sass/components/_footer.scss */
.region-bottom ul.menu {
  margin: 0;
  padding: 0;
  color: #ffffff;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  /* line 155, ../sass/components/_footer.scss */
  .region-bottom ul.menu {
    padding: 10px 0;
  }
}
/* line 163, ../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 163, ../sass/components/_footer.scss */
  .region-bottom ul.menu li {
    float: none;
    margin-right: 0;
    text-align: center;
    line-height: 30px;
  }
}
/* line 176, ../sass/components/_footer.scss */
.region-bottom #block-block-307 {
  clear: both;
  color: #7ea9c9;
  font-size: 11px;
  line-height: 15px;
}
@media screen and (max-width: 767px) {
  /* line 176, ../sass/components/_footer.scss */
  .region-bottom #block-block-307 {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #5088ab;
  }
}
/* line 186, ../sass/components/_footer.scss */
.region-bottom #block-block-307 p {
  margin: 0;
}

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