/**
 * @file
 * Styles are organized using the SMACSS technique. @see http://smacss.com/book/
 *
 * When you turn on CSS aggregation at admin/config/development/performance, all
 * of these @include files will be combined into a single file.
 */
/* Import Sass mixins, variables, Compass modules, etc. */
/**
 * @file Variables
 */
/* =============================================================================
                                                      Global variables
 */
/* 30em @ 16px font size */
/* 60em @ 16px font size */
/* 80em @ 16px font size */
/* used by table cells and text fields */
/* height or width */
/* Assuming font-size: 1rem; */
/* =============================================================================
                                                      Typography
 */
@import url(https://fonts.googleapis.com/css?family=Oxygen:400,300,700|Satisfy);
/* =============================================================================
                                                      Colors
 */
/* Social media */
/* HTML element standardisation rules */
/* normalize-scss 3.0.1+normalize.3.0.1 | MIT/GPLv2 License | bit.ly/normalize-scss */
/* Base
   ========================================================================== */
/**
 * Establish a vertical rhythm unit using $base-font-size, $base-line-height,
 * and $rhythm-unit variables. Also, correct text resizing oddly in IE 6/7 when
 * body `font-size` is set using `em` units.
 */
/* line 106, ../../../../../../Ruby22-x64/lib/ruby/gems/2.2.0/gems/compass-core-1.0.3/stylesheets/compass/typography/_vertical_rhythm.scss */
html {
  font-size: 100%;
  line-height: 1.5em;
}

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
/* line 79, ../sass/standardise/_normalize.scss */
html {
  font-family: "Oxygen", sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
/* line 91, ../sass/standardise/_normalize.scss */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
/* line 104, ../sass/standardise/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
/* line 124, ../sass/standardise/_normalize.scss */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  *display: inline;
  *zoom: 1;
  vertical-align: baseline;
  /* 2 */
}

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

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

/**
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
/* line 162, ../sass/standardise/_normalize.scss */
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
/* line 174, ../sass/standardise/_normalize.scss */
a {
  background: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
/* line 183, ../sass/standardise/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
/* line 195, ../sass/standardise/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

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

/**
 * Set 1 unit of vertical rhythm on the top and bottom margin.
 */
/* line 213, ../sass/standardise/_normalize.scss */
blockquote {
  margin: 1.5em 30px;
}

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

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
/* line 231, ../sass/standardise/_normalize.scss */
h1 {
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
  font-size: 2em;
  line-height: 1.5em;
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

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

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

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

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

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

/**
 * Address styling not present in IE 8/9.
 */
/* line 282, ../sass/standardise/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Set 1 unit of vertical rhythm on the top and bottom margin.
 */
/* line 293, ../sass/standardise/_normalize.scss */
p,
pre {
  margin: 1.5em 0;
}

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

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

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

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

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

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

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

/**
 * Correct list images handled incorrectly in IE 7.
 */
/* line 376, ../sass/standardise/_normalize.scss */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
/* line 391, ../sass/standardise/_normalize.scss */
img {
  border: 0;
  /* Improve image quality when scaled in IE 7. */
  -ms-interpolation-mode: bicubic;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
/* line 404, ../sass/standardise/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
/* line 416, ../sass/standardise/_normalize.scss */
figure {
  margin: 1.5em 30px;
}

/**
 * Address differences between Firefox and other browsers.
 */
/* line 425, ../sass/standardise/_normalize.scss */
hr {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
/* line 434, ../sass/standardise/_normalize.scss */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
/* line 442, ../sass/standardise/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * Correct margin displayed oddly in IE 6/7.
 */
/* line 466, ../sass/standardise/_normalize.scss */
form {
  margin: 0;
}

/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Address `font-family` inconsistency between `textarea` and other form in IE 7
 * 5. Improve appearance and consistency with IE 6/7.
 */
/* line 480, ../sass/standardise/_normalize.scss */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
  *font-family: "Oxygen", sans-serif;
  /* 4 */
  *vertical-align: middle;
  /* 5 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
/* line 498, ../sass/standardise/_normalize.scss */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
/* line 509, ../sass/standardise/_normalize.scss */
button,
select {
  text-transform: none;
}

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

/**
 * Re-set default cursor for disabled elements.
 */
/* line 539, ../sass/standardise/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
/* line 548, ../sass/standardise/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 559, ../sass/standardise/_normalize.scss */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
/* line 574, ../sass/standardise/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
/* line 591, ../sass/standardise/_normalize.scss */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
/* line 602, ../sass/standardise/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 2 */
  /**
   * Remove inner padding and search cancel button in Safari and Chrome on OS X.
   * Safari (but not Chrome) clips the cancel button when the search input has
   * padding (and `textfield` appearance).
   */
}
/* line 612, ../sass/standardise/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
/* line 622, ../sass/standardise/_normalize.scss */
fieldset {
  margin: 0 2px;
  /* Apply borders and padding that keep the vertical rhythm. */
  border-color: #c0c0c0;
  border-top-width: 0.0625em;
  border-top-style: solid;
  padding-top: 0.4625em;
  border-bottom-width: 0.0625em;
  border-bottom-style: solid;
  padding-bottom: 0.9125em;
  border-left-width: 0.0625em;
  border-left-style: solid;
  padding-left: 0.875em;
  border-right-width: 0.0625em;
  border-right-style: solid;
  padding-right: 0.875em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
/* line 638, ../sass/standardise/_normalize.scss */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
  *margin-left: -7px;
  /* 3 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
/* line 652, ../sass/standardise/_normalize.scss */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
/* line 661, ../sass/standardise/_normalize.scss */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
/* line 672, ../sass/standardise/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 677, ../sass/standardise/_normalize.scss */
td,
th {
  padding: 0;
}

/**
 * @file Elements
 */
/* 
    Website     Touchdreams
    Author      Dane Rossenrode
    Creation    April 2013
    Updated     October 2014
*/
/* -------------------------------------------------------------------------------------------
                                                                CONTENTS
    Individual tags
    Headings
    Links
    Tables
    Lists
 */
/* 
 * Much of these initial styles are provided by HTML5 Boilerplate v4.3.0,
 * MIT License | http://h5bp.com/
 */
/* line 34, ../sass/standardise/_elements.scss */
html {
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */
/* line 45, ../sass/standardise/_elements.scss */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

/* line 49, ../sass/standardise/_elements.scss */
::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/* line 54, ../sass/standardise/_elements.scss */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/* line 65, ../sass/standardise/_elements.scss */
audio,
canvas,
img,
video {
  vertical-align: middle;
}

/* line 73, ../sass/standardise/_elements.scss */
fieldset {
  border-width: 0;
  margin: 0;
  padding: 0;
}

/* line 80, ../sass/standardise/_elements.scss */
textarea {
  resize: vertical;
}

/* -------------------------------------------------------------------------------------------
                                                                Individual tags
*/
/* line 90, ../sass/standardise/_elements.scss */
body {
  background: #f7f7f7;
  font-family: "Oxygen", sans-serif;
  color: #E1E0E7;
}
@media only screen and (max-width: 960px) {
  /* line 90, ../sass/standardise/_elements.scss */
  body {
    font-size: 0.92em;
  }
}
@media only screen and (max-width: 480px) {
  /* line 90, ../sass/standardise/_elements.scss */
  body {
    font-size: 0.86em;
  }
}

/* line 110, ../sass/standardise/_elements.scss */
p {
  margin-top: 1.2em;
  font-family: "Oxygen", sans-serif;
  color: #E1E0E7;
  line-height: 1.4;
  font-weight: 300;
}

/* line 120, ../sass/standardise/_elements.scss */
img {
  width: auto;
  height: auto;
  max-width: 100%;
}

/* line 131, ../sass/standardise/_elements.scss */
small {
  font-size: 0.85em;
}

/* line 135, ../sass/standardise/_elements.scss */
figure {
  position: relative;
}

/* line 138, ../sass/standardise/_elements.scss */
figcaption {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  font-size: 0.9rem;
  line-height: 1.2;
  padding: 0.3em 0.5em;
  color: #FFF;
}
/* line 151, ../sass/standardise/_elements.scss */
figcaption .title {
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 0.3em;
}

/* line 158, ../sass/standardise/_elements.scss */
acronym, abbr {
  border-bottom: 1px dotted #222;
  cursor: help;
}

/* line 163, ../sass/standardise/_elements.scss */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #494949;
  margin: 1em 0;
  padding: 0;
  width: 70%;
  margin: 2.6em auto;
}

/* line 174, ../sass/standardise/_elements.scss */
blockquote {
  margin: 1.5em 4%;
  position: relative;
  background: rgba(0, 0, 0, 0.04);
  padding: 0.3em 0.5em;
  /* the following rules insert large quotation marks */
}
/* line 180, ../sass/standardise/_elements.scss */
blockquote p {
  margin: 0;
}
/* line 185, ../sass/standardise/_elements.scss */
blockquote:before, blockquote:after {
  font-size: 2.5em;
  position: absolute;
}
/* line 189, ../sass/standardise/_elements.scss */
blockquote:before {
  content: "\201C";
  left: -0.5em;
  top: -0.5em;
}
/* line 194, ../sass/standardise/_elements.scss */
blockquote:after {
  content: "\201D";
  right: -0.5em;
  bottom: -1em;
}

/* line 203, ../sass/standardise/_elements.scss */
.node__content p, pre {
  margin: 1em 0px;
  padding: 0 1em;
}

/*------------------------------------------------------------------------
                                                            Links
*/
/* line 212, ../sass/standardise/_elements.scss */
a {
  color: #178FB0;
  text-decoration: none;
  word-wrap: break-word;
}
/* line 222, ../sass/standardise/_elements.scss */
a:hover, a:focus {
  color: #10647b;
}
/* line 226, ../sass/standardise/_elements.scss */
a:active {
  /* a link when it is 'clicked' on */
  color: #0d5569;
}
/* line 229, ../sass/standardise/_elements.scss */
a.active, a[aria-selected="true"] {
  font-weight: bold;
  color: inherit;
}

/*------------------------------------------------------------------------
                                                            Headings
*/
/* line 241, ../sass/standardise/_elements.scss */
h1, h2, h3, h4, h5, h6,
.h1, .h2 {
  font-family: "Satisfy", cursive;
  font-weight: normal;
  line-height: 1.1;
  margin-top: 1em;
  margin-bottom: 0.8em;
  color: white;
}
/* line 251, ../sass/standardise/_elements.scss */
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
.h1 a, .h2 a {
  color: inherit;
}

/* line 255, ../sass/standardise/_elements.scss */
h3, h4, h5, h6,
.h3, .h4 {
  font-family: "Satisfy", cursive;
}

/* line 260, ../sass/standardise/_elements.scss */
h1,
.h1 {
  font-size: 2.6em;
  line-height: 1.5em;
  text-align: center;
  margin-bottom: 0;
  margin-bottom: 1em;
}

/* line 269, ../sass/standardise/_elements.scss */
h2,
.h2 {
  font-size: 2.2em;
  line-height: 1.5em;
}

/* line 274, ../sass/standardise/_elements.scss */
h3,
.h3 {
  font-size: 2em;
}

/* line 278, ../sass/standardise/_elements.scss */
h4 {
  font-size: 1.4em;
}

/* line 281, ../sass/standardise/_elements.scss */
h5 {
  font-size: 1.2em;
}

/* line 284, ../sass/standardise/_elements.scss */
h6 {
  font-size: 1em;
}

/* -------------------------------------------------------------------------------------------
                                                                Tables
*/
/* line 293, ../sass/standardise/_elements.scss */
table {
  border-collapse: collapse;
  margin: 1.5em 0;
}
/* line 299, ../sass/standardise/_elements.scss */
table td, table th {
  border: solid 1px #bbb;
  padding: 0.3em 0.5em;
  vertical-align: top;
}
/* line 305, ../sass/standardise/_elements.scss */
table th {
  text-align: left;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.05);
}
/* line 310, ../sass/standardise/_elements.scss */
table th.active {
  background: rgba(0, 0, 0, 0.15);
}
/* line 314, ../sass/standardise/_elements.scss */
table th[scope="row"] {
  font-weight: bold;
  text-align: right;
}
/* line 319, ../sass/standardise/_elements.scss */
table thead {
  font-size: 1.1em;
  font-family: "Satisfy", cursive;
  font-weight: bold;
  text-transform: uppercase;
}
/* line 326, ../sass/standardise/_elements.scss */
table.borderless td, table.borderless th {
  border: none;
}
/* line 329, ../sass/standardise/_elements.scss */
table.borderless th {
  background: none;
}
/* line 333, ../sass/standardise/_elements.scss */
table .even {
  background: none;
}
/* line 336, ../sass/standardise/_elements.scss */
table .odd {
  background: none;
}

/* -------------------------------------------------------------------------------------------
                                                                Lists
*/
/* line 347, ../sass/standardise/_elements.scss */
ul, ol {
  overflow: hidden;
}

/* line 351, ../sass/standardise/_elements.scss */
#admin-menu ul {
  overflow: visible;
}

/* line 354, ../sass/standardise/_elements.scss */
li + li {
  margin-top: 1em;
}

/* line 370, ../sass/standardise/_elements.scss */
ul.buttons {
  padding: 0;
}
/* line 373, ../sass/standardise/_elements.scss */
ul.buttons li {
  display: inline-block;
}
/* line 375, ../sass/standardise/_elements.scss */
ul.buttons img {
  -moz-border-radius: 0.15em;
  -webkit-border-radius: 0.15em;
  border-radius: 0.15em;
}

/**
 * @file Forms
 */
/* -------------------------------------------------------------------------------------------
                                                                CONTENTS
    Fieldsets & legends
    Invalids and focussed
    Buttons
    Text fields
    Disableds
    Placeholders
    Tweaks for Safari + Chrome
    Other elements
    
 */
/* line 21, ../sass/standardise/_forms.scss */
button,
a.button,
input[type="reset"],
input[type="submit"],
input[type="button"] {
  letter-spacing: 0.04em;
  padding: 0.5em 0.5em;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
}
@media all and (min-width: 480px) {
  /* line 21, ../sass/standardise/_forms.scss */
  button,
  a.button,
  input[type="reset"],
  input[type="submit"],
  input[type="button"] {
    font-size: 0.9em;
  }
}

/* line 39, ../sass/standardise/_forms.scss */
label {
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.3em;
  -moz-transition: font-size;
  -o-transition: font-size;
  -webkit-transition: font-size;
  transition: font-size;
}
/* line 47, ../sass/standardise/_forms.scss */
main label {
  font-size: 1.1em;
}
/* line 51, ../sass/standardise/_forms.scss */
input[type="radio"] + label, input[type="checkbox"] + label {
  padding-left: 0.2em;
}

/* line 57, ../sass/standardise/_forms.scss */
input[type="radio"],
input[type="checkbox"] {
  margin-top: 0.3em;
}

/* -------------------------------------------------------------------------------------------
                                                                Fieldsets & legends
*/
/* line 78, ../sass/standardise/_forms.scss */
form * + fieldset {
  margin-top: 3em;
}

/* -------------------------------------------------------------------------------------------
                                                                Invalids and focussed
*/
/* line 88, ../sass/standardise/_forms.scss */
input[type="search"]::-webkit-search-decoration {
  display: none;
}

/* line 99, ../sass/standardise/_forms.scss */
input:invalid,
button:invalid,
a.button:invalid,
select:invalid,
textarea:invalid {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 104, ../sass/standardise/_forms.scss */
input:focus,
button:focus,
a.button:focus,
select:focus,
textarea:focus {
  -moz-box-shadow: #178FB0 0 0 5px 0;
  -webkit-box-shadow: #178FB0 0 0 5px 0;
  box-shadow: #178FB0 0 0 5px 0;
  z-index: 1;
}

/* line 114, ../sass/standardise/_forms.scss */
input[type="file"]:focus, input[type="file"]:active,
input[type="radio"]:focus,
input[type="radio"]:active,
input[type="checkbox"]:focus,
input[type="checkbox"]:active {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* -------------------------------------------------------------------------------------------
                                                                Buttons
*/
/* line 125, ../sass/standardise/_forms.scss */
button,
a.button,
input[type="reset"],
input[type="submit"],
input[type="button"] {
  -webkit-appearance: none;
  -moz-border-radius: 0.15em;
  -webkit-border-radius: 0.15em;
  border-radius: 0.15em;
  -moz-background-clip: padding;
  -o-background-clip: padding-box;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  color: #E1E0E7;
  border: 1px solid;
  border-color: #ddd #bbb #999;
  cursor: pointer;
  display: inline-block;
  outline: 0;
  overflow: visible;
  margin-top: 0.6em;
  margin-right: 0.6em;
  text-shadow: none;
  text-decoration: none;
  vertical-align: top;
  width: auto;
  text-transform: uppercase;
  font-family: inherit;
  text-transform: uppercase;
  background-color: white;
}
/* line 161, ../sass/standardise/_forms.scss */
button:hover,
a.button:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  background-color: rgba(0, 0, 0, 0.04);
  text-decoration: none;
}
/* line 167, ../sass/standardise/_forms.scss */
button:active,
a.button:active,
input[type="reset"]:active,
input[type="submit"]:active,
input[type="button"]:active {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RkZGRkZCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2VlZWVlZSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dddddd), color-stop(100%, #eeeeee));
  background-image: -moz-linear-gradient(#dddddd, #eeeeee);
  background-image: -webkit-linear-gradient(#dddddd, #eeeeee);
  background-image: linear-gradient(#dddddd, #eeeeee);
  -moz-box-shadow: inset rgba(0, 0, 0, 0.25) 0 1px 2px 0;
  -webkit-box-shadow: inset rgba(0, 0, 0, 0.25) 0 1px 2px 0;
  box-shadow: inset rgba(0, 0, 0, 0.25) 0 1px 2px 0;
  border-color: #999 #bbb #ddd;
}
/* line 175, ../sass/standardise/_forms.scss */
button::-moz-focus-inner,
a.button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/* line 181, ../sass/standardise/_forms.scss */
button.primary, button.button-primary,
a.button.primary,
a.button.button-primary,
input[type="reset"].primary,
input[type="reset"].button-primary,
input[type="submit"].primary,
input[type="submit"].button-primary,
input[type="button"].primary,
input[type="button"].button-primary {
  color: white;
  text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.4);
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzU1OWZiMyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzMxNjE2ZSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #559fb3), color-stop(100%, #31616e));
  background-image: -moz-linear-gradient(#559fb3, #31616e);
  background-image: -webkit-linear-gradient(#559fb3, #31616e);
  background-image: linear-gradient(#559fb3, #31616e);
  border-color: #3c7686 #2f5c69 #274e58;
}
/* line 196, ../sass/standardise/_forms.scss */
button.flat,
a.button.flat,
input[type="reset"].flat,
input[type="submit"].flat,
input[type="button"].flat {
  background: none;
  border: none;
  color: #178FB0;
  padding-left: 0.4em;
  padding-right: 0.4em;
}
/* line 203, ../sass/standardise/_forms.scss */
button.flat:hover, button.flat:focus,
a.button.flat:hover,
a.button.flat:focus,
input[type="reset"].flat:hover,
input[type="reset"].flat:focus,
input[type="submit"].flat:hover,
input[type="submit"].flat:focus,
input[type="button"].flat:hover,
input[type="button"].flat:focus {
  background: none;
  color: #10647b;
}
/* line 208, ../sass/standardise/_forms.scss */
button.flat.active, button.flat[aria-selected="true"],
a.button.flat.active,
a.button.flat[aria-selected="true"],
input[type="reset"].flat.active,
input[type="reset"].flat[aria-selected="true"],
input[type="submit"].flat.active,
input[type="submit"].flat[aria-selected="true"],
input[type="button"].flat.active,
input[type="button"].flat[aria-selected="true"] {
  /* in Drupal, this is a link that points to the current (active) page */
  font-weight: bold;
  color: inherit;
}
/* line 214, ../sass/standardise/_forms.scss */
button.large,
a.button.large,
input[type="reset"].large,
input[type="submit"].large,
input[type="button"].large {
  font-size: 1.4em;
  text-transform: uppercase;
  -moz-transition: all, 0.2s, ease;
  -o-transition: all, 0.2s, ease;
  -webkit-transition: all, 0.2s, ease;
  transition: all, 0.2s, ease;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 580px) {
  /* line 214, ../sass/standardise/_forms.scss */
  button.large,
  a.button.large,
  input[type="reset"].large,
  input[type="submit"].large,
  input[type="button"].large {
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

/* -------------------------------------------------------------------------------------------
                                                                Text fields
*/
/* line 236, ../sass/standardise/_forms.scss */
textarea,
select,
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"] {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-background-clip: padding;
  -o-background-clip: padding-box;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  -webkit-appearance: none;
  background-color: rgba(0, 0, 0, 0.03);
  border: 1px solid;
  border-color: #848484 #c1c1c1 #e1e1e1;
  -moz-border-radius: 0.15em;
  -webkit-border-radius: 0.15em;
  border-radius: 0.15em;
  color: black;
  outline: 0;
  margin: 0.2em 0;
  padding: 0.3em 0.5em;
  text-align: left;
  font-size: 0.9em;
  height: auto;
  vertical-align: top;
  font-family: inherit;
  -moz-transition: all, 0.4s, ease;
  -o-transition: all, 0.4s, ease;
  -webkit-transition: all, 0.4s, ease;
  transition: all, 0.4s, ease;
}
/* line 274, ../sass/standardise/_forms.scss */
textarea[disabled],
select[disabled],
input[type="date"][disabled],
input[type="datetime"][disabled],
input[type="datetime-local"][disabled],
input[type="email"][disabled],
input[type="month"][disabled],
input[type="number"][disabled],
input[type="password"][disabled],
input[type="search"][disabled],
input[type="tel"][disabled],
input[type="text"][disabled],
input[type="time"][disabled],
input[type="url"][disabled],
input[type="week"][disabled] {
  background-color: #eee;
}

/* -------------------------------------------------------------------------------------------
                                                                Disableds
*/
/* line 284, ../sass/standardise/_forms.scss */
button[disabled],
input[disabled],
select[disabled],
select[disabled] option,
select[disabled] optgroup,
textarea[disabled],
a.button_disabled {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  color: #888;
  cursor: default;
}

/* -------------------------------------------------------------------------------------------
                                                                Placeholders
*/
/* line 309, ../sass/standardise/_forms.scss */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #888;
}

/* line 314, ../sass/standardise/_forms.scss */
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #888;
}

/* line 319, ../sass/standardise/_forms.scss */
input.placeholder_text,
textarea.placeholder_text {
  color: #888;
}

/* line 324, ../sass/standardise/_forms.scss */
textarea,
select[size],
select[multiple] {
  height: auto;
}

/* line 332, ../sass/standardise/_forms.scss */
select[size="0"],
select[size="1"] {
  height: 1.8em;
}

/* -------------------------------------------------------------------------------------------
                                                                Tweaks for Safari + Chrome.
*/
@media (-webkit-min-device-pixel-ratio: 0) {
  /* line 343, ../sass/standardise/_forms.scss */
  select[size],
  select[multiple],
  select[multiple][size] {
    background-image: none;
    padding-right: 3px;
  }

  /* line 350, ../sass/standardise/_forms.scss */
  select,
  select[size="0"],
  select[size="1"] {
    background-image: url(data:image/png;base64,R0lGODlhDQAEAIAAAAAAAP8A/yH5BAEHAAEALAAAAAANAAQAAAILhA+hG5jMDpxvhgIAOw==);
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 20px;
  }

  /* line 360, ../sass/standardise/_forms.scss */
  ::-webkit-validation-bubble-message {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #666), color-stop(1, black));
    border: 0;
    color: white;
    font-family: inherit;
    overflow: hidden;
    padding: 15px 15px 17px;
    text-shadow: black 0 0 1px;
    min-height: 16px;
  }

  /* line 374, ../sass/standardise/_forms.scss */
  ::-webkit-validation-bubble-arrow,
  ::-webkit-validation-bubble-top-outer-arrow,
  ::-webkit-validation-bubble-top-inner-arrow {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #666;
    border-color: #666;
  }
}
/* -------------------------------------------------------------------------------------------
                                                                Other elements
*/
/* line 389, ../sass/standardise/_forms.scss */
textarea {
  min-height: 40px;
  overflow: auto;
  resize: vertical;
  width: 100%;
}

/* line 396, ../sass/standardise/_forms.scss */
optgroup {
  color: black;
  font-style: normal;
  font-weight: normal;
  font-family: inherit;
}
/* line 407, ../sass/standardise/_forms.scss */
optgroup::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* line 413, ../sass/standardise/_forms.scss */
input[type="radio"],
input[type="checkbox"] {
  margin-top: 0.3em;
}

/* line 418, ../sass/standardise/_forms.scss */
label {
  font-weight: normal;
}
/* line 424, ../sass/standardise/_forms.scss */
input[type="radio"] + label, input[type="checkbox"] + label {
  padding-left: 0.2em;
}

/* Layout rules */
/**
 * @file
 * Positioning, sizing, and spacing of page elements. A responsive layout.

 */
/* line 12, ../sass/layouts/_layout.scss */
[role="presentation"] {
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  padding-left: 5%;
  padding-right: 5%;
  clear: both;
}

/* line 25, ../sass/layouts/_layout.scss */
main {
  padding-bottom: 3em;
}

/**
 * @file Regions
 */
/* =============================================================================
                                                      Header
 */
/* line 13, ../sass/layouts/_regions.scss */
header[role="banner"] div[role="presentation"] {
  margin: 0px auto;
  display: table;
  padding: 0 5%;
  box-sizing: border-box;
}
/* line 79, ../sass/initialisation/_mixins.scss */
header[role="banner"] .menu li {
  display: table-cell;
}
/* line 83, ../sass/initialisation/_mixins.scss */
header[role="banner"] .menu li a {
  padding: 0.5em 0.5em;
  text-align: center;
}
@media all and (max-width: 480px) {
  /* line 83, ../sass/initialisation/_mixins.scss */
  header[role="banner"] .menu li a {
    padding: 0.5em 0.5em;
  }
}
/* line 23, ../sass/layouts/_regions.scss */
header[role="banner"] .menu li a {
  color: #f2f2f2;
}
/* line 28, ../sass/layouts/_regions.scss */
header[role="banner"] .logo {
  padding: 0.5em 0;
  display: table-cell;
}
/* line 31, ../sass/layouts/_regions.scss */
header[role="banner"] .logo span {
  font-size: 1.4em;
  line-height: 1em;
  font-family: "Satisfy", cursive;
  color: rgba(255, 255, 255, 0.77);
}

/* line 41, ../sass/layouts/_regions.scss */
nav[role="navigation"] {
  display: table-cell;
  vertical-align: middle;
}

/* =============================================================================
                                                      Asides
 */
/* line 52, ../sass/layouts/_regions.scss */
.region-sidebar-second {
  text-align: center;
}

/* =============================================================================
                                                      Footer
 */
/* line 61, ../sass/layouts/_regions.scss */
footer[role="contentinfo"] {
  background-color: #3b3a41;
}
/* line 65, ../sass/layouts/_regions.scss */
footer[role="contentinfo"] > [role="presentation"] {
  padding-top: 1em;
  padding-bottom: 1em;
}
/* line 7, ../sass/initialisation/_mixins.scss */
footer[role="contentinfo"] > [role="presentation"]:after {
  content: "";
  display: table;
  clear: both;
}
/* line 71, ../sass/layouts/_regions.scss */
footer[role="contentinfo"] small {
  display: inline-block;
  margin-top: 0.8em;
}
/* line 76, ../sass/layouts/_regions.scss */
footer[role="contentinfo"] p {
  font-family: "Oxygen", sans-serif;
  margin: 0.5em 0;
}
/* line 82, ../sass/layouts/_regions.scss */
footer[role="contentinfo"] .region {
  float: left;
}
/* line 85, ../sass/layouts/_regions.scss */
footer[role="contentinfo"] .region:first-child {
  margin-right: 2em;
}
/* line 89, ../sass/layouts/_regions.scss */
footer[role="contentinfo"] .region:last-child {
  float: right;
}
@media all and (max-width: 480px) {
  /* line 89, ../sass/layouts/_regions.scss */
  footer[role="contentinfo"] .region:last-child {
    float: left;
  }
}

/* line 79, ../sass/initialisation/_mixins.scss */
#socialmedialinks .menu li {
  display: table-cell;
}
/* line 83, ../sass/initialisation/_mixins.scss */
#socialmedialinks .menu li a {
  padding: 0.5em 0.5em;
  text-align: center;
}
@media all and (max-width: 480px) {
  /* line 83, ../sass/initialisation/_mixins.scss */
  #socialmedialinks .menu li a {
    padding: 0.5em 0.5em;
  }
}
/* line 102, ../sass/layouts/_regions.scss */
#socialmedialinks .menu li:not(:first-child) {
  padding-left: 0.3em;
}

/* Component rules */
@font-face {
  font-family: 'icomoon';
  src: url("fonts/icomoon.eot?5jvi4d");
  src: url("fonts/icomoon.eot?5jvi4d#iefix") format("embedded-opentype"), url("fonts/icomoon.ttf?5jvi4d") format("truetype"), url("fonts/icomoon.woff?5jvi4d") format("woff"), url("fonts/icomoon.svg?5jvi4d#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* line 13, ../sass/components/_icomoon.scss */
[class^="icon-"], a[href*="facebook.com"],
a[href*="twitter.com"],
a[href*="instagram.com"],
a[href*="linkedin.com"],
a[href*="youtube.com"],
a[href*="soundcloud.com"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 28, ../sass/components/_icomoon.scss */
.icon-facebook:before, a[href*="facebook.com"]:before {
  content: "\e900";
}

/* line 31, ../sass/components/_icomoon.scss */
.icon-facebook2:before {
  content: "\e903";
}

/* line 34, ../sass/components/_icomoon.scss */
.icon-instagram:before, a[href*="instagram.com"]:before {
  content: "\e905";
}

/* line 37, ../sass/components/_icomoon.scss */
.icon-twitter:before, a[href*="twitter.com"]:before {
  content: "\e902";
}

/* line 40, ../sass/components/_icomoon.scss */
.icon-youtube:before, a[href*="youtube.com"]:before {
  content: "\e901";
}

/* line 43, ../sass/components/_icomoon.scss */
.icon-soundcloud:before, a[href*="soundcloud.com"]:before {
  content: "\e904";
}

/* line 46, ../sass/components/_icomoon.scss */
.icon-soundcloud2:before {
  content: "\e906";
}

/**
 * @file Components
 */
/* line 16, ../sass/components/_components.scss */
[role="presentation"] > h2 {
  text-align: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-left: 5%;
  padding-right: 5%;
  width: 100%;
  margin-left: -5%;
  margin-top: 2em;
}
/* line 98, ../sass/initialisation/_mixins.scss */
[role="presentation"] > h2 span {
  /* from Chris Coyier's CSS-Tricks website */
  display: inline-block;
  position: relative;
}
/* line 102, ../sass/initialisation/_mixins.scss */
[role="presentation"] > h2 span:before, [role="presentation"] > h2 span:after {
  content: "";
  position: absolute;
  top: 0;
  width: 600px;
  margin-top: 0.59em;
  border-top: 1px solid #A47B28;
}
/* line 119, ../sass/initialisation/_mixins.scss */
[role="presentation"] > h2 span:after {
  left: 100%;
  margin-left: 15px;
}
/* line 122, ../sass/initialisation/_mixins.scss */
[role="presentation"] > h2 span:before {
  right: 100%;
  margin-right: 15px;
}

/* line 23, ../sass/components/_components.scss */
h1 {
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* line 98, ../sass/initialisation/_mixins.scss */
h1 span {
  /* from Chris Coyier's CSS-Tricks website */
  display: inline-block;
  position: relative;
}
/* line 102, ../sass/initialisation/_mixins.scss */
h1 span:before, h1 span:after {
  content: "";
  position: absolute;
  top: 0;
  width: 600px;
  margin-top: 0.59em;
  border-top: 1px solid #A47B28;
}
/* line 119, ../sass/initialisation/_mixins.scss */
h1 span:after {
  left: 100%;
  margin-left: 15px;
}
/* line 122, ../sass/initialisation/_mixins.scss */
h1 span:before {
  right: 100%;
  margin-right: 15px;
}

/* line 27, ../sass/components/_components.scss */
.small {
  font-size: 0.9em;
}

/* line 32, ../sass/components/_components.scss */
h1 > .noticeable, h2 > .noticeable, h3 > .noticeable, h4 > .noticeable {
  display: block;
  background: #10647B;
  color: white;
  padding: 0.2em 0.5em;
  border-radius: 0.15em;
}

/* line 64, ../sass/components/_components.scss */
[aria-hidden="true"] {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px;
  width: 1px;
  word-wrap: normal;
}

/* line 68, ../sass/components/_components.scss */
.images-bordered img {
  border: 1px solid #BABABA;
  padding: 2px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 72, ../sass/components/_components.scss */
.non-list {
  list-style: none;
}
/* line 75, ../sass/components/_components.scss */
.non-list,
.non-list li {
  padding: 0;
  margin: 0;
}

@media all and (min-width: 480px) {
  /* line 98, ../sass/components/_components.scss */
  .left,
  .align-left {
    text-align: center;
    display: inline-block;
    float: left;
    margin-right: 3%;
  }
}

@media all and (min-width: 480px) {
  /* line 104, ../sass/components/_components.scss */
  .right,
  .align-right {
    text-align: center;
    display: inline-block;
    float: right;
    margin-left: 3%;
  }
}

/* line 111, ../sass/components/_components.scss */
.profile-pic {
  position: relative;
  margin-top: -5em;
  max-width: 35%;
  margin-right: 1em;
}
@media all and (max-width: 480px) {
  /* line 111, ../sass/components/_components.scss */
  .profile-pic {
    position: static;
    margin-top: 1em;
    max-width: 100%;
    margin-right: 0;
  }
}

/* line 125, ../sass/components/_components.scss */
.overlay-wrapper > div {
  position: relative;
}

/* line 129, ../sass/components/_components.scss */
.overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
}
/* line 139, ../sass/components/_components.scss */
.overlay span {
  font-size: 1.3em;
  padding: 0.3em;
  width: 100%;
  text-align: center;
  text-shadow: 0.5px 0.5px rgba(255, 255, 255, 0.45);
}

/* line 151, ../sass/components/_components.scss */
img {
  border-radius: 2px;
  /* All corner radius' must be very small */
}

/* line 156, ../sass/components/_components.scss */
.videowrapper {
  float: none;
  clear: both;
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0px;
  height: 0;
}

/* line 165, ../sass/components/_components.scss */
.videowrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 173, ../sass/components/_components.scss */
.spacer {
  width: 100%;
  display: table-cell;
}

/* line 178, ../sass/components/_components.scss */
.aside-left {
  max-width: 28%;
  margin-right: 1em;
}
@media all and (max-width: 480px) {
  /* line 178, ../sass/components/_components.scss */
  .aside-left {
    max-width: 100%;
  }
}

/* line 187, ../sass/components/_components.scss */
.no-margin {
  margin-top: 0;
}

@media all and (max-width: 480px) {
  /* line 191, ../sass/components/_components.scss */
  .hide-mobile {
    display: none !important;
  }
}

/* line 201, ../sass/components/_components.scss */
.banner {
  max-width: none;
  color: white;
  text-align: center;
  position: relative;
}

/* line 210, ../sass/components/_components.scss */
#block-banner {
  clear: both;
}

/* line 218, ../sass/components/_components.scss */
ul.menu {
  margin: 0;
}

/* line 221, ../sass/components/_components.scss */
.menu {
  display: block;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}
/* line 234, ../sass/components/_components.scss */
.menu li a {
  color: #26252C;
  font-weight: 600;
}
/* line 238, ../sass/components/_components.scss */
.menu li a.is-active {
  border-bottom: 1px solid #A47B28;
}

/* line 245, ../sass/components/_components.scss */
header .menu li {
  padding: 1em 1em;
}

/* line 254, ../sass/components/_components.scss */
a[href*="facebook.com"],
a[href*="twitter.com"],
a[href*="instagram.com"],
a[href*="linkedin.com"],
a[href*="youtube.com"],
a[href*="soundcloud.com"] {
  display: inline-block !important;
  padding: 0.5em !important;
  overflow: hidden;
  height: 1em;
  width: 1em;
  color: transparent !important;
  font-size: 1.2em !important;
  -moz-border-radius: 0.15em;
  -webkit-border-radius: 0.15em;
  border-radius: 0.15em;
}
/* line 270, ../sass/components/_components.scss */
a[href*="facebook.com"]::before,
a[href*="twitter.com"]::before,
a[href*="instagram.com"]::before,
a[href*="linkedin.com"]::before,
a[href*="youtube.com"]::before,
a[href*="soundcloud.com"]::before {
  color: white;
}

/* line 274, ../sass/components/_components.scss */
a[href*="facebook.com"] {
  background-color: #3b5998;
}
/* line 277, ../sass/components/_components.scss */
a[href*="facebook.com"]:hover, a[href*="facebook.com"]:focus {
  background-color: #2c4272;
}

/* line 282, ../sass/components/_components.scss */
a[href*="twitter.com"] {
  background-color: #00aced;
}
/* line 285, ../sass/components/_components.scss */
a[href*="twitter.com"]:hover, a[href*="twitter.com"]:focus {
  background-color: #0081b1;
}

/* line 290, ../sass/components/_components.scss */
a[href*="instagram.com"] {
  background-color: #125688;
}
/* line 293, ../sass/components/_components.scss */
a[href*="instagram.com"]:hover, a[href*="instagram.com"]:focus {
  background-color: #0d4066;
}

/* line 298, ../sass/components/_components.scss */
a[href*="soundcloud.com"] {
  background-color: #FF5500;
}
/* line 301, ../sass/components/_components.scss */
a[href*="soundcloud.com"]:hover, a[href*="soundcloud.com"]:focus {
  background-color: #bf3f00;
}

/* line 306, ../sass/components/_components.scss */
a[href*="youtube.com"] {
  background-color: #bb0000;
}
/* line 309, ../sass/components/_components.scss */
a[href*="youtube.com"]:hover, a[href*="youtube.com"]:focus {
  background-color: #8c0000;
}

/* line 335, ../sass/components/_components.scss */
.col-wrapper.col-2 .col {
  vertical-align: top;
}
@media all and (max-width: 480px) {
  /* line 335, ../sass/components/_components.scss */
  .col-wrapper.col-2 .col {
    width: 100%;
    margin-bottom: 1em;
    display: inline-block;
  }
}
@media all and (min-width: 480px) and (max-width: 960px) {
  /* line 335, ../sass/components/_components.scss */
  .col-wrapper.col-2 .col {
    width: 100%;
    margin-bottom: 1em;
    display: inline-block;
  }
}
@media all and (min-width: 960px) {
  /* line 335, ../sass/components/_components.scss */
  .col-wrapper.col-2 .col {
    width: 49.25%;
    margin-bottom: 1em;
    display: inline-block;
  }
}

/* line 340, ../sass/components/_components.scss */
.col-wrapper.col-3 .col {
  vertical-align: top;
}
@media all and (max-width: 480px) {
  /* line 340, ../sass/components/_components.scss */
  .col-wrapper.col-3 .col {
    width: 100%;
    margin-bottom: 1em;
    display: inline-block;
  }
}
@media all and (min-width: 480px) and (max-width: 960px) {
  /* line 340, ../sass/components/_components.scss */
  .col-wrapper.col-3 .col {
    width: 49.25%;
    margin-bottom: 1em;
    display: inline-block;
  }
}
@media all and (min-width: 960px) {
  /* line 340, ../sass/components/_components.scss */
  .col-wrapper.col-3 .col {
    width: 32.33333%;
    margin-bottom: 1em;
    display: inline-block;
  }
}

/* line 344, ../sass/components/_components.scss */
.col-wrapper.col-3-wide .col {
  vertical-align: top;
}
@media all and (max-width: 480px) {
  /* line 344, ../sass/components/_components.scss */
  .col-wrapper.col-3-wide .col {
    width: 100%;
    margin-bottom: 1em;
    display: inline-block;
  }
}
@media all and (min-width: 480px) and (max-width: 960px) {
  /* line 344, ../sass/components/_components.scss */
  .col-wrapper.col-3-wide .col {
    width: 47.25%;
    margin-bottom: 1em;
    display: inline-block;
  }
}
@media all and (min-width: 960px) {
  /* line 344, ../sass/components/_components.scss */
  .col-wrapper.col-3-wide .col {
    width: 29.66667%;
    margin-bottom: 1em;
    display: inline-block;
  }
}

/* line 348, ../sass/components/_components.scss */
.col-wrapper.col-4 .col {
  vertical-align: top;
}
@media all and (max-width: 480px) {
  /* line 348, ../sass/components/_components.scss */
  .col-wrapper.col-4 .col {
    width: 100%;
    margin-bottom: 1em;
    display: inline-block;
  }
}
@media all and (min-width: 480px) and (max-width: 960px) {
  /* line 348, ../sass/components/_components.scss */
  .col-wrapper.col-4 .col {
    width: 49.25%;
    margin-bottom: 1em;
    display: inline-block;
  }
}
@media all and (min-width: 960px) {
  /* line 348, ../sass/components/_components.scss */
  .col-wrapper.col-4 .col {
    width: 23.875%;
    margin-bottom: 1em;
    display: inline-block;
  }
}

/* line 352, ../sass/components/_components.scss */
.col-wrapper.col-5 .col {
  vertical-align: top;
}
@media all and (max-width: 480px) {
  /* line 352, ../sass/components/_components.scss */
  .col-wrapper.col-5 .col {
    width: 100%;
    margin-bottom: 1em;
    display: inline-block;
  }
}
@media all and (min-width: 480px) and (max-width: 960px) {
  /* line 352, ../sass/components/_components.scss */
  .col-wrapper.col-5 .col {
    width: 32.33333%;
    margin-bottom: 1em;
    display: inline-block;
  }
}
@media all and (min-width: 960px) {
  /* line 352, ../sass/components/_components.scss */
  .col-wrapper.col-5 .col {
    width: 18.8%;
    margin-bottom: 1em;
    display: inline-block;
  }
}

/* line 357, ../sass/components/_components.scss */
.col-wrapper .col-span {
  vertical-align: top;
}
@media all and (max-width: 480px) {
  /* line 357, ../sass/components/_components.scss */
  .col-wrapper .col-span {
    width: 100%;
    margin-bottom: 1em;
    display: inline-block;
  }
}
@media all and (min-width: 480px) and (max-width: 960px) {
  /* line 357, ../sass/components/_components.scss */
  .col-wrapper .col-span {
    width: 49.25%;
    margin-bottom: 1em;
    display: inline-block;
  }
}
@media all and (min-width: 960px) {
  /* line 357, ../sass/components/_components.scss */
  .col-wrapper .col-span {
    width: 66.16667%;
    margin-bottom: 1.5%;
    display: inline-block;
  }
}

/* line 372, ../sass/components/_components.scss */
.col-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* line 383, ../sass/components/_components.scss */
.masonry > div {
  margin-bottom: 15px;
}

@media all and (max-width: 960px) {
  /* line 387, ../sass/components/_components.scss */
  .grid-item {
    width: 100%;
  }
}
@media all and (min-width: 960px) {
  /* line 387, ../sass/components/_components.scss */
  .grid-item {
    width: 48%;
  }
}

@media all and (max-width: 960px) {
  /* line 396, ../sass/components/_components.scss */
  .gutter-sizer {
    width: 0%;
  }
}
@media all and (min-width: 960px) {
  /* line 396, ../sass/components/_components.scss */
  .gutter-sizer {
    width: 4%;
  }
  /* line 416, ../sass/components/_components.scss */
  .gutter-sizer .col-wrapper.col-2 .col {
    vertical-align: top;
  }
}
@media all and (min-width: 960px) and (max-width: 480px) {
  /* line 416, ../sass/components/_components.scss */
  .gutter-sizer .col-wrapper.col-2 .col {
    width: 100%;
    margin-bottom: 1em;
    display: inline-block;
  }
}
@media all and (min-width: 960px) and (min-width: 480px) and (max-width: 960px) {
  /* line 416, ../sass/components/_components.scss */
  .gutter-sizer .col-wrapper.col-2 .col {
    width: 100%;
    margin-bottom: 1em;
    display: inline-block;
  }
}
@media all and (min-width: 960px) and (min-width: 960px) {
  /* line 416, ../sass/components/_components.scss */
  .gutter-sizer .col-wrapper.col-2 .col {
    width: 49.25%;
    margin-bottom: 1em;
    display: inline-block;
  }
}
@media all and (min-width: 960px) {
  /* line 421, ../sass/components/_components.scss */
  .gutter-sizer .col-wrapper.col-3 .col {
    vertical-align: top;
  }
}
@media all and (min-width: 960px) and (max-width: 480px) {
  /* line 421, ../sass/components/_components.scss */
  .gutter-sizer .col-wrapper.col-3 .col {
    width: 100%;
    margin-bottom: 1em;
    display: inline-block;
  }
}
@media all and (min-width: 960px) and (min-width: 480px) and (max-width: 960px) {
  /* line 421, ../sass/components/_components.scss */
  .gutter-sizer .col-wrapper.col-3 .col {
    width: 49.25%;
    margin-bottom: 1em;
    display: inline-block;
  }
}
@media all and (min-width: 960px) and (min-width: 960px) {
  /* line 421, ../sass/components/_components.scss */
  .gutter-sizer .col-wrapper.col-3 .col {
    width: 32.33333%;
    margin-bottom: 1em;
    display: inline-block;
  }
}
@media all and (min-width: 960px) {
  /* line 425, ../sass/components/_components.scss */
  .gutter-sizer .col-wrapper.col-4 .col {
    vertical-align: top;
  }
}
@media all and (min-width: 960px) and (max-width: 480px) {
  /* line 425, ../sass/components/_components.scss */
  .gutter-sizer .col-wrapper.col-4 .col {
    width: 100%;
    margin-bottom: 1em;
    display: inline-block;
  }
}
@media all and (min-width: 960px) and (min-width: 480px) and (max-width: 960px) {
  /* line 425, ../sass/components/_components.scss */
  .gutter-sizer .col-wrapper.col-4 .col {
    width: 49.25%;
    margin-bottom: 1em;
    display: inline-block;
  }
}
@media all and (min-width: 960px) and (min-width: 960px) {
  /* line 425, ../sass/components/_components.scss */
  .gutter-sizer .col-wrapper.col-4 .col {
    width: 23.875%;
    margin-bottom: 1em;
    display: inline-block;
  }
}
@media all and (min-width: 960px) {
  /* line 429, ../sass/components/_components.scss */
  .gutter-sizer .col-wrapper.col-5 .col {
    vertical-align: top;
  }
}
@media all and (min-width: 960px) and (max-width: 480px) {
  /* line 429, ../sass/components/_components.scss */
  .gutter-sizer .col-wrapper.col-5 .col {
    width: 100%;
    margin-bottom: 1em;
    display: inline-block;
  }
}
@media all and (min-width: 960px) and (min-width: 480px) and (max-width: 960px) {
  /* line 429, ../sass/components/_components.scss */
  .gutter-sizer .col-wrapper.col-5 .col {
    width: 32.33333%;
    margin-bottom: 1em;
    display: inline-block;
  }
}
@media all and (min-width: 960px) and (min-width: 960px) {
  /* line 429, ../sass/components/_components.scss */
  .gutter-sizer .col-wrapper.col-5 .col {
    width: 18.8%;
    margin-bottom: 1em;
    display: inline-block;
  }
}
@media all and (min-width: 960px) {
  /* line 434, ../sass/components/_components.scss */
  .gutter-sizer .col-wrapper .col-span {
    vertical-align: top;
  }
}
@media all and (min-width: 960px) and (max-width: 480px) {
  /* line 434, ../sass/components/_components.scss */
  .gutter-sizer .col-wrapper .col-span {
    width: 100%;
    margin-bottom: 1em;
    display: inline-block;
  }
}
@media all and (min-width: 960px) and (min-width: 480px) and (max-width: 960px) {
  /* line 434, ../sass/components/_components.scss */
  .gutter-sizer .col-wrapper .col-span {
    width: 49.25%;
    margin-bottom: 1em;
    display: inline-block;
  }
}
@media all and (min-width: 960px) and (min-width: 960px) {
  /* line 434, ../sass/components/_components.scss */
  .gutter-sizer .col-wrapper .col-span {
    width: 66.16667%;
    margin-bottom: 1.5%;
    display: inline-block;
  }
}
@media all and (min-width: 960px) {
  /* line 449, ../sass/components/_components.scss */
  .gutter-sizer .col-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

@media all and (max-width: 480px) {
  /* line 460, ../sass/components/_components.scss */
  .gallery .grid-item {
    width: 100%;
  }
}
@media all and (min-width: 480px) and (max-width: 960px) {
  /* line 460, ../sass/components/_components.scss */
  .gallery .grid-item {
    width: 49%;
  }
}
@media all and (min-width: 960px) {
  /* line 460, ../sass/components/_components.scss */
  .gallery .grid-item {
    width: 32%;
  }
}
@media all and (max-width: 480px) {
  /* line 471, ../sass/components/_components.scss */
  .gallery .gutter-sizer {
    width: 0;
  }
}
@media all and (min-width: 480px) and (max-width: 960px) {
  /* line 471, ../sass/components/_components.scss */
  .gallery .gutter-sizer {
    width: 2%;
  }
}
@media all and (min-width: 960px) {
  /* line 471, ../sass/components/_components.scss */
  .gallery .gutter-sizer {
    width: 2%;
  }
}

/**
 * @file Colour
 */
/* line 5, ../sass/components/_colours.scss */
.on-very-dark, body {
  background: #26252C;
  color: white;
}
/* line 9, ../sass/components/_colours.scss */
.on-very-dark a, body a {
  color: white;
}

/* line 14, ../sass/components/_colours.scss */
.on-white {
  color: #E1E0E7;
}
/* line 19, ../sass/components/_colours.scss */
.on-white table td, .on-white table th {
  border-color: #bbb;
}
/* line 25, ../sass/components/_colours.scss */
.on-white .form-item.blurred input,
.on-white .form-item.blurred textarea {
  background-color: rgba(255, 255, 255, 0.5);
}
/* line 29, ../sass/components/_colours.scss */
.on-white .form-item.blurred label,
.on-white .form-item.blurred .description {
  color: #e7e6eb;
}
/* line 44, ../sass/components/_colours.scss */
.on-white a:hover, .on-white a:focus {
  color: #5cb0c7;
}
/* line 48, ../sass/components/_colours.scss */
.on-white a:active {
  /* a link when it is 'clicked' on */
  color: #5cb0c7;
}

/* line 61, ../sass/components/_colours.scss */
.on-translucent-background {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0.3em rgba(0, 0, 0, 0.3);
}

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