/* ================================
 * Global Variables
 * ================================ */
/* ================================
 * Partials
 * ================================ */
/* ================================
 * Variables
 * ================================ */
/* ================================
 * Modules
 * ================================ */
/* ================================
 * Global Variables
 * ================================ */
/* ================================
 * Functions
 * ================================ */
/*
 * @function: get-width-without-gutters (number[, number])
 * Desc: Returns the width (%) of all columns/cells in a full-width block
 *       excluding the gutters.
 * $col-per-row: The number of columns/cells in the full-width block.
 * $gutter-width (optional): Width (%) of gutters.
 */
/*
 * @function: get-column-width (number[, number, number])
 * Desc: Returns the width (%) of a cell based on the number of columns
 *       it spans.
 * $col-span: How many column lengths this cell will span across.
 * $custom-col-count (optional): The total number of columns in the row.
 * $gutter-width (optional): Width (%) of gutters.
 */
/* ================================
 * Mixins
 * ================================ */
/*
 * @mixin: grid (number[, number])
 * Desc: Formats direct child elements as equal-width cells in a single-
 *       or multi-row grid.
 * $cols: The number of cells per row.
 * $gutter-width (optional): Width (%) of gutters.
 */
/*
 * @mixin: row
 * Desc: Creates a full-width block that will act as a wrapper for a row
 *       of cells.
 */
/*
 * @mixin column (number[, number, number])
 * Desc: Formats element as a column within a row (expected to be a
 *       direct descendent of row).
 * $col-span: How many column lengths this cell will span across.
 * $custom-col-count (optional): The total number of columns in the row.
 * $gutter-width (optional): Width (%) of gutters.
 */
/* @mixin center-column
 * Desc: If a row contains a single column, it can be centered with this mixin.
 *       Make sure to apply the column mixin first.
 */
/* @mixin convert-to-single-cols ([margin value])
 * Desc: Converts the columns in a row or grid to full-width columns.
 * $margin (optional): The margins for the element
 */
/* ================================
 * Custom Mixins
 * ================================ */
/* normalize.css v2.1.1 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
/* line 22, partials/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
/* line 32, partials/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
/* line 41, partials/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address styling not present in IE 8/9.
 */
/* line 50, partials/_normalize.scss */
[hidden] {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Prevent system color scheme's background color being used in Firefox, IE,
 *    and Opera.
 * 2. Prevent system color scheme's text color being used in Firefox, IE, and
 *    Opera.
 * 3. Set default font family to sans-serif.
 * 4. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
/* line 68, partials/_normalize.scss */
html {
  background: #fff;
  /* 1 */
  color: #000;
  /* 2 */
  font-family: sans-serif;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 4 */
  -webkit-text-size-adjust: 100%;
  /* 4 */
}

/**
 * Remove default margin.
 */
/* line 80, partials/_normalize.scss */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
/* line 92, partials/_normalize.scss */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
/* line 101, partials/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 114, partials/_normalize.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
/* line 123, partials/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
/* line 132, partials/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */
/* line 140, partials/_normalize.scss */
dfn {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */
/* line 148, partials/_normalize.scss */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Address styling not present in IE 8/9.
 */
/* line 158, partials/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
/* line 170, partials/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
/* line 179, partials/_normalize.scss */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
/* line 187, partials/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
/* line 195, partials/_normalize.scss */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
/* line 204, partials/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 211, partials/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 215, partials/_normalize.scss */
sub {
  bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
/* line 227, partials/_normalize.scss */
img {
  border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
/* line 235, partials/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
/* line 247, partials/_normalize.scss */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
/* line 259, partials/_normalize.scss */
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.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
/* line 270, partials/_normalize.scss */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
/* line 284, partials/_normalize.scss */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 296, partials/_normalize.scss */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
/* line 308, partials/_normalize.scss */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
/* line 323, partials/_normalize.scss */
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.
 */
/* line 333, partials/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 */
/* line 343, partials/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
/* line 354, partials/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/* line 367, partials/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
/* line 376, partials/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
/* line 386, partials/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
/* line 399, partials/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ================================
 * Global Styles
 * ================================ */
/* -- General -- */
/* line 7, partials/_global.scss */
img {
  max-width: 100%;
  width: auto;
  height: auto;
}

/*
 *
 * */
/* line 17, partials/_global.scss */
html {
  background: none;
}

/* line 20, partials/_global.scss */
body {
  background: url(../images/backgrounds/noisepatternBg.jpg) 0 0 repeat scroll #ededed;
}

@media (max-width: 600px) {
  /* line 25, partials/_global.scss */
  body {
    background: none #e7e7e7;
  }
}
/* line 28, partials/_global.scss */
.pos-rel {
  position: relative;
}

/* line 31, partials/_global.scss */
.clrbt {
  clear: both;
}

/* line 34, partials/_global.scss */
.mrg-tp5 {
  margin-top: 5px;
}

/* line 37, partials/_global.scss */
.f11 {
  font-size: 11px;
  margin-left: 10px;
}

/* line 41, partials/_global.scss */
.f14 {
  font-size: 14px;
}

/* line 44, partials/_global.scss */
.f16 {
  font-size: 16px;
}

/* line 47, partials/_global.scss */
.grid-container {
  max-width: 974px;
  margin: 0 auto;
  padding: 0 2.44141%;
  position: relative;
}

/* line 53, partials/_global.scss */
.mrg-rt10 {
  margin-right: 10px;
}

/* line 56, partials/_global.scss */
.sdbLine {
  background: url("../images/backgrounds/sdbLine.png") repeat-x scroll left bottom transparent;
}

/* line 59, partials/_global.scss */
h4.sdbLine {
  padding-bottom: 12px;
}

/* ================================
 * Responsive Slider 
 * ================================ */
/* line 67, partials/_global.scss */
.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
}

/* line 76, partials/_global.scss */
.rslides li {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 0;
}

/* line 85, partials/_global.scss */
.rslides li:first-child {
  position: relative;
  display: block;
  float: left;
}

/* line 91, partials/_global.scss */
.rslides img {
  display: block;
  height: auto;
  float: left;
  width: 100%;
  border: 0;
}

/* line 101, partials/_global.scss */
* {
  margin: 0;
  padding: 0;
}

/* line 106, partials/_global.scss */
html {
  background: #00539b;
}

/* line 110, partials/_global.scss */
body {
  color: #333;
  font: 14px/24px sans-serif;
  margin: 0 auto;
  max-width: 100%;
  /*_width: 700px;
  padding: 0 30px;
  text-align: center;*/
  -webkit-font-smoothing: antialiased;
}

/* line 121, partials/_global.scss */
#slide-wrapper {
  /*float: left;
  margin-bottom: 50px;*/
  width: 100%;
  position: relative;
}

/* line 128, partials/_global.scss */
h1 {
  font: 600 28px/36px sans-serif;
  margin: 50px 0;
}

/* line 133, partials/_global.scss */
h3 {
  font: 600 18px/24px sans-serif;
  color: #999;
  margin: 0 0 20px;
}

/* line 139, partials/_global.scss */
a {
  color: #222;
}

/* line 143, partials/_global.scss */
.rslides {
  margin: 0 auto;
}

/* line 147, partials/_global.scss */
.rslides_container {
  /*margin-bottom: 50px;
  float: left;*/
  position: relative;
  width: 100%;
}

/* line 154, partials/_global.scss */
.centered-btns_nav {
  z-index: 3;
  position: absolute;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 50%;
  left: 5%;
  opacity: 0.7;
  text-indent: -9999px;
  overflow: hidden;
  text-decoration: none;
  height: 85px;
  width: 95px;
  background: url(../images/icons/themes.png) no-repeat left top transparent;
  margin-top: -45px;
}

/* line 170, partials/_global.scss */
.centered-btns_nav:active {
  opacity: 1.0;
}

/* line 174, partials/_global.scss */
.centered-btns_nav.next {
  left: auto;
  background-position: right top;
  right: 5%;
}

/* line 180, partials/_global.scss */
.transparent-btns_nav {
  z-index: 3;
  position: absolute;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  left: 0;
  display: block;
  background: #fff;
  /* Fix for IE6-9 */
  opacity: 0;
  filter: alpha(opacity=1);
  width: 48%;
  text-indent: -9999px;
  overflow: hidden;
  height: 91%;
}

/* line 196, partials/_global.scss */
.transparent-btns_nav.next {
  left: auto;
  right: 0;
}

/* line 201, partials/_global.scss */
.large-btns_nav {
  z-index: 3;
  position: absolute;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  opacity: 0.6;
  text-indent: -9999px;
  overflow: hidden;
  top: 0;
  bottom: 0;
  left: 0;
  background: black url("themes.gif") no-repeat left 50%;
  width: 38px;
}

/* line 215, partials/_global.scss */
.large-btns_nav:active {
  opacity: 1.0;
}

/* line 219, partials/_global.scss */
.large-btns_nav.next {
  left: auto;
  background-position: right 50%;
  right: 0;
}

/* line 227, partials/_global.scss */
.centered-btns_nav:focus,
.transparent-btns_nav:focus,
.large-btns_nav:focus {
  outline: none;
}

/* line 233, partials/_global.scss */
.centered-btns_tabs,
.transparent-btns_tabs,
.large-btns_tabs {
  margin-top: 10px;
  text-align: center;
  position: relative;
  z-index: 999;
  margin-top: -35px;
  padding-bottom: 15px;
}

/* line 245, partials/_global.scss */
.centered-btns_tabs li,
.transparent-btns_tabs li,
.large-btns_tabs li {
  display: inline;
  float: none;
  _float: left;
  *float: left;
  margin-right: 5px;
}

/* line 255, partials/_global.scss */
.centered-btns_tabs a,
.transparent-btns_tabs a,
.large-btns_tabs a {
  text-indent: -9999px;
  overflow: hidden;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  background: #606060;
  background: #606060;
  display: inline-block;
  _display: block;
  *display: block;
  -webkit-box-shadow: inset 0 0 2px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 2px 0 rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 2px 0 rgba(0, 0, 0, 0.3);
  width: 9px;
  height: 9px;
  border: 1px solid white;
  outline: none;
}

/* line 277, partials/_global.scss */
.centered-btns_here a,
.transparent-btns_here a,
.large-btns_here a {
  background: #e51b24;
  background: rgba(255, 0, 0, 0.8);
}

/* ================================
 * Navigation Responsive Menu
 * ================================ */
/* line 286, partials/_global.scss */
.mobile-nav {
  display: none;
  padding: 0;
  position: relative;
  background-image: url(../images/icons/menuOpen.png);
  background-position: 70% center;
  background-repeat: no-repeat;
}

/* line 294, partials/_global.scss */
.mobile-nav a {
  color: #fff;
  height: 19px;
  display: block;
}

/* line 300, partials/_global.scss */
.well {
  padding: 8px;
}

/* line 304, partials/_global.scss */
.rst-normal {
  display: none;
}

/* line 308, partials/_global.scss */
.cbp-hrmenu {
  width: 100%;
  margin-top: 2em;
  position: relative;
  z-index: 999;
  margin-left: -10px;
}

/* general ul style */
/* line 318, partials/_global.scss */
.cbp-hrmenu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

/* first level ul style */
/* line 326, partials/_global.scss */
.cbp-hrmenu > ul,
.cbp-hrmenu .cbp-hrsub-inner {
  width: 100%;
  height: 41px;
}

/* line 331, partials/_global.scss */
.cbp-hrmenu > ul > li {
  display: inline-block;
  margin-left: 1em;
}
/* line 334, partials/_global.scss */
.cbp-hrmenu > ul > li:first-child {
  margin-left: 0;
}

/* line 339, partials/_global.scss */
.cbp-hrmenu > ul > li > a {
  font-weight: normal;
  font-size: 16px;
  text-decoration: none;
  padding: 0.5em 1em;
  color: white !important;
  display: inline-block;
  outline: none;
}

/* line 349, partials/_global.scss */
.cbp-hrmenu > ul > li > a:hover {
  color: white;
}

/* line 352, partials/_global.scss */
.cbp-hrmenu > ul > li > a:hover.red-bot {
  /*border-bottom: 9px solid $red;*/
  background: url(../images/backgrounds/menuBg.jpg) 0 bottom repeat-x scroll;
  height: 33px;
  padding-bottom: 0;
}

/* line 359, partials/_global.scss */
.cbp-hrmenu > ul > li.cbp-hropen a {
  text-decoration: none;
}

/* line 364, partials/_global.scss */
.cbp-hrmenu > ul > li.cbp-hropen a,
.cbp-hrmenu > ul > li.cbp-hropen > a:hover {
  color: #231f20;
}

/* sub-menu */
/* line 369, partials/_global.scss */
.cbp-hrmenu .cbp-hrsub {
  display: none;
  position: absolute;
  background: white;
  width: 84%;
  left: 0;
  top: 46px;
  box-shadow: 10px 10px 10px -10px black;
}

/* line 379, partials/_global.scss */
.shift0 {
  left: -15px !important;
}

/* line 382, partials/_global.scss */
.shift1 {
  left: 135px !important;
}

/* line 385, partials/_global.scss */
.shift2 {
  left: 165px !important;
}

/* line 389, partials/_global.scss */
.cbp-hropen .cbp-hrsub {
  display: block;
  /*padding-bottom: 3em;*/
}

/* line 394, partials/_global.scss */
.cbp-hrmenu .cbp-hrsub-inner > div {
  width: 28%;
  float: left;
  padding: 0 2em 0;
  margin: 1.5em 0;
  border-right: 1px solid #6c6c6c;
  min-height: 310px;
}

/* line 404, partials/_global.scss */
.cbp-hrmenu .cbp-hrsub-inner > div + div + div {
  border-right: none;
}
/* line 406, partials/_global.scss */
.cbp-hrmenu .cbp-hrsub-inner > div + div + div h4 {
  font-size: 14px;
  font-family: "gotham_bookregular", Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #231f20;
  margin: 0;
  padding: 0;
}
/* line 414, partials/_global.scss */
.cbp-hrmenu .cbp-hrsub-inner > div + div + div p {
  font-size: 14px;
  color: #464646;
}
/* line 417, partials/_global.scss */
.cbp-hrmenu .cbp-hrsub-inner > div + div + div p a {
  font-size: 12px;
  font-style: italic;
  font-weight: bold;
  color: #e51b24;
}

/* line 426, partials/_global.scss */
.cbp-hrmenu .cbp-hrsub-inner:before,
.cbp-hrmenu .cbp-hrsub-inner:after {
  content: " ";
  display: table;
}

/* line 431, partials/_global.scss */
.cbp-hrmenu .cbp-hrsub-inner:after {
  clear: both;
}

/* line 435, partials/_global.scss */
.cbp-hrmenu .cbp-hrsub-inner > div a {
  line-height: 2em;
}

/* line 439, partials/_global.scss */
.cbp-hrsub h4 {
  color: #231f20;
  /*padding: 2em 0 0.6em;*/
  margin: 0;
  font-size: 160%;
  font-weight: 300;
}

/* line 447, partials/_global.scss */
.cbp-hrmenu ul.col-1 li,
.cbp-hrmenu ul.col-2 li {
  font-size: 14px;
  font-family: "gotham_bookregular", Arial, Helvetica, sans-serif;
  font-weight: bold;
}

/* line 453, partials/_global.scss */
.cbp-hrmenu ul.col-1 li a,
.cbp-hrmenu ul.col-2 li a {
  margin-right: 20px;
}

/* line 457, partials/_global.scss */
.cbp-hrmenu ul.col-1 li a:hover,
.cbp-hrmenu ul.col-2 li a:hover {
  text-decoration: underline;
  padding-right: 10px;
  background: url(../images/icons/mega-arrow.png) no-repeat right center transparent;
}

/* Examples for media queries */
@media screen and (max-width: 52.75em) {
  /* line 467, partials/_global.scss */
  .cbp-hrmenu {
    font-size: 80%;
  }
}
@media screen and (max-width: 43em) {
  /* line 475, partials/_global.scss */
  .cbp-hrmenu {
    font-size: 120%;
    border: none;
  }

  /* line 481, partials/_global.scss */
  .cbp-hrmenu > ul,
  .cbp-hrmenu .cbp-hrsub-inner {
    width: 100%;
    padding: 0;
  }

  /* line 486, partials/_global.scss */
  .cbp-hrmenu .cbp-hrsub-inner {
    padding: 0 2em;
    font-size: 75%;
  }

  /* line 491, partials/_global.scss */
  .cbp-hrmenu > ul > li {
    display: block;
    border-bottom: 4px solid #47a3da;
  }

  /* line 496, partials/_global.scss */
  .cbp-hrmenu > ul > li > a {
    display: block;
    padding: 1em 3em;
  }

  /* line 501, partials/_global.scss */
  .cbp-hrmenu .cbp-hrsub {
    position: relative;
  }

  /* line 505, partials/_global.scss */
  .cbp-hrsub h4 {
    padding-top: 0.6em;
  }
}
@media screen and (max-width: 36em) {
  /* line 512, partials/_global.scss */
  .cbp-hrmenu .cbp-hrsub-inner > div {
    width: 100%;
    float: none;
    padding: 0 2em;
  }
}
/* ================================
 * DDAcordian Menu 
 * ================================ */
/* line 524, partials/_global.scss */
.glossymenu {
  margin: 5px 0;
  padding: 0;
  /*width: 170px;
  border: 1px solid #9A9A9A;*/
  border-bottom-width: 0;
}

/* line 533, partials/_global.scss */
.glossymenu a.menuitem {
  font: normal 12px "gotham_bookregular", Arial, Helvetica, sans-serif;
  color: #333333 !important;
  display: block;
  position: relative;
  /*To help in the anchoring of the ".statusicon" icon image*/
  width: auto;
  /*padding: 7px 10px 7px 15px;*/
  padding: 7px 0 7px 15px;
  text-decoration: none;
  outline: none;
  text-transform: uppercase;
  /*border-bottom: 1px solid #eaeaea;*/
  background: url(../images/backgrounds/menuLn.jpg) left bottom no-repeat scroll;
}

/* line 548, partials/_global.scss */
.brd-btm-o {
  border-bottom: none !important;
  background-image: none !important;
}

/* line 553, partials/_global.scss */
.glossymenu .menuitem.active {
  font-weight: bold;
  border-bottom: none;
}

/* line 558, partials/_global.scss */
.glossymenu .submenu .active {
  font-weight: bold;
}

/* line 562, partials/_global.scss */
.glossymenu a.menuitem .statusicon {
  /*CSS for icon image that gets dynamically added to headers*/
  position: absolute;
  top: 12px;
  left: 0;
  border: none;
}

/* line 569, partials/_global.scss */
.glossymenu a.menuitem:hover {
  background: url(../images/backgrounds/menuLn.jpg) left bottom no-repeat scroll;
  color: #e51b24 !important;
  padding-right: 0;
  font-weight: normal;
}

/* line 576, partials/_global.scss */
.glossymenu div.submenu {
  /*DIV that contains each sub menu*/
  background: white;
}

/* line 579, partials/_global.scss */
.glossymenu div.submenu img {
  display: none;
}

/* AMX Custom Added */
/* line 581, partials/_global.scss */
.glossymenu div.submenu ul {
  /*UL of each sub menu*/
  list-style-type: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #eaeaea;
  margin-left: 13px;
  position: relative;
  top: -1px;
}

/* line 591, partials/_global.scss */
.glossymenu div.submenu ul li {
  /*border-bottom: 1px solid blue;*/
}

/* line 595, partials/_global.scss */
.glossymenu div.submenu ul li a {
  display: block;
  font: normal 11px "gotham_bookregular", Arial, Helvetica, sans-serif;
  color: black;
  text-decoration: none;
  padding: 2px 0;
  padding-left: 10px;
  background-color: #f7f7f7;
  text-transform: uppercase;
}

/* line 606, partials/_global.scss */
.glossymenu div.submenu ul li a:hover {
  color: #e51b24;
}

/* line 610, partials/_global.scss */
.glossymenu div.submenu ul li ul {
  border-bottom: none;
}

/* line 614, partials/_global.scss */
.glossymenu div.submenu ul li ul li a {
  display: block;
  font: normal 11px "gotham_bookregular", Arial, Helvetica, sans-serif;
  color: black;
  text-decoration: none;
  padding: 2px 0;
  padding-left: 35px;
  background-color: #f7f7f7;
  text-transform: uppercase;
}

/* line 625, partials/_global.scss */
.glossymenu div.submenu ul li ul li a:hover {
  color: #e51b24;
}

/* ================================
 * Easy - Responsive Tabs 
 * ================================ */
/* line 633, partials/_global.scss */
ul.resp-tabs-list {
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  position: relative;
  top: 1px;
}
/* line 57, modules/_framework.scss */
ul.resp-tabs-list:before {
  content: '';
  display: table;
  line-height: 0;
}
/* line 62, modules/_framework.scss */
ul.resp-tabs-list:after {
  content: '';
  display: table;
  line-height: 0;
  clear: both;
}
/* line 68, modules/_framework.scss */
ul.resp-tabs-list > * {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 0;
  margin-bottom: 0;
  width: 33.33333%;
}
/* line 78, modules/_framework.scss */
ul.resp-tabs-list > *:nth-child(n) {
  clear: none;
}
/* line 83, modules/_framework.scss */
ul.resp-tabs-list > *:nth-child(3n-2) {
  clear: both;
}
/* line 88, modules/_framework.scss */
ul.resp-tabs-list > *:nth-child(3n) {
  float: right;
  margin-right: 0;
}
/* line 94, modules/_framework.scss */
ul.resp-tabs-list > *:nth-last-child(-n + 3) {
  margin-bottom: 0;
}

/* line 638, partials/_global.scss */
p {
  margin: 0px;
  padding: 0px;
}

/* line 643, partials/_global.scss */
.resp-tabs-list li {
  font-weight: 600;
  font-size: 13px;
  list-style: none;
  cursor: pointer;
  background-color: #ddd;
  border-top: 1px solid #c3c3c3;
  border-right: 1px solid #c3c3c3;
  position: relative;
  top: 3px;
}
/* line 654, partials/_global.scss */
.resp-tabs-list li span {
  display: block;
  padding: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

/* line 664, partials/_global.scss */
.resp-tabs-container {
  padding: 0px;
  background-color: #fff;
  clear: left;
}

/* line 670, partials/_global.scss */
h2.resp-accordion {
  cursor: pointer;
  padding: 5px;
  display: none;
}

/* line 676, partials/_global.scss */
.resp-tab-content {
  display: none;
  padding: 10px;
}

/* line 681, partials/_global.scss */
.resp-tab-active {
  border: 1px solid #c3c3c3;
  border-top-width: 0 !important;
  margin-bottom: -1px !important;
  background: url(../images/backgrounds/tabshadow.png) no-repeat center bottom white !important;
  position: relative;
  top: -1px !important;
}
/* line 689, partials/_global.scss */
.resp-tab-active:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: -1px;
  width: 100%;
  height: 5px;
  border-right: 2px solid #e51b24;
  background-color: #e51b24;
}
/* line 700, partials/_global.scss */
.resp-tab-active span {
  padding-top: 13px !important;
}

/* line 705, partials/_global.scss */
.resp-tab-active {
  border-bottom: none;
  background-color: #fff;
}

/* line 710, partials/_global.scss */
.resp-content-active, .resp-accordion-active {
  display: block;
}

/* line 714, partials/_global.scss */
.resp-tab-content {
  border: 1px solid #c3c3c3;
}

/* line 718, partials/_global.scss */
h2.resp-accordion {
  font-size: 13px;
  border: 1px solid #c1c1c1;
  border-top: 0px solid #c1c1c1;
  margin: 0px;
  padding: 10px 15px;
}

/* line 726, partials/_global.scss */
h2.resp-tab-active {
  border-bottom: 0px solid #c1c1c1 !important;
  margin-bottom: 0px !important;
  /*padding: 10px 15px !important;*/
  padding: 8px 15px !important;
}

/* line 733, partials/_global.scss */
h2.resp-tab-title:last-child {
  border-bottom: 12px solid #c1c1c1 !important;
  background: blue;
}

/*-----------Vertical tabs-----------*/
/* line 738, partials/_global.scss */
.resp-vtabs ul.resp-tabs-list {
  float: left;
  width: 30%;
}

/* line 743, partials/_global.scss */
.resp-vtabs .resp-tabs-list li {
  display: block;
  /*padding: 15px 15px !important;*/
  padding: 8px 15px !important;
  margin: 0;
  cursor: pointer;
  float: none;
}

/* line 752, partials/_global.scss */
.resp-vtabs .resp-tabs-container {
  padding: 0px;
  background-color: #fff;
  border: 1px solid #c1c1c1;
  float: left;
  width: 68%;
  min-height: 250px;
  border-radius: 4px;
  clear: none;
}

/* line 763, partials/_global.scss */
.resp-vtabs .resp-tab-content {
  border: none;
}

/* line 767, partials/_global.scss */
.resp-vtabs li.resp-tab-active {
  border: 1px solid #c1c1c1;
  border-right: none;
  background-color: #fff;
  position: relative;
  z-index: 1;
  margin-right: -1px !important;
  /*padding: 14px 15px 15px 14px !important;*/
  padding: 8px 15px 8px 14px !important;
}

/* line 778, partials/_global.scss */
.resp-arrow {
  width: 0;
  height: 0;
  float: right;
  margin-top: 3px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 12px solid #c1c1c1;
}

/* line 788, partials/_global.scss */
h2.resp-tab-active span.resp-arrow {
  border: none;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 12px solid #9B9797;
}

/*-----------Accordion styles-----------*/
/* line 796, partials/_global.scss */
h2.resp-tab-active {
  background: #DBDBDB !important;
}

/* line 799, partials/_global.scss */
.resp-easy-accordion h2.resp-accordion {
  display: block;
}

/* line 802, partials/_global.scss */
.resp-easy-accordion .resp-tab-content {
  border: 1px solid #c1c1c1;
}

/* line 806, partials/_global.scss */
.resp-easy-accordion .resp-tab-content:last-child {
  border-bottom: 1px solid #c1c1c1 !important;
}

/* line 810, partials/_global.scss */
.resp-jfit {
  width: 100%;
  margin: 0px;
}

/* line 815, partials/_global.scss */
.resp-tab-content-active {
  display: block;
}

/* line 819, partials/_global.scss */
h2.resp-accordion:first-child {
  border-top: 1px solid #c1c1c1 !important;
}

/*Here your can change the breakpoint to set the accordion, when screen resolution changed*/
@media only screen and (max-width: 768px) {
  /* line 825, partials/_global.scss */
  ul.resp-tabs-list {
    display: none;
  }

  /* line 829, partials/_global.scss */
  h2.resp-accordion {
    display: block;
  }

  /* line 833, partials/_global.scss */
  .resp-vtabs .resp-tab-content {
    border: 1px solid #C1C1C1;
  }

  /* line 837, partials/_global.scss */
  .resp-vtabs .resp-tabs-container {
    border: none;
    float: none;
    width: 100%;
    min-height: initial;
    clear: none;
  }

  /* line 844, partials/_global.scss */
  .resp-accordion-closed {
    display: none !important;
  }

  /* line 847, partials/_global.scss */
  .resp-vtabs .resp-tab-content:last-child {
    border-bottom: 1px solid #c1c1c1 !important;
  }
}
/*-------------ON & OFF for Mobile Accordian-------------*/
/* line 853, partials/_global.scss */
.plyfill {
  background-color: white;
  margin-top: -5px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-top: 1px solid #dadada;
}

/* line 860, partials/_global.scss */
.on {
  background-image: url(../images/icons/minus.png);
  background-position: 100% 3px;
  background-repeat: no-repeat;
}

/* line 865, partials/_global.scss */
.off {
  background-image: url(../images/icons/plus.png);
  background-position: 100% 3px;
  background-repeat: no-repeat;
}

/* line 870, partials/_global.scss */
#selectd {
  padding: 5px 0;
}

/* line 873, partials/_global.scss */
.styled {
  position: absolute;
  top: 5px !important;
  height: 25px;
}

/* line 878, partials/_global.scss */
.styled option {
  padding: 5px;
}

/* ================================
 * Custom Select Box - Languages 
 * ================================ */
/* line 883, partials/_global.scss */
.sbHolder {
  background: url(../images/backgrounds/langBg.jpg) repeat-x 0 bottom scroll #f6f6f6;
  border: solid 1px #cccccc;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  height: 24px;
  position: relative;
  width: 118px;
  border-radius: 5px;
  outline: none;
  float: none;
  display: inline-block;
}

/* line 901, partials/_global.scss */
.sbSelector {
  display: block;
  height: 24px;
  left: 0;
  line-height: 25px;
  outline: none;
  overflow: hidden;
  position: absolute;
  text-indent: 10px;
  top: 0;
  width: 118px;
}

/* line 913, partials/_global.scss */
.sbSelector:link, .sbSelector:visited, .sbSelector:hover {
  color: #666666 !important;
  outline: none;
  text-decoration: none;
  text-shadow: 1px 1px 1px #fff;
}

/* line 919, partials/_global.scss */
.sbToggle {
  background: url(../images/backgrounds/select-icons.png) 0 -119px no-repeat;
  display: block;
  height: 24px;
  outline: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
}

/* line 929, partials/_global.scss */
.sbToggle:hover {
  background: url(../images/backgrounds/select-icons.png) 0 -164px no-repeat;
}

/* line 932, partials/_global.scss */
.sbToggleOpen {
  background: url(../images/backgrounds/select-icons.png) 0 -19px no-repeat;
}

/* line 935, partials/_global.scss */
.sbToggleOpen:hover {
  background: url(../images/backgrounds/select-icons.png) 0 -63px no-repeat;
}

/* line 938, partials/_global.scss */
.sbHolderDisabled {
  background-color: #3C3C3C;
  border: solid 1px #515151;
}

/* line 948, partials/_global.scss */
.sbOptions {
  background-color: #f6f6f6;
  border: solid 1px #cccccc;
  list-style: none;
  left: -1px;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 30px;
  width: 118px;
  z-index: 1;
  overflow-y: auto;
  border-radius: 0px 0px 5px 5px;
}

/* line 963, partials/_global.scss */
.sbOptions li {
  padding: 0;
  margin-right: 7px;
  float: none !important;
}

/* line 968, partials/_global.scss */
.sbOptions a {
  border-bottom: dotted 1px #cccccc;
  display: block;
  outline: none;
  padding: 7px 0 7px 3px;
}

/* line 974, partials/_global.scss */
.sbOptions a:link, .sbOptions a:visited {
  color: #888 !important;
  text-decoration: none;
}

/* line 980, partials/_global.scss */
.sbOptions a:hover,
.sbOptions a:focus,
.sbOptions a.sbFocus {
  color: #666666 !important;
}

/* line 983, partials/_global.scss */
.sbOptions li.last a {
  border-bottom: none;
}

/* line 986, partials/_global.scss */
.sbOptions .sbDisabled {
  border-bottom: dotted 1px #515151;
  color: #999;
  display: block;
  padding: 7px 0 7px 3px;
}

/* line 992, partials/_global.scss */
.sbOptions .sbGroup {
  border-bottom: dotted 1px #515151;
  color: #EBB52D;
  display: block;
  font-weight: bold;
  padding: 7px 0 7px 3px;
}

/* line 999, partials/_global.scss */
.sbOptions .sbSub {
  padding-left: 17px;
}

/* line 1002, partials/_global.scss */
.wht-arrow {
  position: absolute;
  right: 0;
  z-index: 999;
}

/* Menu Shadow */
/* line 1007, partials/_global.scss */
.inr-shd {
  background: url(../images/backgrounds/sliderShadow.png) repeat-x scroll 0 0 transparent;
  display: block;
  position: absolute;
  width: 100%;
  z-index: 1;
  height: 10px;
}

/* line 1016, partials/_global.scss */
.shrt-desp figure {
  width: 254px;
  height: auto;
  margin-bottom: 15px;
}

/* line 1021, partials/_global.scss */
.shrt-desp h4 {
  color: #231F20;
  font-family: "gotham_bookregular", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* line 1028, partials/_global.scss */
.shrt-desp p {
  color: #464646;
  font-size: 14px;
  font-family: "gotham_bookregular", Arial, Helvetica, sans-serif;
}

/* line 1033, partials/_global.scss */
.shrt-desp p a {
  color: #E51B24 !important;
  font-size: 12px !important;
  font-style: italic;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  display: block;
  margin-top: 15px;
  line-height: 1;
}
/* line 1042, partials/_global.scss */
.shrt-desp p a:hover {
  text-decoration: none !important;
  background-image: none;
}

/* line 1047, partials/_global.scss */
.big {
  display: block !important;
}

/* line 1050, partials/_global.scss */
.small {
  display: none !important;
}

/* ================================
 * Typography
 * ================================ */
/* -- Web Fonts -- */
/* Generated by Font Squirrel (http://www.fontsquirrel.com) on May 14, 2013 */
@font-face {
  font-family: 'gotham_bookregular';
  src: url("../fonts/ufonts.com_gotham_book-webfont.eot");
  src: url("../fonts/ufonts.com_gotham_book-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/ufonts.com_gotham_book-webfont.woff") format("woff"), url("../fonts/ufonts.com_gotham_book-webfont.ttf") format("truetype"), url("../fonts/ufonts.com_gotham_book-webfont.svg#gotham_bookregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'gotham_extralightregular';
  src: url("../fonts/ufonts.com_gotham_extralight-webfont.eot");
  src: url("../fonts/ufonts.com_gotham_extralight-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/ufonts.com_gotham_extralight-webfont.woff") format("woff"), url("../fonts/ufonts.com_gotham_extralight-webfont.ttf") format("truetype"), url("../fonts/ufonts.com_gotham_extralight-webfont.svg#gotham_extralightregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'gotham_mediumregular';
  src: url("../fonts/ufonts.com_gotham_medium-webfont.eot");
  src: url("../fonts/ufonts.com_gotham_medium-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/ufonts.com_gotham_medium-webfont.woff") format("woff"), url("../fonts/ufonts.com_gotham_medium-webfont.ttf") format("truetype"), url("../fonts/ufonts.com_gotham_medium-webfont.svg#gotham_mediumregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* -- General -- */
/* line 44, partials/_typography.scss */
body {
  font: 62.5%/1.6 "gotham_mediumregular", Arial, Helvetica, sans-serif;
}

/* line 47, partials/_typography.scss */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

/* line 50, partials/_typography.scss */
h1 {
  font-size: 2.2em;
}

/* line 53, partials/_typography.scss */
h2 {
  font-size: 1.4em;
}

/* line 56, partials/_typography.scss */
h3 {
  font-size: 1.3em;
}

/* line 59, partials/_typography.scss */
h4 {
  font-size: 1.2em;
}

/* line 62, partials/_typography.scss */
h5 {
  font-size: 1em;
}

/* line 65, partials/_typography.scss */
h6 {
  font-size: .8em;
}

/* line 68, partials/_typography.scss */
p {
  font-size: .875em;
  font-family: Arial, Helvetica, sans-serif;
  color: #333333;
}

/* ================================
 * Form Styles
 * ================================ */
/* -- General Styles -- */
/* line 6, partials/_forms.scss */
select {
  -webkit-box-shadow: inset 1px 1px 1px -1px #747474;
  -moz-box-shadow: inset 1px 1px 1px -1px #747474;
  box-shadow: inset 1px 1px 1px -1px #747474;
  padding: 4px;
  border: 1px solid #e0e0e0;
  font: 12px Arial, Helvetica, sans-serif;
  color: #333;
  background-color: #f8f8f8;
}

/* -- Form Layouts -- */
/* line 18, partials/_forms.scss */
.inline-fields input,
.inline-fields select {
  margin: 0 !important;
  min-width: 40%;
}

/* line 23, partials/_forms.scss */
.form-field {
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-bottom: .5em;
  font: 12px Arial, Helvetica, sans-serif;
}
/* line 110, modules/_framework.scss */
.form-field:before {
  content: '';
  display: table;
  line-height: 0;
}
/* line 115, modules/_framework.scss */
.form-field:after {
  content: '';
  display: table;
  line-height: 0;
  clear: both;
}

@media (max-width: 600px) {
  /* line 164, modules/_framework.scss */
  .single-field > * {
    margin: 1em 0 !important;
    float: none !important;
    width: 100% !important;
  }
}
/* line 33, partials/_forms.scss */
.single-field label {
  float: left;
  margin-right: 2%;
  width: 40.5%;
  font-weight: 600;
  line-height: 2em;
}
/* line 41, partials/_forms.scss */
.single-field input,
.single-field select {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: right;
  margin: 0 !important;
  width: 57.5%;
}

/* line 48, partials/_forms.scss */
.form-buttons {
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin: 1.5em 0;
}
/* line 110, modules/_framework.scss */
.form-buttons:before {
  content: '';
  display: table;
  line-height: 0;
}
/* line 115, modules/_framework.scss */
.form-buttons:after {
  content: '';
  display: table;
  line-height: 0;
  clear: both;
}

/* ================================
 * Header Styles
 * ================================ */
/* line 4, partials/_header.scss */
#site-header {
  background-color: #00539b;
}
/* line 6, partials/_header.scss */
#site-header #break-news {
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  background: #fcdf20;
  /*box-shadow: 0 10px 10px -10px $black;*/
  -moz-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
  padding-bottom: 10px;
}
/* line 110, modules/_framework.scss */
#site-header #break-news:before {
  content: '';
  display: table;
  line-height: 0;
}
/* line 115, modules/_framework.scss */
#site-header #break-news:after {
  content: '';
  display: table;
  line-height: 0;
  clear: both;
}
/* line 17, partials/_header.scss */
#site-header #break-news .bnews-left {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 49%;
  font-family: Arial, Helvetica, sans-serif;
  margin-top: 10px;
}
/* line 139, modules/_framework.scss */
#site-header #break-news .bnews-left:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
#site-header #break-news .bnews-left:last-child {
  float: right;
}
/* line 21, partials/_header.scss */
#site-header #break-news .bnews-left .bnews-label {
  border-right: 1px solid black;
  text-transform: uppercase;
  font-size: 20px;
  color: #e51b24;
  float: left;
  line-height: 1;
  padding-right: 20px;
  margin-right: 20px;
}
/* line 30, partials/_header.scss */
#site-header #break-news .bnews-left .bnews-label strong {
  color: black;
  font-size: 35px;
  display: block;
}
/* line 36, partials/_header.scss */
#site-header #break-news .bnews-left .bnews-info {
  font-size: 14px;
  color: black;
  line-height: 1.1;
}
/* line 40, partials/_header.scss */
#site-header #break-news .bnews-left .bnews-info strong {
  font-size: 20px;
  display: block;
  text-transform: uppercase;
}
/* line 46, partials/_header.scss */
#site-header #break-news .bnews-left .bnews-abbr {
  display: none;
}
/* line 50, partials/_header.scss */
#site-header #break-news .bnews-right {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 49%;
  margin-top: 10px;
}
/* line 139, modules/_framework.scss */
#site-header #break-news .bnews-right:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
#site-header #break-news .bnews-right:last-child {
  float: right;
}
/* line 53, partials/_header.scss */
#site-header #break-news .bnews-right .exclam {
  text-transform: uppercase;
  text-align: right;
  background: url("../images/icons/exclam.png") no-repeat scroll right bottom transparent;
  padding-right: 65px;
  height: 48px;
  line-height: 48px;
  margin-bottom: 0;
}
/* line 65, partials/_header.scss */
#site-header .grid-container .nav-container {
  position: relative;
  left: -15px;
}
/* line 68, partials/_header.scss */
#site-header .grid-container .nav-container a {
  font-size: 18px;
  color: white;
  text-decoration: none;
  outline: none;
}
/* line 74, partials/_header.scss */
#site-header .grid-container .nav-container .menu-link {
  display: none;
  text-decoration: none;
  line-height: 1;
  padding: 15px 60px 15px 30px;
}
/* line 80, partials/_header.scss */
#site-header .grid-container .nav-container .menu {
  display: table;
  width: 100%;
}
/* line 84, partials/_header.scss */
#site-header .grid-container .nav-container .menu ul {
  display: table-row;
}
/* line 87, partials/_header.scss */
#site-header .grid-container .nav-container .menu ul li {
  list-style: none;
  display: table-cell;
  line-height: 1;
}
/* line 93, partials/_header.scss */
#site-header .grid-container .nav-container .menu ul li:first-child, #site-header .grid-container .nav-container .menu ul li:first-child + li {
  position: relative;
}
/* line 97, partials/_header.scss */
#site-header .grid-container .nav-container .menu ul li:first-child .mega-container, #site-header .grid-container .nav-container .menu ul li:first-child + li .mega-container {
  right: inherit;
  left: 0;
}
/* line 102, partials/_header.scss */
#site-header .grid-container .nav-container .menu ul li a {
  display: block;
  padding: 15px 20px;
  font-size: 16px;
  color: white;
  text-decoration: none;
}
/* line 111, partials/_header.scss */
#site-header .grid-container .nav-container .menu ul li ul li {
  padding: 0;
}
/* line 114, partials/_header.scss */
#site-header .grid-container .nav-container .menu ul li ul li .mega-menu {
  background: #fff;
  overflow: hidden;
  padding: 25px;
}
/* line 121, partials/_header.scss */
#site-header .grid-container .nav-container .menu ul li .mega-container {
  position: absolute;
  top: 49px;
  right: 0;
  z-index: 999;
  display: block;
  width: 875px;
}
/* line 129, partials/_header.scss */
#site-header .grid-container .nav-container .menu ul li .mega-container a {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  padding: 0 10px 0 0;
}
/* line 137, partials/_header.scss */
#site-header .grid-container .nav-container .menu ul .has-submenu:hover, #site-header .grid-container .nav-container .menu ul .has-submenu.active {
  background: url("../images/backgrounds/nav-redbt.png") repeat-x center bottom scroll;
}
/* line 142, partials/_header.scss */
#site-header .grid-container .nav-container .menu ul .red-btmln:hover {
  background: url("../images/backgrounds/nav-redbt.png") repeat-x center bottom scroll;
}
/* line 146, partials/_header.scss */
#site-header .grid-container .nav-container .menu ul .arr-none {
  display: none;
}
/* line 152, partials/_header.scss */
#site-header .grid-container .nav-container #menu1 .inr-shd {
  display: none;
}
/* line 157, partials/_header.scss */
#site-header .grid-container .nav-container #menu2 .inr-shd {
  display: none;
}
/* line 162, partials/_header.scss */
#site-header .grid-container .nav-container #menu3 ul {
  display: none;
}
/* line 165, partials/_header.scss */
#site-header .grid-container .nav-container #menu3 .inr-shd {
  display: none;
}

/* line 173, partials/_header.scss */
#logo {
  margin: 0;
  padding: 33px 0 18px;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
/* line 57, modules/_framework.scss */
#logo:before {
  content: '';
  display: table;
  line-height: 0;
}
/* line 62, modules/_framework.scss */
#logo:after {
  content: '';
  display: table;
  line-height: 0;
  clear: both;
}
/* line 68, modules/_framework.scss */
#logo > * {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  margin-bottom: 2%;
  width: 32%;
}
/* line 78, modules/_framework.scss */
#logo > *:nth-child(n) {
  clear: none;
}
/* line 83, modules/_framework.scss */
#logo > *:nth-child(3n-2) {
  clear: both;
}
/* line 88, modules/_framework.scss */
#logo > *:nth-child(3n) {
  float: right;
  margin-right: 0;
}
/* line 94, modules/_framework.scss */
#logo > *:nth-last-child(-n + 3) {
  margin-bottom: 0;
}
/* line 177, partials/_header.scss */
#logo a {
  background: url("../images/backgrounds/logo.png") no-repeat scroll 0 0 transparent;
  height: 76px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0;
  text-indent: -9999px;
  display: block;
  width: 100%;
}

/* line 188, partials/_header.scss */
#header-right {
  position: absolute;
  right: 30px;
  top: 28px;
}
/* line 192, partials/_header.scss */
#header-right ul {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  float: right;
}
/* line 197, partials/_header.scss */
#header-right ul li {
  list-style: none;
  float: left;
  margin-left: 7px;
}
/* line 201, partials/_header.scss */
#header-right ul li a {
  text-decoration: none;
  color: white;
  outline: none;
}
/* line 206, partials/_header.scss */
#header-right ul li span {
  color: white;
}
/* line 208, partials/_header.scss */
#header-right ul li span .select {
  position: absolute;
  width: 122px;
  /* With the padding included, the width is 190 pixels: the actual width of the image. */
  height: 27px;
  padding: 3px 24px 0 8px;
  font: 12px/21px arial,sans-serif;
  background: url(../images/backgrounds/selectBg.png) no-repeat;
  overflow: hidden;
  color: #666;
  text-shadow: 0 1px 0 white;
}
/* line 219, partials/_header.scss */
#header-right ul li span select.styled {
  width: 122px;
  position: relative;
  top: -5px;
  height: 32px;
}
/* line 224, partials/_header.scss */
#header-right ul li span select.styled option {
  padding: 5px;
  outline: none;
  border: none;
}
/* line 233, partials/_header.scss */
#header-right .search-container {
  clear: both;
  float: right;
  margin-top: 15px;
  height: 24px;
}
/* line 238, partials/_header.scss */
#header-right .search-container button {
  padding: 0;
}
/* line 243, partials/_header.scss */
#header-right .rounded {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
/* line 248, partials/_header.scss */
#header-right .wrap {
  position: relative;
  /*padding:5px 6px 6px 7px;  readjust in jsfiddle*/
  background: #f0f0f0;
  border: 1px solid #ccc;
  overflow: hidden;
  border-bottom-color: white;
}
/* line 256, partials/_header.scss */
#header-right .search {
  width: 200px;
  position: relative;
  top: -11px;
  /* readujst in jsfiddle */
  padding: 15px 7px 7px;
  border: 1px solid #ccc;
  font-size: 12px;
  text-shadow: 0 1px 0 white;
  color: #666666;
  background-color: #ddd;
}
/* line 266, partials/_header.scss */
#header-right .go {
  position: absolute;
  top: -1px;
  right: 0;
  /*padding:3px 5px 2px;*/
  margin-left: -5px;
  border: none;
  background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#dfdfdf));
  background: -moz-linear-gradient(top, #f6f6f6, #dfdfdf);
}
/* line 274, partials/_header.scss */
#header-right .go span {
  display: block;
  width: 33px;
  height: 25px;
  background: url("../images/backgrounds/search.png") no-repeat scroll 0 0 transparent;
}

/* ================================
 * Large Tablet
 * ================================ */
