@-webkit-viewport {
  width: device-width; }

@-moz-viewport {
  width: device-width; }

@-ms-viewport {
  width: device-width;
  zoom: 1.0; }

@-o-viewport {
  width: device-width; }

@viewport {
  width: device-width; }

/*=HASHGRID
------------------------------------------------*/
/**
 * Grid
 */
#grid {
  /* Dimensions - same width as your grid with gutters */
  width: 980px;
  z-index: 9999;
  /* Grid (left-aligned)
  position: absolute;
  top: 0;
  left: 0;
  */
  /* Grid (centered) */
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -490px; }

/**
 * Vertical grid lines
 *
 * Set the column width taking the borders into consideration,
 * and use margins to set column gutters.
 */
#grid div.vert {
  width: 60px;
  border: solid darkturquoise;
  border-width: 0 1px;
  margin-right: 20px; }

#grid div.vert.first-line {
  margin-left: 19px; }

/**
 * Horizontal grid lines, defined by your base line height
 *
 * Remember, the CSS properties that define the box model:
 * visible height = height + borders + margins + padding
 */
#grid div.horiz {
  /* 24px line height */
  height: 7px;
  border-bottom: 1px dotted #FF9999;
  margin: 0;
  padding: 0; }

#grid div.horiz:nth-child(3n+3) {
  border-bottom: 1px solid #FF9999; }

body {
  width: 100%;
  *zoom: 1; }
  body:before, body:after {
    content: "";
    display: table; }
  body:after {
    clear: both; }

/*=VARIABLES - GRID
------------------------------------------------*/
/*=VARIABLES - COLORS
------------------------------------------------*/
/*=VARIABLES - FONTS
------------------------------------------------*/
/*FUNCTIONS
------------------------------------------------*/
/*=MIXINS 
------------------------------------------------*/
/* 

STORM ID RESET STYLES

Based on Meyer Reset, HTML5 Boilerplate, Normalize.css and more

Updated: JULY 2012

*/
/* 
BETTER BOX MODEL. SUPPORTED IN DECENT BROWSERS AND IE8+. POLYFILL FOR IE7
=========================================================================
*/
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

/* 
RESET LOADS OF STUFF
====================
*/
/* Set background colour in case user-styles use a different colour */
html,
body {
  background: #fff;
  font-family: "proxima-nova",sans-serif; }

/* Stop unwanted automatic text resizing on some mobile devices */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

/* Override defaults on all elements */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, main {
  background: transparent;
  border: 0;
  font-size: 100%;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline; }

/* Display block on HTML5 elements */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block; }

/* 
STANDARDISE THE STYLE OF COMMON ELEMENTS
========================================
*/
* {
  text-rendering: optimizeLegibility; }

strong,
b {
  font-weight: bold; }

em,
i {
  font-style: italic; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none; }

ins {
  text-decoration: none; }

mark {
  font-style: italic;
  font-weight: bold; }

del {
  text-decoration: line-through; }

dfn {
  font-style: italic; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td {
  vertical-align: top; }

hr {
  border: 0;
  display: block;
  height: 1px;
  margin: 0;
  padding: 0; }

address {
  font-style: normal; }

/*
 * 1. Corrects color not being inherited in IE6/7/8/9
 * 2. Corrects text not wrapping in FF3 
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  white-space: normal;
  /* 2 */ }

/* Addresses margin not present in IE6/7/8/9, S5, O11 */
figure {
  margin: 0; }

/* Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4 */
[hidden] {
  display: none; }

/* Prevents sub and sup affecting line-height in all browsers */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* 
IMAGES
======
*/
/* Improve image quality when scaled in IE7 / Remove the gap between images and borders on image containers: h5bp.com/i/440
 */
img {
  border: 0;
  vertical-align: middle; }

/* 
HYPERLINKS
==========
*/
/* Improves readability when focused and also mouse hovered in all browsers */
a {
  text-decoration: none; }

a:hover,
a:focus,
a:active {
  outline: 0;
  text-decoration: none; }

/* Addresses outline displayed oddly in Chrome */
a:focus {
  outline: thin dotted; }

/* 
CODE BLOCKS ETC
===============
*/
/* Standardise code blocks */
pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  line-height: 100%; }

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

/* 
FORM ELEMENTS
=============
*/
/* Remove default appearance from inputs */
input,
button {
  border: 0;
  outline: 0;
  padding: 0;
  vertical-align: middle;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0; }

/* Remove default appearance from search inputs in Webkit */
input[type="search"] {
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none; }

input[type="checkbox"] {
  -moz-appearance: checkbox;
  -webkit-appearance: checkbox; }

input[type="radio"] {
  -moz-appearance: radio;
  -webkit-appearance: radio; }

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none; }

/* Remove inner padding and border in FF3/4: h5bp.com/l */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/*
 * 1. Corrects font size not being inherited in all browsers
 * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome
 * 3. Improves appearance and consistency in all browsers
 * 4. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
 */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  line-height: normal;
  /* 4 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */ }

/*
 * 1. Improves usability and consistency of cursor style between image-type 'input' and others
 * 2. Corrects inability to style clickable 'input' types in iOS
 */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  /* 1 */
  -webkit-appearance: button;
  /* 2 */ }

/* Re-set default cursor for disabled elements */
button[disabled],
input[disabled] {
  cursor: default; }

/*
 * 1. Remove default vertical scrollbar in IE6/7/8/9
 * 2. Allow only vertical resizing
 */
textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical; }

textarea:hover,
textarea:active,
textarea:focus {
  outline: none; }

/* 
CLEARFIX 
========
*/
.clearfix:before,
.clearfix:after {
  content: "";
  display: table; }

.clearfix:after {
  clear: both; }

.wrapper {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto; }
  @media screen and (min-width: 40em) {
    .wrapper {
      width: 90%; } }

.row {
  display: block;
  width: 100%;
  margin: 0; }
  @media screen and (min-width: 48em) {
    .row {
      width: 102.77778%;
      margin: 0 -1.38889%; } }

.row-small {
  display: block;
  width: 102.77778%;
  margin: 0 -1.38889%; }

.roundel {
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px; }

.center {
  text-align: center; }

.text-right {
  text-align: right; }

.block {
  display: block; }

.inline-block {
  display: inline-block; }

body .no-margins {
  margin: 0; }

body .relative {
  position: relative; }

body > .wrap {
  margin-bottom: 1.5em; }

.content {
  margin-top: 1.5em; }

@media screen and (min-width: 48em) {
  .gutter-right {
    padding-right: 3em; } }

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin-bottom: 3em;
  margin-top: 0; }

