@charset "UTF-8";
@import 'https://fonts.googleapis.com/css?family=PT+Sans:400,700,400italic,700italic';
/**
 * Foundation for Sites by ZURB
 * Version 6.2.3
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
   * 1. Set default font family to sans-serif.
   * 2. Prevent iOS and IE text size adjust after device orientation change,
   *    without disabling user zoom.
   */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
   * Remove default margin.
   */
body {
  margin: 0; }

/* HTML5 display definitions
     ========================================================================== */
/**
   * Correct `block` display not defined for any HTML5 element in IE 8/9.
   * Correct `block` display not defined for `details` or `summary` in IE 10/11
   * and Firefox.
   * Correct `block` display not defined for `main` in IE 11.
   */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
   * 1. Correct `inline-block` display not defined in IE 8/9.
   * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
   */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
   * Prevent modern browsers from displaying `audio` without controls.
   * Remove excess height in iOS 5 devices.
   */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
   * Address `[hidden]` styling not present in IE 8/9/10.
   * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
   */
[hidden],
template {
  display: none; }
  
/* Links
     ========================================================================== */
/**
   * Remove the gray background color from active links in IE 10.
   */
a {
  background-color: transparent; }

/**
   * Improve readability of focused elements when they are also in an
   * active/hover state.
   */
a:active,
a:hover {
  outline: 0; }
  
/*  Focus website items for accessibility
===========================================*/

/*Change the anchor on tag with a class of .img to display flex so it can gain focus when tabbing through the 'View all news' page */
a.img {
	display: flex;
	flex-direction: column;
}

/*Add the left and right arrows for the banner style focus for those arrows*/

.slick-prev:before {
  content: url(../images/style/BannerArrowLeft.svg) !important;
}

.slick-next:before {
  content: url(../images/style/BannerArrowRight.svg) !important;
}

.slick-arrow.slick-prev:focus, .slick-arrow.slick-next:focus {
	border: 2px solid #ffffff;
}

/* Style the dots on the notification banner when it receives focus */
.slick-dots li:focus-within {
	display: inline-table;
	padding: 0.3rem;
	border: 2px solid #ffffff;
	box-shadow: 8px 8px 29px -7px rgba(0,0,0,0.75);
	-webkit-box-shadow: 8px 8px 29px -7px rgba(0,0,0,0.75);
	-moz-box-shadow: 8px 8px 29px -7px rgba(0,0,0,0.75);
}

/* Highlight searchbox when it gets focus */
.search_row form [type='search']:focus, .search_row form [type='text']:focus {
	background: rgba(255,255,204,0.7) !important;
	box-shadow: 8px 8px 29px -7px rgba(0,0,0,0.75) !important;
	-webkit-box-shadow: 8px 8px 29px -7px rgba(0,0,0,0.75) !important;
	-moz-box-shadow: 8px 8px 29px -7px rgba(0,0,0,0.75) !important;
}
  
/*Highlight tabbed news items with focus*/
:focus, a.img img:focus {
	/*border: 2px solid red !important;*/
	box-shadow: 8px 8px 29px -7px rgba(0,0,0,0.75);
	-webkit-box-shadow: 8px 8px 29px -7px rgba(0,0,0,0.75);
	-moz-box-shadow: 8px 8px 29px -7px rgba(0,0,0,0.75);
}

/* Planning applications drop down */
#appSelectWrapper {
	text-align: center;
}

#pages {
	margin-bottom: 1rem !important;
}

/* Text-level semantics
     ========================================================================== */
/**
   * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
   */
abbr[title] {
  border-bottom: 1px dotted; }

/**
   * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
   */
b,
strong {
  font-weight: bold; }

/**
   * Address styling not present in Safari and Chrome.
   */
dfn {
  font-style: italic; }

/**
   * Address variable `h1` font-size and margin within `section` and `article`
   * contexts in Firefox 4+, Safari, and Chrome.
   */
h1, .h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
   * Address styling not present in IE 8/9.
   */
mark {
  background: #ff0;
  color: #000; }

/**
   * Address inconsistent and variable font size in all browsers.
   */
small {
  font-size: 80%; }

/**
   * Prevent `sub` and `sup` affecting `line-height` in all browsers.
   */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
     ========================================================================== */
/**
   * Remove border when inside `a` element in IE 8/9/10.
   */
img {
  border: 0; }

/**
   * Correct overflow not hidden in IE 9/10/11.
   */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
     ========================================================================== */
/**
   * Address margin not present in IE 8/9 and Safari.
   */
figure {
  margin: 1em 40px; }

/**
   * Address differences between Firefox and other browsers.
   */
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/**
   * Contain overflow in all browsers.
   */
pre {
  overflow: auto; }

/**
   * Address odd `em`-unit font size rendering in all browsers.
   */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
     ========================================================================== */
/**
   * Known limitation: by default, Chrome and Safari on OS X allow very limited
   * styling of `select`, unless a `border` property is set.
   */
/**
   * 1. Correct color not being inherited.
   *    Known issue: affects color of disabled elements.
   * 2. Correct font properties not being inherited.
   * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
   */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
   * Address `overflow` set to `hidden` in IE 8/9/10/11.
   */
button {
  overflow: visible; }

/**
   * Address inconsistent `text-transform` inheritance for `button` and `select`.
   * All other form control elements do not inherit `text-transform` values.
   * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
   * Correct `select` style inheritance in Firefox.
   */
button,
select {
  text-transform: none; }

/**
   * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
   *    and `video` controls.
   * 2. Correct inability to style clickable `input` types in iOS.
   * 3. Improve usability and consistency of cursor style between image-type
   *    `input` and others.
   */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
   * Re-set default cursor for disabled elements.
   */
button[disabled],
html input[disabled] {
  cursor: not-allowed; }

/**
   * Remove inner padding and border in Firefox 4+.
   */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
   * Address Firefox 4+ setting `line-height` on `input` using `!important` in
   * the UA stylesheet.
   */
input {
  line-height: normal; }

/**
   * It's recommended that you don't attempt to style these elements.
   * Firefox's implementation doesn't respect box-sizing, padding, or width.
   *
   * 1. Address box sizing set to `content-box` in IE 8/9/10.
   * 2. Remove excess padding in IE 8/9/10.
   */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
   * Fix the cursor style for Chrome's increment/decrement buttons. For certain
   * `font-size` values of the `input`, it causes the cursor style of the
   * decrement button to change from `default` to `text`.
   */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
   * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
   * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
   */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 2 */ }

/**
   * Remove inner padding and search cancel button in Safari and Chrome on OS X.
   * Safari (but not Chrome) clips the cancel button when the search input has
   * padding (and `textfield` appearance).
   */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
   * Define consistent border, margin, and padding.
   * [NOTE] We don't enable this ruleset in Foundation, because we want the <fieldset> element to have plain styling.
   */
/* fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
  } */
/**
   * 1. Correct `color` not being inherited in IE 8/9/10/11.
   * 2. Remove padding so people aren't caught out if they zero out fieldsets.
   */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
   * Remove default vertical scrollbar in IE 8/9/10/11.
   */
textarea {
  overflow: auto; }

/**
   * Don't inherit the `font-weight` (applied by a rule above).
   * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
   */
optgroup {
  font-weight: bold; }

/* Tables
     ========================================================================== */
/**
   * Remove most spacing between table cells.
   */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

.foundation-mq {
  font-family: "small=0em&medium=48.75em&large=64em&xlarge=75em&xxlarge=90em"; }

html {
  font-size: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit; }

body {
  padding: 0;
  margin: 0;
  font-family: "PT Sans", Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.5;
  color: #3a3a3a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px;
  border-radius: 0.3125rem; }

select {
  width: 100%;
  border-radius: 0.3125rem; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important; }

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  padding: 0;
  border: 0;
  border-radius: 0.3125rem;
  line-height: 1; }
  [data-whatinput='mouse'] button {
    outline: 0; }

.is-visible {
  display: block !important; }

.is-hidden {
  display: none !important; }

.row {
  max-width: 76.25rem;
  margin-left: auto;
  margin-right: auto; }
  .row::before, .row::after {
    display: table;
    content: ' '; }
  .row::after {
    clear: both; }
  .row.collapse > .column, .row.collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .row .row {
    margin-left: -0.625rem;
    margin-right: -0.625rem; }
    @media screen and (min-width: 48.75em) {
      .row .row {
        margin-left: -0.9375rem;
        margin-right: -0.9375rem; } }
    .row .row.collapse {
      margin-left: 0;
      margin-right: 0; }
  .row.expanded {
    max-width: none; }
    .row.expanded .row {
      margin-left: auto;
      margin-right: auto; }

.column, .columns {
  width: 100%;
  float: left;
  padding-left: 0.625rem;
  padding-right: 0.625rem; }
  @media screen and (min-width: 48.75em) {
    .column, .columns {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem; } }
  .column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
    float: right; }
  .column.end:last-child:last-child, .end.columns:last-child:last-child {
    float: left; }

.column.row.row, .row.row.columns {
  float: none; }
  .row .column.row.row, .row .row.row.columns {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0; }

.small-1 {
  width: 8.33333%; }

.small-push-1 {
  position: relative;
  left: 8.33333%; }

.small-pull-1 {
  position: relative;
  left: -8.33333%; }

.small-offset-0 {
  margin-left: 0%; }

.small-2 {
  width: 16.66667%; }

.small-push-2 {
  position: relative;
  left: 16.66667%; }

.small-pull-2 {
  position: relative;
  left: -16.66667%; }

.small-offset-1 {
  margin-left: 8.33333%; }

.small-3 {
  width: 25%; }

.small-push-3 {
  position: relative;
  left: 25%; }

.small-pull-3 {
  position: relative;
  left: -25%; }

.small-offset-2 {
  margin-left: 16.66667%; }

.small-4 {
  width: 33.33333%; }

.small-push-4 {
  position: relative;
  left: 33.33333%; }

.small-pull-4 {
  position: relative;
  left: -33.33333%; }

.small-offset-3 {
  margin-left: 25%; }

.small-5 {
  width: 41.66667%; }

.small-push-5 {
  position: relative;
  left: 41.66667%; }

.small-pull-5 {
  position: relative;
  left: -41.66667%; }

.small-offset-4 {
  margin-left: 33.33333%; }

.small-6 {
  width: 50%; }

.small-push-6 {
  position: relative;
  left: 50%; }

.small-pull-6 {
  position: relative;
  left: -50%; }

.small-offset-5 {
  margin-left: 41.66667%; }

.small-7 {
  width: 58.33333%; }

.small-push-7 {
  position: relative;
  left: 58.33333%; }

.small-pull-7 {
  position: relative;
  left: -58.33333%; }

.small-offset-6 {
  margin-left: 50%; }

.small-8 {
  width: 66.66667%; }

.small-push-8 {
  position: relative;
  left: 66.66667%; }

.small-pull-8 {
  position: relative;
  left: -66.66667%; }

.small-offset-7 {
  margin-left: 58.33333%; }

.small-9 {
  width: 75%; }

.small-push-9 {
  position: relative;
  left: 75%; }

.small-pull-9 {
  position: relative;
  left: -75%; }

.small-offset-8 {
  margin-left: 66.66667%; }

.small-10 {
  width: 83.33333%; }

.small-push-10 {
  position: relative;
  left: 83.33333%; }

.small-pull-10 {
  position: relative;
  left: -83.33333%; }

.small-offset-9 {
  margin-left: 75%; }

.small-11 {
  width: 91.66667%; }

.small-push-11 {
  position: relative;
  left: 91.66667%; }

.small-pull-11 {
  position: relative;
  left: -91.66667%; }

.small-offset-10 {
  margin-left: 83.33333%; }

.small-12 {
  width: 100%; }

.small-offset-11 {
  margin-left: 91.66667%; }

.small-up-1 > .column, .small-up-1 > .columns {
  width: 100%;
  float: left; }
  .small-up-1 > .column:nth-of-type(1n), .small-up-1 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-1 > .column:nth-of-type(1n+1), .small-up-1 > .columns:nth-of-type(1n+1) {
    clear: both; }
  .small-up-1 > .column:last-child, .small-up-1 > .columns:last-child {
    float: left; }

.small-up-2 > .column, .small-up-2 > .columns {
  width: 50%;
  float: left; }
  .small-up-2 > .column:nth-of-type(1n), .small-up-2 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-2 > .column:nth-of-type(2n+1), .small-up-2 > .columns:nth-of-type(2n+1) {
    clear: both; }
  .small-up-2 > .column:last-child, .small-up-2 > .columns:last-child {
    float: left; }

.small-up-3 > .column, .small-up-3 > .columns {
  width: 33.33333%;
  float: left; }
  .small-up-3 > .column:nth-of-type(1n), .small-up-3 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-3 > .column:nth-of-type(3n+1), .small-up-3 > .columns:nth-of-type(3n+1) {
    clear: both; }
  .small-up-3 > .column:last-child, .small-up-3 > .columns:last-child {
    float: left; }

.small-up-4 > .column, .small-up-4 > .columns {
  width: 25%;
  float: left; }
  .small-up-4 > .column:nth-of-type(1n), .small-up-4 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-4 > .column:nth-of-type(4n+1), .small-up-4 > .columns:nth-of-type(4n+1) {
    clear: both; }
  .small-up-4 > .column:last-child, .small-up-4 > .columns:last-child {
    float: left; }

.small-up-5 > .column, .small-up-5 > .columns {
  width: 20%;
  float: left; }
  .small-up-5 > .column:nth-of-type(1n), .small-up-5 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-5 > .column:nth-of-type(5n+1), .small-up-5 > .columns:nth-of-type(5n+1) {
    clear: both; }
  .small-up-5 > .column:last-child, .small-up-5 > .columns:last-child {
    float: left; }

.small-up-6 > .column, .small-up-6 > .columns {
  width: 16.66667%;
  float: left; }
  .small-up-6 > .column:nth-of-type(1n), .small-up-6 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-6 > .column:nth-of-type(6n+1), .small-up-6 > .columns:nth-of-type(6n+1) {
    clear: both; }
  .small-up-6 > .column:last-child, .small-up-6 > .columns:last-child {
    float: left; }

.small-up-7 > .column, .small-up-7 > .columns {
  width: 14.28571%;
  float: left; }
  .small-up-7 > .column:nth-of-type(1n), .small-up-7 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-7 > .column:nth-of-type(7n+1), .small-up-7 > .columns:nth-of-type(7n+1) {
    clear: both; }
  .small-up-7 > .column:last-child, .small-up-7 > .columns:last-child {
    float: left; }

.small-up-8 > .column, .small-up-8 > .columns {
  width: 12.5%;
  float: left; }
  .small-up-8 > .column:nth-of-type(1n), .small-up-8 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-8 > .column:nth-of-type(8n+1), .small-up-8 > .columns:nth-of-type(8n+1) {
    clear: both; }
  .small-up-8 > .column:last-child, .small-up-8 > .columns:last-child {
    float: left; }

.small-collapse > .column, .small-collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

.small-collapse .row,
.expanded.row .small-collapse.row {
  margin-left: 0;
  margin-right: 0; }

.small-uncollapse > .column, .small-uncollapse > .columns {
  padding-left: 0.625rem;
  padding-right: 0.625rem; }

.small-centered {
  margin-left: auto;
  margin-right: auto; }
  .small-centered, .small-centered:last-child:not(:first-child) {
    float: none;
    clear: both; }

.small-uncentered,
.small-push-0,
.small-pull-0 {
  position: static;
  margin-left: 0;
  margin-right: 0;
  float: left; }

@media screen and (min-width: 48.75em) {
  .medium-1 {
    width: 8.33333%; }
  .medium-push-1 {
    position: relative;
    left: 8.33333%; }
  .medium-pull-1 {
    position: relative;
    left: -8.33333%; }
  .medium-offset-0 {
    margin-left: 0%; }
  .medium-2 {
    width: 16.66667%; }
  .medium-push-2 {
    position: relative;
    left: 16.66667%; }
  .medium-pull-2 {
    position: relative;
    left: -16.66667%; }
  .medium-offset-1 {
    margin-left: 8.33333%; }
  .medium-3 {
    width: 25%; }
  .medium-push-3 {
    position: relative;
    left: 25%; }
  .medium-pull-3 {
    position: relative;
    left: -25%; }
  .medium-offset-2 {
    margin-left: 16.66667%; }
  .medium-4 {
    width: 33.33333%; }
  .medium-push-4 {
    position: relative;
    left: 33.33333%; }
  .medium-pull-4 {
    position: relative;
    left: -33.33333%; }
  .medium-offset-3 {
    margin-left: 25%; }
  .medium-5 {
    width: 41.66667%; }
  .medium-push-5 {
    position: relative;
    left: 41.66667%; }
  .medium-pull-5 {
    position: relative;
    left: -41.66667%; }
  .medium-offset-4 {
    margin-left: 33.33333%; }
  .medium-6 {
    width: 50%; }
  .medium-push-6 {
    position: relative;
    left: 50%; }
  .medium-pull-6 {
    position: relative;
    left: -50%; }
  .medium-offset-5 {
    margin-left: 41.66667%; }
  .medium-7 {
    width: 58.33333%; }
  .medium-push-7 {
    position: relative;
    left: 58.33333%; }
  .medium-pull-7 {
    position: relative;
    left: -58.33333%; }
  .medium-offset-6 {
    margin-left: 50%; }
  .medium-8 {
    width: 66.66667%; }
  .medium-push-8 {
    position: relative;
    left: 66.66667%; }
  .medium-pull-8 {
    position: relative;
    left: -66.66667%; }
  .medium-offset-7 {
    margin-left: 58.33333%; }
  .medium-9 {
    width: 75%; }
  .medium-push-9 {
    position: relative;
    left: 75%; }
  .medium-pull-9 {
    position: relative;
    left: -75%; }
  .medium-offset-8 {
    margin-left: 66.66667%; }
  .medium-10 {
    width: 83.33333%; }
  .medium-push-10 {
    position: relative;
    left: 83.33333%; }
  .medium-pull-10 {
    position: relative;
    left: -83.33333%; }
  .medium-offset-9 {
    margin-left: 75%; }
  .medium-11 {
    width: 91.66667%; }
  .medium-push-11 {
    position: relative;
    left: 91.66667%; }
  .medium-pull-11 {
    position: relative;
    left: -91.66667%; }
  .medium-offset-10 {
    margin-left: 83.33333%; }
  .medium-12 {
    width: 100%; }
  .medium-offset-11 {
    margin-left: 91.66667%; }
  .medium-up-1 > .column, .medium-up-1 > .columns {
    width: 100%;
    float: left; }
    .medium-up-1 > .column:nth-of-type(1n), .medium-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-1 > .column:nth-of-type(1n+1), .medium-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .medium-up-1 > .column:last-child, .medium-up-1 > .columns:last-child {
      float: left; }
  .medium-up-2 > .column, .medium-up-2 > .columns {
    width: 50%;
    float: left; }
    .medium-up-2 > .column:nth-of-type(1n), .medium-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-2 > .column:nth-of-type(2n+1), .medium-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .medium-up-2 > .column:last-child, .medium-up-2 > .columns:last-child {
      float: left; }
  .medium-up-3 > .column, .medium-up-3 > .columns {
    width: 33.33333%;
    float: left; }
    .medium-up-3 > .column:nth-of-type(1n), .medium-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-3 > .column:nth-of-type(3n+1), .medium-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .medium-up-3 > .column:last-child, .medium-up-3 > .columns:last-child {
      float: left; }
  .medium-up-4 > .column, .medium-up-4 > .columns {
    width: 25%;
    float: left; }
    .medium-up-4 > .column:nth-of-type(1n), .medium-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-4 > .column:nth-of-type(4n+1), .medium-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .medium-up-4 > .column:last-child, .medium-up-4 > .columns:last-child {
      float: left; }
  .medium-up-5 > .column, .medium-up-5 > .columns {
    width: 20%;
    float: left; }
    .medium-up-5 > .column:nth-of-type(1n), .medium-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-5 > .column:nth-of-type(5n+1), .medium-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .medium-up-5 > .column:last-child, .medium-up-5 > .columns:last-child {
      float: left; }
  .medium-up-6 > .column, .medium-up-6 > .columns {
    width: 16.66667%;
    float: left; }
    .medium-up-6 > .column:nth-of-type(1n), .medium-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-6 > .column:nth-of-type(6n+1), .medium-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .medium-up-6 > .column:last-child, .medium-up-6 > .columns:last-child {
      float: left; }
  .medium-up-7 > .column, .medium-up-7 > .columns {
    width: 14.28571%;
    float: left; }
    .medium-up-7 > .column:nth-of-type(1n), .medium-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-7 > .column:nth-of-type(7n+1), .medium-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .medium-up-7 > .column:last-child, .medium-up-7 > .columns:last-child {
      float: left; }
  .medium-up-8 > .column, .medium-up-8 > .columns {
    width: 12.5%;
    float: left; }
    .medium-up-8 > .column:nth-of-type(1n), .medium-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-8 > .column:nth-of-type(8n+1), .medium-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .medium-up-8 > .column:last-child, .medium-up-8 > .columns:last-child {
      float: left; }
  .medium-collapse > .column, .medium-collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .medium-collapse .row,
  .expanded.row .medium-collapse.row {
    margin-left: 0;
    margin-right: 0; }
  .medium-uncollapse > .column, .medium-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem; }
  .medium-centered {
    margin-left: auto;
    margin-right: auto; }
    .medium-centered, .medium-centered:last-child:not(:first-child) {
      float: none;
      clear: both; }
  .medium-uncentered,
  .medium-push-0,
  .medium-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left; } }