@media (max-width: 800px) {
  /* line 286, partials/_header.scss */
  #site-header {
    background-color: #00539b;
    position: relative;
    z-index: 999;
    /*box-shadow: 0 10px 10px -10px $black;*/
  }
  /* line 291, partials/_header.scss */
  #site-header #break-news {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    background: #fcdf20;
    box-shadow: 0 10px 10px -10px black;
    padding-bottom: 10px;
  }
  /* line 110, modules/_framework.scss */
  #site-header #break-news:before {
    content: '';
    display: table;
    line-height: 0;
  }
  /* line 115, modules/_framework.scss */
  #site-header #break-news:after {
    content: '';
    display: table;
    line-height: 0;
    clear: both;
  }
  /* line 296, partials/_header.scss */
  #site-header #break-news .bnews-left {
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 10px;
  }
  /* line 139, modules/_framework.scss */
  #site-header #break-news .bnews-left:last-child {
    margin-right: 0;
  }
  /* line 143, modules/_framework.scss */
  #site-header #break-news .bnews-left:last-child {
    float: right;
  }
  /* line 300, partials/_header.scss */
  #site-header #break-news .bnews-left .bnews-label {
    border-right: 1px solid black;
    text-transform: uppercase;
    font-size: 20px;
    color: #e51b24;
    float: left;
    line-height: 1;
    padding-right: 20px;
    margin-right: 20px;
  }
  /* line 309, partials/_header.scss */
  #site-header #break-news .bnews-left .bnews-label strong {
    color: black;
    font-size: 35px;
    display: block;
  }
  /* line 315, partials/_header.scss */
  #site-header #break-news .bnews-left .bnews-info {
    font-size: 14px;
    color: black;
    line-height: 1.1;
    display: none;
  }
  /* line 320, partials/_header.scss */
  #site-header #break-news .bnews-left .bnews-info strong {
    font-size: 14px;
    display: block;
    text-transform: uppercase;
    font-weight: normal;
  }
  /* line 327, partials/_header.scss */
  #site-header #break-news .bnews-left .bnews-abbr {
    font-size: 14px;
    color: black;
    line-height: 1;
    text-transform: uppercase;
    display: block;
  }
  /* line 333, partials/_header.scss */
  #site-header #break-news .bnews-left .bnews-abbr a {
    display: block;
  }
  /* line 338, partials/_header.scss */
  #site-header #break-news .bnews-right {
    display: none;
  }
  /* line 342, partials/_header.scss */
  #site-header #site-navigation {
    margin-top: 20px;
  }
  /* line 344, partials/_header.scss */
  #site-header #site-navigation .grid-container {
    padding: 0;
  }
  /* line 347, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container {
    position: relative;
    left: 0;
    /* for case2 starts */
  }
  /* line 350, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container .dbl-grid {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
  }
  /* line 57, modules/_framework.scss */
  #site-header #site-navigation .grid-container .nav-container .dbl-grid:before {
    content: '';
    display: table;
    line-height: 0;
  }
  /* line 62, modules/_framework.scss */
  #site-header #site-navigation .grid-container .nav-container .dbl-grid:after {
    content: '';
    display: table;
    line-height: 0;
    clear: both;
  }
  /* line 68, modules/_framework.scss */
  #site-header #site-navigation .grid-container .nav-container .dbl-grid > * {
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
    margin-bottom: 2%;
    width: 49%;
  }
  /* line 78, modules/_framework.scss */
  #site-header #site-navigation .grid-container .nav-container .dbl-grid > *:nth-child(n) {
    clear: none;
  }
  /* line 83, modules/_framework.scss */
  #site-header #site-navigation .grid-container .nav-container .dbl-grid > *:nth-child(2n-1) {
    clear: both;
  }
  /* line 88, modules/_framework.scss */
  #site-header #site-navigation .grid-container .nav-container .dbl-grid > *:nth-child(2n) {
    float: right;
    margin-right: 0;
  }
  /* line 94, modules/_framework.scss */
  #site-header #site-navigation .grid-container .nav-container .dbl-grid > *:nth-last-child(-n + 2) {
    margin-bottom: 0;
  }
  /* line 352, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container .dbl-grid > * {
    margin-bottom: 0 !important;
    margin-right: 0 !important;
  }
  /* line 357, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container .sgl-grid {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
  }
  /* line 57, modules/_framework.scss */
  #site-header #site-navigation .grid-container .nav-container .sgl-grid:before {
    content: '';
    display: table;
    line-height: 0;
  }
  /* line 62, modules/_framework.scss */
  #site-header #site-navigation .grid-container .nav-container .sgl-grid:after {
    content: '';
    display: table;
    line-height: 0;
    clear: both;
  }
  /* line 68, modules/_framework.scss */
  #site-header #site-navigation .grid-container .nav-container .sgl-grid > * {
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
    margin-bottom: 2%;
    width: 100%;
  }
  /* line 78, modules/_framework.scss */
  #site-header #site-navigation .grid-container .nav-container .sgl-grid > *:nth-child(n) {
    clear: none;
  }
  /* line 83, modules/_framework.scss */
  #site-header #site-navigation .grid-container .nav-container .sgl-grid > *:nth-child(1n-0) {
    clear: both;
  }
  /* line 88, modules/_framework.scss */
  #site-header #site-navigation .grid-container .nav-container .sgl-grid > *:nth-child(1n) {
    float: right;
    margin-right: 0;
  }
  /* line 94, modules/_framework.scss */
  #site-header #site-navigation .grid-container .nav-container .sgl-grid > *:nth-last-child(-n + 1) {
    margin-bottom: 0;
  }
  /* line 359, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container .sgl-grid > * {
    margin-bottom: 0 !important;
    margin-right: 0 !important;
  }
  /* line 365, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container a {
    padding-left: 5px;
    font-size: 18px;
    color: white;
    text-decoration: none;
    position: relative;
    outline: none;
  }
  /* line 372, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container a .m-icon {
    width: 36px;
    height: 19px;
    background: url(../images/icons/menuOpen.png) no-repeat center center scroll;
    position: absolute;
    left: 185px;
  }
  /* line 379, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container a .split-r {
    width: 36px;
    height: 19px;
    background: url(../images/icons/arrowRight.png) 0 50%;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
  }
  /* line 389, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container .active .m-icon {
    background: url(../images/icons/menuClose.png) no-repeat center center scroll;
  }
  /* line 393, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container .menu-link {
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    position: relative;
    vertical-align: middle;
  }
  /* line 400, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container .menu {
    display: block;
    position: absolute;
    left: 0;
    top: 44px;
    width: 100%;
    overflow: hidden;
    max-height: 0;
    background-color: #fff;
  }
  /* line 409, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container .menu ul {
    overflow: hidden;
    max-height: 0;
    position: relative;
    display: inline;
    border-top: 1px solid #dadada;
  }
  /* line 415, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container .menu ul li {
    list-style: none;
    display: block;
    position: relative;
    padding: 0;
  }
  /* line 420, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container .menu ul li a {
    font-size: 18px;
    color: white;
    text-decoration: none;
    color: #000;
    display: block;
    padding: 12px 20px;
    line-height: 1;
    border-bottom: 1px solid #dadada;
    position: relative;
  }
  /* line 431, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container .menu ul li a:hover {
    background-color: #d1d1d1;
  }
  /* line 435, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container .menu ul li .mega-container {
    display: none !important;
  }
  /* line 438, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container .menu ul li .well {
    padding: 8px;
    border-bottom: 1px solid #dadada;
  }
  /* line 441, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container .menu ul li .well .rst-normal {
    display: block;
    text-align: center;
  }
  /* line 445, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container .menu ul li .well .srch-grey {
    background: url(../images/icons/gradGrey.jpg) repeat-x 0 bottom;
    border: 1px solid #4c4c4c;
    /*margin: 5px 20px;*/
    border-radius: 5px;
    height: 25px;
    position: relative;
  }
  /* line 452, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container .menu ul li .well .srch-grey .srch-txt {
    border: none;
    position: absolute;
    left: 10px;
    top: 3px;
    font-size: 14px;
    color: #090909;
    font-weight: normal;
    font-family: Arial, Helvetica, sans-serif;
    background-color: transparent;
  }
  /* line 463, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container .menu ul li .well .srch-grey .lens {
    background: url(../images/icons/searchdrp.png) no-repeat center right;
    border: none;
    width: 23px;
    height: 25px;
    position: absolute;
    right: 0;
  }
  /* line 472, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container .menu ul li .well .inpt-grey {
    font-size: 14px;
    color: #090909;
    font-weight: normal;
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
    padding-left: 10px;
    text-align: left;
    height: 25px;
    background: url(../images/icons/gradGrey.jpg) repeat-x 0 bottom;
    border: 1px solid #4c4c4c;
    border-radius: 5px;
  }
  /* line 485, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container .menu ul li .well .inpt-grey select {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 3px;
    border: 0px;
    background: url(../images/icons/gradGrey.jpg) repeat-x 0 bottom transparent;
    border-radius: 3px;
    outline: none;
  }
  /* line 501, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container .menu ul li ul li .mega-menu {
    display: none;
  }
  /* line 507, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container .menu ul .arr-none {
    background-image: none;
    background-color: white;
  }
  /* line 510, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container .menu ul .arr-none:hover {
    background-color: white;
  }
  /* line 516, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container .menu ul .has-submenu a:after {
    content: '';
    position: absolute;
    top: 7px;
    right: 15px;
    display: block;
    font-size: 1.5em;
    padding: 0.55em 0.5em;
    background: url(../images/icons/arrowR.png) no-repeat 50% center scroll;
  }
  /* line 528, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container .menu ul .has-submenu .active:after {
    content: '';
  }
  /* line 535, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container .active {
    max-height: 95em;
  }
  /* line 538, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container .main-nav1 {
    display: inline-block;
    padding-top: 11px;
    padding-bottom: 12px;
  }
  /* line 544, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container .main-nav2 {
    width: 50%;
    border-right: 1px solid #4a4a4a;
    padding-right: 30px;
    text-align: center;
    height: 41px;
  }
  /* line 551, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container .main-nav3 {
    width: 50%;
    height: 41px;
  }
  /* line 555, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container .inred {
    border-bottom: 3px solid red;
  }
  /* line 558, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container .outred {
    border-bottom: 0px;
  }
  /* line 562, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container #menu1 .inr-shd {
    display: block;
  }
  /* line 567, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container #menu2 .inr-shd {
    display: block;
  }
  /* line 572, partials/_header.scss */
  #site-header #site-navigation .grid-container .nav-container #menu3 .inr-shd {
    display: block;
  }
  /* line 585, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu {
    margin-left: 0;
  }
  /* line 587, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu .mobile-nav {
    font-size: 18px;
    color: white;
    padding: 10px;
    background-position: 30% center;
  }
  /* line 593, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu .split-nav {
    font-size: 18px;
    color: white;
    padding: 0;
    overflow: hidden;
  }
  /* line 598, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu .split-nav .split-nav-left {
    width: 50%;
    float: left;
    text-align: center;
    position: relative;
    color: transparent;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  /* line 599, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu .split-nav .split-nav-left .mopen {
    background: url(../images/icons/menuOpen.png) no-repeat center center scroll;
    width: 36px;
    height: 19px;
    display: block;
    position: absolute;
    left: 40%;
    top: 10px;
  }
  /* line 615, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu .split-nav .split-nav-left:hover {
    background: url(../images/backgrounds/splitBg.jpg) repeat-x 0 bottom scroll;
  }
  /* line 619, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu .split-nav .split-nav-right {
    width: 49.6%;
    float: right;
    text-align: center;
    position: relative;
    border-left: 1px solid #4a4a4a;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  /* line 620, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu .split-nav .split-nav-right h3 {
    margin-bottom: 5px;
    color: white;
    font-size: 18px;
  }
  /* line 625, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu .split-nav .split-nav-right .arr-rgt {
    background: url(../images/icons/arrowRight.png) no-repeat center center scroll;
    width: 21px;
    height: 14px;
    display: block;
    position: absolute;
    right: 6%;
    top: 14px;
  }
  /* line 641, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu .split-nav .split-nav-right:hover {
    background: url(../images/backgrounds/splitBg.jpg) repeat-x 0 bottom scroll;
  }
  /* line 646, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.secondary {
    position: absolute;
    border-top: 3px solid #e51b24;
    box-shadow: 0 10px 10px -10px black;
    background-color: white;
    width: 100%;
  }
  /* line 652, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.secondary .arr-none {
    background-image: none;
    background-color: white;
  }
  /* line 655, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.secondary .arr-none:hover {
    background-color: white;
  }
  /* line 659, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.secondary li {
    padding: 8px;
    margin-left: 0;
    border-bottom: 1px solid #dadada;
    background-color: white;
    font-size: 18px;
    background-image: url(../images/icons/arrowR.png);
    background-position: 95% center;
    background-repeat: no-repeat;
  }
  /* line 668, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.secondary li a {
    color: black !important;
    padding: 10px !important;
    text-decoration: none;
    font-size: 16px;
  }
  /* line 674, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.secondary li:hover {
    background-color: #d1d1d1;
  }
  /* line 677, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.secondary li .red-bot {
    border-bottom: none;
    background-image: none;
    height: auto;
  }
  /* line 682, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.secondary li .rst-normal {
    display: block;
    text-align: center;
  }
  /* line 686, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.secondary li .srch-grey {
    background: url(../images/icons/gradGrey.jpg) repeat-x 0 bottom;
    border: 1px solid #4c4c4c;
    /*margin: 5px 20px;*/
    border-radius: 5px;
    height: 25px;
    position: relative;
  }
  /* line 693, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.secondary li .srch-grey .srch-txt {
    border: none;
    position: absolute;
    left: 10px;
    top: 3px;
    font-size: 14px;
    color: #090909;
    font-weight: normal;
    font-family: Arial, Helvetica, sans-serif;
    background-color: transparent;
  }
  /* line 704, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.secondary li .srch-grey .lens {
    background: url(../images/icons/searchdrp.png) no-repeat center right;
    border: none;
    width: 23px;
    height: 25px;
    position: absolute;
    right: 0;
  }
  /* line 713, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.secondary li .inpt-grey {
    font-size: 14px;
    color: #090909;
    font-weight: normal;
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
    padding-left: 10px;
    text-align: left;
    height: 25px;
    background: url(../images/icons/gradGrey.jpg) repeat-x 0 bottom;
    border: 1px solid #4c4c4c;
    border-radius: 5px;
  }
  /* line 726, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.secondary li .inpt-grey select {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 3px;
    border: 0px;
    background: url(../images/icons/gradGrey.jpg) repeat-x 0 bottom transparent;
    border-radius: 3px;
    outline: none;
  }
  /* line 739, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.primary {
    position: absolute;
    border-top: 3px solid #e51b24;
    box-shadow: 0 10px 10px -10px black;
    background-color: white;
  }
  /* line 744, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.primary .arr-none {
    background-image: none;
    background-color: white;
  }
  /* line 747, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.primary .arr-none:hover {
    background-color: white;
  }
  /* line 751, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.primary li {
    margin-left: 0;
    border-bottom: 1px solid #dadada;
    background-color: white;
    font-size: 18px;
    background-image: url(../images/icons/arrowR.png);
    background-position: 95% center;
    background-repeat: no-repeat;
  }
  /* line 759, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.primary li a {
    color: black !important;
    padding: 10px !important;
  }
  /* line 763, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.primary li:hover {
    background-color: #d1d1d1;
  }
  /* line 766, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.primary li .red-bot {
    border-bottom: none;
    background-image: none;
    height: auto;
  }
  /* line 771, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.primary li .rst-normal {
    display: block;
    text-align: center;
  }
  /* line 775, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.primary li .srch-grey {
    background: url(../images/icons/gradGrey.jpg) repeat-x 0 bottom;
    border: 1px solid #4c4c4c;
    /*margin: 5px 20px;*/
    border-radius: 5px;
    height: 25px;
    position: relative;
  }
  /* line 782, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.primary li .srch-grey .srch-txt {
    border: none;
    position: absolute;
    left: 10px;
    top: 3px;
    font-size: 14px;
    color: #090909;
    font-weight: normal;
    font-family: Arial, Helvetica, sans-serif;
    background-color: transparent;
  }
  /* line 793, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.primary li .srch-grey .lens {
    background: url(../images/icons/searchdrp.png) no-repeat center right;
    border: none;
    width: 23px;
    height: 25px;
    position: absolute;
    right: 0;
  }
  /* line 802, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.primary li .inpt-grey {
    font-size: 14px;
    color: #090909;
    font-weight: normal;
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
    padding-left: 10px;
    text-align: left;
    height: 25px;
    background: url(../images/icons/gradGrey.jpg) repeat-x 0 bottom;
    border: 1px solid #4c4c4c;
    border-radius: 5px;
  }
  /* line 815, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.primary li .inpt-grey select {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 3px;
    border: 0px;
    background: url(../images/icons/gradGrey.jpg) repeat-x 0 bottom transparent;
    border-radius: 3px;
    outline: none;
  }

  /* line 834, partials/_header.scss */
  #logo {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
  }
  /* line 57, modules/_framework.scss */
  #logo:before {
    content: '';
    display: table;
    line-height: 0;
  }
  /* line 62, modules/_framework.scss */
  #logo:after {
    content: '';
    display: table;
    line-height: 0;
    clear: both;
  }
  /* line 68, modules/_framework.scss */
  #logo > * {
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
    margin-bottom: 2%;
    width: 100%;
  }
  /* line 78, modules/_framework.scss */
  #logo > *:nth-child(n) {
    clear: none;
  }
  /* line 83, modules/_framework.scss */
  #logo > *:nth-child(1n-0) {
    clear: both;
  }
  /* line 88, modules/_framework.scss */
  #logo > *:nth-child(1n) {
    float: right;
    margin-right: 0;
  }
  /* line 94, modules/_framework.scss */
  #logo > *:nth-last-child(-n + 1) {
    margin-bottom: 0;
  }
  /* line 836, partials/_header.scss */
  #logo a {
    width: 100% !important;
  }

  /* line 840, partials/_header.scss */
  #header-right {
    display: none;
  }
}
/* ================================
 * Small Tablet
 * ================================ */
@media (max-width: 600px) {
  /* line 849, partials/_header.scss */
  #site-header {
    background-color: #00539b;
  }
  /* line 851, partials/_header.scss */
  #site-header #break-news {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    background: #fcdf20;
    /*box-shadow: 0 10px 10px -10px $black;*/
    padding-bottom: 10px;
  }
  /* line 110, modules/_framework.scss */
  #site-header #break-news:before {
    content: '';
    display: table;
    line-height: 0;
  }
  /* line 115, modules/_framework.scss */
  #site-header #break-news:after {
    content: '';
    display: table;
    line-height: 0;
    clear: both;
  }
  /* line 856, partials/_header.scss */
  #site-header #break-news .bnews-left {
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 10px;
  }
  /* line 139, modules/_framework.scss */
  #site-header #break-news .bnews-left:last-child {
    margin-right: 0;
  }
  /* line 143, modules/_framework.scss */
  #site-header #break-news .bnews-left:last-child {
    float: right;
  }
  /* line 860, partials/_header.scss */
  #site-header #break-news .bnews-left .bnews-label {
    border-right: 1px solid black;
    text-transform: uppercase;
    font-size: 15px;
    color: #e51b24;
    float: left;
    line-height: 1;
    padding-right: 20px;
    margin-right: 20px;
  }
  /* line 869, partials/_header.scss */
  #site-header #break-news .bnews-left .bnews-label strong {
    color: black;
    font-size: 27px;
    display: block;
  }
  /* line 875, partials/_header.scss */
  #site-header #break-news .bnews-left .bnews-info {
    font-size: 14px;
    color: black;
    line-height: 1.1;
    display: none;
  }
  /* line 880, partials/_header.scss */
  #site-header #break-news .bnews-left .bnews-info strong {
    font-size: 14px;
    display: block;
    text-transform: uppercase;
    font-weight: normal;
  }
  /* line 887, partials/_header.scss */
  #site-header #break-news .bnews-left .bnews-abbr {
    font-size: 14px;
    color: black;
    line-height: 1;
    text-transform: uppercase;
    display: block;
  }
  /* line 893, partials/_header.scss */
  #site-header #break-news .bnews-left .bnews-abbr a {
    display: block;
  }
  /* line 898, partials/_header.scss */
  #site-header #break-news .bnews-right {
    display: none;
  }

  /* line 904, partials/_header.scss */
  #logo {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 33px 20px 0;
  }
  /* line 57, modules/_framework.scss */
  #logo:before {
    content: '';
    display: table;
    line-height: 0;
  }
  /* line 62, modules/_framework.scss */
  #logo:after {
    content: '';
    display: table;
    line-height: 0;
    clear: both;
  }
  /* line 68, modules/_framework.scss */
  #logo > * {
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
    margin-bottom: 2%;
    width: 100%;
  }
  /* line 78, modules/_framework.scss */
  #logo > *:nth-child(n) {
    clear: none;
  }
  /* line 83, modules/_framework.scss */
  #logo > *:nth-child(1n-0) {
    clear: both;
  }
  /* line 88, modules/_framework.scss */
  #logo > *:nth-child(1n) {
    float: right;
    margin-right: 0;
  }
  /* line 94, modules/_framework.scss */
  #logo > *:nth-last-child(-n + 1) {
    margin-bottom: 0;
  }

  /* line 909, partials/_header.scss */
  #header-right {
    display: none;
  }
}
/* ================================
 * Mobile
 * ================================ */
@media (max-width: 400px) {
  /* line 918, partials/_header.scss */
  #site-header {
    background-color: #00539b;
  }
  /* line 920, partials/_header.scss */
  #site-header #break-news {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    background: #fcdf20;
    box-shadow: 0 10px 10px -10px black;
    padding-bottom: 10px;
  }
  /* line 110, modules/_framework.scss */
  #site-header #break-news:before {
    content: '';
    display: table;
    line-height: 0;
  }
  /* line 115, modules/_framework.scss */
  #site-header #break-news:after {
    content: '';
    display: table;
    line-height: 0;
    clear: both;
  }
  /* line 925, partials/_header.scss */
  #site-header #break-news .bnews-left {
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 10px;
  }
  /* line 139, modules/_framework.scss */
  #site-header #break-news .bnews-left:last-child {
    margin-right: 0;
  }
  /* line 143, modules/_framework.scss */
  #site-header #break-news .bnews-left:last-child {
    float: right;
  }
  /* line 929, partials/_header.scss */
  #site-header #break-news .bnews-left .bnews-label {
    border-right: 1px solid black;
    text-transform: uppercase;
    font-size: 15px;
    color: #e51b24;
    float: left;
    line-height: 1;
    padding-right: 15px;
    margin-right: 15px;
  }
  /* line 938, partials/_header.scss */
  #site-header #break-news .bnews-left .bnews-label strong {
    color: black;
    font-size: 27px;
    display: block;
  }
  /* line 944, partials/_header.scss */
  #site-header #break-news .bnews-left .bnews-info {
    font-size: 14px;
    color: black;
    line-height: 1.1;
    display: none;
  }
  /* line 949, partials/_header.scss */
  #site-header #break-news .bnews-left .bnews-info strong {
    font-size: 14px;
    display: block;
    text-transform: uppercase;
    font-weight: normal;
  }
  /* line 956, partials/_header.scss */
  #site-header #break-news .bnews-left .bnews-abbr {
    font-size: 14px;
    color: black;
    line-height: 1;
    text-transform: uppercase;
    display: block;
  }
  /* line 962, partials/_header.scss */
  #site-header #break-news .bnews-left .bnews-abbr a {
    display: block;
  }
  /* line 967, partials/_header.scss */
  #site-header #break-news .bnews-right {
    display: none;
  }
  /* line 972, partials/_header.scss */
  #site-header #site-navigation .grid-container {
    padding: 0;
  }
  /* line 975, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu {
    margin-left: 0;
  }
  /* line 977, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu .split-nav {
    font-size: 18px;
    color: white;
    padding: 0;
    overflow: hidden;
  }
  /* line 982, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu .split-nav .split-nav-left {
    width: 50%;
    float: left;
    text-align: center;
    position: relative;
    color: transparent;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  /* line 983, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu .split-nav .split-nav-left .mopen {
    background: url(../images/icons/menuOpen.png) no-repeat center center scroll;
    width: 36px;
    height: 19px;
    display: block;
    position: absolute;
    left: 40%;
    top: 10px;
  }
  /* line 999, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu .split-nav .split-nav-left:hover {
    background: url(../images/backgrounds/splitBg.jpg) repeat-x 0 bottom scroll;
  }
  /* line 1003, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu .split-nav .split-nav-right {
    width: 49.6%;
    float: right;
    text-align: center;
    position: relative;
    border-left: 1px solid #4a4a4a;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  /* line 1004, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu .split-nav .split-nav-right .arr-rgt {
    background: url(../images/icons/arrowRight.png) no-repeat center center scroll;
    width: 21px;
    height: 14px;
    display: block;
    position: absolute;
    right: 6%;
    top: 14px;
  }
  /* line 1020, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu .split-nav .split-nav-right:hover {
    background: url(../images/backgrounds/splitBg.jpg) repeat-x 0 bottom scroll;
  }
  /* line 1025, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu .mobile-nav {
    font-size: 18px;
    color: white;
    padding: 10px;
    background-position: 60% center;
  }
  /* line 1031, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.primary {
    position: absolute;
    border-top: 3px solid #e51b24;
    box-shadow: 0 10px 10px -10px black;
  }
  /* line 1035, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.primary .arr-none {
    background-image: none;
    background-color: white;
    padding: 2%;
  }
  /* line 1039, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.primary .arr-none:hover {
    background-color: white;
  }
  /* line 1043, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.primary li {
    border-bottom: 1px solid #dadada;
    background-color: white;
    font-size: 18px;
    background-image: url(../images/icons/arrowR.png);
    background-position: 95% center;
    background-repeat: no-repeat;
  }
  /* line 1050, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.primary li a {
    color: black !important;
    padding: 10px !important;
  }
  /* line 1054, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.primary li:hover {
    background-color: #d1d1d1;
  }
  /* line 1057, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.primary li .red-bot {
    border-bottom: none;
    background-image: none;
    height: auto;
  }
  /* line 1062, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.primary li .rst-normal {
    display: block;
    text-align: center;
  }
  /* line 1066, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.primary li .srch-grey {
    background: url(../images/icons/gradGrey.jpg) repeat-x 0 bottom;
    border: 1px solid #4c4c4c;
    border-radius: 5px;
    position: relative;
  }
  /* line 1071, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.primary li .srch-grey .srch-txt {
    border: none;
    position: absolute;
    left: 10px;
    top: 3px;
    font-size: 14px;
    color: #090909;
    font-weight: normal;
    font-family: Arial, Helvetica, sans-serif;
    background-color: transparent;
  }
  /* line 1082, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.primary li .srch-grey .lens {
    background: url(../images/icons/searchdrp.png) no-repeat center right;
    border: none;
    width: 23px;
    height: 25px;
    position: absolute;
    right: 0;
  }
  /* line 1091, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.primary li .inpt-grey {
    font-size: 14px;
    color: #090909;
    font-weight: normal;
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
    padding-left: 10px;
    text-align: left;
    height: 25px;
    /*background: url(../images/icons/selectM.png) no-repeat center right;*/
  }
  /* line 1101, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.primary li .inpt-grey select {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 3px;
    border: 0px;
    background: url(../images/icons/gradGrey.jpg) repeat-x 0 bottom transparent;
    border-radius: 3px;
    outline: none;
  }

  /* line 1121, partials/_header.scss */
  #logo {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 33px 20px 0;
  }
  /* line 57, modules/_framework.scss */
  #logo:before {
    content: '';
    display: table;
    line-height: 0;
  }
  /* line 62, modules/_framework.scss */
  #logo:after {
    content: '';
    display: table;
    line-height: 0;
    clear: both;
  }
  /* line 68, modules/_framework.scss */
  #logo > * {
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
    margin-bottom: 2%;
    width: 100%;
  }
  /* line 78, modules/_framework.scss */
  #logo > *:nth-child(n) {
    clear: none;
  }
  /* line 83, modules/_framework.scss */
  #logo > *:nth-child(1n-0) {
    clear: both;
  }
  /* line 88, modules/_framework.scss */
  #logo > *:nth-child(1n) {
    float: right;
    margin-right: 0;
  }
  /* line 94, modules/_framework.scss */
  #logo > *:nth-last-child(-n + 1) {
    margin-bottom: 0;
  }

  /* line 1125, partials/_header.scss */
  #header-right {
    display: none;
  }
}
/* ================================
 * Misc Media Screens - 4
 * ================================ */
@media (width: 480px) {
  /* line 1136, partials/_header.scss */
  #site-header #site-navigation .grid-container {
    padding: 0;
  }
  /* line 1140, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu .mobile-nav {
    background-position: 40% center !important;
  }
  /* line 1144, partials/_header.scss */
  #site-header #site-navigation .grid-container .main #cbp-hrmenu ul.primary .arr-none {
    padding: 2%;
  }
}
/* ================================
 * Navigation Styles
 * ================================ */
/* line 5, partials/_nav.scss */
#site-navigation {
  background-color: black;
  border-box-shadow: 0 10px 10px -10px black;
  border-bottom-weight: 3px;
  border-bottom-style: solid;
  border-bottom-color: #e51b24;
}
/* line 15, partials/_nav.scss */
#site-navigation h1 {
  margin: 0;
  color: white;
}

/* Mega Menu */
/* line 22, partials/_nav.scss */
.mega-menu {
  position: relative;
}

/* line 25, partials/_nav.scss */
.mega-col1 {
  width: 256px;
  border-right: 1px solid #6c6c6c;
  min-height: 325px;
}

/* line 30, partials/_nav.scss */
.mega-col2 {
  width: 265px;
  border-right: 1px solid #6c6c6c;
  min-height: 325px;
  margin-left: 25px;
}

/* line 36, partials/_nav.scss */
.mega-col3 {
  width: 260px;
  min-height: 325px;
  margin-left: 15px;
}

/* line 44, partials/_nav.scss */
.mega-col1,
.mega-col2,
.mega-col3 {
  float: left;
}

/* line 49, partials/_nav.scss */
.mega-col1 li,
.mega-col2 li,
.mega-col3 li {
  float: none;
  display: block !important;
  padding: 5px 0 !important;
}

/* line 57, partials/_nav.scss */
.mega-col1 li a,
.mega-col2 li a,
.mega-col3 li a {
  border-bottom: 1px solid white;
  font-size: 14px !important;
  color: #231f20  !important;
  font-weight: bold;
  font-family: "gotham_bookregular", Arial, Helvetica, sans-serif;
  line-height: 1;
}
/* line 65, partials/_nav.scss */
.mega-col1 li a:hover,
.mega-col2 li a:hover,
.mega-col3 li a:hover {
  border-bottom-color: #d7d6d6;
  background: url(../images/icons/mega-arrow.png) no-repeat scroll right center transparent;
  padding-right: 10px;
}

/* ================================
 * Misc Media Screens - 1
 * ================================ */
@media (width: 900px) {
  /* line 77, partials/_nav.scss */
  #site-navigation #cbp-hrmenu ul {
    height: 83px;
  }
}
/* ================================
 * Banner Styles
 * ================================ */
/* line 11, partials/_banner.scss */
#site-banner {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background-color: #333333;
  /*box-shadow: inset 0 10px 10px -10px $black;*/
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: #e51b24;
}
/* line 25, partials/_banner.scss */
#site-banner figure img {
  vertical-align: top;
}
/* line 30, partials/_banner.scss */
#site-banner #slide-wrapper .rslides_container {
  max-width: 1280px;
  margin: 0 auto;
}
/* line 34, partials/_banner.scss */
#site-banner #slide-wrapper .rslides_container ul li {
  /* for banner image height */
  width: 1596px;
  height: 485px;
}
/* line 38, partials/_banner.scss */
#site-banner #slide-wrapper .rslides_container ul li img {
  height: auto;
  /*height: 485px;*/
}
/* line 42, partials/_banner.scss */
#site-banner #slide-wrapper .rslides_container ul li span {
  background: url("../images/backgrounds/sliderShadow.png") repeat-x scroll 0 0 transparent;
  position: absolute;
  z-index: 1;
  width: 100%;
  display: block;
}
/* line 48, partials/_banner.scss */
#site-banner #slide-wrapper .rslides_container .news-alerts {
  display: block;
  position: absolute;
  left: 13%;
  bottom: 75px;
  width: 27%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 999;
  padding: 20px;
  max-height: 350px;
  overflow: auto;
}
/* line 61, partials/_banner.scss */
#site-banner #slide-wrapper .rslides_container .news-alerts .news-box .news-head {
  position: absolute;
  top: 10px;
  left: 20px;
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: #939393;
  height: 40px;
  width: 45%;
}
/* line 75, partials/_banner.scss */
#site-banner #slide-wrapper .rslides_container .news-alerts .news-box .news-head h2 {
  float: left;
  color: #00539b;
  font-size: 20px;
  font-weight: normal;
  margin: 5px 0 0;
  cursor: pointer;
}
/* line 83, partials/_banner.scss */
#site-banner #slide-wrapper .rslides_container .news-alerts .news-box .news-head.active h2 {
  padding: 0 .25em;
  background-color: #ddd;
}
/* line 87, partials/_banner.scss */
#site-banner #slide-wrapper .rslides_container .news-alerts .news-box .news-head span {
  float: right;
  margin-top: 15px;
  margin-right: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-style: italic;
}
/* line 94, partials/_banner.scss */
#site-banner #slide-wrapper .rslides_container .news-alerts .news-box .news-head span a {
  color: #e51b24;
}
/* line 99, partials/_banner.scss */
#site-banner #slide-wrapper .rslides_container .news-alerts .news-box .news-articles {
  display: none;
  padding-top: 10px;
  margin-top: 30px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #939393;
}
/* line 111, partials/_banner.scss */
#site-banner #slide-wrapper .rslides_container .news-alerts .news-box .news-articles.active {
  display: block;
}
/* line 114, partials/_banner.scss */
#site-banner #slide-wrapper .rslides_container .news-alerts .news-box .news-articles p {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.2;
}
/* line 118, partials/_banner.scss */
#site-banner #slide-wrapper .rslides_container .news-alerts .news-box .news-articles p strong {
  display: block;
}
/* line 121, partials/_banner.scss */
#site-banner #slide-wrapper .rslides_container .news-alerts .news-box .news-articles p span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-style: italic;
  font-weight: bold;
}
/* line 126, partials/_banner.scss */
#site-banner #slide-wrapper .rslides_container .news-alerts .news-box .news-articles p span a {
  color: #e51b24;
  text-decoration: none;
  display: block;
}
/* line 138, partials/_banner.scss */
#site-banner #slide-wrapper .rslides_container .news-alerts .alert-box .alert-head {
  position: absolute;
  top: 10px;
  left: 53%;
  height: 40px;
  width: 45%;
}
/* line 145, partials/_banner.scss */
#site-banner #slide-wrapper .rslides_container .news-alerts .alert-box .alert-head h2 {
  float: left;
  color: #00539b;
  font-size: 20px;
  font-weight: normal;
  margin: 5px 0 0;
  cursor: pointer;
}
/* line 153, partials/_banner.scss */
#site-banner #slide-wrapper .rslides_container .news-alerts .alert-box .alert-head.active h2 {
  padding: 0 .25em;
  background: #ddd;
}
/* line 157, partials/_banner.scss */
#site-banner #slide-wrapper .rslides_container .news-alerts .alert-box .alert-head span {
  float: right;
  margin-top: 15px;
  margin-right: 15px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-style: italic;
}
/* line 164, partials/_banner.scss */
#site-banner #slide-wrapper .rslides_container .news-alerts .alert-box .alert-head span a {
  color: #e51b24;
}
/* line 169, partials/_banner.scss */
#site-banner #slide-wrapper .rslides_container .news-alerts .alert-box .alert-articles {
  display: none;
  padding-top: 10px;
  margin-top: 30px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #939393;
}
/* line 181, partials/_banner.scss */
#site-banner #slide-wrapper .rslides_container .news-alerts .alert-box .alert-articles.active {
  display: block;
}
/* line 184, partials/_banner.scss */
#site-banner #slide-wrapper .rslides_container .news-alerts .alert-box .alert-articles p {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.2;
}
/* line 188, partials/_banner.scss */
#site-banner #slide-wrapper .rslides_container .news-alerts .alert-box .alert-articles p strong {
  display: block;
}
/* line 191, partials/_banner.scss */
#site-banner #slide-wrapper .rslides_container .news-alerts .alert-box .alert-articles p span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-style: italic;
  font-weight: bold;
}
/* line 196, partials/_banner.scss */
#site-banner #slide-wrapper .rslides_container .news-alerts .alert-box .alert-articles p span a {
  color: #e51b24;
  text-decoration: none;
  display: block;
}
/* line 206, partials/_banner.scss */
#site-banner #slide-wrapper .rslides_container .caption {
  display: block;
  position: absolute;
  right: 32%;
  bottom: 80px;
  width: 26%;
  padding: 10px 20px 20px;
  background-color: rgba(255, 255, 255, 0.9);
}
/* line 214, partials/_banner.scss */
#site-banner #slide-wrapper .rslides_container .caption h2 {
  color: #00539b;
  margin: 0;
  font-size: 24px;
  font-weight: normal;
}
/* line 220, partials/_banner.scss */
#site-banner #slide-wrapper .rslides_container .caption p {
  margin: 0;
  line-height: 1.2;
  font-size: 14px;
}
/* line 153, partials/_base.scss */
#site-banner #slide-wrapper .rslides_container .caption p a {
  font-size: 14px;
  color: #e51b24;
  font-weight: bold;
  font-style: italic;
  text-decoration: none;
}
/* line 225, partials/_banner.scss */
#site-banner #slide-wrapper .rslides_container .caption p a {
  font-size: 12px;
}

 /* ================================
 * Desktop view - 1024px

 * ================================ */
@media (max-width: 1125px) {
  /* line 241, partials/_banner.scss */
  #site-banner #slide-wrapper .rslides_container .caption {
    right: 45%;
    width: 22%;
  }
}
/* ================================
* Large Tablet
* ================================ */
@media (max-width: 800px) {
  /* line 259, partials/_banner.scss */
  #site-banner #slide-wrapper .rslides_container ul li {
    width: 100%;
    height: auto;
  }
  /* line 262, partials/_banner.scss */
  #site-banner #slide-wrapper .rslides_container ul li img {
    height: auto;
  }
  /* line 267, partials/_banner.scss */
  #site-banner #slide-wrapper .rslides_container .caption {
    display: none !important;
  }
  /* line 270, partials/_banner.scss */
  #site-banner #slide-wrapper .rslides_container .news-alerts {
    display: none;
  }
  /* line 273, partials/_banner.scss */
  #site-banner #slide-wrapper .rslides_container .centered-btns_tabs {
    display: none;
  }
}
/* ================================
 * Small Tablet
 * ================================ */
@media (max-width: 600px) {
  /* line 289, partials/_banner.scss */
  #site-banner #slide-wrapper .rslides_container .centered-btns_tabs {
    display: none;
  }
  /* line 292, partials/_banner.scss */
  #site-banner #slide-wrapper .rslides_container p {
    display: none;
  }
}
/* ================================
 * Mobile
 * ================================ */
@media (max-width: 400px) {
  /* line 308, partials/_banner.scss */
  #site-banner #slide-wrapper .rslides_container .centered-btns_tabs {
    display: none;
  }
  /* line 311, partials/_banner.scss */
  #site-banner #slide-wrapper .rslides_container p {
    display: none;
  }
  /* line 314, partials/_banner.scss */
  #site-banner #slide-wrapper .rslides_container .centered-btns_nav {
    background: url(../images/icons/sthemes.png) no-repeat left top transparent;
  }
  /* line 317, partials/_banner.scss */
  #site-banner #slide-wrapper .rslides_container .centered-btns_nav.next {
    left: auto;
    background-position: right top;
    right: 5%;
  }
}
/* ================================
 * Misc Media Screens - 1
 * ================================ */
@media (max-width: 900px) {
  /* line 334, partials/_banner.scss */
  #site-banner #slide-wrapper .rslides_container .caption {
    display: block;
    right: 52% !important;
    width: 19% !important;
  }
  /* line 339, partials/_banner.scss */
  #site-banner #slide-wrapper .rslides_container .news-alerts {
    width: 29%;
  }
  /* line 342, partials/_banner.scss */
  #site-banner #slide-wrapper .rslides_container .news-alerts .alert-box .alert-head {
    /*left: 160px;*/
    left: 55%;
  }
}
/* ================================
 * Misc Media Screens - 2
 * ================================ */
@media (width: 980px) {
  /* line 363, partials/_banner.scss */
  #site-banner #slide-wrapper .rslides_container ul li {
    width: 1596px;
    height: 485px;
  }
  /* line 366, partials/_banner.scss */
  #site-banner #slide-wrapper .rslides_container ul li img {
    height: auto;
  }
  /* line 371, partials/_banner.scss */
  #site-banner #slide-wrapper .rslides_container .caption {
    display: block;
    right: 47% !important;
    width: 20% !important;
  }
  /* line 376, partials/_banner.scss */
  #site-banner #slide-wrapper .rslides_container .centered-btns_tabs {
    display: block;
  }
  /* line 379, partials/_banner.scss */
  #site-banner #slide-wrapper .rslides_container p {
    display: block;
  }
  /* line 382, partials/_banner.scss */
  #site-banner #slide-wrapper .rslides_container .news-alerts {
    display: block;
    width: 29%;
  }
  /* line 386, partials/_banner.scss */
  #site-banner #slide-wrapper .rslides_container .news-alerts .alert-box .alert-head {
    left: 178px;
  }
}
/* ================================
 * Misc Media Screens - 3
 * ================================ */
@media (width: 1024px) {
  /* line 406, partials/_banner.scss */
  #site-banner #slide-wrapper .rslides_container ul li {
    width: 1596px;
    height: 485px;
  }
  /* line 409, partials/_banner.scss */
  #site-banner #slide-wrapper .rslides_container ul li img {
    height: auto;
  }
  /* line 414, partials/_banner.scss */
  #site-banner #slide-wrapper .rslides_container .caption {
    /*display: block;
    right: 44%;
    width: 20%;*/
  }
  /* line 419, partials/_banner.scss */
  #site-banner #slide-wrapper .rslides_container .centered-btns_tabs {
    display: block;
  }
  /* line 422, partials/_banner.scss */
  #site-banner #slide-wrapper .rslides_container p {
    display: block;
  }
  /* line 425, partials/_banner.scss */
  #site-banner #slide-wrapper .rslides_container .news-alerts {
    display: block;
    width: 29%;
  }
  /* line 429, partials/_banner.scss */
  #site-banner #slide-wrapper .rslides_container .news-alerts .alert-box .alert-head {
    left: 178px;
  }
}
/* ================================
 * Main Content Styles
 * ================================ */
/* line 12, partials/_maincontent.scss */
#site-body {
  /*box-shadow: inset 0 10px 10px -10px $black;*/
  position: relative;
  z-index: 0;
  overflow: hidden;
}
/* line 17, partials/_maincontent.scss */
#site-body .uswatermark {
  background: url("../images/backgrounds/usWatermark.png") no-repeat scroll center -52px transparent;
}
/* line 20, partials/_maincontent.scss */
#site-body .shad-tp {
  background: url("../images/backgrounds/sliderShadow.png") repeat-x scroll 0 0 transparent;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 10px;
  display: block;
}
/* line 25, partials/_maincontent.scss */
#site-body #main-content .grid-container .us-star {
  height: 84px;
  width: 100%;
  background: url("../images/backgrounds/usStar.png") no-repeat scroll center center transparent;
}
/* line 30, partials/_maincontent.scss */
#site-body #main-content .grid-container .gen-box {
  display: none;
}
/* line 33, partials/_maincontent.scss */
#site-body #main-content .grid-container .news-alert-container {
  display: none;
}
/* line 36, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container {
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  overflow: hidden;
  padding: 0 5px;
}
/* line 110, modules/_framework.scss */
#site-body #main-content .grid-container .box-container:before {
  content: '';
  display: table;
  line-height: 0;
}
/* line 115, modules/_framework.scss */
#site-body #main-content .grid-container .box-container:after {
  content: '';
  display: table;
  line-height: 0;
  clear: both;
}
/* line 40, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box1 {
  background-color: #444444;
  /* Needed for IEs */
  -moz-box-shadow: 4px 5px 3px rgba(68, 68, 68, 0.5);
  -webkit-box-shadow: 4px 5px 3px rgba(68, 68, 68, 0.5);
  box-shadow: 4px 5px 3px rgba(68, 68, 68, 0.5);
  	                    /*filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius=3,MakeShadow=true,ShadowOpacity=0.30);
  -ms-filter: "progid:DXImageTransform.Microsoft.Blur(PixelRadius=3,MakeShadow=true,ShadowOpacity=0.30)";
  zoom: 1;
  
  .content{
  	position: relative; /* This protects the inner element from being blurred */
  /*	padding: 100px;
  	background-color: #DDD;
  }*/
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 36.25%;
  overflow: hidden;
  margin-bottom: 35px;
}
/* line 139, modules/_framework.scss */
#site-body #main-content .grid-container .box-container #box1:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
#site-body #main-content .grid-container .box-container #box1:last-child {
  float: right;
}
/* line 45, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box1 .box-head {
  background-color: #747474;
  position: relative;
  color: white;
  padding: 0 2.44141%;
}
/* line 47, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box1 .box-head h2 {
  margin: 0;
  font-size: 18px;
  padding: 2px 0;
  height: 28px;
}
/* line 111, partials/_base.scss */
#site-body #main-content .grid-container .box-container #box1 .box-head h2 a {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 16px;
  font-style: italic;
  color: white;
  margin-left: 10px;
}
/* line 49, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box1 .box-head h2 a {
  font-size: 12px;
}
/* line 53, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box1 .box-head span {
  position: absolute;
  width: 49px;
  height: 32px;
  background: url("../images/icons/starRedBg.jpg") no-repeat scroll 0 0 #e51b24;
  right: 0;
  top: 0;
}
/* line 57, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box1 .box-body {
  min-height: 316px;
  background-color: white;
  padding: 15px 10px 0;
  overflow: hidden;
}
/* line 60, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box1 .box-body .events {
  float: left;
  width: 100%;
}
/* line 63, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box1 .box-body .events figure {
  width: 42%;
  float: left;
  margin-right: 2%;
}
/* line 67, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box1 .box-body .events figure img {
  border: 3px solid #5b5b5b;
}
/* line 71, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box1 .box-body .events p {
  float: left;
  padding-left: 3%;
  margin: 15px 0;
  font-size: 12px;
  line-height: 1.2;
  width: 53%;
  margin: 0 0 30px;
  color: #333333;
}
/* line 139, partials/_base.scss */
#site-body #main-content .grid-container .box-container #box1 .box-body .events p strong {
  font-weight: bold;
  display: block;
  font-size: 14px;
}
/* line 144, partials/_base.scss */
#site-body #main-content .grid-container .box-container #box1 .box-body .events p a {
  font-size: 12px;
  color: #e51b24;
  font-weight: bold;
  font-style: italic;
  text-decoration: none;
}
/* line 76, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box1 .box-body .events p strong {
  color: #464646;
}
/* line 83, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box2 {
  background-color: #444444;
  /* Needed for IEs */
  -moz-box-shadow: 4px 5px 3px rgba(68, 68, 68, 0.5);
  -webkit-box-shadow: 4px 5px 3px rgba(68, 68, 68, 0.5);
  box-shadow: 4px 5px 3px rgba(68, 68, 68, 0.5);
  	                    /*filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius=3,MakeShadow=true,ShadowOpacity=0.30);
  -ms-filter: "progid:DXImageTransform.Microsoft.Blur(PixelRadius=3,MakeShadow=true,ShadowOpacity=0.30)";
  zoom: 1;
  
  .content{
  	position: relative; /* This protects the inner element from being blurred */
  /*	padding: 100px;
  	background-color: #DDD;
  }*/
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 29.875%;
  overflow: hidden;
  margin-bottom: 35px;
}
/* line 139, modules/_framework.scss */
#site-body #main-content .grid-container .box-container #box2:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
#site-body #main-content .grid-container .box-container #box2:last-child {
  float: right;
}
/* line 88, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box2 .box-head {
  background-color: #747474;
  position: relative;
  color: white;
  padding: 0 2.44141%;
}
/* line 90, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box2 .box-head h2 {
  margin: 0;
  font-size: 18px;
  padding: 2px 0;
  height: 28px;
}
/* line 111, partials/_base.scss */
#site-body #main-content .grid-container .box-container #box2 .box-head h2 a {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 16px;
  font-style: italic;
  color: white;
  margin-left: 10px;
}
/* line 93, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box2 .box-head span {
  position: absolute;
  width: 49px;
  height: 32px;
  background: url("../images/icons/starRedBg.jpg") no-repeat scroll 0 0 #e51b24;
  right: 0;
  top: 0;
}
/* line 97, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box2 .box-body {
  min-height: 316px;
  background-color: white;
  padding: 15px 10px 0;
  overflow: hidden;
}
/* line 100, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box2 .box-body .myapp {
  float: left;
  width: 100%;
}
/* line 103, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box2 .box-body .myapp .tiny {
  display: none;
}
/* line 106, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box2 .box-body .myapp .large {
  display: block;
}
/* line 109, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box2 .box-body .myapp figure {
  width: 100%;
  float: left;
  margin-bottom: 15px;
  text-align: center;
}
/* line 115, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box2 .box-body .myapp p {
  float: left;
  padding-left: 3%;
  margin: 15px 0;
  font-size: 12px;
  line-height: 1.2;
  padding-left: 0;
  margin: 0 0 15px;
}
/* line 139, partials/_base.scss */
#site-body #main-content .grid-container .box-container #box2 .box-body .myapp p strong {
  font-weight: bold;
  display: block;
  font-size: 14px;
}
/* line 144, partials/_base.scss */
#site-body #main-content .grid-container .box-container #box2 .box-body .myapp p a {
  font-size: 12px;
  color: #e51b24;
  font-weight: bold;
  font-style: italic;
  text-decoration: none;
}
/* line 123, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box3 {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 29.875%;
  float: left;
}
/* line 139, modules/_framework.scss */
#site-body #main-content .grid-container .box-container #box3:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
#site-body #main-content .grid-container .box-container #box3:last-child {
  float: right;
}
/* line 126, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box3 .box3a {
  background-color: #444444;
  /* Needed for IEs */
  -moz-box-shadow: 4px 5px 3px rgba(68, 68, 68, 0.5);
  -webkit-box-shadow: 4px 5px 3px rgba(68, 68, 68, 0.5);
  box-shadow: 4px 5px 3px rgba(68, 68, 68, 0.5);
  	                    /*filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius=3,MakeShadow=true,ShadowOpacity=0.30);
  -ms-filter: "progid:DXImageTransform.Microsoft.Blur(PixelRadius=3,MakeShadow=true,ShadowOpacity=0.30)";
  zoom: 1;
  
  .content{
  	position: relative; /* This protects the inner element from being blurred */
  /*	padding: 100px;
  	background-color: #DDD;
  }*/
  background-color: #9cf;
  margin-bottom: 32px;
  width: 98%;
}
/* line 131, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box3 .box3a .box-head {
  background-color: #747474;
  position: relative;
  color: white;
  padding: 0 2.44141%;
}
/* line 133, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box3 .box3a .box-head h2 {
  margin: 0;
  font-size: 18px;
  padding: 2px 0;
  height: 28px;
}
/* line 111, partials/_base.scss */
#site-body #main-content .grid-container .box-container #box3 .box3a .box-head h2 a {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 16px;
  font-style: italic;
  color: white;
  margin-left: 10px;
}
/* line 136, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box3 .box3a .box-head span {
  position: absolute;
  width: 49px;
  height: 32px;
  background: url("../images/icons/starRedBg.jpg") no-repeat scroll 0 0 #e51b24;
  right: 0;
  top: 0;
}
/* line 140, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box3 .box3a .box-body {
  min-height: 100px;
  background-color: white;
  padding: 15px 10px 0;
  overflow: hidden;
}
/* line 143, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box3 .box3a .box-body .box3a-info {
  float: left;
  width: 100%;
}
/* line 146, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box3 .box3a .box-body .box3a-info .tiny {
  display: none;
}
/* line 149, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box3 .box3a .box-body .box3a-info .large {
  display: block;
}
/* line 152, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box3 .box3a .box-body .box3a-info figure {
  width: 100%;
  float: left;
  margin-bottom: 15px;
  text-align: center;
}
/* line 158, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box3 .box3a .box-body .box3a-info p {
  float: left;
  padding-left: 3%;
  margin: 15px 0;
  font-size: 12px;
  line-height: 1.2;
  padding-left: 0;
  margin: 0 0 15px;
}
/* line 139, partials/_base.scss */
#site-body #main-content .grid-container .box-container #box3 .box3a .box-body .box3a-info p strong {
  font-weight: bold;
  display: block;
  font-size: 14px;
}
/* line 144, partials/_base.scss */
#site-body #main-content .grid-container .box-container #box3 .box3a .box-body .box3a-info p a {
  font-size: 12px;
  color: #e51b24;
  font-weight: bold;
  font-style: italic;
  text-decoration: none;
}
/* line 166, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box3 .box3b {
  background-color: #444444;
  /* Needed for IEs */
  -moz-box-shadow: 4px 5px 3px rgba(68, 68, 68, 0.5);
  -webkit-box-shadow: 4px 5px 3px rgba(68, 68, 68, 0.5);
  box-shadow: 4px 5px 3px rgba(68, 68, 68, 0.5);
  	                    /*filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius=3,MakeShadow=true,ShadowOpacity=0.30);
  -ms-filter: "progid:DXImageTransform.Microsoft.Blur(PixelRadius=3,MakeShadow=true,ShadowOpacity=0.30)";
  zoom: 1;
  
  .content{
  	position: relative; /* This protects the inner element from being blurred */
  /*	padding: 100px;
  	background-color: #DDD;
  }*/
  background-color: #999;
  margin-bottom: 35px;
  width: 98%;
}
/* line 171, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box3 .box3b .box-head {
  background-color: #747474;
  position: relative;
  color: white;
  padding: 0 2.44141%;
}
/* line 173, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box3 .box3b .box-head h2 {
  margin: 0;
  font-size: 18px;
  padding: 2px 0;
  height: 28px;
}
/* line 111, partials/_base.scss */
#site-body #main-content .grid-container .box-container #box3 .box3b .box-head h2 a {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 16px;
  font-style: italic;
  color: white;
  margin-left: 10px;
}
/* line 176, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box3 .box3b .box-head span {
  position: absolute;
  width: 49px;
  height: 32px;
  background: url("../images/icons/starRedBg.jpg") no-repeat scroll 0 0 #e51b24;
  right: 0;
  top: 0;
}
/* line 180, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box3 .box3b .box-body {
  min-height: 100px;
  background-color: white;
  padding: 15px 10px 0;
  overflow: hidden;
}
/* line 183, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box3 .box3b .box-body .box3b-info {
  float: left;
  width: 100%;
}
/* line 186, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box3 .box3b .box-body .box3b-info .tiny {
  display: none;
}
/* line 189, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box3 .box3b .box-body .box3b-info .large {
  display: block;
}
/* line 192, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box3 .box3b .box-body .box3b-info figure {
  width: 100%;
  float: left;
  margin-bottom: 15px;
  text-align: center;
}
/* line 198, partials/_maincontent.scss */
#site-body #main-content .grid-container .box-container #box3 .box3b .box-body .box3b-info p {
  float: left;
  padding-left: 3%;
  margin: 15px 0;
  font-size: 12px;
  line-height: 1.2;
  padding-left: 0;
  margin: 0 0 15px;
}
/* line 139, partials/_base.scss */
#site-body #main-content .grid-container .box-container #box3 .box3b .box-body .box3b-info p strong {
  font-weight: bold;
  display: block;
  font-size: 14px;
}
/* line 144, partials/_base.scss */
#site-body #main-content .grid-container .box-container #box3 .box3b .box-body .box3b-info p a {
  font-size: 12px;
  color: #e51b24;
  font-weight: bold;
  font-style: italic;
  text-decoration: none;
}

/* ================================
* Large Tablet
* ================================ */
@media (max-width: 800px) {
  /* line 216, partials/_maincontent.scss */
  #site-body {
    box-shadow: inset 0 10px 10px -10px black;
    position: relative;
    z-index: 0;
    overflow: hidden;
  }
  /* line 221, partials/_maincontent.scss */
  #site-body .shad-tp {
    display: none;
  }
  /* line 224, partials/_maincontent.scss */
  #site-body #main-content {
    background: none;
  }
  /* line 226, partials/_maincontent.scss */
  #site-body #main-content .grid-container {
    padding: 0;
  }
  /* line 228, partials/_maincontent.scss */
  #site-body #main-content .grid-container .us-star {
    height: 84px;
    width: 100%;
    background: url("../images/backgrounds/usStar.png") no-repeat scroll center center transparent;
  }
  /* line 233, partials/_maincontent.scss */
  #site-body #main-content .grid-container .gen-box {
    display: block;
    background-color: rgba(255, 255, 255, 0.9);
    position: relative;
    width: auto;
    top: 0;
    right: 0;
    padding: 2.44141%;
    margin-bottom: 10px;
  }
  /* line 243, partials/_maincontent.scss */
  #site-body #main-content .grid-container .gen-box h2 {
    color: #00539b;
    font-size: 20px;
  }
  /* line 247, partials/_maincontent.scss */
  #site-body #main-content .grid-container .gen-box p {
    line-height: 1.2;
    font-size: 16px;
  }
  /* line 153, partials/_base.scss */
  #site-body #main-content .grid-container .gen-box p a {
    font-size: 14px;
    color: #e51b24;
    font-weight: bold;
    font-style: italic;
    text-decoration: none;
  }
  /* line 253, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container {
    display: block;
    padding: 0;
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    background-color: transparent;
  }
  /* line 262, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .news-box {
    padding: 0 2.44141%;
    background-color: rgba(255, 255, 255, 0.9);
  }
  /* line 265, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .news-box .news-head {
    margin-top: 0;
    position: relative;
    top: 0;
    left: 0;
    height: 40px;
    width: 100%;
    border: none;
  }
  /* line 273, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .news-box .news-head h2 {
    float: left;
    color: #00539b;
    font-size: 20px;
    font-weight: normal;
    margin: 5px 0 0;
  }
  /* line 280, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .news-box .news-head span {
    float: right;
    margin-top: 10px;
    margin-right: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-style: italic;
  }
  /* line 287, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .news-box .news-head span a {
    color: #e51b24;
  }
  /* line 292, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .news-box .news-articles {
    display: block;
    padding-top: 10px;
    margin-top: 0;
    overflow: hidden;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #939393;
  }
  /* line 304, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .news-box .news-articles p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.2;
  }
  /* line 308, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .news-box .news-articles p strong {
    display: block;
  }
  /* line 311, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .news-box .news-articles p span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-style: italic;
  }
  /* line 153, partials/_base.scss */
  #site-body #main-content .grid-container .news-alert-container .news-box .news-articles p span a {
    font-size: 14px;
    color: #e51b24;
    font-weight: bold;
    font-style: italic;
    text-decoration: none;
  }
  /* line 320, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .alert-box {
    padding: 0 2.44141%;
    background-color: rgba(255, 255, 255, 0.9);
    position: relative;
    top: 10px;
  }
  /* line 325, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .alert-box .alert-head {
    position: relative;
    top: 0;
    left: 0;
    height: 40px;
    width: 100%;
  }
  /* line 331, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .alert-box .alert-head h2 {
    float: left;
    color: #00539b;
    font-size: 20px;
    font-weight: normal;
    margin: 5px 0 0;
  }
  /* line 338, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .alert-box .alert-head span {
    float: right;
    margin-top: 10px;
    margin-right: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-style: italic;
  }
  /* line 345, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .alert-box .alert-head span a {
    color: #e51b24;
  }
  /* line 350, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .alert-box .alert-articles {
    display: block;
    padding-top: 10px;
    margin-top: 0;
    overflow: hidden;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #939393;
  }
  /* line 362, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .alert-box .alert-articles p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.2;
  }
  /* line 366, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .alert-box .alert-articles p strong {
    display: block;
  }
  /* line 369, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .alert-box .alert-articles p span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-style: italic;
  }
  /* line 153, partials/_base.scss */
  #site-body #main-content .grid-container .news-alert-container .alert-box .alert-articles p span a {
    font-size: 14px;
    color: #e51b24;
    font-weight: bold;
    font-style: italic;
    text-decoration: none;
  }
  /* line 379, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container {
    overflow: hidden;
    padding: 0;
  }
  /* line 382, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box1 {
    width: 100%;
    float: none;
    box-shadow: none;
    margin-bottom: 0;
    margin-right: 0;
  }
  /* line 388, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box1 .box-head {
    padding: 0 2.44141%;
  }
  /* line 393, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box1 .box-body .events figure {
    width: 35%;
  }
  /* line 396, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box1 .box-body .events p {
    font-size: 16px;
  }
  /* line 398, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box1 .box-body .events p strong {
    font-size: 16px;
  }
  /* line 401, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box1 .box-body .events p a {
    font-size: 14px;
  }
  /* line 408, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box2 {
    width: 100%;
    float: none;
    background-color: #9cf;
    box-shadow: none;
    margin-bottom: 0;
    margin-right: 0;
  }
  /* line 415, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box2 .box-head {
    padding: 0 2.44141%;
  }
  /* line 420, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box2 .box-body .myapp .tiny {
    display: block;
  }
  /* line 423, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box2 .box-body .myapp .large {
    display: none;
  }
  /* line 426, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box2 .box-body .myapp p {
    font-size: 16px;
  }
  /* line 428, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box2 .box-body .myapp p strong {
    font-size: 16px;
  }
  /* line 431, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box2 .box-body .myapp p a {
    font-size: 14px;
  }
  /* line 438, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 {
    width: 100%;
    float: none;
    background-color: #9c6;
    box-shadow: none;
  }
  /* line 443, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3a {
    background-color: #9cf;
    margin-bottom: 0;
    box-shadow: none;
    width: 100%;
  }
  /* line 450, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3a .box-body .box3a-info .tiny {
    display: block;
  }
  /* line 453, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3a .box-body .box3a-info .large {
    display: none;
  }
  /* line 456, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3a .box-body .box3a-info p {
    font-size: 16px;
  }
  /* line 458, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3a .box-body .box3a-info p strong {
    margin: 15px 0;
  }
  /* line 461, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3a .box-body .box3a-info p a {
    font-size: 14px;
  }
  /* line 468, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3b {
    background-color: #999;
    margin-bottom: 0;
    box-shadow: none;
    width: 100%;
  }
  /* line 475, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3b .box-body .box3b-info .tiny {
    display: block;
  }
  /* line 478, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3b .box-body .box3b-info .large {
    display: none;
  }
  /* line 481, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3b .box-body .box3b-info p {
    font-size: 16px;
  }
  /* line 483, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3b .box-body .box3b-info p strong {
    margin: 15px 0;
  }
  /* line 486, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3b .box-body .box3b-info p a {
    font-size: 14px;
  }
}
/* ================================
 * Small Tablet
 * ================================ */
@media (max-width: 600px) {
  /* line 506, partials/_maincontent.scss */
  #site-body {
    /*box-shadow: inset 0 10px 10px -10px $black;*/
    position: relative;
    z-index: 0;
    overflow: hidden;
  }
  /* line 511, partials/_maincontent.scss */
  #site-body #main-content {
    background: none;
  }
  /* line 513, partials/_maincontent.scss */
  #site-body #main-content .grid-container {
    padding: 0;
  }
  /* line 515, partials/_maincontent.scss */
  #site-body #main-content .grid-container .us-star {
    height: 84px;
    width: 100%;
    background: url("../images/backgrounds/usStar.png") no-repeat scroll center center transparent;
  }
  /* line 520, partials/_maincontent.scss */
  #site-body #main-content .grid-container .gen-box {
    display: block;
    background-color: rgba(255, 255, 255, 0.9);
    position: relative;
    width: auto;
    top: 0;
    right: 0;
    padding: 2.44141%;
    margin-bottom: 10px;
  }
  /* line 529, partials/_maincontent.scss */
  #site-body #main-content .grid-container .gen-box h2 {
    color: #00539b;
    font-size: 20px;
  }
  /* line 533, partials/_maincontent.scss */
  #site-body #main-content .grid-container .gen-box p {
    line-height: 1.2;
    font-size: 16px;
  }
  /* line 153, partials/_base.scss */
  #site-body #main-content .grid-container .gen-box p a {
    font-size: 14px;
    color: #e51b24;
    font-weight: bold;
    font-style: italic;
    text-decoration: none;
  }
  /* line 539, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container {
    display: block;
    padding: 0;
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    background-color: transparent;
  }
  /* line 548, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .news-box {
    padding: 0 2.44141%;
    background-color: rgba(255, 255, 255, 0.9);
  }
  /* line 551, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .news-box .news-head {
    margin-top: 0;
    position: relative;
    top: 0;
    left: 0;
    height: 40px;
    width: 100%;
    border: none;
  }
  /* line 559, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .news-box .news-head h2 {
    float: left;
    color: #00539b;
    font-size: 20px;
    font-weight: normal;
    margin: 5px 0 0;
  }
  /* line 566, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .news-box .news-head span {
    float: right;
    margin-top: 10px;
    margin-right: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-style: italic;
  }
  /* line 573, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .news-box .news-head span a {
    color: #e51b24;
  }
  /* line 578, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .news-box .news-articles {
    display: block;
    padding-top: 10px;
    margin-top: 0;
    overflow: hidden;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #939393;
  }
  /* line 590, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .news-box .news-articles p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.2;
  }
  /* line 594, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .news-box .news-articles p strong {
    display: block;
  }
  /* line 597, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .news-box .news-articles p span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-style: italic;
  }
  /* line 601, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .news-box .news-articles p span a {
    color: #e51b24;
    text-decoration: none;
  }
  /* line 609, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .alert-box {
    padding: 0 2.44141%;
    background-color: rgba(255, 255, 255, 0.9);
    position: relative;
    top: 10px;
  }
  /* line 614, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .alert-box .alert-head {
    position: relative;
    top: 0;
    left: 0;
    height: 40px;
    width: 100%;
  }
  /* line 620, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .alert-box .alert-head h2 {
    float: left;
    color: #00539b;
    font-size: 20px;
    font-weight: normal;
    margin: 5px 0 0;
  }
  /* line 627, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .alert-box .alert-head span {
    float: right;
    margin-top: 10px;
    margin-right: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-style: italic;
  }
  /* line 634, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .alert-box .alert-head span a {
    color: #e51b24;
  }
  /* line 639, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .alert-box .alert-articles {
    display: block;
    padding-top: 10px;
    margin-top: 0;
    overflow: hidden;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #939393;
  }
  /* line 651, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .alert-box .alert-articles p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.2;
  }
  /* line 655, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .alert-box .alert-articles p strong {
    display: block;
  }
  /* line 658, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .alert-box .alert-articles p span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-style: italic;
  }
  /* line 662, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .alert-box .alert-articles p span a {
    color: #e51b24;
    text-decoration: none;
  }
  /* line 671, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container {
    overflow: hidden;
    padding: 0;
  }
  /* line 674, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box1 {
    width: 100%;
    float: none;
    box-shadow: none;
    margin-bottom: 0;
    margin-right: 0;
  }
  /* line 680, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box1 .box-head {
    padding: 0 2.44141%;
  }
  /* line 685, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box1 .box-body .events figure {
    width: 35%;
  }
  /* line 688, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box1 .box-body .events p {
    font-size: 16px;
  }
  /* line 690, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box1 .box-body .events p strong {
    font-size: 16px;
  }
  /* line 693, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box1 .box-body .events p a {
    font-size: 14px;
  }
  /* line 700, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box2 {
    width: 100%;
    float: none;
    background-color: #9cf;
    box-shadow: none;
    margin-bottom: 0;
    margin-right: 0;
  }
  /* line 707, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box2 .box-head {
    padding: 0 2.44141%;
  }
  /* line 712, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box2 .box-body .myapp .tiny {
    display: block;
  }
  /* line 715, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box2 .box-body .myapp .large {
    display: none;
  }
  /* line 718, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box2 .box-body .myapp p {
    font-size: 16px;
  }
  /* line 720, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box2 .box-body .myapp p strong {
    font-size: 16px;
  }
  /* line 723, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box2 .box-body .myapp p a {
    font-size: 14px;
  }
  /* line 730, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 {
    width: 100%;
    float: none;
    background-color: #9c6;
    box-shadow: none;
  }
  /* line 735, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3a {
    background-color: #9cf;
    margin-bottom: 0;
    box-shadow: none;
    width: 100%;
  }
  /* line 742, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3a .box-body .box3a-info .tiny {
    display: block;
  }
  /* line 745, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3a .box-body .box3a-info .large {
    display: none;
  }
  /* line 748, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3a .box-body .box3a-info p {
    font-size: 16px;
  }
  /* line 750, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3a .box-body .box3a-info p strong {
    font-size: 16px;
  }
  /* line 753, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3a .box-body .box3a-info p a {
    font-size: 14px;
  }
  /* line 760, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3b {
    background-color: #999;
    margin-bottom: 0;
    box-shadow: none;
    width: 100%;
  }
  /* line 767, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3b .box-body .box3b-info .tiny {
    display: block;
  }
  /* line 770, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3b .box-body .box3b-info .large {
    display: none;
  }
  /* line 773, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3b .box-body .box3b-info p {
    font-size: 16px;
  }
  /* line 775, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3b .box-body .box3b-info p strong {
    font-size: 16px;
  }
  /* line 778, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3b .box-body .box3b-info p a {
    font-size: 14px;
  }
}
/* ================================
 * Mobile
 * ================================ */
@media (max-width: 400px) {
  /* line 798, partials/_maincontent.scss */
  #site-body {
    /*box-shadow: inset 0 10px 10px -10px $black;*/
    position: relative;
    z-index: 0;
    overflow: hidden;
  }
  /* line 803, partials/_maincontent.scss */
  #site-body #main-content {
    background: none;
  }
  /* line 805, partials/_maincontent.scss */
  #site-body #main-content .grid-container {
    padding: 0;
  }
  /* line 807, partials/_maincontent.scss */
  #site-body #main-content .grid-container .us-star {
    height: 84px;
    width: 100%;
    background: url("../images/backgrounds/usStar.png") no-repeat scroll center center transparent;
  }
  /* line 812, partials/_maincontent.scss */
  #site-body #main-content .grid-container .gen-box {
    display: block;
    background-color: rgba(255, 255, 255, 0.9);
    position: relative;
    width: auto;
    top: 0;
    right: 0;
    padding: 2.44141%;
    margin-bottom: 10px;
  }
  /* line 821, partials/_maincontent.scss */
  #site-body #main-content .grid-container .gen-box h2 {
    color: #00539b;
    font-size: 20px;
  }
  /* line 825, partials/_maincontent.scss */
  #site-body #main-content .grid-container .gen-box p {
    line-height: 1.2;
    font-size: 16px;
  }
  /* line 153, partials/_base.scss */
  #site-body #main-content .grid-container .gen-box p a {
    font-size: 14px;
    color: #e51b24;
    font-weight: bold;
    font-style: italic;
    text-decoration: none;
  }
  /* line 831, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container {
    display: block;
    padding: 0;
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    background-color: transparent;
  }
  /* line 840, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .news-box {
    padding: 0 2.44141%;
    background-color: rgba(255, 255, 255, 0.9);
  }
  /* line 843, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .news-box .news-head {
    margin-top: 0;
    position: relative;
    top: 0;
    left: 0;
    height: 40px;
    width: 100%;
    border: none;
  }
  /* line 851, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .news-box .news-head h2 {
    float: left;
    color: #00539b;
    font-size: 20px;
    font-weight: normal;
    margin: 5px 0 0;
  }
  /* line 858, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .news-box .news-head span {
    float: right;
    margin-top: 10px;
    margin-right: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-style: italic;
  }
  /* line 865, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .news-box .news-head span a {
    color: #e51b24;
  }
  /* line 870, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .news-box .news-articles {
    display: block;
    padding-top: 10px;
    margin-top: 0;
    overflow: hidden;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #939393;
  }
  /* line 882, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .news-box .news-articles p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.2;
  }
  /* line 886, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .news-box .news-articles p strong {
    display: block;
  }
  /* line 889, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .news-box .news-articles p span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-style: italic;
  }
  /* line 893, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .news-box .news-articles p span a {
    color: #e51b24;
    text-decoration: none;
  }
  /* line 901, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .alert-box {
    padding: 0 2.44141%;
    background-color: rgba(255, 255, 255, 0.9);
    position: relative;
    top: 10px;
  }
  /* line 906, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .alert-box .alert-head {
    position: relative;
    top: 0;
    left: 0;
    height: 40px;
    width: 100%;
  }
  /* line 912, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .alert-box .alert-head h2 {
    float: left;
    color: #00539b;
    font-size: 20px;
    font-weight: normal;
    margin: 5px 0 0;
  }
  /* line 919, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .alert-box .alert-head span {
    float: right;
    margin-top: 10px;
    margin-right: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-style: italic;
  }
  /* line 926, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .alert-box .alert-head span a {
    color: #e51b24;
  }
  /* line 931, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .alert-box .alert-articles {
    display: block;
    padding-top: 10px;
    margin-top: 0;
    overflow: hidden;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #939393;
  }
  /* line 943, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .alert-box .alert-articles p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.2;
  }
  /* line 947, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .alert-box .alert-articles p strong {
    display: block;
  }
  /* line 950, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .alert-box .alert-articles p span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-style: italic;
  }
  /* line 954, partials/_maincontent.scss */
  #site-body #main-content .grid-container .news-alert-container .alert-box .alert-articles p span a {
    color: #e51b24;
    text-decoration: none;
  }
  /* line 963, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container {
    overflow: hidden;
    padding: 0;
  }
  /* line 966, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box1 {
    width: 100%;
    float: none;
    box-shadow: none;
    margin-bottom: 0;
    margin-right: 0;
  }
  /* line 972, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box1 .box-head {
    padding: 0 2.44141%;
  }
  /* line 977, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box1 .box-body .events figure {
    width: 35%;
  }
  /* line 980, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box1 .box-body .events p {
    font-size: 16px;
  }
  /* line 982, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box1 .box-body .events p strong {
    font-size: 16px;
  }
  /* line 985, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box1 .box-body .events p a {
    font-size: 14px;
  }
  /* line 992, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box2 {
    width: 100%;
    float: none;
    background-color: #9cf;
    box-shadow: none;
    margin-bottom: 0;
    margin-right: 0;
  }
  /* line 999, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box2 .box-head {
    padding: 0 2.44141%;
  }
  /* line 1004, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box2 .box-body .myapp .tiny {
    display: block;
  }
  /* line 1007, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box2 .box-body .myapp .large {
    display: none;
  }
  /* line 1010, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box2 .box-body .myapp p {
    font-size: 16px;
  }
  /* line 1012, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box2 .box-body .myapp p strong {
    font-size: 16px;
  }
  /* line 1015, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box2 .box-body .myapp p a {
    font-size: 14px;
  }
  /* line 1022, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 {
    width: 100%;
    float: none;
    background-color: #9c6;
    box-shadow: none;
  }
  /* line 1027, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3a {
    background-color: #9cf;
    margin-bottom: 0;
    box-shadow: none;
    width: 100%;
  }
  /* line 1034, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3a .box-body .box3a-info .tiny {
    display: block;
  }
  /* line 1037, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3a .box-body .box3a-info .large {
    display: none;
  }
  /* line 1040, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3a .box-body .box3a-info p {
    font-size: 16px;
  }
  /* line 1042, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3a .box-body .box3a-info p strong {
    font-size: 16px;
  }
  /* line 1045, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3a .box-body .box3a-info p a {
    font-size: 14px;
  }
  /* line 1052, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3b {
    background-color: #999;
    margin-bottom: 0;
    box-shadow: none;
    width: 100%;
  }
  /* line 1059, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3b .box-body .box3b-info .tiny {
    display: block;
  }
  /* line 1062, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3b .box-body .box3b-info .large {
    display: none;
  }
  /* line 1065, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3b .box-body .box3b-info p {
    font-size: 16px;
  }
  /* line 1067, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3b .box-body .box3b-info p strong {
    font-size: 16px;
  }
  /* line 1070, partials/_maincontent.scss */
  #site-body #main-content .grid-container .box-container #box3 .box3b .box-body .box3b-info p a {
    font-size: 14px;
  }
}
/* ================================
 * Misc Media Screens - 2
 * ================================ */
@media (width: 900px) {
  /* line 1094, partials/_maincontent.scss */
  #main-content .grid-container .box-container #box1 .box-body {
    min-height: 360px !important;
  }
  /* line 1099, partials/_maincontent.scss */
  #main-content .grid-container .box-container #box2 .box-body {
    min-height: 360px !important;
  }
  /* line 1105, partials/_maincontent.scss */
  #main-content .grid-container .box-container #box3 .box3a .box-body {
    min-height: 142px !important;
  }
}
/* ================================
 * Mixins Left Navigation
 * ================================ */
/* ================================
 * Big Screen - Left Navigation Styles
 * ================================ */
/* line 283, partials/_maininnerframe.scss */
#main-content {
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
/* line 110, modules/_framework.scss */
#main-content:before {
  content: '';
  display: table;
  line-height: 0;
}
/* line 115, modules/_framework.scss */
#main-content:after {
  content: '';
  display: table;
  line-height: 0;
  clear: both;
}
/* line 286, partials/_maininnerframe.scss */
#main-content #left-navigation {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 23.5%;
  background-color: white;
  -moz-box-shadow: 0 15px 15px -15px #747474;
  -webkit-box-shadow: 0 15px 15px -15px #747474;
  box-shadow: 0 15px 15px -15px #747474;
  margin-top: 20px;
  margin-bottom: 35px;
  padding: 15px;
}
/* line 139, modules/_framework.scss */
#main-content #left-navigation:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
#main-content #left-navigation:last-child {
  float: right;
}
/* line 291, partials/_maininnerframe.scss */
#main-content #right-contentarea {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 74.5%;
  background-color: white;
  -moz-box-shadow: 0 21px 21px -12px #939393;
  -webkit-box-shadow: 0 21px 21px -12px #939393;
  box-shadow: 0 21px 21px -12px #939393;
  margin-top: 20px;
  margin-bottom: 35px;
}
/* line 139, modules/_framework.scss */
#main-content #right-contentarea:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
#main-content #right-contentarea:last-child {
  float: right;
}
/* line 295, partials/_maininnerframe.scss */
#main-content #right-contentarea #bread-crumb {
  background-color: #e6e6e6;
  padding: 5px 20px;
  overflow: hidden;
}
/* line 300, partials/_maininnerframe.scss */
#main-content #right-contentarea #bread-crumb ul li {
  list-style: none;
  float: left;
}
/* line 303, partials/_maininnerframe.scss */
#main-content #right-contentarea #bread-crumb ul li a {
  color: #333333;
  text-decoration: none;
  text-transform: lowercase;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}
/* line 311, partials/_maininnerframe.scss */
#main-content #right-contentarea #bread-crumb ul li a.active, #main-content #right-contentarea #bread-crumb ul li a:hover {
  font-weight: bold;
}
/* line 315, partials/_maininnerframe.scss */
#main-content #right-contentarea #bread-crumb ul li span {
  margin: 0 5px;
  font-size: 14px;
  line-height: 1;
}
/* line 323, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame {
  padding: 15px 20px;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
/* line 110, modules/_framework.scss */
#main-content #right-contentarea #content-frame:before {
  content: '';
  display: table;
  line-height: 0;
}
/* line 115, modules/_framework.scss */
#main-content #right-contentarea #content-frame:after {
  content: '';
  display: table;
  line-height: 0;
  clear: both;
}
/* line 327, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-fullimg {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 100%;
  margin-bottom: 30px;
  margin-right: 0;
}
/* line 139, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-fullimg:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-fullimg:last-child {
  float: right;
}
/* line 333, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-head {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 100%;
  margin-bottom: 15px;
  margin-right: 0;
  background: url("../images/backgrounds/dbLine.png") repeat-x scroll left bottom transparent;
  padding-bottom: 10px;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
/* line 139, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-head:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-head:last-child {
  float: right;
}
/* line 110, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-head:before {
  content: '';
  display: table;
  line-height: 0;
}
/* line 115, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-head:after {
  content: '';
  display: table;
  line-height: 0;
  clear: both;
}
/* line 341, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-head .page-head {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 74.5%;
  color: #333333;
  text-transform: uppercase;
}
/* line 139, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-head .page-head:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-head .page-head:last-child {
  float: right;
}
/* line 346, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-head .page-head h3 {
  margin-bottom: 0;
  color: #333333;
  font-size: 18px;
  font-weight: bold;
  font-family: "gotham_mediumregular", Arial, Helvetica, sans-serif;
}
/* line 356, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-head .page-head .page-headimg {
  margin: 5px 0;
}
/* line 359, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-head .page-head.include-logo {
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
/* line 110, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-head .page-head.include-logo:before {
  content: '';
  display: table;
  line-height: 0;
}
/* line 115, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-head .page-head.include-logo:after {
  content: '';
  display: table;
  line-height: 0;
  clear: both;
}
/* line 362, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-head .page-head.include-logo .page-headimg {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 42.625%;
}
/* line 139, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-head .page-head.include-logo .page-headimg:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-head .page-head.include-logo .page-headimg:last-child {
  float: right;
}
/* line 365, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-head .page-head.include-logo h3 {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 55.375%;
  margin-top: 17px;
  color: #b3b3b3;
  line-height: 1.2;
  font-size: 16px;
  font-weight: normal;
}
/* line 139, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-head .page-head.include-logo h3:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-head .page-head.include-logo h3:last-child {
  float: right;
}
@media (max-width: 1024px) {
  /* line 365, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-head .page-head.include-logo h3 {
    margin-top: 12px;
  }
}
@media (max-width: 600px) {
  /* line 365, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-head .page-head.include-logo h3 {
    margin-top: 10px;
  }
}
@media (max-width: 400px) {
  /* line 365, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-head .page-head.include-logo h3 {
    margin-top: 5px;
  }
}
/* line 385, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-head .social-shares {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 23.5%;
  margin-right: 0;
  text-align: right;
  color: #333333;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: normal;
  font-family: "gotham_mediumregular", Arial, Helvetica, sans-serif;
}
/* line 139, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-head .social-shares:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-head .social-shares:last-child {
  float: right;
}
/* line 396, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-head .social-shares p {
  margin: 3px 0;
}
/* line 398, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-head .social-shares p a {
  text-decoration: none;
}
/* line 401, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-head .social-shares p img {
  vertical-align: bottom;
  margin-left: 5px;
}
/* line 409, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-left {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 29.875%;
  padding-right: 15px;
}
/* line 139, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-left:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-left:last-child {
  float: right;
}
/* line 412, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-left .figure-nav {
  margin-bottom: 30px;
  padding-right: 10px;
}
/* line 416, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-left #page-inner-menu {
  margin-bottom: 30px;
}
/* line 418, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-left #page-inner-menu ul {
  background-color: #f6f6f6;
  box-shadow: 0 2px 2px -1px #aaa inset;
}
/* line 421, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-left #page-inner-menu ul li {
  list-style: none;
  border-bottom: 1px solid #e3e2e2;
  border-top: 1px solid white;
}
/* line 427, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-left #page-inner-menu ul li a {
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  color: #333333;
  display: block;
  padding: 10px 0 10px 10px;
  font-family: "gotham_mediumregular", Arial, Helvetica, sans-serif;
}
/* line 436, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-left #page-inner-menu ul li a.active, #main-content #right-contentarea #content-frame #content-frame-left #page-inner-menu ul li a:hover {
  color: #e51b24;
  border-right: 6px solid #e51b24;
  font-family: "gotham_mediumregular", Arial, Helvetica, sans-serif;
}
/* line 445, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-left .inner-left-flow {
  margin-bottom: 20px;
  padding-right: 10px;
  padding-bottom: 20px;
}
/* line 25, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-left .inner-left-flow p {
  margin-top: 1em;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #333333;
}
/* line 31, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-left .inner-left-flow p:first-child {
  margin-top: 0;
}
/* line 34, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-left .inner-left-flow p:first-child strong:first-child {
  font-family: "gotham_mediumregular", Arial, Helvetica, sans-serif;
  font-size: 14px;
  display: block;
  text-transform: uppercase;
}
/* line 40, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-left .inner-left-flow p a {
  display: block;
  color: #e51b24;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  font-weight: bold;
  text-decoration: none;
}
/* line 451, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-left .large {
  display: block;
}
/* line 457, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right,
#main-content #right-contentarea #content-frame #content-frame-full {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 68.125%;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
/* line 139, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right:last-child,
#main-content #right-contentarea #content-frame #content-frame-full:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right:last-child,
#main-content #right-contentarea #content-frame #content-frame-full:last-child {
  float: right;
}
/* line 110, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right:before,
#main-content #right-contentarea #content-frame #content-frame-full:before {
  content: '';
  display: table;
  line-height: 0;
}
/* line 115, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right:after,
#main-content #right-contentarea #content-frame #content-frame-full:after {
  content: '';
  display: table;
  line-height: 0;
  clear: both;
}
/* line 461, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-col-split,
#main-content #right-contentarea #content-frame #content-frame-full #inner-col-split {
  float: left;
  margin-right: 0%;
  width: 100%;
}
/* line 465, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-col-split span,
#main-content #right-contentarea #content-frame #content-frame-full #inner-col-split span {
  float: left;
  width: 48%;
  /*margin-right: 1%;
  margin-left: 1%;*/
}
/* line 136, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-col-split span h4,
#main-content #right-contentarea #content-frame #content-frame-full #inner-col-split span h4 {
  color: #333333;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: bold;
}
/* line 145, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-col-split span h5,
#main-content #right-contentarea #content-frame #content-frame-full #inner-col-split span h5 {
  color: #333333;
  text-transform: capitalize;
  line-height: 1;
  margin-bottom: 3px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: bold;
}
/* line 156, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-col-split span h6,
#main-content #right-contentarea #content-frame #content-frame-full #inner-col-split span h6 {
  color: #333333;
  text-transform: capitalize;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: normal;
}
/* line 165, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-col-split span p,
#main-content #right-contentarea #content-frame #content-frame-full #inner-col-split span p {
  color: #333333;
  margin-bottom: 15px;
  line-height: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}
/* line 174, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-col-split span figure,
#main-content #right-contentarea #content-frame #content-frame-full #inner-col-split span figure {
  margin-bottom: 15px;
}
/* line 176, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-col-split span figure .figcap,
#main-content #right-contentarea #content-frame #content-frame-full #inner-col-split span figure .figcap {
  color: #333333;
  padding-left: 10px;
  line-height: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-style: italic;
  font-weight: bold;
}
/* line 189, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-col-split span ol,
#main-content #right-contentarea #content-frame #content-frame-full #inner-col-split span ol {
  margin-left: 20px;
  margin-bottom: 20px;
}
/* line 192, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-col-split span ol li,
#main-content #right-contentarea #content-frame #content-frame-full #inner-col-split span ol li {
  color: #333333;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}
/* line 200, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-col-split span ul,
#main-content #right-contentarea #content-frame #content-frame-full #inner-col-split span ul {
  margin-left: 13px;
  margin-bottom: 20px;
}
/* line 203, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-col-split span ul li,
#main-content #right-contentarea #content-frame #content-frame-full #inner-col-split span ul li {
  color: #333333;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
}
/* line 472, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-col-split #data,
#main-content #right-contentarea #content-frame #content-frame-full #inner-col-split #data {
  margin-right: 2%;
}
/* line 475, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-col-split #Column2,
#main-content #right-contentarea #content-frame #content-frame-full #inner-col-split #Column2 {
  margin-left: 2%;
}
/* line 479, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 100%;
}
/* line 139, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single:last-child,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single:last-child,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single:last-child {
  float: right;
}
/* line 481, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single h4,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single h4 {
  color: #333333;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: bold;
}
/* line 493, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single p,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single p {
  font-size: 13px;
  color: #333333;
  line-height: 20px;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
/* line 500, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .tiny,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .tiny {
  display: none;
}
/* line 503, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-img-flow,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-img-flow {
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  background: url("../images/backgrounds/sdbLine.png") repeat-x scroll left bottom transparent;
  margin-bottom: 20px;
  overflow: hidden;
}
/* line 110, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-img-flow:before,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-img-flow:before {
  content: '';
  display: table;
  line-height: 0;
}
/* line 115, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-img-flow:after,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-img-flow:after {
  content: '';
  display: table;
  line-height: 0;
  clear: both;
}
/* line 85, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-img-flow .inner-img-flow-rgt p,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-img-flow .inner-img-flow-rgt p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #333333;
  margin-bottom: 0;
}
/* line 91, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-img-flow .inner-img-flow-rgt p strong,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-img-flow .inner-img-flow-rgt p strong {
  font-size: 13px;
  display: block;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 5px;
}
/* line 98, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-img-flow .inner-img-flow-rgt p a,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-img-flow .inner-img-flow-rgt p a {
  display: block;
  color: #e51b24;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  font-weight: bold;
  text-decoration: none;
  margin-top: 5px;
}
/* line 506, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-img-flow .inner-img-flow-lft,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-img-flow .inner-img-flow-lft {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 29.875%;
}
/* line 139, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-img-flow .inner-img-flow-lft:last-child,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-img-flow .inner-img-flow-lft:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-img-flow .inner-img-flow-lft:last-child,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-img-flow .inner-img-flow-lft:last-child {
  float: right;
}
/* line 509, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-img-flow .inner-img-flow-rgt,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-img-flow .inner-img-flow-rgt {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 68.125%;
}
/* line 139, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-img-flow .inner-img-flow-rgt:last-child,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-img-flow .inner-img-flow-rgt:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-img-flow .inner-img-flow-rgt:last-child,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-img-flow .inner-img-flow-rgt:last-child {
  float: right;
}
/* line 513, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-right-flow,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-right-flow {
  font-size: 22px;
}
/* line 112, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-right-flow p,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-right-flow p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #333333;
  background: url("../images/backgrounds/sdbLine.png") repeat-x scroll left bottom transparent;
}
/* line 117, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-right-flow p strong,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-right-flow p strong {
  font-size: 13px;
  display: block;
  text-transform: uppercase;
  margin-bottom: 5px;
}
/* line 123, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-right-flow p a,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-right-flow p a {
  display: block;
  color: #e51b24;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  font-weight: bold;
  text-decoration: none;
  margin-top: 5px;
}
/* line 25, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-shift-flow p,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-shift-flow p {
  margin-top: 1em;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #333333;
}
/* line 31, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-shift-flow p:first-child,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-shift-flow p:first-child {
  margin-top: 0;
}
/* line 34, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-shift-flow p:first-child strong:first-child,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-shift-flow p:first-child strong:first-child {
  font-family: "gotham_mediumregular", Arial, Helvetica, sans-serif;
  font-size: 14px;
  display: block;
  text-transform: uppercase;
}
/* line 40, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-shift-flow p a,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-shift-flow p a {
  display: block;
  color: #e51b24;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  font-weight: bold;
  text-decoration: none;
}
/* line 136, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-right-full h4,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-right-full h4 {
  color: #333333;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: bold;
}
/* line 145, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-right-full h5,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-right-full h5 {
  color: #333333;
  text-transform: capitalize;
  line-height: 1;
  margin-bottom: 3px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: bold;
}
/* line 156, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-right-full h6,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-right-full h6 {
  color: #333333;
  text-transform: capitalize;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: normal;
}
/* line 165, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-right-full p,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-right-full p {
  color: #333333;
  margin-bottom: 15px;
  line-height: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}
/* line 174, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-right-full figure,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-right-full figure {
  margin-bottom: 15px;
}
/* line 176, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-right-full figure .figcap,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-right-full figure .figcap {
  color: #333333;
  padding-left: 10px;
  line-height: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-style: italic;
  font-weight: bold;
}
/* line 189, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-right-full ol,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-right-full ol {
  margin-left: 20px;
  margin-bottom: 20px;
}
/* line 192, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-right-full ol li,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-right-full ol li {
  color: #333333;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}
/* line 200, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-right-full ul,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-right-full ul {
  margin-left: 13px;
  margin-bottom: 20px;
}
/* line 203, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-right-full ul li,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-right-full ul li {
  color: #333333;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
}
/* line 523, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-right-full .figure-flt,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-right-full .figure-flt {
  width: 48%;
  float: left;
  margin-right: 2%;
  margin-top: -10px;
}
/* line 530, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-right-full .gbutton a,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-right-full .gbutton a {
  margin-left: 20px;
  float: right;
  outline: 3px solid #b3b3b3;
  border: 1px solid white;
  background-color: #b3b3b3;
  padding: 5px 25px;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
  letter-spacing: 0.5px;
  font-family: "gotham_mediumregular", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: bold;
}
/* line 254, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-right-full .gbutton a:hover,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-right-full .gbutton a:hover {
  background-color: #cacaca;
  outline: 3px solid #cacaca;
}
/* line 535, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-right-full .rbutton a,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-right-full .rbutton a {
  margin-left: 20px;
  float: right;
  outline: 3px solid #e51b24;
  border: 1px solid white;
  background-color: #e51b24;
  padding: 5px 25px;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
  letter-spacing: 0.5px;
  font-family: "gotham_mediumregular", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: bold;
}
/* line 275, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-right-full .rbutton a:hover,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-right-full .rbutton a:hover {
  background-color: #ea4950;
  outline: 3px solid #ea4950;
}
/* line 539, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-right-full p,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .inner-right-full p {
  padding-bottom: 0;
}
/* line 213, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content h5,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content h5 {
  margin-top: 15px;
}
/* line 217, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content ul li,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content ul li {
  font-size: 12px;
}
/* line 223, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .inputfield,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .inputfield {
  margin: 7px 0;
  padding: 5px 0 5px 5px;
  background-color: #dadada;
  border: 1px solid #e0e0e0;
  -moz-box-shadow: inset 0 15px 15px -15px #747474;
  -webkit-box-shadow: inset 0 15px 15px -15px #747474;
  box-shadow: inset 1px 1px 1px -1px #747474;
  /*width: 100%;*/
  color: #333333;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  background: url("../images/backgrounds/inputBg.png") repeat-x scroll left top #f8f8f8;
}
/* line 547, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content ul li,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content ul li {
  list-style-image: url(../images/backgrounds/small-bullet.jpg);
}
/* line 551, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .one-box,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .one-box {
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
/* line 110, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .one-box:before,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .one-box:before {
  content: '';
  display: table;
  line-height: 0;
}
/* line 115, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .one-box:after,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .one-box:after {
  content: '';
  display: table;
  line-height: 0;
  clear: both;
}
/* line 553, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .one-box .one-box-fw,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .one-box .one-box-fw {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 100%;
}
/* line 139, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .one-box .one-box-fw:last-child,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .one-box .one-box-fw:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .one-box .one-box-fw:last-child,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .one-box .one-box-fw:last-child {
  float: right;
}
/* line 555, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .one-box .one-box-fw .wd-s1-f,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .one-box .one-box-fw .wd-s1-f {
  width: 100%;
}
/* line 558, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .one-box .one-box-fw textarea,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .one-box .one-box-fw textarea {
  width: 100%;
  min-height: 74px;
}
/* line 564, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .two-box,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .two-box {
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
/* line 110, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .two-box:before,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .two-box:before {
  content: '';
  display: table;
  line-height: 0;
}
/* line 115, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .two-box:after,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .two-box:after {
  content: '';
  display: table;
  line-height: 0;
  clear: both;
}
/* line 566, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .two-box .two-box-lft,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .two-box .two-box-lft {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 49%;
}
/* line 139, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .two-box .two-box-lft:last-child,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .two-box .two-box-lft:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .two-box .two-box-lft:last-child,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .two-box .two-box-lft:last-child {
  float: right;
}
/* line 568, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .two-box .two-box-lft .wd-s2-l,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .two-box .two-box-lft .wd-s2-l {
  width: 97%;
  margin-right: 3%;
}
/* line 573, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .two-box .two-box-rgt,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .two-box .two-box-rgt {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 49%;
}
/* line 139, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .two-box .two-box-rgt:last-child,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .two-box .two-box-rgt:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .two-box .two-box-rgt:last-child,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .two-box .two-box-rgt:last-child {
  float: right;
}
/* line 575, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .two-box .two-box-rgt .wd-s2-r,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .two-box .two-box-rgt .wd-s2-r {
  width: 97%;
  margin-left: 3%;
}
/* line 581, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .three-box,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .three-box {
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
/* line 110, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .three-box:before,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .three-box:before {
  content: '';
  display: table;
  line-height: 0;
}
/* line 115, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .three-box:after,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .three-box:after {
  content: '';
  display: table;
  line-height: 0;
  clear: both;
}
/* line 583, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .three-box .three-box-lft,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .three-box .three-box-lft {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 29.875%;
}
/* line 139, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .three-box .three-box-lft:last-child,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .three-box .three-box-lft:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .three-box .three-box-lft:last-child,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .three-box .three-box-lft:last-child {
  float: right;
}
/* line 585, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .three-box .three-box-lft .wd-s3-l,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .three-box .three-box-lft .wd-s3-l {
  width: 97%;
  margin-right: 3%;
}
/* line 590, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .three-box .three-box-mid,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .three-box .three-box-mid {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 36.25%;
}
/* line 139, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .three-box .three-box-mid:last-child,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .three-box .three-box-mid:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .three-box .three-box-mid:last-child,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .three-box .three-box-mid:last-child {
  float: right;
}
/* line 592, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .three-box .three-box-mid .wd-s3-m,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .three-box .three-box-mid .wd-s3-m {
  width: 88%;
  margin-left: 6%;
  margin-right: 6%;
}
/* line 598, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .three-box .three-box-rgt,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .three-box .three-box-rgt {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 29.875%;
}
/* line 139, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .three-box .three-box-rgt:last-child,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .three-box .three-box-rgt:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .three-box .three-box-rgt:last-child,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .three-box .three-box-rgt:last-child {
  float: right;
}
/* line 600, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .three-box .three-box-rgt .wd-s3-r,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .three-box .three-box-rgt .wd-s3-r {
  width: 97%;
  margin-left: 3%;
}
/* line 606, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .form-content .err-msg,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single .form-content .err-msg {
  color: #e51b24;
  text-align: right;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-style: italic;
  font-weight: bold;
}
/* line 618, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single #horizontalTab,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single #horizontalTab {
  /* responsive tag */
}
/* line 51, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single #horizontalTab .resp-tabs-container figure,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single #horizontalTab .resp-tabs-container figure {
  margin-bottom: 10px;
}
/* line 54, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single #horizontalTab .resp-tabs-container p,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single #horizontalTab .resp-tabs-container p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #333333;
  margin-bottom: 0;
  padding-bottom: 0;
}
/* line 61, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single #horizontalTab .resp-tabs-container p strong,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single #horizontalTab .resp-tabs-container p strong {
  font-size: 13px;
  display: block;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 5px;
}
/* line 68, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-single #horizontalTab .resp-tabs-container p a,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-single #horizontalTab .resp-tabs-container p a {
  display: block;
  color: #e51b24;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  font-weight: bold;
  text-decoration: none;
  margin-top: 5px;
}
/* line 624, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleA,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleA {
  /* doubleA & doubleB Equal Columns */
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 49%;
  padding-right: 7px;
}
/* line 139, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleA:last-child,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleA:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleA:last-child,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleA:last-child {
  float: right;
}
/* line 136, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleA h4,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleA h4 {
  color: #333333;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: bold;
}
/* line 145, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleA h5,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleA h5 {
  color: #333333;
  text-transform: capitalize;
  line-height: 1;
  margin-bottom: 3px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: bold;
}
/* line 156, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleA h6,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleA h6 {
  color: #333333;
  text-transform: capitalize;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: normal;
}
/* line 165, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleA p,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleA p {
  color: #333333;
  margin-bottom: 15px;
  line-height: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}
/* line 174, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleA figure,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleA figure {
  margin-bottom: 15px;
}
/* line 176, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleA figure .figcap,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleA figure .figcap {
  color: #333333;
  padding-left: 10px;
  line-height: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-style: italic;
  font-weight: bold;
}
/* line 189, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleA ol,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleA ol {
  margin-left: 20px;
  margin-bottom: 20px;
}
/* line 192, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleA ol li,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleA ol li {
  color: #333333;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}
/* line 200, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleA ul,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleA ul {
  margin-left: 13px;
  margin-bottom: 20px;
}
/* line 203, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleA ul li,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleA ul li {
  color: #333333;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
}
/* line 630, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleB,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleB {
  /* doubleA & doubleB Equal Columns */
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 49%;
  padding-left: 7px;
}
/* line 139, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleB:last-child,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleB:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleB:last-child,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleB:last-child {
  float: right;
}
/* line 136, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleB h4,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleB h4 {
  color: #333333;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: bold;
}
/* line 145, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleB h5,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleB h5 {
  color: #333333;
  text-transform: capitalize;
  line-height: 1;
  margin-bottom: 3px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: bold;
}
/* line 156, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleB h6,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleB h6 {
  color: #333333;
  text-transform: capitalize;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: normal;
}
/* line 165, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleB p,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleB p {
  color: #333333;
  margin-bottom: 15px;
  line-height: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}
/* line 174, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleB figure,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleB figure {
  margin-bottom: 15px;
}
/* line 176, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleB figure .figcap,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleB figure .figcap {
  color: #333333;
  padding-left: 10px;
  line-height: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-style: italic;
  font-weight: bold;
}
/* line 189, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleB ol,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleB ol {
  margin-left: 20px;
  margin-bottom: 20px;
}
/* line 192, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleB ol li,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleB ol li {
  color: #333333;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}
/* line 200, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleB ul,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleB ul {
  margin-left: 13px;
  margin-bottom: 20px;
}
/* line 203, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleB ul li,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleB ul li {
  color: #333333;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
}
/* line 635, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleC,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleC {
  /* doubleC & doubleD Unequal Columns */
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 61.75%;
  padding-right: 15px;
}
/* line 139, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleC:last-child,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleC:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleC:last-child,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleC:last-child {
  float: right;
}
/* line 136, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleC h4,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleC h4 {
  color: #333333;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: bold;
}
/* line 145, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleC h5,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleC h5 {
  color: #333333;
  text-transform: capitalize;
  line-height: 1;
  margin-bottom: 3px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: bold;
}
/* line 156, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleC h6,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleC h6 {
  color: #333333;
  text-transform: capitalize;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: normal;
}
/* line 165, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleC p,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleC p {
  color: #333333;
  margin-bottom: 15px;
  line-height: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}
/* line 174, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleC figure,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleC figure {
  margin-bottom: 15px;
}
/* line 176, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleC figure .figcap,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleC figure .figcap {
  color: #333333;
  padding-left: 10px;
  line-height: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-style: italic;
  font-weight: bold;
}
/* line 189, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleC ol,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleC ol {
  margin-left: 20px;
  margin-bottom: 20px;
}
/* line 192, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleC ol li,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleC ol li {
  color: #333333;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}
/* line 200, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleC ul,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleC ul {
  margin-left: 13px;
  margin-bottom: 20px;
}
/* line 203, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleC ul li,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleC ul li {
  color: #333333;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
}
/* line 641, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleD,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleD {
  /* doubleC & doubleD Unequal Columns */
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 36.25%;
}
/* line 139, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleD:last-child,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleD:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleD:last-child,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleD:last-child {
  float: right;
}
/* line 136, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleD h4,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleD h4 {
  color: #333333;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: bold;
}
/* line 145, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleD h5,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleD h5 {
  color: #333333;
  text-transform: capitalize;
  line-height: 1;
  margin-bottom: 3px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: bold;
}
/* line 156, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleD h6,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleD h6 {
  color: #333333;
  text-transform: capitalize;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: normal;
}
/* line 165, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleD p,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleD p {
  color: #333333;
  margin-bottom: 15px;
  line-height: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}
/* line 174, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleD figure,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleD figure {
  margin-bottom: 15px;
}
/* line 176, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleD figure .figcap,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleD figure .figcap {
  color: #333333;
  padding-left: 10px;
  line-height: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-style: italic;
  font-weight: bold;
}
/* line 189, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleD ol,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleD ol {
  margin-left: 20px;
  margin-bottom: 20px;
}
/* line 192, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleD ol li,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleD ol li {
  color: #333333;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}
/* line 200, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleD ul,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleD ul {
  margin-left: 13px;
  margin-bottom: 20px;
}
/* line 203, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleD ul li,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleD ul li {
  color: #333333;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
}
/* line 645, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleD ul li,
#main-content #right-contentarea #content-frame #content-frame-full #inner-right-doubleD ul li {
  list-style-image: url(../images/backgrounds/small-bullet.jpg);
}
/* line 651, partials/_maininnerframe.scss */
#main-content #right-contentarea #content-frame #content-frame-full {
  float: none;
  width: 100%;
}