.video-container iframe, .video-container object, .video-container embed {
  padding-left: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

@media screen and (min-width: 48em) {
  .margins-only {
    margin-left: 1.042%;
    margin-right: 1.042%;
    width: 97.917%; } }

.two-up {
  margin: 0;
  list-style-type: none; }
  @media screen and (min-width: 48em) {
    .two-up {
      display: block;
      width: 102.77778%;
      margin-left: -1.38889%;
      margin-right: -1.38889%;
      *zoom: 1; }
      .two-up:before, .two-up:after {
        content: "";
        display: table; }
      .two-up:after {
        clear: both; }
      .two-up > .col {
        display: inline;
        float: left;
        width: 47.22222%;
        margin-left: 1.38889%;
        margin-right: 1.38889%; } }

.three-up {
  margin: 0;
  list-style-type: none; }
  @media screen and (min-width: 48em) {
    .three-up {
      display: block;
      width: 102.77778%;
      margin-left: -1.38889%;
      margin-right: -1.38889%;
      *zoom: 1; }
      .three-up:before, .three-up:after {
        content: "";
        display: table; }
      .three-up:after {
        clear: both; }
      .three-up > .col {
        display: inline;
        float: left;
        width: 30.55556%;
        margin-left: 1.38889%;
        margin-right: 1.38889%; } }

.four-up {
  margin: 0;
  list-style-type: none; }
  @media screen and (min-width: 48em) {
    .four-up {
      display: block;
      width: 102.77778%;
      margin-left: -1.38889%;
      margin-right: -1.38889%;
      *zoom: 1; }
      .four-up:before, .four-up:after {
        content: "";
        display: table; }
      .four-up:after {
        clear: both; }
      .four-up > .col {
        display: inline;
        float: left;
        width: 22.22222%;
        margin-left: 1.38889%;
        margin-right: 1.38889%; } }

.five-up {
  margin: 0;
  list-style-type: none; }
  @media screen and (min-width: 48em) {
    .five-up {
      display: block;
      width: 103.33333%;
      margin-left: -1.66667%;
      margin-right: -1.66667%;
      *zoom: 1; }
      .five-up:before, .five-up:after {
        content: "";
        display: table; }
      .five-up:after {
        clear: both; }
      .five-up > .col {
        display: inline;
        float: left;
        width: 16.66667%;
        margin-left: 1.66667%;
        margin-right: 1.66667%; } }

.six-up {
  margin: 0;
  list-style-type: none; }
  @media screen and (min-width: 48em) {
    .six-up {
      display: block;
      width: 103.33333%;
      margin-left: -1.66667%;
      margin-right: -1.66667%;
      *zoom: 1; }
      .six-up:before, .six-up:after {
        content: "";
        display: table; }
      .six-up:after {
        clear: both; }
      .six-up > .col {
        display: inline;
        float: left;
        width: 13.88889%;
        margin-left: 1.38889%;
        margin-right: 1.38889%; } }

.eight-up {
  margin: 0;
  list-style-type: none; }
  @media screen and (min-width: 48em) {
    .eight-up {
      display: block;
      width: 104.16667%;
      margin-left: -2.08333%;
      margin-right: -2.08333%;
      *zoom: 1; }
      .eight-up:before, .eight-up:after {
        content: "";
        display: table; }
      .eight-up:after {
        clear: both; }
      .eight-up > .col {
        display: inline;
        float: left;
        width: 8.33333%;
        margin-left: 2.08333%;
        margin-right: 2.08333%; } }

.blockgrid-two-up {
  display: block;
  width: 102.77778%;
  margin-left: -1.38889%;
  margin-right: -1.38889%;
  *zoom: 1; }
  .blockgrid-two-up:before, .blockgrid-two-up:after {
    content: "";
    display: table; }
  .blockgrid-two-up:after {
    clear: both; }
  .blockgrid-two-up .col {
    display: inline;
    float: left;
    width: 47.22222%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; }

.blockgrid-three-up {
  display: block;
  width: 102.77778%;
  margin-left: -1.38889%;
  margin-right: -1.38889%;
  *zoom: 1; }
  .blockgrid-three-up:before, .blockgrid-three-up:after {
    content: "";
    display: table; }
  .blockgrid-three-up:after {
    clear: both; }
  .blockgrid-three-up .col {
    display: inline;
    float: left;
    width: 30.55556%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; }

.blockgrid-four-up {
  display: block;
  width: 102.77778%;
  margin-left: -1.38889%;
  margin-right: -1.38889%;
  *zoom: 1; }
  .blockgrid-four-up:before, .blockgrid-four-up:after {
    content: "";
    display: table; }
  .blockgrid-four-up:after {
    clear: both; }
  .blockgrid-four-up .col {
    display: inline;
    float: left;
    width: 22.22222%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; }

.blockgrid-seven-up {
  display: block;
  width: 102%;
  margin: 0 -1%; }
  .blockgrid-seven-up .col {
    display: inline;
    float: left;
    width: 12%;
    margin: 0 1.14%; }

.blockgrid-eight-up {
  display: block;
  width: 104.16667%;
  margin-left: -2.08333%;
  margin-right: -2.08333%;
  *zoom: 1; }
  .blockgrid-eight-up:before, .blockgrid-eight-up:after {
    content: "";
    display: table; }
  .blockgrid-eight-up:after {
    clear: both; }
  .blockgrid-eight-up .col {
    display: inline;
    float: left;
    width: 8.33333%;
    margin-left: 2.08333%;
    margin-right: 2.08333%; }

.col {
  display: inline;
  float: left; }

.small-1 {
  display: inline;
  float: left;
  width: 5.55556%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

.small-2 {
  display: inline;
  float: left;
  width: 13.88889%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

.small-3 {
  display: inline;
  float: left;
  width: 22.22222%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

.small-4 {
  display: inline;
  float: left;
  width: 30.55556%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

.small-5 {
  display: inline;
  float: left;
  width: 38.88889%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

.small-6 {
  display: inline;
  float: left;
  width: 47.22222%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

.small-7 {
  display: inline;
  float: left;
  width: 55.55556%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

.small-8 {
  display: inline;
  float: left;
  width: 63.88889%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

.small-9 {
  display: inline;
  float: left;
  width: 72.22222%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

.small-10 {
  display: inline;
  float: left;
  width: 80.55556%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

.small-11 {
  display: inline;
  float: left;
  width: 88.88889%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

.small-12 {
  display: inline;
  float: left;
  width: 97.22222%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

@media screen and (min-width: 44em) {
  .medium-1 {
    display: inline;
    float: left;
    width: 5.55556%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 44em) {
  .medium-2 {
    display: inline;
    float: left;
    width: 13.88889%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 44em) {
  .medium-3 {
    display: inline;
    float: left;
    width: 22.22222%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 44em) {
  .medium-4 {
    display: inline;
    float: left;
    width: 30.55556%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 44em) {
  .medium-5 {
    display: inline;
    float: left;
    width: 38.88889%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 44em) {
  .medium-6 {
    display: inline;
    float: left;
    width: 47.22222%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 44em) {
  .medium-7 {
    display: inline;
    float: left;
    width: 55.55556%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 44em) {
  .medium-8 {
    display: inline;
    float: left;
    width: 63.88889%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 38em) {
  .medium-9 {
    display: inline;
    float: left;
    width: 72.22222%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 44em) {
  .medium-10 {
    display: inline;
    float: left;
    width: 80.55556%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 44em) {
  .medium-11 {
    display: inline;
    float: left;
    width: 88.88889%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 44em) {
  .medium-12 {
    display: inline;
    float: left;
    width: 97.22222%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-1 {
    display: inline;
    float: left;
    width: 5.55556%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-2 {
    display: inline;
    float: left;
    width: 13.88889%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-3 {
    display: inline;
    float: left;
    width: 22.22222%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-4 {
    display: inline;
    float: left;
    width: 30.55556%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-5 {
    display: inline;
    float: left;
    width: 38.88889%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-6 {
    display: inline;
    float: left;
    width: 47.22222%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-7 {
    display: inline;
    float: left;
    width: 55.55556%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-8 {
    display: inline;
    float: left;
    width: 63.88889%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-9 {
    display: inline;
    float: left;
    width: 72.22222%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-10 {
    display: inline;
    float: left;
    width: 80.55556%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-11 {
    display: inline;
    float: left;
    width: 88.88889%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-12 {
    display: inline;
    float: left;
    width: 97.22222%;
    margin-left: 1.38889%;
    margin-right: 1.38889%;
    display: block;
    float: none; } }

.pull-right {
  float: right; }

@media screen and (min-width: 48em) {
  .pull-right-tablet {
    float: right; } }

@media screen and (min-width: 60em) {
  .pull-right-desktop {
    float: right; } }

.pull-left {
  float: left; }

@media screen and (min-width: 48em) {
  .pull-left-tablet {
    float: left; } }

@media screen and (min-width: 60em) {
  .pull-left-desktop {
    float: left; } }

@media screen and (min-width: 48em) {
  .push-medium-1 {
    margin-left: 9.72222%; } }

@media screen and (min-width: 48em) {
  .push-medium-2 {
    margin-left: 18.05556%; } }

@media screen and (min-width: 48em) {
  .push-medium-3 {
    margin-left: 26.38889%; } }

@media screen and (min-width: 48em) {
  .push-medium-4 {
    margin-left: 34.72222%; } }

@media screen and (min-width: 48em) {
  .push-medium-5 {
    margin-left: 43.05556%; } }

@media screen and (min-width: 48em) {
  .push-medium-6 {
    margin-left: 51.38889%; } }

@media screen and (min-width: 48em) {
  .push-medium-7 {
    margin-left: 59.72222%; } }

@media screen and (min-width: 48em) {
  .push-medium-8 {
    margin-left: 68.05556%; } }

@media screen and (min-width: 48em) {
  .push-medium-9 {
    margin-left: 76.38889%; } }

@media screen and (min-width: 48em) {
  .push-medium-10 {
    margin-left: 84.72222%; } }

@media screen and (min-width: 48em) {
  .push-medium-11 {
    margin-left: 93.05556%; } }

@media screen and (min-width: 48em) {
  .push-medium-12 {
    margin-left: 101.38889%;
    display: block;
    float: none; } }

@media screen and (min-width: 48em) {
  .pull-medium-1 {
    margin-right: 9.72222%; } }

@media screen and (min-width: 48em) {
  .pull-medium-2 {
    margin-right: 18.05556%; } }

@media screen and (min-width: 48em) {
  .pull-medium-3 {
    margin-right: 26.38889%; } }

@media screen and (min-width: 48em) {
  .pull-medium-4 {
    margin-right: 34.72222%; } }

@media screen and (min-width: 48em) {
  .pull-medium-5 {
    margin-right: 43.05556%; } }

@media screen and (min-width: 48em) {
  .pull-medium-6 {
    margin-right: 51.38889%; } }

@media screen and (min-width: 48em) {
  .pull-medium-7 {
    margin-right: 59.72222%; } }

@media screen and (min-width: 48em) {
  .pull-medium-8 {
    margin-right: 68.05556%; } }

@media screen and (min-width: 48em) {
  .pull-medium-9 {
    margin-right: 76.38889%; } }

@media screen and (min-width: 48em) {
  .pull-medium-10 {
    margin-right: 84.72222%; } }

@media screen and (min-width: 48em) {
  .pull-medium-11 {
    margin-right: 93.05556%; } }

@media screen and (min-width: 48em) {
  .pull-medium-12 {
    margin-right: 101.38889%;
    display: block;
    float: none; } }

@media screen and (min-width: 60em) {
  .push-large-1 {
    margin-left: 9.72222%; } }

@media screen and (min-width: 60em) {
  .push-large-2 {
    margin-left: 18.05556%; } }

@media screen and (min-width: 60em) {
  .push-large-3 {
    margin-left: 26.38889%; } }

@media screen and (min-width: 60em) {
  .push-large-4 {
    margin-left: 34.72222%; } }

@media screen and (min-width: 60em) {
  .push-large-5 {
    margin-left: 43.05556%; } }

@media screen and (min-width: 60em) {
  .push-large-6 {
    margin-left: 51.38889%; } }

@media screen and (min-width: 60em) {
  .push-large-7 {
    margin-left: 59.72222%; } }

@media screen and (min-width: 60em) {
  .push-large-8 {
    margin-left: 68.05556%; } }

@media screen and (min-width: 60em) {
  .push-large-9 {
    margin-left: 76.38889%; } }

@media screen and (min-width: 60em) {
  .push-large-10 {
    margin-left: 84.72222%; } }

@media screen and (min-width: 60em) {
  .push-large-11 {
    margin-left: 93.05556%; } }

@media screen and (min-width: 60em) {
  .push-large-12 {
    margin-left: 101.38889%;
    display: block;
    float: none; } }

@media screen and (min-width: 60em) {
  .pull-large-1 {
    margin-right: 9.72222%; } }

@media screen and (min-width: 60em) {
  .pull-large-2 {
    margin-right: 18.05556%; } }

@media screen and (min-width: 60em) {
  .pull-large-3 {
    margin-right: 26.38889%; } }

@media screen and (min-width: 60em) {
  .pull-large-4 {
    margin-right: 34.72222%; } }

@media screen and (min-width: 60em) {
  .pull-large-5 {
    margin-right: 43.05556%; } }

@media screen and (min-width: 60em) {
  .pull-large-6 {
    margin-right: 51.38889%; } }

@media screen and (min-width: 60em) {
  .pull-large-7 {
    margin-right: 59.72222%; } }

@media screen and (min-width: 60em) {
  .pull-large-8 {
    margin-right: 68.05556%; } }

@media screen and (min-width: 60em) {
  .pull-large-9 {
    margin-right: 76.38889%; } }

@media screen and (min-width: 60em) {
  .pull-large-10 {
    margin-right: 84.72222%; } }

@media screen and (min-width: 60em) {
  .pull-large-11 {
    margin-right: 93.05556%; } }

@media screen and (min-width: 60em) {
  .pull-large-12 {
    margin-right: 101.38889%;
    display: block;
    float: none; } }

/**
* Add/remove margins
*/
.push-xlarge {
  margin: 3.5em; }

.push-xlarge--top {
  margin-top: 3.5em; }

.push-xlarge--right {
  margin-right: 3.5em; }

.push-xlarge--bottom {
  margin-bottom: 3.5em; }

.push-xlarge--left {
  margin-left: 3.5em; }

.push-xlarge--ends {
  margin-top: 3.5em;
  margin-bottom: 3.5em; }

.push-xlarge--sides {
  margin-right: 3.5em;
  margin-left: 3.5em; }

.push-large {
  margin: 2em; }

.push-large--top {
  margin-top: 2em; }

.push-large--right {
  margin-right: 2em; }

.push-large--bottom {
  margin-bottom: 2em; }

.push-large--left {
  margin-left: 2em; }

.push-large--ends {
  margin-top: 2em;
  margin-bottom: 2em; }

.push-large--sides {
  margin-right: 2em;
  margin-left: 2em; }

.push {
  margin: 1em; }

.push--top {
  margin-top: 1em; }

.push--right {
  margin-right: 1em; }

.push--bottom {
  margin-bottom: 1em; }

.push--left {
  margin-left: 1em; }

.push--ends {
  margin-top: 1em;
  margin-bottom: 1em; }

.push--sides {
  margin-right: 1em;
  margin-left: 1em; }

.push-half {
  margin: 0.5em; }

.push-half--top {
  margin-top: 0.5em; }

.push-half--right {
  margin-right: 0.5em; }

.push-half--bottom {
  margin-bottom: 0.5em; }

.push-half--left {
  margin-left: 0.5em; }

.push-half--ends {
  margin-top: 0.5em;
  margin-bottom: 0.5em; }

.push-half--sides {
  margin-right: 0.5em;
  margin-left: 0.5em; }

@media screen and (max-width: 48em) {
  .push-half--small {
    margin: 0.5em; }

  .push-half--top--small {
    margin-top: 0.5em; }

  .push-half--right--small {
    margin-right: 0.5em; }

  .push-half--bottom--small {
    margin-bottom: 0.5em; }

  .push-half--left--small {
    margin-left: 0.5em; }

  .push-half--ends--small {
    margin-top: 0.5em;
    margin-bottom: 0.5em; }

  .push-half--sides--small {
    margin-right: 0.5em;
    margin-left: 0.5em; } }
.push-small {
  margin: 0.2em; }

.push-small--top {
  margin-top: 0.2em; }

.push-small--right {
  margin-right: 0.2em; }

.push-small--bottom {
  margin-bottom: 0.2em; }

.push-small--left {
  margin-left: 0.2em; }

.push-small--ends {
  margin-top: 0.2em;
  margin-bottom: 0.2em; }

.push-small--sides {
  margin-right: 0.2em;
  margin-left: 0.2em; }

.flush {
  margin: 0; }

.flush--top {
  margin-top: 0; }

.flush--right {
  margin-right: 0; }

.flush--bottom {
  margin-bottom: 0; }

.flush--left {
  margin-left: 0; }

.flush--ends {
  margin-top: 0;
  margin-bottom: 0; }

.flush--sides {
  margin-right: 0;
  margin-left: 0; }

@media screen and (min-width: 48em) {
  .flush--med {
    margin: 0; }

  .flush--top--med {
    margin-top: 0; }

  .flush--right--med {
    margin-right: 0; }

  .flush--bottom--med {
    margin-bottom: 0; }

  .flush--left--med {
    margin-left: 0; }

  .flush--ends--med {
    margin-top: 0;
    margin-bottom: 0; }

  .flush--sides--med {
    margin-right: 0;
    margin-left: 0; } }
/**
* Add/remove paddings
*/
.soft-large {
  padding: 2em; }

.soft-large--top {
  padding-top: 2em; }

.soft-large--right {
  padding-right: 2em; }

.soft-large--bottom {
  padding-bottom: 2em; }

.soft-large--left {
  padding-left: 2em; }

.soft-large--ends {
  padding-top: 2em;
  padding-bottom: 2em; }

.soft-large--sides {
  padding-right: 2em;
  padding-left: 2em; }

.soft {
  padding: 1em; }

.soft--top {
  padding-top: 1em; }

.soft--right {
  padding-right: 1em; }

.soft--bottom {
  padding-bottom: 1em; }

.soft--left {
  padding-left: 1em; }

.soft--ends {
  padding-top: 1em;
  padding-bottom: 1em; }

.soft--sides {
  padding-right: 1em;
  padding-left: 1em; }

.soft-half {
  padding: 0.5em; }

.soft-half--top {
  padding-top: 0.5em; }

.soft-half--right {
  padding-right: 0.5em; }

.soft-half--bottom {
  padding-bottom: 0.5em; }

.soft-half--left {
  padding-left: 0.5em; }

.soft-half--ends {
  padding-top: 0.5em;
  padding-bottom: 0.5em; }

.soft-half--sides {
  padding-right: 0.5em;
  padding-left: 0.5em; }

.hard {
  padding: 0; }

.hard--top {
  padding-top: 0; }

.hard--right {
  padding-right: 0; }

.hard--bottom {
  padding-bottom: 0; }

.hard--left {
  padding-left: 0; }

.hard--ends {
  padding-top: 0;
  padding-bottom: 0; }

.hard--sides {
  padding-right: 0;
  padding-left: 0; }

@media screen and (min-width: 48em) {
  .hard--med {
    padding: 0; }

  .hard--top--med {
    padding-top: 0; }

  .hard--right--med {
    padding-right: 0; }

  .hard--bottom--med {
    padding-bottom: 0; }

  .hard--left--med {
    padding-left: 0; }

  .hard--ends--med {
    padding-top: 0;
    padding-bottom: 0; }

  .hard--sides--med {
    padding-right: 0;
    padding-left: 0; } }
.push-top--special {
  margin-top: 1.4em; }

.push-top-special-alt {
  margin-top: 0.6em; }

.push-top-special-alt-alt {
  margin-top: 1.2em; }
  @media screen and (min-width: 48em) {
    .push-top-special-alt-alt {
      margin-top: 0; } }

.push-bottom-med-mobile {
  margin-bottom: 1em; }
  @media screen and (min-width: 48em) {
    .push-bottom-med-mobile {
      margin-bottom: 0; } }

/*

Client:			[Client Name]
Version:   		1.0

Author:    		StormID
Email:    		hello@stormid.com
Website:   		http://stormid.com/

Last updated:	Feb 2012

*/
/* GLOBAL */
.no-padding {
  padding-left: 0 !important; }

html,
body,
button,
input,
select,
textarea {
  font-family: "proxima-nova", sans-serif; }

body {
  color: #6c7886;
  font-size: 1.2em; }

body:after {
  content: 'small';
  display: none; }

a {
  color: #4997df;
  font-family: "proxima-nova",sans-serif; }

.hover-class-one {
  color: #4997df;
  margin-left: -0.75em;
  webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.hover-class-one:hover {
  color: #4997df;
  webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  margin-left: 0; }

.hover-class-one:before {
  content: '\e80d';
  color: #ffffff;
  font-family: "fontello";
  webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.hover-class-one:hover:before {
  content: '\e80d';
  color: #4997df;
  font-size: 1em;
  margin-right: 0.25em;
  font-family: "fontello";
  webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.hover-class-two {
  color: #4997df;
  webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.hover-class-two:hover {
  color: #4997df;
  text-decoration: underline;
  webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.generic-hover {
  webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.generic-hover:hover {
  opacity: 1;
  padding: 0.5em;
  border: 2px solid #e9e3d7;
  webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.generic-hover-two {
  webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.generic-hover-two:hover {
  opacity: 0.8;
  webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

p {
  margin-bottom: 1em;
  font-family: "proxima-nova",sans-serif;
  color: #6c7886;
  font-size: 0.9em; }

img {
  max-width: 100%; }

h1, h2, h3, h4, h5, h6 {
  font-family: "proxima-nova",sans-serif; }

.uppercase {
  text-transform: uppercase; }
  .uppercase .italic {
    font-style: italic; }

.font-secondary {
  font-family: "ff-tisa-web-pro", georgia, serif; }

/* POSITIONING */
.position-absolute {
  position: absolute; }

.position-relative {
  position: relative; }

/* TEXT ALIGN */
.text-align-right {
  text-align: right; }

.text-align-left {
  text-align: left; }

.text-align-center {
  text-align: center; }

/* HEADINGS */
.heading-xxxsmall {
  font-size: 0.5em; }

.heading-xsmall-footer {
  font-size: 0.75em; }

.heading-xxsmall {
  font-size: 0.7em;
  font-family: "proxima-nova", sans-serif; }

.heading-xsmall {
  font-size: 0.8em; }

.heading-small {
  font-size: 0.9em; }

.heading-medium {
  font-size: 1em; }

.heading-medium-alt-alt {
  font-size: 1.1em; }

.heading-medium-alt {
  font-size: 1.2em; }

.heading-medium-large {
  font-size: 1.4em; }

.heading-large {
  font-size: 1.4em; }

.heading-large-medium {
  font-size: 1.7em; }

.heading-xlarge {
  font-size: 2em; }

.heading-xxlarge {
  font-size: 2.6em; }

.heading-xxxlarge {
  font-size: 2.8em; }

.heading-xxxxlarge {
  font-size: 4.8em; }

.icon-class-size {
  font-size: 1.5em; }

/* HEADING BORDERS */
.heading-border--gold {
  border-bottom: 2px solid #d9d0b9;
  padding-bottom: 0.1em; }

.border-bottom--gold {
  border-bottom: 1px solid #ece7dc;
  padding-bottom: 0.1em; }

.border-bottom--gold-alt {
  border-bottom: 1px solid #ece7dc;
  padding: 0.6em 0; }

/* FONT WEIGHTS */
.font-weight--light {
  font-weight: 100; }

.font-weight--normal {
  font-weight: 400; }

.font-weight--bold {
  font-weight: 700; }

.font-weight--xbold {
  font-weight: 900; }

/* LETTER SPACING */
.letter-spacing-80 {
  letter-spacing: 1px; }

/* COLOURS */
.font-primary--color {
  color: #6c7886; }

.white {
  background-color: #ffffff; }

.white-text {
  color: #ffffff; }

.dark-text {
  color: #495358; }

.accessible-blue {
  color: #647789; }

.slate {
  color: #455262; }

.slate-block {
  background-color: #455262; }

.blue {
  background-color: #1f71bb; }

.icon-blue {
  color: #1f71bb; }

.blue:hover {
  background-color: #2482d7; }

.light-blue {
  background-color: #f4f7f9; }

.link-blue--dark {
  color: #0D4D8C; }

.blue-text {
  color: #1f71bb;
  webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.dark-blue {
  background-color: #455262; }

.dark-blue-text {
  color: #455262; }

.baby-blue {
  color: #b3d6ed; }

.baby-blue-block {
  background: #b3d6ed; }

.grey-blue {
  background-color: #7a90a6; }

.grey-blue-text {
  color: #7a90a6; }

.grey-blue-text-variation {
  color: #5f6d7f; }

.gold {
  background-color: #d9d0b9; }

.gold-text {
  color: #d9d0b9; }

.red {
  color: #ef5150; }

.red-block {
  background: #ef5150; }

.lime-green {
  color: #99d34b; }

.light-blue-border-top {
  border-top: 5px solid #edf1f4; }

.sky-blue {
  background: #a2cfec; }

/* SOCIAL COLOUS */
.facebook-primary {
  color: #3b5998; }

.twitter-primary {
  color: #00aced; }

.google-plus-primary {
  color: #dd4b39; }

.linkedin-primary {
  color: #007bb6; }

.events-brand {
  color: #79459b; }

.events-brand-block {
  background: #79459b; }

.venue-brand {
  color: #10bcc7; }

.venue-brand-block {
  background: #10bcc7; }

.meetings-brand {
  color: #b1ba1e; }

.meetings-brand-block {
  background: #b1ba1e; }

/* FLOATS */
.float-left {
  float: left; }

@media screen and (min-width: 44em) {
  .float-right {
    float: right; } }

/* BUTTONS */
.btn {
  padding: 1em 2em;
  text-transform: uppercase;
  color: #ffffff;
  font-size: 0.85em;
  font-weight: 700;
  webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.btn .icon-right-open {
  margin-left: 0.8em; }

/* Widths */
.full-width {
  width: 100%; }

/* Alignment */
.vertical-align--middle img {
  max-height: 90px;
  display: table-cell;
  vertical-align: middle; }

/* FORM STYLES */
.input-generic {
  background-color: #f8fbfe;
  color: #6c7886;
  border: #e8e8e8 1px solid;
  width: 100%;
  margin-bottom: 14px;
  padding: 1em 1em 1em 4.5em;
  -webkit-box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.05);
  -webkit-border-radius: 4px 4px 4px 4px;
  border-radius: 4px 4px 4px 4px;
  font-size: 0.8em;
  height: 52px; }

::-webkit-input-placeholder {
  color: #6c7886;
  font-family: "proxima-nova", sans-serif !important; }

::-moz-input-placeholder {
  color: #6c7886;
  font-family: "proxima-nova", sans-serif !important; }

::-ms-input-placeholder {
  color: #6c7886;
  font-family: "proxima-nova", sans-serif !important; }

.generic-select {
  background: #f8fbfe;
  border: #e8e8e8 1px solid;
  margin-bottom: 14px;
  font-family: "proxima-nova", sans-serif;
  font-size: 0.8em;
  color: #6c7886;
  -webkit-border-radius: 4px 4px 4px 4px;
  border-radius: 4px 4px 4px 4px;
  padding: 0.7em;
  width: 100%;
  height: 52px; }

@media screen and (min-width: 44em) {
  .select-special-width {
    width: 78%;
    display: inline-block; } }
@media screen and (min-width: 60em) {
  .select-special-width {
    width: 100%;
    display: inline-block; } }
@media screen and (min-width: 70em) {
  .select-special-width {
    width: 58%;
    display: inline-block; } }
@media screen and (min-width: 70em) {
  .select-special-width {
    width: 65%;
    display: inline-block; } }

@media screen and (min-width: 44em) {
  .select-special-width-alt {
    width: 78%;
    display: inline-block; } }
@media screen and (min-width: 60em) {
  .select-special-width-alt {
    width: 100%;
    display: inline-block; } }
@media screen and (min-width: 70em) {
  .select-special-width-alt {
    width: 58%;
    display: inline-block; } }
@media screen and (min-width: 70em) {
  .select-special-width-alt {
    width: 66%;
    display: inline-block; } }

@media screen and (min-width: 44em) {
  .label-special-width {
    width: 20%;
    display: inline-block; } }
@media screen and (min-width: 60em) {
  .label-special-width {
    width: 100%;
    display: inline-block; } }
@media screen and (min-width: 70em) {
  .label-special-width {
    width: 40%;
    display: inline-block; } }
@media screen and (min-width: 70em) {
  .label-special-width {
    width: 33%;
    display: inline-block; } }

.check-select {
  padding: 0.93em 1em 0.94em 4.5em; }

.check-select-alt {
  padding: 0.93em 1em 0.94em 1em; }

input[type="text"]:focus, .form input[type="email"]:focus, .form input[type="password"]:focus, textarea:focus {
  border-color: #35c2de;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }

/* DISPLAY */
.inline-block {
  display: inline-block; }

.block {
  display: block; }

.block-small-screen {
  display: block; }
  @media screen and (min-width: 48em) {
    .block-small-screen {
      display: inline-block; } }

.margin-bottom-medium-small {
  margin-bottom: 1em; }
  @media screen and (min-width: 48em) {
    .margin-bottom-medium-small {
      margin-bottom: 0 !important; } }

/* PANELS */
.gold-panel {
  background: #faf9f7;
  border: 5px solid #e9e3d7;
  padding: 1em; }

.gold-panel-events {
  background: #faf9f7;
  border: 5px solid #79459b;
  padding: 1em; }

/* FORM VALIDATION */
.parsley-required, .parsley-not, .parsley-timenotgreaterthan, .parsley-timenotlessthan, .parsley-type, .parsley-custom-error-message {
  background: #ffdddd;
  border: 1px solid #dd9999;
  color: #996767;
  font-size: 0.8em;
  margin: 0 0 12px 0;
  padding: 0.5em 1em;
  text-shadow: 0 1px 0 #FFFFFF; }

.field-validation-error {
  background: #ffdddd;
  border: 1px solid #dd9999;
  color: #996767;
  display: block;
  font-size: 0.8em;
  margin: 0 0 12px 0;
  padding: 0.5em 1em;
  text-shadow: 0 1px 0 #FFFFFF; }

.max-width--120 {
  max-width: 100px; }

.display-none--small {
  display: none; }
  @media screen and (min-width: 48em) {
    .display-none--small {
      display: block; } }

.relative {
  position: relative; }

.sidebar-active {
  display: block;
  background: #faf8f5;
  color: #455262; }

.grid-special {
  display: inline;
  float: left;
  margin-left: 1.38889%;
  margin-right: 1.38889%;
  position: relative;
  width: 97.2%; }

.at-share-tbx-element .at-share-btn .at300bs {
  border-radius: 100em;
  margin-right: 0.25em;
  margin-top: 0.5em; }

.min-height--special {
  min-height: 66px; }

.custom-grid-rooms {
  width: 48%;
  float: left; }
  @media screen and (min-width: 38em) {
    .custom-grid-rooms {
      width: 24% !important; } }
  @media screen and (min-width: 62em) {
    .custom-grid-rooms {
      width: 14% !important; } }

.bespoke-test--class {
  display: block;
  margin-left: -2.2em;
  margin-bottom: -20px; }

.opacity-touch {
  webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.opacity-touch:hover {
  opacity: 0.75;
  webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.align-center-large {
  text-align: left; }
  @media screen and (min-width: 44em) {
    .align-center-large {
      text-align: center; } }

.event-date {
  display: inline;
  margin-right: 3px; }
  @media screen and (min-width: 44em) {
    .event-date {
      font-size: 2em;
      display: block; } }

.event-day {
  display: inline;
  margin-right: 3px; }
  @media screen and (min-width: 44em) {
    .event-day {
      display: block; } }

.event-year {
  display: inline; }

.events-details-widget {
  margin-bottom: 5px; }
  @media screen and (min-width: 44em) {
    .events-details-widget {
      margin-bottom: 0;
      display: block; } }

.display-none {
  display: none; }
  @media screen and (min-width: 44em) {
    .display-none {
      display: block; } }

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.floor-plan-link {
  max-width: 170px;
  width: 100%; }

.floor-plan-link:hover {
  opacity: 0.8;
  poinrer: cursor; }

.menu-triggers {
  float: right; }

.header {
  padding: 15px 0 20px 0 !important;
  position: relative; }

.header-left {
  float: left; }

.header-right {
  float: right; }

.logo-main img {
  max-width: 200px;
  float: left;
  margin-top: 10px; }
  @media screen and (min-width: 60em) {
    .logo-main img {
      max-width: 250px;
      max-height: 60px; } }

.logo-events img {
  max-width: 400px;
  min-width: 200px;
  width: 100% !important; }

.menu-trigger {
  font-size: 1.15em;
  color: #FFFFFF;
  cursor: pointer;
  background: #1f71bb;
  display: inline-block;
  padding: 0.3em 0.5em;
  border-radius: 2px;
  float: right; }
  @media screen and (min-width: 60em) {
    .menu-trigger {
      display: none; } }

.search-trigger {
  background: #1f71bb;
  display: inline-block;
  font-size: 1.15em;
  color: #FFFFFF;
  margin-right: 0.3em;
  cursor: pointer;
  webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  padding: 0.3em 0.5em;
  border-radius: 2px;
  float: right; }
  @media screen and (min-width: 60em) {
    .search-trigger {
      margin-right: 0px;
      border-right: none;
      display: none; } }

p.text-size {
  display: none; }
  @media screen and (min-width: 60em) {
    p.text-size {
      display: block;
      float: left;
      margin-top: 20px; } }

p.text-size .small {
  color: #FFFFFF;
  text-decoration: underline;
  font-size: 0.75em; }

p.text-size .large {
  color: #FFFFFF;
  font-size: 1em; }

.no-touch .fixed {
  margin-left: auto;
  margin-right: auto;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100; }

.phone-number {
  display: none; }
  @media screen and (min-width: 60em) {
    .phone-number {
      display: block;
      float: right;
      text-align: left;
      margin-top: 0;
      margin-right: 1.5em; } }

.phone-number p {
  margin: 0;
  font-size: 0.8em; }

.phone-number span {
  font-size: 1.2em;
  margin-top: 0;
  font-weight: 700; }

.icon-edit {
  border-right: 1px solid #CCCCCC;
  padding-right: 10px; }

.icon-edit::before {
  float: left; }

.icon-calendar-empty::before {
  float: right;
  margin-top: 1px; }

.social-links-header {
  float: right;
  display: none;
  margin-top: 14px; }
  @media screen and (min-width: 60em) {
    .social-links-header {
      display: block; } }

.social-links-header li {
  display: inline; }

.secondary-nav ul {
  width: auto;
  float: left;
  margin-top: 15px;
  margin-bottom: 1em;
  display: none !important; }
  @media screen and (min-width: 60em) {
    .secondary-nav ul {
      display: block !important;
      margin-top: 28px; } }

.secondary-nav ul li {
  margin-right: 26px;
  display: block; }
  @media screen and (min-width: 60em) {
    .secondary-nav ul li {
      display: inline; } }

.secondary-nav ul li a {
  color: #FFFFFF;
  font-size: 0.75em; }

.secondary-nav-small {
  display: block;
  float: left;
  margin-top: 1.2em; }
  @media screen and (min-width: 60em) {
    .secondary-nav-small {
      display: none; } }

.secondary-nav-small li {
  display: inline; }

.secondary-nav-small li a {
  margin-right: 7px;
  color: #FFFFFF; }

.secondary-nav-small .icon-edit {
  font-size: 1.2em; }

.primary-nav-bg {
  background: #ffffff; }
  @media screen and (min-width: 60em) {
    .primary-nav-bg {
      background: url(/public/20220314151141oe_/https://www.shsc.scot/Content/images/nav-bg.png);
      background-color: #ece9e4;
      background-size: 6px 6px;
      background-repeat: repeat;
      height: 58px; } }

.nav {
  list-style-type: none;
  margin: 0; }
  .nav ul, .nav ol {
    list-style-type: none; }
  .nav a {
    color: #4c93c5;
    text-decoration: none; }

.nav-primary {
  font-family: sans-serif;
  position: relative;
  z-index: 9999 !important; }
  @media screen and (min-width: 60em) {
    .nav-primary {
      background: #E3E6E9;
      position: absolute;
      top: 52px;
      left: 0;
      z-index: 9999;
      width: 100%; } }
  @media screen and (min-width: 60em) {
    .nav-primary {
      overflow: visible;
      margin: 10px auto 0 auto;
      padding-bottom: 5px;
      width: 100%;
      position: relative;
      z-index: 9999 !important; }
      .nav-primary.nav-alt {
        background-color: transparent; } }

@media screen and (max-width: 47.938em) {
  .nav-primary .wrapper {
    width: auto;
    margin: 0; } }

@media screen and (min-width: 60em) {
  a.nav-primary__link {
    font-size: 0.70em;
    text-transform: uppercase;
    padding: 1.2em 1.2em 1.2em 0.95em; } }
@media screen and (min-width: 76em) {
  a.nav-primary__link {
    font-size: 0.81em;
    margin: 0;
    padding: 1.1em 1.45em 0.76em 1.45em; } }

@media screen and (min-width: 60em) {
  .nav-primary__list {
    margin: 10px auto 0 auto;
    background: #FFFFFF;
    padding: 0;
    position: relative;
    float: left;
    width: 100%; } }

.nav-primary__item {
  border-bottom: 1px #ede8dd solid;
  padding: 0.7em 0 0.7em 0;
  position: relative; }
  @media screen and (min-width: 60em) {
    .nav-primary__item {
      border: none;
      background: #ffffff;
      float: left;
      margin: 0 0 0 0;
      padding: 0;
      position: relative;
      width: auto; }
      .nav-primary__item:first-child a {
        padding-left: 0; } }

.nav-primary__link {
  display: block; }
  @media screen and (min-width: 60em) {
    .nav-primary__link {
      border-bottom: none;
      font-weight: 700;
      font-size: 0.95em;
      padding: 10px 7.5px;
      text-align: center; }
      .nav-primary__link:hover {
        background: #89be41;
        color: #ffffff; }
      .nav-primary__link.active {
        background-position: bottom center;
        display: block; } }
  @media screen and (min-width: 60em) {
    .nav-primary__link {
      font-size: 1em;
      padding: 10px; } }

@media screen and (min-width: 60em) {
  .primary-nav-active {
    background: #89be41;
    color: #ffffff; } }
@media screen and (min-width: 76em) {
  .primary-nav-active {
    background: #89be41;
    color: #ffffff; } }

@media screen and (min-width: 60em) {
  .nav-submenu:hover {
    background: #ffffff;
    color: #333333; } }

.nav-submenu:hover a.nav-primary__link {
  color: #3a4862; }
  @media screen and (min-width: 60em) {
    .nav-submenu:hover a.nav-primary__link {
      color: #ffffff; } }

@media screen and (min-width: 60em) {
  .nav-submenu:hover .nav-submenu__list {
    display: block !important; } }

.nav-submenu__list {
  display: none; }
  @media screen and (min-width: 60em) {
    .nav-submenu__list {
      background-color: #89BE41;
      border-top: none;
      height: auto;
      left: 0px;
      position: absolute;
      top: 48px;
      margin: 0;
      z-index: 99999; } }
  @media screen and (min-width: 60em) {
    .nav-submenu__list {
      top: 48px; } }

@media screen and (min-width: 60em) {
  .nav-submenu__item {
    background: none;
    border: none;
    display: block;
    float: none;
    width: 300px;
    font-size: 0.9em; } }

@media screen and (min-width: 60em) {
  .nav-submenu__link {
    color: #ffffff;
    display: block;
    padding: 0.5em 0.5em 0.5em 1.5em;
    font-weight: 400; } }

@media screen and (min-width: 60em) {
  .nav-submenu__link:hover {
    background-color: #9DD74F;
    display: block; } }

@media screen and (min-width: 60em) {
  .nav-submenu:hover {
    background: #89be41;
    color: #ffffff; } }
.nav-submenu:hover .nav-primary__link.active {
  background: none; }

.expander {
  background: transparent;
  color: #3b8db5;
  display: block;
  width: 20%;
  padding: 0.7em;
  position: absolute;
  z-index: 1000;
  right: 0;
  top: 0;
  cursor: pointer; }
  @media screen and (min-width: 60em) {
    .expander {
      display: none; } }

.js-toggle:hover {
  cursor: pointer; }

.nav-activity {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 999999; }

@media screen and (max-width: 60em) {
  .panel--utility {
    position: absolute;
    top: 52px;
    left: 0px;
    width: 100%;
    margin: 0;
    padding: 1.5em;
    background: #E3E6E9;
    z-index: 9999; } }

@media screen and (min-width: 60em) {
  .nav-utility__list {
    background: none;
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
    float: right; } }

.nav-utility__item {
  display: block;
  font-size: 0.9em;
  padding: 0.7em 0 0.7em 0;
  border-bottom: 1px solid #DADADA; }
  @media screen and (min-width: 460em) {
    .nav-utility__item {
      border: none;
      display: inline-block;
      font-size: 0.75em;
      padding: 0 0 0 0.8em; }
      .nav-utility__item a {
        color: #999999; } }
  .nav-utility__item .btn-sign-up {
    margin-left: 1em; }
    @media screen and (min-width: 60em) {
      .nav-utility__item .btn-sign-up {
        margin-right: 1em; } }
  .nav-utility__item .btn-sign-up:hover {
    color: #ffffff; }

.nav-utility__item:last-child {
  border-bottom: none; }

.nav-utility__link {
  padding: 0.99em 0; }

.more-link {
  font-style: italic;
  position: absolute;
  right: 1.2em;
  bottom: 0.5em; }

@media screen and (max-width: 60em) {
  .nav-btn {
    background: #3b8db5;
    border-left: 1px solid #347C9E;
    cursor: pointer;
    height: 52px;
    line-height: 52px;
    position: absolute;
    text-align: center;
    width: 52px;
    z-index: 999; }

  .nav-btn--menu {
    line-height: 60px;
    top: 0;
    right: 52px; }

  .nav-btn--menu-alt {
    right: 52px; }

  .nav-btn--menu i {
    line-height: 21px;
    font-size: 1.8em; }

  .nav-btn--menu [class^="icon-"]:before, body [class*=" icon-"]:before {
    margin-left: 0;
    margin-right: 0; }

  .nav-btn--search {
    right: 0;
    top: 0; }

  .nav-btn--utility {
    top: 0;
    right: 0; }

  a.nav-btn.active {
    background: #E3E6E9;
    color: #347C9E; }

  a.nav-btn {
    color: #ffffff; } }
.pager {
  padding-left: 0;
  margin: 20px 0;
  list-style: none;
  text-align: center; }

.pager__item {
  display: inline; }

.pager__link {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px; }

.pager__item--previous {
  float: left; }

.pager__item--next {
  float: right; }

.nav-breadcrumbs {
  color: #999;
  display: none;
  font-size: 0.8em; }
  @media screen and (min-width: 60em) {
    .nav-breadcrumbs {
      display: block; } }

.nav-breadcrumbs__item {
  display: inline-block;
  padding: 0 0.3em 0 0; }

.nav-breadcrumbs__lister {
  margin: 0 0 1em 0; }

@media screen and (min-width: 60em) {
  ul.nav-primary__list.js-panel--menu {
    display: block !important; } }

.nav-submenu__list li a {
  font-size: 0.9em; }

ul.nav-submenu__list {
  margin: 0.5em 0em 0.5em 1.2em; }
  @media screen and (min-width: 60em) {
    ul.nav-submenu__list {
      margin: 0; } }

.no-margin-nav {
  margin: 0 !important; }

@media screen and (min-width: 60em) {
  .nav-primary__item:first-child a {
    padding-left: 1.4em; } }

.primary-search {
  background: #ffffff;
  border: 1px solid #CCCCCC;
  margin-top: 15px;
  float: left;
  width: 100%; }
  @media screen and (min-width: 60em) {
    .primary-search {
      position: absolute;
      display: block !important;
      right: 0;
      bottom: -140px;
      right: 40px;
      z-index: 100;
      width: 28%; } }

.primary-search-text-input {
  color: #929dac;
  font-size: 0.75em;
  font-family: "proxima nova", sans-serif;
  padding: 0.4em 1em;
  width: 57%; }
  @media screen and (min-width: 60em) {
    .primary-search-text-input {
      width: 49%; } }
  @media screen and (min-width: 70em) {
    .primary-search-text-input {
      width: 69%; } }

.search-button {
  background: #1f71bb;
  color: #FFFFFF;
  text-transform: uppercase;
  font-size: 0.6em;
  font-weight: 500;
  margin-top: 1px;
  font-family: "proxima nova", sans-serif;
  height: 27px;
  margin-bottom: 1px;
  padding: 0 2em;
  float: right;
  margin-right: 1px;
  webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }
  @media screen and (min-width: 60em) {
    .search-button {
      width: 36%;
      padding: 0 1em; } }
  @media screen and (min-width: 70em) {
    .search-button {
      width: 30%;
      padding: 0 1em; } }

.search-button:hover {
  background: #2482d7;
  webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.search-button:after {
  content: '\e800';
  color: #FFFFFF;
  font-size: 1em;
  font-family: "fontello";
  margin-left: 0.5em; }

.services {
  color: #FFFFFF;
  text-align: center; }

@media screen and (min-width: 60em) {
  .events, .venues, .meetings {
    float: left;
    width: 33.333333333% !important; } }

.services {
  margin-bottom: 30px; }

.services .events {
  width: 100%;
  background: #333333; }

.services .venues {
  width: 100%;
  background: #999999; }

.services .meetings {
  width: 100%;
  background: #333333; }

.service-info {
  padding: 100px 0; }

.service-info h2 {
  font-size: 2em;
  text-transform: uppercase;
  margin-bottom: 10px; }

.service-info p {
  font-size: 0.85em;
  line-height: 24px;
  margin: 20px auto 20px auto;
  width: 70%;
  text-align: center;
  display: block; }

.featured-events {
  border-bottom: 1px #dddddd solid; }

.upcoming-events-heading {
  margin-bottom: 20px;
  font-size: 1.3em; }

.generic-lister {
  margin-bottom: 20px;
  width: 100%; }
  @media screen and (min-width: 50em) {
    .generic-lister {
      width: 31.3%;
      float: left;
      margin-right: 2%; } }

.g-lister-events {
  margin-bottom: 20px;
  width: 100%; }
  @media screen and (min-width: 50em) {
    .g-lister-events {
      width: 23% !important;
      float: left;
      margin-right: 2%; } }

.generic-lister-image {
  display: block;
  margin: 0 auto;
  width: 100%; }

.generic-lister h3 {
  color: #0095da;
  margin-top: 18px;
  margin-bottom: 12px;
  font-size: 1.6em; }

.g-lister-events h3 {
  font-size: 1em; }

.generic-lister p {
  color: #666666;
  font-size: 0.85em;
  line-height: 24px; }

p.lister-date {
  margin-top: -10px;
  font-weight: 700; }

.mailing-list input {
  border: 1px #BBBBBB solid;
  border-radius: 4px;
  font-size: 0.75em;
  padding: 10px 14px;
  margin-bottom: 14px;
  width: 100%; }
  @media screen and (min-width: 60em) {
    .mailing-list input {
      float: left; } }

.mailing-list p {
  font-size: 0.85em; }

.mailing-list-button {
  width: 100%;
  text-align: center;
  font-weight: 700;
  border-radius: 5px;
  padding: 0.5em;
  color: #FFFFFF; }

.text-area-home {
  height: 110px !important; }

.mailing-list ul li {
  font-size: 0.85em;
  margin-bottom: 14px; }

.mailing-list .icon-ok-circled2 {
  font-size: 1.2em;
  color: #aaaaaa;
  margin-right: 12px;
  display: inline-block; }

.partner-logo {
  float: left;
  width: 48%;
  margin-right: 2%;
  margin-bottom: 1.5em;
  margin: 0 auto; }
  @media screen and (min-width: 30em) {
    .partner-logo {
      width: 23%;
      margin-right: 2%;
      float: left;
      margin-bottom: 1.5em; } }
  @media screen and (min-width: 60em) {
    .partner-logo {
      width: 10%;
      margin-right: 2.5%;
      float: left; } }

.partner-logo img {
  webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.partner-logo img:hover {
  opacity: 0.75;
  webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.testimonials {
  float: left;
  margin: 30px 0 30px 0; }
  @media screen and (min-width: 60em) {
    .testimonials {
      width: 48%;
      margin: 0; } }

.testimonials-2 {
  float: left;
  margin: 30px 0 30px 0; }
  @media screen and (min-width: 60em) {
    .testimonials-2 {
      width: 48%;
      margin: 0 2% 0 0%; } }

.testimonial-block img {
  max-width: 200px;
  position: absolute;
  bottom: 0; }

.testimonial-text {
  font-size: 1.1em;
  line-height: 24px;
  font-style: italic;
  background: #fefefe;
  padding: 0.5em; }

.details-left.news-lister-details-left.home-page {
  width: 100% !important;
  margin-bottom: 20px; }

.news-and-testimonials .news-block-item {
  margin-bottom: 20px; }

.hero-button {
  padding: 12px 22px;
  border-radius: 5px;
  color: #FFFFFF;
  font-weight: 700;
  margin-top: 10px; }

.event-lister h4 {
  margin-top: 10px; }
  @media screen and (min-width: 60em) {
    .event-lister h4 {
      margin-top: 0; } }

.main-column-left.meetings {
  float: left;
  width: 100% !important;
  margin-top: 20px; }
  @media screen and (min-width: 60em) {
    .main-column-left.meetings {
      margin-right: 4%;
      width: 50% !important;
      margin-top: 0; } }

.tertiary-nav ul li a {
  color: #4997df;
  font-weight: 400;
  font-size: 0.9em;
  display: block;
  border-bottom: 1px #ede8dd solid;
  padding: 10px 0; }

.tertiary-nav-meetings ul li a {
  color: #4997df;
  font-weight: 400;
  font-size: 0.9em;
  display: block;
  border-bottom: 1px #ede8dd solid;
  padding: 10px 0; }

.sidebar.sidebar-meetings {
  width: 100% !important; }
  @media screen and (min-width: 60em) {
    .sidebar.sidebar-meetings {
      width: 16% !important; } }

.meetings p {
  margin-top: 10px; }

.download-file {
  width: 100%;
  display: block;
  margin-bottom: 1em; }

.download-file img {
  float: left;
  max-width: 45px; }

.download-file a {
  margin-top: 10px;
  display: inline-block;
  margin-left: 0.5em;
  text-decoration: underline;
  font-size: 0.8em; }

.download-link {
  float: left;
  margin-top: 10px;
  margin-left: 2%; }

.news-article {
  margin-top: 20px; }
  @media screen and (min-width: 60em) {
    .news-article {
      margin-top: 0; } }

.intro-banner {
  color: #ffffff;
  background: #cad7e1;
  text-align: center;
  padding: 2em 0;
  margin-bottom: 1.2em; }

.intro-banner h1 {
  font-size: 3em;
  margin-bottom: 0.2sem; }

.intro-banner p {
  font-size: 1.2em; }

.intro {
  width: 100%; }
  @media screen and (min-width: 60em) {
    .intro {
      width: 60%;
      margin-right: 4%;
      float: left; } }

.events-services-list {
  width: 100%; }
  @media screen and (min-width: 60em) {
    .events-services-list {
      width: 36%;
      float: left; } }

.events-services-list li {
  font-size: 0.85em;
  line-height: 2em; }

.icon-ok-circled2 {
  color: #0095da !important;
  margin-right: 0.5em;
  font-size: 1.2em; }

.margin-top {
  margin-top: 1.2em; }

.twitter-widget-2 {
  margin-right: 2%; }

.speak-link {
  font-size: 0.8em;
  margin-top: 10px;
  text-decoration: underline;
  display: block; }

.offers {
  background: #cad7e1;
  color: #ffffff;
  text-align: center;
  padding: 8.5em 0; }
  @media screen and (min-width: 40em) {
    .offers {
      background: #cad7e1; } }

.catering {
  width: 100%;
  background: #333333;
  margin-top: 1em;
  color: #ffffff;
  text-align: center;
  padding: 7.4em 0; }
  @media screen and (min-width: 50em) {
    .catering {
      width: 31%;
      float: left;
      background: #333333;
      margin-right: 4%; } }

.video-style {
  width: 100%;
  height: 100%; }

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0px;
  height: 0;
  overflow: hidden;
  margin-bottom: 1.5em;
  margin-top: 0; }

.other-links {
  margin-bottom: 1em; }

.news-article .icon-ok-circled2 {
  color: #0095da;
  margin-right: 0.5em;
  font-size: 1.2em; }

.news-article li {
  font-size: 0.85em;
  line-height: 2em; }

@media screen and (min-width: 80em) {
  .callback-image {
    background: url(/public/20220314151141oe_/https://www.shsc.scot/Content/images/callback-bg.png);
    background-repeat: no-repeat;
    background-position: 80px 57px;
    background-size: 300px 122px; } }

.map-full-width {
  width: 100%;
  height: 380px; }

.contact-details {
  background: #faf9f7;
  border: 5px solid #e9e3d7;
  padding: 1em;
  display: block; }
  @media screen and (min-width: 50em) {
    .contact-details {
      border: none;
      background: #ffffff;
      position: absolute !important;
      top: 0 !important;
      z-index: 9999; } }

#map-canvas {
  z-index: 0;
  position: relative; }

.map-wrapper {
  position: relative; }

.accordion li:nth-child(2n+1) {
  background: #f6f5f2; }

.accordion li:nth-child(2n+2) {
  background: #faf9f7; }

.icon-first-name {
  background: url(/public/20220314151141oe_/https://www.shsc.scot/Content/images/icons/icon-user.png);
  background-color: #f8fbfe;
  background-repeat: no-repeat;
  background-size: 54px 54px; }

.icon-last-name {
  background: url(/public/20220314151141oe_/https://www.shsc.scot/Content/images/icons/icon-user.png);
  background-color: #f8fbfe;
  background-repeat: no-repeat;
  background-size: 54px 54px; }

.icon-phone-number {
  background: url(/public/20220314151141oe_/https://www.shsc.scot/Content/images/icons/phone-number.png);
  background-color: #f8fbfe;
  background-repeat: no-repeat;
  background-size: 54px 54px; }

.icon-room {
  background: url(/public/20220314151141oe_/https://www.shsc.scot/Content/images/icons/icon-room.png);
  background-color: #f8fbfe;
  background-repeat: no-repeat;
  background-size: 54px 54px; }

.icon-date {
  background: url(/public/20220314151141oe_/https://www.shsc.scot/Content/images/icons/icon-date.png);
  background-color: #f8fbfe;
  background-repeat: no-repeat;
  background-size: 54px 54px; }

.icon-duration {
  background: url(/public/20220314151141oe_/https://www.shsc.scot/Content/images/icons/icon-duration.png);
  background-color: #f8fbfe;
  background-repeat: no-repeat;
  background-size: 54px 54px; }

.icon-start-time {
  background: url(/public/20220314151141oe_/https://www.shsc.scot/Content/images/icons/icon-start-time.png);
  background-color: #f8fbfe;
  background-repeat: no-repeat;
  background-size: 54px 54px; }

.icon-number-of-delegates {
  background: url(/public/20220314151141oe_/https://www.shsc.scot/Content/images/icons/icon-delagates.png);
  background-color: #f8fbfe;
  background-repeat: no-repeat;
  background-size: 54px 54px; }

.icon-email {
  background: url(/public/20220314151141oe_/https://www.shsc.scot/Content/images/icons/icon-email.png);
  background-color: #f8fbfe;
  background-repeat: no-repeat;
  background-size: 54px 54px; }

.unique-icon-style {
  color: #9fb2c0;
  float: left;
  margin-right: 10px;
  padding: 5px 0em 5px 1em;
  margin-top: 3px; }

.unique-icon-style-alt {
  color: #9fb2c0;
  float: left;
  margin-right: 10px;
  padding: 5px 0em 5px 1em;
  margin-top: 0px; }

.meeting-room-header {
  position: absolute;
  bottom: -2px;
  background: white;
  padding: 0.4em; }

.testimonial blockquote {
  *zoom: 1;
  position: relative;
  margin-bottom: 2em; }
  .testimonial blockquote:before, .testimonial blockquote:after {
    content: "";
    display: table; }
  .testimonial blockquote:after {
    clear: both; }

.testimonial blockquote p {
  padding: 0;
  margin-bottom: 20px;
  font-style: italic;
  line-height: 24px;
  float: left; }
  @media screen and (min-width: 55em) {
    .testimonial blockquote p {
      padding-left: 40%; } }

.testimonial blockquote span {
  color: #c3cbd5; }

.testimonial blockquote cite {
  color: #FFFFFF;
  background: #7e92a8;
  padding: 0.8em 1em;
  width: 100%;
  display: block;
  bottom: 0;
  float: left; }
  @media screen and (min-width: 55em) {
    .testimonial blockquote cite {
      padding-left: 40%; } }

.testimonial .testimonial-image {
  display: none; }
  @media screen and (min-width: 55em) {
    .testimonial .testimonial-image {
      display: block;
      max-width: 35%;
      bottom: 0;
      position: absolute;
      z-index: 100; } }

.team-member-image {
  padding: 0.75em 0 0 0;
  position: relative; }

.team-member-image img {
  display: block;
  margin: 0 auto;
  width: 76%;
  bottom: 0;
  left: 0;
  right: 0;
  padding-top: 0em; }

.team-member--events {
  border: 1px solid #bea6cd;
  border-left: 8px solid #bea6cd; }

.team-member--meetings {
  border: 1px solid #d5db96;
  border-left: 8px solid #d5db96; }

.team-member--venue {
  border: 1px solid #9de1e7;
  border-left: 8px solid #9de1e7; }

.aside-nav ul {
  position: relative; }

.aside-nav li {
  background: #FFFFFF;
  margin-bottom: 2px;
  position: relative; }

.aside-nav li h3 {
  font-size: 1em;
  font-weight: 700;
  padding: 0.30em 56px 0.30em 0;
  display: block;
  webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.menu-trigger-alt {
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  min-height: 45px;
  text-align: center;
  line-height: 45px;
  cursor: pointer;
  display: block;
  border-radius: 2px; }

.aside-nav li {
  position: relative; }

.show-hide li {
  border-bottom: 1px rgba(255, 255, 255, 0.3) solid;
  margin-bottom: 0 !important; }

.show-hide li a {
  padding-left: 30px;
  font-size: 0.9em;
  display: block;
  padding-bottom: 6px;
  padding-top: 6px;
  border-bottom: 1px #ede8dd solid; }

.hidden {
  display: none; }

span.at300bs.at15t_facebook {
  background: url(/public/20220314151141oe_/https://www.shsc.scot/Content/images/icons/facebook-icon.png) !important;
  background-size: 28px 28px !important;
  width: 28px !important;
  height: 28px !important;
  background-repeat: no-repeat; }

span.at300bs.at15t_facebook:hover {
  opacity: 0.8; }

span.at300bs.at15t_twitter {
  background: url(/public/20220314151141oe_/https://www.shsc.scot/Content/images/icons/twitter-icon.png) !important;
  background-size: 28px 28px !important;
  width: 28px !important;
  height: 28px !important;
  background-repeat: no-repeat; }

span.at300bs.at15t_twitter:hover {
  opacity: 0.8; }

span.at300bs.at15t_google_plusone_share {
  background: url(/public/20220314151141oe_/https://www.shsc.scot/Content/images/icons/gplus-icon.png) !important;
  background-size: 28px 28px !important;
  width: 28px !important;
  height: 28px !important;
  background-repeat: no-repeat; }

span.at300bs.at15t_google_plusone_share:hover {
  opacity: 0.8; }

span.at300bs.at15t_linkedin {
  background: url(/public/20220314151141oe_/https://www.shsc.scot/Content/images/icons/linkedin-icon.png) !important;
  background-size: 28px 28px !important;
  width: 28px !important;
  height: 28px !important;
  background-repeat: no-repeat; }

span.at300bs.at15t_linkedin:hover {
  opacity: 0.8; }

.map-contact-info p {
  margin-bottom: 0em !important; }

.check-avail-box {
  padding: 1em;
  border: 1px solid #cccccc; }

.person-profile h3 {
  font-size: 1.2em;
  margin-top: 10px; }

.person-profile h4 {
  font-size: 0.825em;
  margin-bottom: 10px;
  font-style: italic;
  color: #333333; }

.person-profile p {
  margin-bottom: 0; }

.main {
  margin-bottom: 40px; }

.main-column-left {
  width: 100%;
  padding-bottom: 10px;
  position: relative; }
  @media screen and (min-width: 60em) {
    .main-column-left {
      width: 66%;
      margin-right: 4%;
      float: left; } }

.news-lister {
  width: 100%;
  margin-bottom: 20px; }
  @media screen and (min-width: 40em) {
    .news-lister {
      width: 46%;
      margin-right: 4%;
      float: left; } }

.news-lister-image {
  width: 100%; }

.news-lister-intro {
  margin-top: 10px;
  margin-bottom: 10px; }

.news-lister h3 {
  color: #0095da;
  font-size: 1.2em;
  margin-bottom: 10px; }

.news-lister-date {
  margin: 0 0 4px 0;
  font-weight: 700; }

.news-lister p {
  font-size: 0.85em; }

.full-width {
  width: 100%;
  display: block;
  margin-top: 30px;
  text-align: center; }

.sidebar {
  width: 100%; }
  @media screen and (min-width: 60em) {
    .sidebar {
      width: 30%;
      float: left; } }

.categories ul li a {
  color: #4997df;
  font-weight: 400;
  font-size: 0.9em;
  display: block;
  border-bottom: 1px #ede8dd solid;
  padding: 10px 0; }

.share ul li a {
  color: #0095da;
  font-weight: 400;
  font-size: 1.6em;
  display: block;
  padding: 5px 0;
  float: left;
  margin-right: 12px; }

.sidebar h3 {
  margin-bottom: 10px; }

.breadcrumb {
  margin-bottom: 25px; }

.breadcrumb ul li {
  float: left;
  font-size: 0.75em;
  margin-right: 10px;
  color: #bbbbbb; }

.breadcrumb span {
  margin-left: 10px; }

.breadcrumb ul li a {
  color: #0095da; }

.news-article {
  width: 100%;
  float: left; }
  @media screen and (min-width: 60em) {
    .news-article {
      width: 48%;
      margin-right: 4%; } }

.news-article-image {
  width: 100%;
  margin-bottom: 20px; }

.news-article h2 {
  font-size: 2em;
  margin-bottom: 20px; }

.news-article h3 {
  font-size: 1.6em;
  margin-bottom: 20px; }

.news-article h4 {
  font-size: 1.3em;
  margin-bottom: 20px; }

.category-info {
  font-size: 0.75em; }

.text-with-image p {
  width: 100%; }
  @media screen and (min-width: 40em) {
    .text-with-image p {
      width: 48%;
      margin-right: 2%;
      float: left; } }

.text-with-image .image {
  width: 100%;
  margin-top: 20px; }
  @media screen and (min-width: 40em) {
    .text-with-image .image {
      width: 48%;
      float: left; } }

.text-with-image .image img {
  width: 100%; }
  @media screen and (min-width: 40em) {
    .text-with-image .image img {
      width: 100%;
      float: left; } }

.text-with-image .image p {
  width: 100%;
  margin-top: 5px; }
  @media screen and (min-width: 40em) {
    .text-with-image .image p {
      width: 100%;
      float: left; } }

.quote {
  margin-top: 30px; }

.quote .quotation-mark {
  font-size: 4em;
  margin-bottom: 0; }

.quote .quote-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  width: 100%;
  float: left;
  font-style: italic;
  margin-top: 0;
  border-left: 5px #CCCCCC solid;
  padding-left: 10px; }

.banner-top img {
  margin-bottom: 10px;
  width: 100%; }

@media screen and (min-width: 55em) {
  .banner-text-content {
    padding: 1em 0.3em;
    margin-top: -190px !important;
    background-color: #FFFFFF !important;
    width: 80%;
    position: relative;
    z-index: 99; } }

.banner-text-content h2 {
  font-size: 2em;
  margin-top: 0;
  margin-bottom: 20px; }

.banner-text-content p {
  font-size: 1em;
  margin-bottom: 30px; }

.details-left h4 {
  font-size: 1.2em;
  margin-top: 20px; }
  @media screen and (min-width: 60em) {
    .details-left h4 {
      margin-top: 0; } }

.date span {
  font-weight: 700; }

.details-right ul {
  font-size: 0.85em;
  margin-bottom: 20px; }

.details-right span {
  font-weight: 700; }

.details-left {
  width: 100%; }
  @media screen and (min-width: 60em) {
    .details-left {
      width: 40%;
      float: left;
      margin-right: 2%; } }

.details-right {
  width: 100%; }
  @media screen and (min-width: 60em) {
    .details-right {
      width: 26%;
      float: left;
      margin-top: 60px; } }

.news-article h5 {
  display: inline-block;
  width: 20%;
  font-size: 0.85em;
  margin-right: 14px; }

.news-article span {
  display: inline-block;
  font-size: 0.85em; }

.event-article-image {
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%; }

.speaker {
  margin-bottom: 40px; }

.guest-speaker {
  border-radius: 100px;
  width: 35%;
  margin-right: 4%;
  float: left;
  max-width: 160px; }

.guest-speakers {
  margin-top: 30px; }

.speaker-info {
  width: 61%;
  float: left; }

.speaker-info h4 {
  font-size: 1.2em;
  margin-bottom: 10px; }

.speaker-info h5 {
  font-size: 0.85em;
  margin-bottom: 10px;
  width: 100%;
  font-style: italic; }

.speaker-blurb {
  font-size: 0.85em; }

.speaker-info ul li {
  float: left;
  margin-right: 10px; }

.connect-text {
  font-size: 0.75em;
  font-style: italic;
  font-weight: 700;
  margin-top: 4px;
  display: block;
  width: 100%;
  margin-bottom: 10px; }
  @media screen and (min-width: 40em) {
    .connect-text {
      width: 48%;
      float: left;
      display: inline;
      width: auto; } }

.generic-message-text-area {
  background-color: #f8fbfe;
  color: #6c7886;
  border: #e8e8e8 1px solid;
  width: 100%;
  height: 180px;
  margin-bottom: 14px;
  padding: 1em 1em 1em 1em;
  -webkit-box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.05);
  -webkit-border-radius: 4px 4px 4px 4px;
  border-radius: 4px 4px 4px 4px;
  font-size: 0.8em; }

.footer {
  background: #ffffff;
  border-top: 1px solid #dedede;
  position: relative; }

.logo-footer img {
  width: 40%;
  margin-bottom: 20px;
  max-width: 140px; }
  @media screen and (min-width: 60em) {
    .logo-footer img {
      width: 100%; } }

.NHS-logo img {
  max-width: 85px;
  width: 100%; }

.footer-push-special {
  margin-top: 4px; }

@media screen and (min-width: 40em) {
  .news-lister-details-left {
    width: 66%; } }

.responsive-accordion {
  margin: 0 0 20px 0;
  padding: 0;
  list-style-type: none; }

.responsive-accordion li {
  margin: 0 0 0 0;
  padding: 0; }

.responsive-accordion li:last-child {
  margin-bottom: 0; }

.responsive-accordion li .responsive-accordion-head {
  cursor: pointer; }

.responsive-accordion li .responsive-accordion-head.active {
  font-weight: bold; }

.responsive-accordion-default.responsive-accordion li .responsive-accordion-head {
  border: 1px solid #edece8;
  border-bottom: none;
  color: #6c7886;
  padding: 10px 30px 10px 10px;
  line-height: normal;
  position: relative; }

.responsive-accordion-default.responsive-accordion li:last-child .responsive-accordion-head {
  border-bottom: 1px solid #DDD; }

.responsive-accordion-default.responsive-accordion li .responsive-accordion-head i {
  position: absolute;
  top: 12px;
  right: 10px; }

.responsive-accordion-default.responsive-accordion li .responsive-accordion-panel {
  border: 1px solid #DDD;
  border-top: 0;
  padding: 20px;
  background: #FFF; }

.accordion {
  width: 100%; }
  @media screen and (min-width: 40em) {
    .accordion {
      width: 100%;
      float: left;
      margin-right: 4%; } }

.accordion-image img {
  float: left;
  display: block;
  width: 26%; }

.accordion-text {
  float: left;
  display: inline-block;
  width: 70%;
  margin-left: 4%; }

.pull-up {
  margin-bottom: 5px; }

.button-styles {
  margin-top: 10px; }

.responsive-accordion-head span {
  float: right; }

/*
 * jQuery FlexSlider v2.2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */
/* Browser Resets
*********************************/
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
  outline: none; }

.slides,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none; }

/* Icon Fonts
*********************************/
/* Font-face Icons */
@font-face {
  font-family: 'flexslider-icon';
  src: url("/public/20220314151141oe_/https://www.shsc.scot/Content/fonts/flexslider-icon.eot");
  src: url("/public/20220314151141oe_/https://www.shsc.scot/Content/fonts/flexslider-icon.eot#iefix") format("embedded-opentype"), url("/public/20220314151141oe_/https://www.shsc.scot/Content/fonts/flexslider-icon.woff") format("woff"), url("/public/20220314151141oe_/https://www.shsc.scot/Content/fonts/flexslider-icon.ttf") format("truetype"), url("/public/20220314151141oe_/https://www.shsc.scot/Content/fonts/flexslider-icon.svg#flexslider-icon") format("svg");
  font-weight: normal;
  font-style: normal; }

/* FlexSlider Necessary Styles
*********************************/
.flexslider {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 0;
  display: block; }
  @media screen and (min-width: 44em) {
    .flexslider {
      min-height: 300px; } }
  @media screen and (min-width: 60em) {
    .flexslider {
      min-height: 320px; } }

.slider {
  position: relative;
  float: left;
  width: 100%; }

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden; }

/* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides > li:first-child {
  display: block;
  -webkit-backface-visibility: visible; }

.flexslider.loading .slides > li:first-child {
  opacity: 1 !important; }

.flexslider .slides img {
  display: block; }

.flex-pauseplay span {
  text-transform: capitalize; }

/* Clearfix for the .slides element */
.slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

html[xmlns] .slides {
  display: block; }

* html .slides {
  height: 1%; }

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {
  display: block; }

/* FlexSlider Default Theme
*********************************/
.flexslider {
  margin: 0 0 0 0;
  background: #fff;
  position: relative;
  zoom: 1; }

.flexslider li {
  list-style: none;
  margin: 0; }

.flex-viewport {
  max-height: 3000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease; }

.loading .flex-viewport {
  max-height: 300px; }

.flexslider .slides {
  zoom: 1; }

.carousel li {
  margin-right: 5px; }

/* Direction Nav */
.flexslider-home .flex-direction-nav {
  *height: 0;
  display: none; }
  @media screen and (min-width: 44em) {
    .flexslider-home .flex-direction-nav {
      display: block; } }

.flexslider-home .flex-direction-nav a {
  display: block;
  font-size: 0;
  width: 70px;
  height: 70px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  cursor: pointer;
  color: #6c7886;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease; }

.flex-direction-nav a {
  display: none;
  font-size: 0;
  width: 70px;
  height: 70px;
  margin: 0 5px 0 5px;
  position: absolute;
  top: 40%;
  z-index: 10;
  cursor: pointer;
  color: #ffffff;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease; }

.flex-direction-nav .flex-prev {
  left: 0px;
  margin-top: -15px; }

.flex-direction-nav .flex-next {
  right: 0px;
  text-align: right;
  margin-top: -15px; }

.flexslider:hover .flex-prev {
  opacity: 1.0; }

.flexslider:hover .flex-next {
  opacity: 1.0; }

.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {
  opacity: 0.7; }

.flexslider-home .flex-direction-nav {
  max-width: 1288px;
  margin: 0 auto;
  position: relative;
  height: 68px;
  margin-top: -150px; }
  @media screen and (min-width: 50em) {
    .flexslider-home .flex-direction-nav {
      margin-top: -228px; } }
  @media screen and (min-width: 70em) {
    .flexslider-home .flex-direction-nav {
      margin-top: -268px; } }

.flexslider-home .flex-direction-nav a:before {
  font-family: "flexslider-icon";
  font-size: 40px;
  display: inline-block;
  content: '\f001'; }

.flexslider-home .flex-direction-nav a.flex-next:before {
  content: '\f002'; }

.flex-direction-nav a:before {
  font-family: "flexslider-icon";
  font-size: 28px;
  display: inline-block;
  content: '\f001'; }

.flex-direction-nav a.flex-next:before {
  content: '\f002'; }

/* Pause/Play */
.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000; }

.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: '\f004'; }

.flex-pauseplay a:hover {
  opacity: 1; }

.flex-pauseplay a.flex-play:before {
  content: '\f003'; }

/* Control Nav */
.flexslider-home .flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: 20px;
  text-align: left;
  z-index: 200;
  display: none; }
  @media screen and (min-width: 44em) {
    .flexslider-home .flex-control-nav {
      bottom: 30px; } }

.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline; }

.flex-control-paging li a {
  width: 16px;
  height: 16px;
  display: block;
  background: #455262;
  cursor: pointer;
  text-indent: -9999px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3); }

.flex-control-paging li a:hover {
  background: rgba(69, 82, 98, 0.8); }

.flex-control-paging li a.flex-active {
  background: #000;
  background: #99d34b;
  cursor: default; }

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden; }

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0; }

.flex-control-thumbs img {
  width: 100%;
  display: block;
  opacity: .7;
  cursor: pointer; }

.flex-control-thumbs img:hover {
  opacity: 1; }

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default; }

@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px; }

  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px; } }
.flexslider .slides li {
  background-color: #f3f2ee !important; }
  @media screen and (min-width: 50em) {
    .flexslider .slides li {
      background-position: -130px 0;
      background-repeat: no-repeat;
      background-size: cover; } }

@media screen and (min-width: 50em) {
  .hero-text {
    width: 60%;
    padding-right: 2em; } }

.slides h2 {
  font-size: 1.6em;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 10px;
  text-shadow: 0 1px 0 #FFFFFF;
  margin-top: 20px; }
  @media screen and (min-width: 50em) {
    .slides h2 {
      margin-top: 40px !important;
      font-size: 1.9em;
      margin-bottom: 20px !important; } }
  @media screen and (min-width: 80em) {
    .slides h2 {
      font-size: 2.5em;
      padding-right: 2em;
      margin-top: 100px !important;
      margin-bottom: 14px !important;
      width: 60%; } }

.hero-text p {
  margin-bottom: 48px;
  font-size: 1em;
  text-shadow: 0 1px 0 #FFFFFF;
  color: #495358;
  font-size: 0.9em; }
  @media screen and (min-width: 50em) {
    .hero-text p {
      width: 80%;
      padding-bottom: 0;
      font-size: 1em;
      font-weight: 600; } }

.staff-hero-image {
  max-width: 100px;
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: -30px;
  z-index: 100; }
  @media screen and (min-width: 50em) {
    .staff-hero-image {
      max-width: 290px;
      left: -206px; } }
  @media screen and (min-width: 74em) {
    .staff-hero-image {
      max-width: 410px;
      position: absolute;
      z-index: 9999;
      left: -346px; } }

.staff-hero-info {
  float: right;
  width: 90%;
  position: relative; }
  @media screen and (min-width: 50em) {
    .staff-hero-info {
      width: 35%;
      float: right;
      display: block;
      bottom: 0;
      margin-top: -240px;
      padding: 2.5em 0 0 0; } }
  @media screen and (min-width: 74em) {
    .staff-hero-info {
      width: 25%;
      float: right;
      display: block;
      bottom: 0;
      margin-top: -150px;
      padding: 2.5em 0 0 0; } }

.staff-info-blurb {
  padding: 0 0 0 4em;
  background: #ffffff; }

.staff-info-blurb p {
  font-weight: 700;
  font-size: 0.8em;
  padding: 0.5em;
  margin: 0;
  color: #6c7886; }
  @media screen and (min-width: 50em) {
    .staff-info-blurb p {
      font-size: 0.75em;
      padding: 1em; } }

.name-and-position {
  display: none; }
  @media screen and (min-width: 50em) {
    .name-and-position {
      display: block;
      padding: 0 0 0 4.8em;
      text-shadow: 0 1px 0 #FFFFFF; } }

.name-and-position h3 {
  color: #495358;
  margin-bottom: 0.2em;
  font-size: 0.9em; }

.name-and-position p {
  margin-bottom: 1em;
  font-family: "proxima-nova",sans-serif;
  color: #6c7886;
  font-size: 0.7em; }

.staff-info-button {
  padding: 0.4em 0 0.4em 5.5em !important;
  width: 100% !important;
  display: block;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.8em;
  font-weight: 700; }
  @media screen and (min-width: 50em) {
    .staff-info-button {
      padding: 1.2em 0 1.4em 5.5em !important;
      font-size: 0.9em; } }

/* Globals
****************/
.hero-transparency {
  display: none; }
  @media screen and (min-width: 50em) {
    .hero-transparency {
      background-color: rgba(255, 255, 255, 0.5);
      display: block;
      height: 7px;
      z-index: 9999;
      position: absolute;
      bottom: -200px;
      width: 100%;
      display: none; } }

/* Events Hero
****************/
.events-image-width {
  max-width: 120px;
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: -70px;
  z-index: 100; }
  @media screen and (min-width: 50em) {
    .events-image-width {
      max-width: 270px;
      left: -190px; } }
  @media screen and (min-width: 74em) {
    .events-image-width {
      max-width: 270px;
      position: absolute;
      z-index: 9999;
      left: -214px; } }

.venue-image-width {
  max-width: 120px;
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: -39px;
  z-index: 100; }
  @media screen and (min-width: 50em) {
    .venue-image-width {
      max-width: 270px;
      left: -190px; } }
  @media screen and (min-width: 74em) {
    .venue-image-width {
      max-width: 310px;
      position: absolute;
      z-index: 9999;
      left: -198px; } }

.slides li.innerhero {
  background-color: #edf1f2; }
  @media screen and (min-width: 50em) {
    .slides li.innerhero {
      width: 100%;
      float: left;
      display: block;
      background-image: url(https://nrs.preservation.mirrorweb.com/public/20220314151141oe_/http://localhost:52330/media/1059/events-bg.png);
      background-position: 0px 0;
      background-repeat: no-repeat;
      background-size: cover; } }

.staff-hero-info-innerhero {
  float: right;
  width: 90%;
  position: relative; }
  @media screen and (min-width: 50em) {
    .staff-hero-info-innerhero {
      width: 35%;
      float: right;
      display: block;
      bottom: 0;
      margin-top: -210px;
      padding: 2.5em 0 0 0; } }
  @media screen and (min-width: 74em) {
    .staff-hero-info-innerhero {
      width: 25%;
      float: right;
      display: block;
      bottom: 0;
      margin-top: -216px;
      padding: 2.5em 0 0 0; } }

.innerhero h2 {
  font-size: 1.6em;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 10px;
  text-shadow: 0 1px 0 #FFFFFF;
  margin-top: 20px; }
  @media screen and (min-width: 50em) {
    .innerhero h2 {
      margin-top: 30px !important;
      font-size: 1.9em;
      margin-bottom: 20px !important; } }
  @media screen and (min-width: 80em) {
    .innerhero h2 {
      font-size: 2.90em;
      padding-right: 2em;
      margin-top: 50px !important;
      margin-bottom: 0px !important; } }

.innerhero .staff-info-button {
  padding: 0.4em 0 0.4em 5.5em !important;
  width: 100% !important;
  display: block;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.8em;
  font-weight: 700; }
  @media screen and (min-width: 50em) {
    .innerhero .staff-info-button {
      padding: 1.2em 0 1.4em 5.5em !important;
      font-size: 0.9em; } }

/* Venue Hero
****************/
.slides li.innerhero.innerhero-venue-bg {
  background-color: #f6f6f5 !important; }
  @media screen and (min-width: 50em) {
    .slides li.innerhero.innerhero-venue-bg {
      background-position: -250px 0 !important;
      background-repeat: no-repeat !important;
      background-size: cover !important; } }

.editor-content {
  position: relative !important; }

.editor-content p {
  font-size: 0.9em; }

.editor-content h1 {
  display: inline-block;
  color: #455262;
  border-bottom: 1px solid #d9d0b9;
  padding-bottom: 0.1em;
  font-size: 2em;
  margin-bottom: 0.5em; }

.editor-content h2 {
  font-weight: 400;
  color: #455262;
  letter-spacing: 1px;
  font-size: 1.4em;
  text-transform: uppercase;
  margin-bottom: 1em;
  margin-top: 1em; }

.editor-content h3 {
  font-weight: 700;
  color: #455262;
  letter-spacing: 1px;
  font-size: 1.2em;
  margin-bottom: 1em;
  margin-top: 1em; }

.editor-content ul {
  margin-bottom: 1em !important;
  list-style: disc !important;
  margin-left: 2.1em;
  font-size: 0.9em; }

.editor-content ul li {
  list-style: disc !important; }

.editor-content ol {
  margin-bottom: 1em !important;
  list-style-type: decimal;
  margin-left: 2.1em;
  font-size: 0.9em; }

.editor-content a {
  color: #4997df; }

.editor-content a:hover {
  text-decoration: underline; }

.editor-content blockquote {
  padding-left: 2em;
  position: relative;
  margin-top: 1.5em;
  margin-bottom: 1.5em; }

.editor-content blockquote:before {
  color: #ddd0b3;
  content: '\e83f';
  font-family: 'fontello';
  font-size: 1.2em;
  position: absolute;
  left: 0; }

.editor-content blockquote p {
  border-left: 5px solid #ddd0b3;
  padding-left: 1em;
  font-style: italic;
  font-size: 1.0em; }

.editor-content blockquote cite {
  color: #7a90a6;
  font-style: normal !important;
  padding-left: 1em; }

.editor-content img {
  margin-bottom: 0.5em; }

.editor-content .videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0; }

.editor-content .videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }
