@-webkit-viewport {
  width: device-width; }

@-moz-viewport {
  width: device-width; }

@-ms-viewport {
  width: device-width;
  zoom: 1.0; }

@-o-viewport {
  width: device-width; }

@viewport {
  width: device-width; }

/*=HASHGRID
------------------------------------------------*/
/**
 * Grid
 */
#grid {
  /* Dimensions - same width as your grid with gutters */
  width: 980px;
  z-index: 9999;
  /* Grid (left-aligned)
  position: absolute;
  top: 0;
  left: 0;
  */
  /* Grid (centered) */
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -490px; }

/**
 * Vertical grid lines
 *
 * Set the column width taking the borders into consideration,
 * and use margins to set column gutters.
 */
#grid div.vert {
  width: 60px;
  border: solid darkturquoise;
  border-width: 0 1px;
  margin-right: 20px; }

#grid div.vert.first-line {
  margin-left: 19px; }

/**
 * Horizontal grid lines, defined by your base line height
 *
 * Remember, the CSS properties that define the box model:
 * visible height = height + borders + margins + padding
 */
#grid div.horiz {
  /* 24px line height */
  height: 7px;
  border-bottom: 1px dotted #FF9999;
  margin: 0;
  padding: 0; }

#grid div.horiz:nth-child(3n+3) {
  border-bottom: 1px solid #FF9999; }

body {
  width: 100%;
  *zoom: 1; }
  body:before, body:after {
    content: "";
    display: table; }
  body:after {
    clear: both; }

/*=VARIABLES - GRID
------------------------------------------------*/
/*=VARIABLES - COLORS
------------------------------------------------*/
/*=VARIABLES - FONTS
------------------------------------------------*/
/*FUNCTIONS
------------------------------------------------*/
/*=MIXINS 
------------------------------------------------*/
/* 

STORM ID RESET STYLES

Based on Meyer Reset, HTML5 Boilerplate, Normalize.css and more

Updated: JULY 2012

*/
/* 
BETTER BOX MODEL. SUPPORTED IN DECENT BROWSERS AND IE8+. POLYFILL FOR IE7
=========================================================================
*/
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

/* 
RESET LOADS OF STUFF
====================
*/
/* Set background colour in case user-styles use a different colour */
html,
body {
  background: #fff; }

/* Stop unwanted automatic text resizing on some mobile devices */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

/* Override defaults on all elements */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, main {
  background: transparent;
  border: 0;
  font-size: 100%;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline; }

/* Display block on HTML5 elements */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block; }

/* 
STANDARDISE THE STYLE OF COMMON ELEMENTS
========================================
*/
* {
  text-rendering: optimizeLegibility; }

strong,
b {
  font-weight: bold; }

em,
i {
  font-style: italic; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none; }

ins {
  text-decoration: none; }

mark {
  font-style: italic;
  font-weight: bold; }

del {
  text-decoration: line-through; }

dfn {
  font-style: italic; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td {
  vertical-align: top; }

hr {
  border: 0;
  display: block;
  height: 1px;
  margin: 0;
  padding: 0; }

address {
  font-style: normal; }

/*
 * 1. Corrects color not being inherited in IE6/7/8/9
 * 2. Corrects text not wrapping in FF3 
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  white-space: normal;
  /* 2 */ }

/* Addresses margin not present in IE6/7/8/9, S5, O11 */
figure {
  margin: 0; }

/* Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4 */
[hidden] {
  display: none; }

/* Prevents sub and sup affecting line-height in all browsers */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* 
IMAGES
======
*/
/* Improve image quality when scaled in IE7 / Remove the gap between images and borders on image containers: h5bp.com/i/440
 */
img {
  border: 0;
  vertical-align: middle; }

/* 
HYPERLINKS
==========
*/
/* Improves readability when focused and also mouse hovered in all browsers */
a {
  text-decoration: none; }

a:hover,
a:focus,
a:active {
  outline: 0;
  text-decoration: none; }

/* Addresses outline displayed oddly in Chrome */
a:focus {
  outline: thin dotted; }

/* 
CODE BLOCKS ETC
===============
*/
/* Standardise code blocks */
pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  line-height: 100%; }

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

/* 
FORM ELEMENTS
=============
*/
/* Remove default appearance from inputs */
input,
button {
  border: 0;
  outline: 0;
  padding: 0;
  vertical-align: middle;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0; }

/* Remove default appearance from search inputs in Webkit */
input[type="search"] {
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none; }

input[type="checkbox"] {
  -moz-appearance: checkbox;
  -webkit-appearance: checkbox; }

input[type="radio"] {
  -moz-appearance: radio;
  -webkit-appearance: radio; }

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none; }

/* Remove inner padding and border in FF3/4: h5bp.com/l */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/*
 * 1. Corrects font size not being inherited in all browsers
 * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome
 * 3. Improves appearance and consistency in all browsers
 * 4. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
 */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  line-height: normal;
  /* 4 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */ }

/*
 * 1. Improves usability and consistency of cursor style between image-type 'input' and others
 * 2. Corrects inability to style clickable 'input' types in iOS
 */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  /* 1 */
  -webkit-appearance: button;
  /* 2 */ }

/* Re-set default cursor for disabled elements */
button[disabled],
input[disabled] {
  cursor: default; }

/*
 * 1. Remove default vertical scrollbar in IE6/7/8/9
 * 2. Allow only vertical resizing
 */
textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical; }

textarea:hover,
textarea:active,
textarea:focus {
  outline: none; }

/* 
CLEARFIX 
========
*/
.clearfix:before,
.clearfix:after {
  content: "";
  display: table; }

.clearfix:after {
  clear: both; }

.row {
  display: block;
  width: 100%;
  margin: 0; }
  @media screen and (min-width: 48em) {
    .row {
      width: 102.77778%;
      margin: 0 -1.38889%; } }

.row-small {
  display: block;
  width: 102.77778%;
  margin: 0 -1.38889%; }

.roundel {
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px; }

.center {
  text-align: center; }

.text-right {
  text-align: right; }

.block {
  display: block; }

.inline-block {
  display: inline-block; }

body .no-margins {
  margin: 0; }

body .absolute {
  position: absolute; }

body .relative {
  position: relative; }

body > .wrap {
  margin-bottom: 1.5em; }

.content {
  margin-top: 1.5em; }

@media screen and (min-width: 48em) {
  .gutter-right {
    padding-right: 3em; } }

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin-bottom: 3em;
  margin-top: 0; }

.video-container iframe, .video-container object, .video-container embed {
  padding-left: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

@media screen and (min-width: 48em) {
  .margins-only {
    margin-left: 1.042%;
    margin-right: 1.042%;
    width: 97.917%; } }

.two-up {
  margin: 0;
  list-style-type: none; }
  @media screen and (min-width: 48em) {
    .two-up {
      display: block;
      width: 102.77778%;
      margin-left: -1.38889%;
      margin-right: -1.38889%;
      *zoom: 1; }
      .two-up:before, .two-up:after {
        content: "";
        display: table; }
      .two-up:after {
        clear: both; }
      .two-up > .col {
        display: inline;
        float: left;
        width: 47.22222%;
        margin-left: 1.38889%;
        margin-right: 1.38889%; } }

.three-up {
  margin: 0;
  list-style-type: none; }
  @media screen and (min-width: 48em) {
    .three-up {
      display: block;
      width: 102.77778%;
      margin-left: -1.38889%;
      margin-right: -1.38889%;
      *zoom: 1; }
      .three-up:before, .three-up:after {
        content: "";
        display: table; }
      .three-up:after {
        clear: both; }
      .three-up > .col {
        display: inline;
        float: left;
        width: 30.55556%;
        margin-left: 1.38889%;
        margin-right: 1.38889%; } }

.four-up {
  margin: 0;
  list-style-type: none; }
  @media screen and (min-width: 48em) {
    .four-up {
      display: block;
      width: 102.77778%;
      margin-left: -1.38889%;
      margin-right: -1.38889%;
      *zoom: 1; }
      .four-up:before, .four-up:after {
        content: "";
        display: table; }
      .four-up:after {
        clear: both; }
      .four-up > .col {
        display: inline;
        float: left;
        width: 22.22222%;
        margin-left: 1.38889%;
        margin-right: 1.38889%; } }

.five-up {
  margin: 0;
  list-style-type: none; }
  @media screen and (min-width: 48em) {
    .five-up {
      display: block;
      width: 103.33333%;
      margin-left: -1.66667%;
      margin-right: -1.66667%;
      *zoom: 1; }
      .five-up:before, .five-up:after {
        content: "";
        display: table; }
      .five-up:after {
        clear: both; }
      .five-up > .col {
        display: inline;
        float: left;
        width: 16.66667%;
        margin-left: 1.66667%;
        margin-right: 1.66667%; } }

.six-up {
  margin: 0;
  list-style-type: none; }
  @media screen and (min-width: 48em) {
    .six-up {
      display: block;
      width: 103.33333%;
      margin-left: -1.66667%;
      margin-right: -1.66667%;
      *zoom: 1; }
      .six-up:before, .six-up:after {
        content: "";
        display: table; }
      .six-up:after {
        clear: both; }
      .six-up > .col {
        display: inline;
        float: left;
        width: 13.88889%;
        margin-left: 1.38889%;
        margin-right: 1.38889%; } }

.eight-up {
  margin: 0;
  list-style-type: none; }
  @media screen and (min-width: 48em) {
    .eight-up {
      display: block;
      width: 104.16667%;
      margin-left: -2.08333%;
      margin-right: -2.08333%;
      *zoom: 1; }
      .eight-up:before, .eight-up:after {
        content: "";
        display: table; }
      .eight-up:after {
        clear: both; }
      .eight-up > .col {
        display: inline;
        float: left;
        width: 8.33333%;
        margin-left: 2.08333%;
        margin-right: 2.08333%; } }

.blockgrid-two-up {
  display: block;
  width: 102.77778%;
  margin-left: -1.38889%;
  margin-right: -1.38889%;
  *zoom: 1; }
  .blockgrid-two-up:before, .blockgrid-two-up:after {
    content: "";
    display: table; }
  .blockgrid-two-up:after {
    clear: both; }
  .blockgrid-two-up .col {
    display: inline;
    float: left;
    width: 47.22222%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; }

.blockgrid-three-up {
  display: block;
  width: 102.77778%;
  margin-left: -1.38889%;
  margin-right: -1.38889%;
  *zoom: 1; }
  .blockgrid-three-up:before, .blockgrid-three-up:after {
    content: "";
    display: table; }
  .blockgrid-three-up:after {
    clear: both; }
  .blockgrid-three-up .col {
    display: inline;
    float: left;
    width: 30.55556%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; }

.blockgrid-four-up {
  display: block;
  width: 102.77778%;
  margin-left: -1.38889%;
  margin-right: -1.38889%;
  *zoom: 1; }
  .blockgrid-four-up:before, .blockgrid-four-up:after {
    content: "";
    display: table; }
  .blockgrid-four-up:after {
    clear: both; }
  .blockgrid-four-up .col {
    display: inline;
    float: left;
    width: 22.22222%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; }

.blockgrid-seven-up {
  display: block;
  width: 102%;
  margin: 0 -1%; }
  .blockgrid-seven-up .col {
    display: inline;
    float: left;
    width: 12%;
    margin: 0 1.14%; }

.blockgrid-eight-up {
  display: block;
  width: 104.16667%;
  margin-left: -2.08333%;
  margin-right: -2.08333%;
  *zoom: 1; }
  .blockgrid-eight-up:before, .blockgrid-eight-up:after {
    content: "";
    display: table; }
  .blockgrid-eight-up:after {
    clear: both; }
  .blockgrid-eight-up .col {
    display: inline;
    float: left;
    width: 8.33333%;
    margin-left: 2.08333%;
    margin-right: 2.08333%; }

.col {
  display: inline;
  float: left; }

.small-1 {
  display: inline;
  float: left;
  width: 5.55556%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

.small-2 {
  display: inline;
  float: left;
  width: 13.88889%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

.small-3 {
  display: inline;
  float: left;
  width: 22.22222%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

.small-4 {
  display: inline;
  float: left;
  width: 30.55556%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

.small-5 {
  display: inline;
  float: left;
  width: 38.88889%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

.small-6 {
  display: inline;
  float: left;
  width: 47.22222%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

.small-7 {
  display: inline;
  float: left;
  width: 55.55556%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

.small-8 {
  display: inline;
  float: left;
  width: 63.88889%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

.small-9 {
  display: inline;
  float: left;
  width: 72.22222%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

.small-10 {
  display: inline;
  float: left;
  width: 80.55556%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

.small-11 {
  display: inline;
  float: left;
  width: 88.88889%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

.small-12 {
  display: inline;
  float: left;
  width: 97.22222%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

@media screen and (min-width: 44em) {
  .medium-1 {
    display: inline;
    float: left;
    width: 5.55556%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 44em) {
  .medium-2 {
    display: inline;
    float: left;
    width: 13.88889%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 44em) {
  .medium-3 {
    display: inline;
    float: left;
    width: 22.22222%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 44em) {
  .medium-4 {
    display: inline;
    float: left;
    width: 30.55556%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 44em) {
  .medium-5 {
    display: inline;
    float: left;
    width: 38.88889%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 44em) {
  .medium-6 {
    display: inline;
    float: left;
    width: 47.22222%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 38em) {
  .medium-7 {
    display: inline;
    float: left;
    width: 55.55556%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 38em) {
  .medium-8 {
    display: inline;
    float: left;
    width: 63.88889%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 38em) {
  .medium-9 {
    display: inline;
    float: left;
    width: 72.22222%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 38em) {
  .medium-10 {
    display: inline;
    float: left;
    width: 80.55556%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 38em) {
  .medium-11 {
    display: inline;
    float: left;
    width: 88.88889%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 38em) {
  .medium-12 {
    display: inline;
    float: left;
    width: 97.22222%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-1 {
    display: inline;
    float: left;
    width: 5.55556%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-2 {
    display: inline;
    float: left;
    width: 13.88889%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-3 {
    display: inline;
    float: left;
    width: 22.22222%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-4 {
    display: inline;
    float: left;
    width: 30.55556%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-5 {
    display: inline;
    float: left;
    width: 38.88889%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-6 {
    display: inline;
    float: left;
    width: 47.22222%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-7 {
    display: inline;
    float: left;
    width: 55.55556%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-8 {
    display: inline;
    float: left;
    width: 63.88889%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-9 {
    display: inline;
    float: left;
    width: 72.22222%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-10 {
    display: inline;
    float: left;
    width: 80.55556%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-11 {
    display: inline;
    float: left;
    width: 88.88889%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-12 {
    display: inline;
    float: left;
    width: 97.22222%;
    margin-left: 1.38889%;
    margin-right: 1.38889%;
    display: block;
    float: none; } }

.pull-right {
  float: right; }

@media screen and (min-width: 48em) {
  .pull-right-tablet {
    float: right; } }

@media screen and (min-width: 60em) {
  .pull-right-desktop {
    float: right; } }

.pull-left {
  float: left; }

@media screen and (min-width: 48em) {
  .pull-left-tablet {
    float: left; } }

@media screen and (min-width: 60em) {
  .pull-left-desktop {
    float: left; } }

.wrapper {
  *zoom: 1;
  margin-left: auto;
  margin-right: auto;
  max-width: 1248px;
  padding: 0 4%;
  position: relative; }
  .wrapper:before, .wrapper:after {
    content: "";
    display: table; }
  .wrapper:after {
    clear: both; }

.intro-panel {
  background: #FFFFFF !important; }

html,
body,
button,
input,
select,
textarea {
  font-family: 'Open Sans', sans-serif; }

body {
  color: #3e3e3e;
  font-size: 1.3em;
  font-family: 'Open Sans', sans-serif; }

body:after {
  content: 'small';
  display: none; }

.generic-hover {
  webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.generic-hover:hover {
  color: #35c2de !important;
  webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

p {
  margin-bottom: 1em; }

img {
  width: 100%; }

.body-style {
  background: #ffffff;
  -webkit-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
  -webkit-box-shadow: 0 -6px 10px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 -6px 10px 0 rgba(0, 0, 0, 0.05); }

.panel {
  margin-bottom: 1.5em; }
  @media screen and (min-width: 44em) {
    .panel {
      margin-bottom: 0; } }

ul li {
  list-style: none !important; }

hr {
  background: #e3e3e3;
  margin-bottom: 12px;
  width: 100%; }

/** Buttons */
.btn {
  background: #244c77;
  border: none;
  border-radius: 3px;
  color: #ffffff !important;
  display: inline-block;
  font-size: 0.9em !important;
  padding: 0.8em 1.4em;
  text-decoration: none !important; }

.btn:hover {
  background: #35c2de; }

/** Buttons */
.block {
  display: block; }

.inline-block {
  display: inline-block; }

.inline {
  display: inline; }

.panel-heading-style {
  background: #ffffff;
  font-weight: 600;
  margin-top: -2.4em !important;
  padding: 0.8em 0em;
  position: relative;
  width: 90%;
  z-index: 100; }

/** Font Weights */
.normal {
  font-weight: 400; }

.semi {
  font-weight: 600; }

.bold {
  font-weight: 700; }

/** Text Decoration */
.underline {
  text-decoration: underline; }

/** Font Sizes */
.body-font--xsmall {
  font-size: 0.65em; }

.body-font--small {
  font-size: 0.75em; }

.body-font--medium {
  font-size: 0.8em; }

.body-font--large {
  font-size: 0.9em; }

.body-font--xlarge {
  font-size: 1em; }

.body-font--xxlarge {
  font-size: 1.9em; }

.body-font--xxxlarge {
  font-size: 3em; }

.icon-font--medium {
  font-size: 1.2em; }

.line-height-reduction {
  line-height: 22px; }

/** Dividers */
.divider-full {
  border-bottom: 1px solid #dfe7ea;
  padding-bottom: 1em; }

/** Z-index */
.z-index-100 {
  z-index: 100;
  position: relative; }

.sidebar-link a {
  padding: 0; }

.editor-content .sidebar-link a:hover {
  padding-left: 0 !important; }

/** Document Details List */
.document-details ul {
  margin: 0.5em 0 0.5em 0;
  padding: 0; }

.document-details ul li {
  font-size: 0.75em;
  list-style: none;
  margin: 0;
  padding: 0; }

/** Float */
.float-left {
  float: left; }

.float-right {
  float: right; }

.text-decoration-none {
  text-decoration: none !important; }

.text-decoration--underline {
  text-decoration: underline !important; }

.red-star {
  color: red; }

.graph ul {
  margin: 0 !important; }

.graph ul li {
  margin: 0 !important; }

.negative-margin {
  margin-top: 0em; }
  @media screen and (min-width: 44em) {
    .negative-margin {
      margin-top: -3em; } }

@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Force table to not be like tables anymore */
  table, thead, tbody, th, td, tr {
    display: block; }

  /* Hide table headers (but not display: none;, for accessibility) */
  thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px; }

  tr {
    border: 1px solid #ccc; }

  td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%; }

  td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap; }

  /*
  Label the data
  */
  td:nth-of-type(1):before {
    content: "Question"; }

  td:nth-of-type(2):before {
    content: "Answer"; }

  td:nth-of-type(3):before {
    content: "Correct/Incorrect"; } }
.margin-pull {
  margin-left: -1em; }

.heading-push {
  padding-top: 1em; }
  @media screen and (min-width: 46em) {
    .heading-push {
      padding-top: 0; } }

/** Legend */
#legend {
  margin-bottom: 1em; }

#legend ul {
  margin: 0 0 0 0;
  padding: 0 0 0 0; }

#legend ul li {
  display: inline-block;
  font-size: 0.60em;
  margin: 0 0 0 0;
  padding: 0 0 0 0; }

/**
* Add/remove margins
*/
.push-xlarge {
  margin: 3.5em; }

.push-xlarge--top {
  margin-top: 3.5em; }

.push-xlarge--right {
  margin-right: 3.5em; }

.push-xlarge--bottom {
  margin-bottom: 3.5em; }

.push-xlarge--left {
  margin-left: 3.5em; }

.push-xlarge--ends {
  margin-top: 3.5em;
  margin-bottom: 3.5em; }

.push-xlarge--sides {
  margin-right: 3.5em;
  margin-left: 3.5em; }

.push-large {
  margin: 2em; }

.push-large--top {
  margin-top: 2em; }

.push-large--right {
  margin-right: 2em; }

.push-large--bottom {
  margin-bottom: 2em; }

.push-large--left {
  margin-left: 2em; }

.push-large--ends {
  margin-top: 2em;
  margin-bottom: 2em; }

.push-large--sides {
  margin-right: 2em;
  margin-left: 2em; }

.push {
  margin: 1em; }

.push--top {
  margin-top: 1em; }

.push--right {
  margin-right: 1em; }

.push--bottom {
  margin-bottom: 1em; }

.push--left {
  margin-left: 1em; }

.push--ends {
  margin-top: 1em;
  margin-bottom: 1em; }

.push--sides {
  margin-right: 1em;
  margin-left: 1em; }

.push-half {
  margin: 0.5em; }

.push-half--top {
  margin-top: 0.5em; }

.push-half--right {
  margin-right: 0.5em; }

.push-half--bottom {
  margin-bottom: 0.5em; }

.push-half--left {
  margin-left: 0.5em; }

.push-half--ends {
  margin-top: 0.5em;
  margin-bottom: 0.5em; }

.push-half--sides {
  margin-right: 0.5em;
  margin-left: 0.5em; }

@media screen and (max-width: 48em) {
  .push-half--small {
    margin: 0.5em; }

  .push-half--top--small {
    margin-top: 0.5em; }

  .push-half--right--small {
    margin-right: 0.5em; }

  .push-half--bottom--small {
    margin-bottom: 0.5em; }

  .push-half--left--small {
    margin-left: 0.5em; }

  .push-half--ends--small {
    margin-top: 0.5em;
    margin-bottom: 0.5em; }

  .push-half--sides--small {
    margin-right: 0.5em;
    margin-left: 0.5em; } }
.push-small {
  margin: 0.2em; }

.push-small--top {
  margin-top: 0.2em; }

.push-small--right {
  margin-right: 0.2em; }

.push-small--bottom {
  margin-bottom: 0.2em; }

.push-small--left {
  margin-left: 0.2em; }

.push-small--ends {
  margin-top: 0.2em;
  margin-bottom: 0.2em; }

.push-small--sides {
  margin-right: 0.2em;
  margin-left: 0.2em; }

.flush {
  margin: 0; }

.flush--top {
  margin-top: 0; }

.flush--right {
  margin-right: 0; }

.flush--bottom {
  margin-bottom: 0; }

.flush--left {
  margin-left: 0; }

.flush--ends {
  margin-top: 0;
  margin-bottom: 0; }

.flush--sides {
  margin-right: 0;
  margin-left: 0; }

@media screen and (min-width: 48em) {
  .flush--med {
    margin: 0; }

  .flush--top--med {
    margin-top: 0; }

  .flush--right--med {
    margin-right: 0; }

  .flush--bottom--med {
    margin-bottom: 0; }

  .flush--left--med {
    margin-left: 0; }

  .flush--ends--med {
    margin-top: 0;
    margin-bottom: 0; }

  .flush--sides--med {
    margin-right: 0;
    margin-left: 0; } }
/**
* Add/remove paddings
*/
.soft-large {
  padding: 2em; }

.soft-large--top {
  padding-top: 2em; }

.soft-large--right {
  padding-right: 2em; }

.soft-large--bottom {
  padding-bottom: 2em; }

.soft-large--left {
  padding-left: 2em; }

.soft-large--ends {
  padding-top: 2em;
  padding-bottom: 2em; }

.soft-large--sides {
  padding-right: 2em;
  padding-left: 2em; }

.soft {
  padding: 1em; }

.soft--top {
  padding-top: 1em; }

.soft--right {
  padding-right: 1em; }

.soft--bottom {
  padding-bottom: 1em; }

.soft--left {
  padding-left: 1em; }

.soft--ends {
  padding-top: 1em;
  padding-bottom: 1em; }

.soft--sides {
  padding-right: 1em;
  padding-left: 1em; }

.soft-half {
  padding: 0.5em; }

.soft-half--top {
  padding-top: 0.5em; }

.soft-half--right {
  padding-right: 0.5em; }

.soft-half--bottom {
  padding-bottom: 0.5em; }

.soft-half--left {
  padding-left: 0.5em; }

.soft-half--ends {
  padding-top: 0.5em;
  padding-bottom: 0.5em; }

.soft-half--sides {
  padding-right: 0.5em;
  padding-left: 0.5em; }

.hard {
  padding: 0; }

.hard--top {
  padding-top: 0; }

.hard--right {
  padding-right: 0; }

.hard--bottom {
  padding-bottom: 0; }

.hard--left {
  padding-left: 0; }

.hard--ends {
  padding-top: 0;
  padding-bottom: 0; }

.hard--sides {
  padding-right: 0;
  padding-left: 0; }

@media screen and (min-width: 48em) {
  .hard--med {
    padding: 0; }

  .hard--top--med {
    padding-top: 0; }

  .hard--right--med {
    padding-right: 0; }

  .hard--bottom--med {
    padding-bottom: 0; }

  .hard--left--med {
    padding-left: 0; }

  .hard--ends--med {
    padding-top: 0;
    padding-bottom: 0; }

  .hard--sides--med {
    padding-right: 0;
    padding-left: 0; } }
.header {
  background: #f1fbfb; }
  @media screen and (min-width: 52em) {
    .header {
      background: #ffffff; } }

/** Branding*/
.logo .logo-small {
  width: 110px;
  margin-bottom: 10px; }
  @media screen and (min-width: 52em) {
    .logo .logo-small {
      display: none; } }

.logo .logo-large {
  display: none; }
  @media screen and (min-width: 52em) {
    .logo .logo-large {
      display: block;
      margin-top: 0.8em;
      max-width: 400px; } }

/** Navigation */
.menu-trigger {
  background: #244c77;
  position: absolute;
  right: 0;
  top: 0;
  padding: 0.3em 0.6em; }
  @media screen and (min-width: 52em) {
    .menu-trigger {
      display: none; } }

.search-trigger {
  background: #244c77;
  position: absolute;
  right: 47px;
  top: 0;
  padding: 0.3em 0.6em; }
  @media screen and (min-width: 52em) {
    .search-trigger {
      display: none; } }

@media screen and (min-width: 52em) {
  .primary-nav {
    background: #244c77;
    margin: 1.4em 0 0 0;
    border-bottom: 5px solid #35c2de; } }

.primary-nav ul {
  background: #f1fbfb;
  margin: 0.5em 0 0 0; }
  @media screen and (min-width: 52em) {
    .primary-nav ul {
      background: #244c77;
      display: block !important;
      padding: 0.8em 0;
      margin: 0; } }

.primary-nav ul li {
  border-bottom: 1px solid #CCCCCC;
  list-style: none;
  margin: 0;
  padding: 0.5em; }
  @media screen and (min-width: 52em) {
    .primary-nav ul li {
      border-bottom: none;
      display: inline;
      padding: 0 0em; } }

.primary-nav ul li a {
  color: #3e3e3e;
  display: block;
  font-size: 0.75em;
  text-transform: uppercase;
  padding: 0.5em 0em; }
  @media screen and (min-width: 52em) {
    .primary-nav ul li a {
      color: #ffffff;
      display: inline;
      font-size: 0.60em;
      font-weight: 400;
      padding: 1.45em 1em; } }
  @media screen and (min-width: 64em) {
    .primary-nav ul li a {
      font-size: 0.65em;
      padding: 1.45em 1.2em; } }
  @media screen and (min-width: 70em) {
    .primary-nav ul li a {
      font-size: 0.65em;
      padding: 1.45em 1.6em; } }

@media screen and (min-width: 52em) {
  .primary-nav ul li a:hover {
    -webkit-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
    background: #35c2de;
    color: #FFFFFF !important;
    webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out; } }

@media screen and (min-width: 52em) {
  .active-primary {
    background-image: url("/public/20191211011635oe_/https://dwqr.scot/Content/images/icons/active-primary.png");
    background-position: center 46px;
    background-repeat: no-repeat;
    background-size: 24px 12px; } }

/** Breadcrumb*/
.breadcrumb {
  display: none; }
  @media screen and (min-width: 52em) {
    .breadcrumb {
      display: block !important; } }

.breadcrumb ul {
  margin: 0; }

.breadcrumb ul li {
  display: inline;
  font-size: 0.65em;
  list-style: none;
  margin: 0; }

.breadcrumb ul li a {
  color: #3e3e3e; }

.breadcrumb ul li a:hover {
  color: #666666; }

.bcrumb-active {
  text-decoration: underline; }

.bcrumb-active:hover {
  text-decoration: underline;
  color: #3e3e3e !important; }

/** Secondary Nav*/
.secondary-nav {
  display: none; }
  @media screen and (min-width: 52em) {
    .secondary-nav {
      display: block;
      float: right; } }

.secondary-nav ul {
  margin: 0;
  padding: 0;
  float: right; }

.secondary-nav li {
  display: none; }
  @media screen and (min-width: 52em) {
    .secondary-nav li {
      display: inline;
      margin: 0; } }

.secondary-nav li a {
  color: #3e3e3e;
  font-weight: 400;
  font-size: 0.60em; }

.secondary-nav li a:hover {
  color: #35c2de; }

.secondary-nav-active {
  color: #35c2de;
  text-decoration: underline; }

.secondary-nav span {
  color: #3e3e3e;
  font-weight: 400;
  font-size: 0.60em;
  margin: 0 0.3em; }

/** Search*/
.primary-search {
  margin-top: 1em;
  width: 100%; }
  @media screen and (min-width: 52em) {
    .primary-search {
      display: block !important;
      float: right;
      width: 71%;
      margin-top: 2em; } }

.search-text-input {
  -webkit-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
  border: 1px solid #244c77;
  color: #244c77;
  float: left;
  font-size: 0.75em;
  height: 46px;
  padding: 0 0 0 1em;
  width: 70%; }

.search-button {
  background-color: #244c77;
  background-image: url("/public/20191211011635oe_/https://dwqr.scot/Content/images/icons/search-icon.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  border-radius: 0 4px 4px 0;
  border: 0;
  color: #ffffff;
  float: left;
  height: 46px;
  width: 30%; }

/** Colours */
/* grey */
.color-primary {
  color: #3e3e3e; }

/* navy blue */
.color-secondary {
  color: #244c77; }

/* white */
.color-three {
  color: #ffffff; }

/* Turquoise */
.color-four {
  color: #35c2de; }

.tera {
  font-size: 1.8em;
  line-height: 1.3em; }
  @media screen and (min-width: 48em) {
    .tera {
      font-size: 2em; } }
  @media screen and (min-width: 60em) {
    .tera {
      font-size: 2.5em; } }

.giga {
  font-size: 2em;
  line-height: 2em; }

.mega {
  font-size: 1.5em;
  line-height: 1.4em; }

.alpha {
  font-size: 1.2em;
  line-height: 1.3em; }

.beta {
  font-size: 1em;
  line-height: 1.3em; }

.gamma {
  font-size: 0.875em;
  line-height: 1.6em; }

.delta {
  font-size: 0.8em;
  line-height: 1.6em; }

a {
  color: #0095da;
  text-decoration: none; }

a:hover,
a:focus {
  color: #333333; }

h1, h2, h3, h4 {
  color: #555555;
  font-weight: 700; }

h2, h3, h4 {
  color: #555555; }

p {
  font-size: 1em;
  margin-bottom: 1em; }

ul, ol {
  margin: 1.5em; }

ul {
  list-style-type: disc; }

ol {
  list-style-type: decimal; }

figure {
  margin: 0.75em 0; }

.normal {
  font-weight: normal; }

.align--centered {
  text-align: center; }

.align--right {
  text-align: right; }

.small {
  font-size: 75%; }

.large {
  font-size: 133%;
  line-height: 1.5em; }

.xlarge {
  font-size: 200%; }

.xxlarge {
  font-size: 300%; }

.uppercase {
  text-transform: uppercase; }

@media screen and (min-width: 48em) {
  .text-right-tablet {
    text-align: right; } }

.muted,
a.muted,
.lister a.muted {
  color: #999; }

.bold {
  font-weight: bold; }

.font-larger {
  font-size: 3em;
  line-height: 1em; }

/*
 * jQuery FlexSlider v2.2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */
/* Browser Resets
*********************************/
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
  outline: none; }

.slides,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none; }

/* Icon Fonts
*********************************/
/* Font-face Icons */
@font-face {
  font-family: 'flexslider-icon';
  src: url("/public/20191211011635oe_/https://dwqr.scot/Content/fonts/flexslider-icon.eot");
  src: url("/public/20191211011635oe_/https://dwqr.scot/Content/fonts/flexslider-icon.eot#iefix") format("embedded-opentype"), url("/public/20191211011635oe_/https://dwqr.scot/Content/fonts/flexslider-icon.woff") format("woff"), url("/public/20191211011635oe_/https://dwqr.scot/Content/fonts/flexslider-icon.ttf") format("truetype"), url("/public/20191211011635oe_/https://dwqr.scot/Content/fonts/flexslider-icon.svg#flexslider-icon") format("svg");
  font-weight: normal;
  font-style: normal; }

/* FlexSlider Necessary Styles
*********************************/
.flexslider {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 0; }

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden; }

/* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {
  width: 100%;
  display: block; }

.flex-pauseplay span {
  text-transform: capitalize; }

/* Clearfix for the .slides element */
.slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

html[xmlns] .slides {
  display: block; }

* html .slides {
  height: 1%; }

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {
  display: block; }

/* FlexSlider Default Theme
*********************************/
.flexslider {
  margin: 0 0 0;
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  zoom: 1; }

.flexslider li {
  list-style: none;
  margin: 0; }

.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease; }

.loading .flex-viewport {
  max-height: 300px; }

.flexslider .slides {
  zoom: 1; }

.carousel li {
  margin-right: 5px; }

/* Direction Nav */
.flex-direction-nav {
  *height: 0;
  display: none; }
  @media screen and (min-width: 56em) {
    .flex-direction-nav {
      display: block; } }

.flex-direction-nav a {
  background: #244c77;
  border-radius: 4px;
  display: block;
  font-size: 0;
  margin: -20px 0 0;
  position: absolute;
  top: 30%;
  z-index: 10;
  opacity: 0;
  cursor: pointer;
  color: #FFFFFF;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0);
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease; }

.flex-direction-nav .flex-prev {
  left: -50px;
  margin-top: 0px; }

.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right;
  margin-top: 0px; }

.flexslider:hover .flex-prev {
  opacity: 0.7; }

.flexslider:hover .flex-next {
  opacity: 0.7; }

.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {
  opacity: 1; }

.flex-direction-nav .flex-disabled {
  opacity: 0 !important;
  filter: alpha(opacity=0);
  cursor: default; }

.flex-direction-nav a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: block;
  content: '\f001';
  padding: 0.55em 0.7em 0.5em 0.7em;
  text-align: center; }

.flex-direction-nav a.flex-next:before {
  content: '\f002'; }

/* Pause/Play */
.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000; }

.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: '\f004'; }

.flex-pauseplay a:hover {
  opacity: 1; }

.flex-pauseplay a.flex-play:before {
  content: '\f003'; }

/* Control Nav */
.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: 20px;
  text-align: left;
  z-index: 200; }
  @media screen and (min-width: 44em) {
    .flex-control-nav {
      bottom: 80px; } }

.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline; }

.flex-control-paging li a {
  width: 16px;
  height: 16px;
  display: block;
  background: #666;
  background: #244c77;
  cursor: pointer;
  text-indent: -9999px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3); }

.flex-control-paging li a:hover {
  background: rgba(36, 76, 119, 0.7); }

.flex-control-paging li a.flex-active {
  background: #000;
  background: #35c2de;
  cursor: default; }

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden; }

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0; }

.flex-control-thumbs img {
  width: 100%;
  display: block;
  opacity: .7;
  cursor: pointer; }

.flex-control-thumbs img:hover {
  opacity: 1; }

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default; }

@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px; }

  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px; } }
.slider {
  background: url("/public/20191211011635oe_/https://dwqr.scot/Content/images/hero/hero-bg.png");
  background-position: top center;
  background-repeat: no-repeat; }

.slides {
  position: relative;
  background-color: transparent; }

.flexslider h2 {
  color: #244c77;
  font-size: 1.2em;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 20px;
  width: 64%;
  z-index: 100; }
  @media screen and (min-width: 38em) {
    .flexslider h2 {
      background: transparent;
      font-size: 1.6em;
      padding: 0;
      width: 60%; } }
  @media screen and (min-width: 44em) {
    .flexslider h2 {
      font-size: 2em;
      width: 50%; } }

.slides li {
  background-position: center;
  height: 178px;
  position: relative; }
  @media screen and (min-width: 44em) {
    .slides li {
      height: 350px; } }

@media screen and (min-width: 70em) {
  .special-padding {
    padding: 0 3.8em; } }

.flex-image-large {
  max-width: 240px;
  float: right;
  display: none !important; }
  @media screen and (min-width: 40em) {
    .flex-image-large {
      max-width: 421px !important;
      margin-right: 0em;
      margin-top: 10px;
      display: block !important; } }
  @media screen and (min-width: 70em) {
    .flex-image-large {
      max-width: 328px;
      margin-right: 4em; } }

.flex-image-small {
  max-width: 200px;
  float: right;
  position: absolute;
  bottom: 0;
  right: -20px; }
  @media screen and (min-width: 40em) {
    .flex-image-small {
      display: none !important; } }

editor-content p, h1, h2, h3, h4, h5, h6 {
  color: #3e3e3e;
  margin-top: 0 !important; }

.editor-content h1 {
  font-size: 1.2em;
  margin-bottom: 1em;
  color: #3e3e3e; }

.editor-content h2 {
  font-size: 1em;
  margin-bottom: 1em;
  color: #3e3e3e; }

.editor-content h3 {
  font-size: 0.9em;
  margin-bottom: 1em;
  color: #3e3e3e; }

.editor-content h4 {
  font-size: 0.8em;
  margin-bottom: 1em;
  color: #3e3e3e; }

.editor-content a h3 {
  font-size: 1.2em;
  text-decoration: none !important; }

.editor-content p {
  font-size: 0.8em;
  line-height: 1.6em;
  margin-bottom: 1.5em; }

.editor-content ul {
  margin: 1em 1em 1em 0;
  position: relative; }

.editor-content ul li {
  background: url(/public/20191211011635oe_/https://dwqr.scot/Content/images/icons/checkmark-bullet.png);
  background-position: 0px 7px;
  background-repeat: no-repeat;
  background-size: 13px 10px;
  font-size: 0.7em;
  padding-left: 20px;
  line-height: 1.6em;
  list-style: none; }

.editor-content ul li a {
  font-size: 1em;
  text-decoration: underline; }

.editor-content a {
  color: #244c77;
  font-size: 0.8em;
  webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  text-decoration: underline; }

.editor-content ol {
  margin: 0 0 1.5em 0; }

.editor-content ol li:before {
  content: '' !important;
  margin: 0; }

.editor-content a:hover {
  color: #35c2de;
  webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.editor-content p a {
  color: #3e3e3e;
  font-size: 1em;
  text-decoration: underline; }

.editor-content a {
  color: #3e3e3e;
  text-decoration: underline;
  margin-bottom: 1.5em; }

.editor-content blockquote {
  font-size: 0.9em;
  font-style: italic;
  font-weight: 700;
  background-image: url("/public/20191211011635oe_/https://dwqr.scot/Content/images/icons/blockquote.png");
  background-position: 0.8em left;
  background-repeat: no-repeat;
  background-size: 31px 26px;
  min-height: 31px;
  padding-left: 2.5em;
  margin-bottom: 1.5em;
  margin-top: 1.5em; }

.editor-image {
  width: 200px; }

/** Table Styles*/
.editor-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8em;
  margin-bottom: 0.75em; }

/* Zebra striping */
.editor-content tr:nth-of-type(odd) {
  background: #fff; }

.editor-content th {
  background: #244c77;
  color: white;
  font-weight: bold; }

.editor-content td, th {
  padding: 12px;
  border: 2px solid #fff;
  text-align: left; }

.align-middle {
  text-align: left; }
  @media screen and (min-width: 46em) {
    .align-middle {
      text-align: center; } }

.results-table h1 {
  font-size: 1.2em; }

.editor-content .pdf-icon {
  width: 57px;
  height: 64px; }
  @media screen and (min-width: 46em) {
    .editor-content .pdf-icon {
      margin-left: 1em;
      margin-top: 0.65em; } }

/** Footer */
.footer {
  border-top: 1px solid #c0c6c9;
  background: #f2f5f7;
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YyZjVmNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, #f2f5f7 0%, white 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f2f5f7), color-stop(100%, white));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #f2f5f7 0%, white 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #f2f5f7 0%, white 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #f2f5f7 0%, white 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #f2f5f7 0%, white 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f5f7', endColorstr='#ffffff',GradientType=0 );
  /* IE6-8 */
  margin-top: 2em;
  padding-top: 1.5em;
  padding-bottom: 2em; }

.footer ul {
  margin: 0; }

.footer ul li {
  display: inline;
  margin: 0; }

.logo-footer {
  width: 250px;
  margin-top: 1em; }
  @media screen and (min-width: 44em) {
    .logo-footer {
      float: right;
      margin-top: 0;
      width: 250px; } }

.footer li a {
  color: #3e3e3e; }

.footer a:hover {
  color: #35c2de;
  webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.footer span {
  color: #244c77;
  padding: 0 0.3em;
  webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.sidebar-navigation ul {
  margin: 0;
  padding: 0; }

.sidebar-navigation ul li {
  list-style: none;
  margin: 0;
  border-bottom: 1px #e0e8eb solid; }

.sidebar-navigation ul li a {
  background-position: 0.8em 0.8em;
  background-size: 14px 14px;
  color: #3e3e3e;
  display: block;
  font-size: 0.8em;
  font-weight: 400;
  padding: 0.6em 0.5em;
  webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.sidebar-navigation ul li a:hover {
  background: #f2f2f2;
  background-image: url("/public/20191211011635oe_/https://dwqr.scot/Content/images/icons/sidebar-hover.png");
  background-position: 0.8em 0.8em;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  padding-left: 2em;
  webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.sidebar-active {
  background: #f2f2f2;
  background-image: url("/public/20191211011635oe_/https://dwqr.scot/Content/images/icons/sidebar-hover.png");
  background-position: 0.8em 0.8em;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  padding-left: 2em; }

a.sidebar-active {
  padding-left: 2em !important; }

.sidebar-navigation h2 {
  background: #35c2de;
  color: #ffffff;
  font-weight: 400;
  font-size: 0.9em;
  margin: 0;
  padding: 0.5em 0.7em; }

.sidebar-navigation li ul li a {
  color: #929292;
  font-size: 0.70em;
  padding-left: 2.4em; }

.sidebar-navigation li ul li:last-child {
  border-bottom: none; }

.sidebar-navigation li ul li a:hover {
  text-decoration: underline;
  padding-left: 2.4em;
  background-position: 0.9em center;
  background-image: none !important; }

.sidebar-active-inner-list {
  background: #f2f2f2;
  background-position: 0.8em center;
  background-repeat: no-repeat;
  background-size: 12px 12px; }

a.sidebar-active-inner-list {
  color: #35c2de !important;
  text-decoration: underline;
  background: #f9f9f9; }

.feature-image img {
  margin: 0;
  padding: 0;
  display: none; }
  @media screen and (min-width: 52em) {
    .feature-image img {
      display: block; } }

.feature-image h1 {
  background: #ffffff;
  font-size: 1.2em;
  font-weight: 700;
  margin: 0;
  padding: 0;
  position: relative;
  max-width: 100%;
  z-index: 100;
  padding: 0 0em; }
  @media screen and (min-width: 52em) {
    .feature-image h1 {
      margin: -2.2em 0 0 0 !important;
      padding: 0.51em 0em;
      max-width: 90%; } }

.contact-form {
  font-size: 0.8em; }

.contact-form label {
  display: block;
  margin-bottom: 0.2em; }

.contact-form input {
  border-radius: 2px;
  display: block;
  font-size: 0.9em;
  margin-bottom: 0.75em;
  padding: 0.75em;
  width: 100%; }

.contact-form textarea {
  border: 1px solid #666666;
  border-radius: 2px;
  height: 140px;
  width: 100%;
  margin-bottom: 0.8em; }

.contact-form select {
  margin-bottom: 0.7em; }

ul.parsley-errors-list {
  margin: 0; }

.parsley-custom-error-message {
  background: #ffdddd;
  border: 1px solid #dd9999;
  color: #996767;
  font-size: 0.8em;
  margin: 0;
  padding: 0.5em 1em;
  text-shadow: 0 1px 0 #FFFFFF; }

#parsley-id-1758 {
  margin-top: 1em !important; }

input[type="text"]:focus, .form input[type="email"]:focus, .form input[type="password"]:focus, .form textarea:focus {
  border-color: #35c2de;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }
