/* ============================================================

Project: 		Base Responsive
Client: 		Inturnal 
Author: 		Richard Howse for Contrapositive Ltd.
Version: 		1.0
URL: 			http://
Launch: 		2012
Information:	Merge base system.

Credits: 
normalize.css v2.0.1 | MIT License | git.io/normalize
semantic.gs // for LESS: http://lesscss.org/


Table of Contents:

	1. Reset/Normalisation
	
	2. Grid setup
	
	3. Site foundations
	
	4. Project layout and style:
		- Basic page style and a bit of typography (until it is broken out)
		- Header/Masthead region
		- Main navigation (responsive)
		- Content region
		- Featured region
		- Social region
		- Footer region
	
	5. Drupal specifics and overrides
	
Change log:


============================================================ */
/************
	RESET
*************/
/* normalize.css 2012-03-11T12:53 UTC - http://github.com/necolas/normalize.css */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden] {
  display: none;
}
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}
body {
  margin: 0;
}
a:focus {
  outline: thin dotted;
}
a:hover,
a:active {
  outline: 0;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}
h3 {
  font-size: 1.17em;
  margin: 1em 0;
}
h4 {
  font-size: 1em;
  margin: 1.33em 0;
}
h5 {
  font-size: 0.83em;
  margin: 1.67em 0;
}
h6 {
  font-size: 0.75em;
  margin: 2.33em 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
blockquote {
  margin: 1em 40px;
}
dfn {
  font-style: italic;
}
mark {
  background: yellow;
  color: black;
}
p,
pre {
  margin: 1em 0;
}
pre,
code,
kbd,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
q {
  quotes: none;
}
q:before,
q:after {
  content: '';
  content: none;
}
small {
  font-size: 75%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
dl,
menu,
ol,
ul {
  margin: 1em 0;
}
dd {
  margin: 0 0 0 40px;
}
menu,
ol,
ul {
  padding: 0 0 0 40px;
}
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 0;
}
form {
  margin: 0;
}
fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
  white-space: normal;
  *margin-left: -7px;
}
button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}
button,
input {
  line-height: normal;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
  *overflow: visible;
}
button[disabled],
input[disabled] {
  cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  *height: 13px;
  *width: 13px;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/***************
	GAP GRID
****************/
/*
.column(@n, @w:@columns, @m:@mobile-columns) {
	//@n: number of columns to span
	//@w: how many columns it is within - helps with nesting
	//@m: number of mobile columns to span below breakpoint
	display: inline;
	float: left;
	.border-box;
	width: percentage(((@columns/@w)/@columns)*@n);
    padding: 0 @gutter-width*0.5;
    .clearfix;
    @media only screen and (max-width: @mobile-break) {
    	width: percentage((1/@mobile-columns)*@m);
    }
}
*/
/*************
	MIXINS
**************/
/* Mixins =================================================== */
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
}
.clearfix:after {
  clear: both;
}
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  position: static;
  clip: auto;
  height: auto;
  width: auto;
  margin: 0;
  overflow: visible;
}
/*
.inner-shadow(@horizontal:0, @vertical:1px, @blur:2px, @alpha: 0.4) {
  -webkit-box-shadow: inset @horizontal @vertical @blur rgba(0, 0, 0, @alpha);
  -moz-box-shadow: inset @horizontal @vertical @blur rgba(0, 0, 0, @alpha);
  box-shadow: inset @horizontal @vertical @blur rgba(0, 0, 0, @alpha);
}
*/
/*************
	LAYOUT
**************/
h1 {
  display: inline-block;
  padding: 8px 20px 5px 0;
  background: white;
}
@media only screen and (max-width: 600px) {
  h1 {
    display: block;
  }
}
.headerImage {
  margin: -40px 0 0 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 10px;
}
@media only screen and (max-width: 980px) {
  .headerImage {
    margin-top: -30px;
  }
}
@media only screen and (max-width: 600px) {
  .headerImage {
    padding: 0;
  }
}
.page-blog .twitterFeed {
  display: none;
}
.overlay {
  width: 100%;
  height: 1500px;
  background: url("../../../baseTheme/img/overlay.jpg") center top no-repeat;
  position: absolute;
  top: 0;
  opacity: 0.5;
  display: none;
}
html {
  position: relative;
  min-height: 100%;
}
body {
  margin: 0;
}
.page {
  padding: 20px 0;
  *zoom: 1;
}
.page:before,
.page:after {
  content: "";
  display: table;
}
.page:after {
  clear: both;
}
.page:before,
.page:after {
  display: table;
  content: "";
}
.page:after {
  clear: both;
}
.page img {
  max-width: 100%;
  height: auto;
}
.page img.pull-left {
  float: left;
  margin: 0 20px 20px 0;
}
.page img.pull-right {
  float: right;
  margin: 0 0 20px 20px;
}
@media only screen and (max-width: 980px) {
  .page.no-sidebar #main-content {
    width: 100%;
  }
  .page.no-sidebar aside {
    display: none;
  }
}
div.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
@media only screen and (max-width: 600px) {
  div.container {
    padding: 0 10px;
  }
}
html.lt-ie9 div.container {
  width: 1120px;
}
div.row {
  display: block;
  margin: 0 -10px;
  *zoom: 1;
}
div.row:before,
div.row:after {
  content: "";
  display: table;
}
div.row:after {
  clear: both;
}
div.row:before,
div.row:after {
  display: table;
  content: "";
}
div.row:after {
  clear: both;
}
.primary-text-feature {
  margin-bottom: 20px;
}
.full-width-img {
  margin-top: -75px !important;
  background: transparent !important;
}
@media only screen and (max-width: 980px) {
  #google_translate_element {
    display: none;
  }
}
/*---------------------------------------------------
    LESS Typography Boilerplate 0.5
  ---------------------------------------------------
    
    A starter kit to good web typography with an easy
    baseline grid.

    Include this after your reset stylesheet.

    Copyright (c) 2012 Joel Sutherland
    MIT Licensed:
    http://www.opensource.org/licenses/mit-license.php

-----------------------------------------------------*/
/*
@header_max_size: 60px;
@header_color: #333;
@header_font_weight: 100;
@header_font_family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
*/

/* Standard Text */

body,
input,
button,
textarea {
  font-size: 15px;
  line-height: 20px;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  color: #5c5c5c;
  font-weight: 300;
}
/* Block Baselines */

/* h1, h2, h3, h4, h5, h6, p, ul, ol, pre, blockquote, textarea, button { margin: 0 0 @baseline 0; } */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  color: #5c5c5c;
  font-weight: 100;
}
h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  font-weight: inherit !important;
}
h1,
.h1 {
  font-size: 60px;
  line-height: 60px;
  margin: 0;
}
@media only screen and (max-width: 600px) {
  h1,
  .h1 {
    font-size: 40px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 500px) {
  h1,
  .h1 {
    font-size: 30px;
    line-height: 40px;
  }
}
h2,
.h2 {
  font-size: 35px;
  line-height: 40px;
  margin: 40px 0 20px 0;
}
h2:last-child,
.h2:last-child {
  margin-bottom: -20px;
}
@media only screen and (max-width: 600px) {
  h2,
  .h2 {
    font-size: 30px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 500px) {
  h2,
  .h2 {
    font-size: 20px;
    line-height: 20px;
  }
}
h3,
.h3 {
  font-size: 25px;
  line-height: 30px;
  margin: 20px 0 0 0;
}
@media only screen and (max-width: 600px) {
  h3,
  .h3 {
    font-size: 20px;
    line-height: 20px;
  }
}
h4,
.h4 {
  font-size: 20px;
  line-height: 20px;
  margin: 20px 0 0 0;
}
/*
h5, .h5 {
    font-size: @body_font_size;
    font-weight: bold;
    margin-bottom: 0;
}
*/

/*
h6, .h6 {
    font-size: @body_font_size;
    font-weight: bold;
    margin-bottom: 0;
}
*/

p.intro {
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 30px;
}
@media only screen and (max-width: 600px) {
  p.intro {
    font-size: 13.636363636px;
    margin-bottom: 13.333333333px;
    line-height: 20px;
  }
}
.page- p.intro {
  font-size: 35px;
  line-height: 40px;
}
@media only screen and (max-width: 600px) {
  .page- p.intro {
    font-size: 17.5px;
    line-height: 20px;
  }
}
p {
  font-size: 15px;
}
@media only screen and (max-width: 600px) {
  p {
    font-size: 12px;
  }
}
a:link {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a:active {
  text-decoration: none;
}
sup,
sub {
  font-size: 80%;
  line-height: 0;
}
sup {
  vertical-align: super;
}
sub {
  vertical-align: sub;
}
code {
  font-family: Consolas, "Courier New", Courier, mono;
}
strong {
  color: #5c5c5c;
  font-family: "HelveticaNeue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: bold;
}
ul,
ol {
  margin-left: 10px;
  padding-left: 20px;
}
/*
ul li, ol li { 
	margin-bottom: 1em;
}
*/

blockquote {
  display: block;
  opacity: .95;
  border-left: 4px solid;
  border-left-color: ;
  padding: 0 10px;
  font-style: italic;
  margin-left: 10px;
}
blockquote p:last-child {
  margin-bottom: 10px;
}
pre {
  font-family: Consolas, "Courier New", Courier, mono;
  background: black;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.9);
  color: #eeeeee;
  padding: 10px 20px;
}
fieldset {
  margin: 0;
  padding: 0;
  border: none;
}
label {
  display: block;
  margin-bottom: 0;
}
.checkbox input,
.checkbox label {
  display: inline;
}
.checkbox input {
  vertical-align: baseline;
}
input,
textarea,
select {
  display: block;
  margin: 5px 0 5px 0;
}
input[type=text],
input[type=email],
input[type=url],
input[type=password],
textarea {
  width: 400px;
  max-width: 100%;
  border: none;
  height: 20px;
  line-height: 30px;
  background: white;
  font-size: 15px;
  padding: 0 5px;
  height: 38px;
}
input[type=submit],
input[type=button],
.jsCheckoutB {
  display: inline-block;
  height: 34px;
  line-height: 34px;
  padding: 0 10px;
  border: none;
  text-decoration: none !important;
  color: white;
}
input[type=submit]:visited,
input[type=button]:visited,
.jsCheckoutB:visited {
  color: white;
}
textarea {
  height: 160px;
  width: 400px;
  max-width: 100%;
  font-size: 15px;
  line-height: 20px;
}
fieldset.radio {
  margin-bottom: 20px;
}
fieldset.radio fieldset {
  margin: 0 0 0 20px;
}
fieldset.radio fieldset label input {
  display: inline;
  line-height: 20px;
  margin: 0;
  vertical-align: baseline;
}
/*
label.error {
    width: @baseline*20;
    text-align: right;
    color: #aa0000;
}
label.error:before {
    content: "▲ ";
}
*/

input.error,
textarea.error {
  border-color: #aa0000;
}
address {
  position: relative;
  font-style: normal;
}
/*
address:before { 
	content: "\270E";
    display: block;
    margin-right: .5em;
    vertical-align: -.1em;
    padding-left: 2em;
    font-size: 25px;
}
*/

a.tel[href^="tel:"]:before {
  content: "\260E";
  display: block;
  margin-right: 0.5em;
  font-size: 22px;
  vertical-align: -0.1em;
}
.floatLeft {
  float: left;
  clear: left;
  margin: 0 20px 20px 0;
}
.floatRight {
  float: right;
  clear: right;
  margin: 0 0 20px 20px;
}
/* @import "../../../baseTheme/less/page.less"; */

/*************
	HEADER
**************/

header {
  background: #5c5c5c;
}
html.lt-ie9 header {
  min-width: 1160px;
}
header .container {
  position: relative;
  min-height: 145px;
}
@media only screen and (max-width: 980px) {
  header .container {
    min-height: 40px;
  }
}
header .container a.logo {
  position: absolute;
  z-index: 2;
  bottom: -25px;
  left: 10px;
}
@media only screen and (max-width: 980px) {
  header .container a.logo {
    top: 0px;
    bottom: auto;
  }
  header .container a.logo img {
    height: 90px !important;
    width: auto !important;
  }
}
@media only screen and (max-width: 600px) {
  header .container a.logo {
    left: -10px;
  }
  header .container a.logo img {
    height: 80px !important;
    width: auto !important;
  }
}
header .container a.logo img {
  height: 115px;
  width: 243px;
}
header .container #Header1_panel {
  position: absolute;
  top: 0px;
  right: 460px;
  color: white;
  font-size: 12px;
}
@media only screen and (max-width: 980px) {
  header .container #Header1_panel {
    left: 208px;
    right: auto;
  }
}
@media only screen and (max-width: 600px) {
  header .container #Header1_panel {
    left: 167px;
  }
}
header .container #Header1_panel #search {
  float: left;
  margin-right: 10px;
}
header .container #Header1_panel #search input[type="text"] {
  width: 30px;
  height: 30px;
  background: url(/assets/img/search.jpg) no-repeat right center white;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  padding: 0 30px 0 0px !important;
  margin: 0;
  -webkit-transition: width 0.5s ease-out;
  -moz-transition: width 0.5s ease-out;
  transition: width 0.5s ease-out;
}
header .container #Header1_panel #search input[type="text"]:focus {
  width: 200px;
  padding: 0 35px 0 5px !important;
  outline: none;
  cursor: text;
}
header .container #Header1_panel #search label {
  float: left;
  margin-right: 10px;
  display: none;
}
header .container #Header1_panel #search .btn {
  display: none;
}
header .container #Header1_panel a.basket {
  color: white;
  font-weight: bold;
  float: left;
  width: 30px;
  height: 30px;
  background: url(/assets/img/basket.jpg) no-repeat right center #ff6600;
  position: relative;
}
header .container #Header1_panel a.basket .noOfItems {
  position: absolute;
  display: block;
  bottom: -15px;
  width: 30px;
  text-align: center;
}
@media only screen and (max-width: 980px) {
  header .container #Header1_panel a.basket .noOfItems {
    bottom: 4px;
    right: -15px;
  }
}
header .container #Header1_panel a.basket .noOfItems span.label {
  text-indent: -99999px;
  visibility: hidden;
}
header .container #Header1_panel a.basket .noOfItems span.badge {
  text-align: center;
  background: white;
  color: #ff6600;
  height: 18px;
  width: 18px;
  display: inline-block;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
}
/*****************
	NAVIGATION
******************/

#menu-button {
  font-size: 20px;
  color: white;
  text-align: right;
  cursor: pointer;
  padding-top: 10px;
  display: none;
}
@media only screen and (max-width: 980px) {
  #menu-button {
    display: block;
  }
}
.page- nav#navigation {
  bottom: 10px;
}
nav#navigation {
  position: absolute;
  bottom: 30px;
  left: 265px;
  height: 32px;
}
nav#navigation input[type="text"] {
  width: 95%;
  margin: 0 auto;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
nav#navigation input[type="submit"],
nav#navigation label {
  display: none;
}
@media only screen and (max-width: 980px) {
  nav#navigation {
    position: static;
    height: auto;
    margin: 10px 0px;
    padding: 0 !important;
    background: #424242;
  }
}
@media only screen and (max-width: 980px) {
  nav#navigation {
    padding: 5px 20px;
  }
}
@media only screen and (max-width: 980px) {
  nav#navigation > ul {
    padding: 50px 0 0 0 !important;
    border-bottom: 10px #5c5c5c solid;
  }
}
nav#navigation ul {
  padding: 0;
  margin: 0;
  display: block;
}
nav#navigation ul li {
  margin: 0;
  padding: 0;
  float: left;
  line-height: 32px;
  list-style: none;
}
@media only screen and (max-width: 980px) {
  nav#navigation ul li {
    display: block;
    width: 100% !important;
    float: none;
  }
}
nav#navigation ul li a {
  line-height: 32px;
  display: block;
  padding: 0;
  margin-right: 20px;
  color: white;
  font-size: 14px;
  border-bottom: 10px solid #5c5c5c;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  -webkit-transition: all all 0.2s ease-in ease-out;
  -moz-transition: all all 0.2s ease-in ease-out;
  transition: all all 0.2s ease-in ease-out;
}
@media only screen and (max-width: 980px) {
  nav#navigation ul li a {
    border-bottom: 1px solid #363636;
    margin-right: 0px;
    padding: 0 10px;
  }
}
nav#navigation ul li a:hover,
nav#navigation ul li a:focus {
  text-decoration: none;
  color: #f2f2f2;
  border-bottom: 10px solid #767676;
}
@media only screen and (max-width: 980px) {
  nav#navigation ul li a:hover,
  nav#navigation ul li a:focus {
    border-bottom: 1px solid #363636;
  }
}
nav#navigation ul li.active a {
  color: white;
}
nav#navigation ul li.active ul {
  padding-top: 0;
}
@media only screen and (max-width: 980px) {
  nav#navigation ul li.active ul li a {
    color: white !important;
    padding-left: 30px;
  }
  nav#navigation ul li.active ul li ul li a {
    padding-left: 50px;
  }
}
nav#subNavigation {
  background: gray;
  margin-bottom: 20px;
}
nav#subNavigation > ul {
  padding: 0;
  margin: 0 0 20px 0;
}
nav#subNavigation > ul a {
  padding: 0 0 0 20px;
}
nav#subNavigation ul ul {
  padding: 0;
  margin: 0;
  background: #333333;
}
nav#subNavigation ul ul li a {
  padding: 5px 20px 5px 30px;
  font-size: 12px !important;
  border-bottom: 1px solid #4d4d4d;
  background: #333333 !important;
}
nav#subNavigation ul ul li a:hover {
  background: #222222 !important;
}
nav#subNavigation ul ul li.active a {
  background: #222222 !important;
}
nav#subNavigation ul ul ul li a {
  padding: 5px 20px 5px 40px;
  font-weight: normal;
}
nav#subNavigation ul ul ul li.active a {
  font-weight: bold !important;
}
nav#subNavigation ul ul ul ul li a {
  padding: 5px 20px 5px 50px;
  font-weight: normal;
}
nav#subNavigation ul ul ul ul li.active a {
  font-weight: bold !important;
}
nav#subNavigation li {
  list-style: none;
}
nav#subNavigation > ul > li {
  margin: 0;
  padding: 0;
}
nav#subNavigation > ul > li a {
  padding: 14px 20px;
  display: block;
  color: white;
  -webkit-transition: background 0.5s ease-in;
  -moz-transition: background 0.5s ease-in;
  -ms-transition: background 0.5s ease-in;
  -o-transition: background 0.5s ease-in;
  transition: background 0.5s ease-in;
  -webkit-transition: all background 0.5s ease-in ease-out;
  -moz-transition: all background 0.5s ease-in ease-out;
  transition: all background 0.5s ease-in ease-out;
}
nav#subNavigation > ul > li a:hover {
  text-decoration: none;
}
nav#subNavigation > ul > li.active .active {
  font-weight: bold;
}
nav#other {
  position: absolute;
  top: 0px;
  right: 20px;
  background: white;
  min-width: 430px;
}
nav#other ul {
  padding: 0 30px;
  margin: 0;
}
nav#other ul li {
  margin: 0;
  padding: 0;
  float: left;
  line-height: 32px;
  list-style: none;
}
nav#other ul li a {
  height: 36px;
  line-height: 16px;
  display: block;
  padding: 25px 10px;
  color: #5c5c5c;
  font-size: 14px;
  border-bottom: 10px solid white;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
nav#other ul li a:hover,
nav#other ul li a:focus {
  border-bottom: 10px solid #b5b5b5;
}
nav#other ul li.active a {
  border-bottom: 10px solid #b5b5b5;
}
nav#footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav#footer-links ul li {
  float: left;
  margin-right: 20px;
}
nav#footer-links ul li a {
  font-weight: 300;
}
nav#footer-links ul li a:hover,
nav#footer-links ul li a:focus {
  color: fuchsia;
}
/**************
	CONTENT
***************/

.page- #main-content {
  display: inline;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 0 10px;
  *zoom: 1;
  margin-top: -40px;
}
.page- #main-content:before,
.page- #main-content:after {
  content: "";
  display: table;
}
.page- #main-content:after {
  clear: both;
}
.page- #main-content:before,
.page- #main-content:after {
  display: table;
  content: "";
}
.page- #main-content:after {
  clear: both;
}
.page- #main-content .inner {
  display: block;
  margin: 0 -10px;
  *zoom: 1;
  padding: 0;
}
.page- #main-content .inner:before,
.page- #main-content .inner:after {
  content: "";
  display: table;
}
.page- #main-content .inner:after {
  clear: both;
}
.page- #main-content .inner:before,
.page- #main-content .inner:after {
  display: table;
  content: "";
}
.page- #main-content .inner:after {
  clear: both;
}
.page- #main-content .inner > div {
  display: inline;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 50%;
  padding: 0 10px;
  *zoom: 1;
}
.page- #main-content .inner > div:before,
.page- #main-content .inner > div:after {
  content: "";
  display: table;
}
.page- #main-content .inner > div:after {
  clear: both;
}
.page- #main-content .inner > div:before,
.page- #main-content .inner > div:after {
  display: table;
  content: "";
}
.page- #main-content .inner > div:after {
  clear: both;
}
.page-young-people.level1 #main-content h1 {
  margin: 60px 0 0 0;
  border-top: none !important;
}
#main-content.landing {
  display: inline;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 0 10px;
  *zoom: 1;
  background: white;
  margin-top: -40px;
}
#main-content.landing:before,
#main-content.landing:after {
  content: "";
  display: table;
}
#main-content.landing:after {
  clear: both;
}
#main-content.landing:before,
#main-content.landing:after {
  display: table;
  content: "";
}
#main-content.landing:after {
  clear: both;
}
#main-content {
  display: inline;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 66.666666667%;
  padding: 0 10px;
  *zoom: 1;
  position: relative;
  margin-top: -75px;
}
#main-content:before,
#main-content:after {
  content: "";
  display: table;
}
#main-content:after {
  clear: both;
}
#main-content:before,
#main-content:after {
  display: table;
  content: "";
}
#main-content:after {
  clear: both;
}
@media only screen and (max-width: 600px) {
  #main-content {
    display: inline;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 0 10px;
    *zoom: 1;
  }
  #main-content:before,
  #main-content:after {
    content: "";
    display: table;
  }
  #main-content:after {
    clear: both;
  }
  #main-content:before,
  #main-content:after {
    display: table;
    content: "";
  }
  #main-content:after {
    clear: both;
  }
}
@media only screen and (max-width: 600px) {
  #main-content {
    margin-top: 0px;
  }
}
.download.cta a {
  color: white !important;
  font-size: 1.5em;
  padding: 20px;
  position: relative;
  display: block;
}
.download.cta a:before {
  content: " ";
  position: absolute;
  bottom: 0;
  right: 0;
  border-width: 26px 26px 0 0;
  border-style: solid;
}
.page-teachers-and-professionals h3 {
  line-height: 30px;
}
.page-contact-us #main-content .mashup-plain {
  position: relative;
  padding-bottom: 65.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.page-contact-us #main-content .mashup-plain iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-contact-us #main-content .primary-text-feature:last-child {
  padding-bottom: 20px;
}
.page-contact-us #main-content .primary-text-feature ul li {
  line-height: 1.7em;
}
.page-contact-us #main-content input[type="text"],
.page-contact-us #main-content textarea {
  border: 1px solid #e8e8e8 !important;
}
.page-contact-us #main-content input[type="text"] {
  width: 400px !important;
}
.page-contact-us #main-content textarea {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.page-contact-us .secondary-text-feature h3 {
  margin: 0;
}
.page-contact-us .secondary-text-feature h4 {
  line-height: 20px;
}
ol {
  counter-reset: li;
  margin-top: 20px;
  margin-left: 0;
  padding-left: 0;
}
ol > li {
  position: relative;
  margin: 0 0 30px 30px;
  padding: 0 0 0 10px;
  list-style: none;
}
ol > li:before {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  top: -2px;
  left: -2em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 2em;
  margin-right: 8px;
  padding: 4px;
  color: white;
  text-align: center;
}
/**************
	 ASIDE
***************/

#sidebar-first {
  display: inline;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 33.333333333%;
  padding: 0 10px;
  *zoom: 1;
}
#sidebar-first:before,
#sidebar-first:after {
  content: "";
  display: table;
}
#sidebar-first:after {
  clear: both;
}
#sidebar-first:before,
#sidebar-first:after {
  display: table;
  content: "";
}
#sidebar-first:after {
  clear: both;
}
@media only screen and (max-width: 600px) {
  #sidebar-first {
    display: inline;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 0 10px;
    *zoom: 1;
  }
  #sidebar-first:before,
  #sidebar-first:after {
    content: "";
    display: table;
  }
  #sidebar-first:after {
    clear: both;
  }
  #sidebar-first:before,
  #sidebar-first:after {
    display: table;
    content: "";
  }
  #sidebar-first:after {
    clear: both;
  }
}
#sidebar-first .hot-topic-list-feature {
  background: #f3f3f3;
  padding: 20px;
}
#sidebar-first .hot-topic-list-feature h2 {
  margin-top: 0;
}
#sidebar-first .hot-topic-list-feature ul {
  margin: 0;
  padding: 0;
}
#sidebar-first .hot-topic-list-feature ul li {
  list-style: none;
}
#sidebar-first .hot-topic-list-feature ul li a {
  color: gray;
  font-size: 25px;
  line-height: 40px;
  margin: 20px 0 0 0;
}
#sidebar-second {
  display: inline;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 16.666666667%;
  padding: 0 10px;
  *zoom: 1;
}
#sidebar-second:before,
#sidebar-second:after {
  content: "";
  display: table;
}
#sidebar-second:after {
  clear: both;
}
#sidebar-second:before,
#sidebar-second:after {
  display: table;
  content: "";
}
#sidebar-second:after {
  clear: both;
}
aside {
  position: relative;
  margin-top: -40px;
}
@media only screen and (max-width: 600px) {
  aside {
    margin-top: 20px;
  }
}
aside iframe {
  border-top: 3px solid white;
  border-left: 3px solid white;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 980px) {
  aside .twitter-feed-feature .tweet_avatar {
    display: none;
  }
  aside .twitter-feed-feature ul li {
    padding: 20px 0 !important;
  }
}
/***************
	 FOOTER
****************/

/* display Nomiet logo only on home page */

nav#footer-links {
  margin: 40px;
}
nav#footer-links small {
  display: none;
}
nav#footer-links ul.projects {
  margin-top: 0 !important;
}
nav#footer-links ul.projects li:last-child {
  display: none;
}
.page- nav#footer-links small {
  display: block;
}
.page- nav#footer-links ul li:last-child {
  display: block;
}
/** ----- **/

