/* ==========================================================================
   Import SASS modules, no CSS output (e.g. mixins, functions, and variables)
   ========================================================================== */
/* ==========================================================================
   SASS responsive variables (Bourbon Neat grid http://neat.bourbon.io)
   ========================================================================== */
/* Grid settings */
/* Toggle the visual grid for testing */
/*$visual-grid: false;
$visual-grid-color: yellow;  
$visual-grid-index: front;
$visual-grid-opacity: 0.5;*/
/* Breakpoints */
/* 335px for testing, 321px for live */
/* ==========================================================================
   SASS font variables 
   ========================================================================== */
/* @import url('<t4 type="parsingmediabroker" mediaid="1063832" name="myfilepath"  />');	*/
/* ==========================================================================
   SASS color variables
   ========================================================================== */
/*CH: hover state grey*/
/* CH - no real need to define this one; its just for completeness*/
/* This must be imported after 'bourbon' but before 'neat' */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* ==========================================================================
   SASS mixins **
   ========================================================================== */
*, *::after, *::before {
  box-sizing: border-box;
}

/*
  Maintain ratio mixin. Great for responsive grids, or videos.
  https://gist.github.com/brianmcallister/2932463
  
  $ratio - Ratio the element needs to maintain.
  
  Examples
  
    // A 16:9 ratio would look like this:
    .element {
      @include maintain-ratio(16 9);
    }
*/
/*
Used on Faculty homepage
*/
/* Omega Reset */
/*! normalize.css v1.1.3 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

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

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 * Known issue: no IE 6 support.
 */
[hidden] {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-size: 100%;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Address `font-family` inconsistency between `textarea` and other form
 * elements.
 */
html,
button,
input,
select,
textarea {
  font-family: Alegreya Sans, sans-serif;
}

/**
 * Address margins handled incorrectly in IE 6/7.
 */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

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

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address font sizes and margins set differently in IE 6/7.
 * Address font sizes within `section` and `article` in Firefox 4+, Safari 5,
 * and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}

h3 {
  font-size: 1.17em;
  margin: 1em 0;
}

h4 {
  font-size: 1em;
  margin: 1.33em 0;
}

h5 {
  font-size: 0.83em;
  margin: 1.67em 0;
}

h6 {
  font-size: 0.67em;
  margin: 2.33em 0;
}

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

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

blockquote {
  margin: 1em 40px;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 * Known issue: no IE 6/7 normalization.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Address styling not present in IE 6/7/8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address margins set differently in IE 6/7.
 */
p,
pre {
  margin: 1em 0;
}

/**
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: Alegreya Sans, sans-serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/**
 * Address CSS quotes not supported in IE 6/7.
 */
q {
  quotes: none;
}

/**
 * Address `quotes` property not supported in Safari 4.
 */
q:before,
q:after {
  content: '';
  content: none;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}
small > a {
  text-decoration: none;
}
small > a.hover {
  background: #d5d5d5;
  color: #fff;
}

/**
 * Prevent `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;
}

/* ==========================================================================
   Lists
   ========================================================================== */
/**
 * Address margins set differently in IE 6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0;
}

dd {
  margin: 0;
  /* AG changing last margin from 40px to 0 to fix the margin in Staff Profiles - Professional Activities. */
}

/**
 * Address paddings set differently in IE 6/7.
 */
menu,
ol,
ul {
  padding: 0 0 0 40px;
}

/**
 * Correct list images handled incorrectly in IE 7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improve image quality when scaled in IE 7.
 */
img {
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Correct margin displayed oddly in IE 6/7.
 */
form {
  margin: 0;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct color not being inherited in IE 6/7/8/9.
 * 2. Correct text not wrapping in Firefox 3.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  white-space: normal;
  /* 2 */
  *margin-left: -7px;
  /* 3 */
}

/**
 * 1. Correct font size not being inherited in all browsers.
 * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
 *    and Chrome.
 * 3. Improve appearance and consistency in all browsers.
 */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */
}

/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
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.
 */
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.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to content-box in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 6/7/8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ==========================================================================
   SASS placeholders
   ========================================================================== */
.page-summary.has-img h1, main > .main > article.wysiwyg > h1, h1, .page-summary h1, .wysiwyg h1, .wysiwyg2 h1 {
  margin: .3em; /*.5em 0;*/
  font-family: Alegreya Sans, sans-serif;
  line-height: 1.2;
  color: #222222;
  font-size: 38px;
  font-size: 2.375rem;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
.page-summary.has-img h1 a, main > .main > article.wysiwyg > h1 a, h1 a, .page-summary h1 a, .wysiwyg h1 a, .wysiwyg2 h1 a {
  color: #002b5c;
}
@media screen and (min-width: 680px) {
  .page-summary.has-img h1, main > .main > article.wysiwyg > h1, h1, .page-summary h1, .wysiwyg h1, .wysiwyg2 h1 {
    font-size: 44px;
    font-size: 2.75rem;
  }
}

.page-summary.has-img h1 {
  display: inline-block;
  padding: 0.2em 20px;
  background: #002b5c;
  color: #fff;
}
.page-summary.has-img h1 a {
  color: #fff;
}

main > .main > aside > h1, h2, form#formalpha h1, .page-summary-small > h2, .page-summary-small.has-img > h3, .wysiwyg h2, .wysiwyg2 h2 {
  margin: .5em 0;
  font-family: Alegreya Sans, sans-serif;
  line-height: 1.2;
  color: #222222;
  border-bottom: 1px solid gainsboro;
  padding-bottom: 0.5em;
  margin-top: 5px: /*20px;*/
  min-height: 60px;
  margin-bottom: 18px;
  font-size: 32px;
  font-size: 2rem;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
main > .main > aside > h1 a.hover, h2 a.hover, form#formalpha h1 a.hover, .page-summary-small.has-img > h3 a.hover {
  color: #d6620b;
}
@media screen and (min-width: 680px) {
  main > .main > aside > h1, h2, form#formalpha h1, .page-summary-small > h2, .page-summary-small.has-img > h3, .wysiwyg h2, .wysiwyg2 h2 {
    font-size: 36px;
    font-size: 2.25rem;
  }
}

h3, .wysiwyg h3, .wysiwyg2 h3, .wysiwyg span.breakout-box, .wysiwyg2 span.breakout-box, p.breakout-box {
  margin: .5em 0;
  font-family: Alegreya Sans, sans-serif;
  line-height: 1.2;
  color: #222222;
  font-size: 28px;
  font-size: 1.75rem;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
h3 a, .wysiwyg h3 a, .wysiwyg2 h3 a, .wysiwyg span.breakout-box a, .wysiwyg2 span.breakout-box a, p.breakout-box a {
  color: #002b5c;
}
@media screen and (min-width: 680px) {
  h3, .wysiwyg h3, .wysiwyg2 h3, .wysiwyg span.breakout-box, .wysiwyg2 span.breakout-box, p.breakout-box {
    font-size: 32px;
    font-size: 2rem;
  }
}

h4, .wysiwyg h4, .wysiwyg2 h4 {
  margin: .5em 0;
  font-family: Alegreya Sans, sans-serif;
  line-height: 1.2;
  font-size: 24px;
  font-size: 1.5rem;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 680px) {
  h4, .wysiwyg h4, .wysiwyg2 h4 {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

h5, .wysiwyg h5, .wysiwyg2 h5 {
  margin: .5em 0;
  font-family: Alegreya Sans, sans-serif;
  line-height: 1.2;
  font-size: 20px;
  font-size: 1.25rem;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 680px) {
  h5, .wysiwyg h5, .wysiwyg2 h5 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

h6, .wysiwyg h6, .wysiwyg2 h6, .wysiwyg dl dt, .wysiwyg2 dl dt {
  margin: .5em 0;
  font-family: Alegreya Sans, sans-serif;
  line-height: 1.2;
  font-size: 18px;
  font-size: 1.125rem;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 680px) {
  h6, .wysiwyg h6, .wysiwyg2 h6, .wysiwyg dl dt, .wysiwyg2 dl dt {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

button.primaryblue.hover, button.blue.hover, button.orange.hover, button.green.hover, button.red.hover, button.lightgrey.hover, button.darkgrey.hover, button.hover {
  background-color: #d6620b;
  color: #fff;
  text-decoration: none;
}

h3 a.hover, a.hover, .wysiwyg h3 a.hover, .wysiwyg2 h3 a.hover {
  color: #d6620b;
  text-decoration: none;
}

/* ==========================================================================
   Import SASS partials
   ========================================================================== */
/*! HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/ */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 *
 *  
 */
/* ==========================================================================
   Base styles
   ========================================================================== */
html,
button,
select,
textarea {
  color: #222222;
  font-family: Alegreya Sans, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ch homepage course search*/
@media screen and (min-width: 1001px) {
  input#hpcoursesearch.filtersearch {
    font-size: 2em;
  }
}
@media screen and (max-width: 1000px) {
  input#hpcoursesearch.filtersearch {
    font-size: 1.5em;
  }
}

@media screen and (min-width: 1001px) {
  input#hpcoursesearchsubmit {
    padding: 1.1em 1em 0.4em 1em;
  }
}
@media screen and (max-width: 1000px) {
  input#hpcoursesearchsubmit {
    padding: 0.6em 0.5em 0.2em 0.5em;
  }
}

/* ch */
a {
  color: #0078ae;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

html {
  font-size: 1em;
  line-height: 1.4;
}

body {
  /*@include font-size(15.5px);*/
  font-size: 1.07em;
}

/*
 * 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.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */
audio,
canvas,
img,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

.staffprofilename {
  text-transform: capitalize;
}

/* .jobtitle {	
    text-transform:capitalize;	
	} */
.jobtitle {
  margin-top: 0;
}

[class^="icon-"], [class*=" icon-"] {
  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;
}

.icon-quotes-right, .icon-quotes-left {
  quotes: "\201C" "\201D" "\2018" "\2019";
  font-size: 2.7em;
  line-height: 0.1em;
  vertical-align: -0.4em;
  color: #5d9732;
}

.icon-quotes-right:before {
  content: close-quote;
  margin-left: 0.25em;
}

.icon-quotes-left:before {
  content: open-quote;
  margin-right: 0.25em;
}

.browsehappy {
  position: fixed;
  z-index: 9999;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 10px;
  text-align: center;
  background: #222222;
  color: #a7a9ac;
}
.browsehappy a {
  color: #fff;
}

.searchbox {
  padding: .4em .7em;
  border: none;
  background: #efefef;
  font-size: 18px;
  color: #000;
  width: 150px;
}

@media screen and (min-width: 500px) {
  .searchbox {
    padding: .4em .7em;
    border: none;
    font-size: 18px;
    color: #000;
    width: 150px;
    height: 42px;
  }
}
@media screen and (min-width: 680px) {
  .searchbox {
    padding: .4em .7em;
    border: none;
    font-size: 18px;
    color: #000;
    width: 200px;
  }
}
@media screen and (min-width: 800px) {
  .searchbox {
    /*
    float:right;
     position: absolute; */
    /* right: $padding/10;*/
    z-index: 1;
    width: 29%;
  }
}
#submitstyle {
  padding: 1.3em .4em;
  border: none;
  background: #5A5C60;
  font-size: 10px;
  color: #fff;
  text-transform: uppercase;
  margin-left: 5px;
  /*<i class="fa fa-search"></i>
  content: "\f002";*/
}

/* Style the search button hover state */
#submitstyle:hover {
  color: #fff;
  background: 0078ae;
}

@media screen and (min-width: 680px) {
  #submitstyle {
    padding: .4em .7em;
    border: none;
    background: #5A5C60;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    margin-left: 5px;
  }
}
@media screen and (min-width: 800px) {
  #submitstyle {
    padding: .4em .7em;
    border: none;
    background: #5A5C60;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    margin-left: 5px;
  }
}
.searchgraphic.fa {
  /*content: "\25AE";*/
  display: none;
  right: 20px;
  top: 125px;
  z-index: 1;
  border: 0;
  background: transparent;
  font-size: 1.4rem;
}

@media screen and (min-width: 680px) {
  .searchgraphic.fa {
    position: absolute;
    display: block;
    right: 5px;
    top: 0;
    padding: 10px;
    z-index: 1;
  }
}
@media screen and (min-width: 800px) {
  .searchgraphic.fa {
    z-index: 1;
  }
}
.searchcontainer {
  background: #fff;
}

.white {
  color: #fff;
}

h5.betamessage {
  color: white;
  background-color: #222222;
  padding-left: 1em;
}
h5.betamessage > a {
  color: white;
}
h5.betamessage > a:hover {
  color: #f47b20;
}
@media screen and (min-width: 800px) {
  h5.betamessage {
    padding-left: 12em;
  }
}

/* ==========================================================================
   Framework (mobile-first)
   ========================================================================== */
body {
  background: #f7f7f7;
  /* Hide horizontal scrollbar for browsers that support media queries */
}
body > .wrap {
  /*@include outer-container;*/
  max-width: 62em;
  margin-left: auto;
  margin-right: auto;
  /*max-width:71.25em; 
  margin-left: 8%;
  margin-right: 8%;*/
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  padding: 0 2%;
  background: #fff;
}
body.full-width {
  background: #fff;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 71.25em) {
  body.full-width > .wrap {
    padding: 0;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (min-width: 335px) {
  body {
    overflow-x: hidden;
  }
}

main {
  max-width: 71.25em;
  margin-left: auto;
  margin-right: auto;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
main:after {
  content: "";
  display: table;
  clear: both;
}
.full-width main {
  max-width: none;
}
main h1:first-of-type {
  margin-top: 0;
}
main section.max-width {
  /*@include outer-container;*/
  max-width: 62em;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 680px) {
  main {
    margin-top: 0;
  }
}
@media screen and (min-width: 71.25em) {
  main > .full-width-wrap {
    background: #efefef;
  }
}
main > .full-width-wrap.triangles {
  background: white url(https://www.strath.ac.uk/ead/back-triangles.gif) center top no-repeat;
}
main > .full-width-wrap.skyline {
  overflow: hidden;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 71.25em) {
  main > .full-width-wrap.skyline {
    background: #0078ae url(https://www.strath.ac.uk/ead/cityscap-blue.gif) center bottom no-repeat;
    background-size: cover;
  }
}
main > .full-width-wrap.primaryblue {
  background: #002b5c;
}
main > .main:after {
  content: "";
  display: table;
  clear: both;
}
main > .main.max-width {
  max-width: 71.25em;
  margin-left: auto;
  margin-right: auto;
}
main > .main.max-width:after {
  content: "";
  display: table;
  clear: both;
}
main > .main > aside {
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 680px) {
  main > .main > aside {
    float: left;
    display: block;
    margin-right: 1.53331%;
    width: 32.31112%;
    margin-right: 0;
  }
  main > .main > aside:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 800px) {
  main > .main > aside {
    float: left;
    display: block;
    margin-right: 1.53331%;
    width: 23.85002%;
    margin-right: 0;
  }
  main > .main > aside:last-child {
    margin-right: 0;
  }
}
main > .main > .sub-nav {
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 680px) {
  main > .main > .sub-nav {
    float: left;
    display: block;
    margin-right: 1.53331%;
    width: 23.85002%;
  }
  main > .main > .sub-nav:last-child {
    margin-right: 0;
  }
}
main > .main > article {
  margin-bottom: 16px;
  background-color: white;
}
main > .main > article:after {
  content: "";
  display: table;
  clear: both;
}
main > .main > article > h1 {
  /* @extend %h2;*/
  font-size: 32px;
  font-size: 2rem;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 680px) {
  main > .main > article > h1 {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
main > .main > article.has-aside {
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 680px) {
  main > .main > article.has-aside {
    float: left;
    display: block;
    margin-right: 1.53331%;
    width: 66.15556%;
  }
  main > .main > article.has-aside:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 800px) {
  main > .main > article.has-aside {
    float: left;
    display: block;
    margin-right: 1.53331%;
    width: 74.61667%;
  }
  main > .main > article.has-aside:last-child {
    margin-right: 0;
  }
}
main > .main > article.has-nav {
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 680px) {
  main > .main > article.has-nav {
    float: left;
    display: block;
    margin-right: 1.53331%;
    width: 74.61667%;
    margin-right: 0;
  }
  main > .main > article.has-nav:last-child {
    margin-right: 0;
  }
}

.row {
  max-width: 71.25em;
  margin-left: auto;
  margin-right: auto;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
.row:after {
  content: "";
  display: table;
  clear: both;
}
.full-width-wrap .row {
  max-width: none;
}
@media screen and (min-width: 500px) {
  .row > *:last-child {
    margin-right: 0;
  }
  .row .quarter {
    float: left;
    display: block;
    margin-right: 1.53331%;
    width: 23.85002%;
  }
  .row .quarter:last-child {
    margin-right: 0;
  }
  .row .third {
    float: left;
    display: block;
    margin-right: 1.53331%;
    width: 32.31112%;
  }
  .row .third:last-child {
    margin-right: 0;
  }
  .row .half {
    float: left;
    display: block;
    margin-right: 1.53331%;
    width: 49.23334%;
  }
  .row .half:last-child {
    margin-right: 0;
  }
  .row .twothirds {
    float: left;
    display: block;
    margin-right: 1.53331%;
    width: 66.15556%;
  }
  .row .twothirds:last-child {
    margin-right: 0;
  }
  .row .threequarters {
    float: left;
    display: block;
    margin-right: 1.53331%;
    width: 74.61667%;
  }
  .row .threequarters:last-child {
    margin-right: 0;
  }
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */
.breadcrumbs {
  clear: both;
}
.breadcrumbs ul {
  background-color: #8d8f93;
  margin: 32px 0 0;
  padding: 0;
}
.breadcrumbs ul li {
  display: inline-block;
  padding: 10px 6.66667px;
  color: #fff;
}
.breadcrumbs ul li:before {
  margin-right: 13.33333px;
  color: #fff;
  content: '>';
  font-family: Alegreya Sans, sans-serif;
}
.breadcrumbs ul li:first-child {
  margin-right: 6.66667px;
  padding: 10px;
  background-color: #000;
}
.breadcrumbs ul li:first-child:before {
  margin-right: 0;
  content: '';
}
.breadcrumbs ul li a {
  color: #fff;
  text-decoration: none;
}
.breadcrumbs ul li a.hover {
  color: gainsboro;
}

.breadcrumbsheader {
  position: relative;
}
.breadcrumbsheader ul {
  margin: 0;
  padding: 0;
}
.breadcrumbsheader ul li {
  display: inline-block;
  padding: 10px 10px 10px 0;
  color: #222222;
  font-size: 16px;
}
.breadcrumbsheader ul li:before {
  margin-right: 13.33333px;
  color: #222222;
  content: '>';
}
.breadcrumbsheader ul li:first-child {
  padding-left: 0;
}
.breadcrumbsheader ul li:first-child:before {
  margin-right: 0;
  content: '';
}
.breadcrumbsheader ul li a {
  color: #222222;
  /*text-decoration: underline;*/
}
.breadcrumbsheader ul li a.hover {
  color: #c1c3c5;
}

@media screen and (max-width: 699px) {
  .breadcrumbsheader ul li {
    padding: 10px 10px 0 0;
  }
}
/* ==========================================================================
   Mobile header menu
   ========================================================================== */
header[role="banner"] {
  position: relative;
  background: #002b5c;
  padding: 0;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
header[role="banner"]:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (min-width: 680px) {
  header[role="banner"] {
    background: #c1c3c5;
    margin-top: 105px;
    border-bottom: 45px solid white;
    margin-bottom: -45px;
  }
}
header[role="banner"] .mainHeader {
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 680px) {
  header[role="banner"] .mainHeader {
    /*@include outer-container;*/
    max-width: 62em;
    margin-right: auto;
    margin-left: auto;
    position: relative;
  }
}
header[role="banner"] .mainHeader > div {
  text-align: center;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
header[role="banner"] .mainHeader > div:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (min-width: 680px) {
  header[role="banner"] .mainHeader > div {
    display: block;
    background: transparent;
    width: 150px;
    float: left;
  }
  header[role="banner"] .mainHeader > div:after {
    content: "";
    display: table;
    clear: both;
  }
}
header[role="banner"] .mainHeader > div a.logo {
  max-width: 50%;
  display: inline-block;
  position: relative;
  z-index: 9999;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 680px) {
  header[role="banner"] .mainHeader > div a.logo {
    display: block;
    float: none;
    max-width: 100%;
  }
  header[role="banner"] .mainHeader > div a.logo:after {
    content: "";
    display: table;
    clear: both;
  }
}
header[role="banner"] .mainHeader > div a.logo h1 {
  margin: 0;
}
header[role="banner"] .mainHeader > div a.logo h1 img.tabLogo {
  display: none;
  max-width: 150px;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 680px) {
  header[role="banner"] .mainHeader > div a.logo h1 img.tabLogo {
    display: block;
    margin-top: -105px;
  }
}
header[role="banner"] .mainHeader > div a.logo h1 img.mobileLogo {
  display: inline;
  max-width: 100%;
  max-height: 40px;
  width: 160px;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 500px) {
  header[role="banner"] .mainHeader > div a.logo h1 img.mobileLogo {
    max-height: 60px;
  }
}
@media screen and (min-width: 680px) {
  header[role="banner"] .mainHeader > div a.logo h1 img.mobileLogo {
    display: none;
  }
}
header[role="banner"] .mainHeader > div a.logo h1 span {
  margin-left: -2000px;
  position: absolute;
}
header[role="banner"] .mainHeader > div nav[role="shortNav"] {
  display: inline-block;
  vertical-align: top;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 680px) {
  header[role="banner"] .mainHeader > div nav[role="shortNav"] {
    display: none;
  }
}
header[role="banner"] .mainHeader > div nav[role="shortNav"].mobileSearch {
  float: right;
}
header[role="banner"] .mainHeader > div nav[role="shortNav"].mobileBars {
  float: left;
}
header[role="banner"] .mainHeader > div nav[role="shortNav"] ul {
  width: 100%;
  margin: 0;
  padding: 0;
}
header[role="banner"] .mainHeader > div nav[role="shortNav"] ul:after {
  content: "";
  display: table;
  clear: both;
}
header[role="banner"] .mainHeader > div nav[role="shortNav"] ul li.mobile {
  font-size: 1.2em;
  width: 50px;
}
header[role="banner"] .mainHeader > div nav[role="shortNav"] ul li.mobile a {
  color: white;
  padding: 12px 15px;
  display: block;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 500px) {
  header[role="banner"] .mainHeader > div nav[role="shortNav"] ul li.mobile a {
    padding: 13px 15px;
  }
}
header[role="banner"] .mainHeader > div nav[role="shortNav"] ul li.mobile a.active {
  background: #0078ae;
}
@media screen and (min-width: 680px) {
  header[role="banner"] .mainHeader > div nav[role="shortNav"] ul li.mobile a {
    color: #73767a;
    padding: 5px;
    background: transparent;
    border-right: 0;
  }
  header[role="banner"] .mainHeader > div nav[role="shortNav"] ul li.mobile a.hover {
    background: transparent;
    color: #d6620b;
  }
}
header[role="banner"] .mainHeader > div nav[role="shortNav"] ul li.mobile:first-of-type a {
  border-right: 0;
}
header[role="banner"] .mainHeader > div nav[role="shortNav"] ul li.mobile.mobileSearch {
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 680px) {
  header[role="banner"] .mainHeader > div nav[role="shortNav"] ul li.mobile.mobileSearch {
    width: 100%;
    clear: both;
  }
  header[role="banner"] .mainHeader > div nav[role="shortNav"] ul li.mobile.mobileSearch a {
    display: inline-block;
    float: right;
    padding: 10px 14.5px;
    background: #efefef;
    color: #222222;
  }
  header[role="banner"] .mainHeader > div nav[role="shortNav"] ul li.mobile.mobileSearch a.hover {
    background: #5d9732;
    color: white;
  }
  header[role="banner"] .mainHeader > div nav[role="shortNav"] ul li.mobile.mobileSearch form {
    display: inline-block !important;
    width: calc(100% - 45px);
  }
  header[role="banner"] .mainHeader > div nav[role="shortNav"] ul li.mobile.mobileSearch form div input {
    width: 100%;
    border: 0;
    padding: 11.6px;
    background: #efefef;
    color: #222222;
  }
}
header[role="banner"] .mainHeader > div nav[role="shortNav"] ul li.mobile.mobile, header[role="banner"] .mainHeader > div nav[role="shortNav"] ul li.mobile .mobile {
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 680px) {
  header[role="banner"] .mainHeader > div nav[role="shortNav"] ul li.mobile.mobile, header[role="banner"] .mainHeader > div nav[role="shortNav"] ul li.mobile .mobile {
    display: none !important;
  }
}
header[role="banner"] .mainHeader > div nav[role="shortNav"] ul li.mobile.desktop, header[role="banner"] .mainHeader > div nav[role="shortNav"] ul li.mobile .desktop {
  display: none;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 680px) {
  header[role="banner"] .mainHeader > div nav[role="shortNav"] ul li.mobile.desktop, header[role="banner"] .mainHeader > div nav[role="shortNav"] ul li.mobile .desktop {
    display: block;
  }
}
header[role="banner"] .mainHeader > div nav[role="shortNav"].active li.mobileSearch {
  background: #0078ae;
}
header[role="banner"] .mainHeader > div nav[role="shortNav"].active li.mobileSearch:after {
  content: "";
  display: table;
  clear: both;
}
header[role="banner"] .mainHeader > div nav[role="shortNav"].active li.mobileSearch form {
  display: block;
  opacity: 1;
}
header[role="banner"] .mainHeader > div nav[role="shortNav"].active li.mobileSearch form div input {
  background: #c1c3c5;
  padding: 10px;
  border: 0;
  font-size: 1.15em;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
header[role="banner"] .mainHeader > div nav[role="shortNav"].active li.mobileSearch form div input:focus, header[role="banner"] .mainHeader > div nav[role="shortNav"].active li.mobileSearch form div input:active {
  background: white;
}
@media screen and (min-width: 680px) {
  header[role="banner"] .mainHeader > div nav[role="shortNav"].active li.mobileSearch form div input {
    width: 100%;
    background: #c1c3c5;
    padding: 11.6px;
    margin-left: 0;
  }
}
header[role="banner"] .mainHeader > div form.mobile-search {
  display: none;
  border-top: 5px solid #0078ae;
}
@media screen and (min-width: 800px) {
  header[role="banner"] .mainHeader > div form.mobile-search {
    display: none !important;
  }
}
header[role="banner"] .mainHeader > div form.mobile-search.active {
  display: block;
}
header[role="banner"] .mainHeader > div form.mobile-search div {
  width: calc(100% - 50px);
  display: inline-block;
}
header[role="banner"] .mainHeader > div form.mobile-search input {
  width: 100%;
  border: 0;
  background: #c1c3c5;
  padding: 15px;
  font-size: 1.2em;
}
header[role="banner"] .mainHeader > div form.mobile-search input.fa {
  width: 50px;
  vertical-align: top;
  line-height: 1.2;
}
header[role="banner"] nav[role=navigation] {
  z-index: 99;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
header[role="banner"] nav[role=navigation]:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (min-width: 680px) {
  header[role="banner"] nav[role=navigation] {
    width: calc(100% - 150px);
    position: relative;
    max-width: 71.25em;
    margin-left: auto;
    margin-right: auto;
    float: right;
  }
  header[role="banner"] nav[role=navigation]:after {
    content: "";
    display: table;
    clear: both;
  }
}
header[role="banner"] nav[role=navigation] > ul {
  margin: 0;
  padding: 0;
  background: #222222;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
header[role="banner"] nav[role=navigation] > ul:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (min-width: 680px) {
  header[role="banner"] nav[role=navigation] > ul {
    background: transparent;
  }
}
header[role="banner"] nav[role=navigation] > ul > li {
  display: none;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
header[role="banner"] nav[role=navigation] > ul > li .desktop {
  display: none;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 680px) {
  header[role="banner"] nav[role=navigation] > ul > li .desktop {
    display: block;
  }
}
header[role="banner"] nav[role=navigation] > ul > li.mobile, header[role="banner"] nav[role=navigation] > ul > li .mobile {
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 680px) {
  header[role="banner"] nav[role=navigation] > ul > li.mobile, header[role="banner"] nav[role=navigation] > ul > li .mobile {
    display: none !important;
  }
}
@media screen and (min-width: 680px) {
  header[role="banner"] nav[role=navigation] > ul > li {
    width: 33.33%;
    float: left;
    height: 45px;
  }
  header[role="banner"] nav[role=navigation] > ul > li:nth-of-type(2) {
    background: #8d8f93;
  }
  header[role="banner"] nav[role=navigation] > ul > li:nth-of-type(4) {
    background: #73767a;
  }
  header[role="banner"] nav[role=navigation] > ul > li:nth-of-type(6) {
    background: #5a5c60;
  }
}
header[role="banner"] nav[role=navigation] > ul > li > a {
  border-bottom: 1px solid #c1c3c5;
}
header[role="banner"] nav[role=navigation] > ul > li a {
  width: 100%;
  display: block;
  font-size: 1.2em;
  padding: 8px 12px;
  color: white;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 680px) {
  header[role="banner"] nav[role=navigation] > ul > li a {
    text-align: center;
    border-bottom: 0;
    font-size: 1.2rem;
    padding: 10px 12px;
  }
}
@media screen and (min-width: 800px) {
  header[role="banner"] nav[role=navigation] > ul > li a {
    font-size: 1.3rem;
    padding: 8px 12px;
  }
}
header[role="banner"] nav[role=navigation] > ul > li a i {
  float: right;
  display: block;
  /* ch was none*/
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
  /*ch show for tablets*/
}
@media screen and (min-width: 680px) {
  header[role="banner"] nav[role=navigation] > ul > li a i {
    display: none;
  }
}
header[role="banner"] nav[role=navigation] > ul > li a i.active {
  display: block;
}
header[role="banner"] nav[role=navigation] > ul > li a span {
  font-size: 10px;
  display: block;
}
header[role="banner"] nav[role=navigation] > ul > li > section {
  display: none;
  padding: 10px;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 680px) {
  header[role="banner"] nav[role=navigation] > ul > li > section {
    width: calc(100% + 150px);
    position: absolute;
    top: 45px;
    left: 0;
    margin-left: -150px;
  }
  header[role="banner"] nav[role=navigation] > ul > li > section.hover {
    display: block;
  }
}
header[role="banner"] nav[role=navigation] > ul > li > section div {
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
header[role="banner"] nav[role=navigation] > ul > li > section div h2 {
  color: white;
  font-size: 2em;
  line-height: 2em;
  padding: 0;
}
header[role="banner"] nav[role=navigation] > ul > li > section div form select {
  width: 100%;
  margin: 5px 0;
  padding: 5px 0;
}
header[role="banner"] nav[role=navigation] > ul > li > section div form input {
  width: 100%;
  margin: 5px 0;
  font-size: 1.2em;
}
header[role="banner"] nav[role=navigation] > ul > li > section div form button {
  width: 100%;
  margin: 5px 0;
}
header[role="banner"] nav[role=navigation] > ul > li > section div form label {
  color: white;
}
header[role="banner"] nav[role=navigation] > ul > li > section div form fieldset legend {
  color: white;
}
header[role="banner"] nav[role=navigation] > ul > li > section div form fieldset input {
  display: none;
}
header[role="banner"] nav[role=navigation] > ul > li > section div form fieldset label {
  padding: 5px;
  background: white;
  color: #222222;
  display: block;
}
header[role="banner"] nav[role=navigation] > ul > li > section div form fieldset label i {
  float: right;
}
header[role="banner"] nav[role=navigation] > ul > li > section div form fieldset label.active {
  background: #0078ae;
  color: white;
}
header[role="banner"] nav[role=navigation] > ul > li > section div ul {
  border-top: 0;
  padding-left: 0;
}
header[role="banner"] nav[role=navigation] > ul > li > section div ul li {
  display: block;
  border-bottom: 1px solid #73767a;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 680px) {
  header[role="banner"] nav[role=navigation] > ul > li > section div ul li {
    border-bottom: 0;
  }
  header[role="banner"] nav[role=navigation] > ul > li > section div ul li a {
    text-align: left;
    display: inline-block;
    padding: 8px 0;
  }
  header[role="banner"] nav[role=navigation] > ul > li > section div ul li a.hover {
    color: #f47b20;
  }
}
header[role="banner"] nav[role=navigation] > ul > li > section div ul li a {
  font-size: 1em;
}
header[role="banner"] nav[role=navigation] > ul > li > section div ul li a img {
  display: none;
  padding: 2px;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 680px) {
  header[role="banner"] nav[role=navigation] > ul > li > section div ul li a img {
    display: block;
  }
}
header[role="banner"] nav[role=navigation] > ul > li > section div ul li a p {
  margin: 0;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 680px) {
  header[role="banner"] nav[role=navigation] > ul > li > section div ul li a p {
    height: 35px;
  }
}
header[role="banner"] nav[role=navigation] > ul > li > section div ul li:last-of-type {
  border-bottom: 0;
}
@media screen and (min-width: 680px) {
  header[role="banner"] nav[role=navigation] > ul > li > section div.twoOfFour {
    float: left;
    margin-left: 0;
    width: 48%;
  }
  header[role="banner"] nav[role=navigation] > ul > li > section div.twoOfFour ul {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
  header[role="banner"] nav[role=navigation] > ul > li > section div.fourOfFour {
    float: left;
    margin-left: 0;
    width: 100%;
  }
  header[role="banner"] nav[role=navigation] > ul > li > section div.fourOfFour ul {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
  header[role="banner"] nav[role=navigation] > ul > li > section div.oneOfFour {
    float: left;
    margin-left: 2%;
    width: 48%;
  }
}
@media screen and (min-width: 800px) {
  header[role="banner"] nav[role=navigation] > ul > li > section div.twoOfFour {
    width: 48%;
  }
  header[role="banner"] nav[role=navigation] > ul > li > section div.twoOfFour ul {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
  header[role="banner"] nav[role=navigation] > ul > li > section div.fourOfFour {
    width: 100%;
  }
  header[role="banner"] nav[role=navigation] > ul > li > section div.fourOfFour ul {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
  header[role="banner"] nav[role=navigation] > ul > li > section div.oneOfFour {
    width: 23%;
  }
}
header[role="banner"] nav[role=navigation] > ul > li > section section.blocks {
  padding: 0;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
header[role="banner"] nav[role=navigation] > ul > li > section section.blocks:after {
  content: "";
  display: table;
  clear: both;
}
header[role="banner"] nav[role=navigation] > ul > li > section section.blocks a {
  text-align: center;
  padding: 10px;
  margin-bottom: 10px;
  box-shadow: 0 0 0 2px #fff inset;
  margin-right: 10px;
  width: calc(50% - 5px);
  float: left;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 680px) {
  header[role="banner"] nav[role=navigation] > ul > li > section section.blocks a {
    font-size: 1.5em;
  }
}
header[role="banner"] nav[role=navigation] > ul > li > section section.blocks a.red {
  background: #ee3224;
  border: 2px solid #ee3224;
}
header[role="banner"] nav[role=navigation] > ul > li > section section.blocks a.red.hover {
  background: #d6620b;
  border: 2px solid #d6620b;
}
header[role="banner"] nav[role=navigation] > ul > li > section section.blocks a.orange {
  background: #f47b20;
  border: 2px solid #f47b20;
}
header[role="banner"] nav[role=navigation] > ul > li > section section.blocks a.orange.hover {
  background: #d6620b;
  border: 2px solid #d6620b;
}
header[role="banner"] nav[role=navigation] > ul > li > section section.blocks a.green {
  background: #5d9732;
  border: 2px solid #5d9732;
}
header[role="banner"] nav[role=navigation] > ul > li > section section.blocks a.green.hover {
  background: #d6620b;
  border: 2px solid #d6620b;
}
header[role="banner"] nav[role=navigation] > ul > li > section section.blocks a.blue {
  background: #0078ae;
  border: 2px solid #0078ae;
}
header[role="banner"] nav[role=navigation] > ul > li > section section.blocks a.blue.hover {
  background: #d6620b;
  border: 2px solid #d6620b;
}
header[role="banner"] nav[role=navigation] > ul > li > section section.blocks a.primaryblue {
  background: #002b5c;
  border: 2px solid #002b5c;
}
header[role="banner"] nav[role=navigation] > ul > li > section section.blocks a.primaryblue.hover {
  background: #d6620b;
  border: 2px solid #d6620b;
}
header[role="banner"] nav[role=navigation] > ul > li > section section.blocks a:nth-of-type(2n) {
  margin-right: 0;
}
@media screen and (min-width: 800px) {
  header[role="banner"] nav[role=navigation] > ul > li > section section.blocks a {
    width: 100%;
    margin-right: 0;
  }
}
header[role="banner"] nav[role=navigation] > ul > li > section section.blocks a.fullBlock {
  width: 100%;
  margin-right: 0;
}
@media screen and (min-width: 680px) {
  header[role="banner"] nav[role=navigation] > ul > li > section section.blocks {
    display: block;
    width: 100%;
    margin-left: 0;
    float: right;
  }
}
@media screen and (min-width: 800px) {
  header[role="banner"] nav[role=navigation] > ul > li > section section.blocks {
    display: block;
    width: 23%;
    margin-left: 2%;
    float: right;
  }
}
header[role="banner"] nav[role=navigation] > ul > li.active {
  display: block;
  border-top: 5px solid #0078ae;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
header[role="banner"] nav[role=navigation] > ul > li.active > a {
  border: 0;
  background: #222222;
}
header[role="banner"] nav[role=navigation] > ul > li.active section {
  display: block;
  background: #222222;
}
@media screen and (min-width: 680px) {
  header[role="banner"] nav[role=navigation] > ul > li.active {
    border-top: 0;
  }
}
header[role="banner"] nav[role=navigation] > ul > li:last-of-type a {
  border-bottom: 0;
}
header[role="banner"] nav[role=navigation] > ul.active {
  border-top: 5px solid #0078ae;
  margin-bottom: 5px;
}
header[role="banner"] nav[role=navigation] > ul.active li {
  display: block;
}
header[role="banner"] nav[role=navigation] > ul.menu li {
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 680px) {
  header[role="banner"] nav[role=navigation] > ul.menu li {
    display: block;
  }
}
header[role="banner"] nav[role=navigation] .close-header {
  display: none;
}
header[role="banner"] .header-search-page-save {
  display: block;
  right: 0;
  z-index: 999;
  width: 100%;
  text-align: right;
  left: 0;
  margin: auto;
}
@media screen and (min-width: 680px) {
  header[role="banner"] .header-search-page-save {
    max-width: 62em;
    position: absolute;
    top: -72px;
    height: 72px;
  }
}
header[role="banner"] .header-search-page-save .header-search {
  display: none;
  position: relative;
  margin-right: 2px;
  vertical-align: top;
}
@media screen and (min-width: 680px) {
  header[role="banner"] .header-search-page-save .header-search {
    display: inline-block;
  }
}
header[role="banner"] .header-search-page-save .header-search form input.searchbox {
  width: 300px;
}

/* CSS Document */
/* ==========================================================================
   Atlas 
   ========================================================================== */
html {
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: white;
}

body {
  -ms-touch-action: manipulation;
}

h1, h2, h3, h4, h5, h6 {
  color: #222222;
  font-family: Alegreya Sans, sans-serif;
  line-height: 1.2;
  margin: 0.5em 0;
}

h1 {
  font-size: 2.75rem;
}

h3 a {
  color: #0078ae;
}

/*form {
  fieldset{ margin-top: $padding; border-bottom: 1px solid $lightgrey; border-top: 1px solid $lightgrey; width: 100%;  padding: $padding/2 0;
    input, label, legend, textarea  { display: block; }
    legend { font-weight: 600; padding-right: $padding; }
    label { margin-top: $padding/2; } 
    input, textarea { width: 100%; color: #222222; font-size: 0.9375rem; min-height: inherit; padding: 0.65em 35px 0.6em 0.7em; background: $lightgrey; border: 0;
    @include respond-min($tablet) { max-width: 600px; }
    }
    label[type="checkbox-inline"] { display: inline; width: auto; }
    input[type="checkbox"] { display: inline; width: auto; margin-right: $padding; background: $lightgrey; border: 0; background-image: none;}
    input[type="button"], input[type="reset"], input[type="submit"],  { padding: $padding/2; display: inline; width: auto; background: $green; font-size: 1.6em; border: 0; color: #fff; line-height: 2em; 
      &.hover /*:hover*/
/*{ background: $orange; } */
  /*}
}
input[type="submit"], input[type="button"] { padding: $padding/2; display: inline; width: auto; background: $green; font-size: 1.6em; border: 0; color: #fff; 
    &.hover /*:hover*/
/*{ background: $orange; } */
    /*}
}*/
img {
  width: 100%;
}

.bigLink a {
  padding: 10px;
  display: block;
  background: #efefef;
}
.bigLink a:after {
  content: "";
  display: table;
  clear: both;
}
.bigLink a.hover {
  background: #f47b20;
  color: white;
}

.image-auto img {
  width: auto;
}

/*  Links and hover states  */
a {
  color: #0078ae;
  text-decoration: underline;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, ul a, li a {
  text-decoration: none;
}
h1 ul a, h1 li a, h2 ul a, h2 li a, h3 ul a, h3 li a, h4 ul a, h4 li a, h5 ul a, h5 li a, h6 ul a, h6 li a, ul ul a, ul li a, li ul a, li li a {
  text-decoration: unerline;
}

#key-aside > button {
  width: 100%;
}

button {
  display: inline;
  width: auto;
  background: #5d9732;
  font-size: 1.6em;
  border: 0;
  color: #fff;
  line-height: 2em;
  margin-bottom: 10px;
  padding: 0 20px;
}
button a {
  color: white;
  text-decoration: none;
}
button a.hover {
  color: white;
}
button.primaryblue {
  background: #002b5c;
}
button.blue {
  background: #0078ae;
}
button.orange {
  background: #f47b20;
}
button.green {
  background: #5d9732;
}
button.red {
  background: #ee3224;
}
button.lightgrey {
  background: gainsboro;
}
button.darkgrey {
  background: #222222;
}

input[disabled] {
  background: #efefef;
  border: 0;
}

#unistats-widget-frame {
  display: none;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 800px) {
  #unistats-widget-frame {
    display: block;
  }
}

#skipLink {
  position: absolute;
  top: -1000px;
}
#skipLink:focus {
  top: 0px;
}

.accessibility *:focus *, .accessibility *:focus {
  outline: #0099FF dotted 1px !important;
  background-color: yellow !important;
  color: black !important;
}

/* ==========================================================================
   Forms   ---
   ========================================================================== */
form#formalpha {
  background: #002b5c;
  /*-moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;*/
  counter-reset: fieldsets;
  padding: 20px 20px 80px 20px;
  width: 100%;
}

form#formalpha fieldset {
  border: none;
  margin-bottom: 10px;
}

form#formalpha fieldset:last-of-type {
  margin-bottom: 0;
}

form#formalpha legend {
  color: white;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 10px;
  text-shadow: 0 1px 1px #c0d576;
}

form#formalpha > fieldset > legend:before {
  content: "Step " counter(fieldsets) ": ";
  counter-increment: fieldsets;
}

/*form#formalpha fieldset fieldset legend {
	color: #111111;
	font-size: $padding;
	font-weight: normal;
	padding-bottom: 0;
}*/
form#formalpha ol li {
  background: #222222;
  background: rgba(255, 255, 255, 0.1);
  border-color: #e3ebc3;
  border-color: rgba(255, 255, 255, 0.3);
  border-style: solid;
  border-width: 2px;
  /*-moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;*/
  line-height: 30px;
  list-style: none;
  padding: 5px 10px;
  margin-bottom: 2px;
}

form#formalpha ol ol li {
  background: none;
  border: none;
  float: left;
}

form#formalpha label {
  float: left;
  font-size: 20px;
  width: 30%;
  color: white;
}

form#formalpha fieldset fieldset label {
  background: none no-repeat left 50%;
  line-height: 20px;
  padding: 0 0 0 30px;
  width: 30%;
}

form#formalpha fieldset fieldset label:hover {
  cursor: pointer;
}

form#formalpha input:not([type=checkbox]), form#form textarea {
  background: #ffffff;
  border: none;
  /*-moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;*/
  outline: none;
  padding: 5px;
  width: 70%;
  margin: 10px 0;
}

form#formalpha input:not([type=submit]):focus, form#form textarea:focus {
  background: #efefef;
}

form#formalpha input[type=checkbox] {
  float: left;
  margin-right: 10px;
  margin-top: 10px;
  margin: 10px 20px 0 10px;
}

form#formalpha fieldset p, form#formalpha fieldset ol li {
  color: white;
  font-size: 20px;
}

form#formalpha > fieldset > ol > li > textarea {
  width: 70%;
}

form#formalpha button {
  float: right;
}

form#formalpha input[type=checkbox] {
  transform: scale(2);
  padding: 10px;
}

form#formalpha fieldset {
  font-size: 20px;
  color: white;
}

/* =========================================*/
form#formalpha {
  margin-bottom: 16px;
  /* CH */
}
form#formalpha img {
  /* CH img definition */
  float: left;
  padding: 0.2em 1em 1em 1em;
}
form#formalpha h1 {
  padding-bottom: .5em;
  border-bottom: 1px solid gainsboro;
}
form#formalpha img {
  float: left;
  padding: 0.2em 1em 1em 1em;
  width: auto;
}
form#formalpha form {
  background-color: #efefef;
  padding: 20px;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
form#formalpha form input, form#formalpha form button {
  margin: 3px 0;
}
form#formalpha form input, form#formalpha form select, form#formalpha form textarea {
  float: right;
  width: 65%;
  /* padding: $padding/2.2; */
  /* margin-right: $padding/2; */
}
form#formalpha form fieldset {
  border: 1px solid #c0c0c0;
  box-shadow: 1px 1px 5px #ccc;
  margin: 5px;
  padding: 5px;
}
form#formalpha form button {
  color: white;
  font-size: 1em;
  line-height: 2.5em;
  width: 100%;
  /*margin:0;
  text-transform: uppercase;
  text-decoration: none;
  padding: $padding/2;
  border: none;*/
}
form#formalpha form button:after {
  content: '>';
  padding-left: 5%;
}
@media screen and (min-width: 680px) {
  form#formalpha form input, form#formalpha form select, form#formalpha form textarea {
    width: 65%;
  }
  form#formalpha form input.buttonsearch {
    width: auto;
    /*padding: 0;*/
    /* If we're outputting for a fixed media query set */
    /* Otherwise, output it using a regular media query */
  }
  form#formalpha form input.buttonsearch.hover {
    background: #f47b20;
  }
}
@media screen and (min-width: 680px) and (min-width: 680px) {
  form#formalpha form input.buttonsearch {
    width: 25%;
  }
}