/* ================================
 * Large Tablet
 * ================================ */
@media (max-width: 800px) {
  /* line 663, partials/_maininnerframe.scss */
  #main-content {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
  }
  /* line 110, modules/_framework.scss */
  #main-content:before {
    content: '';
    display: table;
    line-height: 0;
  }
  /* line 115, modules/_framework.scss */
  #main-content:after {
    content: '';
    display: table;
    line-height: 0;
    clear: both;
  }
  /* line 666, partials/_maininnerframe.scss */
  #main-content #left-navigation {
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
    width: 100%;
    display: none;
  }
  /* line 139, modules/_framework.scss */
  #main-content #left-navigation:last-child {
    margin-right: 0;
  }
  /* line 143, modules/_framework.scss */
  #main-content #left-navigation:last-child {
    float: right;
  }
  /* line 671, partials/_maininnerframe.scss */
  #main-content #right-contentarea {
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
    width: 100%;
  }
  /* line 139, modules/_framework.scss */
  #main-content #right-contentarea:last-child {
    margin-right: 0;
  }
  /* line 143, modules/_framework.scss */
  #main-content #right-contentarea:last-child {
    float: right;
  }
  /* line 674, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-head {
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
    width: 100%;
  }
  /* line 139, modules/_framework.scss */
  #main-content #right-contentarea #content-frame #content-frame-head:last-child {
    margin-right: 0;
  }
  /* line 143, modules/_framework.scss */
  #main-content #right-contentarea #content-frame #content-frame-head:last-child {
    float: right;
  }
  /* line 676, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-head .page-head {
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
    width: 100%;
  }
  /* line 139, modules/_framework.scss */
  #main-content #right-contentarea #content-frame #content-frame-head .page-head:last-child {
    margin-right: 0;
  }
  /* line 143, modules/_framework.scss */
  #main-content #right-contentarea #content-frame #content-frame-head .page-head:last-child {
    float: right;
  }
  /* line 679, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-head .social-shares {
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
    width: 100%;
  }
  /* line 139, modules/_framework.scss */
  #main-content #right-contentarea #content-frame #content-frame-head .social-shares:last-child {
    margin-right: 0;
  }
  /* line 143, modules/_framework.scss */
  #main-content #right-contentarea #content-frame #content-frame-head .social-shares:last-child {
    float: right;
  }
  /* line 683, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-left {
    padding-right: 0;
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
    width: 100%;
  }
  /* line 139, modules/_framework.scss */
  #main-content #right-contentarea #content-frame #content-frame-left:last-child {
    margin-right: 0;
  }
  /* line 143, modules/_framework.scss */
  #main-content #right-contentarea #content-frame #content-frame-left:last-child {
    float: right;
  }
  /* line 687, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-left #page-inner-menu {
    padding-right: 0;
  }
  /* line 690, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-left .inner-left-flow:last-child {
    padding-bottom: 0;
  }
  /* line 694, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-right {
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
    width: 100%;
  }
  /* line 139, modules/_framework.scss */
  #main-content #right-contentarea #content-frame #content-frame-right:last-child {
    margin-right: 0;
  }
  /* line 143, modules/_framework.scss */
  #main-content #right-contentarea #content-frame #content-frame-right:last-child {
    float: right;
  }
  /* line 136, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-right-full h4 {
    color: #333333;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: bold;
  }
  /* line 145, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-right-full h5 {
    color: #333333;
    text-transform: capitalize;
    line-height: 1;
    margin-bottom: 3px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: bold;
  }
  /* line 156, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-right-full h6 {
    color: #333333;
    text-transform: capitalize;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: normal;
  }
  /* line 165, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-right-full p {
    color: #333333;
    margin-bottom: 15px;
    line-height: 18px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
  }
  /* line 174, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-right-full figure {
    margin-bottom: 15px;
  }
  /* line 176, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-right-full figure .figcap {
    color: #333333;
    padding-left: 10px;
    line-height: 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-style: italic;
    font-weight: bold;
  }
  /* line 189, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-right-full ol {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  /* line 192, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-right-full ol li {
    color: #333333;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
  }
  /* line 200, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-right-full ul {
    margin-left: 13px;
    margin-bottom: 20px;
  }
  /* line 203, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-right-full ul li {
    color: #333333;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
  }
  /* line 700, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-right-full .figure-flt {
    width: 100%;
    float: none;
    margin-right: 0;
    margin-top: -10px;
    text-align: center;
  }
  /* line 709, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-single #horizontalTab .resp-tabs-list {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
  }
  /* line 57, modules/_framework.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-single #horizontalTab .resp-tabs-list:before {
    content: '';
    display: table;
    line-height: 0;
  }
  /* line 62, modules/_framework.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-single #horizontalTab .resp-tabs-list:after {
    content: '';
    display: table;
    line-height: 0;
    clear: both;
  }
  /* line 68, modules/_framework.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-single #horizontalTab .resp-tabs-list > * {
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 0;
    margin-bottom: 0;
    width: 33.33333%;
  }
  /* line 78, modules/_framework.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-single #horizontalTab .resp-tabs-list > *:nth-child(n) {
    clear: none;
  }
  /* line 83, modules/_framework.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-single #horizontalTab .resp-tabs-list > *:nth-child(3n-2) {
    clear: both;
  }
  /* line 88, modules/_framework.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-single #horizontalTab .resp-tabs-list > *:nth-child(3n) {
    float: right;
    margin-right: 0;
  }
  /* line 94, modules/_framework.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-single #horizontalTab .resp-tabs-list > *:nth-last-child(-n + 3) {
    margin-bottom: 0;
  }
  /* line 711, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-single #horizontalTab .resp-tabs-list li {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  /* line 718, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-single #horizontalTab .resp-tabs-container h2 {
    margin-bottom: -1px;
    display: none;
  }
  /* line 730, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-single #horizontalTab .resp-tabs-container .resp-tab-active {
    border-top: 5px solid #e51b24 !important;
  }
  /* line 733, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-single #horizontalTab .resp-tabs-container figure {
    text-align: center;
  }
  /* line 739, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleA {
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
    width: 100%;
  }
  /* line 139, modules/_framework.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleA:last-child {
    margin-right: 0;
  }
  /* line 143, modules/_framework.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleA:last-child {
    float: right;
  }
  /* line 742, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleB {
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
    width: 100%;
  }
  /* line 139, modules/_framework.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleB:last-child {
    margin-right: 0;
  }
  /* line 143, modules/_framework.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleB:last-child {
    float: right;
  }
  /* line 745, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleC {
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
    width: 100%;
  }
  /* line 139, modules/_framework.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleC:last-child {
    margin-right: 0;
  }
  /* line 143, modules/_framework.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleC:last-child {
    float: right;
  }
  /* line 748, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleD {
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
    width: 100%;
  }
  /* line 139, modules/_framework.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleD:last-child {
    margin-right: 0;
  }
  /* line 143, modules/_framework.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-doubleD:last-child {
    float: right;
  }
}
/* Large Tablet Ends */
/* ================================
 * Small Tablet $misc-2-canvas: 980px;
 * ================================ */
/* Small Tablet Ends */
/* ================================
 * Mobile
 * ================================ */
@media (max-width: 400px) {
  /* line 768, partials/_maininnerframe.scss */
  #main-content #left-navigation {
    display: none;
  }
  /* line 769, partials/_maininnerframe.scss */
  #main-content #right-contentarea {
    height: auto !important;
    margin-top: 0;
    margin-bottom: 0;
    background: url("../images/backgrounds/sliderShadow.png") repeat-x scroll 0 0 transparent;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 10px;
    display: block;
    background-color: white;
    position: relative;
  }
  /* line 776, partials/_maininnerframe.scss */
  #main-content #right-contentarea #bread-crumb {
    display: none;
  }
  /* line 779, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame {
    padding-bottom: 0;
  }
  /* line 783, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-head .social-shares p {
    display: none;
  }
  /* line 789, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-left .large {
    display: none !important;
  }
  /* line 792, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-left .figure-nav {
    text-align: center;
    padding-right: 0;
  }
  /* line 798, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-right .tiny {
    display: block !important;
  }
  /* line 804, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-right-full .gbutton a {
    float: right;
    padding: 5px 15px;
    margin-left: 0;
  }
  /* line 811, partials/_maininnerframe.scss */
  #main-content #right-contentarea #content-frame #content-frame-right #inner-right-single .inner-right-full .rbutton a {
    float: right;
    padding: 5px 15px;
  }
}
/* Mobile Ends */
/* ================================
 * Footer Styles
 * ================================ */
/* line 4, partials/_footer.scss */
#site-footer {
  background-color: #00539b;
  color: white;
  padding-top: 35px;
  padding-bottom: 60px;
  border-top-weight: 3px;
  border-top-style: solid;
  border-top-color: #e51b24;
}
/* line 16, partials/_footer.scss */
#site-footer .connect-to-cbus {
  background-color: white;
  padding: 5px 15px;
  color: #747474;
  overflow: hidden;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
/* line 110, modules/_framework.scss */
#site-footer .connect-to-cbus:before {
  content: '';
  display: table;
  line-height: 0;
}
/* line 115, modules/_framework.scss */
#site-footer .connect-to-cbus:after {
  content: '';
  display: table;
  line-height: 0;
  clear: both;
}
/* line 22, partials/_footer.scss */
#site-footer .connect-to-cbus .logo-foo {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 29.875%;
  font-size: 18px;
  font-family: 'gotham_bookregular',Arial, Helvetica, sans-serif;
}
/* line 139, modules/_framework.scss */
#site-footer .connect-to-cbus .logo-foo:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
#site-footer .connect-to-cbus .logo-foo:last-child {
  float: right;
}
/* line 26, partials/_footer.scss */
#site-footer .connect-to-cbus .logo-foo span {
  color: #d21921;
  font-family: 'gotham_mediumregular',Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}
/* line 32, partials/_footer.scss */
#site-footer .connect-to-cbus .social-foo {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 68.125%;
}
/* line 139, modules/_framework.scss */
#site-footer .connect-to-cbus .social-foo:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
#site-footer .connect-to-cbus .social-foo:last-child {
  float: right;
}
/* line 34, partials/_footer.scss */
#site-footer .connect-to-cbus .social-foo ul {
  padding: 0;
  margin: 0;
  position: relative;
  top: 3px;
  float: right;
}
/* line 40, partials/_footer.scss */
#site-footer .connect-to-cbus .social-foo ul li {
  list-style: none;
  display: inline-block;
  height: 24px;
  width: auto;
  border-left: 1px solid #c2c2c2;
  padding-left: 12px;
  padding-right: 12px;
}
/* line 49, partials/_footer.scss */
#site-footer .connect-to-cbus .social-foo ul li:first-child {
  border: none;
  padding-left: 0;
}
/* line 53, partials/_footer.scss */
#site-footer .connect-to-cbus .social-foo ul li:last-child {
  padding-right: 0;
}
/* line 56, partials/_footer.scss */
#site-footer .connect-to-cbus .social-foo ul li a {
  color: #747474;
  font-size: 12px;
  text-decoration: none;
  text-transform: capitalize;
}
/* line 62, partials/_footer.scss */
#site-footer .connect-to-cbus .social-foo ul li a img {
  margin-right: 10px;
  vertical-align: top;
}
/* line 66, partials/_footer.scss */
#site-footer .connect-to-cbus .social-foo ul li a span {
  vertical-align: middle;
}
/* line 68, partials/_footer.scss */
#site-footer .connect-to-cbus .social-foo ul li a span img {
  margin: 0;
  vertical-align: middle;
}
/* line 78, partials/_footer.scss */
#site-footer .quick-access {
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-top: 15px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
}
/* line 110, modules/_framework.scss */
#site-footer .quick-access:before {
  content: '';
  display: table;
  line-height: 0;
}
/* line 115, modules/_framework.scss */
#site-footer .quick-access:after {
  content: '';
  display: table;
  line-height: 0;
  clear: both;
}
/* line 85, partials/_footer.scss */
#site-footer .quick-access .copy-right {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 23.5%;
  letter-spacing: 0.5px;
}
/* line 139, modules/_framework.scss */
#site-footer .quick-access .copy-right:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
#site-footer .quick-access .copy-right:last-child {
  float: right;
}
/* line 89, partials/_footer.scss */
#site-footer .quick-access .site-map {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 74.5%;
  text-align: right;
}
/* line 139, modules/_framework.scss */
#site-footer .quick-access .site-map:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
#site-footer .quick-access .site-map:last-child {
  float: right;
}
/* line 92, partials/_footer.scss */
#site-footer .quick-access .site-map a {
  text-decoration: none;
  color: white;
  padding: 0 5px;
  letter-spacing: 0.5px;
}

/* ================================
 * Large Tablet
 * ================================ */
@media (max-width: 800px) {
  /* line 107, partials/_footer.scss */
  #site-footer .grid-container {
    padding: 0;
  }
  /* line 110, partials/_footer.scss */
  #site-footer .grid-container .connect-to-cbus .logo-foo {
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
    width: 100%;
  }
  /* line 139, modules/_framework.scss */
  #site-footer .grid-container .connect-to-cbus .logo-foo:last-child {
    margin-right: 0;
  }
  /* line 143, modules/_framework.scss */
  #site-footer .grid-container .connect-to-cbus .logo-foo:last-child {
    float: right;
  }
  /* line 113, partials/_footer.scss */
  #site-footer .grid-container .connect-to-cbus .social-foo {
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
    width: 100%;
  }
  /* line 139, modules/_framework.scss */
  #site-footer .grid-container .connect-to-cbus .social-foo:last-child {
    margin-right: 0;
  }
  /* line 143, modules/_framework.scss */
  #site-footer .grid-container .connect-to-cbus .social-foo:last-child {
    float: right;
  }
  /* line 115, partials/_footer.scss */
  #site-footer .grid-container .connect-to-cbus .social-foo ul {
    position: relative;
    top: 0;
    float: none;
  }
  /* line 119, partials/_footer.scss */
  #site-footer .grid-container .connect-to-cbus .social-foo ul li {
    border: none;
    padding: 10px 0 10px 14%;
  }
  /* line 122, partials/_footer.scss */
  #site-footer .grid-container .connect-to-cbus .social-foo ul li:first-child {
    padding-left: 0;
  }
  /* line 126, partials/_footer.scss */
  #site-footer .grid-container .connect-to-cbus .social-foo ul li a img {
    margin-right: 0;
  }
  /* line 129, partials/_footer.scss */
  #site-footer .grid-container .connect-to-cbus .social-foo ul li a span {
    display: none;
  }
  /* line 137, partials/_footer.scss */
  #site-footer .grid-container .quick-access {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 0 2.44141%;
  }
  /* line 110, modules/_framework.scss */
  #site-footer .grid-container .quick-access:before {
    content: '';
    display: table;
    line-height: 0;
  }
  /* line 115, modules/_framework.scss */
  #site-footer .grid-container .quick-access:after {
    content: '';
    display: table;
    line-height: 0;
    clear: both;
  }
  /* line 140, partials/_footer.scss */
  #site-footer .grid-container .quick-access .copy-right {
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
    width: 100%;
  }
  /* line 139, modules/_framework.scss */
  #site-footer .grid-container .quick-access .copy-right:last-child {
    margin-right: 0;
  }
  /* line 143, modules/_framework.scss */
  #site-footer .grid-container .quick-access .copy-right:last-child {
    float: right;
  }
  /* line 143, partials/_footer.scss */
  #site-footer .grid-container .quick-access .site-map {
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
    width: 100%;
    text-align: left;
  }
  /* line 139, modules/_framework.scss */
  #site-footer .grid-container .quick-access .site-map:last-child {
    margin-right: 0;
  }
  /* line 143, modules/_framework.scss */
  #site-footer .grid-container .quick-access .site-map:last-child {
    float: right;
  }
}
/* ================================
 * Small Tablet
 * ================================ */
@media (max-width: 600px) {
  /* line 157, partials/_footer.scss */
  #site-footer {
    padding-top: 20px;
  }
  /* line 159, partials/_footer.scss */
  #site-footer .grid-container {
    padding: 0;
  }
  /* line 162, partials/_footer.scss */
  #site-footer .grid-container .connect-to-cbus .logo-foo {
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
    width: 100%;
    text-align: center;
  }
  /* line 139, modules/_framework.scss */
  #site-footer .grid-container .connect-to-cbus .logo-foo:last-child {
    margin-right: 0;
  }
  /* line 143, modules/_framework.scss */
  #site-footer .grid-container .connect-to-cbus .logo-foo:last-child {
    float: right;
  }
  /* line 166, partials/_footer.scss */
  #site-footer .grid-container .connect-to-cbus .social-foo {
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
    width: 100%;
  }
  /* line 139, modules/_framework.scss */
  #site-footer .grid-container .connect-to-cbus .social-foo:last-child {
    margin-right: 0;
  }
  /* line 143, modules/_framework.scss */
  #site-footer .grid-container .connect-to-cbus .social-foo:last-child {
    float: right;
  }
  /* line 168, partials/_footer.scss */
  #site-footer .grid-container .connect-to-cbus .social-foo ul {
    position: relative;
    top: 0;
    float: none;
    text-align: center;
  }
  /* line 173, partials/_footer.scss */
  #site-footer .grid-container .connect-to-cbus .social-foo ul li {
    border: none;
    padding: 10px 0 10px 14%;
  }
  /* line 176, partials/_footer.scss */
  #site-footer .grid-container .connect-to-cbus .social-foo ul li:first-child {
    padding-left: 0;
  }
  /* line 180, partials/_footer.scss */
  #site-footer .grid-container .connect-to-cbus .social-foo ul li a img {
    margin-right: 0;
  }
  /* line 183, partials/_footer.scss */
  #site-footer .grid-container .connect-to-cbus .social-foo ul li a span {
    display: none;
  }
  /* line 191, partials/_footer.scss */
  #site-footer .grid-container .quick-access {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 0 2.44141%;
    font-size: 16px;
  }
  /* line 110, modules/_framework.scss */
  #site-footer .grid-container .quick-access:before {
    content: '';
    display: table;
    line-height: 0;
  }
  /* line 115, modules/_framework.scss */
  #site-footer .grid-container .quick-access:after {
    content: '';
    display: table;
    line-height: 0;
    clear: both;
  }
  /* line 195, partials/_footer.scss */
  #site-footer .grid-container .quick-access .copy-right {
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
    width: 100%;
  }
  /* line 139, modules/_framework.scss */
  #site-footer .grid-container .quick-access .copy-right:last-child {
    margin-right: 0;
  }
  /* line 143, modules/_framework.scss */
  #site-footer .grid-container .quick-access .copy-right:last-child {
    float: right;
  }
  /* line 198, partials/_footer.scss */
  #site-footer .grid-container .quick-access .site-map {
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
    width: 100%;
    text-align: left;
  }
  /* line 139, modules/_framework.scss */
  #site-footer .grid-container .quick-access .site-map:last-child {
    margin-right: 0;
  }
  /* line 143, modules/_framework.scss */
  #site-footer .grid-container .quick-access .site-map:last-child {
    float: right;
  }
  /* line 201, partials/_footer.scss */
  #site-footer .grid-container .quick-access .site-map a {
    padding: 0;
  }
}
/* ================================
 * Mobile
 * ================================ */
@media (max-width: 400px) {
  /* line 214, partials/_footer.scss */
  #site-footer {
    padding-top: 20px;
  }
  /* line 216, partials/_footer.scss */
  #site-footer .grid-container {
    padding: 0;
  }
  /* line 219, partials/_footer.scss */
  #site-footer .grid-container .connect-to-cbus .logo-foo {
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
    width: 100%;
    text-align: center;
  }
  /* line 139, modules/_framework.scss */
  #site-footer .grid-container .connect-to-cbus .logo-foo:last-child {
    margin-right: 0;
  }
  /* line 143, modules/_framework.scss */
  #site-footer .grid-container .connect-to-cbus .logo-foo:last-child {
    float: right;
  }
  /* line 223, partials/_footer.scss */
  #site-footer .grid-container .connect-to-cbus .social-foo {
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
    width: 100%;
  }
  /* line 139, modules/_framework.scss */
  #site-footer .grid-container .connect-to-cbus .social-foo:last-child {
    margin-right: 0;
  }
  /* line 143, modules/_framework.scss */
  #site-footer .grid-container .connect-to-cbus .social-foo:last-child {
    float: right;
  }
  /* line 225, partials/_footer.scss */
  #site-footer .grid-container .connect-to-cbus .social-foo ul {
    position: relative;
    top: 0;
    float: none;
    text-align: center;
  }
  /* line 230, partials/_footer.scss */
  #site-footer .grid-container .connect-to-cbus .social-foo ul li {
    border: none;
    padding: 10px 0 10px 40px;
  }
  /* line 233, partials/_footer.scss */
  #site-footer .grid-container .connect-to-cbus .social-foo ul li:first-child {
    padding-left: 0;
  }
  /* line 237, partials/_footer.scss */
  #site-footer .grid-container .connect-to-cbus .social-foo ul li a img {
    margin-right: 0;
  }
  /* line 240, partials/_footer.scss */
  #site-footer .grid-container .connect-to-cbus .social-foo ul li a span {
    display: none;
  }
  /* line 248, partials/_footer.scss */
  #site-footer .grid-container .quick-access {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 0 2.44141%;
    font-size: 16px;
    margin-top: 5px;
  }
  /* line 110, modules/_framework.scss */
  #site-footer .grid-container .quick-access:before {
    content: '';
    display: table;
    line-height: 0;
  }
  /* line 115, modules/_framework.scss */
  #site-footer .grid-container .quick-access:after {
    content: '';
    display: table;
    line-height: 0;
    clear: both;
  }
  /* line 253, partials/_footer.scss */
  #site-footer .grid-container .quick-access .copy-right {
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
    width: 100%;
  }
  /* line 139, modules/_framework.scss */
  #site-footer .grid-container .quick-access .copy-right:last-child {
    margin-right: 0;
  }
  /* line 143, modules/_framework.scss */
  #site-footer .grid-container .quick-access .copy-right:last-child {
    float: right;
  }
  /* line 256, partials/_footer.scss */
  #site-footer .grid-container .quick-access .site-map {
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 2%;
    width: 100%;
    text-align: left;
  }
  /* line 139, modules/_framework.scss */
  #site-footer .grid-container .quick-access .site-map:last-child {
    margin-right: 0;
  }
  /* line 143, modules/_framework.scss */
  #site-footer .grid-container .quick-access .site-map:last-child {
    float: right;
  }
  /* line 259, partials/_footer.scss */
  #site-footer .grid-container .quick-access .site-map a {
    padding: 0;
  }
}
/* ================================
 * Misc Media Screens - 2
 * ================================ */
@media (max-width: 600px), (min-width: 800px) {
  /* line 276, partials/_footer.scss */
  #site-footer .connect-to-cbus .social-foo ul {
    text-align: center;
  }
  /* line 278, partials/_footer.scss */
  #site-footer .connect-to-cbus .social-foo ul li {
    border-left: 0px;
    margin-bottom: 5px;
  }
}
/* ================================
 * Map Styles
 * ================================ */
/* -- Google Map Canvas -- */
/* line 6, partials/_maps.scss */
#map-canvas {
  margin: 1em 0;
  height: 350px;
}
/* line 10, partials/_maps.scss */
#map-canvas img {
  max-width: none;
}

/* -- Map Search Listing -- */
/* line 17, partials/_maps.scss */
.map-search-results h5 {
  margin: 1em 0 !important;
  text-transform: uppercase !important;
  font-size: 13px !important;
}
/* line 22, partials/_maps.scss */
.map-search-results ol {
  margin: 0 !important;
  list-style: none;
}
/* line 26, partials/_maps.scss */
.map-search-results ol > li {
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-bottom: 12px;
  padding: 0 0 12px;
  background: url('/images/backgrounds/sdbLine.png?1380220591') 0 100% repeat-x;
}
/* line 110, modules/_framework.scss */
.map-search-results ol > li:before {
  content: '';
  display: table;
  line-height: 0;
}
/* line 115, modules/_framework.scss */
.map-search-results ol > li:after {
  content: '';
  display: table;
  line-height: 0;
  clear: both;
}
/* line 32, partials/_maps.scss */
.map-search-results ol > li:last-child {
  background: none;
}
/* line 37, partials/_maps.scss */
.map-search-results ol > li:nth-child(1) .address-details {
  background-position: 0 -672px;
}
/* line 37, partials/_maps.scss */
.map-search-results ol > li:nth-child(2) .address-details {
  background-position: 0 -588px;
}
/* line 37, partials/_maps.scss */
.map-search-results ol > li:nth-child(3) .address-details {
  background-position: 0 -504px;
}
/* line 37, partials/_maps.scss */
.map-search-results ol > li:nth-child(4) .address-details {
  background-position: 0 -756px;
}
/* line 37, partials/_maps.scss */
.map-search-results ol > li:nth-child(5) .address-details {
  background-position: 0 -924px;
}
/* line 37, partials/_maps.scss */
.map-search-results ol > li:nth-child(6) .address-details {
  background-position: 0 -1176px;
}
/* line 37, partials/_maps.scss */
.map-search-results ol > li:nth-child(7) .address-details {
  background-position: 0 -420px;
}
/* line 37, partials/_maps.scss */
.map-search-results ol > li:nth-child(8) .address-details {
  background-position: 0 -840px;
}
/* line 37, partials/_maps.scss */
.map-search-results ol > li:nth-child(9) .address-details {
  background-position: 0 -1008px;
}
/* line 37, partials/_maps.scss */
.map-search-results ol > li:nth-child(10) .address-details {
  background-position: 0 -1092px;
}
/* line 37, partials/_maps.scss */
.map-search-results ol > li:nth-child(11) .address-details {
  background-position: 0 -84px;
}
/* line 37, partials/_maps.scss */
.map-search-results ol > li:nth-child(12) .address-details {
  background-position: 0 -336px;
}
/* line 37, partials/_maps.scss */
.map-search-results ol > li:nth-child(13) .address-details {
  background-position: 0 -168px;
}
/* line 37, partials/_maps.scss */
.map-search-results ol > li:nth-child(14) .address-details {
  background-position: 0 -252px;
}
/* line 37, partials/_maps.scss */
.map-search-results ol > li:nth-child(15) .address-details {
  background-position: 0 0;
}
/* line 43, partials/_maps.scss */
.map-search-results ul {
  margin: 0 !important;
  list-style: none;
}
/* line 47, partials/_maps.scss */
.map-search-results ul > li {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  font-size: 12px !important;
}
/* line 51, partials/_maps.scss */
.map-search-results ul > li:after {
  content: ' |';
}
/* line 54, partials/_maps.scss */
.map-search-results ul > li:last-child:after {
  content: '';
}
/* line 58, partials/_maps.scss */
.map-search-results ul a {
  text-decoration: none;
  color: #e51b24;
}
/* line 63, partials/_maps.scss */
.map-search-results p {
  margin-bottom: 0 !important;
}
/* line 66, partials/_maps.scss */
.map-search-results p a {
  text-decoration: none;
  color: #e51b24;
  font-style: italic;
  font-weight: 600;
}
/* line 73, partials/_maps.scss */
.map-search-results .address-details {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 74.5%;
  padding-left: 25px;
  background-image: url('/images/icons/google-maps-sc8d453832f.png');
  background-repeat: no-repeat;
}
/* line 139, modules/_framework.scss */
.map-search-results .address-details:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
.map-search-results .address-details:last-child {
  float: right;
}
/* line 79, partials/_maps.scss */
.map-search-results .address-image {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 23.5%;
}
/* line 139, modules/_framework.scss */
.map-search-results .address-image:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
.map-search-results .address-image:last-child {
  float: right;
}
/* line 82, partials/_maps.scss */
.map-search-results .p-label {
  font-weight: 600;
}

/* -- Map Detail Page -- */
/* line 88, partials/_maps.scss */
.location-details {
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
/* line 110, modules/_framework.scss */
.location-details:before {
  content: '';
  display: table;
  line-height: 0;
}
/* line 115, modules/_framework.scss */
.location-details:after {
  content: '';
  display: table;
  line-height: 0;
  clear: both;
}
/* line 91, partials/_maps.scss */
.location-details ul {
  margin: 0 !important;
  list-style: none;
}
/* line 95, partials/_maps.scss */
.location-details ul > li {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  font-size: 12px !important;
}
/* line 99, partials/_maps.scss */
.location-details ul > li:after {
  content: ' |';
}
/* line 102, partials/_maps.scss */
.location-details ul > li:last-child:after {
  content: '';
}
/* line 106, partials/_maps.scss */
.location-details ul a {
  text-decoration: none;
  color: #e51b24;
}
/* line 111, partials/_maps.scss */
.location-details .address-details {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 49%;
}
/* line 139, modules/_framework.scss */
.location-details .address-details:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
.location-details .address-details:last-child {
  float: right;
}
/* line 114, partials/_maps.scss */
.location-details .address-details p {
  margin-bottom: 0 !important;
}
/* line 118, partials/_maps.scss */
.location-details .p-label {
  font-weight: 600;
}
/* line 121, partials/_maps.scss */
.location-details .location-info {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 49%;
  font: 12px/18px Arial, Helvetica, sans-serif;
}
/* line 139, modules/_framework.scss */
.location-details .location-info:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
.location-details .location-info:last-child {
  float: right;
}
/* line 125, partials/_maps.scss */
.location-details .location-info dt {
  float: left;
  clear: both;
  margin-right: 2%;
  width: 23.5%;
  font-weight: 600;
}
/* line 132, partials/_maps.scss */
.location-details .location-info dd {
  float: right;
  width: 74.5%;
}

/* line 138, partials/_maps.scss */
.location-image {
  margin: 12px 0;
}

/* line 141, partials/_maps.scss */
.back-to-listing {
  margin-bottom: 0 !important;
}
/* line 144, partials/_maps.scss */
.back-to-listing a {
  text-decoration: none;
  color: #e51b24;
  font-style: italic;
  font-weight: 600;
}

/* ================================
 * Content Accordion Styling
 * ================================ */
/* -- General -- */
/* line 7, partials/_accordions.scss */
.content-accordion h3 {
  margin: 0;
  padding: 10px 0 7px;
  text-transform: uppercase;
  font-weight: 600;
  color: black;
  background: url('/images/backgrounds/sdbLine.png?1380220591') repeat-x;
}
/* line 15, partials/_accordions.scss */
.content-accordion h3:first-child {
  background: none;
}
/* line 19, partials/_accordions.scss */
.content-accordion > div {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}
/* line 23, partials/_accordions.scss */
.content-accordion a {
  text-decoration: none;
  color: #e51b24;
}
/* line 27, partials/_accordions.scss */
.content-accordion li {
  font-size: 12px !important;
}

/* -- jQuery UI -- */
/* line 34, partials/_accordions.scss */
.content-accordion .ui-accordion-header {
  position: relative;
  padding-left: 15px;
  cursor: pointer;
}
/* line 39, partials/_accordions.scss */
.content-accordion .ui-accordion-header:focus {
  outline: none;
}
/* line 43, partials/_accordions.scss */
.content-accordion .ui-accordion-header-icon {
  position: absolute;
  left: 0;
  margin: 7px 5px 0 0;
  width: 10px;
  height: 9px;
  background: url('/images/icons/widgets-s78ef9ede08.png') 0 -60px;
}
/* line 51, partials/_accordions.scss */
.content-accordion .ui-accordion-header-active .ui-accordion-header-icon {
  margin-top: 8px;
  background: url('/images/icons/widgets-s78ef9ede08.png') 0 -99px;
}
/* line 55, partials/_accordions.scss */
.content-accordion .ui-accordion-content {
  margin-left: 15px;
}

/* ================================
 * Listing Styles
 * ================================ */
/* -- Misc. Definition Lists -- */
/* line 6, partials/_lists.scss */
.simple-definitions, .info-grid dl {
  margin: 0 0 1em;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
}
/* line 11, partials/_lists.scss */
.simple-definitions:after, .info-grid dl:after {
  content: '';
  display: block;
  clear: both;
}
/* line 16, partials/_lists.scss */
.simple-definitions dt, .info-grid dl dt {
  clear: both;
  float: left;
  margin-right: 2%;
  width: 32%;
  text-align: right;
  font-weight: 600;
}
/* line 24, partials/_lists.scss */
.simple-definitions dd, .info-grid dl dd {
  float: right;
  width: 66%;
}
/* line 28, partials/_lists.scss */
.simple-definitions a, .info-grid dl a {
  text-decoration: none;
  color: #e51b24;
}

/* -- Contact Lists -- */
/* line 35, partials/_lists.scss */
.contact-header {
  text-transform: none !important;
  letter-spacing: inherit !important;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}

/* line 41, partials/_lists.scss */
.contact-definitions {
  margin-bottom: 1em;
}
/* line 44, partials/_lists.scss */
.contact-definitions dt {
  display: inline;
  font-weight: 600;
}
/* line 48, partials/_lists.scss */
.contact-definitions dd {
  display: inline;
}
/* line 51, partials/_lists.scss */
.contact-definitions dd:after {
  content: '';
  display: block;
}

/* -- Document Listing -- */
/* line 59, partials/_lists.scss */
.document-list {
  margin: 0 0 1em;
  padding: 0;
  list-style: none;
}
/* line 64, partials/_lists.scss */
.document-list a {
  display: block;
  padding-left: 21px;
  line-height: 24px;
  color: black;
  background-image: url('/images/icons/file-types-s4c672d1cef.png');
  background-repeat: no-repeat;
}
/* line 73, partials/_lists.scss */
.document-list a:hover, .document-list a:focus {
  color: #e51b24;
}
/* line 78, partials/_lists.scss */
.document-list .pdf-item a {
  background-position: 0 3px;
}

/* ================================
 * Grid Layouts
 * ================================ */
/* -- Grid Boxes -- */
/* line 6, partials/_grids.scss */
.info-grid {
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}
/* line 57, modules/_framework.scss */
.info-grid:before {
  content: '';
  display: table;
  line-height: 0;
}
/* line 62, modules/_framework.scss */
.info-grid:after {
  content: '';
  display: table;
  line-height: 0;
  clear: both;
}
/* line 68, modules/_framework.scss */
.info-grid > * {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 5%;
  margin-bottom: 5%;
  width: 47.5%;
}
/* line 78, modules/_framework.scss */
.info-grid > *:nth-child(n) {
  clear: none;
}
/* line 83, modules/_framework.scss */
.info-grid > *:nth-child(2n-1) {
  clear: both;
}
/* line 88, modules/_framework.scss */
.info-grid > *:nth-child(2n) {
  float: right;
  margin-right: 0;
}
/* line 94, modules/_framework.scss */
.info-grid > *:nth-last-child(-n + 2) {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  /* line 164, modules/_framework.scss */
  .info-grid > * {
    margin: 1em 0 2em !important;
    float: none !important;
    width: 100% !important;
  }
}
/* line 15, partials/_grids.scss */
.info-grid h4 {
  padding-bottom: .5em;
  border-bottom: 1px solid #eaeaea;
  text-transform: none !important;
  letter-spacing: inherit !important;
}
/* line 21, partials/_grids.scss */
.info-grid a {
  text-decoration: none;
  color: #e51b24;
}
/* line 28, partials/_grids.scss */
.info-grid dl dt {
  width: 23.5%;
  text-align: left;
  font-weight: normal;
}
/* line 33, partials/_grids.scss */
.info-grid dl dd {
  width: 74.5%;
}
/* line 37, partials/_grids.scss */
.info-grid .print-page {
  margin-bottom: 1em;
}

/* -- Logos and Addresses -- */
/* line 43, partials/_grids.scss */
.logo-and-address {
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-bottom: 1em;
}
/* line 110, modules/_framework.scss */
.logo-and-address:before {
  content: '';
  display: table;
  line-height: 0;
}
/* line 115, modules/_framework.scss */
.logo-and-address:after {
  content: '';
  display: table;
  line-height: 0;
  clear: both;
}
/* line 47, partials/_grids.scss */
.logo-and-address .logo {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 38.8%;
}
/* line 139, modules/_framework.scss */
.logo-and-address .logo:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
.logo-and-address .logo:last-child {
  float: right;
}
/* line 50, partials/_grids.scss */
.logo-and-address .h-adr {
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-right: 2%;
  width: 59.2%;
}
/* line 139, modules/_framework.scss */
.logo-and-address .h-adr:last-child {
  margin-right: 0;
}
/* line 143, modules/_framework.scss */
.logo-and-address .h-adr:last-child {
  float: right;
}
/* line 56, partials/_grids.scss */
.logo-and-address .p-street-address,
.logo-and-address .p-locality,
.logo-and-address .p-region,
.logo-and-address .p-postal-code {
  font-weight: 600;
}

/* ================================
 * Widget Styling
 * ================================ */
/* -- Combo Boxes -- */
/* line 5, partials/_widgets.scss */
.combo-box-wrapper {
  margin-bottom: 1.5em;
}

/* line 8, partials/_widgets.scss */
.combo-box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 !important;
  width: 100%;
}

/* -- Search Boxes -- */
/* line 18, partials/_widgets.scss */
.search-box-wrapper {
  position: relative;
}
/* line 21, partials/_widgets.scss */
.search-box-wrapper input[type=submit] {
  position: absolute;
  top: 5.5px;
  right: 5px;
  margin: 0;
  padding: 0;
  width: 16px;
  height: 15px;
  border-width: 0;
  text-indent: 100%;
  white-space: nowrap;
  background: url('/images/icons/widgets-s78ef9ede08.png') 100% 0 no-repeat;
}

/* line 35, partials/_widgets.scss */
.search-box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 !important;
  padding-right: 26px !important;
  width: 100%;
}

/* -- Print Page Feature -- */
/* line 43, partials/_widgets.scss */
.print-page {
  display: block;
  clear: both;
  margin-bottom: 1em;
  width: 100%;
  text-align: right;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
}
/* line 52, partials/_widgets.scss */
.print-page a {
  padding-left: 21px;
  text-decoration: none;
  line-height: 15px;
  color: #e51b24;
  background: url('/images/icons/widgets-s78ef9ede08.png') 0 -15px no-repeat;
}

/* ================================
 * Specific Overrides for Main Content
 * ================================ */
/* -- General -- */
/* line 6, partials/_framed-content.scss */
.framed-content {
  -webkit-box-shadow: 0 21px 21px -12px #939393;
  -moz-box-shadow: 0 21px 21px -12px #939393;
  box-shadow: 0 21px 21px -12px #939393;
  margin: 20px 0;
  padding: 20px;
  font-size: 1.4em;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #fff;
}
/* line 15, partials/_framed-content.scss */
.framed-content h1, .framed-content h2, .framed-content h3, .framed-content h4, .framed-content h5, .framed-content h6 {
  margin: 0;
}
/* line 18, partials/_framed-content.scss */
.framed-content h1 {
  text-transform: uppercase;
}
/* line 21, partials/_framed-content.scss */
.framed-content p, .framed-content ul, .framed-content ol, .framed-content dl, .framed-content table {
  margin-bottom: 1em;
}
/* line 24, partials/_framed-content.scss */
.framed-content ul, .framed-content ol {
  margin-left: .67em;
  padding-left: .67em;
}

/* ================================
 * Third Party
 * ================================ */