@media screen and (min-width: 64em) {
  .large-1 {
    width: 8.33333%; }
  .large-push-1 {
    position: relative;
    left: 8.33333%; }
  .large-pull-1 {
    position: relative;
    left: -8.33333%; }
  .large-offset-0 {
    margin-left: 0%; }
  .large-2 {
    width: 16.66667%; }
  .large-push-2 {
    position: relative;
    left: 16.66667%; }
  .large-pull-2 {
    position: relative;
    left: -16.66667%; }
  .large-offset-1 {
    margin-left: 8.33333%; }
  .large-3 {
    width: 25%; }
  .large-push-3 {
    position: relative;
    left: 25%; }
  .large-pull-3 {
    position: relative;
    left: -25%; }
  .large-offset-2 {
    margin-left: 16.66667%; }
  .large-4 {
    width: 33.33333%; }
  .large-push-4 {
    position: relative;
    left: 33.33333%; }
  .large-pull-4 {
    position: relative;
    left: -33.33333%; }
  .large-offset-3 {
    margin-left: 25%; }
  .large-5 {
    width: 41.66667%; }
  .large-push-5 {
    position: relative;
    left: 41.66667%; }
  .large-pull-5 {
    position: relative;
    left: -41.66667%; }
  .large-offset-4 {
    margin-left: 33.33333%; }
  .large-6 {
    width: 50%; }
  .large-push-6 {
    position: relative;
    left: 50%; }
  .large-pull-6 {
    position: relative;
    left: -50%; }
  .large-offset-5 {
    margin-left: 41.66667%; }
  .large-7 {
    width: 58.33333%; }
  .large-push-7 {
    position: relative;
    left: 58.33333%; }
  .large-pull-7 {
    position: relative;
    left: -58.33333%; }
  .large-offset-6 {
    margin-left: 50%; }
  .large-8 {
    width: 66.66667%; }
  .large-push-8 {
    position: relative;
    left: 66.66667%; }
  .large-pull-8 {
    position: relative;
    left: -66.66667%; }
  .large-offset-7 {
    margin-left: 58.33333%; }
  .large-9 {
    width: 75%; }
  .large-push-9 {
    position: relative;
    left: 75%; }
  .large-pull-9 {
    position: relative;
    left: -75%; }
  .large-offset-8 {
    margin-left: 66.66667%; }
  .large-10 {
    width: 83.33333%; }
  .large-push-10 {
    position: relative;
    left: 83.33333%; }
  .large-pull-10 {
    position: relative;
    left: -83.33333%; }
  .large-offset-9 {
    margin-left: 75%; }
  .large-11 {
    width: 91.66667%; }
  .large-push-11 {
    position: relative;
    left: 91.66667%; }
  .large-pull-11 {
    position: relative;
    left: -91.66667%; }
  .large-offset-10 {
    margin-left: 83.33333%; }
  .large-12 {
    width: 100%; }
  .large-offset-11 {
    margin-left: 91.66667%; }
  .large-up-1 > .column, .large-up-1 > .columns {
    width: 100%;
    float: left; }
    .large-up-1 > .column:nth-of-type(1n), .large-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-1 > .column:nth-of-type(1n+1), .large-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .large-up-1 > .column:last-child, .large-up-1 > .columns:last-child {
      float: left; }
  .large-up-2 > .column, .large-up-2 > .columns {
    width: 50%;
    float: left; }
    .large-up-2 > .column:nth-of-type(1n), .large-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-2 > .column:nth-of-type(2n+1), .large-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .large-up-2 > .column:last-child, .large-up-2 > .columns:last-child {
      float: left; }
  .large-up-3 > .column, .large-up-3 > .columns {
    width: 33.33333%;
    float: left; }
    .large-up-3 > .column:nth-of-type(1n), .large-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-3 > .column:nth-of-type(3n+1), .large-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .large-up-3 > .column:last-child, .large-up-3 > .columns:last-child {
      float: left; }
  .large-up-4 > .column, .large-up-4 > .columns {
    width: 25%;
    float: left; }
    .large-up-4 > .column:nth-of-type(1n), .large-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-4 > .column:nth-of-type(4n+1), .large-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .large-up-4 > .column:last-child, .large-up-4 > .columns:last-child {
      float: left; }
  .large-up-5 > .column, .large-up-5 > .columns {
    width: 20%;
    float: left; }
    .large-up-5 > .column:nth-of-type(1n), .large-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-5 > .column:nth-of-type(5n+1), .large-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .large-up-5 > .column:last-child, .large-up-5 > .columns:last-child {
      float: left; }
  .large-up-6 > .column, .large-up-6 > .columns {
    width: 16.66667%;
    float: left; }
    .large-up-6 > .column:nth-of-type(1n), .large-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-6 > .column:nth-of-type(6n+1), .large-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .large-up-6 > .column:last-child, .large-up-6 > .columns:last-child {
      float: left; }
  .large-up-7 > .column, .large-up-7 > .columns {
    width: 14.28571%;
    float: left; }
    .large-up-7 > .column:nth-of-type(1n), .large-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-7 > .column:nth-of-type(7n+1), .large-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .large-up-7 > .column:last-child, .large-up-7 > .columns:last-child {
      float: left; }
  .large-up-8 > .column, .large-up-8 > .columns {
    width: 12.5%;
    float: left; }
    .large-up-8 > .column:nth-of-type(1n), .large-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-8 > .column:nth-of-type(8n+1), .large-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .large-up-8 > .column:last-child, .large-up-8 > .columns:last-child {
      float: left; }
  .large-collapse > .column, .large-collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .large-collapse .row,
  .expanded.row .large-collapse.row {
    margin-left: 0;
    margin-right: 0; }
  .large-uncollapse > .column, .large-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem; }
  .large-centered {
    margin-left: auto;
    margin-right: auto; }
    .large-centered, .large-centered:last-child:not(:first-child) {
      float: none;
      clear: both; }
  .large-uncentered,
  .large-push-0,
  .large-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left; } }

div,
dl,
dt,
dd,
ul,
ol,
li, h1, .h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
pre,
form,
p,
.p,
blockquote,
th,
td {
  margin: 0;
  padding: 0; }


p,
.p, .p {
  font-size: inherit;
  line-height: 1.66667;
  margin-bottom: 1.5rem;
  text-rendering: optimizeLegibility; }
  
/* To wrap long urls around an image DF */
p strong a {
	overflow-wrap: break-word;
	word-wrap: break-word;
	word-break: break-word;
}

em,
i {
  font-style: italic;
  line-height: inherit; }

strong,
b {
  font-weight: 700;
  line-height: inherit; }

small {
  font-size: 80%;
  line-height: inherit; }

h1, .h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "PT Sans", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #3a3a3a;
  text-rendering: optimizeLegibility;
  margin-top: 0;
  margin-bottom: 1.5rem;
  line-height: 1.25; }
  h1 small, .h1 small,
  h2 small,
  .h2 small,
  h3 small,
  .h3 small,
  h4 small,
  .h4 small,
  h5 small,
  .h5 small,
  h6 small,
  .h1 small,
  .h2 small,
  .h3 small,
  .h4 small,
  .h5 small,
  .h6 small {
    color: #d2cec8;
    line-height: 0; }

h1, .h1 {
  font-size: 1.875rem; }


h2,
.h2 {
  font-size: 1.25rem; }


h3,
.h3 {
  font-size: 1.1875rem; }


h4,
.h4 {
  font-size: 1.125rem; }


h5,
.h5 {
  font-size: 1.0625rem; }

h6 {
  font-size: 1rem; }

@media screen and (min-width: 48.75em) {
  h1, .h1 {
    font-size: 3rem; }
  
  h2,
  .h2 {
    font-size: 2.5rem; }
  
  h3,
  .h3 {
    font-size: 1.9375rem; }
  
  h4,
  .h4 {
    font-size: 1.5625rem; }
  
  h5,
  .h5 {
    font-size: 1.25rem; }
  h6 {
    font-size: 1rem; } }