footer {
  margin-top: 20px;
}
html.lt-ie9 footer {
  min-width: 1160px;
}
footer .top {
  padding: 30px 0;
  background: #5c5c5c;
}
footer .top .item {
  display: inline;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 33.333333333%;
  padding: 0 10px;
  *zoom: 1;
  color: white;
}
footer .top .item:before,
footer .top .item:after {
  content: "";
  display: table;
}
footer .top .item:after {
  clear: both;
}
footer .top .item:before,
footer .top .item:after {
  display: table;
  content: "";
}
footer .top .item:after {
  clear: both;
}
@media only screen and (max-width: 600px) {
  footer .top .item {
    display: inline;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 0 10px;
    *zoom: 1;
  }
  footer .top .item:before,
  footer .top .item:after {
    content: "";
    display: table;
  }
  footer .top .item:after {
    clear: both;
  }
  footer .top .item:before,
  footer .top .item:after {
    display: table;
    content: "";
  }
  footer .top .item:after {
    clear: both;
  }
}
@media only screen and (max-width: 980px) {
  footer .top .item {
    display: inline;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 0 10px;
    *zoom: 1;
    margin-bottom: 20px;
  }
  footer .top .item:before,
  footer .top .item:after {
    content: "";
    display: table;
  }
  footer .top .item:after {
    clear: both;
  }
  footer .top .item:before,
  footer .top .item:after {
    display: table;
    content: "";
  }
  footer .top .item:after {
    clear: both;
  }
  footer .top .item:nth-child(3) {
    clear: left;
  }
  footer .top .item.two span.heading {
    float: left;
    display: block;
    padding-top: 15px;
  }
}
@media only screen and (max-width: 600px) {
  footer .top .item.two span.heading {
    float: none;
  }
}
footer .top .item span.heading {
  display: block;
  font-size: 35px;
  line-height: 40px;
  margin: 40px 0 20px 0;
  margin: 0 0 10px 0;
}
footer .top .item span.heading:last-child {
  margin-bottom: -20px;
}
@media only screen and (max-width: 600px) {
  footer .top .item span.heading {
    font-size: 30px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 500px) {
  footer .top .item span.heading {
    font-size: 20px;
    line-height: 20px;
  }
}
footer .top .item .template-blog-feature a {
  font-weight: normal;
}
footer .top .item .template-blog-feature a:hover {
  -webkit-opacity: 0.9;
  -moz-opacity: 0.9;
  opacity: 0.9;
  -khtml-opacity: 0.9;
}
footer .top .item a {
  color: white;
}
footer .top .item .date {
  display: block;
  height: 35px;
  width: 55px;
  float: left;
  padding: 10px 0;
  margin: 2px 10px 0 0;
  text-align: center;
  text-transform: uppercase;
}
footer .top .item .date span {
  display: block;
  font-size: 25px;
}
footer .top .item .soical {
  margin: 0;
  overflow: hidden;
  padding: 0;
  list-style: none;
}
footer .top .item .soical li {
  float: left;
}
footer .top .item .soical li a {
  display: block;
  font-size: 35px !important;
  margin: 16px 25px 0 5px;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  -webkit-transition: all all 0.2s ease-in ease-out;
  -moz-transition: all all 0.2s ease-in ease-out;
  transition: all all 0.2s ease-in ease-out;
}
footer .top .item .soical li a:hover {
  margin-top: 11px;
}
footer .top .item .soical li a span {
  display: block;
  font-size: 35px;
  text-indent: -9999px;
}
footer .top .item input[type="text"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
footer nav#footer-links {
  margin: 20px 0;
  overflow: hidden;
  *zoom: 1;
}
footer nav#footer-links:before,
footer nav#footer-links:after {
  content: "";
  display: table;
}
footer nav#footer-links:after {
  clear: both;
}
footer nav#footer-links:before,
footer nav#footer-links:after {
  display: table;
  content: "";
}
footer nav#footer-links:after {
  clear: both;
}
@media only screen and (max-width: 600px) {
  footer nav#footer-links {
    border-top: 1px solid #e8e8e8;
  }
}
footer nav#footer-links small {
  text-align: left;
  float: right;
  margin-right: 31px;
}
@media only screen and (max-width: 600px) {
  footer nav#footer-links small {
    display: none;
  }
}
/***********
	BLOG
************/

.page-blog #main-content,
.page-what-we-do #main-content,
.page-press-releases #main-content,
.page-news #main-content {
  padding-bottom: 20px;
}
.page-blog #main-content .post,
.page-what-we-do #main-content .post,
.page-press-releases #main-content .post,
.page-news #main-content .post {
  margin: 10px 0 20px;
  position: relative;
  display: block;
  overflow: hidden;
}
.page-blog #main-content .post small,
.page-what-we-do #main-content .post small,
.page-press-releases #main-content .post small,
.page-news #main-content .post small {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}
.page-blog #main-content .post h2,
.page-what-we-do #main-content .post h2,
.page-press-releases #main-content .post h2,
.page-news #main-content .post h2 {
  margin-bottom: 0;
  padding-right: 120px;
}
@media only screen and (max-width: 500px) {
  .page-blog #main-content .post h2,
  .page-what-we-do #main-content .post h2,
  .page-press-releases #main-content .post h2,
  .page-news #main-content .post h2 {
    padding-right: 0 !important;
  }
}
.page-blog #main-content .post .summary,
.page-what-we-do #main-content .post .summary,
.page-press-releases #main-content .post .summary,
.page-news #main-content .post .summary {
  font-size: 14px;
  margin-bottom: 0;
}
.page-blog #main-content .post a.comments,
.page-what-we-do #main-content .post a.comments,
.page-press-releases #main-content .post a.comments,
.page-news #main-content .post a.comments {
  text-decoration: none;
  display: block;
  padding: 4px 12px 5px;
  position: absolute;
  color: white;
  top: 7px;
  right: 0px;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  -webkit-transition: all all 0.2s ease-in ease-out;
  -moz-transition: all all 0.2s ease-in ease-out;
  transition: all all 0.2s ease-in ease-out;
}
@media only screen and (max-width: 500px) {
  .page-blog #main-content .post a.comments,
  .page-what-we-do #main-content .post a.comments,
  .page-press-releases #main-content .post a.comments,
  .page-news #main-content .post a.comments {
    display: none;
  }
}
.page-blog #main-content .post a.comments:after,
.page-what-we-do #main-content .post a.comments:after,
.page-press-releases #main-content .post a.comments:after,
.page-news #main-content .post a.comments:after {
  content: " ";
  position: absolute;
  left: 10px;
  bottom: -10px;
  border-width: 10px 10px 0 0;
  border-style: solid;
  display: block;
}
.page-blog #main-content .post a.comments:hover,
.page-what-we-do #main-content .post a.comments:hover,
.page-press-releases #main-content .post a.comments:hover,
.page-news #main-content .post a.comments:hover,
.page-blog #main-content .post a.comments:focus,
.page-what-we-do #main-content .post a.comments:focus,
.page-press-releases #main-content .post a.comments:focus,
.page-news #main-content .post a.comments:focus {
  margin-top: 5px;
}
.page-blog #main-content .post a.tag,
.page-what-we-do #main-content .post a.tag,
.page-press-releases #main-content .post a.tag,
.page-news #main-content .post a.tag {
  margin-top: 20px;
  margin-bottom: 0;
  background: #5c5c5c;
}
.page-blog #main-content .post a.tag:before,
.page-what-we-do #main-content .post a.tag:before,
.page-press-releases #main-content .post a.tag:before,
.page-news #main-content .post a.tag:before {
  border-color: transparent #5c5c5c transparent transparent;
}
.page-blog #main-content div.blog-date small,
.page-what-we-do #main-content div.blog-date small,
.page-press-releases #main-content div.blog-date small,
.page-news #main-content div.blog-date small {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}
.page-blog #main-content .primary-text-feature,
.page-what-we-do #main-content .primary-text-feature,
.page-press-releases #main-content .primary-text-feature,
.page-news #main-content .primary-text-feature {
  margin-bottom: 20px;
}
.page-blog #main-content .primary-text-feature p,
.page-what-we-do #main-content .primary-text-feature p,
.page-press-releases #main-content .primary-text-feature p,
.page-news #main-content .primary-text-feature p {
  margin: 10px 0;
  line-height: 1.4em;
}
.page-blog #main-content .addthis_toolbox,
.page-what-we-do #main-content .addthis_toolbox,
.page-press-releases #main-content .addthis_toolbox,
.page-news #main-content .addthis_toolbox {
  float: left;
}
.page-blog #main-content .featureCommentRepeat,
.page-what-we-do #main-content .featureCommentRepeat,
.page-press-releases #main-content .featureCommentRepeat,
.page-news #main-content .featureCommentRepeat {
  margin: 20px 0 40px 0;
  padding: 20px;
  position: relative;
}
.page-blog #main-content .featureCommentRepeat:before,
.page-what-we-do #main-content .featureCommentRepeat:before,
.page-press-releases #main-content .featureCommentRepeat:before,
.page-news #main-content .featureCommentRepeat:before,
.page-blog #main-content .featureCommentRepeat:after,
.page-what-we-do #main-content .featureCommentRepeat:after,
.page-press-releases #main-content .featureCommentRepeat:after,
.page-news #main-content .featureCommentRepeat:after {
  content: " ";
  position: absolute;
  display: block;
}
.page-blog #main-content .featureCommentRepeat:after,
.page-what-we-do #main-content .featureCommentRepeat:after,
.page-press-releases #main-content .featureCommentRepeat:after,
.page-news #main-content .featureCommentRepeat:after {
  z-index: 2;
  right: 20px;
  bottom: -20px;
  border-width: 0 20px 20px 0;
  border-style: solid;
}
.page-blog #main-content .featureCommentRepeat .commentAuthor,
.page-what-we-do #main-content .featureCommentRepeat .commentAuthor,
.page-press-releases #main-content .featureCommentRepeat .commentAuthor,
.page-news #main-content .featureCommentRepeat .commentAuthor {
  font-weight: bold;
  margin-bottom: 10px;
  margin-right: 10px;
  float: left;
}
.page-blog #main-content .featureCommentRepeat .commentDate,
.page-what-we-do #main-content .featureCommentRepeat .commentDate,
.page-press-releases #main-content .featureCommentRepeat .commentDate,
.page-news #main-content .featureCommentRepeat .commentDate {
  float: left;
}
.page-blog #main-content .featureCommentRepeat .comment,
.page-what-we-do #main-content .featureCommentRepeat .comment,
.page-press-releases #main-content .featureCommentRepeat .comment,
.page-news #main-content .featureCommentRepeat .comment {
  margin: 10px 0;
  clear: both;
  display: block;
}
.page-blog #main-content .commentForm,
.page-what-we-do #main-content .commentForm,
.page-press-releases #main-content .commentForm,
.page-news #main-content .commentForm {
  position: relative;
  margin-top: 20px;
  padding: 20px;
  margin-bottom: 20px;
  -moz-transition-duration: 1s;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
}
.page-blog #main-content .commentForm:after,
.page-what-we-do #main-content .commentForm:after,
.page-press-releases #main-content .commentForm:after,
.page-news #main-content .commentForm:after {
  content: " ";
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: -20px;
  border-width: 20px 20px 0 0;
  border-style: solid;
  display: block;
}
.page-blog #main-content .commentForm label,
.page-what-we-do #main-content .commentForm label,
.page-press-releases #main-content .commentForm label,
.page-news #main-content .commentForm label {
  color: white;
  font-weight: 300;
  font-size: 16px;
  margin-top: -5px;
  letter-spacing: .7px;
  margin-bottom: 20px;
}
.page-blog #main-content .commentForm textarea,
.page-what-we-do #main-content .commentForm textarea,
.page-press-releases #main-content .commentForm textarea,
.page-news #main-content .commentForm textarea {
  width: 100%;
  box-sizing: border-box;
  resize: none;
  padding: 5px 8px;
  position: relative;
}
.page-blog #main-content input[type="submit"],
.page-what-we-do #main-content input[type="submit"],
.page-press-releases #main-content input[type="submit"],
.page-news #main-content input[type="submit"] {
  margin-top: 10px;
  width: 100px;
}
.page-blog aside#sidebar-first h3,
.page-what-we-do aside#sidebar-first h3,
.page-press-releases aside#sidebar-first h3,
.page-news aside#sidebar-first h3 {
  font-family: 20px;
  margin: 0;
}
.page-blog aside#sidebar-first ul,
.page-what-we-do aside#sidebar-first ul,
.page-press-releases aside#sidebar-first ul,
.page-news aside#sidebar-first ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-blog aside#sidebar-first .blog-archive-list-feature,
.page-what-we-do aside#sidebar-first .blog-archive-list-feature,
.page-press-releases aside#sidebar-first .blog-archive-list-feature,
.page-news aside#sidebar-first .blog-archive-list-feature {
  background: white;
}
.page-blog aside#sidebar-first .blog-archive-list-feature li,
.page-what-we-do aside#sidebar-first .blog-archive-list-feature li,
.page-press-releases aside#sidebar-first .blog-archive-list-feature li,
.page-news aside#sidebar-first .blog-archive-list-feature li {
  border-bottom: 1px solid #eeeeee;
  padding: 0 5px 10px 0;
  margin-top: 10px;
}
.page-blog aside#sidebar-first .tag-list-feature,
.page-what-we-do aside#sidebar-first .tag-list-feature,
.page-press-releases aside#sidebar-first .tag-list-feature,
.page-news aside#sidebar-first .tag-list-feature,
.page-blog aside#sidebar-first .category-list-feature,
.page-what-we-do aside#sidebar-first .category-list-feature,
.page-press-releases aside#sidebar-first .category-list-feature,
.page-news aside#sidebar-first .category-list-feature,
.page-blog aside#sidebar-first .blog-archive-list-feature,
.page-what-we-do aside#sidebar-first .blog-archive-list-feature,
.page-press-releases aside#sidebar-first .blog-archive-list-feature,
.page-news aside#sidebar-first .blog-archive-list-feature {
  padding: 20px 0 20px 20px;
}
@media only screen and (max-width: 600px) {
  .page-blog aside#sidebar-first .tag-list-feature,
  .page-what-we-do aside#sidebar-first .tag-list-feature,
  .page-press-releases aside#sidebar-first .tag-list-feature,
  .page-news aside#sidebar-first .tag-list-feature,
  .page-blog aside#sidebar-first .category-list-feature,
  .page-what-we-do aside#sidebar-first .category-list-feature,
  .page-press-releases aside#sidebar-first .category-list-feature,
  .page-news aside#sidebar-first .category-list-feature,
  .page-blog aside#sidebar-first .blog-archive-list-feature,
  .page-what-we-do aside#sidebar-first .blog-archive-list-feature,
  .page-press-releases aside#sidebar-first .blog-archive-list-feature,
  .page-news aside#sidebar-first .blog-archive-list-feature {
    padding-left: 0;
  }
}
.page-blog aside#sidebar-first .tag-list-feature ul,
.page-what-we-do aside#sidebar-first .tag-list-feature ul,
.page-press-releases aside#sidebar-first .tag-list-feature ul,
.page-news aside#sidebar-first .tag-list-feature ul {
  margin-top: 20px;
}
.page-blog aside#sidebar-first .tag-list-feature ul li a,
.page-what-we-do aside#sidebar-first .tag-list-feature ul li a,
.page-press-releases aside#sidebar-first .tag-list-feature ul li a,
.page-news aside#sidebar-first .tag-list-feature ul li a {
  background: #5c5c5c;
}
.page-blog aside#sidebar-first .tag-list-feature ul li a:before,
.page-what-we-do aside#sidebar-first .tag-list-feature ul li a:before,
.page-press-releases aside#sidebar-first .tag-list-feature ul li a:before,
.page-news aside#sidebar-first .tag-list-feature ul li a:before {
  border-color: transparent #5c5c5c transparent transparent;
}
.page-blog aside#sidebar-first .category-list-feature ul,
.page-what-we-do aside#sidebar-first .category-list-feature ul,
.page-press-releases aside#sidebar-first .category-list-feature ul,
.page-news aside#sidebar-first .category-list-feature ul {
  list-style: none;
  overflow: hidden;
  display: block;
  padding: 10px 10px 0 0;
  margin: 0;
}
.page-blog aside#sidebar-first .category-list-feature ul li,
.page-what-we-do aside#sidebar-first .category-list-feature ul li,
.page-press-releases aside#sidebar-first .category-list-feature ul li,
.page-news aside#sidebar-first .category-list-feature ul li {
  display: block;
  margin-bottom: 20px;
  width: 46%;
  float: left;
  background: #ff6600;
}
.page-blog aside#sidebar-first .category-list-feature ul li:nth-child(odd),
.page-what-we-do aside#sidebar-first .category-list-feature ul li:nth-child(odd),
.page-press-releases aside#sidebar-first .category-list-feature ul li:nth-child(odd),
.page-news aside#sidebar-first .category-list-feature ul li:nth-child(odd) {
  margin-right: 20px;
}
@media only screen and (max-width: 980px) {
  .page-blog aside#sidebar-first .category-list-feature ul li,
  .page-what-we-do aside#sidebar-first .category-list-feature ul li,
  .page-press-releases aside#sidebar-first .category-list-feature ul li,
  .page-news aside#sidebar-first .category-list-feature ul li {
    width: 100%;
  }
  .page-blog aside#sidebar-first .category-list-feature ul li:nth-child(odd),
  .page-what-we-do aside#sidebar-first .category-list-feature ul li:nth-child(odd),
  .page-press-releases aside#sidebar-first .category-list-feature ul li:nth-child(odd),
  .page-news aside#sidebar-first .category-list-feature ul li:nth-child(odd) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 600px) {
  .page-blog aside#sidebar-first .category-list-feature ul li,
  .page-what-we-do aside#sidebar-first .category-list-feature ul li,
  .page-press-releases aside#sidebar-first .category-list-feature ul li,
  .page-news aside#sidebar-first .category-list-feature ul li {
    width: 46%;
  }
  .page-blog aside#sidebar-first .category-list-feature ul li:nth-child(odd),
  .page-what-we-do aside#sidebar-first .category-list-feature ul li:nth-child(odd),
  .page-press-releases aside#sidebar-first .category-list-feature ul li:nth-child(odd),
  .page-news aside#sidebar-first .category-list-feature ul li:nth-child(odd) {
    margin-right: 20px;
  }
}
.page-blog aside#sidebar-first .category-list-feature ul li a,
.page-what-we-do aside#sidebar-first .category-list-feature ul li a,
.page-press-releases aside#sidebar-first .category-list-feature ul li a,
.page-news aside#sidebar-first .category-list-feature ul li a {
  display: block;
  position: relative;
  padding: 5px 12px;
  color: white;
  text-decoration: none;
}
.page-blog aside#sidebar-first .category-list-feature ul li a span,
.page-what-we-do aside#sidebar-first .category-list-feature ul li a span,
.page-press-releases aside#sidebar-first .category-list-feature ul li a span,
.page-news aside#sidebar-first .category-list-feature ul li a span {
  background: white;
  display: inline-block;
  padding: 4px 10px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  position: absolute;
  color: #333333;
  text-align: center;
  top: -15px;
  right: -15px;
  font-weight: bold;
}
.page-blog .alert-success,
.page-what-we-do .alert-success,
.page-press-releases .alert-success,
.page-news .alert-success {
  background: #eeeeee;
  padding: 10px 20px;
}
.page-blog .alert-success .close,
.page-what-we-do .alert-success .close,
.page-press-releases .alert-success .close,
.page-news .alert-success .close {
  float: right;
  font-size: 22px;
  font-weight: bold;
  color: #333333;
  text-decoration: none;
  margin-top: -3px;
}
/***************
	RESOURCE
****************/

.page-resources {
  display: block;
  margin: 0 -10px;
  *zoom: 1;
}
.page-resources ul.filters {
  display: block;
  margin: -30px 10px 30px;
  background: #eeeeee;
  padding: 20px;
  overflow: hidden;
  position: relative;
}
.page-resources ul.filters:before {
  content: " ";
  position: absolute;
  bottom: 0;
  right: 0;
  border-width: 26px 26px 0 0;
  border-style: solid;
  border-color: #cccccc white;
}
.page-resources ul.filters li {
  float: left;
  list-style: none;
}
.page-resources ul.filters li.by {
  display: block;
  clear: left;
  padding: 5px 10px;
  width: 70px;
  margin: 5px 5px 0 0;
  font-weight: bold;
}
.page-resources ul.filters li a {
  display: inline-block;
  padding: 4px 12px 5px;
  margin: 0 10px 0 0;
  text-decoration: none;
  -webkit-transition: background 0.4s ease-in-out;
  -moz-transition: background 0.4s ease-in-out;
  -ms-transition: background 0.4s ease-in-out;
  -o-transition: background 0.4s ease-in-out;
  transition: background 0.4s ease-in-out;
  -webkit-transition: all background 0.4s ease-in-out ease-out;
  -moz-transition: all background 0.4s ease-in-out ease-out;
  transition: all background 0.4s ease-in-out ease-out;
}
.page-resources .resources {
  clear: both;
}
.page-resources:before,
.page-resources:after {
  content: "";
  display: table;
}
.page-resources:after {
  clear: both;
}
.page-resources:before,
.page-resources:after {
  display: table;
  content: "";
}
.page-resources:after {
  clear: both;
}
.page-resources .listItem {
  display: inline;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 25%;
  padding: 0 10px;
  *zoom: 1;
  margin-bottom: 20px;
}
.page-resources .listItem:before,
.page-resources .listItem:after {
  content: "";
  display: table;
}
.page-resources .listItem:after {
  clear: both;
}
.page-resources .listItem:before,
.page-resources .listItem:after {
  display: table;
  content: "";
}
.page-resources .listItem:after {
  clear: both;
}
@media only screen and (max-width: 980px) {
  .page-resources .listItem {
    display: inline;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 33.333333333%;
    padding: 0 10px;
    *zoom: 1;
  }
  .page-resources .listItem:before,
  .page-resources .listItem:after {
    content: "";
    display: table;
  }
  .page-resources .listItem:after {
    clear: both;
  }
  .page-resources .listItem:before,
  .page-resources .listItem:after {
    display: table;
    content: "";
  }
  .page-resources .listItem:after {
    clear: both;
  }
}
@media only screen and (max-width: 600px) {
  .page-resources .listItem {
    display: inline;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 0 10px;
    *zoom: 1;
  }
  .page-resources .listItem:before,
  .page-resources .listItem:after {
    content: "";
    display: table;
  }
  .page-resources .listItem:after {
    clear: both;
  }
  .page-resources .listItem:before,
  .page-resources .listItem:after {
    display: table;
    content: "";
  }
  .page-resources .listItem:after {
    clear: both;
  }
}
.page-resources .listItem a {
  position: relative;
  background: #eeeeee;
  cursor: pointer;
  display: block;
  overflow: hidden;
  text-decoration: none;
}
.page-resources .listItem a p {
  position: absolute;
  bottom: 0;
  color: #5c5c5c !important;
  z-index: 6000;
  padding: 5px 10px 5px 0px;
  margin: 0;
  background: white;
  border-top: 5px solid #ff6600;
  max-width: 85%;
}
.page-resources .listItem a img {
  display: block;
}
.page-resources .mashup-plain {
  padding: 20px 20px 40px;
  position: relative;
  background: #eeeeee;
}
.page-resources .mashup-plain:before {
  content: " ";
  position: absolute;
  bottom: 0;
  right: 0;
  border-width: 26px 26px 0 0;
  border-style: solid;
  border-color: #cccccc white;
}
.page-resources .primary-text-feature {
  padding-bottom: 20px;
}
.page-resources .primary-text-feature p {
  margin: 10px 0;
}
.page-resources .primary-text-feature p em {
  font-weight: 300;
}
.page-resources .primary-text-feature ul.contextual-tags {
  display: block;
  overflow: hidden;
  margin: 0;
  list-style: none;
  padding: 0;
}
.page-resources .primary-text-feature ul.contextual-tags li {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}
.page-resources .primary-text-feature ul.contextual-tags li a.tag {
  color: white;
  display: inline-block;
  padding: 4px 12px 5px;
  text-transform: lowercase;
  cursor: pointer;
}
.page-resources .resources-filters {
  background: #e8e8e8;
  padding: 10px;
  margin: 0 10px 20px 10px;
  overflow: hidden;
}
.page-resources .resources-filters span.by-filter,
.page-resources .resources-filters span.by-type {
  float: left;
  line-height: 40px;
  margin: 0 20px;
  height: 40px;
}
.page-resources .resources-filters .selectWrap {
  background: url('/assets/img/selectArrow.jpg') no-repeat right center white;
  height: 40px;
  width: 412px;
  float: left;
  border: 1px solid #e8e8e8 !important;
  padding: 0;
  overflow: hidden;
}
.page-resources .resources-filters .selectWrap select {
  margin: 0 !important;
  padding: 0 5px;
  border-radius: 0px;
  border: 0;
  color: #888888;
  outline: none;
  display: block;
  -webkit-appearance: none;
  cursor: pointer;
  width: 440px !important;
  height: 40px;
  line-height: 40px;
  background: transparent;
}
html.lt-ie9 .page-resources .resources-filters .selectWrap select {
  padding-bottom: 10px;
}
.page-resources .tag-list-feature {
  padding: 20px 0;
}
.page-resources .tag-list-feature h3 {
  float: left;
  margin: 0 20px 20px 0;
}
.page-resources .tag-list-feature ul {
  margin: 8px 0 0 0;
}
/*************************
	FLITER TRANSITIONS
************************/

.isotope-item {
  z-index: 2;
}
.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}
/**** Isotope CSS3 transitions ****/

.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
}
.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}
.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -ms-transition-property: -ms-transform, opacity;
  -o-transition-property: -o-transform, opacity;
  transition-property: transform, opacity;
}
/**** disabling Isotope CSS3 transitions ****/

.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}
/***********
	FORM
************/

.page-login .login input[type="text"],
.page-login .login input[type="email"],
.page-login .login input[type="password"] {
  border: 1px solid #cccccc;
  margin-bottom: 20px;
}
/**********
	SHOP
***********/

ul.features li {
  height: 180px;
}
.feature.product-plain .product .productImages {
  float: left;
}
.feature.product-plain .product .productImages > img {
  margin: 0 20px 20px 0;
}
.feature.product-plain .product .productImages ul.imgGallery {
  margin: 20px 20px 20px 0;
  clear: left;
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature.product-plain .product .productImages ul.imgGallery li {
  float: left;
  margin-right: 20px;
}
.feature.product-plain .product .desc {
  position: relative;
}
.feature.product-plain .product .desc .addtoBasketDiv {
  height: 35px;
  line-height: 35px;
  padding: 0 10px;
  font-size: 12px;
}
.feature.productGrid-plain ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.feature.productGrid-plain ul .listItem {
  display: block;
  margin: 0 -10px;
  *zoom: 1;
  padding: 20px 0;
  border-bottom: 1px solid #e8e8e8;
}
.feature.productGrid-plain ul .listItem:before,
.feature.productGrid-plain ul .listItem:after {
  content: "";
  display: table;
}
.feature.productGrid-plain ul .listItem:after {
  clear: both;
}
.feature.productGrid-plain ul .listItem:before,
.feature.productGrid-plain ul .listItem:after {
  display: table;
  content: "";
}
.feature.productGrid-plain ul .listItem:after {
  clear: both;
}
.feature.productGrid-plain ul .listItem:first-child {
  padding-top: 0;
}
.feature.productGrid-plain ul .listItem div.listImage {
  display: inline;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 25%;
  padding: 0 10px;
  *zoom: 1;
}
.feature.productGrid-plain ul .listItem div.listImage:before,
.feature.productGrid-plain ul .listItem div.listImage:after {
  content: "";
  display: table;
}
.feature.productGrid-plain ul .listItem div.listImage:after {
  clear: both;
}
.feature.productGrid-plain ul .listItem div.listImage:before,
.feature.productGrid-plain ul .listItem div.listImage:after {
  display: table;
  content: "";
}
.feature.productGrid-plain ul .listItem div.listImage:after {
  clear: both;
}
.feature.productGrid-plain ul .listItem div.listImage img {
  border: 1px solid #e8e8e8;
}
.feature.productGrid-plain ul .listItem div.desc {
  display: inline;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 75%;
  padding: 0 10px;
  *zoom: 1;
  position: relative;
}
.feature.productGrid-plain ul .listItem div.desc:before,
.feature.productGrid-plain ul .listItem div.desc:after {
  content: "";
  display: table;
}
.feature.productGrid-plain ul .listItem div.desc:after {
  clear: both;
}
.feature.productGrid-plain ul .listItem div.desc:before,
.feature.productGrid-plain ul .listItem div.desc:after {
  display: table;
  content: "";
}
.feature.productGrid-plain ul .listItem div.desc:after {
  clear: both;
}
.feature.productGrid-plain ul .listItem div.desc .addtoBasketDiv {
  position: absolute;
  bottom: 5px;
  height: 35px;
  line-height: 35px;
  padding: 0 10px;
  font-size: 12px;
  background: #e8e8e8;
}
.feature.productGrid-plain ul ul {
  float: left;
}
.feature.productGrid-plain ul ul li {
  padding-left: 0;
  padding: 0;
  border-bottom: none;
}
.feature.productGrid-plain ul input {
  float: right;
}
.feature.productGrid-plain h2 {
  font-size: 25px;
  line-height: 30px;
  margin-top: 0;
}
.feature.productGrid-plain h2 a {
  color: #ff6600;
  text-decoration: none;
}
.feature.productGrid-plain a {
  color: #ff6600;
}
.feature.shoppingBasket-plain legend {
  font-size: 25px;
  line-height: 30px;
  margin: 20px 0 0 0;
  margin: 20px 0;
}
@media only screen and (max-width: 600px) {
  .feature.shoppingBasket-plain legend {
    font-size: 20px;
    line-height: 20px;
  }
}
.feature.shoppingBasket-plain legend + div.form-row {
  margin-top: 0;
}
.feature.shoppingBasket-plain ul.purchase {
  background: #e9e9e9;
  padding: 20px;
  margin: 20px 0;
  list-style: none;
}
.feature.shoppingBasket-plain div.amount {
  background: #e9e9e9;
  padding: 20px;
  margin: 20px 0;
}
.feature.shoppingBasket-plain div.amount p.shipping {
  margin: 0;
}
.feature.shoppingBasket-plain div.form-row {
  margin: 20px 0;
  clear: left;
}
.feature.shoppingBasket-plain input[type="text"],
.feature.shoppingBasket-plain textarea {
  width: 100%;
  max-width: 500px;
  border: 1px solid #e8e8e8;
}
.feature.shoppingBasket-plain img {
  width: 86px;
  height: 86px;
  margin-top: 5px;
}
.feature.shoppingBasket-plain thead {
  background: #e8e8e8;
}
.feature.shoppingBasket-plain thead tr th {
  padding: 5px 0;
  text-align: left;
}
.feature.shoppingBasket-plain td a {
  color: #ff6600;
  text-decoration: none;
}
.feature.shoppingBasket-plain tfoot {
  font-weight: bold;
}
.feature.shoppingBasket-plain #billingAddress p,
.feature.shoppingBasket-plain #shippingAddress p {
  margin-bottom: 0;
}
.feature.shoppingBasket-plain table td input[type="text"] {
  width: 30px;
}
.page-my-account table {
  width: 100%;
}
.page-my-account table tr {
  border-bottom: 1px solid #e9e9e9;
}
.page-my-account table tr td {
  vertical-align: top;
  padding: 10px 0;
}
.page-my-account table tr td img {
  float: left;
  margin: 0 20px 20px 0;
}
.page-my-account table tr td + td {
  padding-left: 10px;
}
/*
#paymentDetails {
	ul {
		margin: 0;
		padding: 0;
		li {
			list-style: none;
		}
	}
	input[type="text"], input[type="password"] {
		width: 400px;
		border: 1px solid lighten(@gray, 55%) !important;
	}
}
*/

#loginDetails {
  background: #e8e8e8;
  padding: 20px;
  margin-top: 20px;
}
#loginDetails h2 {
  margin: 0;
}
#loginDetails input[type="password"] {
  border: 1px solid #e8e8e8;
}
#loginDetails a {
  color: #ff6600;
}
span.error,
span#shippingError {
  font-size: 12px;
  background: #e8e8e8;
}
span#shippingError {
  margin: 0;
}
label.error {
  float: left;
  color: red;
}
ul.purchase {
  *zoom: 1;
}
ul.purchase:before,
ul.purchase:after {
  content: "";
  display: table;
}
ul.purchase:after {
  clear: both;
}
ul.purchase:before,
ul.purchase:after {
  display: table;
  content: "";
}
ul.purchase:after {
  clear: both;
}
ul.purchase li {
  margin-bottom: 20px;
  overflow: hidden;
}
ul.purchase li img {
  display: block;
  float: left;
  margin-right: 10px;
}
ul.purchase li h2 {
  font-size: 22px;
  line-height: normal;
  margin: 0;
}
/*************
	PAGING
**************/

.pager ul.pages {
  margin: 20px 0 0 0;
  padding: 0;
  list-style: none;
}
.pager ul.pages li {
  float: left;
  margin-right: 5px;
}
.pager ul.pages li a {
  padding: 5px 10px;
  background: gainsboro;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
}
.pager ul.pages li a:hover {
  background: #5c5c5c;
  color: white;
}
.pager ul.pages li.pgCurrent a {
  background: #ff6600;
  color: white;
}
/***********
	TAGS
************/

.tag-list-feature,
.post {
  clear: both;
}
.tag-list-feature ul,
.post ul {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.tag-list-feature li,
.post li {
  float: left;
  margin-bottom: 5px;
  height: 24px;
}
.tag-list-feature a.tag,
.post a.tag {
  position: relative;
  display: inline-block;
  float: left;
  height: 24px;
  line-height: 24px;
  margin-left: 20px;
  padding: 0 10px 0 12px;
  background: #ff6600;
  color: white !important;
  text-decoration: none;
  font-size: 11px;
  -webkit-border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -webkit-border-bottom-left-radius: 0px;
  -webkit-border-top-left-radius: 0px;
  -moz-border-radius-topright: 4px;
  -moz-border-radius-bottomright: 4px;
  -moz-border-radius-bottomleft: 0px;
  -moz-border-radius-topleft: 0px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.tag-list-feature a.tag span,
.post a.tag span {
  display: none;
}
.tag-list-feature a.tag:before,
.post a.tag:before {
  content: "";
  float: left;
  position: absolute;
  top: 0;
  left: -12px;
  width: 0;
  height: 0;
  border-color: transparent #ff6600 transparent transparent;
  border-style: solid;
  border-width: 12px 12px 12px 0;
}
.tag-list-feature a.tag:after,
.post a.tag:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  float: left;
  width: 5px;
  height: 5px;
  background: white;
  -webkit-border-top-right-radius: 2px;
  -webkit-border-bottom-right-radius: 2px;
  -webkit-border-bottom-left-radius: 2px;
  -webkit-border-top-left-radius: 2px;
  -moz-border-radius-topright: 2px;
  -moz-border-radius-bottomright: 2px;
  -moz-border-radius-bottomleft: 2px;
  -moz-border-radius-topleft: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.tag-list-feature a.tag:hover,
.post a.tag:hover {
  background: #555555;
}
.tag-list-feature a.tag:hover:before,
.post a.tag:hover:before {
  border-color: transparent #555555 transparent transparent;
}
.accordion-list-feature + .accordion-list-feature {
  margin-top: -20px;
}
.st-accordion {
  width: 100%;
  margin: 0 auto;
}
.st-accordion > ul {
  margin: 0;
  padding: 0;
}
.st-accordion > ul > li {
  border-bottom: 1px solid #e9e9e9;
  border-top: 1px solid white;
  overflow: hidden;
}
.st-accordion > ul > li:first-child {
  border-top: none;
}
.st-accordion > ul > li > div.title {
  font-size: 15px;
  font-weight: bold;
  display: block;
  position: relative;
  line-height: auto;
  padding: 10px 40px 10px 0;
  outline: none;
  text-decoration: none;
  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  cursor: pointer;
}
.st-accordion > ul > li > div.title span {
  background: transparent url('/assets/img/down.png') no-repeat center center;
  text-indent: -9000px;
  width: 18px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: -26px;
  margin-top: -7px;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.st-accordion > ul > li > div.title:hover {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
  -khtml-opacity: 0.8;
}
.st-accordion > ul > li > div.title:hover span {
  opacity: 1;
  right: 10px;
}
.st-accordion > ul > li.st-open > a {
  color: #ff6600;
}
.st-accordion > ul > li.st-open > a span {
  right: 10px;
  opacity: 1;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}
.st-accordion > ul > li .st-content {
  padding: 5px 0px 30px 0px;
}
.st-accordion > ul > li .st-content .feature {
  margin: 0 !important;
}
/**************
	SEARCH
***************/

.searchResults .listItem {
  border-bottom: 1px solid #e9e9e9;
  padding: 0 0 10px 0;
  margin: 0 0 10px 0;
}
.quiz-feature ul,
.quiz-feature ol {
  margin-left: 0 !important;
  padding-left: 0 !important;
}
.quiz-feature img.floatLeft,
.quiz-feature img.floatRight {
  margin-top: 5px;
}
/*
    The thin progress / navigation bar at the top
*/

.quizProgressBar {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  outline: #aa1111;
}
.quizProgressBar li {
  display: inline-block;
  margin: 0;
  padding: 0;
  height: 5px;
  width: 20%;
  background: #dddddd;
  opacity: .8;
}
.quizProgressBar li.correct {
  background: lightgreen;
}
.quizProgressBar li.wrong {
  background: crimson;
  background: #f51520;
}
.quizProgressBar li:hover,
.quizProgressBar li.activeQuestion {
  cursor: pointer;
  opacity: 1;
}
.quizQuestion h3 {
  padding: 15px 20px 12px 100px;
  background: #ebedef;
  position: relative;
  font-size: 18px;
  margin-bottom: 20px;
  min-height: 60px;
}
@media only screen and (max-width: 600px) {
  .quizQuestion h3 {
    font-size: 1em;
  }
}
.quizQuestion h3:before {
  content: "Q";
  position: absolute;
  top: 20px;
  left: 15px;
  font-size: 32px;
  padding: 7px 10px;
  font-weight: bold;
  border-radius: 50%;
  border: 3px solid;
}
@media only screen and (max-width: 600px) {
  .quizQuestion h3:before {
    padding: 12px 10px;
  }
}
/*
    The Paragraph that appears after a question has been submitted
*/

.quizQuestion .resultExplanation {
  display: none;
  overflow: hidden;
  background-color: #e8ec9b;
  padding: 0 20px;
  color: #333333;
  margin-bottom: 20px;
  position: relative;
}
.quizQuestion .resultExplanation:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-width: 36px 36px 0 0;
  border-style: solid;
  border-color: #d6de4d white;
}
.quizQuestion .resultExplanation > span {
  display: block;
  padding: 1.5em 0 0;
}
.quizQuestion .resultExplanation h4 {
  color: #333333;
  font-weight: bold;
}
.quizQuestion .resultExplanation a:hover {
  text-decoration: underline !important;
}
/*
    The green and red score board at the top right
*/

.quizInfoContrainer {
  /*width: 30%;*/
  /*text-align: right;*/
  /*float: right;*/
  display: none;
}
/*.quizInfoContrainer span {
    display: inline-block;
    width: 48%;
    line-height: 100px;
    text-align: center;
    font-size: 3em;
    color: #eee;
    margin: 20px 0;
}
.quizInfoContrainer span.correctAmount {
    background: #90ee90;
}
.quizInfoContrainer span.incorrectAmount {
    background: #dc143c;
}*/

/*
    The main list of question
*/

.feature.quiz-feature ul {
  list-style: none;
  padding: 0 !important;
}
/*
    Answer ol and each answer box
*/

.isCorrect:before {
  color: #ffa700 !important;
  border-color: #ffa700 !important;
}
.answerDisplayText {
  bottom: -10px;
  left: 0px;
  display: block;
  position: relative;
  font-size: 14px;
  margin-top: 20px;
  padding: 10px;
  font-weight: normal;
  border: 3px solid #ffa700;
  border-radius: 2px;
}
.answerDisplayText:before,
.answerDisplayText:after {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
@media only screen and (max-width: 980px) {
  .answerDisplayText:before,
  .answerDisplayText:after {
    display: none !important;
  }
}
@media only screen and (max-width: 1140px) {
  .answerDisplayText:before,
  .answerDisplayText:after {
    display: none !important;
  }
}
.answerDisplayText:after {
  border-width: 8px;
  margin-left: -288px;
  border-bottom-color: #b5b5b5;
  border-bottom-color: #eeeeee;
}
@media only screen and (max-width: 980px) {
  .answerDisplayText:after {
    display: none !important;
  }
}
@media only screen and (max-width: 1140px) {
  .answerDisplayText:after {
    display: none !important;
  }
}
.answerDisplayText:before {
  border-width: 13px;
  margin-left: -293px;
  border-bottom-color: #ffa700;
}
@media only screen and (max-width: 980px) {
  .answerDisplayText:before {
    display: none !important;
  }
}
@media only screen and (max-width: 1140px) {
  .answerDisplayText:before {
    display: none !important;
  }
}
.feature.quiz-feature ol.answers {
  margin: 0 0 20px !important;
  margin-left: 0 !important;
  padding: 0;
  counter-reset: listStyle;
}
.feature.quiz-feature ol.answers > li {
  margin: 5px 0;
  -webkit-transition: background .5s ease;
  -moz-transition: background .5s ease;
  -ms-transition: background .5s ease;
  -o-transition: background .5s ease;
  transition: background .5s ease;
  color: #5c5c5c;
  font-size: 18px;
  font-weight: bold;
  border-left: none;
  background-color: #ebedef;
  list-style-position: inside;
  position: relative;
  counter-increment: listStyle;
  padding: 1.5em 15px 1.5em 100px;
  clear: both;
  background-position: left bottom;
}
.feature.quiz-feature ol.answers > li:before {
  content: counter(listStyle, upper-alpha);
  position: absolute;
  top: 15px;
  left: 15px;
  width: 1.5em;
  padding: 12px 0px;
  border: 3px solid #5c5c5c;
  border-radius: 2px;
  background: none;
  color: #5c5c5c;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}
.feature.quiz-feature ol.answers > li.selectedQuestion {
  background-color: #5c5c5c;
  color: #eeeeee;
}
.feature.quiz-feature ol.answers > li.selectedQuestion:before {
  border: 3px solid #ebedef;
  color: #ebedef;
}
.feature.quiz-feature ol.answers > li.selectedQuestion.isIncorrect:before {
  color: #f51520;
  border-color: #f51520;
}
.feature.quiz-feature ol.answers > li.selectedQuestion.isIncorrect .answerDisplayText {
  border: 3px solid #f51520;
  border-radius: 2px;
  color: #facdcd;
  color: #ebedef;
}
.feature.quiz-feature ol.answers > li.selectedQuestion.isIncorrect .answerDisplayText:after {
  border-bottom-color: #b5b5b5;
  border-bottom-color: #5c5c5c;
}
@media only screen and (max-width: 980px) {
  .feature.quiz-feature ol.answers > li.selectedQuestion.isIncorrect .answerDisplayText:after {
    display: none !important;
  }
}
@media only screen and (max-width: 1140px) {
  .feature.quiz-feature ol.answers > li.selectedQuestion.isIncorrect .answerDisplayText:after {
    display: none !important;
  }
}
.feature.quiz-feature ol.answers > li.selectedQuestion.isIncorrect .answerDisplayText:before {
  border-bottom-color: #f51520;
}
@media only screen and (max-width: 980px) {
  .feature.quiz-feature ol.answers > li.selectedQuestion.isIncorrect .answerDisplayText:before {
    display: none !important;
  }
}
@media only screen and (max-width: 1140px) {
  .feature.quiz-feature ol.answers > li.selectedQuestion.isIncorrect .answerDisplayText:before {
    display: none !important;
  }
}
.feature.quiz-feature ol.answers > li.selectedQuestion.isCorrect:before {
  color: lightgreen !important;
  border-color: lightgreen !important;
}
.feature.quiz-feature ol.answers > li.selectedQuestion.isCorrect .answerDisplayText {
  border: 3px solid lightgreen;
  border-radius: 2px;
  color: #ebedef;
}
.feature.quiz-feature ol.answers > li.selectedQuestion.isCorrect .answerDisplayText:after {
  border-bottom-color: #b5b5b5;
  border-bottom-color: #5c5c5c;
}
@media only screen and (max-width: 980px) {
  .feature.quiz-feature ol.answers > li.selectedQuestion.isCorrect .answerDisplayText:after {
    display: none !important;
  }
}
@media only screen and (max-width: 1140px) {
  .feature.quiz-feature ol.answers > li.selectedQuestion.isCorrect .answerDisplayText:after {
    display: none !important;
  }
}
.feature.quiz-feature ol.answers > li.selectedQuestion.isCorrect .answerDisplayText:before {
  border-bottom-color: lightgreen;
}
@media only screen and (max-width: 980px) {
  .feature.quiz-feature ol.answers > li.selectedQuestion.isCorrect .answerDisplayText:before {
    display: none !important;
  }
}
@media only screen and (max-width: 1140px) {
  .feature.quiz-feature ol.answers > li.selectedQuestion.isCorrect .answerDisplayText:before {
    display: none !important;
  }
}
.feature.quiz-feature ol.answers > li.selectedQuestion,
.feature.quiz-feature ol.answers > li:hover {
  cursor: pointer;
}
.feature.quiz-feature ol.answers > li img {
  max-width: 2em;
  height: auto;
  float: right;
  margin-top: -16px;
  margin-right: -4px;
}
/*
.isCorrect {
    .resultsView {
        padding: 0;
    }
}
*/

.selectedQuestion.isCorrect .resultsView {
  padding: 10px;
}
.isCorrect,
.isIncorrect {
  background-color: #f9fafa;
  color: #d4d9dd;
}
.isCorrect:before {
  color: #ffa700 !important;
  border-color: #ffa700 !important;
}
.quizControls {
  margin-top: 20px;
}
/*
    Hides the results text for each answer until the question is submitted
*/

li.notSubmited ol.answers .resultsView,
ol.answers li.isIncorrect:not(.selectedQuestion) .answerDisplayText {
  display: none;
}
.submitQ,
.skipQ {
  font-weight: bold;
  font-size: 18px;
}
.quizBtn.deactive,
.quizBtn[disabled="disabled"] {
  opacity: .3;
}
.resultsMessage {
  font-size: 32px;
  line-height: 1.25em;
  text-align: center;
  font-weight: bold;
}
@media only screen and (max-width: 500px) {
  .resultsMessage {
    font-size: 24px;
  }
}
.resultsFeedBack {
  font-size: 32px;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  margin: 40px auto;
  line-height: 1em;
}
.noAnswersSelectedvalidation {
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 18px;
  color: #f51520;
}
.sponsorLinks {
  clear: both;
  display: block;
  overflow: hidden;
  color: #333333;
  margin: 40px 0;
  position: relative;
}
.sponsorLinks h4 {
  color: #333333;
  font-weight: bold;
}
.sponsorLinks img {
  margin: 0 20px 20px 0;
}
.sponsorLinks a:hover {
  text-decoration: underline !important;
}
.resultsScreen {
  background: #eeeeee;
  padding: 40px 40px 20px;
}
.resultsScreen::before,
.resultsScreen::after {
  content: " ";
  display: table;
}
.resultsScreen::after {
  clear: both;
}
.resultsScreen p.percentage,
.resultsScreen p.overallTotal {
  border: 3px solid #5c5c5c;
  border-radius: 3px;
  width: 40%;
  padding: 20px;
  text-align: center;
  display: block;
  box-sizing: border-box;
  margin-bottom: 40px;
  float: left;
  font-size: 24px;
  line-height: 1.25em;
  min-height: 70px;
  font-weight: bold;
}
@media only screen and (max-width: 500px) {
  .resultsScreen p.percentage,
  .resultsScreen p.overallTotal {
    width: 100%;
    float: none;
    font-size: 16px;
    padding: 10px;
    min-height: 40px;
  }
}
.resultsScreen p.overallTotal {
  float: right;
}
@media only screen and (max-width: 500px) {
  .resultsScreen p.overallTotal {
    float: none;
  }
}
.resultsMessageParagraph {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
/*
	
	New For Schools
*/

html .page-new-for-schools a[href^="/"] .listImage span.title {
  border-top: 7px solid #ff6600;
}
/**************
	FEATURE
***************/

#main-content > .feature:nth-of-type(1) {
  margin-top: 20px;
}
@media only screen and (max-width: 980px) {
  #main-content > .feature:nth-of-type(1) {
    margin-top: 10px;
  }
}
#main-content:not(.article) .feature.image-grid-feature .listItem:nth-child(4) {
  clear: left;
}
@media only screen and (max-width: 980px) {
  #main-content:not(.article) .feature.image-grid-feature .listItem:nth-child(4) {
    clear: none;
  }
  #main-content:not(.article) .feature.image-grid-feature .listItem:nth-child(odd) {
    clear: left;
  }
}
.feature {
  *zoom: 1;
  margin-bottom: 20px;
}
.feature:before,
.feature:after {
  content: "";
  display: table;
}
.feature:after {
  clear: both;
}
.feature:before,
.feature:after {
  display: table;
  content: "";
}
.feature:after {
  clear: both;
}
.feature h2:first-child,
.feature h3:first-child,
.feature h4:first-child,
.feature p:first-child {
  margin-top: 0;
}
.feature *:last-child {
  margin-bottom: 0;
}
.feature.primary-text-feature h2:last-child,
.feature.secondary-text-feature .feature.mashup-feature h2:last-child,
.feature.primary-text-feature h3:last-child,
.feature.secondary-text-feature .feature.mashup-feature h3:last-child,
.feature.primary-text-feature h4:last-child,
.feature.secondary-text-feature .feature.mashup-feature h4:last-child {
  margin-bottom: -20px;
}
.feature.secondary-text-feature {
  padding: 20px;
  margin: 20px 0;
  background: #eeeeee;
}
.feature.shaded-text-feature {
  padding: 20px;
  margin: 20px 0;
}
.feature.shaded-text-feature ol > li {
  border-left-color: white !important;
}
.feature.shaded-text-feature ol > li:before {
  background: white !important;
}
.feature.list-feature ul,
.feature.template-blog-feature ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.feature.image-list-feature .list-items,
.feature.rotating-image-list-feature .list-items {
  *zoom: 1;
}
.feature.image-list-feature .list-items:before,
.feature.rotating-image-list-feature .list-items:before,
.feature.image-list-feature .list-items:after,
.feature.rotating-image-list-feature .list-items:after {
  content: "";
  display: table;
}
.feature.image-list-feature .list-items:after,
.feature.rotating-image-list-feature .list-items:after {
  clear: both;
}
.feature.image-list-feature .list-items:before,
.feature.rotating-image-list-feature .list-items:before,
.feature.image-list-feature .list-items:after,
.feature.rotating-image-list-feature .list-items:after {
  display: table;
  content: "";
}
.feature.image-list-feature .list-items:after,
.feature.rotating-image-list-feature .list-items:after {
  clear: both;
}
.feature.image-list-feature .listItem,
.feature.rotating-image-list-feature .listItem {
  *zoom: 1;
  margin: 10px 0;
}
.feature.image-list-feature .listItem:before,
.feature.rotating-image-list-feature .listItem:before,
.feature.image-list-feature .listItem:after,
.feature.rotating-image-list-feature .listItem:after {
  content: "";
  display: table;
}
.feature.image-list-feature .listItem:after,
.feature.rotating-image-list-feature .listItem:after {
  clear: both;
}
.feature.image-list-feature .listItem:before,
.feature.rotating-image-list-feature .listItem:before,
.feature.image-list-feature .listItem:after,
.feature.rotating-image-list-feature .listItem:after {
  display: table;
  content: "";
}
.feature.image-list-feature .listItem:after,
.feature.rotating-image-list-feature .listItem:after {
  clear: both;
}
.feature.image-list-feature .listItem h3,
.feature.rotating-image-list-feature .listItem h3 {
  margin: 0;
}
.feature.image-list-feature .listItem p,
.feature.rotating-image-list-feature .listItem p {
  margin-top: 0;
}
.feature.image-list-feature .listItem .listImage,
.feature.rotating-image-list-feature .listItem .listImage {
  float: left;
  margin-right: 20px;
}
.feature.image-grid-feature,
.feature.rotating-image-grid-feature {
  display: block;
  margin: 0 -10px;
  *zoom: 1;
}
.feature.image-grid-feature:before,
.feature.rotating-image-grid-feature:before,
.feature.image-grid-feature:after,
.feature.rotating-image-grid-feature:after {
  content: "";
  display: table;
}
.feature.image-grid-feature:after,
.feature.rotating-image-grid-feature:after {
  clear: both;
}
.feature.image-grid-feature:before,
.feature.rotating-image-grid-feature:before,
.feature.image-grid-feature:after,
.feature.rotating-image-grid-feature:after {
  display: table;
  content: "";
}
.feature.image-grid-feature:after,
.feature.rotating-image-grid-feature:after {
  clear: both;
}
.feature.image-grid-feature .listItem,
.feature.rotating-image-grid-feature .listItem {
  display: inline;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 50%;
  padding: 0 10px;
  *zoom: 1;
}
.feature.image-grid-feature .listItem:before,
.feature.rotating-image-grid-feature .listItem:before,
.feature.image-grid-feature .listItem:after,
.feature.rotating-image-grid-feature .listItem:after {
  content: "";
  display: table;
}
.feature.image-grid-feature .listItem:after,
.feature.rotating-image-grid-feature .listItem:after {
  clear: both;
}
.feature.image-grid-feature .listItem:before,
.feature.rotating-image-grid-feature .listItem:before,
.feature.image-grid-feature .listItem:after,
.feature.rotating-image-grid-feature .listItem:after {
  display: table;
  content: "";
}
.feature.image-grid-feature .listItem:after,
.feature.rotating-image-grid-feature .listItem:after {
  clear: both;
}
@media only screen and (max-width: 500px) {
  .feature.image-grid-feature .listItem,
  .feature.rotating-image-grid-feature .listItem {
    display: inline;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 0 10px;
    *zoom: 1;
  }
  .feature.image-grid-feature .listItem:before,
  .feature.rotating-image-grid-feature .listItem:before,
  .feature.image-grid-feature .listItem:after,
  .feature.rotating-image-grid-feature .listItem:after {
    content: "";
    display: table;
  }
  .feature.image-grid-feature .listItem:after,
  .feature.rotating-image-grid-feature .listItem:after {
    clear: both;
  }
  .feature.image-grid-feature .listItem:before,
  .feature.rotating-image-grid-feature .listItem:before,
  .feature.image-grid-feature .listItem:after,
  .feature.rotating-image-grid-feature .listItem:after {
    display: table;
    content: "";
  }
  .feature.image-grid-feature .listItem:after,
  .feature.rotating-image-grid-feature .listItem:after {
    clear: both;
  }
}
.feature.image-grid-feature .listItem:nth-child(odd),
.feature.rotating-image-grid-feature .listItem:nth-child(odd) {
  clear: left;
}
.feature.image-grid-feature .listItem a,
.feature.rotating-image-grid-feature .listItem a {
  position: relative;
  display: block;
  text-decoration: none;
  color: #5c5c5c;
  margin-top: 20px;
}
.feature.image-grid-feature .listItem a .listImage,
.feature.rotating-image-grid-feature .listItem a .listImage {
  position: relative;
}
.feature.image-grid-feature .listItem a .listImage img,
.feature.rotating-image-grid-feature .listItem a .listImage img {
  display: block;
  width: 100%;
}
.feature.image-grid-feature .listItem a .listImage .tint,
.feature.rotating-image-grid-feature .listItem a .listImage .tint {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  cursor: pointer;
  display: block;
  -webkit-transition: background 0.5s ease-in;
  -moz-transition: background 0.5s ease-in;
  -ms-transition: background 0.5s ease-in;
  -o-transition: background 0.5s ease-in;
  transition: background 0.5s ease-in;
  -webkit-transition: all background 0.5s ease-in ease-out;
  -moz-transition: all background 0.5s ease-in ease-out;
  transition: all background 0.5s ease-in ease-out;
}
.feature.image-grid-feature .listItem a .title,
.feature.rotating-image-grid-feature .listItem a .title {
  position: absolute;
  bottom: 0px;
  font-size: 20px;
  display: inline-block;
  padding: 10px 13px 5px 0px;
  background: white;
  font-weight: 100;
  margin-bottom: 0px;
  max-width: 85%;
}
.feature.image-grid-feature .listItem a p,
.feature.rotating-image-grid-feature .listItem a p {
  display: block;
  padding: 0 0 5px;
  font-size: 12px;
  margin-top: 10px;
}
.feature.image-grid-feature h3,
.feature.rotating-image-grid-feature h3 {
  margin-left: 10px;
}
.feature.image-gallery-feature ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.feature.image-gallery-feature ul li {
  float: left;
  margin-right: 20px;
}
.feature.blog-list-feature .list-items hr {
  display: block;
  width: 100%;
  border: none;
  height: 1px;
  background: #e8e8e8;
}
.feature.blog-list-feature .list-items .post h2 {
  margin-top: 0;
}
.feature.blog-list-feature .list-items .post .comments {
  float: right;
}
.feature.home-slider-feature #sliderWrapper {
  position: relative;
  width: 100%;
}
.feature.home-slider-feature #sliderWrapper img {
  padding: 0;
  margin: 0;
}
.feature.home-slider-feature #sliderWrapper .next,
.feature.home-slider-feature #sliderWrapper .prev {
  display: block;
  height: 80px;
  width: 80px;
  background-image: url("/assets/img/sliderArrows.jpg");
  background-size: auto 80px;
  background-color: #ff6600;
  text-indent: -9999px;
  position: absolute;
  top: 50%;
  margin-top: -40px;
  opacity: 0.80;
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  -webkit-transition: all all 0.5s ease-in ease-out;
  -moz-transition: all all 0.5s ease-in ease-out;
  transition: all all 0.5s ease-in ease-out;
}
@media only screen and (max-width: 980px) {
  .feature.home-slider-feature #sliderWrapper .next,
  .feature.home-slider-feature #sliderWrapper .prev {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    background-size: auto 40px;
  }
}
.feature.home-slider-feature #sliderWrapper .next {
  background-position: left center;
  left: -20px;
}
.feature.home-slider-feature #sliderWrapper .next:hover {
  opacity: 1;
}
@media only screen and (max-width: 980px) {
  .feature.home-slider-feature #sliderWrapper .next {
    left: -20px;
  }
}
@media only screen and (max-width: 500px) {
  .feature.home-slider-feature #sliderWrapper .next {
    left: -10px;
  }
}
.feature.home-slider-feature #sliderWrapper .prev {
  background-position: right center;
  right: -20px;
}
.feature.home-slider-feature #sliderWrapper .prev:hover {
  opacity: 1;
}
@media only screen and (max-width: 980px) {
  .feature.home-slider-feature #sliderWrapper .prev {
    right: -20px;
  }
}
@media only screen and (max-width: 500px) {
  .feature.home-slider-feature #sliderWrapper .prev {
    right: -10px;
  }
}
.feature.blog-slider-feature {
  margin: 40px 0;
  position: relative;
  background: #f3f3f3;
  padding: 10px 20px;
}
@media only screen and (max-width: 600px) {
  .feature.blog-slider-feature {
    display: none;
  }
}
.feature.blog-slider-feature .title {
  font-size: 35px;
  line-height: 40px;
  padding: 0;
  margin: 0 0 20px 0;
}
.feature.blog-slider-feature ul {
  padding: 0;
  margin: 0;
}
.feature.blog-slider-feature ul li {
  float: left;
  list-style: none;
  /* width: 340px; */
  margin-bottom: 0;
}
.feature.blog-slider-feature ul li:nth-child(even) {
  margin-right: 0;
}
.feature.blog-slider-feature ul li .date-slider {
  float: left;
  width: 40px;
  height: 55px;
  text-align: center;
  text-transform: uppercase;
  margin-right: 10px;
}
.feature.blog-slider-feature ul li .date-slider .day {
  font-size: 25px;
}
.feature.blog-slider-feature ul li a {
  font-weight: 500;
  font-size: 18px;
  display: block;
  margin-top: 0px;
  margin-left: 50px;
  text-transform: capitalize;
}
.feature.blog-slider-feature .next,
.feature.blog-slider-feature .prev {
  position: absolute;
  display: block;
  height: 39px;
  width: 39px;
  background: #c8c8c8;
  top: 0;
  opacity: 0.80;
  text-indent: -9999px;
  -webkit-transition: opacity 0.3s ease-in;
  -moz-transition: opacity 0.3s ease-in;
  -ms-transition: opacity 0.3s ease-in;
  -o-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
  -webkit-transition: all opacity 0.3s ease-in ease-out;
  -moz-transition: all opacity 0.3s ease-in ease-out;
  transition: all opacity 0.3s ease-in ease-out;
}
.feature.blog-slider-feature .next {
  background: url("/assets/img/blogArrows.jpg") right center;
  right: 0;
}
.feature.blog-slider-feature .next:hover {
  opacity: 1;
}
.feature.blog-slider-feature .prev {
  background: url("/assets/img/blogArrows.jpg") left center;
  right: 50px;
}
.feature.blog-slider-feature .prev:hover {
  opacity: 1;
}
.feature.twitter-feed-feature {
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  color: white;
  font-size: 12px;
}
@media only screen and (max-width: 600px) {
  .feature.twitter-feed-feature {
    display: none;
  }
}
.feature.twitter-feed-feature span.title {
  font-size: 35px;
  font-weight: 100;
}
.feature.twitter-feed-feature span.title a {
  color: white !important;
}
.feature.twitter-feed-feature span.title a small {
  font-size: 50%;
}
.feature.twitter-feed-feature ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature.twitter-feed-feature ul li {
  *zoom: 1;
  padding: 10px 0 10px 60px;
  overflow: visible;
}
.feature.twitter-feed-feature ul li:before,
.feature.twitter-feed-feature ul li:after {
  content: "";
  display: table;
}
.feature.twitter-feed-feature ul li:after {
  clear: both;
}
.feature.twitter-feed-feature ul li:before,
.feature.twitter-feed-feature ul li:after {
  display: table;
  content: "";
}
.feature.twitter-feed-feature ul li:after {
  clear: both;
}
.feature.twitter-feed-feature ul li a.tweet_avatar {
  float: left;
  margin-left: -60px;
  padding: 0;
  overflow: visible;
  height: 50px;
  width: 50px;
  display: block;
}
.feature.twitter-feed-feature ul li a.tweet_avatar img {
  height: 50px;
  width: 50px;
  display: block;
  /*
	html.lt-ie9 & {
							height: 50px;
							width: 50px;
							display: block;
						}
*/

}
.feature.twitter-feed-feature ul li a {
  color: white;
}
.feature.twitter-feed-feature ul li .tweet_time {
  display: block;
}
.feature.twitter-feed-feature ul li:last-child {
  border-bottom: none !important;
}
.feature.twitter-feed-feature:after {
  content: " ";
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: -10px;
  border-width: 10px 10px 0 0;
  border-style: solid;
  display: block;
}
.feature.poll-feature {
  padding: 20px;
  margin: 20px 0;
  background: #eeeeee;
}
.feature.poll-feature h3 {
  margin-bottom: 10px;
}
.feature.poll-feature input[type="radio"] {
  display: inline-block;
  float: left;
}
.feature.poll-feature label {
  padding-left: 20px;
  margin-bottom: 10px;
}
.feature.poll-feature label.status {
  margin: 15px 0 0 0;
  padding: 10px 15px;
  background: white;
}
.feature.poll-feature ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.feature.poll-feature ul li {
  margin-bottom: 10px;
}
.feature.poll-feature ul li div {
  height: 18px;
}
.feature.poll-feature button {
  display: inline-block;
  height: 34px;
  line-height: 34px;
  margin-top: 5px;
  padding: 0 10px;
  border: none;
  text-decoration: none !important;
  color: white;
}
.feature.template-blog-feature a {
  font-size: 16px;
  font-weight: bold;
}
html .page- .image-grid-feature .listItem,
html .page-.rotating-image-grid-feature .listItem {
  display: inline;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 33.333333333%;
  padding: 0 10px;
  *zoom: 1;
}
html .page- .image-grid-feature .listItem:before,
html .page-.rotating-image-grid-feature .listItem:before,
html .page- .image-grid-feature .listItem:after,
html .page-.rotating-image-grid-feature .listItem:after {
  content: "";
  display: table;
}
html .page- .image-grid-feature .listItem:after,
html .page-.rotating-image-grid-feature .listItem:after {
  clear: both;
}
html .page- .image-grid-feature .listItem:before,
html .page-.rotating-image-grid-feature .listItem:before,
html .page- .image-grid-feature .listItem:after,
html .page-.rotating-image-grid-feature .listItem:after {
  display: table;
  content: "";
}
html .page- .image-grid-feature .listItem:after,
html .page-.rotating-image-grid-feature .listItem:after {
  clear: both;
}
@media only screen and (max-width: 980px) {
  html .page- .image-grid-feature .listItem,
  html .page-.rotating-image-grid-feature .listItem {
    display: inline;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 50%;
    padding: 0 10px;
    *zoom: 1;
  }
  html .page- .image-grid-feature .listItem:before,
  html .page-.rotating-image-grid-feature .listItem:before,
  html .page- .image-grid-feature .listItem:after,
  html .page-.rotating-image-grid-feature .listItem:after {
    content: "";
    display: table;
  }
  html .page- .image-grid-feature .listItem:after,
  html .page-.rotating-image-grid-feature .listItem:after {
    clear: both;
  }
  html .page- .image-grid-feature .listItem:before,
  html .page-.rotating-image-grid-feature .listItem:before,
  html .page- .image-grid-feature .listItem:after,
  html .page-.rotating-image-grid-feature .listItem:after {
    display: table;
    content: "";
  }
  html .page- .image-grid-feature .listItem:after,
  html .page-.rotating-image-grid-feature .listItem:after {
    clear: both;
  }
}
@media only screen and (max-width: 500px) {
  html .page- .image-grid-feature .listItem,
  html .page-.rotating-image-grid-feature .listItem {
    display: inline;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 0 10px;
    *zoom: 1;
  }
  html .page- .image-grid-feature .listItem:before,
  html .page-.rotating-image-grid-feature .listItem:before,
  html .page- .image-grid-feature .listItem:after,
  html .page-.rotating-image-grid-feature .listItem:after {
    content: "";
    display: table;
  }
  html .page- .image-grid-feature .listItem:after,
  html .page-.rotating-image-grid-feature .listItem:after {
    clear: both;
  }
  html .page- .image-grid-feature .listItem:before,
  html .page-.rotating-image-grid-feature .listItem:before,
  html .page- .image-grid-feature .listItem:after,
  html .page-.rotating-image-grid-feature .listItem:after {
    display: table;
    content: "";
  }
  html .page- .image-grid-feature .listItem:after,
  html .page-.rotating-image-grid-feature .listItem:after {
    clear: both;
  }
}
html .page- .image-grid-feature .listItem:nth-child(odd),
html .page-.rotating-image-grid-feature .listItem:nth-child(odd) {
  clear: none;
}
html .page- .image-grid-feature .title,
html .page-.rotating-image-grid-feature .title {
  font-size: 35px !important;
  line-height: 35px;
  padding: 13px 13px 4px 0px !important;
  margin-bottom: -7px !important;
}
@media only screen and (max-width: 980px) {
  html .page- .image-grid-feature .title,
  html .page-.rotating-image-grid-feature .title {
    font-size: 20px !important;
    line-height: 20px;
    padding: 10px 10px 4px 0px !important;
  }
}
aside#sidebar-first .image-grid-feature .listItem,
aside#sidebar-first.rotating-image-grid-feature .listItem {
  display: inline;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 0 10px;
  *zoom: 1;
}
aside#sidebar-first .image-grid-feature .listItem:before,
aside#sidebar-first.rotating-image-grid-feature .listItem:before,
aside#sidebar-first .image-grid-feature .listItem:after,
aside#sidebar-first.rotating-image-grid-feature .listItem:after {
  content: "";
  display: table;
}
aside#sidebar-first .image-grid-feature .listItem:after,
aside#sidebar-first.rotating-image-grid-feature .listItem:after {
  clear: both;
}
aside#sidebar-first .image-grid-feature .listItem:before,
aside#sidebar-first.rotating-image-grid-feature .listItem:before,
aside#sidebar-first .image-grid-feature .listItem:after,
aside#sidebar-first.rotating-image-grid-feature .listItem:after {
  display: table;
  content: "";
}
aside#sidebar-first .image-grid-feature .listItem:after,
aside#sidebar-first.rotating-image-grid-feature .listItem:after {
  clear: both;
}
aside#sidebar-first .primary-text-feature img,
aside#sidebar-first .secondary-text-feature img {
  width: 100%;
  height: auto;
}
#main-content.landing .image-grid-feature .listItem,
#main-content.landing.rotating-image-grid-feature .listItem {
  display: inline;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 50%;
  padding: 0 10px;
  *zoom: 1;
}
#main-content.landing .image-grid-feature .listItem:before,
#main-content.landing.rotating-image-grid-feature .listItem:before,
#main-content.landing .image-grid-feature .listItem:after,
#main-content.landing.rotating-image-grid-feature .listItem:after {
  content: "";
  display: table;
}
#main-content.landing .image-grid-feature .listItem:after,
#main-content.landing.rotating-image-grid-feature .listItem:after {
  clear: both;
}
#main-content.landing .image-grid-feature .listItem:before,
#main-content.landing.rotating-image-grid-feature .listItem:before,
#main-content.landing .image-grid-feature .listItem:after,
#main-content.landing.rotating-image-grid-feature .listItem:after {
  display: table;
  content: "";
}
#main-content.landing .image-grid-feature .listItem:after,
#main-content.landing.rotating-image-grid-feature .listItem:after {
  clear: both;
}
@media only screen and (max-width: 980px) {
  #main-content.landing .image-grid-feature .listItem,
  #main-content.landing.rotating-image-grid-feature .listItem {
    display: inline;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 50%;
    padding: 0 10px;
    *zoom: 1;
  }
  #main-content.landing .image-grid-feature .listItem:before,
  #main-content.landing.rotating-image-grid-feature .listItem:before,
  #main-content.landing .image-grid-feature .listItem:after,
  #main-content.landing.rotating-image-grid-feature .listItem:after {
    content: "";
    display: table;
  }
  #main-content.landing .image-grid-feature .listItem:after,
  #main-content.landing.rotating-image-grid-feature .listItem:after {
    clear: both;
  }
  #main-content.landing .image-grid-feature .listItem:before,
  #main-content.landing.rotating-image-grid-feature .listItem:before,
  #main-content.landing .image-grid-feature .listItem:after,
  #main-content.landing.rotating-image-grid-feature .listItem:after {
    display: table;
    content: "";
  }
  #main-content.landing .image-grid-feature .listItem:after,
  #main-content.landing.rotating-image-grid-feature .listItem:after {
    clear: both;
  }
}
@media only screen and (max-width: 500px) {
  #main-content.landing .image-grid-feature .listItem,
  #main-content.landing.rotating-image-grid-feature .listItem {
    display: inline;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 0 10px;
    *zoom: 1;
  }
  #main-content.landing .image-grid-feature .listItem:before,
  #main-content.landing.rotating-image-grid-feature .listItem:before,
  #main-content.landing .image-grid-feature .listItem:after,
  #main-content.landing.rotating-image-grid-feature .listItem:after {
    content: "";
    display: table;
  }
  #main-content.landing .image-grid-feature .listItem:after,
  #main-content.landing.rotating-image-grid-feature .listItem:after {
    clear: both;
  }
  #main-content.landing .image-grid-feature .listItem:before,
  #main-content.landing.rotating-image-grid-feature .listItem:before,
  #main-content.landing .image-grid-feature .listItem:after,
  #main-content.landing.rotating-image-grid-feature .listItem:after {
    display: table;
    content: "";
  }
  #main-content.landing .image-grid-feature .listItem:after,
  #main-content.landing.rotating-image-grid-feature .listItem:after {
    clear: both;
  }
}
#main-content.landing .image-grid-feature .title,
#main-content.landing.rotating-image-grid-feature .title {
  font-size: 60px !important;
  padding: 25px 20px 13px 0px;
  margin-bottom: -1px;
}
@media only screen and (max-width: 980px) {
  #main-content.landing .image-grid-feature .title,
  #main-content.landing.rotating-image-grid-feature .title {
    font-size: 40px !important;
    padding: 15px 15px 10px 0px;
  }
}
@media only screen and (max-width: 600px) {
  #main-content.landing .image-grid-feature .title,
  #main-content.landing.rotating-image-grid-feature .title {
    font-size: 20px !important;
    padding: 5px 5px 5px 0px;
  }
}
@media only screen and (max-width: 500px) {
  #main-content.landing .image-grid-feature .title,
  #main-content.landing.rotating-image-grid-feature .title {
    font-size: 40px !important;
    padding: 15px 15px 10px 0px;
  }
}
#main-content .feature.mailchimp-feature-main,
aside .feature.mailchimp-feature-main {
  background: #e9e9e9;
  padding: 20px;
}
#main-content .feature.mailchimp-feature-main h3,
aside .feature.mailchimp-feature-main h3 {
  margin: 0 0 10px 0;
}
#main-content .feature.list-feature li,
aside .feature.list-feature li {
  margin-bottom: 20px;
}
/* @import "../../../baseTheme/less/iconize.less"; */