.select-wrapper {
  position: relative;
}
.select-wrapper select {
  background: #efefef;
  border: 0;
  padding: 8px;
  margin-bottom: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.select-wrapper select:ms-expand {
  display: none;
}
.select-wrapper:before {
  display: block;
  content: '\f078';
  font: normal normal normal 14px/1 FontAwesome;
  padding: 10px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

/* ==========================================================================
   Forms Grey  --- 
   ========================================================================== */
form#formalphagrey {
  background: #c1c3c5;
  /*-moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;*/
  counter-reset: fieldsets;
  padding: 20px 20px 80px 20px;
  width: 100%;
}
form#formalphagrey > fieldset {
  border: none;
  margin-bottom: 10px;
}
form#formalphagrey > fieldset > fieldset:last-of-type {
  margin-bottom: 0;
}
form#formalphagrey > fieldset > legend {
  /*color: $white;*/
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 10px;
}
form#formalphagrey > fieldset legend:before {
  content: "Step " counter(fieldsets) ": ";
  counter-increment: fieldsets;
}
form#formalphagrey > fieldset > ol > li {
  list-style-type: none;
  background: #222222;
  background: rgba(255, 255, 255, 0.1);
  border-color: #e3ebc3;
  border-color: rgba(255, 255, 255, 0.3);
  border-style: solid;
  border-width: 2px;
  padding: 25px 10px;
  margin-bottom: 2px;
}
@media screen and (max-width: 600px) {
  form#formalphagrey > fieldset > ol > li {
    padding: 0 0 80px 10px;
  }
}
form#formalphagrey > fieldset > ol > li > select, form#formalphagrey > fieldset > ol > li input {
  width: 22%;
  float: left;
}
@media screen and (max-width: 600px) {
  form#formalphagrey > fieldset > ol > li > select, form#formalphagrey > fieldset > ol > li input {
    width: 100%;
  }
}
form#formalphagrey > fieldset > ol > li > label {
  float: left;
  width: 77%;
}
@media screen and (max-width: 600px) {
  form#formalphagrey > fieldset > ol > li > label {
    float: none;
    width: 100%;
    padding: 10px;
  }
}
form#formalphagrey > fieldset > ol > li > .small {
  font-size: 16px;
  font-weight: bold;
  color: #222222;
  padding-top: 30px;
}
form#formalphagrey > ol ol li {
  background: none;
  border: none;
  float: left;
}
form#formalphagrey > fieldset fieldset label {
  background: none no-repeat left 50%;
  line-height: 20px;
  padding: 0 0 0 30px;
  width: 70%;
}
form#formalphagrey > fieldset fieldset label:hover {
  cursor: pointer;
}
form#formalphagrey > input:not([type=checkbox]), form#formalphagrey form#form textarea {
  background: #ffffff;
  border: none;
  /*-moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;*/
  outline: none;
  padding: 5px;
  width: 70%;
  margin: 10px 0;
}
form#formalphagrey > input:not([type=submit]):focus, form#formalphagrey form#form textarea:focus {
  background: #efefef;
}
form#formalphagrey > input[type=checkbox] {
  float: left;
  margin-right: 10px;
  margin-top: 10px;
  margin: 10px 20px 0 10px;
}
form#formalphagrey > fieldset p, form#formalphagrey form#formalpha fieldset ol li {
  /*color: $white;*/
  font-size: 20px;
}
form#formalphagrey > fieldset > ol > li > textarea {
  width: 70%;
}
form#formalphagrey button {
  float: right;
}
form#formalphagrey > input[type=checkbox] {
  transform: scale(2);
  padding: 10px;
}
form#formalphagrey > fieldset {
  font-size: 20px;
  /*color: $white;*/
}

footer#footer2017 {
  padding: 0;
  background: white;
  font-family: 'Alegreya Sans', sans-serif;
}
footer#footer2017 .grid-wrap {
  max-width: 71.25em;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 62em;
}
footer#footer2017 .grid-wrap:after {
  content: "";
  display: table;
  clear: both;
}
footer#footer2017 h2 {
  font-weight: bold;
  font-size: 2.1em;
  border-bottom: 0px;
  color: #222222;
}
footer#footer2017 .footer-column {
  padding: 0 10px;
  border-left: 4px solid #0078ae;
  margin-bottom: 40px;
  box-sizing: border-box;
}
@media screen and (min-width: 680px) {
  footer#footer2017 .footer-column {
    float: left;
    display: block;
    margin-right: 1.53331%;
    width: 49.23334%;
  }
  footer#footer2017 .footer-column:last-child {
    margin-right: 0;
  }
  footer#footer2017 .footer-column:nth-child(2n) {
    margin-right: 0;
  }
  footer#footer2017 .footer-column:nth-child(2n+1) {
    clear: left;
  }
}
@media screen and (min-width: 800px) {
  footer#footer2017 .footer-column {
    float: left;
    display: block;
    margin-right: 1.53331%;
    width: 23.85002%;
    margin-bottom: 20px;
  }
  footer#footer2017 .footer-column:last-child {
    margin-right: 0;
  }
  footer#footer2017 .footer-column:nth-child(2n) {
    margin-right: 1.53331%;
  }
  footer#footer2017 .footer-column:nth-child(2n+1) {
    clear: none;
  }
  footer#footer2017 .footer-column:nth-child(4n) {
    margin-right: 0;
  }
  footer#footer2017 .footer-column:nth-child(4n+1) {
    clear: left;
  }
}
footer#footer2017 .footer-column h3 {
  font-weight: bold;
  margin-top: 0;
  font-size: 1.4em;
}
footer#footer2017 .footer-column h3 a {
  color: #222222;
  text-decoration: none;
  -webkit-transition: color 0.1s ease-in-out;
  -moz-transition: color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out;
}
footer#footer2017 .footer-column h3 a:hover {
  color: rgba(34, 34, 34, 0.8);
}
footer#footer2017 .footer-column ul {
  padding: 0;
  margin-bottom: 0;
}
footer#footer2017 .footer-column ul li {
  list-style-type: none;
  font-size: 0.9em;
  margin-bottom: 5px;
}
footer#footer2017 .footer-column ul li a {
  color: #222222;
  text-decoration: none;
}
footer#footer2017 .footer-column ul li:last-of-type {
  margin-bottom: 0;
}
footer#footer2017 .footer-column ul.social-icons li {
  display: inline-block;
}
footer#footer2017 .faculties-header {
  padding-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
}
footer#footer2017 .faculties {
  padding: 20px 10px;
  padding-top: 0;
}
footer#footer2017 .faculties .footer-column ul li a {
  color: #222222;
  text-decoration: none;
}
footer#footer2017 .faculties .footer-column ul li a:hover {
  color: rgba(34, 34, 34, 0.8);
}
footer#footer2017 .services {
  background-color: #222222;
}
footer#footer2017 .services .grid-wrap {
  padding: 40px 10px;
  padding-bottom: 0;
}
footer#footer2017 .services h3 {
  color: white;
}
footer#footer2017 .services h3 a {
  color: inherit;
  -webkit-transition: color 0.1s ease-in-out;
  -moz-transition: color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out;
}
footer#footer2017 .services h3 a:hover {
  color: rgba(255, 255, 255, 0.8);
}
footer#footer2017 .services .footer-column ul {
  margin-bottom: 20px;
}
footer#footer2017 .services .footer-column ul:last-of-type {
  margin-bottom: 0;
}
footer#footer2017 .services .footer-column ul a {
  color: #c1c3c5;
  -webkit-transition: color 0.1s ease-in-out;
  -moz-transition: color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out;
}
footer#footer2017 .services .footer-column ul a:hover {
  color: rgba(193, 195, 197, 0.8);
}
footer#footer2017 .services .footer-column ul a li {
  font-size: 1.8em;
}
footer#footer2017 .services hr {
  clear: both;
  border-color: #444;
}
footer#footer2017 .services p {
  color: #c1c3c5;
  font-size: 0.9em;
}

.footer-breadcrumb {
  background: #c1c3c5;
}
.footer-breadcrumb ul {
  width: 100%;
  max-width: calc(62em + 4%);
  margin: auto;
}

/* ==========================================================================
   Page summary
   Used in page
   ========================================================================== */