a {
  color: #672b64;
  text-decoration: none;
  line-height: inherit;
  cursor: pointer; }
  a:hover, a:focus {
    color: #024287; }
  a img {
    border: 0; }

hr {
  max-width: 76.25rem;
  height: 0;
  border-right: 0;
  border-top: 0;
  border-bottom: 1px solid #d2cec8;
  border-left: 0;
  margin: 1.25rem auto;
  clear: both; }

ul,
ol,
dl {
  line-height: 1.66667;
  margin-bottom: 1.5rem;
  list-style-position: outside; }

li {
  font-size: inherit; }

ul {
  list-style-type: disc;
  margin-left: 1.25rem; }

ol {
  margin-left: 1.25rem; }

ul ul, ol ul, ul ol, ol ol {
  margin-left: 1.25rem;
  margin-bottom: 0; }

dl {
  margin-bottom: 1.5rem; }
  dl dt {
    margin-bottom: 0.3rem;
    font-weight: 700; }

blockquote {
  margin: 0 0 1.5rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #d2cec8; }
  blockquote, blockquote p, blockquote .p {
    line-height: 1.66667;
    color: #3a3a3a; }

cite {
  display: block;
  font-size: 0.8125rem;
  color: #3a3a3a; }
  cite:before {
    content: '\2014 \0020'; }

abbr {
  color: #3a3a3a;
  cursor: help;
  border-bottom: 1px dotted #000000; }

code {
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: 500;
  color: #000000;
  background-color: #e6e8ea;
  border: 1px solid #d2cec8;
  padding: 0.125rem 0.3125rem 0.0625rem; }

kbd {
  padding: 0.125rem 0.25rem 0;
  margin: 0;
  background-color: #e6e8ea;
  color: #000000;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  border-radius: 0.3125rem; }

.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.4;
  color: #3a3a3a; }

.lead {
  font-size: 125%;
  line-height: 1.6; }

.stat {
  font-size: 2.5rem;
  line-height: 1; }
  p + .stat, .p + .stat {
    margin-top: -1rem; }

.no-bullet {
  margin-left: 0;
  list-style: none; }

.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

.text-center {
  text-align: center; }

.text-justify {
  text-align: justify; }

@media screen and (min-width: 48.75em) {
  .medium-text-left {
    text-align: left; }
  .medium-text-right {
    text-align: right; }
  .medium-text-center {
    text-align: center; }
  .medium-text-justify {
    text-align: justify; } }

@media screen and (min-width: 64em) {
  .large-text-left {
    text-align: left; }
  .large-text-right {
    text-align: right; }
  .large-text-center {
    text-align: center; }
  .large-text-justify {
    text-align: justify; } }

.show-for-print {
  display: none !important; }

@media print {
  * {
    background: transparent !important;
    color: black !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    text-shadow: none !important; }
  .show-for-print {
    display: block !important; }
  .hide-for-print {
    display: none !important; }
  table.show-for-print {
    display: table !important; }
  thead.show-for-print {
    display: table-header-group !important; }
  tbody.show-for-print {
    display: table-row-group !important; }
  tr.show-for-print {
    display: table-row !important; }
  td.show-for-print {
    display: table-cell !important; }
  th.show-for-print {
    display: table-cell !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  .ir a:after,
  a[href^='javascript:']:after,
  a[href^='#']:after {
    content: ''; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  pre,
  blockquote {
    border: 1px solid #3a3a3a;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  @page {
    margin: 0.5cm; }
  
  p,
  .p,
  h2,
  .h2,
  h3,
  .h3 {
    orphans: 3;
    widows: 3; }
  
  h2,
  .h2,
  h3,
  .h3 {
    page-break-after: avoid; } }

.button, .btn {
  display: inline-block;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-transition: background-color 0.25s ease-out, color 0.25s ease-out;
  -o-transition: background-color 0.25s ease-out, color 0.25s ease-out;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  vertical-align: middle;
  border: 1px solid transparent;
  border-radius: 0.3125rem;
  padding: 0.75rem 1.5625rem;
  margin: 0 0 1.5rem 0;
  font-size: 1rem;
  background-color: #ffffff;
  color: #672b64; }
  [data-whatinput='mouse'] .button, [data-whatinput='mouse'] .btn {
    outline: 0; }
  .button:hover, .btn:hover, .button:focus, .btn:focus {
    background-color: #672b64;
    color: #672b64; }
  .button.tiny, .tiny.btn {
    font-size: 0.6rem; }
  .button.small, .small.btn {
    font-size: 0.75rem; }
  .button.large, .large.btn {
    font-size: 1.25rem; }
  .button.expanded, .expanded.btn {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-right: 0; }
  .button.primary, .primary.btn {
    background-color: #672b64;
    color: #672b64; }
    .button.primary:hover, .primary.btn:hover, .button.primary:focus, .primary.btn:focus {
      background-color: #522250;
      color: #672b64; }
  .button.secondary, .secondary.btn {
    background-color: #024287;
    color: #672b64; }
    .button.secondary:hover, .secondary.btn:hover, .button.secondary:focus, .secondary.btn:focus {
      background-color: #02356c;
      color: #672b64; }
  .button.success, .success.btn {
    background-color: #3adb76;
    color: #672b64; }
    .button.success:hover, .success.btn:hover, .button.success:focus, .success.btn:focus {
      background-color: #22bb5b;
      color: #672b64; }
  .button.warning, .warning.btn {
    background-color: #ffae00;
    color: #672b64; }
    .button.warning:hover, .warning.btn:hover, .button.warning:focus, .warning.btn:focus {
      background-color: #cc8b00;
      color: #672b64; }
  .button.alert, .alert.btn {
    background-color: #ec5840;
    color: #672b64; }
    .button.alert:hover, .alert.btn:hover, .button.alert:focus, .alert.btn:focus {
      background-color: #da3116;
      color: #672b64; }
  .button.hollow, .hollow.btn {
    border: 1px solid #672b64;
    color: #672b64; }
    .button.hollow, .hollow.btn, .button.hollow:hover, .hollow.btn:hover, .button.hollow:focus, .hollow.btn:focus {
      background-color: transparent; }
    .button.hollow:hover, .hollow.btn:hover, .button.hollow:focus, .hollow.btn:focus {
      border-color: #341632;
      color: #341632; }
    .button.hollow.primary, .hollow.primary.btn {
      border: 1px solid #672b64;
      color: #672b64; }
      .button.hollow.primary:hover, .hollow.primary.btn:hover, .button.hollow.primary:focus, .hollow.primary.btn:focus {
        border-color: #341632;
        color: #341632; }
    .button.hollow.secondary, .hollow.secondary.btn {
      border: 1px solid #024287;
      color: #024287; }
      .button.hollow.secondary:hover, .hollow.secondary.btn:hover, .button.hollow.secondary:focus, .hollow.secondary.btn:focus {
        border-color: #012144;
        color: #012144; }
    .button.hollow.success, .hollow.success.btn {
      border: 1px solid #3adb76;
      color: #3adb76; }
      .button.hollow.success:hover, .hollow.success.btn:hover, .button.hollow.success:focus, .hollow.success.btn:focus {
        border-color: #157539;
        color: #157539; }
    .button.hollow.warning, .hollow.warning.btn {
      border: 1px solid #ffae00;
      color: #ffae00; }
      .button.hollow.warning:hover, .hollow.warning.btn:hover, .button.hollow.warning:focus, .hollow.warning.btn:focus {
        border-color: #805700;
        color: #805700; }
    .button.hollow.alert, .hollow.alert.btn {
      border: 1px solid #ec5840;
      color: #ec5840; }
      .button.hollow.alert:hover, .hollow.alert.btn:hover, .button.hollow.alert:focus, .hollow.alert.btn:focus {
        border-color: #881f0e;
        color: #881f0e; }
  .button.disabled, .disabled.btn, .button[disabled], .btn[disabled] {
    opacity: 0.25;
    cursor: not-allowed; }
    .button.disabled:hover, .disabled.btn:hover, .button.disabled:focus, .disabled.btn:focus, .button[disabled]:hover, .btn[disabled]:hover, .button[disabled]:focus, .btn[disabled]:focus {
      background-color: #ffffff;
      color: #672b64; }
  .button.dropdown::after, .dropdown.btn::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.4em;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #ffffff transparent transparent;
    position: relative;
    top: 0.4em;
    float: right;
    margin-left: 1.5625rem;
    display: inline-block; }
  .button.arrow-only::after, .arrow-only.btn::after {
    margin-left: 0;
    float: none;
    top: -0.1em; }

[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'],
textarea {
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 3.75rem;
  padding: 0.9375rem;
  border: 1px solid #d2cec8;
  margin: 0 0 1.875rem;
  font-family: inherit;
  font-size: 1rem;
  color: #000000;
  background-color: #ffffff;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 0.3125rem;
  -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  -o-transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  -webkit-appearance: none;
  -moz-appearance: none; }
  [type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus,
  textarea:focus {
    border: 1px solid #3a3a3a;
    background-color: #ffffff;
    outline: none;
    -webkit-box-shadow: 0 0 5px #d2cec8;
    box-shadow: 0 0 5px #d2cec8;
    -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
    transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
    -o-transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s; }

textarea {
  max-width: 100%; }
  textarea[rows] {
    height: auto; }

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.6); }

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.6); }

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.6); }

input::placeholder,
textarea::placeholder {
  color: rgba(0, 0, 0, 0.6); }

input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #e6e8ea;
  cursor: default; }

[type='submit'],
[type='button'] {
  border-radius: 0.3125rem;
  -webkit-appearance: none;
  -moz-appearance: none; }

input[type="search"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

[type='file'],
[type='checkbox'],
[type='radio'] {
  margin: 0 0 1.875rem; }

[type='checkbox'] + label, form [type='checkbox'] + .lbl,
[type='radio'] + label,
form [type='radio'] + .lbl {
  display: inline-block;
  margin-left: 0.9375rem;
  margin-right: 1.875rem;
  margin-bottom: 0;
  vertical-align: baseline; }
  [type='checkbox'] + label[for], form [type='checkbox'] + .lbl[for],
  [type='radio'] + label[for],
  form [type='radio'] + .lbl[for] {
    cursor: pointer; }

label > [type='checkbox'], form .lbl > [type='checkbox'],
label > [type='radio'],
form .lbl > [type='radio'] {
  margin-right: 0.9375rem; }

[type='file'] {
  width: 100%; }

label, form .lbl {
  display: block;
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  color: #000000; }
  label.middle, form .middle.lbl {
    margin: 0 0 1.875rem;
    padding: 1rem 0; }

.help-text {
  margin-top: -0.9375rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: #000000; }

.input-group {
  display: table;
  width: 100%;
  margin-bottom: 1.875rem; }
  .input-group > :first-child {
    border-radius: 0.3125rem 0 0 0.3125rem; }
  .input-group > :last-child > * {
    border-radius: 0 0.3125rem 0.3125rem 0; }

.input-group-label, .input-group-field, .input-group-button {
  margin: 0;
  white-space: nowrap;
  display: table-cell;
  vertical-align: middle; }

.input-group-label {
  text-align: center;
  padding: 0 1rem;
  background: #e6e8ea;
  color: #000000;
  border: 1px solid #d2cec8;
  white-space: nowrap;
  width: 1%;
  height: 100%; }
  .input-group-label:first-child {
    border-right: 0; }
  .input-group-label:last-child {
    border-left: 0; }

.input-group-field {
  border-radius: 0;
  height: 3.8125rem; }

.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  height: 100%;
  width: 1%; }
  .input-group-button a,
  .input-group-button input,
  .input-group-button button {
    margin: 0; }

.input-group .input-group-button {
  display: table-cell; }

fieldset {
  border: 0;
  padding: 0;
  margin: 0; }

legend {
  margin-bottom: 0.9375rem;
  max-width: 100%; }

.fieldset {
  border: 1px solid #d2cec8;
  padding: 1.25rem;
  margin: 1.125rem 0; }
  .fieldset legend {
    background: #ffffff;
    padding: 0 0.1875rem;
    margin: 0;
    margin-left: -0.1875rem; }

select {
  height: 3.75rem;
  padding: 0.9375rem;
  border: 1px solid #d2cec8;
  margin: 0 0 1.875rem;
  font-size: 1rem;
  font-family: inherit;
  line-height: normal;
  color: #000000;
  background-color: #ffffff;
  border-radius: 0.3125rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%2858, 58, 58%29'></polygon></svg>");
  background-size: 9px 6px;
  background-position: right -1.875rem center;
  background-origin: content-box;
  background-repeat: no-repeat;
  padding-right: 2.8125rem; }
  @media screen and (min-width: 0\0) {
    select {
      background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg=="); } }
  select:disabled {
    background-color: #e6e8ea;
    cursor: default; }
  select::-ms-expand {
    display: none; }
  select[multiple] {
    height: auto;
    background-image: none; }

.is-invalid-input:not(:focus) {
  background-color: rgba(236, 88, 64, 0.1);
  border-color: #ec5840; }

.is-invalid-label {
  color: #ec5840; }

.form-error {
  display: none;
  margin-top: -0.9375rem;
  margin-bottom: 1.875rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ec5840; }
  .form-error.is-visible {
    display: block; }

.accordion {
  list-style-type: none;
  background: #e6e8ea;
  margin-left: 0; }

.accordion-item:first-child > :first-child {
  border-radius: 0.3125rem 0.3125rem 0 0; }

.accordion-item:last-child > :last-child {
  border-radius: 0 0 0.3125rem 0.3125rem; }

.accordion-title {
  display: block;
  padding: 1.25rem 0;
  line-height: 1;
  font-size: 0.75rem;
  color: #672b64;
  position: relative;
  border: none;
  border-bottom: 0; }
  :last-child:not(.is-active) > .accordion-title {
    border-radius: 0 0 0.3125rem 0.3125rem;
    border-bottom: none; }
  .accordion-title:hover, .accordion-title:focus {
    background-color: none; }
  .accordion-title::before {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    margin-top: -0.5rem; }
  .is-active > .accordion-title::before {
    content: '–'; }

.accordion-content {
  padding: 1rem 0;
  display: none;
  border: none;
  border-bottom: 0;
  background-color: #ffffff;
  color: #3a3a3a; }
  :last-child > .accordion-content:last-child {
    border-bottom: none; }

.breadcrumbs {
  list-style: none;
  margin: 0; }
  .breadcrumbs::before, .breadcrumbs::after {
    display: table;
    content: ' '; }
  .breadcrumbs::after {
    clear: both; }
  .breadcrumbs li {
    float: left;
    color: #000000;
    font-size: 0.875rem;
    cursor: default; }
    .breadcrumbs li:not(:last-child)::after {
      color: #d2cec8;
      content: "/";
      margin: 0 0.75rem;
      position: relative;
      top: 1px;
      opacity: 1; }
  .breadcrumbs a {
    color: #672b64; }
    .breadcrumbs a:hover {
      text-decoration: underline; }
  .breadcrumbs .disabled {
    color: #d2cec8;
    cursor: not-allowed; }

.callout {
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 0;
  position: relative;
  color: #3a3a3a;
  background-color: white; }
  .callout > :first-child {
    margin-top: 0; }
  .callout > :last-child {
    margin-bottom: 0; }
  .callout.primary {
    background-color: #efd8ee; }
  .callout.secondary {
    background-color: #c8e2fe; }
  .callout.success {
    background-color: #e1faea; }
  .callout.warning {
    background-color: #fff3d9; }
  .callout.alert {
    background-color: #fce6e2; }
  .callout.small {
    padding-top: 0.5rem;
    padding-right: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem; }
  .callout.large {
    padding-top: 3rem;
    padding-right: 3rem;
    padding-bottom: 3rem;
    padding-left: 3rem; }

.close-button {
  position: absolute;
  color: #3a3a3a;
  right: 1rem;
  top: 0.5rem;
  font-size: 2em;
  line-height: 1;
  cursor: pointer; }
  [data-whatinput='mouse'] .close-button {
    outline: 0; }
  .close-button:hover, .close-button:focus {
    color: #000000; }

.menu {
  margin: 0;
  list-style-type: none; }
  .menu > li {
    display: table-cell;
    vertical-align: middle; }
    [data-whatinput='mouse'] .menu > li {
      outline: 0; }
  .menu > li > a {
    display: block;
    padding: 0.7rem 1rem;
    line-height: 1; }
  .menu input,
  .menu a,
  .menu button {
    margin-bottom: 0; }
  .menu > li > a img,
  .menu > li > a i,
  .menu > li > a svg {
    vertical-align: middle; }
    .menu > li > a img + span,
    .menu > li > a i + span,
    .menu > li > a svg + span {
      vertical-align: middle; }
  .menu > li > a img,
  .menu > li > a i,
  .menu > li > a svg {
    margin-right: 0.25rem;
    display: inline-block; }
  .menu > li {
    display: table-cell; }
  .menu.vertical > li {
    display: block; }
  @media screen and (min-width: 48.75em) {
    .menu.medium-horizontal > li {
      display: table-cell; }
    .menu.medium-vertical > li {
      display: block; } }
  @media screen and (min-width: 64em) {
    .menu.large-horizontal > li {
      display: table-cell; }
    .menu.large-vertical > li {
      display: block; } }
  .menu.simple li {
    line-height: 1;
    display: inline-block;
    margin-right: 1rem; }
  .menu.simple a {
    padding: 0; }
  .menu.align-right::before, .menu.align-right::after {
    display: table;
    content: ' '; }
  .menu.align-right::after {
    clear: both; }
  .menu.align-right > li {
    float: right; }
  .menu.expanded {
    width: 100%;
    display: table;
    table-layout: fixed; }
    .menu.expanded > li:first-child:last-child {
      width: 100%; }
  .menu.icon-top > li > a {
    text-align: center; }
    .menu.icon-top > li > a img,
    .menu.icon-top > li > a i,
    .menu.icon-top > li > a svg {
      display: block;
      margin: 0 auto 0.25rem; }
  .menu.nested {
    margin-left: 1rem; }
  .menu .active > a {
    color: #ffffff;
    background: #672b64; }

.menu-text {
  font-weight: bold;
  color: inherit;
  line-height: 1;
  padding-top: 0;
  padding-bottom: 0;
  padding: 0.7rem 1rem; }

.menu-centered {
  text-align: center; }
  .menu-centered > .menu {
    display: inline-block; }

.no-js [data-responsive-menu] ul {
  display: none; }

.is-drilldown {
  position: relative;
  overflow: hidden; }
  .is-drilldown li {
    display: block !important; }

.is-drilldown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  width: 100%;
  background: #ffffff;
  -webkit-transition: -webkit-transform 0.15s linear;
  transition: -webkit-transform 0.15s linear;
  -o-transition: transform 0.15s linear;
  transition: transform 0.15s linear;
  transition: transform 0.15s linear, -webkit-transform 0.15s linear; }
  .is-drilldown-submenu.is-active {
    z-index: 1;
    display: block;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%); }
  .is-drilldown-submenu.is-closing {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%); }

.dropdown.menu > li.opens-left > .is-dropdown-submenu {
  left: auto;
  right: 0;
  top: 100%; }

.dropdown.menu > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 0;
  top: 100%; }

[data-whatinput='mouse'] .dropdown.menu a {
  outline: 0; }

.no-js .dropdown.menu ul {
  display: none; }

.dropdown.menu.vertical > li .is-dropdown-submenu {
  top: 0; }

.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
  left: auto;
  right: 100%; }

.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%; }

@media screen and (min-width: 48.75em) {
  .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%; }
  .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%; }
  .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
    top: 0; }
  .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 100%; }
  .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%; } }

@media screen and (min-width: 64em) {
  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%; }
  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%; }
  .dropdown.menu.large-vertical > li .is-dropdown-submenu {
    top: 0; }
  .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 100%; }
  .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%; } }

.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  left: auto;
  right: 0; }

.is-dropdown-menu.vertical {
  width: 100px; }
  .is-dropdown-menu.vertical.align-right {
    float: right; }

.is-dropdown-submenu-parent {
  position: relative; }
  .is-dropdown-submenu-parent a::after {
    position: absolute;
    top: 50%;
    right: 5px;
    margin-top: -2px; }
  .is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu {
    top: 100%;
    left: auto; }
  .is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 100%; }
  .is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%; }

.is-dropdown-submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 200px;
  z-index: 1;
  background: #ffffff;
  border: 1px solid #d2cec8; }
  .is-dropdown-submenu .is-dropdown-submenu {
    margin-top: -1px; }
  .is-dropdown-submenu > li {
    width: 100%; }
  .is-dropdown-submenu.js-dropdown-active {
    display: block; }

.flex-video, .responsive-embed {
  position: relative;
  height: 0;
  padding-bottom: 75%;
  margin-bottom: 1rem;
  overflow: hidden; }
  .flex-video iframe, .responsive-embed iframe,
  .flex-video object,
  .responsive-embed object,
  .flex-video embed,
  .responsive-embed embed,
  .flex-video video,
  .responsive-embed video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .flex-video.widescreen, .widescreen.responsive-embed {
    padding-bottom: 56.25%; }
  .flex-video.vimeo, .vimeo.responsive-embed {
    padding-top: 0; }

.label {
  display: inline-block;
  padding: 0.33333rem 0.5rem;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  border-radius: 0.3125rem;
  background: #672b64;
  color: #ffffff; }
  .label.secondary {
    background: #024287;
    color: #ffffff; }
  .label.success {
    background: #3adb76;
    color: #ffffff; }
  .label.warning {
    background: #ffae00;
    color: #ffffff; }
  .label.alert {
    background: #ec5840;
    color: #ffffff; }

.media-object {
  margin-bottom: 1.5rem;
  display: block; }
  .media-object img {
    max-width: none; }
  @media screen and (max-width: 48.6875em) {
    .media-object.stack-for-small .media-object-section {
      padding: 0;
      padding-bottom: 1rem;
      display: block; }
      .media-object.stack-for-small .media-object-section img {
        width: 100%; } }

.media-object-section {
  display: table-cell;
  vertical-align: top; }
  .media-object-section:first-child {
    padding-right: 1rem; }
  .media-object-section:last-child:not(:nth-child(2)) {
    padding-left: 1rem; }
  .media-object-section > :last-child {
    margin-bottom: 0; }
  .media-object-section.middle {
    vertical-align: middle; }
  .media-object-section.bottom {
    vertical-align: bottom; }

.pagination {
  margin-left: 0;
  margin-bottom: 1.5rem; }
  .pagination::before, .pagination::after {
    display: table;
    content: ' '; }
  .pagination::after {
    clear: both; }
  .pagination li {
    font-size: 0.875rem;
    margin-right: 0.0625rem;
    border-radius: 0.3125rem;
    display: inline-block; }
  .pagination a,
  .pagination button {
    color: #000000;
    display: block;
    padding: 0.1875rem 0.625rem;
    border-radius: 0.3125rem; }
    .pagination a:hover,
    .pagination button:hover {
      background: #e6e8ea; }
  .pagination .current {
    padding: 0.1875rem 0.625rem;
    background: #672b64;
    color: #ffffff;
    cursor: default; }
  .pagination .disabled {
    padding: 0.1875rem 0.625rem;
    color: #d2cec8;
    cursor: not-allowed; }
    .pagination .disabled:hover {
      background: transparent; }
  .pagination .ellipsis::after {
    content: '\2026';
    padding: 0.1875rem 0.625rem;
    color: #000000; }

.pagination-previous a::before,
.pagination-previous.disabled::before {
  content: '\00ab';
  display: inline-block;
  margin-right: 0.5rem; }

.pagination-next a::after,
.pagination-next.disabled::after {
  content: '\00bb';
  display: inline-block;
  margin-left: 0.5rem; }

body.is-reveal-open {
  overflow: hidden; }

html.is-reveal-open,
html.is-reveal-open body {
  height: 100%;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.reveal-overlay {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1005;
  background-color: rgba(0, 0, 0, 0.45);
  overflow-y: scroll; }

.reveal {
  display: none;
  z-index: 1006;
  padding: 1rem;
  border: 1px solid #d2cec8;
  background-color: #ffffff;
  border-radius: 0.3125rem;
  position: relative;
  top: 100px;
  margin-left: auto;
  margin-right: auto;
  overflow-y: auto; }
  [data-whatinput='mouse'] .reveal {
    outline: 0; }
  @media screen and (min-width: 48.75em) {
    .reveal {
      min-height: 0; } }
  .reveal .column, .reveal .columns,
  .reveal .columns {
    min-width: 0; }
  .reveal > :last-child {
    margin-bottom: 0; }
  @media screen and (min-width: 48.75em) {
    .reveal {
      width: 800px;
      max-width: 76.25rem; } }
  @media screen and (min-width: 48.75em) {
    .reveal .reveal {
      left: auto;
      right: auto;
      margin: 0 auto; } }
  .reveal.collapse {
    padding: 0; }
  @media screen and (min-width: 48.75em) {
    .reveal.tiny {
      width: 30%;
      max-width: 76.25rem; } }
  @media screen and (min-width: 48.75em) {
    .reveal.small {
      width: 50%;
      max-width: 76.25rem; } }
  @media screen and (min-width: 48.75em) {
    .reveal.large {
      width: 90%;
      max-width: 76.25rem; } }
  .reveal.full {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100vh;
    min-height: 100vh;
    max-width: none;
    margin-left: 0;
    border: 0;
    border-radius: 0; }
  @media screen and (max-width: 48.6875em) {
    .reveal {
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      height: 100vh;
      min-height: 100vh;
      max-width: none;
      margin-left: 0;
      border: 0;
      border-radius: 0; } }
  .reveal.without-overlay {
    position: fixed; }

table {
  width: 100%;
  margin-bottom: 1.5rem;
  border-radius: 0.3125rem; }
  thead,
  tbody,
  tfoot {
    border: 1px solid #d2cec8;
    background-color: #ffffff; }
  caption {
    font-weight: 700;
    padding: 0.5rem 0.625rem 0.625rem; }
  thead {
    background: #f9f9f9;
    color: #3a3a3a; }
  tfoot {
    background: #f2f2f2;
    color: #3a3a3a; }
  thead tr,
  tfoot tr {
    background: transparent; }
  thead th,
  thead td,
  tfoot th,
  tfoot td {
    padding: 0.5rem 0.625rem 0.625rem;
    font-weight: 700;
    text-align: left; }
  tbody tr:nth-child(even) {
    background-color: #f2f2f2; }
  tbody th,
  tbody td {
    padding: 0.5rem 0.625rem 0.625rem; }

@media screen and (max-width: 63.9375em) {
  table.stack thead {
    display: none; }
  table.stack tfoot {
    display: none; }
  table.stack tr,
  table.stack th,
  table.stack td {
    display: block; }
  table.stack td {
    border-top: 0; } }

table.scroll {
  display: block;
  width: 100%;
  overflow-x: auto; }

table.hover tr:hover {
  background-color: #fafafa; }

table.hover tr:nth-of-type(even):hover {
  background-color: #ededed; }

.table-scroll {
  overflow-x: auto; }
  .table-scroll table {
    width: auto; }

.tabs {
  margin: 0;
  list-style-type: none;
  background: #e6e8ea;
  border: 1px solid transparent; }
  .tabs::before, .tabs::after {
    display: table;
    content: ' '; }
  .tabs::after {
    clear: both; }

.tabs.vertical > li {
  width: auto;
  float: none;
  display: block; }

.tabs.simple > li > a {
  padding: 0; }
  .tabs.simple > li > a:hover {
    background: transparent; }

.tabs.primary {
  background: #672b64; }
  .tabs.primary > li > a {
    color: #ffffff; }
    .tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
      background: #743070; }

.tabs-title {
  float: left; }
  .tabs-title > a {
    display: block;
    padding: 1.25rem 1.5rem;
    line-height: 1;
    font-size: 1.125rem; }
    .tabs-title > a:hover {
      background: #e6e8ea; }
    .tabs-title > a:focus, .tabs-title > a[aria-selected='true'] {
      background: #e6e8ea; }

.tabs-content {
  background: #e6e8ea;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border: 1px solid transparent;
  border-top: 0; }

.tabs-content.vertical {
  border: 1px solid transparent;
  border-left: 0; }

.tabs-panel {
  display: none;
  padding: 0; }
  .tabs-panel.is-active {
    display: block; }

.has-tip {
  border-bottom: dotted 1px #3a3a3a;
  font-weight: 700;
  position: relative;
  display: inline-block;
  cursor: help; }

.tooltip {
  background-color: #000000;
  color: #ffffff;
  font-size: 80%;
  padding: 0.75rem;
  position: absolute;
  z-index: 10;
  top: calc(100% + 0.6495rem);
  max-width: 10rem !important;
  border-radius: 0.3125rem; }
  .tooltip::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    content: '';
    border-top-width: 0;
    border-bottom-style: solid;
    border-color: transparent transparent #000000;
    bottom: 100%;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }
  .tooltip.top::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #000000 transparent transparent;
    top: 100%;
    bottom: auto; }
  .tooltip.left::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #000000;
    bottom: auto;
    left: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
  .tooltip.right::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #000000 transparent transparent;
    bottom: auto;
    left: auto;
    right: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }

.hide {
  display: none !important; }

.invisible {
  visibility: hidden; }

@media screen and (max-width: 48.6875em) {
  .hide-for-small-only {
    display: none !important; } }

@media screen and (max-width: 0em), screen and (min-width: 48.75em) {
  .show-for-small-only {
    display: none !important; } }

@media screen and (min-width: 48.75em) {
  .hide-for-medium {
    display: none !important; } }

@media screen and (max-width: 48.6875em) {
  .show-for-medium {
    display: none !important; } }

@media screen and (min-width: 48.75em) and (max-width: 63.9375em) {
  .hide-for-medium-only {
    display: none !important; } }

@media screen and (max-width: 48.6875em), screen and (min-width: 64em) {
  .show-for-medium-only {
    display: none !important; } }

@media screen and (min-width: 64em) {
  .hide-for-large {
    display: none !important; } }

@media screen and (max-width: 63.9375em) {
  .show-for-large {
    display: none !important; } }

@media screen and (min-width: 64em) and (max-width: 74.9375em) {
  .hide-for-large-only {
    display: none !important; } }

@media screen and (max-width: 63.9375em), screen and (min-width: 75em) {
  .show-for-large-only {
    display: none !important; } }

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  border: 0; }

.show-on-focus:active, .show-on-focus:focus {
  position: static !important;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  -webkit-clip-path: none;
  clip-path: none; }

.show-for-landscape,
.hide-for-portrait {
  display: block !important; }
  @media screen and (orientation: landscape) {
    .show-for-landscape,
    .hide-for-portrait {
      display: block !important; } }
  @media screen and (orientation: portrait) {
    .show-for-landscape,
    .hide-for-portrait {
      display: none !important; } }

.hide-for-landscape,
.show-for-portrait {
  display: none !important; }
  @media screen and (orientation: landscape) {
    .hide-for-landscape,
    .show-for-portrait {
      display: none !important; } }
  @media screen and (orientation: portrait) {
    .hide-for-landscape,
    .show-for-portrait {
      display: block !important; } }

.float-left {
  float: left !important; }

.float-right {
  float: right !important; }

.float-center {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.clearfix::before, .clearfix::after {
  display: table;
  content: ' '; }

.clearfix::after {
  clear: both; }

/* MIXINS
===================================== */
/* PARTIALS
===================================== */
/* Useful misc classes */
.centre {
  text-align: center; }

.centre_small {
  text-align: center; }
  @media screen and (min-width: 48.75em) {
    .centre_small {
      text-align: left; } }

.relative {
  position: relative; }

.visible {
  visibility: visible; }

.hidden {
  visibility: hidden;
  display: none !important; }

.clear {
  clear: both; }

.clear_small {
  clear: both; }
  @media screen and (min-width: 48.75em) {
    .clear_small {
      clear: none; } }

.right {
  float: right; }

.right_small {
  float: right; }
  @media screen and (min-width: 48.75em) {
    .right_small {
      float: none; } }

@media screen and (min-width: 48.75em) {
  .right_medium {
    float: right !important; } }

.left {
  float: left; }

.left_small {
  float: left; }
  @media screen and (min-width: 48.75em) {
    .left_small {
      float: none; } }

@media screen and (min-width: 48.75em) {
  .left_medium {
    float: left !important; } }

/* Margins */
.no_marg_top {
  margin-top: 0 !important; }

.no_marg_bot {
  margin-bottom: 0 !important; }

.no_marg_left {
  margin-left: 0 !important; }

.no_marg_right {
  margin-right: 0 !important; }

.no_marg {
  margin: 0 !important; }

@media screen and (max-width: 48.6875em) {
  .no_marg_small {
    margin: 0 !important; } }

/* Paddings */
.no_pad_top {
  padding-top: 0 !important; }

.no_pad_bot {
  padding-bottom: 0 !important; }

.no_pad_left {
  padding-left: 0 !important; }

.no_pad_right {
  padding-right: 0 !important; }

.no_pad {
  padding: 0 !important; }

@media screen and (max-width: 48.6875em) {
  .no_pad_small {
    padding: 0 !important; } }

.sr_only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden; }

.svg_box {
  display: block;
  height: 100%;
  width: 100%; }
  .svg_box svg {
    display: block; }

svg * {
  -webkit-transition: fill 0.3s ease-out;
  -moz-transition: fill 0.3s ease-out;
  -ms-transition: fill 0.3s ease-out;
  -o-transition: fill 0.3s ease-out;
  transition: fill 0.3s ease-out; }

.column-block {
  margin-bottom: 1.5rem; }
  @media screen and (min-width: 48.75em) {
    .column-block {
      margin-bottom: 3rem; } }
  @media screen and (max-width: 48.6875em) {
    .column-block-small-only {
      margin-bottom: 1.5rem; } }

.row-padding, .row-padding[class*='small-up'], .row-padding[class*='medium-up'], .row-padding[class*='large-up'] {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem; }
  @media screen and (min-width: 48.75em) {
    .row-padding, .row-padding[class*='small-up'], .row-padding[class*='medium-up'], .row-padding[class*='large-up'] {
      padding-top: 3rem;
      padding-bottom: 3rem; } }
  @media screen and (min-width: 64em) {
    .row-padding, .row-padding[class*='small-up'], .row-padding[class*='medium-up'], .row-padding[class*='large-up'] {
      padding-top: 6rem;
      padding-bottom: 6rem; } }

.white_bg {
  background-color: #ffffff; }

.gray_bg {
  background-color: #e6e8ea; }

.vertical-center {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }
  @media screen and (max-width: 48.6875em) {
    .vertical-center-small-only, a.icon .text {
      position: relative;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); } }
  @media screen and (min-width: 48.75em) {
    .vertical-center-medium, a.large_icon .text_con, a.large_icon .img {
      position: relative;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); } }
  @media screen and (min-width: 64em) {
    .vertical-center-large {
      position: relative;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); } }

@media screen and (min-width: 48.75em) and (max-width: 63.9375em) {
  .columns-center.medium-up-2 > .column:last-child:nth-child(odd), .columns-center.medium-up-2 > .columns:last-child:nth-child(odd) {
    margin-left: 25% !important; } }

@media screen and (min-width: 64em) {
  .columns-center.large-up-3 > .column:nth-of-type(3n+1):nth-last-child(2), .columns-center.large-up-3 > .columns:nth-of-type(3n+1):nth-last-child(2) {
    margin-left: 16.66667% !important; } }

[class*='small-up'], [class*='medium-up'], [class*='large-up'] {
  padding: 0;
  margin-left: 0;
  margin-right: 0;
  list-style: none; }

/* Fixes issue with column alignment in CommonSpot */
.cs_GridRow::after {
  display: none !important; }

/* SVGs
============================================= */
/* TYPOGRAPHY
============================================= */
h1, .h1, .h1 {
  font-size: calc(26px + ((30 - 26) * ((100vw - 320px) / (1190 - 320)))); }
  @media screen and (min-width: 76.25em) {
    h1, .h1, .h1 {
      font-size: 1.875rem; } }


h2,
.h2, .h2 {
  font-size: calc(26px + ((30 - 26) * ((100vw - 320px) / (1190 - 320)))); }
  @media screen and (min-width: 76.25em) {
    
    h2,
    .h2, .h2 {
      font-size: 1.875rem; } }


h3,
.h3, .h3 {
  font-size: calc(22px + ((28 - 22) * ((100vw - 320px) / (1190 - 320)))); }
  @media screen and (min-width: 76.25em) {
    
    h3,
    .h3, .h3 {
      font-size: 1.75rem; } }


h4,
.h4, .h4 {
  font-size: calc(20px + ((24 - 20) * ((100vw - 320px) / (1190 - 320)))); }
  @media screen and (min-width: 76.25em) {
    
    h4,
    .h4, .h4 {
      font-size: 1.5rem; } }


h5,
.h5, .h5 {
  font-size: calc(18px + ((20 - 18) * ((100vw - 320px) / (1190 - 320)))); }
  @media screen and (min-width: 76.25em) {
    
    h5,
    .h5, .h5 {
      font-size: 1.25rem; } }

h6, .h6 {
  font-size: calc(16px + ((18 - 16) * ((100vw - 320px) / (1190 - 320)))); }
  @media screen and (min-width: 76.25em) {
    h6, .h6 {
      font-size: 1.125rem; } }

.h1, .h2, .h3, .h4, .h5 {
  display: block; }

/*h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
	margin-bottom: rem-calc(20);
	display: block;
	
	&::after {
		content: "";
		width: rem-calc(200);
		height: rem-calc(1);
		background: $medium-gray;
		display: block;
		margin-top: rem-calc(20);
		
		.text-center & {
			margin-left: auto;
			margin-right: auto;
		}
	}
}
h3, .h3, h4, .h4 {
	&::after {
		width: rem-calc(120);
	}
}*/
@media screen and (min-width: 64em) {
  
  p,
  .p, li, table tr td {
    font-size: 1.125rem; } }


p,
.p {
  display: block;
  font-weight: 500; }
  p.large_text, .large_text.p {
    font-size: 1.125rem;
    line-height: 1.6; }
  p.small_text, .small_text.p {
    font-size: 0.8125rem; }

li:not(.column):not(.columns) {
  margin-bottom: 0.625rem; }

a, .a {
  outline: none;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  position: relative; }
  a.featured, .a.featured {
    text-transform: uppercase; }
  a .a, .a .a {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none; }
  .breadcrumb a:not(.btn), #main a:not(.btn), footer a:not(.btn), .notification_wrapper a:not(.btn), .breadcrumb .a:not(.btn), #main .a:not(.btn), footer .a:not(.btn), .notification_wrapper .a:not(.btn) {
    text-decoration: none;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #024287), color-stop(50%, rgba(103, 43, 100, 0.3)));
    background-image: -webkit-linear-gradient(left, #024287 50%, rgba(103, 43, 100, 0.3) 50%);
    background-image: -o-linear-gradient(left, #024287 50%, rgba(103, 43, 100, 0.3) 50%);
    background-image: linear-gradient(90deg, #024287 50%, rgba(103, 43, 100, 0.3) 50%);
    background-size: 200% 2px;
    background-repeat: no-repeat;
    background-position: 100% 100%;
    padding: 0.125rem 0; }
    .breadcrumb a:not(.btn):hover, .breadcrumb a:not(.btn):focus, .breadcrumb a:not(.btn).active, #main a:not(.btn):hover, #main a:not(.btn):focus, #main a:not(.btn).active, footer a:not(.btn):hover, footer a:not(.btn):focus, footer a:not(.btn).active, .notification_wrapper a:not(.btn):hover, .notification_wrapper a:not(.btn):focus, .notification_wrapper a:not(.btn).active, .breadcrumb .a:not(.btn):hover, .breadcrumb .a:not(.btn):focus, .breadcrumb .a:not(.btn).active, #main .a:not(.btn):hover, #main .a:not(.btn):focus, #main .a:not(.btn).active, footer .a:not(.btn):hover, footer .a:not(.btn):focus, footer .a:not(.btn).active, .notification_wrapper .a:not(.btn):hover, .notification_wrapper .a:not(.btn):focus, .notification_wrapper .a:not(.btn).active {
      background-position: 0% 100%; }
  .breadcrumb a:not(.btn), footer a:not(.btn), .breadcrumb .a:not(.btn), footer .a:not(.btn) {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #024287), color-stop(50%, rgba(103, 43, 100, 0)));
    background-image: -webkit-linear-gradient(left, #024287 50%, rgba(103, 43, 100, 0) 50%);
    background-image: -o-linear-gradient(left, #024287 50%, rgba(103, 43, 100, 0) 50%);
    background-image: linear-gradient(90deg, #024287 50%, rgba(103, 43, 100, 0) 50%); }
  ul.a-z li a, a.img, .pagination a, .accordion-item > a, ul.a-z li .a, .a.img, .pagination .a, .accordion-item > .a {
    background-image: none !important; }
  a img:first-child:last-child, .a img:first-child:last-child {
    display: block; }

/* BREADCRUMB
============================================= */
.breadcrumb {
  padding: 10px 0;
  margin-bottom: 1.5rem; }
  @media screen and (min-width: 48.75em) {
    .breadcrumb {
      padding: 30px 0;
      margin-bottom: 2.25rem; } }
  @media screen and (min-width: 76.25em) {
    .breadcrumb {
      margin-bottom: 3.75rem; } }
  .breadcrumb .breadcrumbs {
    margin: 0; }
    .breadcrumb .breadcrumbs li {
      margin: 0; }
      @media screen and (min-width: 48.75em) {
        .breadcrumb .breadcrumbs li {
          font-size: 1rem; } }
      .breadcrumb .breadcrumbs li:not(:last-child)::after {
        content: "";
        display: inline-block;
        width: 0.625rem;
        height: 1.25rem;
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid'%3E%3Cpath style='fill:%23d2cec8; transition: fill 200ms ease-out;' d='M31.4 82.6c.8.8 1.8 1.2 2.8 1.2s2-.4 2.8-1.2l29.5-29.5a4 4 0 0 0 0-5.7L37.1 17.9a4 4 0 0 0-5.7 0 4 4 0 0 0 0 5.7l26.7 26.7-26.7 26.6a4.2 4.2 0 0 0 0 5.7z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 20px 20px;
        vertical-align: text-top; }
      .breadcrumb .breadcrumbs li a:hover, .breadcrumb .breadcrumbs li a:focus {
        color: #024287;
        text-decoration: none; }

/* SEARCH
============================================= */
/* Replace in-built cellpadding and cellspacing with css versions */
.searchTableUpdate {
	padding: 0;
	border-spacing: 0;
}
.search_row {
  padding: 1.5625rem 0;
  background-size: cover; }
  @media screen and (min-width: 48.75em) {
    .search_row {
      padding: 4.375rem 0; } }
  .search_row form {
    position: relative;
    border: none;
    background: #ffffff;
    width: 100%;
    max-width: 37.5rem;
    margin: 0 auto !important;
    overflow: hidden;
    -webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
    z-index: 2;
    border-radius: 0.3125rem; }
    .search_row form ::-webkit-input-placeholder {
      color: rgba(0, 0, 0, 0.6); }
    .search_row form :-moz-placeholder {
      color: rgba(0, 0, 0, 0.6); }
    .search_row form ::-moz-placeholder {
      color: rgba(0, 0, 0, 0.6); }
    .search_row form :-ms-input-placeholder {
      color: rgba(0, 0, 0, 0.6); }
    @media screen and (min-width: 48.75em) {
      .search_row form ::-webkit-input-placeholder {
        font-size: 1.5rem !important; }
      .search_row form :-moz-placeholder {
        font-size: 1.5rem !important; }
      .search_row form ::-moz-placeholder {
        font-size: 1.5rem !important; }
      .search_row form :-ms-input-placeholder {
        font-size: 1.5rem !important; } }
    .search_row form [type='search'], .search_row form [type='text'] {
      float: left;
      width: calc(100% - 40px);
      background: none !important;
      border: none !important;
      -webkit-box-shadow: none !important;
      box-shadow: none !important;
      margin: 0;
      padding: 0.5625rem 0.625rem 0.5625rem 0.625rem !important;
      height: 2.5rem !important;
      font-style: italic;
      letter-spacing: 0.01em;
      text-indent: 0 !important; }
      @media screen and (min-width: 48.75em) {
        .search_row form [type='search'], .search_row form [type='text'] {
          height: 3.75rem !important;
          font-size: 1.5rem !important;
          width: calc(100% - 60px);
          padding: 0.875rem 1.25rem 0.875rem 1.25rem !important; } }
      .search_row form [type='search']::-ms-clear, .search_row form [type='text']::-ms-clear {
        display: none; }
      .search_row form [type='search']:focus + [type='reset'], .search_row form [type='search']:hover + [type='reset'], .search_row form [type='text']:focus + [type='reset'], .search_row form [type='text']:hover + [type='reset'] {
        opacity: 1; }
    .search_row form [type='submit'], .search_row form button.gsc-search-button {
      float: right;
      width: 40px;
      height: 40px;
      background: none;
      padding: 0.625rem;
      margin: 0 !important;
      -webkit-box-shadow: none;
      box-shadow: none;
      border: none !important;
      -webkit-transition: background-color 0.3s ease-out;
      -o-transition: background-color 0.3s ease-out;
      transition: background-color 0.3s ease-out; }
      @media screen and (min-width: 48.75em) {
        .search_row form [type='submit'], .search_row form button.gsc-search-button {
          padding: 1.0625rem;
          width: 3.75rem;
          height: 3.75rem; } }
      .search_row form [type='submit'] svg, .search_row form button.gsc-search-button svg {
        fill: #672b64;
        width: 1.25rem;
        height: 1.25rem; }
        @media screen and (min-width: 48.75em) {
          .search_row form [type='submit'] svg, .search_row form button.gsc-search-button svg {
            width: 1.625rem;
            height: 1.625rem; } }
      .search_row form [type='submit']:hover svg, .search_row form [type='submit']:focus svg, .search_row form button.gsc-search-button:hover svg, .search_row form button.gsc-search-button:focus svg {
        fill: #024287; }
    .search_row form [type='reset'], .search_row form div.gsc-clear-button {
      padding: 0;
      position: absolute;
      top: 0.625rem;
      right: 2.5rem;
      width: 1.25rem;
      height: 1.25rem;
      font-size: 1.875rem;
      line-height: 1.25rem;
      -webkit-box-shadow: none;
      box-shadow: none;
      display: block;
      opacity: 0;
      color: #672b64;
      -webkit-transition: opacity 0.3s ease-out, color 0.3s ease-out;
      -o-transition: opacity 0.3s ease-out, color 0.3s ease-out;
      transition: opacity 0.3s ease-out, color 0.3s ease-out;
      text-align: center; }
      @media screen and (min-width: 48.75em) {
        .search_row form [type='reset'], .search_row form div.gsc-clear-button {
          top: 0.9375rem;
          right: 3.75rem;
          width: 1.875rem;
          height: 1.875rem;
          font-size: 2.5rem;
          line-height: 1.875rem; } }
      .search_row form [type='reset']:hover, .search_row form [type='reset']:focus, .search_row form div.gsc-clear-button:hover, .search_row form div.gsc-clear-button:focus {
        color: #024287;
        opacity: 1; }

/* MAIN CONTENT
============================================= */
p.swipe, .swipe.p {
  height: 30px;
  line-height: 30px;
  padding-left: 30px;
  background: url(../images/style/icon_swipe.png) 0 0 no-repeat;
  white-space: nowrap; }

ul.section_icons li {
  background: none;
  position: relative;
  padding-bottom: 1.25rem; }
  @media screen and (min-width: 48.75em) {
    ul.section_icons li {
      padding-bottom: 1.875rem; } }
  ul.section_icons li > a {
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-out, background 0.3s ease-out, color 0.3s ease-out;
    -o-transition: opacity 0.5s ease-out, background 0.3s ease-out, color 0.3s ease-out;
    transition: opacity 0.5s ease-out, background 0.3s ease-out, color 0.3s ease-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: cubic-bezier(0.11, 0.045, 0.185, 1);
    animation-timing-function: cubic-bezier(0.11, 0.045, 0.185, 1); }
    .no-anim ul.section_icons li > a {
      opacity: 1 !important; }
  ul.section_icons li:nth-child(1) > a {
    -webkit-animation-delay: 0.3s !important;
    animation-delay: 0.3s !important; }
  ul.section_icons li:nth-child(2) > a {
    -webkit-animation-delay: 0.5s !important;
    animation-delay: 0.5s !important; }
  ul.section_icons li:nth-child(3) > a {
    -webkit-animation-delay: 0.7s !important;
    animation-delay: 0.7s !important; }
  ul.section_icons li:nth-child(4) > a {
    -webkit-animation-delay: 0.9s !important;
    animation-delay: 0.9s !important; }
  ul.section_icons li:nth-child(5) > a {
    -webkit-animation-delay: 1.1s !important;
    animation-delay: 1.1s !important; }
  ul.section_icons li:nth-child(6) > a {
    -webkit-animation-delay: 1.3s !important;
    animation-delay: 1.3s !important; }
  ul.section_icons li:nth-child(7) > a {
    -webkit-animation-delay: 1.5s !important;
    animation-delay: 1.5s !important; }
  ul.section_icons li:nth-child(8) > a {
    -webkit-animation-delay: 1.7s !important;
    animation-delay: 1.7s !important; }
  ul.section_icons li:nth-child(9) > a {
    -webkit-animation-delay: 1.9s !important;
    animation-delay: 1.9s !important; }
  ul.section_icons li:nth-child(10) > a {
    -webkit-animation-delay: 2.1s !important;
    animation-delay: 2.1s !important; }
  ul.section_icons li:nth-child(11) > a {
    -webkit-animation-delay: 2.3s !important;
    animation-delay: 2.3s !important; }
  ul.section_icons li:nth-child(12) > a {
    -webkit-animation-delay: 2.5s !important;
    animation-delay: 2.5s !important; }
  ul.section_icons li:nth-child(13) > a {
    -webkit-animation-delay: 2.7s !important;
    animation-delay: 2.7s !important; }
  ul.section_icons li:nth-child(14) > a {
    -webkit-animation-delay: 2.9s !important;
    animation-delay: 2.9s !important; }
  ul.section_icons li:nth-child(15) > a {
    -webkit-animation-delay: 3.1s !important;
    animation-delay: 3.1s !important; }
  ul.section_icons li:nth-child(16) > a {
    -webkit-animation-delay: 3.3s !important;
    animation-delay: 3.3s !important; }
  ul.section_icons li:nth-child(17) > a {
    -webkit-animation-delay: 3.5s !important;
    animation-delay: 3.5s !important; }
  ul.section_icons li:nth-child(18) > a {
    -webkit-animation-delay: 3.7s !important;
    animation-delay: 3.7s !important; }
  ul.section_icons li:nth-child(19) > a {
    -webkit-animation-delay: 3.9s !important;
    animation-delay: 3.9s !important; }
  ul.section_icons li:nth-child(20) > a {
    -webkit-animation-delay: 4.1s !important;
    animation-delay: 4.1s !important; }

ul.section_icons.animate-go li > a {
  -webkit-animation-name: fade-in-bottom;
  animation-name: fade-in-bottom; }

a.large_icon {
  -webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1);
  border-radius: 0.3125rem;
  display: block;
  overflow: hidden;
  background: #ffffff !important;
  padding: 0.9375rem 0.625rem !important;
  border: none;
  line-height: 1.2;
  position: relative;
  z-index: 1; }
  @media screen and (min-width: 48.75em) {
    a.large_icon {
      padding: 0.9375rem 1.25rem !important; } }
  a.large_icon span {
    display: block; }
  a.large_icon .text_con {
    float: right;
    width: calc(100% - 85px);
    font-size: 0.875rem;
    padding-left: 1.25rem; }
    @media screen and (min-width: 48.75em) {
      a.large_icon .text_con {
        font-size: 1rem; } }
  a.large_icon .img {
    margin: 1.25rem auto;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    float: left;
    width: 5.3125rem;
    height: 5.3125rem;
    margin: 0;
    -webkit-transition: transform 0.3s ease-out;
    -moz-transition: transform 0.3s ease-out;
    -ms-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; }
    a.large_icon .img img {
      -webkit-transition: transform 0.3s ease-out;
      -moz-transition: transform 0.3s ease-out;
      -ms-transition: transform 0.3s ease-out;
      -o-transition: transform 0.3s ease-out;
      -webkit-transition: -webkit-transform 0.3s ease-out;
      transition: -webkit-transform 0.3s ease-out;
      transition: transform 0.3s ease-out;
      transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; }
  a.large_icon [class^="h"] {
    color: #672b64; }
  a.large_icon :last-child {
    margin-bottom: 0 !important; }
  a.large_icon:hover, a.large_icon:focus {
    background: #e6e8ea !important; }
    a.large_icon:hover .img img, a.large_icon:focus .img img {
      -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
      transform: scale(1.2); }
    a.large_icon:hover [class^="h"], a.large_icon:focus [class^="h"] {
      color: #024287; }

/* ADVERTS
============================================= */
.ad {
  -webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  border-radius: 0.3125rem;
  background: #ffffff;
  padding: 0.9375rem; }
  @media screen and (min-width: 48.75em) {
    .ad {
      padding: 1.25rem 2.5rem; } }

.advert .btn {
  margin-bottom: 0; }

.advert img[align="left"] {
  margin: 0 1.25rem 1.25rem 0; }

.advert img[align="right"] {
  margin: 0 0 1.25rem 1.25rem; }

.ad_icon {
  float: left;
  width: 88px;
  height: 88px;
  border: solid 1px #e6e8ea;
  margin: 0 20px 20px 0; }
  .ad_icon img {
    width: 70px;
    height: 70px;
    margin: 9px;
    background: url(../images/style/icon_grad.png) bottom center repeat-x #873984;
    -webkit-transition: background-color 0.3s ease-out;
    -moz-transition: background-color 0.3s ease-out;
    -ms-transition: background-color 0.3s ease-out;
    -o-transition: background-color 0.3s ease-out;
    transition: background-color 0.3s ease-out; }

/* SIDEBAR
============================================= */
.sidebar {
  -webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 0.625rem 0.9375rem;
  margin: 0 0 1.875rem 0;
  border-radius: 0.3125rem; }
  @media screen and (min-width: 48.75em) {
    .sidebar {
      padding: 0.9375rem 1.25rem; } }
  @media screen and (min-width: 64em) {
    .sidebar {
      padding: 1.5625rem 1.875rem; } }
  .sidebar > div:not(:first-child) > h2:first-child, .sidebar > div:not(:first-child) > .h2:first-child, .sidebar > div:not(:first-child) > h3:first-child, .sidebar > div:not(:first-child) > .h3:first-child, .sidebar > div:not(:first-child) > h4:first-child, .sidebar > div:not(:first-child) > .h4:first-child, .sidebar > div:not(:first-child) > h5:first-child, .sidebar > div:not(:first-child) > .h5:first-child {
    margin-top: 1.25rem; }
    @media screen and (min-width: 48.75em) {
      .sidebar > div:not(:first-child) > h2:first-child, .sidebar > div:not(:first-child) > .h2:first-child, .sidebar > div:not(:first-child) > h3:first-child, .sidebar > div:not(:first-child) > .h3:first-child, .sidebar > div:not(:first-child) > h4:first-child, .sidebar > div:not(:first-child) > .h4:first-child, .sidebar > div:not(:first-child) > h5:first-child, .sidebar > div:not(:first-child) > .h5:first-child {
        margin-top: 2.5rem; } }
  .sidebar .sidenav {
    margin: 0.3125rem 0;
    padding: 0;
    margin: 0;
    list-style: none; }
    .sidebar .sidenav li {
      padding: 0;
      margin: 0; }
    @media screen and (min-width: 48.75em) {
      .sidebar .sidenav {
        margin: 0.625rem 0; } }
    .sidebar .sidenav li {
      background: none;
      margin-bottom: 0.75rem; }
      .sidebar .sidenav li a {
        border: none; }
        .sidebar .sidenav li a:hover, .sidebar .sidenav li a:focus, .sidebar .sidenav li a.active {
          color: #024287; }
  .sidebar .doc_list, .sidebar .ext_list, .sidebar .page_list {
    margin: 5px 0 30px 0;
    padding: 0;
    margin: 0;
    list-style: none; }
    .sidebar .doc_list li, .sidebar .ext_list li, .sidebar .page_list li {
      padding: 0;
      margin: 0; }
    @media screen and (min-width: 48.75em) {
      .sidebar .doc_list, .sidebar .ext_list, .sidebar .page_list {
        margin: 10px 0 30px 0; } }
    .sidebar .doc_list li, .sidebar .ext_list li, .sidebar .page_list li {
      background: none;
      padding: 5px 0;
      line-height: 1.5;
      margin-bottom: 0.75rem !important; }
  .sidebar .doc_list li a, .sidebar .ext_list li a {
    padding: 0 0 0 15px;
    display: block;
    background: url(../images/style/m_doc.png) 0 0 no-repeat;
    display: inline-block; }
    @media screen and (min-width: 48.75em) {
      .sidebar .doc_list li a, .sidebar .ext_list li a {
        padding: 0 0 0 20px;
        background: url(../images/style/doc.png) 0 6px no-repeat; } }
  .sidebar .ext_list li a {
    background-image: url(../images/style/m_link.png); }
    @media screen and (min-width: 48.75em) {
      .sidebar .ext_list li a {
        background-image: url(../images/style/link.png); } }

/* PAGINATION
============================================= */
.pagination {
  border-top: solid 1px #e8eaec;
  padding-top: 20px;
  margin: 0;
  text-align: center;
  overflow: hidden;
  height: auto; }
  .pagination li {
    font-size: 1rem; }
    .pagination li.disabled {
      display: none; }
    .pagination li.pagi_cur a {
      background-color: #672b64;
      color: #ffffff; }
    .pagination li a {
      color: #672b64;
      /*padding: 0 0.625rem;*/
	  /*Add a little more size to the pagination numbers*/
	  padding: 0.6rem !important;
      border: none;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out; }
      .pagination li a:hover {
        background-color: #672b64;
        color: #ffffff; }
    .pagination li.pagination-next a, .pagination li.pagination-previous a {
      position: relative; }
      .pagination li.pagination-next a svg, .pagination li.pagination-previous a svg {
        position: absolute;
        width: 0.5rem;
        height: 0.875rem;
        top: 0.375rem; }
        .pagination li.pagination-next a svg path, .pagination li.pagination-previous a svg path {
          fill: #672b64;
          -webkit-transition: fill 0.3s ease-out;
          -moz-transition: fill 0.3s ease-out;
          -ms-transition: fill 0.3s ease-out;
          -o-transition: fill 0.3s ease-out;
          transition: fill 0.3s ease-out; }
      .pagination li.pagination-next a:after, .pagination li.pagination-next a:before, .pagination li.pagination-previous a:after, .pagination li.pagination-previous a:before {
        display: none; }
      .pagination li.pagination-next a:hover svg path, .pagination li.pagination-previous a:hover svg path {
        fill: #ffffff; }
    .pagination li.pagination-previous a {
      padding-left: 1.75rem; }
      .pagination li.pagination-previous a svg {
        left: 10px;
        -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        transform: rotate(-180deg); }
    .pagination li.pagination-next a {
      padding-right: 1.75rem; }
      .pagination li.pagination-next a svg {
        right: 10px; }

/* CTA
============================================= */
.cta {
  margin-bottom: 20px; }
  @media screen and (min-width: 48.75em) {
    .cta {
      margin-bottom: 40px; } }
  .cta .btn {
    background: #672b64;
    color: #fff;
    border: none; }
    @media screen and (min-width: 48.75em) {
      .cta .btn {
        max-width: 350px; } }
    .cta .btn:hover, .cta .btn:focus {
      background: #024287; }

/* NOTIFICATIONS
============================================= */
.notification_wrapper {
  padding: 0.625rem 0;
  /*background: #e6e8ea;*/
  background: #F2F2F2;
  margin-top: -1.5rem; }
  @media screen and (min-width: 48.75em) {
    .notification_wrapper {
      padding: 1.25rem 0;
      margin-top: -2.25rem; } }
  @media screen and (min-width: 76.25em) {
    .notification_wrapper {
      margin-top: -3.75rem; } }
  .notification_wrapper.slick-slider:not(.single_slider) {
    padding-bottom: 2.5rem; }
  .notification_wrapper :last-child {
    margin-bottom: 0; }
  .search_row + div .notification_wrapper, .az + div .notification_wrapper {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }

/* CONTACT DETAILS
============================================= */
.sidebar_only {
  display: none; }
  .sidebar .sidebar_only {
    display: block; }

.contact_details h5, .contact_details .h5 {
  margin: 10px 0 0 0; }

.contact_details ul {
  padding: 0;
  margin: 0;
  list-style: none;
  min-height: 35px; }
  .contact_details ul li {
    padding: 0;
    margin: 0; }
  .contact_details ul li {
    background: none;
    padding: 0;
    margin-bottom: 0.75rem !important; }

.contact_details .icon_tel, .contact_details .icon_email, .contact_details .icon_loc, .contact_details .icon_post {
  padding-left: 40px;
  background-position: 0 4px;
  background-repeat: no-repeat;
  margin: 1rem 0; }

.contact_details .icon_tel {
  background-image: url(../images/style/icon_tel.png); }

.contact_details .icon_email {
  background-image: url(../images/style/icon_email.png); }

.contact_details .icon_loc {
  background-image: url(../images/style/icon_loc.png); }

.contact_details .icon_post {
  background-image: url(../images/style/icon_post.png); }

/* BUTTONS
============================================= */
.button, .btn, button {
  font-weight: 700;
  -webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 3;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }
  @media screen and (max-width: 48.6875em) {
    .button, .btn, button {
      font-size: 0.875rem; } }
  @media screen and (min-width: 48.75em) {
    .button, .btn, button {
      padding: 0.625rem 2.5rem;
      font-size: 1.125rem; } }
  .button:hover, .btn:hover, .button:focus, .btn:focus, button:hover, button:focus {
    color: #ffffff; }
  .button.primary, .primary.btn, button.primary {
    background-color: #672b64;
    color: #ffffff; }
    .button.primary:hover, .primary.btn:hover, .button.primary:focus, .primary.btn:focus, button.primary:hover, button.primary:focus {
      background-color: #024287;
      color: #ffffff; }

.btn.btn_twitter {
  /*color: #28a9e0;*/
   color: #37559b; }
  .btn.btn_twitter:hover, .btn.btn_twitter:focus {
    /*background-color: #28a9e0;*/
	background-color: #37559b;
    color: #ffffff; }

.btn.btn_facebook {
  color: #37559b; }
  .btn.btn_facebook:hover, .btn.btn_facebook:focus {
    background-color: #37559b;
    color: #ffffff; }

.btn.btn_instagram {
  color: #a10a87; }
  .btn.btn_instagram:hover, .btn.btn_instagram:focus {
    background-color: #a10a87;
    color: #ffffff; }

span.btn:hover, span.btn:focus {
  background-color: #ffffff;
  color: #672b64; }

ul.btns {
  padding: 20px 0 0 0;
  margin: 0;
  list-style: none; }
  ul.btns li {
    margin: 0 0 20px 0;
    padding: 0;
    background: none; }
    ul.btns li:last-child {
      margin-bottom: 0; }

ul.btns_right {
  padding: 20px 0 0 0;
  margin: 0;
  list-style: none;
  display: block; }
  ul.btns_right li {
    margin: 0 0 0 20px;
    padding: 0;
    background: none;
    float: right; }
    ul.btns_right li:last-child {
      margin-bottom: 0; }

.plain_btn {
  text-align: left;
  max-width: 100%;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  margin-bottom: 1.875rem;
  display: block; }

.read_btn {
  display: inline-block;
  background: url(../images/style/read_arrow.png) right 8px no-repeat;
  padding-right: 10px;
  color: #672b64;
  width: auto;
  white-space: nowrap;
  border: none; }
  @media screen and (min-width: 48.75em) {
    .read_btn {
      background-position: right 8px; } }
  .read_btn:hover, .read_btn:focus {
    background-position: right -12px; }
    @media screen and (min-width: 48.75em) {
      .read_btn:hover, .read_btn:focus {
        background-position: right -12px; } }

.dark_btn {
  background-color: #672b64;
  border-color: #672b64;
  color: #ffffff; }
  .dark_btn:hover, .dark_btn:focus {
    background-color: #e9eaec;
    border-color: #e9eaec;
    color: #672b64; }

/* TABLES
============================================= */
table {
  border: solid 1px #d2cec8;
  width: 100%;
  height: auto;
  margin-bottom: 15px; }
  table tr th {
    text-align: left;
    line-height: 130%;
    font-weight: 600;
    padding: 10px;
    color: #000;
    background: #ffffff; }
  table tr td {
    font-weight: 400;
    padding: 10px;
    color: #000; }
    table tr td p, table tr td .p, table tr td ul {
      margin: 0;
      line-height: 110%; }
      table tr td p li, table tr td .p li, table tr td ul li {
        padding: 0 0 0 25px;
        background-position: 5px 9px; }
    table tr td ul {
      margin-left: 1.25rem; }
  table tr.even, table tr.alt, table tr:nth-of-type(even) {
    background: #fafafa; }
  #main table tr {
    border-bottom: solid 1px #d2cec8; }
    #main table tr td {
      border-right: solid 1px #d2cec8; }
      #main table tr td:last-child {
        border-right: none; }

/* ARROW STRIP
============================================= */
.arrow_strip {
  background: #808285;
  height: 100px;
  overflow: hidden; }
  .arrow_strip .arrow_strip_anim {
    height: 60px; }

.columns.arrow_strip_head {
  height: 100px;
  background: url(../images/style/arrow_strip_yellow.png) center right no-repeat transparent; }
  .columns.arrow_strip_head h2, .columns.arrow_strip_head .h2 {
    margin: 10px 0; }
    .columns.arrow_strip_head h2.multi_line, .columns.arrow_strip_head .multi_line.h2 {
      margin: 0; }
    .columns.arrow_strip_head h2 a, .columns.arrow_strip_head .h2 a {
      margin: 0; }
  .columns.arrow_strip_head a {
    margin: 15px 20px;
    text-align: left; }

.arrow_strip.arrow_strip_anim .columns.arrow_strip_head {
  height: 60px; }

.columns.arrow_strip_body {
  padding: 10px 0;
  background: none; }

/* SHARE & SOCIAL
============================================= */
.social ul {
  padding: 0;
  margin: 0;
  list-style: none; }
  .social ul li {
    padding: 0;
    margin: 0; }
  .social ul li {
    display: inline-block;
    padding: 0 0.625rem; }
    .social ul li:first-of-type {
      padding-left: 0; }
    .social ul li:last-of-type {
      padding-right: 0; }
    .social ul li a {
      border-radius: 50%;
      height: 50px;
      width: 50px;
      display: block;
      text-indent: -9999px;
      overflow: hidden;
      padding: 0.625rem;
      background-image: none;
      -webkit-transition: background 0.3s ease-out;
      -moz-transition: background 0.3s ease-out;
      -ms-transition: background 0.3s ease-out;
      -o-transition: background 0.3s ease-out;
      transition: background 0.3s ease-out; }
      @media screen and (min-width: 48.75em) {
        .social ul li a {
          height: 60px;
          width: 60px; } }
      .social ul li a:hover, .social ul li a:focus {
        background-color: #ffffff; }

.twitter {
  background-color: #28a9e0; }
  .twitter svg * {
    fill: #ffffff; }
  .twitter:hover, .twitter:focus, a:hover .twitter, a:focus .twitter {
    background-color: #ffffff;
    color: #28a9e0; }
    .twitter:hover svg *, .twitter:focus svg *, a:hover .twitter svg *, a:focus .twitter svg * {
      fill: #28a9e0; }

.facebook {
  background-color: #3a589e; }
  .facebook svg * {
    fill: #ffffff; }
  .facebook:hover, .facebook:focus, a:hover .facebook, a:focus .facebook {
    background-color: #ffffff;
    color: #3a589e; }
    .facebook:hover svg *, .facebook:focus svg *, a:hover .facebook svg *, a:focus .facebook svg * {
      fill: #3a589e; }

.google {
  background-color: #db4437; }
  .google svg * {
    fill: #ffffff; }
  .google:hover, .google:focus, a:hover .google, a:focus .google {
    background-color: #ffffff;
    color: #db4437; }
    .google:hover svg *, .google:focus svg *, a:hover .google svg *, a:focus .google svg * {
      fill: #db4437; }

.instagram {
  background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  background: -o-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important; }
  .instagram svg * {
    fill: #ffffff; }
  .instagram:hover, .instagram:focus, a:hover .instagram, a:focus .instagram {
    background: #ffffff !important;
    color: #c32aa3; }
    .instagram:hover svg *, .instagram:focus svg *, a:hover .instagram svg *, a:focus .instagram svg * {
      fill: #c32aa3; }

#share {
  float: left;
  clear: both;
  padding: 10px 0 20xp 0; }
  @media screen and (min-width: 48.75em) {
    #share {
      float: right;
      padding: 25px 0 20px 0; } }
  #share a {
    height: 20px;
    width: 20px;
    padding: 0;
    margin: 0 10px 0 0;
    overflow: hidden;
    display: block;
    border: none; }
    #share a.addthis_counter {
      line-height: 20px;
      width: 28px !important;
      /*padding-left: 10px;*/
      margin: 0 0 0 -5px;
      background: url(../images/style/share_counter.png) right center no-repeat !important; }
    #share a.addthis_button_expanded {
      padding: 0;
      margin: 0;
      line-height: 20px;
      width: 18px !important;
      background: none  !important;
      float: right; }

/* MISC
============================================= */
.reveal-modal .close-reveal-modal {
  border: none;
  right: 8px;
  top: 5px; }

.reveal-modal.no-pad {
  padding: 0; }

.reveal-modal h2, .reveal-modal .h2 {
  margin-bottom: 10px; }

.reveal-modal input[type="text"]:focus {
  border: solid 1px #edf2f5; }

.reveal-modal label.chk span.chk_text, .reveal-modal form .chk.lbl span.chk_text, form .reveal-modal .chk.lbl span.chk_text {
  width: 80%; }

.reveal-modal .row.button-row .columns {
  padding: 10px; }

h2.dist_title, .dist_title.h2 {
  background: url(../images/style/dist_title.png) -20px 0 no-repeat #aeb9be;
  padding-left: 40px;
  color: #ffffff;
  line-height: 25px; }

.summary {
  text-transform: uppercase;
  color: #636466;
  font-weight: bold;
  float: left;
  margin-bottom: 10px; }

.greybg {
  padding: 5px 15px;
  background: #e6ecef; }
  @media screen and (min-width: 48.75em) {
    .greybg .no_pad_left {
      padding-right: 10px; }
    .greybg .no_pad_right {
      padding-left: 10px; } }
  .greybg.summary {
    width: 100%; }
  .greybg p, .greybg .p {
    color: #636466;
    font-weight: bold; }
  .greybg a {
    font-weight: bold;
    color: #636466; }

.dark_grey_intro {
  padding: 5px 15px 0 15px;
  color: #fff;
  background: #aeb9be; }
  @media screen and (min-width: 48.75em) {
    .dark_grey_intro {
      padding: 5px 45px 0 45px;
      background: #aeb9be url(../images/style/doc_icon.png) 8px 15px no-repeat; } }
  .dark_grey_intro p, .dark_grey_intro .p, .dark_grey_intro h2, .dark_grey_intro .h2 {
    color: #fff; }
  .dark_grey_intro h2, .dark_grey_intro .h2 {
    font-weight: bold; }

.dark_grey_border {
  padding: 18px 3px;
  border: 2px solid #aeb9be;
  overflow: hidden; }
  @media screen and (min-width: 48.75em) {
    .dark_grey_border {
      padding: 18px 33px; } }
  .dark_grey_border p, .dark_grey_border .p {
    padding-left: 10px;
    padding-right: 10px; }
  .dark_grey_border .about_box p, .dark_grey_border .about_box .p {
    padding-left: 0;
    padding-right: 0; }

.row.page_index {
  margin: 0 !important; }
  .row.page_index .columns {
    padding-left: 0;
    padding-right: 0; }
  .row.page_index h3, .row.page_index .h3 {
    margin-top: 0;
    padding-top: 0; }
  .row.page_index .columns.page_index_img {
    padding-left: 0 !important; }

.img_right, .cs_control.img_right {
  margin: 0 0 1.25rem 1.25rem;
  float: right;
  clear: right; }

.flex-video, .responsive-embed {
  margin: 20px 0; }

.reveal-modal .flex-video, .reveal-modal .responsive-embed {
  margin: 0; }

.img_marg_top {
  margin-top: 10px; }

#infoTabs, #MSDSList {
  margin: 20px 0; }

.divider {
  clear: both;
  margin: 10px 0; }

.admin_notice {
  background: skyblue url("../images/style/info_icon.png") 10px center no-repeat;
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 50;
  padding: 0 10px 0 46px;
  margin-right: 10px;
  opacity: 0.9; }

.CS_Element_ImageGrid table {
  border: none;
  background: none; }
  .CS_Element_ImageGrid table tbody {
    border: none;
    background: none; }
  .CS_Element_ImageGrid table tr {
    border: none !important; }
    .CS_Element_ImageGrid table tr td {
      border: none !important;
      padding: 0;
      margin: 0 -10px; }
      .CS_Element_ImageGrid table tr td a, .CS_Element_ImageGrid table tr td > div > img {
        border: none !important;
        text-decoration: none;
        margin: 10px !important;
        display: inline-block; }
        .CS_Element_ImageGrid table tr td a img, .CS_Element_ImageGrid table tr td > div > img img {
          margin: 0 !important; }

.mainSearch input {
  display: inline; }

/* ACCORDION
============================================= */
.accordion {
  border: none;
  clear: both; }

.accordion-item {
  margin-bottom: 0 !important; }
  .accordion-item > a, .accordion-item > a:active {
    background: #e6e8ea;
    color: #672b64;
    padding: 10px;
    display: block;
    border: none;
    border-top: 1px solid #fff;
    font-size: 1rem; }
    .accordion-item > a:focus, .accordion-item > a:hover, .accordion-item > a:active:focus, .accordion-item > a:active:hover {
      background: #672b64;
      color: #fff; }
  .accordion-item > .content {
    border: none;
    padding-top: 0; }

/* COMMONSPOT FIXES
============================================= */
/* RTE */
.ktml table {
  width: auto;
  margin: 0; }

.ktml_bg input {
  padding: 0;
  height: auto; }

.ktml div.optcontainer div.opt div {
  display: block !important;
  border-width: none !important;
  float: left !important;
  font-size: 0.75rem; }

/* Pop-ups */
.lightboxOverlay {
  height: 100% !important; }

.lightboxBottomCorner {
  margin-top: -5px !important; }

.lightboxContainer .lightboxBottomCorner img, .lightboxContainer .lightboxTopCorner img {
  height: 10px; }

.lightboxSubTitleContainer h2, .lightboxSubTitleContainer .h2 {
  background: none; }

.csMainTable {
  font-size: 0.625rem;
  line-height: normal; }
  .csMainTable input {
    height: auto; }

#clsProxyButtonTable input[type="button"] {
  background: none;
  height: 20px;
  width: auto;
  padding: 0;
  margin: 0; }

/* Image gallery in popup */
ul.img_gallery {
  height: 400px !important; }
  @media screen and (min-width: 48.75em) {
    ul.img_gallery {
      height: 650px !important; } }

ul.img_gallery li {
  padding: 0;
  background: none;
  text-align: center; }

ul.img_gallery li img {
  margin: 0 auto;
  width: 100%; }

ul.img_gallery li p, ul.img_gallery li .p {
  color: #ffffff; }

.orbit-container .orbit-slides-container > * .orbit-caption {
  position: relative; }
  @media screen and (min-width: 48.75em) {
    .orbit-container .orbit-slides-container > * .orbit-caption {
      position: absolute; } }

/* CS AUTHORING */
.cs_cdivshow {
  overflow: hidden; }

#cs_entrance a {
  border: none; }
  
/* COOKIE BAR NOTICE
============================================= */
#cookie-bar {
   display: flex;
  align-items: center;
  position: fixed;
  height: 100%;
  height: -webkit-fill-available;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(36, 59, 122, 0.945);
  padding: 1.3125rem 1.25rem 0.3125rem 1.25rem;
  z-index: 20; }
  #cookie-bar h2, #cookie-bar p, #cookie-bar .p {
    color: #ffffff; }
  #cookie-bar .close-button {
    color: #ffffff; }
  #cookie-bar .close-button:hover, #cookie-bar .close-button:focus {
      color: #613467; }
  .cookie-notice-link {
	  color: #ffffff !important;
	  text-decoration: underline; }

/* FOOTER
============================================= */
footer {
  background: #e6e8ea;
  padding: 1.25rem 0;
  /*Temp removed for rating bar
  ==============================
  margin-top: 1.875rem;*/
  clear: both; }
  @media screen and (min-width: 48.75em) {
    footer {
      padding: 1.875rem 0;
      /*Temp removed for rating bar
  ==============================
      margin-top: 3.125rem;*/} }
  @media screen and (min-width: 64em) {
    footer {
      /*Temp removed for rating bar
  ==============================
      margin-top: 5rem;*/ } }
  footer img {
    max-height: 4.375rem; }
  footer p, footer .p, footer li {
    font-size: 0.875rem; }
    @media screen and (min-width: 48.75em) {
      footer p, footer .p, footer li {
        font-size: 1rem; } }
    footer p:last-child, footer .p:last-child, footer li:last-child {
      margin-bottom: 0; }
  footer .footer_nav {
    padding: 0;
    margin: 0; }
    @media screen and (max-width: 48.6875em) {
      footer .footer_nav {
        margin-bottom: 0.9375rem; } }
    footer .footer_nav li {
      padding-left: 0.625rem;
      margin: 0 !important;
      background: none;
      line-height: 16px;
      display: inline-block; }
      footer .footer_nav li:not(:last-child) {
        border-right: solid 1px #3a3a3a;
        padding-right: 0.625rem; }

/* ANIMATIONS
============================================= */
@-webkit-keyframes gradient-from-left {
  0% {
    background-position: 100% 0%; }
  100% {
    background-position: 0% 0%; } }
@keyframes gradient-from-left {
  0% {
    background-position: 100% 0%; }
  100% {
    background-position: 0% 0%; } }

@-webkit-keyframes fade-in-bottom {
  from {
    -webkit-transform: translateY(3.125rem);
    transform: translateY(3.125rem);
    opacity: 0; }
  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

@keyframes fade-in-bottom {
  from {
    -webkit-transform: translateY(3.125rem);
    transform: translateY(3.125rem);
    opacity: 0; }
  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

@-webkit-keyframes fade-in-top {
  from {
    -webkit-transform: translateY(-9.375rem);
    transform: translateY(-9.375rem);
    opacity: 0; }
  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

@keyframes fade-in-top {
  from {
    -webkit-transform: translateY(-9.375rem);
    transform: translateY(-9.375rem);
    opacity: 0; }
  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

/* HEADER AND NAVIGATION
============================================= */
header {
  height: 6.25rem;
  background: #672b64;
  background: -webkit-linear-gradient(69deg, #672b64 0%, #672b64 30%, #024287 50%);
  background: -o-linear-gradient(69deg, #672b64 0%, #672b64 30%, #024287 50%);
  background: linear-gradient(21deg, #672b64 0%, #672b64 30%, #024287 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="$primary-color",endColorstr="$secondary-color",GradientType=1);
  background-size: 200% 200%;
  -webkit-animation: gradient-from-left 2s ease forwards;
  animation: gradient-from-left 2s ease forwards;
  z-index: 3;
  position: relative; }
  @media screen and (min-width: 48.75em) {
    header {
      height: 6.875rem; } }

#logo {
  display: block;
  border: none;
  margin: 0.625rem 0;
  height: 2.5rem; }
  @media screen and (min-width: 48.75em) {
    #logo {
      margin: 1.5625rem 0;
      height: 3.75rem; } }
  #logo img {
    max-height: 100%; }

.skip:focus {
  height: auto;
  width: auto;
  clip: auto;
  -webkit-clip-path: none;
  clip-path: none;
  z-index: 20; }

.search-trigger {
  display: block;
  width: 1.875rem;
  height: 1.875rem;
  padding: 0.375rem;
  border: 2px solid #ffffff;
  border-radius: 0.3125rem;
  margin: 0.9375rem 0;
  float: right; }
  @media screen and (min-width: 48.75em) {
    .search-trigger {
      width: 3.125rem;
      height: 3.125rem;
      padding: 0.75rem;
      margin: 1.875rem 0; } }
  .search-trigger svg {
    fill: #ffffff; }
  .search-trigger:hover, .search-trigger:focus {
    background: #ffffff; }
    .search-trigger:hover svg, .search-trigger:focus svg {
      fill: #672b64; }

.nav {
  height: 1.875rem;
  font-size: 0; }
  @media screen and (max-width: 48.6875em) {
    .nav {
      margin: 0 -0.625rem; } }
  @media screen and (min-width: 48.75em) {
    .nav {
      height: 6.875rem;
      text-align: right; } }
  .nav ul {
    padding: 0;
    margin: 0;
    list-style: none; }
    .nav ul li {
      padding: 0;
      margin: 0; }
    .nav ul li {
      float: left;
      width: 25%;
      line-height: 2.5rem; }
      @media screen and (min-width: 48.75em) {
        .nav ul li {
          display: inline-block;
          float: none;
          width: auto;
          line-height: 6.875rem; } }
      .nav ul li a {
        color: #ffffff;
        display: block;
        border: none;
        font-size: 0.875rem;
        text-align: center; }
        @media screen and (min-width: 48.75em) {
          .nav ul li a {
            padding: 0 1.25rem;
            font-size: 1.125rem; } }
        @media screen and (min-width: 64em) {
          .nav ul li a {
            padding: 0 2.1875rem; } }
        .nav ul li a.active, .nav ul li a:hover, .nav ul li a:focus {
          background: rgba(0, 0, 0, 0.2);
          text-shadow: none; }
        .nav ul li a#link_az.active {
          position: relative;
          z-index: 9999; }
  .nav.webadmin ul li a {
    padding: 0 0.9375rem !important;
    font-size: 0.875rem; }

/* A-Z  */
.az {
  background: #e6e8ea;
  width: 100%;
  position: absolute;
  z-index: 9999; }

ul.a-z {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  display: none; }
  ul.a-z li {
    padding: 0;
    margin: 0; }
  ul.a-z.in_page {
    display: block;
    background: #e6e8ea; }
  ul.a-z li {
    background: none;
    display: inline-block;
    font-size: 112%;
    padding: 5px 0;
    margin: 0 !important;
    width: 20px;
    color: #a6a6a6; }
    @media screen and (min-width: 64em) {
      ul.a-z li {
        font-size: 132%;
        padding: 10px 0;
        width: 32px; } }
    ul.a-z li a {
      display: block;
      border: none;
      padding: 0; }
      ul.a-z li a:hover, ul.a-z li a:focus, ul.a-z li a.active {
        background: #873984;
        color: #fff; }

/* HOMEPAGE ICONS / NAVIGATION
============================================= */
@media screen and (min-width: 48.75em) {
  .home_tabs .row .sub .row {
    margin: 0 auto; } }

.home_tabs ul.icon_list > li {
  background: none;
  position: relative;
  padding-bottom: 1.25rem; }
  @media screen and (min-width: 48.75em) {
    .home_tabs ul.icon_list > li {
      padding-bottom: 1.875rem; } }
  .home_tabs ul.icon_list > li > a {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: cubic-bezier(0.11, 0.045, 0.185, 1);
    animation-timing-function: cubic-bezier(0.11, 0.045, 0.185, 1); }
    .no-anim .home_tabs ul.icon_list > li > a {
      opacity: 1 !important; }
  .home_tabs ul.icon_list > li:nth-child(1) > a {
    -webkit-animation-delay: 0.1s !important;
    animation-delay: 0.1s !important; }
  .home_tabs ul.icon_list > li:nth-child(2) > a {
    -webkit-animation-delay: 0.2s !important;
    animation-delay: 0.2s !important; }
  .home_tabs ul.icon_list > li:nth-child(3) > a {
    -webkit-animation-delay: 0.3s !important;
    animation-delay: 0.3s !important; }
  .home_tabs ul.icon_list > li:nth-child(4) > a {
    -webkit-animation-delay: 0.4s !important;
    animation-delay: 0.4s !important; }
  .home_tabs ul.icon_list > li:nth-child(5) > a {
    -webkit-animation-delay: 0.5s !important;
    animation-delay: 0.5s !important; }
  .home_tabs ul.icon_list > li:nth-child(6) > a {
    -webkit-animation-delay: 0.6s !important;
    animation-delay: 0.6s !important; }
  .home_tabs ul.icon_list > li:nth-child(7) > a {
    -webkit-animation-delay: 0.7s !important;
    animation-delay: 0.7s !important; }
  .home_tabs ul.icon_list > li:nth-child(8) > a {
    -webkit-animation-delay: 0.8s !important;
    animation-delay: 0.8s !important; }
  .home_tabs ul.icon_list > li:nth-child(9) > a {
    -webkit-animation-delay: 0.9s !important;
    animation-delay: 0.9s !important; }
  .home_tabs ul.icon_list > li:nth-child(10) > a {
    -webkit-animation-delay: 1s !important;
    animation-delay: 1s !important; }
  .home_tabs ul.icon_list > li:nth-child(11) > a {
    -webkit-animation-delay: 1.1s !important;
    animation-delay: 1.1s !important; }
  .home_tabs ul.icon_list > li:nth-child(12) > a {
    -webkit-animation-delay: 1.2s !important;
    animation-delay: 1.2s !important; }
  .home_tabs ul.icon_list > li:nth-child(13) > a {
    -webkit-animation-delay: 1.3s !important;
    animation-delay: 1.3s !important; }
  .home_tabs ul.icon_list > li:nth-child(14) > a {
    -webkit-animation-delay: 1.4s !important;
    animation-delay: 1.4s !important; }
  .home_tabs ul.icon_list > li:nth-child(15) > a {
    -webkit-animation-delay: 1.5s !important;
    animation-delay: 1.5s !important; }
  .home_tabs ul.icon_list > li:nth-child(16) > a {
    -webkit-animation-delay: 1.6s !important;
    animation-delay: 1.6s !important; }
  .home_tabs ul.icon_list > li:nth-child(17) > a {
    -webkit-animation-delay: 1.7s !important;
    animation-delay: 1.7s !important; }
  .home_tabs ul.icon_list > li:nth-child(18) > a {
    -webkit-animation-delay: 1.8s !important;
    animation-delay: 1.8s !important; }
  .home_tabs ul.icon_list > li:nth-child(19) > a {
    -webkit-animation-delay: 1.9s !important;
    animation-delay: 1.9s !important; }
  .home_tabs ul.icon_list > li:nth-child(20) > a {
    -webkit-animation-delay: 2s !important;
    animation-delay: 2s !important; }

.home_tabs ul.icon_list.animate-go > li > a {
  -webkit-animation-name: fade-in-bottom;
  animation-name: fade-in-bottom; }

.home_tabs ul.link_list {
  margin-top: 15px;
  margin-bottom: 5px; }
  @media screen and (min-width: 48.75em) {
    .home_tabs ul.link_list {
      margin-top: 15px;
      margin-bottom: 5px; } }
  .home_tabs ul.link_list li {
    background: none;
    padding: 0 15px 10px 15px; }
    @media screen and (min-width: 48.75em) {
      .home_tabs ul.link_list li {
        background: none;
        padding: 0 15px 15px 15px;
        margin-bottom: 0;
        font-size: 100%; } }
    .home_tabs ul.link_list li a {
      opacity: 0;
      -webkit-transition: opacity 0.5s ease-out, background 0.3s ease-out, color 0.3s ease-out;
      -o-transition: opacity 0.5s ease-out, background 0.3s ease-out, color 0.3s ease-out;
      transition: opacity 0.5s ease-out, background 0.3s ease-out, color 0.3s ease-out;
      -webkit-animation-name: fade-in-bottom;
      animation-name: fade-in-bottom;
      -webkit-animation-fill-mode: forwards;
      animation-fill-mode: forwards;
      -webkit-animation-duration: 1s;
      animation-duration: 1s;
      -webkit-animation-timing-function: cubic-bezier(0.11, 0.045, 0.185, 1);
      animation-timing-function: cubic-bezier(0.11, 0.045, 0.185, 1); }
      .no-anim .home_tabs ul.link_list li a {
        opacity: 1 !important; }

.home_tabs a.btn {
  margin-bottom: 0; }
  @media screen and (min-width: 48.75em) {
    .home_tabs a.btn {
      min-width: 19.375rem; } }

a.icon {
  -webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1);
  border-radius: 0.3125rem;
  display: block;
  text-align: left;
  background: #ffffff;
  padding: 0.9375rem 0.625rem;
  border: none;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center; }
  a.icon::before, a.icon::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #ffffff; }
  a.icon::before {
    width: 6.25rem;
    height: 3.125rem;
    z-index: 3;
    -webkit-transition: background 0.3s ease-out;
    -moz-transition: background 0.3s ease-out;
    -ms-transition: background 0.3s ease-out;
    -o-transition: background 0.3s ease-out;
    transition: background 0.3s ease-out; }
  a.icon::after {
    width: 3.125rem;
    height: 3.125rem;
    -webkit-box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-transform: rotate(45deg) skew(-20deg, -20deg);
    -ms-transform: rotate(45deg) skew(-20deg, -20deg);
    transform: rotate(45deg) skew(-20deg, -20deg);
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    z-index: 2; }
  @media screen and (min-width: 48.75em) {
    a.icon {
      padding: 1.25rem;
      text-align: center; } }
  a.icon.active {
    color: #024287; }
    a.icon.active::after {
      bottom: -20px; }
      @media screen and (min-width: 48.75em) {
        a.icon.active::after {
          bottom: -25px; } }
  a.icon span {
    display: block;
    position: relative;
    overflow: hidden;
    z-index: 4; }
  @media screen and (max-width: 48.6875em) {
    a.icon .text {
      float: right;
      width: calc(100% - 40px);
      font-size: 0.875rem;
      padding-left: 0.625rem; } }
  a.icon .img {
    width: 5.3125rem;
    height: 5.3125rem;
    margin: 1.25rem auto;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transition: transform 0.3s ease-out;
    -moz-transition: transform 0.3s ease-out;
    -ms-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    /*img {
			filter: drop-shadow(0 0 rem-calc(5) $dark-gray);
		}*/ }
    @media screen and (max-width: 48.6875em) {
      a.icon .img {
        float: left;
        width: 2.5rem;
        height: 2.5rem;
        margin: 0; } }
  a.icon:hover, a.icon:focus {
    background: #e6e8ea; }
    @media screen and (min-width: 48.75em) {
      a.icon:hover .img, a.icon:focus .img {
        -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
        transform: scale(1.2); } }
    a.icon:hover::before, a.icon:hover::after, a.icon:focus::before, a.icon:focus::after {
      background: #e6e8ea; }

.sub {
  margin-top: 1.5625rem;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  display: none;
  background: #e6e8ea;
  overflow: hidden; }
  @media screen and (min-width: 48.75em) {
    .sub {
      margin-top: 2.1875rem;
      padding-top: 1.875rem;
      padding-bottom: 0.9375rem; } }
  .sub .btn {
    text-align: left;
    display: block;
    padding-left: 1.25rem;
    padding-left: 1.25rem; }
  .icon.active + .sub .link_list li:nth-child(1) a {
    -webkit-animation-delay: 0.1s !important;
    animation-delay: 0.1s !important; }
  .icon.active + .sub .link_list li:nth-child(2) a {
    -webkit-animation-delay: 0.2s !important;
    animation-delay: 0.2s !important; }
  .icon.active + .sub .link_list li:nth-child(3) a {
    -webkit-animation-delay: 0.3s !important;
    animation-delay: 0.3s !important; }
  .icon.active + .sub .link_list li:nth-child(4) a {
    -webkit-animation-delay: 0.4s !important;
    animation-delay: 0.4s !important; }
  .icon.active + .sub .link_list li:nth-child(5) a {
    -webkit-animation-delay: 0.5s !important;
    animation-delay: 0.5s !important; }
  .icon.active + .sub .link_list li:nth-child(6) a {
    -webkit-animation-delay: 0.6s !important;
    animation-delay: 0.6s !important; }
  .icon.active + .sub .link_list li:nth-child(7) a {
    -webkit-animation-delay: 0.7s !important;
    animation-delay: 0.7s !important; }
  .icon.active + .sub .link_list li:nth-child(8) a {
    -webkit-animation-delay: 0.8s !important;
    animation-delay: 0.8s !important; }
  .icon.active + .sub .link_list li:nth-child(9) a {
    -webkit-animation-delay: 0.9s !important;
    animation-delay: 0.9s !important; }
  .icon.active + .sub .link_list li:nth-child(10) a {
    -webkit-animation-delay: 1s !important;
    animation-delay: 1s !important; }

#fade {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  display: none; }

/* NEWS LISTING
============================================= */
.news_art {
  position: relative;
  display: block;
  -webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  border-radius: 0.3125rem;
  background-image: none !important;
  background: #ffffff;
  overflow: hidden;
  z-index: 1;
  padding-bottom: 1.875rem; }
  .news_art span {
    display: block;
    -webkit-transition: color 0.3s ease-out;
    -moz-transition: color 0.3s ease-out;
    -ms-transition: color 0.3s ease-out;
    -o-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out; }
  .news_art .img {
    margin: 0 auto 0.625rem auto;
    display: block;
    text-align: center;
    position: relative;
    z-index: 3; }
    .news_art .img img {
      width: 100%;
      -webkit-transition: transform 0.3s ease-out;
      -moz-transition: transform 0.3s ease-out;
      -ms-transition: transform 0.3s ease-out;
      -o-transition: transform 0.3s ease-out;
      -webkit-transition: -webkit-transform 0.3s ease-out;
      transition: -webkit-transform 0.3s ease-out;
      transition: transform 0.3s ease-out;
      transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
      -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
      transform-origin: center bottom; }
  .news_art h4, .news_art .h4, .news_art .h4, .news_art p, .news_art .p, .news_art .p {
    margin-left: 1.25rem;
    margin-right: 1.25rem; }
  .news_art h4, .news_art .h4, .news_art .h4 {
    color: #672b64; }
  .news_art p, .news_art .p, .news_art .p {
    color: #000000; }
  a.news_art:hover, a.news_art:focus {
    background: #e6e8ea; }
    a.news_art:hover h4, a.news_art:hover .h4, a.news_art:hover .h4, a.news_art:focus h4, a.news_art:focus .h4, a.news_art:focus .h4 {
      color: #024287; }
    a.news_art:hover .img img, a.news_art:focus .img img {
      -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
      transform: scale(1.1); }

.sticky {
  display: block;
  position: absolute;
  top: -1px;
  right: 10px;
  height: 38px;
  width: 29px;
  text-indent: -9999px;
  z-index: 5;
  background: url(../images/style/sticky.png) top right no-repeat; }

/* SLIDER
============================================= */
.important {
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(#024287), color-stop(50%, #672b64), to(#672b64));
  background: -webkit-linear-gradient(left, #024287 0%, #672b64 50%, #672b64 100%);
  background: -o-linear-gradient(left, #024287 0%, #672b64 50%, #672b64 100%);
  background: linear-gradient(90deg, #024287 0%, #672b64 50%, #672b64 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#024287",endColorstr="#672b64",GradientType=1);
  margin-top: 2.5rem; }
  @media screen and (min-width: 48.75em) {
    .important {
      margin-bottom: 2.5rem; } }
  .important .slide, .important .image {
    background-size: cover;
    background-position: center center;
    height: 18.75rem; }
    @media screen and (min-width: 48.75em) {
      .important .slide, .important .image {
        height: 31.25rem; } }
  .important .fg_col {
    width: 100%; }
    @media screen and (min-width: 48.75em) {
      .important .fg_col {
        position: relative;
        width: calc(33.3333%);
        left: -66.6667%; } }
  .important .bg_col {
    width: 100%;
    margin-top: -2.5rem;
    margin-bottom: 1.25rem; }
    @media screen and (min-width: 48.75em) {
      .important .bg_col {
        position: relative;
        width: calc(66.6667%);
        left: 33.33333%;
        margin-bottom: -2.5rem; } }
  .important .bg {
    position: relative;
    z-index: 1;
	/* Was adding whitespace to the bottom if the carousel images after unsing the newer slick-min.js */
    /*-webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1);*/
    /*box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1);*/
    border-radius: 0.3125rem;
    background: #ffffff;
    overflow: hidden; }
    .important .bg .slide {
      overflow: hidden;
      -webkit-transition: opacity 1.3s ease-out !important;
      -o-transition: opacity 1.3s ease-out !important;
      transition: opacity 1.3s ease-out !important;
      /*&.previous {
				opacity: 1 !important;
			}*/ }
      .important .bg .slide .image {
        width: 100%; }
  .important .fg {
    position: relative; }
    @media screen and (min-width: 48.75em) {
      .important .fg {
        height: 26.25rem; } }
    .important .fg .slick-slide > * {
      opacity: 0;
      -webkit-transition: -webkit-filter 0.3s ease-out, -webkit-transform 0.3s ease-out;
      transition: -webkit-filter 0.3s ease-out, -webkit-transform 0.3s ease-out;
      -o-transition: filter 0.3s ease-out, transform 0.3s ease-out;
      transition: filter 0.3s ease-out, transform 0.3s ease-out;
      transition: filter 0.3s ease-out, transform 0.3s ease-out, -webkit-filter 0.3s ease-out, -webkit-transform 0.3s ease-out; }
    .important .fg .slick-slide.slick-active > * {
      -webkit-animation-name: fade-in-bottom;
      animation-name: fade-in-bottom;
      -webkit-animation-fill-mode: forwards;
      animation-fill-mode: forwards;
      -webkit-animation-duration: 1s;
      animation-duration: 1s;
      -webkit-animation-timing-function: cubic-bezier(0.11, 0.045, 0.185, 1);
      animation-timing-function: cubic-bezier(0.11, 0.045, 0.185, 1); }
      .no-anim .important .fg .slick-slide.slick-active > * {
        opacity: 1 !important; }
      .important .fg .slick-slide.slick-active > *:nth-child(1) {
        -webkit-animation-delay: 0.1s !important;
        animation-delay: 0.1s !important; }
      .important .fg .slick-slide.slick-active > *:nth-child(2) {
        -webkit-animation-delay: 0.2s !important;
        animation-delay: 0.2s !important; }
      .important .fg .slick-slide.slick-active > *:nth-child(3) {
        -webkit-animation-delay: 0.3s !important;
        animation-delay: 0.3s !important; }
      .important .fg .slick-slide.slick-active > *:nth-child(4) {
        -webkit-animation-delay: 0.4s !important;
        animation-delay: 0.4s !important; }
      .important .fg .slick-slide.slick-active > *:nth-child(5) {
        -webkit-animation-delay: 0.5s !important;
        animation-delay: 0.5s !important; }
      .important .fg .slick-slide.slick-active > *:nth-child(6) {
        -webkit-animation-delay: 0.6s !important;
        animation-delay: 0.6s !important; }
      .important .fg .slick-slide.slick-active > *:nth-child(7) {
        -webkit-animation-delay: 0.7s !important;
        animation-delay: 0.7s !important; }
      .important .fg .slick-slide.slick-active > *:nth-child(8) {
        -webkit-animation-delay: 0.8s !important;
        animation-delay: 0.8s !important; }
      .important .fg .slick-slide.slick-active > *:nth-child(9) {
        -webkit-animation-delay: 0.9s !important;
        animation-delay: 0.9s !important; }
      .important .fg .slick-slide.slick-active > *:nth-child(10) {
        -webkit-animation-delay: 1s !important;
        animation-delay: 1s !important; }
      .important .fg .slick-slide.slick-active > *:nth-child(11) {
        -webkit-animation-delay: 1.1s !important;
        animation-delay: 1.1s !important; }
      .important .fg .slick-slide.slick-active > *:nth-child(12) {
        -webkit-animation-delay: 1.2s !important;
        animation-delay: 1.2s !important; }
      .important .fg .slick-slide.slick-active > *:nth-child(13) {
        -webkit-animation-delay: 1.3s !important;
        animation-delay: 1.3s !important; }
      .important .fg .slick-slide.slick-active > *:nth-child(14) {
        -webkit-animation-delay: 1.4s !important;
        animation-delay: 1.4s !important; }
      .important .fg .slick-slide.slick-active > *:nth-child(15) {
        -webkit-animation-delay: 1.5s !important;
        animation-delay: 1.5s !important; }
      .important .fg .slick-slide.slick-active > *:nth-child(16) {
        -webkit-animation-delay: 1.6s !important;
        animation-delay: 1.6s !important; }
      .important .fg .slick-slide.slick-active > *:nth-child(17) {
        -webkit-animation-delay: 1.7s !important;
        animation-delay: 1.7s !important; }
      .important .fg .slick-slide.slick-active > *:nth-child(18) {
        -webkit-animation-delay: 1.8s !important;
        animation-delay: 1.8s !important; }
      .important .fg .slick-slide.slick-active > *:nth-child(19) {
        -webkit-animation-delay: 1.9s !important;
        animation-delay: 1.9s !important; }
      .important .fg .slick-slide.slick-active > *:nth-child(20) {
        -webkit-animation-delay: 2s !important;
        animation-delay: 2s !important; }
    .important .fg [class*='slick-'] {
      height: 100%; }
    @media screen and (min-width: 48.75em) {
      .important .fg [style*='height'] {
        position: relative;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%); } }
  .important .text {
    overflow: hidden;
    z-index: 2;
    width: 100%;
    height: 100%;
    position: relative; }
    .important .text h2, .important .text .h2, .important .text p, .important .text .p {
      color: #ffffff; }
    .important .text .btn {
      display: block; }
  .important .slick-arrow {
    height: 2.5rem;
    width: 2.5rem;
    padding: 0.625rem 0;
    z-index: 3;
    -webkit-transition: transform 0.3s ease-out;
    -moz-transition: transform 0.3s ease-out;
    -ms-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; }
    .important .slick-arrow path {
      fill: rgba(255, 255, 255, 0.5);
      -webkit-transition: fill 0.3s ease-out;
      -moz-transition: fill 0.3s ease-out;
      -ms-transition: fill 0.3s ease-out;
      -o-transition: fill 0.3s ease-out;
      transition: fill 0.3s ease-out; }
    .important .slick-arrow.slick-prev {
      left: -2.5rem; }
    .important .slick-arrow.slick-next {
      right: -2.5rem; }
    .important .slick-arrow:hover path, .important .slick-arrow:focus path {
      fill: #ffffff; }

/* FORMS
============================================= */
form [type='text'], form [type='password'], form [type='date'], form [type='datetime'], form [type='datetime-local'], form [type='month'], form [type='week'], form [type='email'], form [type='number'], form [type='search'], form [type='tel'], form [type='time'], form [type='url'], form [type='color'], form textarea {
  padding: 0.5rem 0.9375rem; }

form [type='text'], form [type='password'], form [type='date'], form [type='datetime'], form [type='datetime-local'], form [type='month'], form [type='week'], form [type='email'], form [type='number'], form [type='search'], form [type='tel'], form [type='time'], form [type='url'], form [type='color'], form textarea, form select {
  height: 3.125rem; }
  form [type='text'].required, form [type='password'].required, form [type='date'].required, form [type='datetime'].required, form [type='datetime-local'].required, form [type='month'].required, form [type='week'].required, form [type='email'].required, form [type='number'].required, form [type='search'].required, form [type='tel'].required, form [type='time'].required, form [type='url'].required, form [type='color'].required, form textarea.required, form select.required {
    border-top-left-radius: 0; }
  form [type='text'].error, form [type='password'].error, form [type='date'].error, form [type='datetime'].error, form [type='datetime-local'].error, form [type='month'].error, form [type='week'].error, form [type='email'].error, form [type='number'].error, form [type='search'].error, form [type='tel'].error, form [type='time'].error, form [type='url'].error, form [type='color'].error, form textarea.error, form select.error {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; }
  form [type='text'] + .small_text, form [type='password'] + .small_text, form [type='date'] + .small_text, form [type='datetime'] + .small_text, form [type='datetime-local'] + .small_text, form [type='month'] + .small_text, form [type='week'] + .small_text, form [type='email'] + .small_text, form [type='number'] + .small_text, form [type='search'] + .small_text, form [type='tel'] + .small_text, form [type='time'] + .small_text, form [type='url'] + .small_text, form [type='color'] + .small_text, form textarea + .small_text, form select + .small_text {
    padding-top: 0.3125rem; }
  form [type='text'].half_marg, form [type='password'].half_marg, form [type='date'].half_marg, form [type='datetime'].half_marg, form [type='datetime-local'].half_marg, form [type='month'].half_marg, form [type='week'].half_marg, form [type='email'].half_marg, form [type='number'].half_marg, form [type='search'].half_marg, form [type='tel'].half_marg, form [type='time'].half_marg, form [type='url'].half_marg, form [type='color'].half_marg, form textarea.half_marg, form select.half_marg {
    margin-bottom: 0.9375rem; }

form input + .alert, form select + .alert, form textarea + .alert, form label + .alert, form .lbl + .alert {
  padding: 0.625rem 0.9375rem; }
  form input + .alert ul, form select + .alert ul, form textarea + .alert ul, form label + .alert ul, form .lbl + .alert ul {
    padding: 0;
    margin: 0;
    list-style: none; }
    form input + .alert ul li, form select + .alert ul li, form textarea + .alert ul li, form label + .alert ul li, form .lbl + .alert ul li {
      padding: 0;
      margin: 0; }
    form input + .alert ul li, form select + .alert ul li, form textarea + .alert ul li, form label + .alert ul li, form .lbl + .alert ul li {
      font-size: 0.875rem !important; }
  form input + .alert.field, form select + .alert.field, form textarea + .alert.field, form label + .alert.field, form .lbl + .alert.field {
    margin-top: -1.875rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0; }

form label:first-of-type:last-of-type, form .lbl:first-of-type:last-of-type {
  padding: 0.6875rem 0; }
  form label:first-of-type:last-of-type.required, form .lbl:first-of-type:last-of-type.required {
    padding-top: 2.0625rem; }
  form label:first-of-type:last-of-type span.required, form .lbl:first-of-type:last-of-type span.required {
    border-top-left-radius: 0;
    border-top-right-radius: 0; }

form label:not(:last-child), form .lbl:not(:last-child) {
  padding: 0;
  margin-bottom: 1.875rem; }

form label:not(:last-child) [type='checkbox'], form .lbl:not(:last-child) [type='checkbox'], form label:not(:last-child) [type='radio'], form .lbl:not(:last-child) [type='radio'], form label:last-child:first-child [type='checkbox'], form .lbl:last-child:first-child [type='checkbox'], form label:last-child:first-child [type='radio'], form .lbl:last-child:first-child [type='radio'] {
  margin-bottom: 0.9375rem; }
  form label:not(:last-child) [type='checkbox'] + span, form .lbl:not(:last-child) [type='checkbox'] + span, form label:not(:last-child) [type='radio'] + span, form .lbl:not(:last-child) [type='radio'] + span, form label:last-child:first-child [type='checkbox'] + span, form .lbl:last-child:first-child [type='checkbox'] + span, form label:last-child:first-child [type='radio'] + span, form .lbl:last-child:first-child [type='radio'] + span {
    line-height: 1; }

form .input-group-button .button, form .input-group-button .btn {
  height: 3.125rem;
  padding-top: 0.8125rem;
  padding-bottom: 0.8125rem; }

form span.required {
  background: #d2cec8;
  font-size: 0.8125rem;
  padding: 0.125rem 0.5rem;
  border-top-left-radius: 0.3125rem;
  border-top-right-radius: 0.3125rem;
  color: #000000; }

form .message {
  background-color: #ec5840;
  display: block;
  color: #ffffff;
  padding: 0.625rem 0.9375rem;
  border-radius: 0.3125rem;
  margin-bottom: 0.625rem; }
  @media screen and (min-width: 48.75em) {
    form .message {
      margin-bottom: 0.9375rem; } }
  form .message.full {
    border-radius: 0.3125rem; }

form .hidden_fields {
  display: none; }

.no-anim form select {
  background: none !important; }

/* FROM PREVIOUS VERSION
============================================= */
input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="week"], input[type="email"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], textarea {
  margin-bottom: 0; }

form.custom .custom.checkbox, form.custom .custom.radio {
  cursor: pointer; }

label.chk .custom.checkbox, form .chk.lbl .custom.checkbox, label.chk .custom.radio, form .chk.lbl .custom.radio {
  float: left; }

form.custom .custom.checkbox.checked:before {
  width: 8px;
  height: 8px;
  margin-top: 10px;
  margin-left: -4px;
  content: "";
  color: #ccc;
  background: #ccc; }

label.chk, form .chk.lbl {
  clear: both;
  overflow: hidden; }

label.chk span.chk_text, form .chk.lbl span.chk_text {
  display: block;
  float: left;
  margin-left: 10px;
  width: 90%; }

.medium-6 .medium-6 label.chk span.chk_text, .medium-6 .medium-6 form .chk.lbl span.chk_text, form .medium-6 .medium-6 .chk.lbl span.chk_text {
  width: 80%; }

form {
  color: #000000;
  margin: 0; }

form.form_border {
  border: 1px solid #e8eaec;
  padding: 0.625rem;
  margin: 10px 0; }
  @media screen and (min-width: 48.75em) {
    form.form_border {
      padding: 1.25rem; } }
  form.form_border .row:last-child select, form.form_border .row:last-child input {
    margin-bottom: 0; }

form#TextBlockdlgform {
  margin: 0; }

form .row.form-row {
  margin: 0;
  padding: 0; }

form .row.form-row .columns, form .row.form-row .column, form .row.form-row .columns {
  padding-top: 5px;
  padding-bottom: 5px; }

form .row.form-row.no-pad .columns, form .row.form-row.no-pad .columns, form .row.action-row .columns {
  padding-top: 0;
  padding-bottom: 0; }

form .row.form-row .columns.no-pad, form .row.form-row .column.no-pad, form .row.form-row .no-pad.columns {
  padding-left: 0;
  padding-right: 0; }

form .row.action-row {
  margin: 0;
  padding: 30px 0 0 0; }

form .row.action-row .button, form .row.action-row .btn {
  float: right; }

form .row.button-row .columns {
  padding-top: 10px;
  padding-bottom: 5px; }

form .row .row {
  margin: 0; }

form .row .row .column, form .row .row .columns, form .row .row .columns {
  padding: 0 10px; }

form .grey_bg {
  background: #dbe2e8;
  margin-bottom: 5px;
  padding-bottom: 10px; }

form .lgrey_bg {
  background: #edf2f5;
  margin: 0 10px;
  padding: 5px 0 10px 0; }

form a {
  border: none; }

form h3, form .h3 {
  padding: 0; }

fieldset {
  border: none;
  margin: 0;
  padding: 0; }

.note {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 80%;
  padding-top: 5px; }

label, form .lbl, p.lbl, .lbl.p {
  margin: 0;
  padding-bottom: 7px;
  padding-top: 7px;
  line-height: 16px; }

label .light, form .lbl .light {
  font-weight: 400; }

.front_form label, .front_form form .lbl, form .front_form .lbl, .front_form p.lbl, .front_form .lbl.p {
  color: #808285;
  font-weight: bold; }

/* Common Heights */
.prefix, .postfix, form.custom .custom.dropdown, form.custom .custom.dropdown .selector, form.custom .custom.dropdown .current,
input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="week"], input[type="email"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"] {
  height: 30px; }

/* Drop-downs */
form.custom .custom.dropdown {
  margin-bottom: 0;
  border-radius: 0;
  cursor: pointer; }

form.custom .custom.dropdown .selector, form.custom .custom.dropdown .current {
  cursor: pointer;
  line-height: 28px; }

form.custom .custom.dropdown ul li {
  background: none;
  cursor: pointer; }

/* FRONT END FORMS */
form.front_form.custom .custom.dropdown {
  border: none;
  background: #edf2f5;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #808285; }

form.front_form.custom .custom.dropdown .selector, form.front_form.custom .custom.dropdown .current {
  cursor: pointer;
  line-height: 28px;
  color: #808285; }

form.front_form.custom .custom.dropdown ul {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  background: #ffffff;
  left: 0; }

form.front_form.custom .custom.dropdown ul li.selected {
  background: #808285;
  color: #ffffff; }

form.custom .custom.dropdown a {
  border: none; }

/* Text fields */
textarea {
  height: auto; }

/* FRONT END FORMS */
.front_form input[type="text"], .front_form input[type="password"], .front_form input[type="date"], .front_form input[type="datetime"], .front_form input[type="datetime-local"], .front_form input[type="month"], .front_form input[type="week"], .front_form input[type="email"], .front_form input[type="number"], .front_form input[type="search"], .front_form input[type="tel"], input[type="time"], .front_form input[type="url"], .front_form textarea {
  border: solid 1px #edf2f5;
  background: #edf2f5;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #808285; }

.front_form input[type="text"]:focus, .front_form input[type="password"]:focus, .front_form input[type="date"]:focus, .front_form input[type="datetime"]:focus, .front_form input[type="datetime-local"]:focus, .front_form input[type="month"]:focus, .front_form input[type="week"]:focus, .front_form input[type="email"]:focus, .front_form input[type="number"]:focus, .front_form input[type="search"]:focus, .front_form input[type="tel"]:focus, input[type="time"]:focus, .front_form input[type="url"]:focus, .front_form textarea:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #ffffff;
  border: solid 1px #ffffff; }

/* Date Picker Trigger */
.calendar_icon {
  height: 30px;
  width: 30px;
  padding: 4px 0;
  text-align: center;
  background-color: #DBE2E7;
  margin-left: 0;
  cursor: pointer; }

.calendar_icon:hover, .calendar_icon:focus {
  background-color: #b5bbbf; }

/* error messages */
p.error, .error.p {
  margin: 5px 0 0 0;
  padding: 7px 0 0 0;
  background: url(../images/style/error_bg.png) -6px 0 no-repeat; }

p.error span, .error.p span {
  padding: 5px 10px;
  color: #ffffff;
  font-weight: bold;
  background: #c60f13;
  display: block;
  font-size: 93%; }

.front_form input.error, .front_form textarea.error {
  background: #f4cfd0;
  border: solid 1px #c60f13; }

.search {
  width: 100%; }
  .search table {
    border: none !important;
    margin: 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important; }
    .search table div {
      border: none !important; }
    .search table tbody, .search table thead, .search table tfoot {
      border: none !important;
      background: transparent !important;
      -webkit-box-shadow: none !important;
      box-shadow: none !important; }
    .search table td {
      padding: 0 !important;
      border: none !important;
      -webkit-box-shadow: none !important;
      box-shadow: none !important; }
      .search table td.gsc-input {
        width: calc(100% - 40px); }
        @media screen and (min-width: 48.75em) {
          .search table td.gsc-input {
            width: calc(100% - 60px); } }
      .search table td.gsc-search-button {
        width: 2.5rem; }
        @media screen and (min-width: 48.75em) {
          .search table td.gsc-search-button {
            width: 3.75rem; } }

/* GOOGLE SEARCH RESULTS ============================================================= */
#cse .gsc-clear-button {
  display: none; }

#cse table {
  border: none;
  /* margin: 0 */; }
  #cse table tr, #cse table td {
    border: none; }

#cse .gsc-control-cse {
  padding: 0;
  border: none;
  font-size: 100%; }

#cse .gsc-input-box {
  height: 40px; }

#cse table.gsc-search-box td.gsib_b {
  top: 10px;
  right: 5px; }

#cse .gsc-search-box-tools .gsc-search-box input.gsc-input {
  height: 40px !important;
  line-height: 40px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #CCC !important;
  background: url(../images/style/search_icon.png) 5px 10px no-repeat #fff !important;
  color: #000; }

#cse .gsc-above-wrapper-area {
  border: none;
  margin: 0; }

#cse .gsc-above-wrapper-area-container {
  margin: 5px 0; }

#cse .gsc-result-info-container, #cse .gsc-result-info {
  padding: 0; }

#cse .gsc-tabsArea, #cse .gsc-refinementsArea {
  border-color: #e6e8ea;
  padding: 0; }

#cse .gsc-tabHeader, #cse .gsc-refinementHeader {
  background: none;
  line-height: 30px;
  border-color: #e6e8ea;
  text-decoration: none;
  margin: 0; }

#cse .gsc-tabHeader.gsc-tabhActive, #cse .gsc-tabHeader:hover {
  background: #e6e8ea; }

#cse .gsc-refinementHeader.gsc-refinementhActive, #cse .gsc-refinementHeader:hover {
  /* background: #e6e8ea; */
  background: #672b64;
  color: #fff;
}

#cse .gsc-tabHeader:focus, #cse .gsc-refinementHeader:focus {
  /*background: #e6e8ea; */
  background: #672b64;  
}

#cse .gsc-resultsHeader {
  display: none; }

#cse .gsc-result {
  padding: 0;
  border: none; }

#cse .gsc-results .gsc-result .gsc-table-cell-snippet-close, #cse .gsc-results .gsc-result .gsc-table-cell-thumbnail {
  padding: 0;
  border: none; }

#cse .gsc-thumbnail-inside, #cse .gsc-url-top, #cse .gsc-table-result .gsc-thumbnail {
  padding-left: 0;
  padding-right: 0; }

#cse .gs-result div.gs-title {
  text-decoration: none !important;
  line-height: 130%;
  margin: 5px 0;
  height: auto; }

#cse .gs-result a.gs-title {
  text-decoration: none !important;
  height: auto; }
  #cse .gs-result a.gs-title * {
    text-decoration: none !important; }

#cse .gsc-url-top .gs-visibleUrl {
  color: #666;
  font-size: 80%; }

#cse .gsc-table-result .gsc-thumbnail {
  padding-right: 10px; }

#cse .gs-image-box.gs-web-image-box.gs-web-image-box-landscape, #cse .gs-image-box.gs-web-image-box.gs-web-image-box-portrait {
  width: 60px;
  height: 60px; }

#cse .gs-web-image-box-portrait img.gs-image {
  max-width: none;
  max-height: 100%; }

#cse .gs-web-image-box-landscape img.gs-image {
  max-width: 100%;
  max-height: none; }

#cse .gsc-table-result .gs-snippet {
  /* font-size: 123%; */
  /* 16px */
  line-height: 150%; }

#cse .gsc-results .gs-no-results-result .gs-snippet {
  padding: 0;
  margin: 0;
  border: none;
  background: none; }

#cse .gsc-results .gsc-cursor-box {
  margin: 0;
  text-align: center;
  border-top: 1px solid #e6e8ea; }

#cse .gsc-results .gsc-cursor-page {
  margin: 0 2px;
  line-height: 160%;
  float: none;
  display: inline-block;
  color: #873984;
  background: none;
  padding: 0 7px; }
  #cse .gsc-results .gsc-cursor-page:hover, #cse .gsc-results .gsc-cursor-page:focus {
    background: #e6e6e6;
    text-decoration: none;
    color: #024287; }

#cse .gsc-results .gsc-cursor-current-page {
  background: #873984;
  color: #fff; }
  
.gsc-table-result {
	border-collapse: separate !important;
}

.gs-title {
	font-size: 110% !important;
	font-weight: bold;
}

.gsc-refinementHeader.gsc-refinementhActive {
	color: #fff !important;	
}

/* Foundation v2.1.4 http://foundation.zurb.com */
/* Artfully masterminded by ZURB  */
/* -------------------------------------------------- 
   Table of Contents
-----------------------------------------------------
:: Shared Styles
:: Page Name 1
:: Page Name 2
*/
/* -----------------------------------------
   Shared Styles
----------------------------------------- */
table th {
  font-weight: bold; }

table td, table th {
  padding: 9px 10px;
  text-align: left; }

/* Mobile */
@media only screen and (max-width: 767px) {
  table.responsive {
    margin-bottom: 0; }
  .pinned {
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    width: 35%;
    overflow: hidden;
    overflow-x: scroll;
    border-left: 1px solid #d2cec8;
    border-right: 1px solid #d2cec8; }
  .pinned table {
    border-right: none;
    border-left: none;
    width: 100%; }
  .pinned table th, .pinned table td {
    white-space: nowrap; }
  .pinned td:last-child {
    border-bottom: 0; }
  div.table-wrapper {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    border-right: 1px solid #ccc; }
  div.table-wrapper div.scrollable {
    margin-left: 35%; }
  div.table-wrapper div.scrollable {
    overflow: scroll;
    overflow-y: hidden; }
  div.table-wrapper div.scrollable table {
    border-left: none; }
  table.responsive td, table.responsive th {
    position: relative;
    white-space: nowrap;
    overflow: hidden; }
  table.responsive th:first-child, table.responsive td:first-child, table.responsive td:first-child, table.responsive.pinned td {
    display: none; } }

/* Mobile */
@media only screen and (max-width: 480px) {
  .pinned {
    width: 40%; }
  div.table-wrapper div.scrollable {
    margin-left: 40%; } }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block;
    margin: 0 auto; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

@media print {
  .slick-slide {
    display: block !important; }
  .slick-list {
    height: auto !important; }
  .slick-track {
    width: auto !important;
    height: auto !important;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important; }
    .slick-track .slick-slide {
      width: auto !important; } }

/* Slider */
.slick-loading .slick-list {
  background: #fff; }

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal; }

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }
  .slick-prev:before,
  .slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px; }
  .slick-prev:before {
    content: "←"; }
    [dir="rtl"] .slick-prev:before {
      content: "→"; }

.slick-next {
  right: -25px; }
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto; }
  .slick-next:before {
    content: "→"; }
    [dir="rtl"] .slick-next:before {
      content: "←"; }

/* Dots */
.slick-dots {
  position: absolute;
  bottom: -0.9375rem;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li:before {
      display: none; }
    .slick-dots li button {
      border: 0;
      /*background: #868481;*/
	  background: #5a5a58;
      display: block;
      height: 15px;
      width: 15px;
      border-radius: 50%;
      outline: none;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 0;
      cursor: pointer;
      -webkit-transition: background-color 0.3s ease-out;
      -moz-transition: background-color 0.3s ease-out;
      -ms-transition: background-color 0.3s ease-out;
      -o-transition: background-color 0.3s ease-out;
      transition: background-color 0.3s ease-out; }
     /* .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none;
        background-color: #024287; }*/
      .slick-dots li button:not([role]) {
        display: none !important; }
    .slick-dots li.slick-active button {
      background-color: #672b64; }
    .slick-dots li:first-child:last-child {
      display: none !important; }
  .notification_wrapper .slick-dots {
    bottom: 0; }
	
/* Display div as flex to align items with that div - DF */
.displayFlex {
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

/* Define size for youtube custom element
=========================================*/
.youtube-ce {
	width: 560px;
	height: 315px;
	border: none !important;
}

/*# sourceMappingURL=app-2018.css.map */