/****************
	ICON FONT
*****************/

@font-face {
  font-family: 'icomoon';
  src: url('../../../baseTheme/fonts/icomoon.eot');
  src: url('../../../baseTheme/fonts/icomoon.eot?#iefix') format('embedded-opentype'), url('../../../baseTheme/fonts/icomoon.svg#icomoon') format('svg'), url('../../../baseTheme/fonts/icomoon.woff') format('woff'), url('../../../baseTheme/fonts/icomoon.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
/* Use the following CSS code if you want to use data attributes for inserting your icons */

[data-icon]:before {
  font-family: 'icomoon';
  content: attr(data-icon);
  speak: none;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
}
/* Use the following CSS code if you want to have a class per icon */

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: 'icomoon';
  font-style: normal;
  speak: none;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
}
.icon-facebook:before {
  content: "\e000";
}
.icon-youtube:before {
  content: "\e001";
}
.icon-twitter:before {
  content: "\e002";
}
.icon-feed:before {
  content: "\e003";
}
/***************
	 Edit Mode
****************/

.inEditMode #editbar_editBar .short {
  height: 70px !important;
  background-image: url(/cms/css/images/header.png);
  background-color: #333333;
  background-repeat: no-repeat;
}
.inEditMode #editbar_editBar #editBarProperties {
  width: 87px;
  height: 25px;
  line-height: 20px;
  font-size: 12px;
  padding: 5px 0 0 22px;
  color: white;
  font-weight: bold;
  position: absolute;
  left: 20px;
  background: url(/cms/css/images/editBtn.png) no-repeat 0 -90px;
  cursor: pointer;
}
.inEditMode #editbar_editBar button {
  display: block;
  font-size: 12px;
  color: white !important;
  width: 114px;
  height: 32px;
  margin: -7px 5px 0 0;
  text-align: center;
  border: 1px #999999 solid;
  background: url(/cms/css/images/editBtn.png) no-repeat;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}
.inEditMode #editbar_editBar button span {
  color: white !important;
}
.inEditMode #editbar_editBar #editBarBtns button#previewB.ui-state-hover:hover {
  background: url(/cms/css/images/editBtn.png) no-repeat -114px 0px !important;
}
.inEditMode #editbar_editBar #editBarBtns button#saveB.ui-state-hover:hover {
  background: url(/cms/css/images/editBtn.png) no-repeat -114px -60px !important;
}
.inEditMode #editbar_editBar #editBarBtns button#cancelB.ui-state-hover:hover {
  background: url(/cms/css/images/editBtn.png) no-repeat -114px -30px !important;
}
html .accordion ul.features li a.tertiary-text-feature {
  background: url(/cms/css/images/features/text-primary.png) no-repeat 0 0 !important;
}
html .accordion ul.features li a.blue-text-feature {
  background: url(/cms/css/images/features/text-primary.png) no-repeat 0 0 !important;
}
/* to be core */

.inEditMode ul.features .notAllowed {
  opacity: 0.2;
}
.inEditMode #selectFeatureForm h3 a {
  font-size: 16px;
  font-weight: normal;
}
.inEditMode .feature.image-grid-feature .listItem:nth-child(odd),
.inEditMode .feature.rotating-image-grid-feature .listItem:nth-child(odd) {
  clear: none;
}
.inEditMode .ui-dialog {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid white;
  padding: 10px;
}
.inEditMode .ui-dialog,
.inEditMode .ui-dialog-titlebar,
.inEditMode .ui-widget-content {
  background: #f0f0f0;
}
.inEditMode .ui-dialog .ui-dialog-titlebar {
  padding: 0;
  margin-bottom: 5px;
}
.inEditMode .ui-dialog .ui-dialog-content {
  padding: 0;
}
.inEditMode .ui-dialog .ui-dialog-title {
  padding: 12px 35px 10px 35px;
  font-weight: normal;
  font-size: 18px;
  font-weight: bold !important;
  font-size: 13px;
  display: inline-block;
  background: white;
  line-height: normal;
  margin: 0;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.inEditMode #listTypeRbl label {
  width: 80%;
  line-height: normal !important;
}
.inEditMode #listTypeRbl input {
  display: inline-block;
}
.inEditMode #itemPageEnabled {
  display: inline-block;
}
.inEditMode #CMS .ui-tabs .ui-tabs-panel {
  background: white;
}
.inEditMode #CMS .ui-tabs-panel {
  margin: 0 0;
  -moz-top-left-radius: 0;
  -webkit-top-left-radius: 0;
  border-top-left-radius: 0;
  -moz-box-shadow: 2px 2px 2px #e9e9e9;
  -webkit-box-shadow: 2px 2px 2px #e9e9e9;
  box-shadow: 2px 2px 2px #e9e9e9;
  padding: 20px;
  -moz-border-radius: 0px 5px 5px 5px;
  -webkit-border-radius: 0px 5px 5px 5px;
  border-radius: 0px 5px 5px 5px;
  border: 1px solid white;
}
.inEditMode #CMS .ui-tabs .ui-tabs-nav {
  float: none;
}
.inEditMode #CMS .ui-tabs-nav {
  clear: both;
}
.inEditMode #CMS .ui-widget-header {
  background: none;
}
.inEditMode #CMS .ui-state-active a {
  background: white !important;
  color: #444444 !important;
}
.inEditMode #CMS .ui-tabs .ui-tabs-nav li a {
  padding: 12px 35px 10px 35px;
  margin-right: 2px;
  text-decoration: none;
  font-weight: bold;
  line-height: 100%;
  color: #999999;
  background: #fafafa;
  display: block;
  float: left;
  -moz-border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.inEditMode #CMS .ui-tabs .ui-tabs-nav li a:hover {
  background: #f7f7f7;
  color: #444444;
}
.inEditMode #CMS .ui-tabs .ui-tabs-nav li a:focus {
  outline: none;
}
.inEditMode #CMS .ui-tabs .ui-tabs-nav li {
  margin: 0;
}
.inEditMode #CMS .ui-tabs .ui-tabs-nav li:hover {
  background: none !important;
}
.inEditMode #CMS h2 {
  margin: 0;
  font-weight: bold;
  display: inline-block;
  padding: 0 10px 3px 10px;
  border-bottom: 1px dotted #666666;
  font-size: 13px;
}
.inEditMode #CMS label {
  font-weight: normal;
  color: #666666;
  clear: left;
  width: 200px;
  line-height: normal !important;
  font-size: 12px !important;
  vertical-align: middle;
}
.inEditMode #CMS input[type="checkbox"] {
  display: inline-block;
}
.inEditMode #CMS .dateTimePicker {
  width: 150px;
}
.inEditMode #CMS input[type="text"],
.inEditMode #CMS input[type="email"],
.inEditMode #CMS input[type="url"],
.inEditMode #CMS input[type="password"] {
  border-radius: 0 !important;
  padding: 5px 10px;
}
.inEditMode #CMS textarea {
  border-radius: 0 !important;
  padding: 10px;
}
.inEditMode #CMS input[type="text"]:focus,
.inEditMode #CMS input[type="email"]:focus,
.inEditMode #CMS input[type="url"]:focus,
.inEditMode #CMS input[type="password"]:focus,
.inEditMode #CMS textarea:focus {
  border: 1px solid #666666;
  outline: none;
}
/************
	THEME
*************/

html .page-search-results .st-accordion > ul > li > div.title,
html .page- .st-accordion > ul > li > div.title,
html .page-blog .st-accordion > ul > li > div.title,
html .page-more .st-accordion > ul > li > div.title,
html .page-us .st-accordion > ul > li > div.title,
html .page-new-for-schools .st-accordion > ul > li > div.title,
html .page-resources .st-accordion > ul > li > div.title,
html .page-shop .st-accordion > ul > li > div.title,
html .page-shopping-basket .st-accordion > ul > li > div.title,
html .page-blog .st-accordion > ul > li > div.title,
html .page-contact-us .st-accordion > ul > li > div.title,
html .page-film-competition .st-accordion > ul > li > div.title,
html .page-footer .st-accordion > ul > li > div.title,
html .page-login .st-accordion > ul > li > div.title,
html .page-support-us .st-accordion > ul > li > div.title {
  color: #ff6600 !important;
}
html .page-search-results .hot-topic-list-feature a,
html .page- .hot-topic-list-feature a,
html .page-blog .hot-topic-list-feature a,
html .page-more .hot-topic-list-feature a,
html .page-us .hot-topic-list-feature a,
html .page-new-for-schools .hot-topic-list-feature a,
html .page-resources .hot-topic-list-feature a,
html .page-shop .hot-topic-list-feature a,
html .page-shopping-basket .hot-topic-list-feature a,
html .page-blog .hot-topic-list-feature a,
html .page-contact-us .hot-topic-list-feature a,
html .page-film-competition .hot-topic-list-feature a,
html .page-footer .hot-topic-list-feature a,
html .page-login .hot-topic-list-feature a,
html .page-support-us .hot-topic-list-feature a {
  color: #ff6600 !important;
}
html .page-search-results .hot-topic-list-feature a:hover,
html .page- .hot-topic-list-feature a:hover,
html .page-blog .hot-topic-list-feature a:hover,
html .page-more .hot-topic-list-feature a:hover,
html .page-us .hot-topic-list-feature a:hover,
html .page-new-for-schools .hot-topic-list-feature a:hover,
html .page-resources .hot-topic-list-feature a:hover,
html .page-shop .hot-topic-list-feature a:hover,
html .page-shopping-basket .hot-topic-list-feature a:hover,
html .page-blog .hot-topic-list-feature a:hover,
html .page-contact-us .hot-topic-list-feature a:hover,
html .page-film-competition .hot-topic-list-feature a:hover,
html .page-footer .hot-topic-list-feature a:hover,
html .page-login .hot-topic-list-feature a:hover,
html .page-support-us .hot-topic-list-feature a:hover {
  color: #e65c00 !important;
}
html .page-search-results .poll-feature button,
html .page- .poll-feature button,
html .page-blog .poll-feature button,
html .page-more .poll-feature button,
html .page-us .poll-feature button,
html .page-new-for-schools .poll-feature button,
html .page-resources .poll-feature button,
html .page-shop .poll-feature button,
html .page-shopping-basket .poll-feature button,
html .page-blog .poll-feature button,
html .page-contact-us .poll-feature button,
html .page-film-competition .poll-feature button,
html .page-footer .poll-feature button,
html .page-login .poll-feature button,
html .page-support-us .poll-feature button {
  background: #ff6600;
}
html .page-search-results .poll-feature ul li div,
html .page- .poll-feature ul li div,
html .page-blog .poll-feature ul li div,
html .page-more .poll-feature ul li div,
html .page-us .poll-feature ul li div,
html .page-new-for-schools .poll-feature ul li div,
html .page-resources .poll-feature ul li div,
html .page-shop .poll-feature ul li div,
html .page-shopping-basket .poll-feature ul li div,
html .page-blog .poll-feature ul li div,
html .page-contact-us .poll-feature ul li div,
html .page-film-competition .poll-feature ul li div,
html .page-footer .poll-feature ul li div,
html .page-login .poll-feature ul li div,
html .page-support-us .poll-feature ul li div {
  background: #ff6600;
}
html .page-search-results .shaded-text-feature,
html .page- .shaded-text-feature,
html .page-blog .shaded-text-feature,
html .page-more .shaded-text-feature,
html .page-us .shaded-text-feature,
html .page-new-for-schools .shaded-text-feature,
html .page-resources .shaded-text-feature,
html .page-shop .shaded-text-feature,
html .page-shopping-basket .shaded-text-feature,
html .page-blog .shaded-text-feature,
html .page-contact-us .shaded-text-feature,
html .page-film-competition .shaded-text-feature,
html .page-footer .shaded-text-feature,
html .page-login .shaded-text-feature,
html .page-support-us .shaded-text-feature {
  background: #ff6600;
  color: white !important;
}
html .page-search-results .shaded-text-feature h1,
html .page- .shaded-text-feature h1,
html .page-blog .shaded-text-feature h1,
html .page-more .shaded-text-feature h1,
html .page-us .shaded-text-feature h1,
html .page-new-for-schools .shaded-text-feature h1,
html .page-resources .shaded-text-feature h1,
html .page-shop .shaded-text-feature h1,
html .page-shopping-basket .shaded-text-feature h1,
html .page-blog .shaded-text-feature h1,
html .page-contact-us .shaded-text-feature h1,
html .page-film-competition .shaded-text-feature h1,
html .page-footer .shaded-text-feature h1,
html .page-login .shaded-text-feature h1,
html .page-support-us .shaded-text-feature h1,
html .page-search-results .shaded-text-feature h2,
html .page- .shaded-text-feature h2,
html .page-blog .shaded-text-feature h2,
html .page-more .shaded-text-feature h2,
html .page-us .shaded-text-feature h2,
html .page-new-for-schools .shaded-text-feature h2,
html .page-resources .shaded-text-feature h2,
html .page-shop .shaded-text-feature h2,
html .page-shopping-basket .shaded-text-feature h2,
html .page-blog .shaded-text-feature h2,
html .page-contact-us .shaded-text-feature h2,
html .page-film-competition .shaded-text-feature h2,
html .page-footer .shaded-text-feature h2,
html .page-login .shaded-text-feature h2,
html .page-support-us .shaded-text-feature h2,
html .page-search-results .shaded-text-feature h3,
html .page- .shaded-text-feature h3,
html .page-blog .shaded-text-feature h3,
html .page-more .shaded-text-feature h3,
html .page-us .shaded-text-feature h3,
html .page-new-for-schools .shaded-text-feature h3,
html .page-resources .shaded-text-feature h3,
html .page-shop .shaded-text-feature h3,
html .page-shopping-basket .shaded-text-feature h3,
html .page-blog .shaded-text-feature h3,
html .page-contact-us .shaded-text-feature h3,
html .page-film-competition .shaded-text-feature h3,
html .page-footer .shaded-text-feature h3,
html .page-login .shaded-text-feature h3,
html .page-support-us .shaded-text-feature h3,
html .page-search-results .shaded-text-feature h4,
html .page- .shaded-text-feature h4,
html .page-blog .shaded-text-feature h4,
html .page-more .shaded-text-feature h4,
html .page-us .shaded-text-feature h4,
html .page-new-for-schools .shaded-text-feature h4,
html .page-resources .shaded-text-feature h4,
html .page-shop .shaded-text-feature h4,
html .page-shopping-basket .shaded-text-feature h4,
html .page-blog .shaded-text-feature h4,
html .page-contact-us .shaded-text-feature h4,
html .page-film-competition .shaded-text-feature h4,
html .page-footer .shaded-text-feature h4,
html .page-login .shaded-text-feature h4,
html .page-support-us .shaded-text-feature h4 {
  color: white !important;
}
html .page-search-results .shaded-text-feature a,
html .page- .shaded-text-feature a,
html .page-blog .shaded-text-feature a,
html .page-more .shaded-text-feature a,
html .page-us .shaded-text-feature a,
html .page-new-for-schools .shaded-text-feature a,
html .page-resources .shaded-text-feature a,
html .page-shop .shaded-text-feature a,
html .page-shopping-basket .shaded-text-feature a,
html .page-blog .shaded-text-feature a,
html .page-contact-us .shaded-text-feature a,
html .page-film-competition .shaded-text-feature a,
html .page-footer .shaded-text-feature a,
html .page-login .shaded-text-feature a,
html .page-support-us .shaded-text-feature a {
  color: white !important;
  font-weight: bold !important;
}
html .page-search-results .shaded-text-feature ol > li:before,
html .page- .shaded-text-feature ol > li:before,
html .page-blog .shaded-text-feature ol > li:before,
html .page-more .shaded-text-feature ol > li:before,
html .page-us .shaded-text-feature ol > li:before,
html .page-new-for-schools .shaded-text-feature ol > li:before,
html .page-resources .shaded-text-feature ol > li:before,
html .page-shop .shaded-text-feature ol > li:before,
html .page-shopping-basket .shaded-text-feature ol > li:before,
html .page-blog .shaded-text-feature ol > li:before,
html .page-contact-us .shaded-text-feature ol > li:before,
html .page-film-competition .shaded-text-feature ol > li:before,
html .page-footer .shaded-text-feature ol > li:before,
html .page-login .shaded-text-feature ol > li:before,
html .page-support-us .shaded-text-feature ol > li:before {
  color: #ff6600;
}
html .page-search-results h1,
html .page- h1,
html .page-blog h1,
html .page-more h1,
html .page-us h1,
html .page-new-for-schools h1,
html .page-resources h1,
html .page-shop h1,
html .page-shopping-basket h1,
html .page-blog h1,
html .page-contact-us h1,
html .page-film-competition h1,
html .page-footer h1,
html .page-login h1,
html .page-support-us h1 {
  color: #ff6600;
  border-top: 10px solid #ff6600 !important;
}
@media only screen and (max-width: 600px) {
  html .page-search-results h1,
  html .page- h1,
  html .page-blog h1,
  html .page-more h1,
  html .page-us h1,
  html .page-new-for-schools h1,
  html .page-resources h1,
  html .page-shop h1,
  html .page-shopping-basket h1,
  html .page-blog h1,
  html .page-contact-us h1,
  html .page-film-competition h1,
  html .page-footer h1,
  html .page-login h1,
  html .page-support-us h1 {
    border: none !important;
  }
}
@media only screen and (max-width: 600px) {
  html .page-search-results .headerImage,
  html .page- .headerImage,
  html .page-blog .headerImage,
  html .page-more .headerImage,
  html .page-us .headerImage,
  html .page-new-for-schools .headerImage,
  html .page-resources .headerImage,
  html .page-shop .headerImage,
  html .page-shopping-basket .headerImage,
  html .page-blog .headerImage,
  html .page-contact-us .headerImage,
  html .page-film-competition .headerImage,
  html .page-footer .headerImage,
  html .page-login .headerImage,
  html .page-support-us .headerImage {
    border-bottom: 10px solid #ff6600 !important;
  }
}
html .page-search-results nav#navigation ul li.active a,
html .page- nav#navigation ul li.active a,
html .page-blog nav#navigation ul li.active a,
html .page-more nav#navigation ul li.active a,
html .page-us nav#navigation ul li.active a,
html .page-new-for-schools nav#navigation ul li.active a,
html .page-resources nav#navigation ul li.active a,
html .page-shop nav#navigation ul li.active a,
html .page-shopping-basket nav#navigation ul li.active a,
html .page-blog nav#navigation ul li.active a,
html .page-contact-us nav#navigation ul li.active a,
html .page-film-competition nav#navigation ul li.active a,
html .page-footer nav#navigation ul li.active a,
html .page-login nav#navigation ul li.active a,
html .page-support-us nav#navigation ul li.active a {
  border-bottom: 10px solid #ff6600;
}
@media only screen and (max-width: 980px) {
  html .page-search-results nav#navigation ul li.active a,
  html .page- nav#navigation ul li.active a,
  html .page-blog nav#navigation ul li.active a,
  html .page-more nav#navigation ul li.active a,
  html .page-us nav#navigation ul li.active a,
  html .page-new-for-schools nav#navigation ul li.active a,
  html .page-resources nav#navigation ul li.active a,
  html .page-shop nav#navigation ul li.active a,
  html .page-shopping-basket nav#navigation ul li.active a,
  html .page-blog nav#navigation ul li.active a,
  html .page-contact-us nav#navigation ul li.active a,
  html .page-film-competition nav#navigation ul li.active a,
  html .page-footer nav#navigation ul li.active a,
  html .page-login nav#navigation ul li.active a,
  html .page-support-us nav#navigation ul li.active a {
    color: #ff6600;
  }
}
html .page-search-results nav#subNavigation,
html .page- nav#subNavigation,
html .page-blog nav#subNavigation,
html .page-more nav#subNavigation,
html .page-us nav#subNavigation,
html .page-new-for-schools nav#subNavigation,
html .page-resources nav#subNavigation,
html .page-shop nav#subNavigation,
html .page-shopping-basket nav#subNavigation,
html .page-blog nav#subNavigation,
html .page-contact-us nav#subNavigation,
html .page-film-competition nav#subNavigation,
html .page-footer nav#subNavigation,
html .page-login nav#subNavigation,
html .page-support-us nav#subNavigation,
html .page-search-results nav#subNavigation ul li a,
html .page- nav#subNavigation ul li a,
html .page-blog nav#subNavigation ul li a,
html .page-more nav#subNavigation ul li a,
html .page-us nav#subNavigation ul li a,
html .page-new-for-schools nav#subNavigation ul li a,
html .page-resources nav#subNavigation ul li a,
html .page-shop nav#subNavigation ul li a,
html .page-shopping-basket nav#subNavigation ul li a,
html .page-blog nav#subNavigation ul li a,
html .page-contact-us nav#subNavigation ul li a,
html .page-film-competition nav#subNavigation ul li a,
html .page-footer nav#subNavigation ul li a,
html .page-login nav#subNavigation ul li a,
html .page-support-us nav#subNavigation ul li a {
  background: #ff6600;
}
html .page-search-results nav#subNavigation > ul > li.active a,
html .page- nav#subNavigation > ul > li.active a,
html .page-blog nav#subNavigation > ul > li.active a,
html .page-more nav#subNavigation > ul > li.active a,
html .page-us nav#subNavigation > ul > li.active a,
html .page-new-for-schools nav#subNavigation > ul > li.active a,
html .page-resources nav#subNavigation > ul > li.active a,
html .page-shop nav#subNavigation > ul > li.active a,
html .page-shopping-basket nav#subNavigation > ul > li.active a,
html .page-blog nav#subNavigation > ul > li.active a,
html .page-contact-us nav#subNavigation > ul > li.active a,
html .page-film-competition nav#subNavigation > ul > li.active a,
html .page-footer nav#subNavigation > ul > li.active a,
html .page-login nav#subNavigation > ul > li.active a,
html .page-support-us nav#subNavigation > ul > li.active a {
  background: #e65c00;
}
html .page-search-results nav#subNavigation ul li a:hover,
html .page- nav#subNavigation ul li a:hover,
html .page-blog nav#subNavigation ul li a:hover,
html .page-more nav#subNavigation ul li a:hover,
html .page-us nav#subNavigation ul li a:hover,
html .page-new-for-schools nav#subNavigation ul li a:hover,
html .page-resources nav#subNavigation ul li a:hover,
html .page-shop nav#subNavigation ul li a:hover,
html .page-shopping-basket nav#subNavigation ul li a:hover,
html .page-blog nav#subNavigation ul li a:hover,
html .page-contact-us nav#subNavigation ul li a:hover,
html .page-film-competition nav#subNavigation ul li a:hover,
html .page-footer nav#subNavigation ul li a:hover,
html .page-login nav#subNavigation ul li a:hover,
html .page-support-us nav#subNavigation ul li a:hover {
  background: #e65c00;
}
@media only screen and (max-width: 980px) {
  html .page-search-results nav#navigation ul li.active ul > li.active > a,
  html .page- nav#navigation ul li.active ul > li.active > a,
  html .page-blog nav#navigation ul li.active ul > li.active > a,
  html .page-more nav#navigation ul li.active ul > li.active > a,
  html .page-us nav#navigation ul li.active ul > li.active > a,
  html .page-new-for-schools nav#navigation ul li.active ul > li.active > a,
  html .page-resources nav#navigation ul li.active ul > li.active > a,
  html .page-shop nav#navigation ul li.active ul > li.active > a,
  html .page-shopping-basket nav#navigation ul li.active ul > li.active > a,
  html .page-blog nav#navigation ul li.active ul > li.active > a,
  html .page-contact-us nav#navigation ul li.active ul > li.active > a,
  html .page-film-competition nav#navigation ul li.active ul > li.active > a,
  html .page-footer nav#navigation ul li.active ul > li.active > a,
  html .page-login nav#navigation ul li.active ul > li.active > a,
  html .page-support-us nav#navigation ul li.active ul > li.active > a {
    color: #ff6600 !important;
  }
}
html .page-search-results nav#other > ul > li.active a,
html .page- nav#other > ul > li.active a,
html .page-blog nav#other > ul > li.active a,
html .page-more nav#other > ul > li.active a,
html .page-us nav#other > ul > li.active a,
html .page-new-for-schools nav#other > ul > li.active a,
html .page-resources nav#other > ul > li.active a,
html .page-shop nav#other > ul > li.active a,
html .page-shopping-basket nav#other > ul > li.active a,
html .page-blog nav#other > ul > li.active a,
html .page-contact-us nav#other > ul > li.active a,
html .page-film-competition nav#other > ul > li.active a,
html .page-footer nav#other > ul > li.active a,
html .page-login nav#other > ul > li.active a,
html .page-support-us nav#other > ul > li.active a {
  border-bottom: 10px solid #ff6600;
}
html .page-search-results .twitter-feed-feature,
html .page- .twitter-feed-feature,
html .page-blog .twitter-feed-feature,
html .page-more .twitter-feed-feature,
html .page-us .twitter-feed-feature,
html .page-new-for-schools .twitter-feed-feature,
html .page-resources .twitter-feed-feature,
html .page-shop .twitter-feed-feature,
html .page-shopping-basket .twitter-feed-feature,
html .page-blog .twitter-feed-feature,
html .page-contact-us .twitter-feed-feature,
html .page-film-competition .twitter-feed-feature,
html .page-footer .twitter-feed-feature,
html .page-login .twitter-feed-feature,
html .page-support-us .twitter-feed-feature {
  background: #ff6600;
}
html .page-search-results .twitter-feed-feature::after,
html .page- .twitter-feed-feature::after,
html .page-blog .twitter-feed-feature::after,
html .page-more .twitter-feed-feature::after,
html .page-us .twitter-feed-feature::after,
html .page-new-for-schools .twitter-feed-feature::after,
html .page-resources .twitter-feed-feature::after,
html .page-shop .twitter-feed-feature::after,
html .page-shopping-basket .twitter-feed-feature::after,
html .page-blog .twitter-feed-feature::after,
html .page-contact-us .twitter-feed-feature::after,
html .page-film-competition .twitter-feed-feature::after,
html .page-footer .twitter-feed-feature::after,
html .page-login .twitter-feed-feature::after,
html .page-support-us .twitter-feed-feature::after {
  border-color: #ff6600 transparent;
}
html .page-search-results .twitter-feed-feature ul li,
html .page- .twitter-feed-feature ul li,
html .page-blog .twitter-feed-feature ul li,
html .page-more .twitter-feed-feature ul li,
html .page-us .twitter-feed-feature ul li,
html .page-new-for-schools .twitter-feed-feature ul li,
html .page-resources .twitter-feed-feature ul li,
html .page-shop .twitter-feed-feature ul li,
html .page-shopping-basket .twitter-feed-feature ul li,
html .page-blog .twitter-feed-feature ul li,
html .page-contact-us .twitter-feed-feature ul li,
html .page-film-competition .twitter-feed-feature ul li,
html .page-footer .twitter-feed-feature ul li,
html .page-login .twitter-feed-feature ul li,
html .page-support-us .twitter-feed-feature ul li,
html .page-search-results nav#subNavigation > ul > li,
html .page- nav#subNavigation > ul > li,
html .page-blog nav#subNavigation > ul > li,
html .page-more nav#subNavigation > ul > li,
html .page-us nav#subNavigation > ul > li,
html .page-new-for-schools nav#subNavigation > ul > li,
html .page-resources nav#subNavigation > ul > li,
html .page-shop nav#subNavigation > ul > li,
html .page-shopping-basket nav#subNavigation > ul > li,
html .page-blog nav#subNavigation > ul > li,
html .page-contact-us nav#subNavigation > ul > li,
html .page-film-competition nav#subNavigation > ul > li,
html .page-footer nav#subNavigation > ul > li,
html .page-login nav#subNavigation > ul > li,
html .page-support-us nav#subNavigation > ul > li {
  border-bottom: 1px solid #ff751a;
}
html .page-search-results input[type="submit"],
html .page- input[type="submit"],
html .page-blog input[type="submit"],
html .page-more input[type="submit"],
html .page-us input[type="submit"],
html .page-new-for-schools input[type="submit"],
html .page-resources input[type="submit"],
html .page-shop input[type="submit"],
html .page-shopping-basket input[type="submit"],
html .page-blog input[type="submit"],
html .page-contact-us input[type="submit"],
html .page-film-competition input[type="submit"],
html .page-footer input[type="submit"],
html .page-login input[type="submit"],
html .page-support-us input[type="submit"],
html .page-search-results input[type="button"],
html .page- input[type="button"],
html .page-blog input[type="button"],
html .page-more input[type="button"],
html .page-us input[type="button"],
html .page-new-for-schools input[type="button"],
html .page-resources input[type="button"],
html .page-shop input[type="button"],
html .page-shopping-basket input[type="button"],
html .page-blog input[type="button"],
html .page-contact-us input[type="button"],
html .page-film-competition input[type="button"],
html .page-footer input[type="button"],
html .page-login input[type="button"],
html .page-support-us input[type="button"],
html .page-search-results .jsCheckoutB,
html .page- .jsCheckoutB,
html .page-blog .jsCheckoutB,
html .page-more .jsCheckoutB,
html .page-us .jsCheckoutB,
html .page-new-for-schools .jsCheckoutB,
html .page-resources .jsCheckoutB,
html .page-shop .jsCheckoutB,
html .page-shopping-basket .jsCheckoutB,
html .page-blog .jsCheckoutB,
html .page-contact-us .jsCheckoutB,
html .page-film-competition .jsCheckoutB,
html .page-footer .jsCheckoutB,
html .page-login .jsCheckoutB,
html .page-support-us .jsCheckoutB {
  background: #ff6600;
  -webkit-transition: background 0.2s ease-in;
  -moz-transition: background 0.2s ease-in;
  -ms-transition: background 0.2s ease-in;
  -o-transition: background 0.2s ease-in;
  transition: background 0.2s ease-in;
  -webkit-transition: all background 0.2s ease-in ease-out;
  -moz-transition: all background 0.2s ease-in ease-out;
  transition: all background 0.2s ease-in ease-out;
}
html .page-search-results input[type="submit"]:hover,
html .page- input[type="submit"]:hover,
html .page-blog input[type="submit"]:hover,
html .page-more input[type="submit"]:hover,
html .page-us input[type="submit"]:hover,
html .page-new-for-schools input[type="submit"]:hover,
html .page-resources input[type="submit"]:hover,
html .page-shop input[type="submit"]:hover,
html .page-shopping-basket input[type="submit"]:hover,
html .page-blog input[type="submit"]:hover,
html .page-contact-us input[type="submit"]:hover,
html .page-film-competition input[type="submit"]:hover,
html .page-footer input[type="submit"]:hover,
html .page-login input[type="submit"]:hover,
html .page-support-us input[type="submit"]:hover,
html .page-search-results input[type="button"]:hover,
html .page- input[type="button"]:hover,
html .page-blog input[type="button"]:hover,
html .page-more input[type="button"]:hover,
html .page-us input[type="button"]:hover,
html .page-new-for-schools input[type="button"]:hover,
html .page-resources input[type="button"]:hover,
html .page-shop input[type="button"]:hover,
html .page-shopping-basket input[type="button"]:hover,
html .page-blog input[type="button"]:hover,
html .page-contact-us input[type="button"]:hover,
html .page-film-competition input[type="button"]:hover,
html .page-footer input[type="button"]:hover,
html .page-login input[type="button"]:hover,
html .page-support-us input[type="button"]:hover,
html .page-search-results .jsCheckoutB:hover,
html .page- .jsCheckoutB:hover,
html .page-blog .jsCheckoutB:hover,
html .page-more .jsCheckoutB:hover,
html .page-us .jsCheckoutB:hover,
html .page-new-for-schools .jsCheckoutB:hover,
html .page-resources .jsCheckoutB:hover,
html .page-shop .jsCheckoutB:hover,
html .page-shopping-basket .jsCheckoutB:hover,
html .page-blog .jsCheckoutB:hover,
html .page-contact-us .jsCheckoutB:hover,
html .page-film-competition .jsCheckoutB:hover,
html .page-footer .jsCheckoutB:hover,
html .page-login .jsCheckoutB:hover,
html .page-support-us .jsCheckoutB:hover {
  background: #e65c00;
}
html .page-search-results .date,
html .page- .date,
html .page-blog .date,
html .page-more .date,
html .page-us .date,
html .page-new-for-schools .date,
html .page-resources .date,
html .page-shop .date,
html .page-shopping-basket .date,
html .page-blog .date,
html .page-contact-us .date,
html .page-film-competition .date,
html .page-footer .date,
html .page-login .date,
html .page-support-us .date {
  background: #ff6600;
}
html .page-search-results nav#footer-links ul li a:hover,
html .page- nav#footer-links ul li a:hover,
html .page-blog nav#footer-links ul li a:hover,
html .page-more nav#footer-links ul li a:hover,
html .page-us nav#footer-links ul li a:hover,
html .page-new-for-schools nav#footer-links ul li a:hover,
html .page-resources nav#footer-links ul li a:hover,
html .page-shop nav#footer-links ul li a:hover,
html .page-shopping-basket nav#footer-links ul li a:hover,
html .page-blog nav#footer-links ul li a:hover,
html .page-contact-us nav#footer-links ul li a:hover,
html .page-film-competition nav#footer-links ul li a:hover,
html .page-footer nav#footer-links ul li a:hover,
html .page-login nav#footer-links ul li a:hover,
html .page-support-us nav#footer-links ul li a:hover,
html .page-search-results nav#footer-links ul li a:focus,
html .page- nav#footer-links ul li a:focus,
html .page-blog nav#footer-links ul li a:focus,
html .page-more nav#footer-links ul li a:focus,
html .page-us nav#footer-links ul li a:focus,
html .page-new-for-schools nav#footer-links ul li a:focus,
html .page-resources nav#footer-links ul li a:focus,
html .page-shop nav#footer-links ul li a:focus,
html .page-shopping-basket nav#footer-links ul li a:focus,
html .page-blog nav#footer-links ul li a:focus,
html .page-contact-us nav#footer-links ul li a:focus,
html .page-film-competition nav#footer-links ul li a:focus,
html .page-footer nav#footer-links ul li a:focus,
html .page-login nav#footer-links ul li a:focus,
html .page-support-us nav#footer-links ul li a:focus {
  color: #ff6600;
}
html .page-search-results a.tag,
html .page- a.tag,
html .page-blog a.tag,
html .page-more a.tag,
html .page-us a.tag,
html .page-new-for-schools a.tag,
html .page-resources a.tag,
html .page-shop a.tag,
html .page-shopping-basket a.tag,
html .page-blog a.tag,
html .page-contact-us a.tag,
html .page-film-competition a.tag,
html .page-footer a.tag,
html .page-login a.tag,
html .page-support-us a.tag,
html .page-search-results a.comments,
html .page- a.comments,
html .page-blog a.comments,
html .page-more a.comments,
html .page-us a.comments,
html .page-new-for-schools a.comments,
html .page-resources a.comments,
html .page-shop a.comments,
html .page-shopping-basket a.comments,
html .page-blog a.comments,
html .page-contact-us a.comments,
html .page-film-competition a.comments,
html .page-footer a.comments,
html .page-login a.comments,
html .page-support-us a.comments {
  background: #ff6600;
}
html .page-search-results .featureCommentRepeat,
html .page- .featureCommentRepeat,
html .page-blog .featureCommentRepeat,
html .page-more .featureCommentRepeat,
html .page-us .featureCommentRepeat,
html .page-new-for-schools .featureCommentRepeat,
html .page-resources .featureCommentRepeat,
html .page-shop .featureCommentRepeat,
html .page-shopping-basket .featureCommentRepeat,
html .page-blog .featureCommentRepeat,
html .page-contact-us .featureCommentRepeat,
html .page-film-competition .featureCommentRepeat,
html .page-footer .featureCommentRepeat,
html .page-login .featureCommentRepeat,
html .page-support-us .featureCommentRepeat {
  background: #eeeeee;
}
html .page-search-results .featureCommentRepeat::after,
html .page- .featureCommentRepeat::after,
html .page-blog .featureCommentRepeat::after,
html .page-more .featureCommentRepeat::after,
html .page-us .featureCommentRepeat::after,
html .page-new-for-schools .featureCommentRepeat::after,
html .page-resources .featureCommentRepeat::after,
html .page-shop .featureCommentRepeat::after,
html .page-shopping-basket .featureCommentRepeat::after,
html .page-blog .featureCommentRepeat::after,
html .page-contact-us .featureCommentRepeat::after,
html .page-film-competition .featureCommentRepeat::after,
html .page-footer .featureCommentRepeat::after,
html .page-login .featureCommentRepeat::after,
html .page-support-us .featureCommentRepeat::after {
  border-color: transparent #eeeeee;
}
html .page-search-results .commentForm,
html .page- .commentForm,
html .page-blog .commentForm,
html .page-more .commentForm,
html .page-us .commentForm,
html .page-new-for-schools .commentForm,
html .page-resources .commentForm,
html .page-shop .commentForm,
html .page-shopping-basket .commentForm,
html .page-blog .commentForm,
html .page-contact-us .commentForm,
html .page-film-competition .commentForm,
html .page-footer .commentForm,
html .page-login .commentForm,
html .page-support-us .commentForm {
  background: #eeeeee;
}
html .page-search-results .commentForm::after,
html .page- .commentForm::after,
html .page-blog .commentForm::after,
html .page-more .commentForm::after,
html .page-us .commentForm::after,
html .page-new-for-schools .commentForm::after,
html .page-resources .commentForm::after,
html .page-shop .commentForm::after,
html .page-shopping-basket .commentForm::after,
html .page-blog .commentForm::after,
html .page-contact-us .commentForm::after,
html .page-film-competition .commentForm::after,
html .page-footer .commentForm::after,
html .page-login .commentForm::after,
html .page-support-us .commentForm::after {
  border-color: #eeeeee transparent;
}
html .page-search-results .commentForm:active,
html .page- .commentForm:active,
html .page-blog .commentForm:active,
html .page-more .commentForm:active,
html .page-us .commentForm:active,
html .page-new-for-schools .commentForm:active,
html .page-resources .commentForm:active,
html .page-shop .commentForm:active,
html .page-shopping-basket .commentForm:active,
html .page-blog .commentForm:active,
html .page-contact-us .commentForm:active,
html .page-film-competition .commentForm:active,
html .page-footer .commentForm:active,
html .page-login .commentForm:active,
html .page-support-us .commentForm:active,
html .page-search-results .commentForm:hover,
html .page- .commentForm:hover,
html .page-blog .commentForm:hover,
html .page-more .commentForm:hover,
html .page-us .commentForm:hover,
html .page-new-for-schools .commentForm:hover,
html .page-resources .commentForm:hover,
html .page-shop .commentForm:hover,
html .page-shopping-basket .commentForm:hover,
html .page-blog .commentForm:hover,
html .page-contact-us .commentForm:hover,
html .page-film-competition .commentForm:hover,
html .page-footer .commentForm:hover,
html .page-login .commentForm:hover,
html .page-support-us .commentForm:hover,
html .page-search-results .commentForm:focus,
html .page- .commentForm:focus,
html .page-blog .commentForm:focus,
html .page-more .commentForm:focus,
html .page-us .commentForm:focus,
html .page-new-for-schools .commentForm:focus,
html .page-resources .commentForm:focus,
html .page-shop .commentForm:focus,
html .page-shopping-basket .commentForm:focus,
html .page-blog .commentForm:focus,
html .page-contact-us .commentForm:focus,
html .page-film-competition .commentForm:focus,
html .page-footer .commentForm:focus,
html .page-login .commentForm:focus,
html .page-support-us .commentForm:focus {
  background: #ff6600;
}
html .page-search-results a.comments::after,
html .page- a.comments::after,
html .page-blog a.comments::after,
html .page-more a.comments::after,
html .page-us a.comments::after,
html .page-new-for-schools a.comments::after,
html .page-resources a.comments::after,
html .page-shop a.comments::after,
html .page-shopping-basket a.comments::after,
html .page-blog a.comments::after,
html .page-contact-us a.comments::after,
html .page-film-competition a.comments::after,
html .page-footer a.comments::after,
html .page-login a.comments::after,
html .page-support-us a.comments::after,
html .page-search-results .commentForm:active::after,
html .page- .commentForm:active::after,
html .page-blog .commentForm:active::after,
html .page-more .commentForm:active::after,
html .page-us .commentForm:active::after,
html .page-new-for-schools .commentForm:active::after,
html .page-resources .commentForm:active::after,
html .page-shop .commentForm:active::after,
html .page-shopping-basket .commentForm:active::after,
html .page-blog .commentForm:active::after,
html .page-contact-us .commentForm:active::after,
html .page-film-competition .commentForm:active::after,
html .page-footer .commentForm:active::after,
html .page-login .commentForm:active::after,
html .page-support-us .commentForm:active::after,
html .page-search-results .commentForm:hover::after,
html .page- .commentForm:hover::after,
html .page-blog .commentForm:hover::after,
html .page-more .commentForm:hover::after,
html .page-us .commentForm:hover::after,
html .page-new-for-schools .commentForm:hover::after,
html .page-resources .commentForm:hover::after,
html .page-shop .commentForm:hover::after,
html .page-shopping-basket .commentForm:hover::after,
html .page-blog .commentForm:hover::after,
html .page-contact-us .commentForm:hover::after,
html .page-film-competition .commentForm:hover::after,
html .page-footer .commentForm:hover::after,
html .page-login .commentForm:hover::after,
html .page-support-us .commentForm:hover::after,
html .page-search-results .commentForm:focus::after,
html .page- .commentForm:focus::after,
html .page-blog .commentForm:focus::after,
html .page-more .commentForm:focus::after,
html .page-us .commentForm:focus::after,
html .page-new-for-schools .commentForm:focus::after,
html .page-resources .commentForm:focus::after,
html .page-shop .commentForm:focus::after,
html .page-shopping-basket .commentForm:focus::after,
html .page-blog .commentForm:focus::after,
html .page-contact-us .commentForm:focus::after,
html .page-film-competition .commentForm:focus::after,
html .page-footer .commentForm:focus::after,
html .page-login .commentForm:focus::after,
html .page-support-us .commentForm:focus::after {
  border-color: #ff6600 transparent;
}
html .page-search-results .blog-archive-list-feature li a,
html .page- .blog-archive-list-feature li a,
html .page-blog .blog-archive-list-feature li a,
html .page-more .blog-archive-list-feature li a,
html .page-us .blog-archive-list-feature li a,
html .page-new-for-schools .blog-archive-list-feature li a,
html .page-resources .blog-archive-list-feature li a,
html .page-shop .blog-archive-list-feature li a,
html .page-shopping-basket .blog-archive-list-feature li a,
html .page-blog .blog-archive-list-feature li a,
html .page-contact-us .blog-archive-list-feature li a,
html .page-film-competition .blog-archive-list-feature li a,
html .page-footer .blog-archive-list-feature li a,
html .page-login .blog-archive-list-feature li a,
html .page-support-us .blog-archive-list-feature li a {
  color: #ff6600;
}
html .page-search-results .blog-archive-list-feature li a:hover,
html .page- .blog-archive-list-feature li a:hover,
html .page-blog .blog-archive-list-feature li a:hover,
html .page-more .blog-archive-list-feature li a:hover,
html .page-us .blog-archive-list-feature li a:hover,
html .page-new-for-schools .blog-archive-list-feature li a:hover,
html .page-resources .blog-archive-list-feature li a:hover,
html .page-shop .blog-archive-list-feature li a:hover,
html .page-shopping-basket .blog-archive-list-feature li a:hover,
html .page-blog .blog-archive-list-feature li a:hover,
html .page-contact-us .blog-archive-list-feature li a:hover,
html .page-film-competition .blog-archive-list-feature li a:hover,
html .page-footer .blog-archive-list-feature li a:hover,
html .page-login .blog-archive-list-feature li a:hover,
html .page-support-us .blog-archive-list-feature li a:hover {
  color: #cc5200;
}
html .page-search-results footer .top .item .soical li a,
html .page- footer .top .item .soical li a,
html .page-blog footer .top .item .soical li a,
html .page-more footer .top .item .soical li a,
html .page-us footer .top .item .soical li a,
html .page-new-for-schools footer .top .item .soical li a,
html .page-resources footer .top .item .soical li a,
html .page-shop footer .top .item .soical li a,
html .page-shopping-basket footer .top .item .soical li a,
html .page-blog footer .top .item .soical li a,
html .page-contact-us footer .top .item .soical li a,
html .page-film-competition footer .top .item .soical li a,
html .page-footer footer .top .item .soical li a,
html .page-login footer .top .item .soical li a,
html .page-support-us footer .top .item .soical li a {
  color: #ff6600 !important;
}
html .page-search-results footer .top .item .soical li a:hover,
html .page- footer .top .item .soical li a:hover,
html .page-blog footer .top .item .soical li a:hover,
html .page-more footer .top .item .soical li a:hover,
html .page-us footer .top .item .soical li a:hover,
html .page-new-for-schools footer .top .item .soical li a:hover,
html .page-resources footer .top .item .soical li a:hover,
html .page-shop footer .top .item .soical li a:hover,
html .page-shopping-basket footer .top .item .soical li a:hover,
html .page-blog footer .top .item .soical li a:hover,
html .page-contact-us footer .top .item .soical li a:hover,
html .page-film-competition footer .top .item .soical li a:hover,
html .page-footer footer .top .item .soical li a:hover,
html .page-login footer .top .item .soical li a:hover,
html .page-support-us footer .top .item .soical li a:hover {
  color: white !important;
}
html .page-search-results .primary-text-feature a,
html .page- .primary-text-feature a,
html .page-blog .primary-text-feature a,
html .page-more .primary-text-feature a,
html .page-us .primary-text-feature a,
html .page-new-for-schools .primary-text-feature a,
html .page-resources .primary-text-feature a,
html .page-shop .primary-text-feature a,
html .page-shopping-basket .primary-text-feature a,
html .page-blog .primary-text-feature a,
html .page-contact-us .primary-text-feature a,
html .page-film-competition .primary-text-feature a,
html .page-footer .primary-text-feature a,
html .page-login .primary-text-feature a,
html .page-support-us .primary-text-feature a,
html .page-search-results .secondary-text-feature a,
html .page- .secondary-text-feature a,
html .page-blog .secondary-text-feature a,
html .page-more .secondary-text-feature a,
html .page-us .secondary-text-feature a,
html .page-new-for-schools .secondary-text-feature a,
html .page-resources .secondary-text-feature a,
html .page-shop .secondary-text-feature a,
html .page-shopping-basket .secondary-text-feature a,
html .page-blog .secondary-text-feature a,
html .page-contact-us .secondary-text-feature a,
html .page-film-competition .secondary-text-feature a,
html .page-footer .secondary-text-feature a,
html .page-login .secondary-text-feature a,
html .page-support-us .secondary-text-feature a {
  color: #ff6600;
}
html .page-search-results .download.cta a,
html .page- .download.cta a,
html .page-blog .download.cta a,
html .page-more .download.cta a,
html .page-us .download.cta a,
html .page-new-for-schools .download.cta a,
html .page-resources .download.cta a,
html .page-shop .download.cta a,
html .page-shopping-basket .download.cta a,
html .page-blog .download.cta a,
html .page-contact-us .download.cta a,
html .page-film-competition .download.cta a,
html .page-footer .download.cta a,
html .page-login .download.cta a,
html .page-support-us .download.cta a {
  background: #ff6600;
}
html .page-search-results .download.cta a:before,
html .page- .download.cta a:before,
html .page-blog .download.cta a:before,
html .page-more .download.cta a:before,
html .page-us .download.cta a:before,
html .page-new-for-schools .download.cta a:before,
html .page-resources .download.cta a:before,
html .page-shop .download.cta a:before,
html .page-shopping-basket .download.cta a:before,
html .page-blog .download.cta a:before,
html .page-contact-us .download.cta a:before,
html .page-film-competition .download.cta a:before,
html .page-footer .download.cta a:before,
html .page-login .download.cta a:before,
html .page-support-us .download.cta a:before {
  border-color: #cc5200 white;
}
html .page-search-results ol > li,
html .page- ol > li,
html .page-blog ol > li,
html .page-more ol > li,
html .page-us ol > li,
html .page-new-for-schools ol > li,
html .page-resources ol > li,
html .page-shop ol > li,
html .page-shopping-basket ol > li,
html .page-blog ol > li,
html .page-contact-us ol > li,
html .page-film-competition ol > li,
html .page-footer ol > li,
html .page-login ol > li,
html .page-support-us ol > li {
  border-left: 2px solid #ff6600;
}
html .page-search-results ol > li:before,
html .page- ol > li:before,
html .page-blog ol > li:before,
html .page-more ol > li:before,
html .page-us ol > li:before,
html .page-new-for-schools ol > li:before,
html .page-resources ol > li:before,
html .page-shop ol > li:before,
html .page-shopping-basket ol > li:before,
html .page-blog ol > li:before,
html .page-contact-us ol > li:before,
html .page-film-competition ol > li:before,
html .page-footer ol > li:before,
html .page-login ol > li:before,
html .page-support-us ol > li:before {
  background: #ff6600;
}
html .page-search-results ul.filters li a,
html .page- ul.filters li a,
html .page-blog ul.filters li a,
html .page-more ul.filters li a,
html .page-us ul.filters li a,
html .page-new-for-schools ul.filters li a,
html .page-resources ul.filters li a,
html .page-shop ul.filters li a,
html .page-shopping-basket ul.filters li a,
html .page-blog ul.filters li a,
html .page-contact-us ul.filters li a,
html .page-film-competition ul.filters li a,
html .page-footer ul.filters li a,
html .page-login ul.filters li a,
html .page-support-us ul.filters li a {
  background: #ff6600;
  color: white;
}
html .page-search-results ul.filters li a:hover,
html .page- ul.filters li a:hover,
html .page-blog ul.filters li a:hover,
html .page-more ul.filters li a:hover,
html .page-us ul.filters li a:hover,
html .page-new-for-schools ul.filters li a:hover,
html .page-resources ul.filters li a:hover,
html .page-shop ul.filters li a:hover,
html .page-shopping-basket ul.filters li a:hover,
html .page-blog ul.filters li a:hover,
html .page-contact-us ul.filters li a:hover,
html .page-film-competition ul.filters li a:hover,
html .page-footer ul.filters li a:hover,
html .page-login ul.filters li a:hover,
html .page-support-us ul.filters li a:hover,
html .page-search-results ul.filters li a:focus,
html .page- ul.filters li a:focus,
html .page-blog ul.filters li a:focus,
html .page-more ul.filters li a:focus,
html .page-us ul.filters li a:focus,
html .page-new-for-schools ul.filters li a:focus,
html .page-resources ul.filters li a:focus,
html .page-shop ul.filters li a:focus,
html .page-shopping-basket ul.filters li a:focus,
html .page-blog ul.filters li a:focus,
html .page-contact-us ul.filters li a:focus,
html .page-film-competition ul.filters li a:focus,
html .page-footer ul.filters li a:focus,
html .page-login ul.filters li a:focus,
html .page-support-us ul.filters li a:focus {
  background: #cc5200;
}
html .page-search-results .primary-text-feature .map .title,
html .page- .primary-text-feature .map .title,
html .page-blog .primary-text-feature .map .title,
html .page-more .primary-text-feature .map .title,
html .page-us .primary-text-feature .map .title,
html .page-new-for-schools .primary-text-feature .map .title,
html .page-resources .primary-text-feature .map .title,
html .page-shop .primary-text-feature .map .title,
html .page-shopping-basket .primary-text-feature .map .title,
html .page-blog .primary-text-feature .map .title,
html .page-contact-us .primary-text-feature .map .title,
html .page-film-competition .primary-text-feature .map .title,
html .page-footer .primary-text-feature .map .title,
html .page-login .primary-text-feature .map .title,
html .page-support-us .primary-text-feature .map .title {
  border-color: #ff6600;
}
html .page-search-results a:link,
html .page- a:link,
html .page-blog a:link,
html .page-more a:link,
html .page-us a:link,
html .page-new-for-schools a:link,
html .page-resources a:link,
html .page-shop a:link,
html .page-shopping-basket a:link,
html .page-blog a:link,
html .page-contact-us a:link,
html .page-film-competition a:link,
html .page-footer a:link,
html .page-login a:link,
html .page-support-us a:link,
html .page-search-results a:visited,
html .page- a:visited,
html .page-blog a:visited,
html .page-more a:visited,
html .page-us a:visited,
html .page-new-for-schools a:visited,
html .page-resources a:visited,
html .page-shop a:visited,
html .page-shopping-basket a:visited,
html .page-blog a:visited,
html .page-contact-us a:visited,
html .page-film-competition a:visited,
html .page-footer a:visited,
html .page-login a:visited,
html .page-support-us a:visited {
  color: #ff6600;
}
html .page-search-results footer .top a,
html .page- footer .top a,
html .page-blog footer .top a,
html .page-more footer .top a,
html .page-us footer .top a,
html .page-new-for-schools footer .top a,
html .page-resources footer .top a,
html .page-shop footer .top a,
html .page-shopping-basket footer .top a,
html .page-blog footer .top a,
html .page-contact-us footer .top a,
html .page-film-competition footer .top a,
html .page-footer footer .top a,
html .page-login footer .top a,
html .page-support-us footer .top a {
  color: white !important;
}
html .page-search-results #blogSlider li a,
html .page- #blogSlider li a,
html .page-blog #blogSlider li a,
html .page-more #blogSlider li a,
html .page-us #blogSlider li a,
html .page-new-for-schools #blogSlider li a,
html .page-resources #blogSlider li a,
html .page-shop #blogSlider li a,
html .page-shopping-basket #blogSlider li a,
html .page-blog #blogSlider li a,
html .page-contact-us #blogSlider li a,
html .page-film-competition #blogSlider li a,
html .page-footer #blogSlider li a,
html .page-login #blogSlider li a,
html .page-support-us #blogSlider li a {
  color: #ff6600;
}
html .page-search-results .quizQuestion h3,
html .page- .quizQuestion h3,
html .page-blog .quizQuestion h3,
html .page-more .quizQuestion h3,
html .page-us .quizQuestion h3,
html .page-new-for-schools .quizQuestion h3,
html .page-resources .quizQuestion h3,
html .page-shop .quizQuestion h3,
html .page-shopping-basket .quizQuestion h3,
html .page-blog .quizQuestion h3,
html .page-contact-us .quizQuestion h3,
html .page-film-competition .quizQuestion h3,
html .page-footer .quizQuestion h3,
html .page-login .quizQuestion h3,
html .page-support-us .quizQuestion h3 {
  color: #ff6600 !important;
}
html .page-young-people .st-accordion > ul > li > div.title {
  color: #cc0066 !important;
}
html .page-young-people .hot-topic-list-feature a {
  color: #cc0066 !important;
}
html .page-young-people .hot-topic-list-feature a:hover {
  color: #b30059 !important;
}
html .page-young-people .poll-feature button {
  background: #cc0066;
}
html .page-young-people .poll-feature ul li div {
  background: #cc0066;
}
html .page-young-people .shaded-text-feature {
  background: #cc0066;
  color: #fff5fa !important;
}
html .page-young-people .shaded-text-feature h1,
html .page-young-people .shaded-text-feature h2,
html .page-young-people .shaded-text-feature h3,
html .page-young-people .shaded-text-feature h4 {
  color: #fff5fa !important;
}
html .page-young-people .shaded-text-feature a {
  color: white !important;
  font-weight: bold !important;
}
html .page-young-people .shaded-text-feature ol > li:before {
  color: #cc0066;
}
html .page-young-people h1 {
  color: #cc0066;
  border-top: 10px solid #cc0066 !important;
}
@media only screen and (max-width: 600px) {
  html .page-young-people h1 {
    border: none !important;
  }
}
@media only screen and (max-width: 600px) {
  html .page-young-people .headerImage {
    border-bottom: 10px solid #cc0066 !important;
  }
}
html .page-young-people nav#navigation ul li.active a {
  border-bottom: 10px solid #cc0066;
}
@media only screen and (max-width: 980px) {
  html .page-young-people nav#navigation ul li.active a {
    color: #cc0066;
  }
}
html .page-young-people nav#subNavigation,
html .page-young-people nav#subNavigation ul li a {
  background: #cc0066;
}
html .page-young-people nav#subNavigation > ul > li.active a {
  background: #b30059;
}
html .page-young-people nav#subNavigation ul li a:hover {
  background: #b30059;
}
@media only screen and (max-width: 980px) {
  html .page-young-people nav#navigation ul li.active ul > li.active > a {
    color: #cc0066 !important;
  }
}
html .page-young-people nav#other > ul > li.active a {
  border-bottom: 10px solid #cc0066;
}
html .page-young-people .twitter-feed-feature {
  background: #cc0066;
}
html .page-young-people .twitter-feed-feature::after {
  border-color: #cc0066 transparent;
}
html .page-young-people .twitter-feed-feature ul li,
html .page-young-people nav#subNavigation > ul > li {
  border-bottom: 1px solid #e60073;
}
html .page-young-people input[type="submit"],
html .page-young-people input[type="button"],
html .page-young-people .jsCheckoutB {
  background: #cc0066;
  -webkit-transition: background 0.2s ease-in;
  -moz-transition: background 0.2s ease-in;
  -ms-transition: background 0.2s ease-in;
  -o-transition: background 0.2s ease-in;
  transition: background 0.2s ease-in;
  -webkit-transition: all background 0.2s ease-in ease-out;
  -moz-transition: all background 0.2s ease-in ease-out;
  transition: all background 0.2s ease-in ease-out;
}
html .page-young-people input[type="submit"]:hover,
html .page-young-people input[type="button"]:hover,
html .page-young-people .jsCheckoutB:hover {
  background: #b30059;
}
html .page-young-people .date {
  background: #cc0066;
}
html .page-young-people nav#footer-links ul li a:hover,
html .page-young-people nav#footer-links ul li a:focus {
  color: #cc0066;
}
html .page-young-people a.tag,
html .page-young-people a.comments {
  background: #cc0066;
}
html .page-young-people .featureCommentRepeat {
  background: #eeeeee;
}
html .page-young-people .featureCommentRepeat::after {
  border-color: transparent #eeeeee;
}
html .page-young-people .commentForm {
  background: #eeeeee;
}
html .page-young-people .commentForm::after {
  border-color: #eeeeee transparent;
}
html .page-young-people .commentForm:active,
html .page-young-people .commentForm:hover,
html .page-young-people .commentForm:focus {
  background: #cc0066;
}
html .page-young-people a.comments::after,
html .page-young-people .commentForm:active::after,
html .page-young-people .commentForm:hover::after,
html .page-young-people .commentForm:focus::after {
  border-color: #cc0066 transparent;
}
html .page-young-people .blog-archive-list-feature li a {
  color: #cc0066;
}
html .page-young-people .blog-archive-list-feature li a:hover {
  color: #99004d;
}
html .page-young-people footer .top .item .soical li a {
  color: #cc0066 !important;
}
html .page-young-people footer .top .item .soical li a:hover {
  color: white !important;
}
html .page-young-people .primary-text-feature a,
html .page-young-people .secondary-text-feature a {
  color: #cc0066;
}
html .page-young-people .download.cta a {
  background: #cc0066;
}
html .page-young-people .download.cta a:before {
  border-color: #99004d white;
}
html .page-young-people ol > li {
  border-left: 2px solid #cc0066;
}
html .page-young-people ol > li:before {
  background: #cc0066;
}
html .page-young-people ul.filters li a {
  background: #cc0066;
  color: white;
}
html .page-young-people ul.filters li a:hover,
html .page-young-people ul.filters li a:focus {
  background: #99004d;
}
html .page-young-people .primary-text-feature .map .title {
  border-color: #cc0066;
}
html .page-young-people a:link,
html .page-young-people a:visited {
  color: #cc0066;
}
html .page-young-people footer .top a {
  color: white !important;
}
html .page-young-people #blogSlider li a {
  color: #cc0066;
}
html .page-young-people .quizQuestion h3 {
  color: #cc0066 !important;
}
html .page-parents-and-carers .st-accordion > ul > li > div.title {
  color: #279dda !important;
}
html .page-parents-and-carers .hot-topic-list-feature a {
  color: #279dda !important;
}
html .page-parents-and-carers .hot-topic-list-feature a:hover {
  color: #228ec6 !important;
}
html .page-parents-and-carers .poll-feature button {
  background: #279dda;
}
html .page-parents-and-carers .poll-feature ul li div {
  background: #279dda;
}
html .page-parents-and-carers .shaded-text-feature {
  background: #279dda;
  color: white !important;
}
html .page-parents-and-carers .shaded-text-feature h1,
html .page-parents-and-carers .shaded-text-feature h2,
html .page-parents-and-carers .shaded-text-feature h3,
html .page-parents-and-carers .shaded-text-feature h4 {
  color: white !important;
}
html .page-parents-and-carers .shaded-text-feature a {
  color: white !important;
  font-weight: bold !important;
}
html .page-parents-and-carers .shaded-text-feature ol > li:before {
  color: #279dda;
}
html .page-parents-and-carers h1 {
  color: #279dda;
  border-top: 10px solid #279dda !important;
}
@media only screen and (max-width: 600px) {
  html .page-parents-and-carers h1 {
    border: none !important;
  }
}
@media only screen and (max-width: 600px) {
  html .page-parents-and-carers .headerImage {
    border-bottom: 10px solid #279dda !important;
  }
}
html .page-parents-and-carers nav#navigation ul li.active a {
  border-bottom: 10px solid #279dda;
}
@media only screen and (max-width: 980px) {
  html .page-parents-and-carers nav#navigation ul li.active a {
    color: #279dda;
  }
}
html .page-parents-and-carers nav#subNavigation,
html .page-parents-and-carers nav#subNavigation ul li a {
  background: #279dda;
}
html .page-parents-and-carers nav#subNavigation > ul > li.active a {
  background: #228ec6;
}
html .page-parents-and-carers nav#subNavigation ul li a:hover {
  background: #228ec6;
}
@media only screen and (max-width: 980px) {
  html .page-parents-and-carers nav#navigation ul li.active ul > li.active > a {
    color: #279dda !important;
  }
}
html .page-parents-and-carers nav#other > ul > li.active a {
  border-bottom: 10px solid #279dda;
}
html .page-parents-and-carers .twitter-feed-feature {
  background: #279dda;
}
html .page-parents-and-carers .twitter-feed-feature::after {
  border-color: #279dda transparent;
}
html .page-parents-and-carers .twitter-feed-feature ul li,
html .page-parents-and-carers nav#subNavigation > ul > li {
  border-bottom: 1px solid #3da7de;
}
html .page-parents-and-carers input[type="submit"],
html .page-parents-and-carers input[type="button"],
html .page-parents-and-carers .jsCheckoutB {
  background: #279dda;
  -webkit-transition: background 0.2s ease-in;
  -moz-transition: background 0.2s ease-in;
  -ms-transition: background 0.2s ease-in;
  -o-transition: background 0.2s ease-in;
  transition: background 0.2s ease-in;
  -webkit-transition: all background 0.2s ease-in ease-out;
  -moz-transition: all background 0.2s ease-in ease-out;
  transition: all background 0.2s ease-in ease-out;
}
html .page-parents-and-carers input[type="submit"]:hover,
html .page-parents-and-carers input[type="button"]:hover,
html .page-parents-and-carers .jsCheckoutB:hover {
  background: #228ec6;
}
html .page-parents-and-carers .date {
  background: #279dda;
}
html .page-parents-and-carers nav#footer-links ul li a:hover,
html .page-parents-and-carers nav#footer-links ul li a:focus {
  color: #279dda;
}
html .page-parents-and-carers a.tag,
html .page-parents-and-carers a.comments {
  background: #279dda;
}
html .page-parents-and-carers .featureCommentRepeat {
  background: #eeeeee;
}
html .page-parents-and-carers .featureCommentRepeat::after {
  border-color: transparent #eeeeee;
}
html .page-parents-and-carers .commentForm {
  background: #eeeeee;
}
html .page-parents-and-carers .commentForm::after {
  border-color: #eeeeee transparent;
}
html .page-parents-and-carers .commentForm:active,
html .page-parents-and-carers .commentForm:hover,
html .page-parents-and-carers .commentForm:focus {
  background: #279dda;
}
html .page-parents-and-carers a.comments::after,
html .page-parents-and-carers .commentForm:active::after,
html .page-parents-and-carers .commentForm:hover::after,
html .page-parents-and-carers .commentForm:focus::after {
  border-color: #279dda transparent;
}
html .page-parents-and-carers .blog-archive-list-feature li a {
  color: #279dda;
}
html .page-parents-and-carers .blog-archive-list-feature li a:hover {
  color: #1e7eb0;
}
html .page-parents-and-carers footer .top .item .soical li a {
  color: #279dda !important;
}
html .page-parents-and-carers footer .top .item .soical li a:hover {
  color: white !important;
}
html .page-parents-and-carers .primary-text-feature a,
html .page-parents-and-carers .secondary-text-feature a {
  color: #279dda;
}
html .page-parents-and-carers .download.cta a {
  background: #279dda;
}
html .page-parents-and-carers .download.cta a:before {
  border-color: #1e7eb0 white;
}
html .page-parents-and-carers ol > li {
  border-left: 2px solid #279dda;
}
html .page-parents-and-carers ol > li:before {
  background: #279dda;
}
html .page-parents-and-carers ul.filters li a {
  background: #279dda;
  color: white;
}
html .page-parents-and-carers ul.filters li a:hover,
html .page-parents-and-carers ul.filters li a:focus {
  background: #1e7eb0;
}
html .page-parents-and-carers .primary-text-feature .map .title {
  border-color: #279dda;
}
html .page-parents-and-carers a:link,
html .page-parents-and-carers a:visited {
  color: #279dda;
}
html .page-parents-and-carers footer .top a {
  color: white !important;
}
html .page-parents-and-carers #blogSlider li a {
  color: #279dda;
}
html .page-parents-and-carers .quizQuestion h3 {
  color: #279dda !important;
}
html .page-teachers-and-professionals .st-accordion > ul > li > div.title {
  color: #99cc33 !important;
}
html .page-teachers-and-professionals .hot-topic-list-feature a {
  color: #99cc33 !important;
}
html .page-teachers-and-professionals .hot-topic-list-feature a:hover {
  color: #8ab82e !important;
}
html .page-teachers-and-professionals .poll-feature button {
  background: #99cc33;
}
html .page-teachers-and-professionals .poll-feature ul li div {
  background: #99cc33;
}
html .page-teachers-and-professionals .shaded-text-feature {
  background: #99cc33;
  color: white !important;
}
html .page-teachers-and-professionals .shaded-text-feature h1,
html .page-teachers-and-professionals .shaded-text-feature h2,
html .page-teachers-and-professionals .shaded-text-feature h3,
html .page-teachers-and-professionals .shaded-text-feature h4 {
  color: white !important;
}
html .page-teachers-and-professionals .shaded-text-feature a {
  color: white !important;
  font-weight: bold !important;
}
html .page-teachers-and-professionals .shaded-text-feature ol > li:before {
  color: #99cc33;
}
html .page-teachers-and-professionals h1 {
  color: #99cc33;
  border-top: 10px solid #99cc33 !important;
}
@media only screen and (max-width: 600px) {
  html .page-teachers-and-professionals h1 {
    border: none !important;
  }
}
@media only screen and (max-width: 600px) {
  html .page-teachers-and-professionals .headerImage {
    border-bottom: 10px solid #99cc33 !important;
  }
}
html .page-teachers-and-professionals nav#navigation ul li.active a {
  border-bottom: 10px solid #99cc33;
}
@media only screen and (max-width: 980px) {
  html .page-teachers-and-professionals nav#navigation ul li.active a {
    color: #99cc33;
  }
}
html .page-teachers-and-professionals nav#subNavigation,
html .page-teachers-and-professionals nav#subNavigation ul li a {
  background: #99cc33;
}
html .page-teachers-and-professionals nav#subNavigation > ul > li.active a {
  background: #8ab82e;
}
html .page-teachers-and-professionals nav#subNavigation ul li a:hover {
  background: #8ab82e;
}
@media only screen and (max-width: 980px) {
  html .page-teachers-and-professionals nav#navigation ul li.active ul > li.active > a {
    color: #99cc33 !important;
  }
}
html .page-teachers-and-professionals nav#other > ul > li.active a {
  border-bottom: 10px solid #99cc33;
}
html .page-teachers-and-professionals .twitter-feed-feature {
  background: #99cc33;
}
html .page-teachers-and-professionals .twitter-feed-feature::after {
  border-color: #99cc33 transparent;
}
html .page-teachers-and-professionals .twitter-feed-feature ul li,
html .page-teachers-and-professionals nav#subNavigation > ul > li {
  border-bottom: 1px solid #a3d147;
}
html .page-teachers-and-professionals input[type="submit"],
html .page-teachers-and-professionals input[type="button"],
html .page-teachers-and-professionals .jsCheckoutB {
  background: #99cc33;
  -webkit-transition: background 0.2s ease-in;
  -moz-transition: background 0.2s ease-in;
  -ms-transition: background 0.2s ease-in;
  -o-transition: background 0.2s ease-in;
  transition: background 0.2s ease-in;
  -webkit-transition: all background 0.2s ease-in ease-out;
  -moz-transition: all background 0.2s ease-in ease-out;
  transition: all background 0.2s ease-in ease-out;
}
html .page-teachers-and-professionals input[type="submit"]:hover,
html .page-teachers-and-professionals input[type="button"]:hover,
html .page-teachers-and-professionals .jsCheckoutB:hover {
  background: #8ab82e;
}
html .page-teachers-and-professionals .date {
  background: #99cc33;
}
html .page-teachers-and-professionals nav#footer-links ul li a:hover,
html .page-teachers-and-professionals nav#footer-links ul li a:focus {
  color: #99cc33;
}
html .page-teachers-and-professionals a.tag,
html .page-teachers-and-professionals a.comments {
  background: #99cc33;
}
html .page-teachers-and-professionals .featureCommentRepeat {
  background: #eeeeee;
}
html .page-teachers-and-professionals .featureCommentRepeat::after {
  border-color: transparent #eeeeee;
}
html .page-teachers-and-professionals .commentForm {
  background: #eeeeee;
}
html .page-teachers-and-professionals .commentForm::after {
  border-color: #eeeeee transparent;
}
html .page-teachers-and-professionals .commentForm:active,
html .page-teachers-and-professionals .commentForm:hover,
html .page-teachers-and-professionals .commentForm:focus {
  background: #99cc33;
}
html .page-teachers-and-professionals a.comments::after,
html .page-teachers-and-professionals .commentForm:active::after,
html .page-teachers-and-professionals .commentForm:hover::after,
html .page-teachers-and-professionals .commentForm:focus::after {
  border-color: #99cc33 transparent;
}
html .page-teachers-and-professionals .blog-archive-list-feature li a {
  color: #99cc33;
}
html .page-teachers-and-professionals .blog-archive-list-feature li a:hover {
  color: #7aa329;
}
html .page-teachers-and-professionals footer .top .item .soical li a {
  color: #99cc33 !important;
}
html .page-teachers-and-professionals footer .top .item .soical li a:hover {
  color: white !important;
}
html .page-teachers-and-professionals .primary-text-feature a,
html .page-teachers-and-professionals .secondary-text-feature a {
  color: #99cc33;
}
html .page-teachers-and-professionals .download.cta a {
  background: #99cc33;
}
html .page-teachers-and-professionals .download.cta a:before {
  border-color: #7aa329 white;
}
html .page-teachers-and-professionals ol > li {
  border-left: 2px solid #99cc33;
}
html .page-teachers-and-professionals ol > li:before {
  background: #99cc33;
}
html .page-teachers-and-professionals ul.filters li a {
  background: #99cc33;
  color: white;
}
html .page-teachers-and-professionals ul.filters li a:hover,
html .page-teachers-and-professionals ul.filters li a:focus {
  background: #7aa329;
}
html .page-teachers-and-professionals .primary-text-feature .map .title {
  border-color: #99cc33;
}
html .page-teachers-and-professionals a:link,
html .page-teachers-and-professionals a:visited {
  color: #99cc33;
}
html .page-teachers-and-professionals footer .top a {
  color: white !important;
}
html .page-teachers-and-professionals #blogSlider li a {
  color: #99cc33;
}
html .page-teachers-and-professionals .quizQuestion h3 {
  color: #99cc33 !important;
}
html .page-what-we-do .st-accordion > ul > li > div.title {
  color: #ff6600 !important;
}
html .page-what-we-do .hot-topic-list-feature a {
  color: #ff6600 !important;
}
html .page-what-we-do .hot-topic-list-feature a:hover {
  color: #e65c00 !important;
}
html .page-what-we-do .poll-feature button {
  background: #ff6600;
}
html .page-what-we-do .poll-feature ul li div {
  background: #ff6600;
}
html .page-what-we-do .shaded-text-feature {
  background: #ff6600;
  color: white !important;
}
html .page-what-we-do .shaded-text-feature h1,
html .page-what-we-do .shaded-text-feature h2,
html .page-what-we-do .shaded-text-feature h3,
html .page-what-we-do .shaded-text-feature h4 {
  color: white !important;
}
html .page-what-we-do .shaded-text-feature a {
  color: white !important;
  font-weight: bold !important;
}
html .page-what-we-do .shaded-text-feature ol > li:before {
  color: #ff6600;
}
html .page-what-we-do h1 {
  color: #ff6600;
  border-top: 10px solid #ff6600 !important;
}
@media only screen and (max-width: 600px) {
  html .page-what-we-do h1 {
    border: none !important;
  }
}
@media only screen and (max-width: 600px) {
  html .page-what-we-do .headerImage {
    border-bottom: 10px solid #ff6600 !important;
  }
}
html .page-what-we-do nav#navigation ul li.active a {
  border-bottom: 10px solid #ff6600;
}
@media only screen and (max-width: 980px) {
  html .page-what-we-do nav#navigation ul li.active a {
    color: #ff6600;
  }
}
html .page-what-we-do nav#subNavigation,
html .page-what-we-do nav#subNavigation ul li a {
  background: #ff6600;
}
html .page-what-we-do nav#subNavigation > ul > li.active a {
  background: #e65c00;
}
html .page-what-we-do nav#subNavigation ul li a:hover {
  background: #e65c00;
}
@media only screen and (max-width: 980px) {
  html .page-what-we-do nav#navigation ul li.active ul > li.active > a {
    color: #ff6600 !important;
  }
}
html .page-what-we-do nav#other > ul > li.active a {
  border-bottom: 10px solid #ff6600;
}
html .page-what-we-do .twitter-feed-feature {
  background: #ff6600;
}
html .page-what-we-do .twitter-feed-feature::after {
  border-color: #ff6600 transparent;
}
html .page-what-we-do .twitter-feed-feature ul li,
html .page-what-we-do nav#subNavigation > ul > li {
  border-bottom: 1px solid #ff751a;
}
html .page-what-we-do input[type="submit"],
html .page-what-we-do input[type="button"],
html .page-what-we-do .jsCheckoutB {
  background: #ff6600;
  -webkit-transition: background 0.2s ease-in;
  -moz-transition: background 0.2s ease-in;
  -ms-transition: background 0.2s ease-in;
  -o-transition: background 0.2s ease-in;
  transition: background 0.2s ease-in;
  -webkit-transition: all background 0.2s ease-in ease-out;
  -moz-transition: all background 0.2s ease-in ease-out;
  transition: all background 0.2s ease-in ease-out;
}
html .page-what-we-do input[type="submit"]:hover,
html .page-what-we-do input[type="button"]:hover,
html .page-what-we-do .jsCheckoutB:hover {
  background: #e65c00;
}
html .page-what-we-do .date {
  background: #ff6600;
}
html .page-what-we-do nav#footer-links ul li a:hover,
html .page-what-we-do nav#footer-links ul li a:focus {
  color: #ff6600;
}
html .page-what-we-do a.tag,
html .page-what-we-do a.comments {
  background: #ff6600;
}
html .page-what-we-do .featureCommentRepeat {
  background: #eeeeee;
}
html .page-what-we-do .featureCommentRepeat::after {
  border-color: transparent #eeeeee;
}
html .page-what-we-do .commentForm {
  background: #eeeeee;
}
html .page-what-we-do .commentForm::after {
  border-color: #eeeeee transparent;
}
html .page-what-we-do .commentForm:active,
html .page-what-we-do .commentForm:hover,
html .page-what-we-do .commentForm:focus {
  background: #ff6600;
}
html .page-what-we-do a.comments::after,
html .page-what-we-do .commentForm:active::after,
html .page-what-we-do .commentForm:hover::after,
html .page-what-we-do .commentForm:focus::after {
  border-color: #ff6600 transparent;
}
html .page-what-we-do .blog-archive-list-feature li a {
  color: #ff6600;
}
html .page-what-we-do .blog-archive-list-feature li a:hover {
  color: #cc5200;
}
html .page-what-we-do footer .top .item .soical li a {
  color: #ff6600 !important;
}
html .page-what-we-do footer .top .item .soical li a:hover {
  color: white !important;
}
html .page-what-we-do .primary-text-feature a,
html .page-what-we-do .secondary-text-feature a {
  color: #ff6600;
}
html .page-what-we-do .download.cta a {
  background: #ff6600;
}
html .page-what-we-do .download.cta a:before {
  border-color: #cc5200 white;
}
html .page-what-we-do ol > li {
  border-left: 2px solid #ff6600;
}
html .page-what-we-do ol > li:before {
  background: #ff6600;
}
html .page-what-we-do ul.filters li a {
  background: #ff6600;
  color: white;
}
html .page-what-we-do ul.filters li a:hover,
html .page-what-we-do ul.filters li a:focus {
  background: #cc5200;
}
html .page-what-we-do .primary-text-feature .map .title {
  border-color: #ff6600;
}
html .page-what-we-do a:link,
html .page-what-we-do a:visited {
  color: #ff6600;
}
html .page-what-we-do footer .top a {
  color: white !important;
}
html .page-what-we-do #blogSlider li a {
  color: #ff6600;
}
html .page-what-we-do .quizQuestion h3 {
  color: #ff6600 !important;
}
html .page-press-and-policy .st-accordion > ul > li > div.title {
  color: #ff6600 !important;
}
html .page-press-and-policy .hot-topic-list-feature a {
  color: #ff6600 !important;
}
html .page-press-and-policy .hot-topic-list-feature a:hover {
  color: #e65c00 !important;
}
html .page-press-and-policy .poll-feature button {
  background: #ff6600;
}
html .page-press-and-policy .poll-feature ul li div {
  background: #ff6600;
}
html .page-press-and-policy .shaded-text-feature {
  background: #ff6600;
  color: white !important;
}
html .page-press-and-policy .shaded-text-feature h1,
html .page-press-and-policy .shaded-text-feature h2,
html .page-press-and-policy .shaded-text-feature h3,
html .page-press-and-policy .shaded-text-feature h4 {
  color: white !important;
}
html .page-press-and-policy .shaded-text-feature a {
  color: white !important;
  font-weight: bold !important;
}
html .page-press-and-policy .shaded-text-feature ol > li:before {
  color: #ff6600;
}
html .page-press-and-policy h1 {
  color: #ff6600;
  border-top: 10px solid #ff6600 !important;
}
@media only screen and (max-width: 600px) {
  html .page-press-and-policy h1 {
    border: none !important;
  }
}
@media only screen and (max-width: 600px) {
  html .page-press-and-policy .headerImage {
    border-bottom: 10px solid #ff6600 !important;
  }
}
html .page-press-and-policy nav#navigation ul li.active a {
  border-bottom: 10px solid #ff6600;
}
@media only screen and (max-width: 980px) {
  html .page-press-and-policy nav#navigation ul li.active a {
    color: #ff6600;
  }
}
html .page-press-and-policy nav#subNavigation,
html .page-press-and-policy nav#subNavigation ul li a {
  background: #ff6600;
}
html .page-press-and-policy nav#subNavigation > ul > li.active a {
  background: #e65c00;
}
html .page-press-and-policy nav#subNavigation ul li a:hover {
  background: #e65c00;
}
@media only screen and (max-width: 980px) {
  html .page-press-and-policy nav#navigation ul li.active ul > li.active > a {
    color: #ff6600 !important;
  }
}
html .page-press-and-policy nav#other > ul > li.active a {
  border-bottom: 10px solid #ff6600;
}
html .page-press-and-policy .twitter-feed-feature {
  background: #ff6600;
}
html .page-press-and-policy .twitter-feed-feature::after {
  border-color: #ff6600 transparent;
}
html .page-press-and-policy .twitter-feed-feature ul li,
html .page-press-and-policy nav#subNavigation > ul > li {
  border-bottom: 1px solid #ff751a;
}
html .page-press-and-policy input[type="submit"],
html .page-press-and-policy input[type="button"],
html .page-press-and-policy .jsCheckoutB {
  background: #ff6600;
  -webkit-transition: background 0.2s ease-in;
  -moz-transition: background 0.2s ease-in;
  -ms-transition: background 0.2s ease-in;
  -o-transition: background 0.2s ease-in;
  transition: background 0.2s ease-in;
  -webkit-transition: all background 0.2s ease-in ease-out;
  -moz-transition: all background 0.2s ease-in ease-out;
  transition: all background 0.2s ease-in ease-out;
}
html .page-press-and-policy input[type="submit"]:hover,
html .page-press-and-policy input[type="button"]:hover,
html .page-press-and-policy .jsCheckoutB:hover {
  background: #e65c00;
}
html .page-press-and-policy .date {
  background: #ff6600;
}
html .page-press-and-policy nav#footer-links ul li a:hover,
html .page-press-and-policy nav#footer-links ul li a:focus {
  color: #ff6600;
}
html .page-press-and-policy a.tag,
html .page-press-and-policy a.comments {
  background: #ff6600;
}
html .page-press-and-policy .featureCommentRepeat {
  background: #eeeeee;
}
html .page-press-and-policy .featureCommentRepeat::after {
  border-color: transparent #eeeeee;
}
html .page-press-and-policy .commentForm {
  background: #eeeeee;
}
html .page-press-and-policy .commentForm::after {
  border-color: #eeeeee transparent;
}
html .page-press-and-policy .commentForm:active,
html .page-press-and-policy .commentForm:hover,
html .page-press-and-policy .commentForm:focus {
  background: #ff6600;
}
html .page-press-and-policy a.comments::after,
html .page-press-and-policy .commentForm:active::after,
html .page-press-and-policy .commentForm:hover::after,
html .page-press-and-policy .commentForm:focus::after {
  border-color: #ff6600 transparent;
}
html .page-press-and-policy .blog-archive-list-feature li a {
  color: #ff6600;
}
html .page-press-and-policy .blog-archive-list-feature li a:hover {
  color: #cc5200;
}
html .page-press-and-policy footer .top .item .soical li a {
  color: #ff6600 !important;
}
html .page-press-and-policy footer .top .item .soical li a:hover {
  color: white !important;
}
html .page-press-and-policy .primary-text-feature a,
html .page-press-and-policy .secondary-text-feature a {
  color: #ff6600;
}
html .page-press-and-policy .download.cta a {
  background: #ff6600;
}
html .page-press-and-policy .download.cta a:before {
  border-color: #cc5200 white;
}
html .page-press-and-policy ol > li {
  border-left: 2px solid #ff6600;
}
html .page-press-and-policy ol > li:before {
  background: #ff6600;
}
html .page-press-and-policy ul.filters li a {
  background: #ff6600;
  color: white;
}
html .page-press-and-policy ul.filters li a:hover,
html .page-press-and-policy ul.filters li a:focus {
  background: #cc5200;
}
html .page-press-and-policy .primary-text-feature .map .title {
  border-color: #ff6600;
}
html .page-press-and-policy a:link,
html .page-press-and-policy a:visited {
  color: #ff6600;
}
html .page-press-and-policy footer .top a {
  color: white !important;
}
html .page-press-and-policy #blogSlider li a {
  color: #ff6600;
}
html .page-press-and-policy .quizQuestion h3 {
  color: #ff6600 !important;
}
a[href^="/"] .listImage span.title {
  border-top: 7px solid #5c5c5c;
}
a[href^="/young-people"] .listImage span.title {
  border-top: 7px solid #5c5c5c !important;
}
a[href^="/parents-and-carers"] .listImage span.title {
  border-top: 7px solid #5c5c5c !important;
}
a[href^="/teachers-and-professionals"] .listImage span.title {
  fborder-top: 7px solid #5c5c5c !important;
}
a[href^="/contact-us"] .map span.title {
  border-top: 7px solid #ff6600 !important;
}
a[href^="/"] .tint {
  background: transparent;
}
a[href^="/"] .tint:hover {
  background: rgba(0, 0, 0, 0.2);
}
a[href^="/young-people"] .tint {
  background: transparent;
}
a[href^="/young-people"] .tint:hover {
  background: rgba(0, 0, 0, 0.2);
}
a[href^="/parents-and-carers"] .tint {
  background: transparent;
}
a[href^="/parents-and-carers"] .tint:hover {
  background: rgba(0, 0, 0, 0.2);
}
a[href^="/teachers-and-professionals"] .tint {
  background: transparent;
}
a[href^="/teachers-and-professionals"] .tint:hover {
  background: rgba(0, 0, 0, 0.2);
}
/*
li.cat-blog a, li.cat-industry			{ background: @orange; }
li.cat-children a 						{ background: @pink; }
li.cat-parent-and-carers a 				{ background: @blue; }
li.cat-teacher-and-professionals a		{ background: @green; }
li.cat-young-people a 					{ background: @pink; }
*/

/*
.cat-blog, .cat-industry				{ background: @orange !important; }
.cat-child 								{ background: @pink !important; }
.cat-parent 							{ background: @blue !important; }
.cat-teacher 							{ background: @green !important; }
.cat-young-people 						{ background: @pink !important; }
.cat-resource 							{ background: @orange !important; }

.cat-blog:after, .cat-industry:after 	{ border-color: @orange transparent !important; }
.cat-children:after 					{ border-color: @pink transparent !important; }
.cat-parent-and-carers:after 			{ border-color: @blue transparent !important; }
.cat-teacher-and-professionals:after 	{ border-color: @green transparent !important; }
.cat-young-people:after 				{ border-color: @pink transparent !important; }
*/

/* END PAGE THEMES */

.shoppingBasket-plain .jsCheckoutB {
  margin-bottom: 20px !important;
}
.error h1 {
  margin-top: 70px;
}
/* PRE */

pre {
  height: auto;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
  padding: 15px !important;
  background: #5c5c5c !important;
}
pre code {
  font: 16px Monaco, 'andale mono', 'lucida console', monospace;
}
code {
  font: 14px Monaco, 'andale mono', 'lucida console', monospace;
}
.primary-text-feature a,
.secondary-text-feature a,
shaded-text-feature a {
  font-weight: bold;
}
.searchResults > p {
  margin-bottom: 30px;
}
.st-accordion > ul > li {
  background: #f8f8f8;
  padding: 0 10px;
}
.blog-archive-list-feature .st-accordion li {
  background: white !important;
  padding: 0 0 10px 0 !important;
}
.blog-archive-list-feature .st-accordion li .title {
  padding: 0 !important;
}
.blog-archive-list-feature .st-accordion li .st-content {
  padding: 5px 0 15px 0 !important;
}
.blog-archive-list-feature .st-accordion li .st-content a {
  display: block;
  padding: 0 !important;
}
a.back-resources,
a.sign-out {
  display: block;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  margin-bottom: 20px;
  background: #ff6600;
  color: white !important;
  -webkit-transition: background 0.5s ease-in;
  -moz-transition: background 0.5s ease-in;
  -ms-transition: background 0.5s ease-in;
  -o-transition: background 0.5s ease-in;
  transition: background 0.5s ease-in;
  -webkit-transition: all background 0.5s ease-in ease-out;
  -moz-transition: all background 0.5s ease-in ease-out;
  transition: all background 0.5s ease-in ease-out;
}
a.back-resources:before,
a.sign-out:before {
  content: "\2190";
  /* todo: change arrow */
  padding-right: 5px;
}
a.back-resources:hover,
a.sign-out:hover {
  background: #cc5200;
  text-decoration: none !important;
}
aside .corkBoard {
  position: relative;
  padding: 20px;
  background: url("../img/corkBoardRepeat.jpg") repeat;
  background-size: 100% auto;
  margin-bottom: 20px;
  overflow: auto;
}
@media only screen and (max-width: 600px) {
  aside .corkBoard {
    padding: 40px;
    /*
  .row();
  			.feature {
  				.column(2,4);
  			}
  */
  
  }
}
aside .corkBoard:before,
aside .corkBoard:after {
  position: absolute;
  content: " ";
  display: block;
  height: 10px;
  width: 100%;
  background-size: 100% auto;
  z-index: 200;
}
aside .corkBoard:before {
  top: 0;
  left: 0;
  background: url("../img/corkBoardTop.jpg") no-repeat;
}
aside .corkBoard:after {
  bottom: 0;
  left: 0;
  background: url("../img/corkBoardBottom.jpg") no-repeat;
}
aside .corkBoard .feature {
  background: url("../img/pin.jpg") no-repeat center top #f3f3f3;
  padding: 20px;
}
aside .corkBoard .feature:first-child {
  margin-top: 0;
}
aside .corkBoard .feature:last-child {
  margin-bottom: 0;
}
aside .corkBoard .feature h2,
aside .corkBoard .feature h3,
aside .corkBoard .feature h4,
aside .corkBoard .feature h5,
aside .corkBoard .feature p,
aside .corkBoard .feature a {
  margin-top: 0;
  color: #333333 !important;
}
aside .corkBoard .feature.image-grid-feature,
aside .corkBoard .feature.rotating-image-grid-feature {
  margin: 0 0 20px 0 !important;
}
aside .corkBoard .feature.image-grid-feature .listItem,
aside .corkBoard .feature.rotating-image-grid-feature .listItem {
  padding: 0 !important;
  margin-bottom: 20px;
}
@media only screen and (max-width: 600px) {
  aside .corkBoard .feature.image-grid-feature .listItem,
  aside .corkBoard .feature.rotating-image-grid-feature .listItem {
    display: inline;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 50%;
    padding: 0 10px;
    *zoom: 1;
  }
  aside .corkBoard .feature.image-grid-feature .listItem:before,
  aside .corkBoard .feature.rotating-image-grid-feature .listItem:before,
  aside .corkBoard .feature.image-grid-feature .listItem:after,
  aside .corkBoard .feature.rotating-image-grid-feature .listItem:after {
    content: "";
    display: table;
  }
  aside .corkBoard .feature.image-grid-feature .listItem:after,
  aside .corkBoard .feature.rotating-image-grid-feature .listItem:after {
    clear: both;
  }
  aside .corkBoard .feature.image-grid-feature .listItem:before,
  aside .corkBoard .feature.rotating-image-grid-feature .listItem:before,
  aside .corkBoard .feature.image-grid-feature .listItem:after,
  aside .corkBoard .feature.rotating-image-grid-feature .listItem:after {
    display: table;
    content: "";
  }
  aside .corkBoard .feature.image-grid-feature .listItem:after,
  aside .corkBoard .feature.rotating-image-grid-feature .listItem:after {
    clear: both;
  }
}
@media only screen and (max-width: 500px) {
  aside .corkBoard .feature.image-grid-feature .listItem,
  aside .corkBoard .feature.rotating-image-grid-feature .listItem {
    display: inline;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 0 10px;
    *zoom: 1;
  }
  aside .corkBoard .feature.image-grid-feature .listItem:before,
  aside .corkBoard .feature.rotating-image-grid-feature .listItem:before,
  aside .corkBoard .feature.image-grid-feature .listItem:after,
  aside .corkBoard .feature.rotating-image-grid-feature .listItem:after {
    content: "";
    display: table;
  }
  aside .corkBoard .feature.image-grid-feature .listItem:after,
  aside .corkBoard .feature.rotating-image-grid-feature .listItem:after {
    clear: both;
  }
  aside .corkBoard .feature.image-grid-feature .listItem:before,
  aside .corkBoard .feature.rotating-image-grid-feature .listItem:before,
  aside .corkBoard .feature.image-grid-feature .listItem:after,
  aside .corkBoard .feature.rotating-image-grid-feature .listItem:after {
    display: table;
    content: "";
  }
  aside .corkBoard .feature.image-grid-feature .listItem:after,
  aside .corkBoard .feature.rotating-image-grid-feature .listItem:after {
    clear: both;
  }
}
@media only screen and (max-width: 600px) {
  aside .corkBoard .feature.image-grid-feature .listItem,
  aside .corkBoard .feature.rotating-image-grid-feature .listItem {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 10px !important;
  }
}
aside .corkBoard .feature.image-grid-feature .listItem .title,
aside .corkBoard .feature.rotating-image-grid-feature .listItem .title {
  background: #f3f3f3;
}
@media only screen and (max-width: 980px) {
  aside .corkBoard .feature.image-grid-feature .listItem .title,
  aside .corkBoard .feature.rotating-image-grid-feature .listItem .title {
    position: static;
    border: none;
    padding-top: 5px;
  }
}
aside .corkBoard .resource-grid-feature {
  margin: 0 !important;
}
aside .corkBoard .resource-grid-feature > * {
  margin-left: 0 !important;
}
aside .corkBoard .resource-grid-feature .resource {
  padding: 0 !important;
}
aside .corkBoard .resource-grid-feature .resource .resource-wrapper {
  background: none !important;
  padding: 0 !important;
}
/* Flexible iFrame */

.flexible-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.flexible-container iframe,
.flexible-container object,
.flexible-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Additional Styles */

.fb-like {
  margin-top: 40px;
}
#sidebar-first .image-list-feature .listItem {
  margin-bottom: 20px;
  clear: both;
}
#sidebar-first .image-list-feature .listItem .listImage {
  margin-right: 0;
  display: inline;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 25%;
  padding: 0 10px;
  *zoom: 1;
  padding: 0 10px 0 0;
}
#sidebar-first .image-list-feature .listItem .listImage:before,
#sidebar-first .image-list-feature .listItem .listImage:after {
  content: "";
  display: table;
}
#sidebar-first .image-list-feature .listItem .listImage:after {
  clear: both;
}
#sidebar-first .image-list-feature .listItem .listImage:before,
#sidebar-first .image-list-feature .listItem .listImage:after {
  display: table;
  content: "";
}
#sidebar-first .image-list-feature .listItem .listImage:after {
  clear: both;
}
#sidebar-first .image-list-feature .listItem .listImage a,
#sidebar-first .image-list-feature .listItem .listImage image {
  display: block;
}
#sidebar-first .image-list-feature h3 {
  line-height: normal;
  font-size: 16px;
}
a {
  cursor: pointer;
}
a:hover {
  text-decoration: none !important;
  color: #cc5200;
}
.searchResults a {
  color: #ff6600;
}
.searchResults a:hover {
  text-decoration: none;
  color: #cc5200;
}
#sidebar-first .resource-grid-feature .resource {
  width: 100%;
}
.resource-grid-feature,
.resource-feature {
  display: block;
  margin: 0 -10px;
  *zoom: 1;
}
.resource-grid-feature h2,
.resource-feature h2,
.resource-grid-feature h3,
.resource-feature h3,
.resource-grid-feature p,
.resource-feature p {
  margin-left: 10px;
}
.resource-grid-feature p,
.resource-feature p {
  margin-top: 0;
  font-size: 12px;
}
.resource-grid-feature a p,
.resource-feature a p {
  color: #5c5c5c !important;
}
.resource-grid-feature:before,
.resource-feature:before,
.resource-grid-feature:after,
.resource-feature:after {
  content: "";
  display: table;
}
.resource-grid-feature:after,
.resource-feature:after {
  clear: both;
}
.resource-grid-feature:before,
.resource-feature:before,
.resource-grid-feature:after,
.resource-feature:after {
  display: table;
  content: "";
}
.resource-grid-feature:after,
.resource-feature:after {
  clear: both;
}
.resource-grid-feature .resource,
.resource-feature .resource {
  display: inline;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 50%;
  padding: 0 10px;
  *zoom: 1;
}
.resource-grid-feature .resource:before,
.resource-feature .resource:before,
.resource-grid-feature .resource:after,
.resource-feature .resource:after {
  content: "";
  display: table;
}
.resource-grid-feature .resource:after,
.resource-feature .resource:after {
  clear: both;
}
.resource-grid-feature .resource:before,
.resource-feature .resource:before,
.resource-grid-feature .resource:after,
.resource-feature .resource:after {
  display: table;
  content: "";
}
.resource-grid-feature .resource:after,
.resource-feature .resource:after {
  clear: both;
}
@media only screen and (max-width: 980px) {
  .resource-grid-feature .resource,
  .resource-feature .resource {
    display: inline;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 0 10px;
    *zoom: 1;
  }
  .resource-grid-feature .resource:before,
  .resource-feature .resource:before,
  .resource-grid-feature .resource:after,
  .resource-feature .resource:after {
    content: "";
    display: table;
  }
  .resource-grid-feature .resource:after,
  .resource-feature .resource:after {
    clear: both;
  }
  .resource-grid-feature .resource:before,
  .resource-feature .resource:before,
  .resource-grid-feature .resource:after,
  .resource-feature .resource:after {
    display: table;
    content: "";
  }
  .resource-grid-feature .resource:after,
  .resource-feature .resource:after {
    clear: both;
  }
}
.resource-grid-feature .resource:nth-child(odd),
.resource-feature .resource:nth-child(odd) {
  clear: left;
}
.resource-grid-feature .resource .resource-wrapper,
.resource-feature .resource .resource-wrapper {
  background: #eeeeee;
  padding: 7px;
  overflow: hidden;
  margin-bottom: 20px;
  display: block;
  text-decoration: none !important;
}
.resource-grid-feature .resource .resource-wrapper:hover h4,
.resource-feature .resource .resource-wrapper:hover h4 {
  color: #5c5c5c;
}
.resource-grid-feature .resource .resource-wrapper .crop,
.resource-feature .resource .resource-wrapper .crop {
  width: 145px;
  height: 80px;
  overflow: hidden;
  /* this is important */
  border: 1px solid #cccccc;
  float: left;
  margin-right: 7px;
  background: white;
}
@media only screen and (max-width: 980px) {
  .resource-grid-feature .resource .resource-wrapper .crop,
  .resource-feature .resource .resource-wrapper .crop {
    width: 110px;
    height: 60px;
  }
}
@media only screen and (max-width: 500px) {
  .resource-grid-feature .resource .resource-wrapper .crop,
  .resource-feature .resource .resource-wrapper .crop {
    width: 100px;
    height: 55px;
  }
}
.resource-grid-feature .resource .resource-wrapper .crop img,
.resource-feature .resource .resource-wrapper .crop img {
  display: block;
}
.resource-grid-feature .resource .resource-wrapper h4,
.resource-feature .resource .resource-wrapper h4 {
  display: block;
  font-size: 16px;
  color: #ff6600;
  line-height: normal;
  margin-top: 0;
}
.resource-grid-feature .resource .resource-wrapper p,
.resource-feature .resource .resource-wrapper p {
  font-size: 12px;
  margin: 0;
  padding: 0;
  color: #ff6600;
}
/* Shop Product Pages */