.page-summary {
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
  /*margin-bottom: -30px;*/
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
  /***** begin CH : Qualification is the same for all media sizes*/
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
.page-summary:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (min-width: 500px) {
  .page-summary > h1, .page-summary > p {
    /*width: 50%;display:block; float: left; margin-right: 5%;*/
  }
}
.page-summary span.qualification {
  display: block;
  width: 100%;
  font-size: 0.5em;
  line-height: 1em;
}
.page-summary h1 + p {
  margin-top: -.5em;
  padding-top: .5em;
  border-top: 1px solid gainsboro;
}
.page-summary div.key-facts {
  top: 0;
  right: 0;
  width: 100%;
  background: #EFEFEF;
  margin-top: 10px;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
.page-summary div.key-facts h2 {
  background: none repeat scroll 0 0 #002B5C;
  border-bottom: 1px solid #FFFFFF;
  color: #FFFFFF !important;
  margin: 0;
  padding: 10px 10px 10px;
  font-size: 1.5em;
}
.page-summary div.key-facts .related-link-group ul > li:before {
  color: #F47B20;
}
.page-summary div.key-facts .related-link-group a.more-keyFacts {
  display: none;
}
@media screen and (min-width: 800px) {
  .page-summary div.key-facts {
    top: 0px;
    right: 0;
    position: absolute;
    width: 23.85%;
    border: 1.25% solid #000;
    height: 100%;
    background: #EFEFEF;
    margin-top: 0;
  }
  .page-summary div.key-facts h2 {
    background: none repeat scroll 0 0 #002B5C;
    border-bottom: 1px solid #FFFFFF;
    color: #FFFFFF !important;
    margin: 0;
    padding: 60px 10px 10px;
  }
  .page-summary div.key-facts .related-link-group ul > li:before {
    color: #F47B20;
  }
  .page-summary div.key-facts .related-link-group a.more-keyFacts {
    text-align: center;
    display: block;
    position: absolute;
    bottom: 0;
    height: 40px;
    padding: 20px 0 0 0;
    width: 100%;
    background: -moz-linear-gradient(rgba(239, 239, 239, 0) 0%, #efefef 50%);
    background: -webkit-linear-gradient(rgba(239, 239, 239, 0) 0%, #efefef 50%);
    /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(rgba(239, 239, 239, 0) 0%, #efefef 50%);
    /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(rgba(239, 239, 239, 0) 0%, #efefef 50%);
    /* For Firefox 3.6 to 15 */
    background: linear-gradient(to rgba(239, 239, 239, 0) 0%, #efefef 50%);
    /* Standard syntax */
  }
  .page-summary div.key-facts.expand-keyFacts {
    width: 50%;
  }
}
.page-summary p a.hover {
  color: #f47b20;
}
@media screen and (min-width: 800px) {
  .page-summary {
    margin-bottom: 16px;
  }
  .page-summary h1 {
    margin-top: 0;
  }
  .page-summary p {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.page-summary.has-img {
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
.page-summary.has-img h1 {
  width: 100%;
  margin: -1px 0 0;
}
.page-summary.has-img h1 span.qualification {
  display: block;
  width: 100%;
  font-size: 0.5em;
  line-height: 1em;
}
.page-summary.has-img p {
  padding: 0 20px;
}
@media screen and (min-width: 800px) {
  .page-summary.has-img {
    /*CH qual remove below code */
  }
  .page-summary.has-img > .wrap {
    position: relative;
    min-height: 410px;
  }
  .page-summary.has-img h1 {
    position: absolute;
    width: auto;
    bottom: 0;
    left: 0;
    max-width: 75%;
  }
  .page-summary.has-img .qualification {
    display: block;
    width: 100%;
    font-size: 0.5em;
    line-height: 1em;
  }
}
.page-summary img {
  width: 100%;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 800px) {
  .page-summary img {
    top: 0;
    min-width: 100%;
    height: 410px;
    position: absolute;
    left: 57%;
    margin-left: -35.625em;
    width: auto;
  }
}
.page-summary h1 img {
  display: none;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 500px) {
  .page-summary h1 img {
    display: block;
    width: auto;
    height: auto;
    min-width: auto;
    left: 0;
    position: relative;
    float: right;
    max-width: 40%;
    max-height: 66px;
    margin: 0 0 10px 10px;
  }
}
.page-summary.primaryblue h1 {
  padding: 10px;
  background: #002b5c;
  color: white;
}
.page-summary.blue h1 {
  color: white;
  padding: 10px;
  background: #0078ae;
}
.page-summary.green h1 {
  color: white;
  padding: 10px;
  background: #5d9732;
}
.page-summary.red h1 {
  color: white;
  padding: 10px;
  background: #ee3224;
}
.page-summary.orange h1 {
  color: white;
  padding: 10px;
  background: #f47b20;
}
.page-summary .price {
  width: 150px;
  height: 150px;
  padding-top: 30px;
}
.page-summary .price span.priceOnImage {
  font-size: 3em;
}

.page-summary-small {
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
  margin-bottom: -30px;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
.page-summary-small:after {
  content: "";
  display: table;
  clear: both;
}
.page-summary-small > h2 + p {
  margin-top: -.5em;
  padding-top: .5em;
  border-top: 1px solid gainsboro;
}
.page-summary-small p a.hover {
  color: #f47b20;
}
@media screen and (min-width: 800px) {
  .page-summary-small {
    margin-bottom: 16px;
  }
  .page-summary-small h2 {
    margin-top: 0;
  }
  .page-summary-small p {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.page-summary-small.has-img {
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
.page-summary-small.has-img h2 {
  width: 100%;
  margin: -1px 0 0;
  /*@extend %h1-reversed;*/
  background: #ee3224;
  padding: 20px;
  color: #fff;
  display: inline-block;
  margin-top: 200px;
}
.page-summary-small.has-img p {
  padding: 0 20px;
}
.page-summary-small.has-img > h3 {
  padding-top: 20px;
}
.page-summary-small.has-img > hr {
  border: 0;
  width: 50%;
  color: #f00;
  background-color: #ee3224;
  height: 3px;
}
@media screen and (min-width: 800px) {
  .page-summary-small.has-img > .wrap {
    position: relative;
    min-height: 200px;
  }
  .page-summary-small.has-img > h2 {
    position: absolute;
    width: auto;
    bottom: 0;
    left: 0;
    background: #ee3224;
  }
}
.page-summary-small img {
  width: 100%;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 800px) {
  .page-summary-small img {
    top: 0;
    min-width: 100%;
    height: 410px;
    position: absolute;
    left: 50%;
    margin-left: -35.625em;
    width: auto;
  }
}

/* ==========================================================================
   WYSIWYG 
   ========================================================================== */
.wysiwyg, .wysiwyg2 {
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
  /*a {text-decoration: underline;}*/
  /* ==========================================================================
   Table Code in WYSIWYG partial
   ========================================================================== */
  /*tbody tr.rollover td {
  	background: $orange;
  	color: $white;
  }*/
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
  /*
   .left { float:left; padding:$padding/4; }
   .right { float:right; padding:$padding/4; }
   */
}
@media screen and (min-width: 680px) {
  .wysiwyg.centreContent, .wysiwyg2.centreContent {
    float: left;
    display: block;
    margin-right: 1.53331%;
    width: 66.15556%;
    margin: 0 auto;
    float: none;
  }
  .wysiwyg.centreContent:last-child, .wysiwyg2.centreContent:last-child {
    margin-right: 0;
  }
  .wysiwyg.centreContent.has-aside, .wysiwyg2.centreContent.has-aside {
    float: left;
    display: block;
    margin-right: 1.53331%;
    width: 66.15556%;
    margin: 0;
    float: left;
  }
  .wysiwyg.centreContent.has-aside:last-child, .wysiwyg2.centreContent.has-aside:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 800px) {
  .wysiwyg.centreContent, .wysiwyg2.centreContent {
    float: left;
    display: block;
    margin-right: 1.53331%;
    width: 74.61667%;
    margin: 0 auto;
    float: none;
  }
  .wysiwyg.centreContent:last-child, .wysiwyg2.centreContent:last-child {
    margin-right: 0;
  }
  .wysiwyg.centreContent.has-aside, .wysiwyg2.centreContent.has-aside {
    float: left;
    display: block;
    margin-right: 1.53331%;
    width: 74.61667%;
    margin: 0;
    float: left;
  }
  .wysiwyg.centreContent.has-aside:last-child, .wysiwyg2.centreContent.has-aside:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 680px) {
  .wysiwyg.has-aside, .wysiwyg2.has-aside {
    float: left;
    display: block;
    margin-right: 1.53331%;
    width: 66.15556%;
    margin: 0;
    float: left;
  }
  .wysiwyg.has-aside:last-child, .wysiwyg2.has-aside:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 800px) {
  .wysiwyg.has-aside, .wysiwyg2.has-aside {
    float: left;
    display: block;
    margin-right: 1.53331%;
    width: 74.61667%;
    margin: 0;
    float: left;
  }
  .wysiwyg.has-aside:last-child, .wysiwyg2.has-aside:last-child {
    margin-right: 0;
  }
}
.wysiwyg h2, .wysiwyg2 h2 {
  font-family: Alegreya Sans, sans-serif;
}
.wysiwyg h3, .wysiwyg2 h3 {
  /* font-weight: 600; */
}
.wysiwyg h3 a, .wysiwyg2 h3 a {
  color: #0078ae;
}
.wysiwyg h5, .wysiwyg2 h5 {
  font-family: Alegreya Sans, sans-serif;
}
.wysiwyg h6, .wysiwyg2 h6 {
  font-family: Alegreya Sans, sans-serif;
}
.wysiwyg > .intro, .wysiwyg2 > .intro {
  font-weight: 600;
  font-size: 18px;
  font-size: 1.125rem;
}
.wysiwyg > div.intro, .wysiwyg2 > div.intro {
  padding-top: 0;
  padding-bottom: 0;
}
.wysiwyg blockquote, .wysiwyg2 blockquote {
  width: 90%;
  background: #efefef;
  border-left: 6px solid #5d9732;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C" "\201D";
}
.wysiwyg blockquote:before, .wysiwyg2 blockquote:before {
  color: #5d9732;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
.wysiwyg span.breakout-box, .wysiwyg2 span.breakout-box {
  display: block;
  width: 100%;
  background: #f47b20;
  font-family: Alegreya Sans, sans-serif;
  padding: 30px;
  margin-bottom: 20px;
  color: #fff;
  text-align: left;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 500px) {
  .wysiwyg span.breakout-box, .wysiwyg2 span.breakout-box {
    float: left;
    display: block;
    margin-right: 1.53331%;
    width: 49.23334%;
    margin-right: 40px !important;
  }
  .wysiwyg span.breakout-box:last-child, .wysiwyg2 span.breakout-box:last-child {
    margin-right: 0;
  }
}
.wysiwyg .standout-text, .wysiwyg2 .standout-text {
  background: #efefef;
  font-size: 1.2em;
  padding-left: 20px;
  margin: 50px auto;
  border-left: 4px solid #0078ae;
  outline: 20px solid #efefef;
  max-width: 80%;
}
.wysiwyg img, .wysiwyg2 img {
  width: 100%;
  max-width: 100%;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 680px) {
  .wysiwyg img, .wysiwyg2 img {
    width: auto;
  }
}
.wysiwyg img.circle, .wysiwyg2 img.circle {
  padding: 0;
}
@media screen and (min-width: 680px) {
  .wysiwyg .left, .wysiwyg2 .left {
    width: 40%;
    margin: 0 10px 10px 0;
    float: left;
    clear: both;
  }
  .wysiwyg .left.auto, .wysiwyg2 .left.auto {
    width: auto;
  }
  .wysiwyg .right, .wysiwyg2 .right {
    width: 40%;
    margin: 0 0 10px 10px;
    float: right;
    clear: both;
  }
  .wysiwyg .right.auto, .wysiwyg2 .right.auto {
    width: auto;
  }
}
.wysiwyg .clearBoth, .wysiwyg2 .clearBoth {
  clear: both;
}
.wysiwyg .bigLetter, .wysiwyg2 .bigLetter {
  float: left;
  line-height: 1em;
  font-size: 2.8em;
  padding: 0px 5px 0px 0px;
}
.wysiwyg .bigLetter.red, .wysiwyg2 .bigLetter.red {
  color: #ee3224;
}
.wysiwyg .bigLetter.green, .wysiwyg2 .bigLetter.green {
  color: #5d9732;
}
.wysiwyg .bigLetter.blue, .wysiwyg2 .bigLetter.blue {
  color: #0078ae;
}
.wysiwyg .bigLetter.orange, .wysiwyg2 .bigLetter.orange {
  color: #f47b20;
}
.wysiwyg .bigLetter.primaryBlue, .wysiwyg2 .bigLetter.primaryBlue {
  color: #002b5c;
}
.wysiwyg .bigLetter.primaryGrey, .wysiwyg2 .bigLetter.primaryGrey {
  color: #a7a9ac;
}
.wysiwyg .columnsIntro, .wysiwyg2 .columnsIntro {
  -moz-columns: 2;
  -webkit-columns: 2;
  columns: 2;
  text-align: justify;
  font-size: 20px;
  font-weight: 600;
  -webkit-columns-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
}
.wysiwyg .circle, .wysiwyg2 .circle {
  float: left;
  margin: -20px 10px 10px 0;
  line-height: 1em;
  background: #002b5c;
  border-radius: 100%;
  color: white;
  display: block;
  font-size: 1.2em;
  height: 100px;
  line-height: 1em;
  padding: 20px;
  text-align: center;
  width: 100px;
}
.wysiwyg .circle.red, .wysiwyg2 .circle.red {
  background: #ee3224;
}
.wysiwyg .circle.green, .wysiwyg2 .circle.green {
  background: #5d9732;
}
.wysiwyg .circle.blue, .wysiwyg2 .circle.blue {
  background: #0078ae;
}
.wysiwyg .circle.orange, .wysiwyg2 .circle.orange {
  background: #f47b20;
}
.wysiwyg .circle.primaryBlue, .wysiwyg2 .circle.primaryBlue {
  background: #002b5c;
}
.wysiwyg .circle.primaryGrey, .wysiwyg2 .circle.primaryGrey {
  background: #a7a9ac;
}
.wysiwyg .circle img, .wysiwyg2 .circle img {
  border-radius: 100%;
  margin: 0 -10px -10px 0;
  width: 100%;
}
.wysiwyg .tab, .wysiwyg2 .tab {
  float: right;
  margin: 0 0 10px 10px;
  background: #002b5c;
  line-height: 1em;
  color: white;
  display: block;
  font-size: 1.2em;
  line-height: 1em;
  padding: 60px 20px 20px 20px;
  width: 150px;
}
.wysiwyg .tab.red, .wysiwyg2 .tab.red {
  background: #ee3224;
}
.wysiwyg .tab.green, .wysiwyg2 .tab.green {
  background: #5d9732;
}
.wysiwyg .tab.blue, .wysiwyg2 .tab.blue {
  background: #0078ae;
}
.wysiwyg .tab.orange, .wysiwyg2 .tab.orange {
  background: #f47b20;
}
.wysiwyg .tab.primaryBlue, .wysiwyg2 .tab.primaryBlue {
  background: #002b5c;
}
.wysiwyg .tab.primaryGrey, .wysiwyg2 .tab.primaryGrey {
  background: #a7a9ac;
}
.wysiwyg a.call-to-action-link, .wysiwyg2 a.call-to-action-link {
  display: inline-block;
  background-color: #5d9732;
  color: #fff !important;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px;
}
.wysiwyg a.call-to-action-link:after, .wysiwyg2 a.call-to-action-link:after {
  content: '>';
  float: right;
  padding-left: 1em;
}
.wysiwyg a.call-to-action-link.hover, .wysiwyg2 a.call-to-action-link.hover {
  background-color: #f47b20;
}
.wysiwyg .small, .wysiwyg2 .small {
  font-size: 15px;
  font-size: 0.9375rem;
  color: darkgray;
}
.wysiwyg .question, .wysiwyg2 .question {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: Alegreya Sans, sans-serif;
  font-weight: 600;
  margin-bottom: -10px;
}
.wysiwyg ul, .wysiwyg ol, .wysiwyg2 ul, .wysiwyg2 ol {
  margin-left: 0;
  padding: 0;
  list-style-position: inside;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 335px) {
  .wysiwyg ul, .wysiwyg ol, .wysiwyg2 ul, .wysiwyg2 ol {
    margin-left: 20px;
  }
}
@media screen and (min-width: 500px) {
  .wysiwyg ul, .wysiwyg ol, .wysiwyg2 ul, .wysiwyg2 ol {
    margin-left: 20px;
  }
}
.wysiwyg ul:after, .wysiwyg2 ul:after {
  content: "";
  display: table;
  clear: both;
}
.wysiwyg ul li, .wysiwyg2 ul li {
  list-style: none;
  padding-left: 1.2em;
}
.wysiwyg ul li:before, .wysiwyg2 ul li:before {
  display: inline-block;
  text-indent: -1.2em;
  content: '\25A0';
  color: #f47b20;
  /*@include font-size(18px)*/
}
.wysiwyg ul li img, .wysiwyg2 ul li img {
  width: 100%;
}
.wysiwyg ul.two, .wysiwyg2 ul.two {
  margin: 0;
}
.wysiwyg ul.two > li, .wysiwyg2 ul.two > li {
  float: left;
  display: block;
  margin-right: 1.53331%;
  width: 49.23334%;
  padding-left: 0;
  list-style: none;
}
.wysiwyg ul.two > li:last-child, .wysiwyg2 ul.two > li:last-child {
  margin-right: 0;
}
.wysiwyg ul.two > li:before, .wysiwyg2 ul.two > li:before {
  display: inline-block;
  text-indent: 0;
  content: '';
  color: #f47b20;
  /*   @include font-size(18px)*/
}
.wysiwyg ul.two > li:nth-of-type(2n), .wysiwyg2 ul.two > li:nth-of-type(2n) {
  margin: 0;
}
.wysiwyg ul.three, .wysiwyg2 ul.three {
  margin: 0;
}
.wysiwyg ul.three > li, .wysiwyg2 ul.three > li {
  float: left;
  display: block;
  margin-right: 1.53331%;
  width: 32.31112%;
  padding-left: 0;
  list-style: none;
}
.wysiwyg ul.three > li:last-child, .wysiwyg2 ul.three > li:last-child {
  margin-right: 0;
}
.wysiwyg ul.three > li:before, .wysiwyg2 ul.three > li:before {
  display: inline-block;
  text-indent: 0;
  content: '';
  color: #f47b20;
  /*   @include font-size(18px)*/
}
.wysiwyg ul.three > li:nth-of-type(3n), .wysiwyg2 ul.three > li:nth-of-type(3n) {
  margin: 0;
}
.wysiwyg ul.four, .wysiwyg2 ul.four {
  margin: 0;
}
.wysiwyg ul.four > li, .wysiwyg2 ul.four > li {
  float: left;
  display: block;
  margin-right: 1.53331%;
  width: 23.85002%;
  padding-left: 0;
  list-style: none;
}
.wysiwyg ul.four > li:last-child, .wysiwyg2 ul.four > li:last-child {
  margin-right: 0;
}
.wysiwyg ul.four > li:before, .wysiwyg2 ul.four > li:before {
  display: inline-block;
  text-indent: 0;
  content: '';
  color: #f47b20;
  /*   @include font-size(18px)*/
}
.wysiwyg ul.four > li:nth-of-type(4n), .wysiwyg2 ul.four > li:nth-of-type(4n) {
  margin: 0;
}
.wysiwyg ul.five, .wysiwyg2 ul.five {
  margin: 0;
}
.wysiwyg ul.five > li, .wysiwyg2 ul.five > li {
  float: left;
  display: block;
  margin-right: 1.53331%;
  width: 18.77335%;
  padding-left: 0;
  list-style: none;
}
.wysiwyg ul.five > li:last-child, .wysiwyg2 ul.five > li:last-child {
  margin-right: 0;
}
.wysiwyg ul.five > li:before, .wysiwyg2 ul.five > li:before {
  display: inline-block;
  text-indent: 0;
  content: '';
  color: #f47b20;
  /*   @include font-size(18px)*/
}
.wysiwyg ul.five > li:nth-of-type(5n), .wysiwyg2 ul.five > li:nth-of-type(5n) {
  margin: 0;
}
.wysiwyg ul.six, .wysiwyg2 ul.six {
  margin: 0;
}
.wysiwyg ul.six > li, .wysiwyg2 ul.six > li {
  float: left;
  display: block;
  margin-right: 1.53331%;
  width: 15.38891%;
  padding-left: 0;
  list-style: none;
}
.wysiwyg ul.six > li:last-child, .wysiwyg2 ul.six > li:last-child {
  margin-right: 0;
}
.wysiwyg ul.six > li:before, .wysiwyg2 ul.six > li:before {
  display: inline-block;
  text-indent: 0;
  content: '';
  color: #f47b20;
  /*   @include font-size(18px)*/
}
.wysiwyg ul.six > li:nth-of-type(6n), .wysiwyg2 ul.six > li:nth-of-type(6n) {
  margin: 0;
}
.wysiwyg dl dt, .wysiwyg2 dl dt {
  padding-top: .5em;
  border-top: 1px solid gainsboro;
}
.wysiwyg dl dt:first-child, .wysiwyg2 dl dt:first-child {
  border-top: none;
}
.wysiwyg dl dt:first-child > .staff a, .wysiwyg2 dl dt:first-child > .staff a {
  font-size: 1.5em;
  text-decoration: none;
}
.wysiwyg dl dd, .wysiwyg2 dl dd {
  margin: 0;
}
.wysiwyg table, .wysiwyg2 table {
  width: 100%;
  margin-bottom: 20px;
  /*CH*/
  /*CH*/
  /*ch 2px padding*/
}
.wysiwyg table tr, .wysiwyg2 table tr {
  background-color: gainsboro;
  /*CH*/
  /*CH*/
}
.wysiwyg table tr:nth-child(even), .wysiwyg2 table tr:nth-child(even) {
  /*background-color: $midgrey;*/
}
.wysiwyg table tr:nth-child(odd), .wysiwyg2 table tr:nth-child(odd) {
  background-color: gainsboro;
}
.wysiwyg table:nth-child(2n), .wysiwyg2 table:nth-child(2n) {
  background-color: #c3c3c3;
}
.wysiwyg table:nth-child(even), .wysiwyg2 table:nth-child(even) {
  /*background-color: $midgrey;*/
}
.wysiwyg table:nth-child(odd), .wysiwyg2 table:nth-child(odd) {
  background-color: gainsboro;
}
.wysiwyg table th, .wysiwyg table td, .wysiwyg2 table th, .wysiwyg2 table td {
  text-align: left;
  border-collapse: collapse;
  border: 1px #fff solid;
  padding: 10px;
}
@media only screen and (max-width: 800px) {
  .wysiwyg table th, .wysiwyg table td, .wysiwyg2 table th, .wysiwyg2 table td {
    padding: 2px;
  }
}
.wysiwyg table th, .wysiwyg2 table th {
  font-weight: bold;
  font-size: 1.2em;
  color: #fff;
  background-color: #0078ae;
  font-size: 1.2em;
}
.wysiwyg table, .wysiwyg2 table {
  width: auto;
  border-collapse: collapse;
  border: 1px solid #c1c3c5;
}
.wysiwyg tr, .wysiwyg2 tr {
  background-color: offwhite;
  border: 1px solid #c1c3c5;
}
.wysiwyg td, .wysiwyg2 td {
  padding: 1em;
  border: 1px solid #c1c3c5;
  /*line inbetween table rows*/
}
.wysiwyg tr:nth-of-type(odd), .wysiwyg2 tr:nth-of-type(odd) {
  background-color: white;
}
.wysiwyg tr:nth-of-type(even), .wysiwyg2 tr:nth-of-type(even) {
  background-color: #efefef;
}
.wysiwyg th, .wysiwyg2 th {
  background-color: #0078ae;
  /*color: white;*/
  padding: .7em .9em;
  font-size: 1.2em;
}
.wysiwyg td, .wysiwyg th, .wysiwyg2 td, .wysiwyg2 th {
  text-align: left;
}
@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
  .wysiwyg, .wysiwyg2 {
    /* Hide table headers (but not display: none;, for accessibility) 
    tr th {
    	 position: absolute; 
    	top: -9999px;
    	left: -9999px;
    	
    }*/
    /*
    		Label the data
    		
    e.g. ---.bg-image-block { background-image : url('<t4 type="filepath" name="myfilepath" mediaid="628407"/>'); background-position: center; }	
    		
    		
    td:nth-of-type(1):before {
    	content: "Course";
    }
    td:nth-of-type(2):before {
    	content: "Date";
    }
    td:nth-of-type(3):before {
    	content: "Job Title";
    }
    */
  }
  .wysiwyg table, .wysiwyg tbody, .wysiwyg th, .wysiwyg td, .wysiwyg tr, .wysiwyg2 table, .wysiwyg2 tbody, .wysiwyg2 th, .wysiwyg2 td, .wysiwyg2 tr {
    /*display: block;*/
  }
  .wysiwyg tr, .wysiwyg2 tr {
    border-bottom: 20px;
    background-color: #c1c3c5;
  }
  .wysiwyg td, .wysiwyg th, .wysiwyg2 td, .wysiwyg2 th {
    /*border: 1px solid $offwhite; */
    padding: 0;
  }
  .wysiwyg td, .wysiwyg2 td {
    /* Behave  like a "row" */
    padding-left: 50%;
    padding-top: 0;
    padding-bottom: 20px;
    border: 0;
    /*line inbetween table rows*/
  }
  .wysiwyg td:before, .wysiwyg2 td:before {
    /* Now like a table header */
    position: absolute;
    left: 6px;
    width: 35%;
    padding-top: 10px;
    padding-left: 13.33333px;
    font-weight: bold;
  }
  .wysiwyg td:before a, .wysiwyg2 td:before a {
    padding-top: 10px;
  }
}
.wysiwyg iframe, .wysiwyg2 iframe {
  width: 70%;
  height: 300px;
  /* this was added tentatively*/
}
.no-js .wysiwyg iframe, .no-js .wysiwyg2 iframe {
  display: none;
}
@media screen and (min-width: 335px) {
  .wysiwyg, .wysiwyg2 {
    width: auto;
  }
}
@media screen and (min-width: 500px) {
  .wysiwyg, .wysiwyg2 {
    width: auto;
  }
}
@media screen and (min-width: 680px) {
  .wysiwyg, .wysiwyg2 {
    width: auto;
  }
}

article.wysiwyg2 {
  padding-left: 0;
  padding-left: 5px;
  width: 100%;
  float: left;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 335px) {
  article.wysiwyg2 {
    padding-left: 5px;
    width: 100%;
    float: left;
  }
}
@media screen and (min-width: 500px) {
  article.wysiwyg2 {
    max-width: 100%;
    float: left;
    padding-left: 10px;
  }
}
@media screen and (min-width: 680px) {
  article.wysiwyg2 {
    max-width: 68%;
    float: left;
    padding-left: 160px;
  }
}

p.breakout-box {
  display: block;
  width: 100%;
  background: #f47b20;
  font-family: Alegreya Sans, sans-serif;
  padding: 30px;
  margin-bottom: 20px;
  color: #fff;
  text-align: left;
  /* If we're outputting for a fixed media query set */
  /* Otherwise, output it using a regular media query */
}
@media screen and (min-width: 500px) {
  p.breakout-box {
    float: left;
    display: block;
    margin-right: 1.53331%;
    width: 49.23334%;
    margin-right: 40px !important;
  }
  p.breakout-box:last-child {
    margin-right: 0;
  }
}

p.button {
  display: inline;
  width: auto;
  background: #5d9732;
  font-size: 1.6em;
  border: 0;
  color: #fff;
  line-height: 2em;
  margin-bottom: 10px;
  padding: 0 20px;
}

button a {
  color: white;
  text-decoration: none;
}

button a.hover {
  color: white;
}

section > button.button2 {
  color: white;
  text-decoration: none;
  font-size: 1.2em;
  line-height: 1.4em;
  padding: 0 10px;
}

button a.hover {
  color: white;
}

.standouttextblue {
  color: #0078ae;
  font-weight: bold;
  font-size: 1.2em;
  border-top: #0078ae 5px solid;
  border-bottom: #0078ae 2px solid;
  padding: 10px;
  width: auto;
  margin: 13.33333px 0;
}

.standouttextred {
  color: #ee3224;
  font-weight: bold;
  font-size: 1.2em;
  border-top: #ee3224 5px solid;
  border-bottom: #ee3224 2px solid;
  padding: 10px;
  width: auto;
  margin: 13.33333px 0;
}

.standouttextgreen {
  color: #5d9732;
  font-weight: bold;
  font-size: 1.2em;
  border-top: #5d9732 5px solid;
  border-bottom: #5d9732 2px solid;
  padding: 10px;
  width: auto;
  margin: 13.33333px 0;
}

.standouttextcorpblue {
  color: #002b5c;
  font-weight: bold;
  font-size: 1.2em;
  border-top: #002b5c 5px solid;
  border-bottom: #002b5c 2px solid;
  padding: 10px;
  width: auto;
  margin: 13.33333px 0;
}

/* ==========================================================================
  Telephone Directory
   ========================================================================== */
#contentright {
  float: right;
  text-align: right;
}

.wrap {
  position: relative;
}

.breadcrumbsheader ul {
  display: inline-block;
}

#mainbody {
  width: 100%;
  padding-bottom: 2em;
  overflow: auto;
}

#mainbody h1 {
  font-size: 1.6rem;
}
#mainbody h2 {
  font-size: 1.4rem;
  min-height: 0;
}
@media screen and (min-width: 500px) {
  #mainbody h1 {
    font-size: 1.9rem;
  }
  #mainbody h2 {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 680px) {
  #mainbody h1 {
    font-size: 2.2rem;
  }
  #mainbody h2 {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 800px) {
  #mainbody h1 {
    font-size: 2.75rem;
  }
  #mainbody h2 {
    font-size: 2.25rem;
  }
}

.contentdiv {
  position: relative;
  overflow: hidden;
  /*auto;*/
}

.contentdiv {
  padding-right: 0.5em;
  padding-left: 0.5em;
}

button {
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
button:hover {
  background-color: #457125;
}

button[name="Officer"] {
  font-size: 1.4rem;
  font-weight: bold;
  padding: 5px 20px;
  white-space: nowrap;
}

input, textarea {
  background: #efefef;
  border: 0;
  padding: 8px;
  max-width: 600px;
}

#search_form .ui-widget {
  font-family: inherit;
}
#search_form .ui-widget label {
  display: block;
  font-size: 1rem;
}
@media screen and (min-width: 800px) {
  #search_form .ui-widget label {
    width: 20%;
    float: left;
    display: inline;
  }
}
#search_form .ui-widget input {
  background: #efefef;
  border: 0;
  padding: 10px;
  height: auto !important;
  font-family: inherit;
  border-radius: 0;
}
#search_form .ui-widget input#surname {
  max-width: 425px;
  width: 100%;
}
#search_form .ui-widget input#comboBoxInput {
  width: 100%;
}
#search_form .ui-widget a {
  border-radius: 0;
}
#search_form .ui-widget .ui-combobox-toggle {
  border: 0;
  background: #efefef;
  right: 0;
}
#search_form .ui-widget .ui-combobox-toggle:before {
  display: block;
  content: '\f078';
  font: normal normal normal 14px/1 FontAwesome;
  padding: 12px 10px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}
#search_form .ui-widget .ui-combobox {
  width: 100%;
  max-width: 425px;
}
@media screen and (min-width: 800px) {
  #search_form .ui-widget .ui-combobox {
    width: calc(80% - 40px);
  }
}

.results-page.wysiwyg #search_form .ui-widget p {
  margin: 10px 0;
}
.results-page.wysiwyg #search_form .ui-widget p:first-of-type {
  margin-top: 0;
}
.results-page.wysiwyg #search_form .ui-widget p:last-of-type {
  margin-bottom: 0;
}
.results-page.wysiwyg #search_form .form-buttons {
  margin-top: 10px;
}
@media screen and (min-width: 800px) {
  .results-page.wysiwyg #search_form .ui-widget {
    float: left;
    width: calc(100% - 220px);
    display: inline-block;
  }
  .results-page.wysiwyg #search_form .ui-widget p {
    margin-top: 0;
    display: inline-block;
    vertical-align: top;
    width: 49%;
  }
  .results-page.wysiwyg #search_form .ui-widget p label {
    width: 100%;
    margin-top: 5px;
  }
}
@media screen and (min-width: 800px) and (min-width: 1024px) {
  .results-page.wysiwyg #search_form .ui-widget p label {
    margin-top: 10px;
  }
}
@media screen and (min-width: 800px) {
  .results-page.wysiwyg #search_form .ui-widget p input#surname {
    width: calc(100% - 30px);
  }
  .results-page.wysiwyg #search_form .ui-widget p .ui-combobox {
    width: calc(100% - 40px);
  }
  .results-page.wysiwyg #search_form .form-buttons {
    float: right;
    display: inline-block;
    padding-left: 0;
    padding-top: 26px;
    margin-top: 0px;
  }
  .results-page.wysiwyg #search_form .form-buttons button[type='reset'] {
    margin-right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .results-page.wysiwyg #search_form .ui-widget p label {
    width: 120px;
  }
  .results-page.wysiwyg #search_form .ui-widget p input#surname {
    width: calc(100% - 150px);
  }
  .results-page.wysiwyg #search_form .ui-widget p .ui-combobox {
    width: calc(100% - 160px);
  }
  .results-page.wysiwyg #search_form .form-buttons {
    padding-top: 0;
  }
}

@media screen and (min-width: 800px) {
  .form-buttons {
    padding-left: 20%;
  }
}
.form-buttons button {
  font-family: inherit;
  font-size: inherit;
  font-weight: bold;
  padding: 5px 20px;
  margin-right: 5px;
}
.form-buttons button .fa {
  margin-right: 5px;
}
.form-buttons button[type="reset"] {
  background: #ee3224;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.form-buttons button[type="reset"]:hover {
  background: #cf1d10;
}

#emailFormReset {
  background: #ee3224;
}

.lab {
  width: 30%;
  float: left;
}

.inputFld {
  background-color: #ffffff;
  border: 1px solid #969696;
  width: 200px;
}

.p1 {
  margin-left: 100px;
  /*0.5em 10em 0.5em 0em;*/
}

.prompt {
  color: #004166;
  font-size: 1em;
  font-weight: bold;
  white-space: nowrap;
}

th {
  background: none repeat scroll 0% 0% gainsboro;
  /*rgb(242, 242, 242);*/
  border: medium none;
  font-size: 0.9em;
  color: #004166;
}

/*tr.over td { background: rgb(244, 246, 248); } */
/*{ background: #bcd4ec;} */
tr.over td {
  background: #d5d5d5;
}

/*{ background: #bcd4ec;} */
td {
  font-size: 0.8em;
  border: 1px solid whitesmoke;
  word-wrap: break-word;
}

#strathBreadcrumbs {
  float: right;
  clear: both;
  /*    margin: 0.3em 0em 1em 0em;*/
  margin: 0em 0em 0em 0em;
  padding: 0.3em;
  font-size: 0.85em;
  background-color: #004166;
}

#strathBreadcrumbs li {
  display: inline;
  list-style-type: none;
  padding: 0px 12px 0 12px;
  /*background:url(https://ewds.strath.ac.uk/apexassets/whitearrow.gif) no-repeat left center;*/
  background: url(/Teldir/whitearrow.gif) no-repeat left center;
}

#strathBreadcrumbs li#first {
  padding-left: 0.4em;
  background-image: none;
  color: white;
}

#strathBreadcrumbs a {
  color: #ffffff;
  text-decoration: none;
}

#strathBreadcrumbs a:hover, #strathBreadcrumbs li.active a {
  text-decoration: underline;
}

#strathBreadcrumbs li.active a {
  font-weight: bold;
}

#breadcrumb {
  float: right;
  padding: 5px 0px;
  margin-top: 0.2em;
  margin-bottom: 0.2em;
  clear: right;
  /* background-color: rgb(255, 255, 255);*/
  /*    width: 739px; */
  text-align: right;
}

#breadcrumb ul {
  margin: 0px;
  padding: 0px 0px 0px 0px;
}

#breadcrumb li {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  display: inline;
}

#breadcrumb a:link, #breadcrumb a:active, #breadcrumb a:hover, #breadcrumb a:visited {
  color: #67696d;
  /*    color: rgb(167, 169, 172);*/
  text-decoration: none;
}

@media screen and (min-width: 800px) {
  .leftcolumn {
    float: left;
  }
}

@media screen and (min-width: 800px) {
  .rightcolumn {
    float: right;
  }
}

@media only screen and (max-width: 800px) {
  /* Force table to not be like tables anymore */
  .results-page.wysiwyg table,
  .results-page.wysiwyg thead,
  .results-page.wysiwyg tbody,
  .results-page.wysiwyg th,
  .results-page.wysiwyg td,
  .results-page.wysiwyg tr {
    display: block;
  }

  .results-page.wysiwyg table {
    border: 0;
  }

  .results-page.wysiwyg th {
    display: none;
  }

  /* Hide table headers (but not display: none;, for accessibility) */
  .results-page.wysiwyg thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .results-page.wysiwyg tr {
    border: 1px solid #ccc;
  }

  .results-page.wysiwyg td {
    /* Behave  like a "row" */
    position: relative;
    padding-left: 40%;
    white-space: normal;
    text-align: left;
    font-size: 1rem;
  }

  .results-page.wysiwyg td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    padding-left: 0;
    padding-top: 0;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
  }

  /*
  Label the data
  */
  .results-page.wysiwyg td:before {
    content: attr(data-title);
  }
}
#deptMaster, #deptAlt {
  height: 0;
}

.ui-state-default .ui-icon {
  display: none;
}

.wysiwyg table {
  width: 100%;
}
.wysiwyg table th {
  font-size: 1rem;
}
.wysiwyg table tr:nth-child(even) {
  background-color: #efefef;
}
.wysiwyg table tr td {
  font-size: 1em;
}

#emailForm table {
  border: 0;
}
#emailForm table tr {
  background-color: white !important;
  border: 0;
}
#emailForm table tr td {
  font-size: 1em;
  text-align: left;
  padding: 10px 0;
}
@media only screen and (max-width: 800px) {
  #emailForm table tr td {
    display: block;
    padding: 5px 0;
  }
}