/*
.page-shop.page-Resources.level2 {
	.product {
		.productImages {
			overflow: hidden;
			img {
				float: left;
				margin-right: @gutter-width;
			}
			ul.imgGallery {
				list-style: none;
				padding: 0;
				margin: 0;
			}
		}
		.desc {
			clear: both;
			margin-top: @gutter-width;
		}
	}
}
*/

/* Checkout Page */

.checkout a.jsCheckoutB {
  color: white !important;
}
/* supporters images */

#supporters-images {
  list-style: none;
  padding: 0;
  margin: 0;
}
#supporters-images li {
  float: left;
  margin-right: 35px;
}
/* footer logo */

footer nav#footer-links ul.projects li {
  width: auto;
  height: 84px;
}
footer nav#footer-links ul.projects li a.uksic {
  float: left;
  width: 170px;
  height: 84px;
  background: url("../img/safer-internet-centre.png") no-repeat !important;
}
footer nav#footer-links ul.projects li a.youthigfproject {
  float: left;
  width: 120px;
  height: 58px;
  background: url("../img/youth-igf-project.jpg") no-repeat !important;
}
footer nav#footer-links ul.projects li a.nominet:hover {
  margin-top: 0px;
}
/* Preview mode */

#editbar_PreviewBar {
  z-index: 5000;
  display: block;
  position: relative;
}
/* responsive */

@media only screen and (max-width: 980px) {
  html nav#navigation ul li.active a {
    border-bottom: none !important;
  }
  body.page- .inner div {
    width: 100% !important;
  }
  body.page- .inner .twitter-feed-feature {
    display: none;
  }
}
nav#footer-links ul {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 20px 0 0;
  overflow: hidden;
  float: left;
  margin: 10px 0 !important;
}
@media only screen and (max-width: 980px) {
  nav#footer-links ul {
    display: block;
    margin: 0 -10px;
    *zoom: 1;
    width: 100% !important;
  }
  nav#footer-links ul:before,
  nav#footer-links ul:after {
    content: "";
    display: table;
  }
  nav#footer-links ul:after {
    clear: both;
  }
  nav#footer-links ul:before,
  nav#footer-links ul:after {
    display: table;
    content: "";
  }
  nav#footer-links ul:after {
    clear: both;
  }
}
nav#footer-links ul.projects {
  clear: both;
  float: none;
  display: block;
  padding: 20px 0 20px !important;
  margin-top: -40px;
  border-bottom: 1px solid #cccccc;
}
@media only screen and (max-width: 600px) {
  
}
nav#footer-links ul.projects li {
  float: left;
  width: 150px;
  height: 58px;
}
@media only screen and (max-width: 980px) {
  nav#footer-links ul.projects li {
    margin-bottom: 20px;
  }
}
nav#footer-links ul.projects li a {
  background: transparent url("../img/icons.png") no-repeat;
  display: block;
  width: 150px;
  height: 58px;
  padding-top: 10px;
  margin-top: 0px;
  -webkit-transition: all 0.1s ease-in;
  -moz-transition: all 0.1s ease-in;
  -ms-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  -webkit-transition: all all 0.1s ease-in ease-out;
  -moz-transition: all all 0.1s ease-in ease-out;
  transition: all all 0.1s ease-in ease-out;
  padding-top: 0;
  color: #5c5c5c !important;
}
nav#footer-links ul.projects li a:hover {
  margin-top: -10px;
}
nav#footer-links ul.projects li a.digizen {
  background-position: -30px -88px;
}
nav#footer-links ul.projects li a.kia {
  background-position: -211px -86px;
}
nav#footer-links ul.projects li a.kidsmart {
  background-position: -389px -86px;
}
nav#footer-links ul.projects li a.chatdanger {
  background-position: -570px -86px;
}
nav#footer-links ul.projects li a.uksic {
  background-position: -749px -84px;
}
nav#footer-links ul.projects li a.saferinternetcenter {
  background-position: -730px -8px;
  height: 68px;
}
nav#footer-links ul.projects li a.digital-leaders {
  background-image: url(../img/DigitalLeaders.png);
  background-size: contain;
}
nav#footer-links ul.projects li a.nominet {
  background-position: -905px -86px;
  width: 180px !important;
}
@media only screen and (max-width: 980px) {
  nav#footer-links ul.projects li a.nominet {
    margin-left: 50px;
  }
}
nav#footer-links ul.projects li a span {
  height: 0;
  width: 0;
  display: block;
  overflow: hidden;
}
nav#footer-links ul.projects li a small {
  margin: -25px 15px 0 0;
}
nav#footer-links ul li {
  float: left;
  margin-right: 20px;
}
@media only screen and (max-width: 980px) {
  nav#footer-links ul li {
    display: inline;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 25%;
    padding: 0 10px;
    *zoom: 1;
  }
  nav#footer-links ul li:before,
  nav#footer-links ul li:after {
    content: "";
    display: table;
  }
  nav#footer-links ul li:after {
    clear: both;
  }
  nav#footer-links ul li:before,
  nav#footer-links ul li:after {
    display: table;
    content: "";
  }
  nav#footer-links ul li:after {
    clear: both;
  }
}
@media only screen and (max-width: 500px) {
  nav#footer-links ul li {
    display: inline;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 50%;
    padding: 0 10px;
    *zoom: 1;
  }
  nav#footer-links ul li:before,
  nav#footer-links ul li:after {
    content: "";
    display: table;
  }
  nav#footer-links ul li:after {
    clear: both;
  }
  nav#footer-links ul li:before,
  nav#footer-links ul li:after {
    display: table;
    content: "";
  }
  nav#footer-links ul li:after {
    clear: both;
  }
}
@media only screen and (max-width: 980px) {
  nav#footer-links ul li {
    margin-right: 0 !important;
    padding-left: 0;
  }
}
nav#footer-links ul li a {
  font-weight: 300;
  color: gray;
}
nav#footer-links p {
  clear: right;
  float: right;
  margin: 0px;
  font-size: 12px;
}
nav#footer-links p:first-of-type {
  margin-top: 20px;
}
@media only screen and (max-width: 980px) {
  nav#footer-links p {
    float: none !important;
    clear: left !important;
  }
}
@media only screen and (max-width: 980px) {
  .page-resources #main-content {
    margin-top: 0 !important;
  }
}
.page-resources #main-content select {
  width: 39%;
}
@media only screen and (max-width: 980px) {
  .page-resources #main-content select {
    width: 30% !important;
  }
}
@media only screen and (max-width: 500px) {
  .page-resources #main-content select {
    width: 30% !important;
  }
}
@media only screen and (max-width: 500px) {
  .page-resources .by-filter {
    margin: 0 20px 0 15px !important;
  }
  .page-resources .by-type {
    clear: left !important;
    margin: 0 14px 0 15px !important;
  }
  .page-resources #main-content select {
    width: 70% !important;
  }
}
body.page-support-us .orange {
  background: #ff6600;
  color: white;
  margin-bottom: 20px;
}
body.page-support-us .orange h3 {
  color: white;
}
body.page-support-us .box {
  margin-top: 40px;
  padding: 20px 20px 0px 20px;
}
body.page-support-us .donate-image {
  display: block;
  margin: 0 auto;
  position: relative;
  top: 20px;
}
body.page-support-us a.donate {
  padding: 20px;
  text-align: center;
  font-size: 30px;
  line-height: 30px;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  color: white !important;
}
body.page-support-us a:hover.donate {
  background: black;
}
nav#navigation ul li a {
  margin-right: 14px;
}
.feature.ed-team-feature h2 {
  font-size: 25px;
  line-height: 30px;
  margin: 20px 0 0 0;
}
@media only screen and (max-width: 600px) {
  .feature.ed-team-feature h2 {
    font-size: 20px;
    line-height: 20px;
  }
}
.feature.hot-topic-list-feature h2 {
  margin-bottom: 0;
}
.page- nav#navigation {
  bottom: 10px;
}
html.lt-ie9 .page- nav#navigation {
  bottom: 30px;
}
.suppreters-images {
  background: red !important;
  display: block;
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
html body.page-hot-topics #main-content .image-grid-feature .listItem {
  display: inline !important;
  float: left !important;
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  box-sizing: border-box !important;
  width: 33.333333333% !important;
  padding: 0 10px !important;
  *zoom: 1 !important;
}
html body.page-hot-topics #main-content .image-grid-feature .listItem:before,
html body.page-hot-topics #main-content .image-grid-feature .listItem:after {
  content: "";
  display: table;
}
html body.page-hot-topics #main-content .image-grid-feature .listItem:after {
  clear: both;
}
html body.page-hot-topics #main-content .image-grid-feature .listItem:before,
html body.page-hot-topics #main-content .image-grid-feature .listItem:after {
  display: table;
  content: "";
}
html body.page-hot-topics #main-content .image-grid-feature .listItem:after {
  clear: both;
}
html body.page-hot-topics #main-content .image-grid-feature .listItem:nth-child(odd) {
  clear: none !important;
}
.primary-block {
  background-color: #ff6600;
  padding: 20px;
  margin-left: 20px;
}
.primary-block.width-half {
  width: 40%;
  float: right;
}
.primary-block.width-half a {
  font-weight: normal !important;
  display: block;
}
.primary-block.width-half a:hover p {
  text-decoration: underline;
}
.primary-block h2 {
  color: white;
}
.primary-block p {
  color: white;
  font-size: 22px;
  margin: 0px !important;
}
.primary-block em {
  font-size: 13px;
  font-weight: bold;
  font-style: normal;
  margin-bottom: 20px !important;
  display: inline-block;
}
.primary-block blockquote {
  background-color: #ff6600;
  color: white;
  font-size: 17px;
  border: none;
  font-style: normal;
  position: relative;
  padding-left: 70px !important;
  margin: 10px;
}
.primary-block blockquote span {
  color: #faee56;
  font-size: 14px;
  display: block;
}
.primary-block blockquote:before {
  content: '“';
  color: #ff6600;
  display: block;
  height: 30px;
  width: 30px;
  background-color: white;
  border-radius: 100%;
  position: absolute;
  padding: 10px;
  top: 0px;
  left: 0px;
  font-size: 80px;
  line-height: 65px;
}
.primary-block-spacer {
  margin: 20px 0px !important;
}
.primary-block-large {
  margin-top: 30px;
}
.primary-block-large img {
  margin-top: -67px;
}
.primary-block-large h2 {
  margin: 0px;
}
.primary-block-large a {
  display: block;
}
.primary-block-large a:hover h2 {
  text-decoration: underline;
}
hr {
  height: 2px;
  background-color: #cbcbcb;
  border: none;
}
.primary-heading {
  color: #ff6600;
}
.secondary-heading {
  display: inline-block;
  border-bottom: 2px solid #979797;
  padding-bottom: 10px;
  font-size: 22px;
}
.second-primary-heading {
  color: #cf1b6a;
}
.count {
  text-align: center;
  display: inline;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 33.333333333%;
  padding: 0 10px;
  *zoom: 1;
}
.count:before,
.count:after {
  content: "";
  display: table;
}
.count:after {
  clear: both;
}
.count:before,
.count:after {
  display: table;
  content: "";
}
.count:after {
  clear: both;
}
@media only screen and (max-width: 500px) {
  .count {
    display: inline;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 0 10px;
    *zoom: 1;
  }
  .count:before,
  .count:after {
    content: "";
    display: table;
  }
  .count:after {
    clear: both;
  }
  .count:before,
  .count:after {
    display: table;
    content: "";
  }
  .count:after {
    clear: both;
  }
}
.count p {
  font-size: 44px;
  line-height: 1em;
}
.count:first-child img {
  margin-top: 14px;
}
body.page-20-years-of-childnets-work .article .mashup-plain strong {
  display: block;
  font-size: 33px;
  color: #ff6600;
  font-weight: normal;
  font-family: HelveticaNeue-Light, 'Helvetica Neue Light', 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;
}
body.page-20-years-of-childnets-work .article .mashup-plain blockquote,
body.page-20-years-of-childnets-work .article .mashup-plain .empowerment-quote {
  border: none;
  font-size: 21px;
  font-style: normal;
  padding: 0px;
  line-height: 1em;
}
body.page-20-years-of-childnets-work .article .mashup-plain blockquote cite,
body.page-20-years-of-childnets-work .article .mashup-plain .empowerment-quote cite {
  font-size: 14px;
  color: #ff6600;
  display: inline-block;
}
.chart-details {
  display: inline;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 41.666666667%;
  padding: 0 10px;
  *zoom: 1;
}
.chart-details:before,
.chart-details:after {
  content: "";
  display: table;
}
.chart-details:after {
  clear: both;
}
.chart-details:before,
.chart-details:after {
  display: table;
  content: "";
}
.chart-details:after {
  clear: both;
}
@media only screen and (max-width: 500px) {
  .chart-details {
    display: inline;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 0 10px;
    *zoom: 1;
  }
  .chart-details:before,
  .chart-details:after {
    content: "";
    display: table;
  }
  .chart-details:after {
    clear: both;
  }
  .chart-details:before,
  .chart-details:after {
    display: table;
    content: "";
  }
  .chart-details:after {
    clear: both;
  }
}
@media only screen and (max-width: 1130px) {
  .chart-details {
    clear: both;
    width: 100%;
  }
}
.chart-details h2 {
  font-size: 23px;
  line-height: 1em;
  margin: 0px 0px 10px 0px !important;
}
.chart-details p {
  font-size: 17px;
  padding: 0px !important;
  margin: 0px 0px 50px 0px !important;
}
.chart-details blockquote {
  margin: 10px 0px 20px 0px !important;
}
.chart-details > div {
  display: none;
}
@media only screen and (max-width: 474px) {
  .chart-details > div {
    display: block !important;
    border-top: 2px solid #cbcbcb;
    padding-top: 40px;
    margin-top: 30px;
  }
}
.chart-details .top-left h2,
.chart-details .top-left cite {
  color: #ff6600 !important;
}
.active-chart-top-left .chart-details .top-left {
  display: block;
}
.chart-details .top-right h2,
.chart-details .top-right cite {
  color: #29a2d4 !important;
}
.active-chart-top-right .chart-details .top-right {
  display: block;
}
.chart-details .bottom-right h2,
.chart-details .bottom-right cite {
  color: #76b72a !important;
}
.active-chart-bottom-right .chart-details .bottom-right {
  display: block;
}
.chart-details .bottom-left h2,
.chart-details .bottom-left cite {
  color: #cd0d61 !important;
}
.active-chart-bottom-left .chart-details .bottom-left {
  display: block;
}
.chart-wrap {
  display: inline;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 58.333333333%;
  padding: 0 10px;
  *zoom: 1;
}
.chart-wrap:before,
.chart-wrap:after {
  content: "";
  display: table;
}
.chart-wrap:after {
  clear: both;
}
.chart-wrap:before,
.chart-wrap:after {
  display: table;
  content: "";
}
.chart-wrap:after {
  clear: both;
}
@media only screen and (max-width: 1130px) {
  .chart-wrap {
    width: 426px;
    float: none;
    display: block;
    margin: 0 auto;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 474px) {
  .chart-wrap {
    display: none !important;
  }
}
.chart-wrap a:hover p {
  text-decoration: underline;
}
.chart-wrap .chart-top-left,
.chart-wrap .chart-top-right,
.chart-wrap .chart-bottom-right,
.chart-wrap .chart-bottom-left {
  width: 189px;
  height: 189px;
  float: left;
}
.chart-wrap .chart-top-left {
  padding: 14px 0px 0px 14px;
}
.chart-wrap .chart-top-right {
  padding: 14px 14px 0px 0px;
}
.chart-wrap .chart-bottom-right {
  padding: 0px 14px 14px 0px;
}
.chart-wrap .chart-bottom-left {
  padding: 0px 0px 14px 14px;
}
.chart-wrap p {
  font-size: 17px;
  color: white;
}
.chart-section {
  text-align: center;
}
.chart-section:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
  /* Adjusts for spacing */

}
.centered {
  display: inline-block;
  vertical-align: middle;
  width: 120px;
}
@media only screen and (max-width: 500px) {
  .primary-block {
    padding: 10px;
    margin: 0px;
  }
  .primary-block.width-half {
    float: none;
    width: auto;
  }
  .chart-wrap {
    background: none;
  }
  .count {
    margin-bottom: 40px;
  }
  .primary-block-large {
    padding-top: 60px;
    height: auto;
    width: auto;
  }
  .primary-block-large img {
    margin-top: -87px;
  }
}
body {
  overflow-x: hidden;
}
