/* **********************************************************
 * Include foundational CSS files to ease development
 * ******************************************************* */
/*! normalize.css v2.0.1 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/* 
 * Apply a natural box layout model to all elements
 * http://paulirish.com/2012/box-sizing-border-box-ftw/ 
 */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Address styling not present in IE 8/9.
 */
[hidden] {
  display: none;
}
/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */

  -webkit-text-size-adjust: 100%;
  /* 2 */

  -ms-text-size-adjust: 100%;
  /* 2 */

}
/**
 * Remove default margin.
 */
body {
  margin: 0;
}
/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}
/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}
/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong {
  font-weight: bold;
}
/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic;
}
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}
/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}
/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap;
}
/**
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}
/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* ==========================================================================
   Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}
/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}
/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}
/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
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.
 */
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.
 */
button,
input {
  line-height: normal;
}
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */

  cursor: pointer;
  /* 3 */

}
/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}
/**
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 */
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).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */

  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */

  box-sizing: content-box;
}
/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Remove inner padding and border in Firefox 4+.
 */
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.
 */
textarea {
  overflow: auto;
  /* 1 */

  vertical-align: top;
  /* 2 */

}
/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/*
 * HTML5 Boilerplate 4.1.0
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html,
button,
input,
select,
textarea {
  color: #222;
}
body {
  font-size: 1em;
  line-height: 1.4;
}
/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection declarations have to be separate.
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}
/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
/*
 * Remove the gap between images and the bottom of their containers: h5bp.com/i/440
 */
img {
  vertical-align: middle;
}
/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}
/* ==========================================================================
   Chrome Frame prompt
   ========================================================================== */
.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Image replacement
 */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* IE 6/7 fallback */

  *text-indent: -9999px;
}
.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%;
}
/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden;
}
/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
/*
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden;
}
/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
.clearfix:after {
  clear: both;
}
/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.clearfix {
  *zoom: 1;
}
/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   Theses examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}
@media print, (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}
/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
  
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
       * Don't show links for images, or javascript/internal links
       */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
    /* h5bp.com/t */
  
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page  {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
/* **********************************************************
 *  Document Setup
 * ******************************************************* */
/* **********************************************************
 *  Colors
 * ******************************************************* */
/* **********************************************************
 *  Mixins
 * ******************************************************* */
/* **********************************************************
 * Only layout rules that apply globally. Layout rules 
 * pertinent to templates and components should be in 
 * their respective files
 * ******************************************************* */
.template {
  background-color: #ffffff;
}
.container {
  min-width: 320px;
}
header {
  background-color: #ffffff;
}
@media (max-width: 599px) {
  body {
    overflow-x: hidden;
    width: 100%;
  }
  .container {
    width: 100%;
  }
  .template {
    padding-top: 64px;
    /*overflow-x: hidden;*/
    margin-left: 0;
    -webkit-transition: margin-left 0.25s linear 0s;
    -moz-transition: margin-left 0.25s linear 0s;
    -ms-transition: margin-left 0.25s linear 0s;
    transition: margin-left 0.25s linear 0s;
  }
  .template.slide {
    margin-left: 100%;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .header.container {
    width: 590px;
  }
}
/*!
 *  Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
/*
@font-face {
  font-family: "FontAwesome";
  src: url("@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}");
  src: url("@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}") format("embedded-opentype"),
    url("@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}") format("woff"),
    url("@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}") format("truetype"),
    url("@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular") format("svg");
//  src: url("@{fa-font-path}/FontAwesome.otf") format("opentype"); // used when developing fonts
  font-weight: normal;
  font-style: normal;
}
*/
@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontawesome/fontawesome-webfont.eot?") format("embedded-opentype");/* for IE */
}
@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontawesome/fontawesome-webfont.woff?v=4.0.3") format("woff"), url("../fonts/fontawesome/fontawesome-webfont.ttf?v=4.0.3") format("truetype"), url("../fonts/fontawesome/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;/* for non-IE */
}
.fa {
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.3333333333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.2857142857142858em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.142857142857143em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.142857142857143em;
  width: 2.142857142857143em;
  top: 0.14285714285714285em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.8571428571428572em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  transform: scale(1, -1);
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-asc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-desc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-reply-all:before {
  content: "\f122";
}
.fa-mail-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.tracking50 {
  letter-spacing: 0.05em;
  /* Tracking: 50 */

}
.tracking75 {
  letter-spacing: 0.075em;
  /* Tracking: 75 */

}
.tracking100 {
  letter-spacing: 0.10em;
  /* Tracking: 100 */

}
/* **********************************************************
 *  Custom Fonts
 *  3rd Party: Typekit
 * ******************************************************* */
@font-face {
  font-family: "itc_officina_serif_std_bookBd";
  src: url("../fonts/OfficinaSerifStd-Bold/officinaserifstd-bold-webfont.eot");
  src: url("../fonts/OfficinaSerifStd-Bold/officinaserifstd-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/OfficinaSerifStd-Bold/officinaserifstd-bold-webfont.woff") format("woff"), url("../fonts/OfficinaSerifStd-Bold/officinaserifstd-bold-webfont.ttf") format("truetype"), url("../fonts/OfficinaSerifStd-Bold/officinaserifstd-bold-webfont.svg#itc_officina_serif_std_bookBd") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "open_sansbold";
  src: url("../fonts/opensans_bold_macroman/OpenSans-Bold-webfont.eot");
  src: url("../fonts/opensans_bold_macroman/OpenSans-Bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/opensans_bold_macroman/OpenSans-Bold-webfont.woff") format("woff"), url("../fonts/opensans_bold_macroman/OpenSans-Bold-webfont.ttf") format("truetype"), url("../fonts/opensans_bold_macroman/OpenSans-Bold-webfont.svg#open_sansbold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "open_sansitalic";
  src: url("../fonts/opensans_italic_macroman/OpenSans-Italic-webfont.eot");
  src: url("../fonts/opensans_italic_macroman/OpenSans-Italic-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/opensans_italic_macroman/OpenSans-Italic-webfont.woff") format("woff"), url("../fonts/opensans_italic_macroman/OpenSans-Italic-webfont.ttf") format("truetype"), url("../fonts/opensans_italic_macroman/OpenSans-Italic-webfont.svg#open_sansitalic") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "open_sansregular";
  src: url("../fonts/opensans_regular_macroman/OpenSans-Regular-webfont.eot");
  src: url("../fonts/opensans_regular_macroman/OpenSans-Regular-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/opensans_regular_macroman/OpenSans-Regular-webfont.woff") format("woff"), url("../fonts/opensans_regular_macroman/OpenSans-Regular-webfont.ttf") format("truetype"), url("../fonts/opensans_regular_macroman/OpenSans-Regular-webfont.svg#open_sansregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* **********************************************************
 *  Type Styles 
 *  (EMs based on font size of 10px)
 * ******************************************************* */
.f-nav-feature-body {
  font: 400 1.2em Arial;
  /* 12px */

  color: #666666;
  line-height: 1.4em;
  letter-spacing: 0.075em;
  /* Tracking: 75 */

}
.f-nav-drop-down-link {
  font: 700 1.4em Arial;
  /* 14px */

  color: #19598C;
}
@media (min-width: 600px) and (max-width: 959px) {
  .f-nav-drop-down-link {
    font: 700 1.4em Arial;
    /* 14px */
  
  }
}
@media (max-width: 599px) {
  .f-nav-drop-down-link {
    font: 400 1.6em "open_sansregular", serif;
    /* 16px */
  
  }
}
@media (max-width: 599px) {
  .f-nav-drop-down-link-selected {
    color: #003F77;
  }
}
.f-nav-search-input-field {
  font: 400 1.2em Arial;
  /* 12px */

  color: #B5B9C6;
}
@media (max-width: 599px) {
  .f-nav-search-input-field {
    font: 400 1.4em Arial;
    /* 14px */
  
  }
}
.f-nav-main-tabs {
  font: 400 1.2em "open_sansbold", serif;
  /* 12px */

  color: #ffffff;
  letter-spacing: 0.10em;
  /* Tracking: 100 */

}
@media (min-width: 600px) and (max-width: 959px) {
  .f-nav-main-tabs {
    font: 400 1.1em "open_sansbold", serif;
    /* 11px */
  
    color: #ccdae5;
  }
}
@media (max-width: 599px) {
  .f-nav-main-tabs {
    font: 400 1.6em "open_sansregular", serif;
    /* 16px */
  
    color: #ccdae5;
  }
}
.f-nav-main-tabs-selected {
  font: 400 1.2em "open_sansbold", serif;
  /* 12px */

  color: #19598c;
}
@media (min-width: 600px) and (max-width: 959px) {
  .f-nav-main-tabs-selected {
    font: 400 1.1em "open_sansbold", serif;
    /* 11px */
  }
}
@media (max-width: 599px) {
  .f-nav-main-tabs-selected {
    font: 400 1.2em "open_sansbold", serif;
    /* 12px */
  
  }
}
.f-nav-utility {
  font: 400 1.1em "open_sansbold", serif;
  /* 11px */

  color: #6A737B;
}
@media (min-width: 600px) and (max-width: 959px) {
  .f-nav-utility {
    font: 400 1em "open_sansbold", serif;
    /* 10px */
  
  }
}
@media (max-width: 599px) {
  .f-nav-utility {
    font: 400 1.6em "open_sansbold", serif;
    /* 12px */
  
  }
}
.f-nav-utility-selected {
  font: 400 1.1em "open_sansbold", serif;
  /* 12px */

  color: #003F77;
}
@media (min-width: 600px) and (max-width: 959px) {
  .f-nav-utility-selected {
    font: 400 1em "open_sansbold", serif;
    /* 10px */
  
  }
}
@media (max-width: 599px) {
  .f-nav-utility-selected {
    font: 400 1.6em "open_sansbold", serif;
    /* 16px */
  
  }
}
.f-leftnav-parent {
  color: #666666;
  font: 400 1.3em "open_sansbold", serif;
  /* 13px */

  letter-spacing: 0.05em;
  /* Tracking: 50 */

}
@media (max-width: 599px) {
  .f-leftnav-parent {
    font: 400 1.6em "open_sansbold", serif;
    /* 16px */
  
    color: #B4B9BD;
  }
}
.f-leftnav-self {
  font: 400 1.3em "open_sansbold", serif;
  /* 13px */

  color: #19598C;
  letter-spacing: 0.05em;
  /* Tracking: 50 */

}
@media (max-width: 599px) {
  .f-leftnav-self {
    font: 400 1.6em "open_sansbold", serif;
    /* 16px */
  
    color: #ffffff;
  }
}
.f-leftnav-child {
  font: 400 1.3em "open_sansregular", serif;
  /* 13px */

  color: #666666;
  letter-spacing: 0.05em;
  /* Tracking: 50 */

}
@media (max-width: 599px) {
  .f-leftnav-child {
    font: 400 1.6em "open_sansregular", serif;
    /* 16px */
  
    color: #05487E;
  }
}
.f-leftnav-subpage-selected {
  font: 400 1.3em "open_sansbold", serif;
  /* 13px */

  color: #19598C;
}
.f-leftnav-subpage-default {
  font: 400 1.3em "open_sansbold", serif;
  /* 13px */

  color: #666666;
}
.f-leftnav-tertiary-default {
  font: 400 1.3em "open_sansregular", serif;
  /* 13px */

  color: #4D4D4D;
}
.f-body-title1 {
  font: 400 3.6em "open_sansregular", serif;
  /* 36px */

  color: #19598C;
}
@media (min-width: 600px) and (max-width: 959px) {
  .f-body-title1 {
    font: 400 3.2em "open_sansregular", serif;
    /* 32px */
  
  }
}
@media (max-width: 599px) {
  .f-body-title1 {
    font: 400 2.2em "open_sansregular", serif;
    /* 22px */
  
  }
}
.f-body-title2 {
  font: 700 2.2em Arial;
  /* 22px */

  color: #19598C;
}
@media (min-width: 600px) and (max-width: 959px) {
  .f-body-title2 {
    font: 700 2em Arial;
    /* 20px */
  
  }
}
@media (max-width: 599px) {
  .f-body-title2 {
    font: 700 1.8em Arial;
    /* 18px */
  
  }
}
.f-body-body {
  font: 400 1.6em Arial;
  /* 16px */

  color: #737373;
}
@media (min-width: 600px) and (max-width: 959px) {
  .f-body-body {
    font: 400 1.4em Arial;
    /* 14px */
  
  }
}
@media (max-width: 599px) {
  .f-body-body {
    font: 400 1.4em Arial;
    /* 14px */
  
  }
}
.f-body-breadcrumb {
  font: 400 1.2em Arial;
  /* 12px */

  color: #808080;
}
.f-body-bullets {
  font: 400  1.4em Arial;
  /* 14px */

  color: #737373;
}
.f-body-title3 {
  font: 700 1.6em Arial;
  /* 16px */

  color: #404040;
}
.f-text-link {
  font: 700 1.4em Arial;
  /* 14px */

  color: #48B8D2;
}
.f-title-link2 {
  font: 700 1.8em Arial;
  /* 18px */

  color: #48B8D2;
}
.f-text-link-footer {
  font: 400 1em Arial;
  /* 10px */

  color: #737373;
}
.f-buttons-on-dark {
  font: 700 1.2em Arial;
  /* 12px */

  color: #ffffff;
}
.f-buttons-on-white {
  font: 700 1.2em Arial;
  /* 12px */

  color: #737373;
}
.f-footer-links {
  font: 700 1em Arial;
  /* 10px */

  color: #666666;
}
.f-footer-disclaimer {
  font: 400 1em Arial;
  /* 10px */

  color: #808080;
}
.f-footer-body {
  font: 400 1.4em Arial;
  /* 14px */

  color: #808080;
}
.f-carousel-title {
  font: 400 3.4em "itc_officina_serif_std_bookBd", serif;
  /* 34px */

  color: #FFFFFF;
}
@media (min-width: 600px) and (max-width: 959px) {
  .f-carousel-title {
    font: 400 2.6em "itc_officina_serif_std_bookBd", serif;
    /* 26px */
  
  }
}
@media (max-width: 599px) {
  .f-carousel-title {
    font: 400 2.2em "itc_officina_serif_std_bookBd", serif;
    /* 22px */
  
  }
}
.f-carousel-body {
  font: 400 1.4em Arial;
  /* 14px */

  color: #FFFFFF;
}
@media (min-width: 600px) and (max-width: 959px) {
  .f-carousel-body {
    font: 400 1.3em Arial;
    /* 13px */
  
  }
}
@media (max-width: 599px) {
  .f-carousel-body {
    font: 400 1.3em Arial;
    /* 13px */
  
  }
}
.f-feature1-label {
  font: 400 1.2em "open_sansbold", serif;
  /* 12px */

  color: #E6F4FA;
  letter-spacing: 0.10em;
  /* Tracking: 100 */

}
@media (max-width: 599px) {
  .f-feature1-label {
    font: 400 1em "open_sansbold", serif;
    /* 10px */
  
  }
}
.f-feature1-title {
  font: 700 2.4em Arial;
  /* 24px */

  color: #4D4D4D;
}
@media (min-width: 600px) and (max-width: 959px) {
  .f-feature1-title {
    font: 700 2.2em Arial;
    /* 22px */
  
  }
}
@media (max-width: 599px) {
  .f-feature1-title {
    font: 700 1.8em Arial;
    /* 18px */
  
  }
}
.f-feature2-label {
  font: 400 1.2em "open_sansbold", serif;
  /* 12px */

  color: #FFFFFF;
  letter-spacing: 0.10em;
  /* Tracking: 100 */

}
@media (max-width: 599px) {
  .f-feature2-label {
    font: 400 1em "open_sansbold", serif;
    /* 10px */
  
  }
}
.f-feature2-title {
  font: 700 2.4em Arial;
  /* 24px */

  color: #FFFFFF;
}
@media (max-width: 599px) {
  .f-feature2-title {
    font: 700 1.8em Arial;
    /* 18px */
  
  }
}
.f-feature2-body {
  font: 400 1.4em Arial;
  /* 14px */

  color: #FFFFFF;
}
.f-image-tile1-title {
  font: 700 1.8em Arial;
  /* 18px */

  color: #19598C;
}
@media (min-width: 600px) and (max-width: 959px) {
  .f-image-tile1-title {
    font: 700 1.6em Arial;
    /* 16px */
  
  }
}
@media (max-width: 599px) {
  .f-image-tile1-title {
    font: 700 1.6em Arial;
    /* 16px */
  
  }
}
.f-image-tile2-title1 {
  font: 700 2.8em Arial;
  /* 28px */

  color: #84C019;
}
.f-image-tile2-title2 {
  font: 700 1.8em Arial;
  /* 18px */

  color: #ADD566;
}
.f-image-tile2-body {
  font: 400 1.4em Arial;
  /* 14px */

  color: #737373;
}
.f-rightrail-title {
  font: 700 1.8em Arial;
  /* 18px */

  color: #404040;
}
@media (min-width: 600px) and (max-width: 959px) {
  .f-rightrail-title {
    font: 700 2em Arial;
    /* 18px */
  
  }
}
.f-rightrail-quote {
  font: 400 1.6em "open_sansitalic", serif;
  /* 16px */
  color: #999999;
}
.f-rightrail-body {
  font: 400 1.4em Arial;
  /* 14px */
  color: #737373;
}
.f-rightrail-body-label {
  font: 700 1.2em Arial;
  /* 12px */
  color: #666666;
  letter-spacing: 0.075em;
  /* Tracking: 75 */

}
.f-rightrail-subbody {
  font: 400 1.1em Arial;
  /* 11px */
  color: #999999;
}
.f-rightrail-newsfeed-month {
  font: 700 1.4em Arial;
  /* 14px */
  color: #404040;
}
.f-rightrail-newsfeed-day {
  font: 700 2.2em Arial;
  /* 22px */
  color: #404040;
}
.f-reset-no-underline {
  font-size: 1.0em;
  text-decoration: none;
}
.f-reset-no-underline:hover {
  text-decoration: none;
}
/* **********************************************************
 * Truly global & generic declarations. Tread lightly.
 * ******************************************************* */
* {
  margin: 0;
  padding: 0;
}
.content-container {
  width: 960px;
  margin: 0 auto;
}
.flex-container {
  min-width: 960px;
  max-width: 960px;
  margin: 0 auto;
}
/* Tie image to its containing element */
img.flex {
  width: 100%;
}
/* Center-aligned list element */
.centered-list {
  width: 100%;
}
.centered-list > ul {
  list-style: none;
  position: relative;
  float: left;
  display: block;
  left: 50%;
}
.centered-list > ul > li {
  position: relative;
  float: left;
  display: block;
  right: 50%;
}
/* Error States for Input */
.error-message {
  color: #ff0000;
  display: none;
  font-weight: bold;
}
.success {
  color: #7ac142;
  display: none;
}
.strikethrough {
  color: #555555;
  text-decoration: line-through;
}
/* GK 3-19-2014: FORMS BELOW */
.template form {
  font-family: Arial;
  font-size: 1.6em;
  font-weight: 400;
  color: #8A8C8E;
  /* FORM STYLES */

  /* ROWS */
  /* LEFT */

  /* RIGHT */

  /* CHECKBOXES, RADIOS */

}
.template form .form_leftcolmark,
.template form .form_rightcolmark {
  display: none;
}
.template form select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background: #ffffff url('../img/icons/select-arrow.png') 95% center no-repeat;
  background-size: 10px auto;
  border: 1px solid #dbdbdb;
  color: #404040;
  font-weight: bold;
  padding: 10px 15px;
  text-indent: 0.01px;
  text-overflow: '';
  width: 100%;
}
.template form textarea,
.template form input[type="text"],
.template form input[type="password"],
.template form .form_field_text {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #dbdbdb;
  color: #8A8C8E;
  font-size: 16px;
  padding: 7px 15px;
  width: 100% !important;
}
.template form textarea.warning,
.template form input[type="text"].warning,
.template form input[type="password"].warning,
.template form .form_field_text.warning {
  border: 1px solid #ff0000;
}
.template form .radio,
.template form .checkbox {
  margin-bottom: 0;
  margin-top: 0;
  padding-left: 0;
}
.template form button,
.template form input[type="button"],
.template form input[type="submit"] {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background: #269AD0;
  border: none;
  color: #ffffff;
  outline: 0;
  padding: 7px 15px;
  text-align: center;
}
.template form .form_row,
.template form div.form_address_state,
.template form .checkbox,
.template form .radio {
  *zoom: 1;
  margin-bottom: 20px;
}
.template form .form_row:before,
.template form div.form_address_state:before,
.template form .checkbox:before,
.template form .radio:before,
.template form .form_row:after,
.template form div.form_address_state:after,
.template form .checkbox:after,
.template form .radio:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
.template form .form_row:after,
.template form div.form_address_state:after,
.template form .checkbox:after,
.template form .radio:after {
  clear: both;
}
.template form .form_row:before,
.template form div.form_address_state:before,
.template form .checkbox:before,
.template form .radio:before,
.template form .form_row:after,
.template form div.form_address_state:after,
.template form .checkbox:after,
.template form .radio:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
.template form .form_row:after,
.template form div.form_address_state:after,
.template form .checkbox:after,
.template form .radio:after {
  clear: both;
}
@media (max-width: 959px) {
  .template form .form_row,
  .template form div.form_address_state,
  .template form .checkbox,
  .template form .radio {
    margin-bottom: 15px;
  }
}
.template form div.form_address_zip {
  clear: both;
}
.template form .form_leftcol,
.template form .form_row_description {
  float: left;
  margin-right: 5%;
  width: 30%;
}
@media (max-width: 959px) {
  .template form .form_leftcol,
  .template form .form_row_description {
    float: none;
    margin-right: 0;
    width: 100%;
  }
}
.template form .form_leftcol .form_leftcollabel,
.template form .form_row_description label {
  padding-top: 7px;
}
.template form .form_rightcol#text_rightcol,
.template form .form_rightcol .form_field_text,
.template form .form_rightcol .form_field_password,
.template form .form_rightcol .textinput,
.template form .form_rightcol .form_address_country,
.template form .form_rightcol .form_captcha_input,
.template form .form_rightcol .form_captcha_img,
.template form .form_rightcol .form_captcha_refresh,
.template form .form_rightcol .form_field_file,
.template form .form_rightcol .x-form-field-wrap,
.template form .form_rightcol .x-panel-body {
  display: inline-block;
  float: right;
  width: 65% !important;
}
@media (max-width: 959px) {
  .template form .form_rightcol#text_rightcol,
  .template form .form_rightcol .form_field_text,
  .template form .form_rightcol .form_field_password,
  .template form .form_rightcol .textinput,
  .template form .form_rightcol .form_address_country,
  .template form .form_rightcol .form_captcha_input,
  .template form .form_rightcol .form_captcha_img,
  .template form .form_rightcol .form_captcha_refresh,
  .template form .form_rightcol .form_field_file,
  .template form .form_rightcol .x-form-field-wrap,
  .template form .form_rightcol .x-panel-body {
    width: 100% !important;
  }
}
.template form .form_rightcol .form_captcha_input .form_field_text {
  width: 100% !important;
}
.template form .form_rightcol .form_button_submit {
  float: right;
  min-width: 175px;
}
.template form .checkbox label,
.template form .radio label {
  cursor: auto;
  display: block;
}
.template form .checkbox input[type="checkbox"],
.template form .radio input[type="checkbox"],
.template form .checkbox input[type="radio"],
.template form .radio input[type="radio"] {
  margin-bottom: 10px;
  margin-left: 0;
}
.template form .checkbox .form_row,
.template form .radio .form_row {
  display: inline-block;
  float: right;
  margin-bottom: 0;
  width: 65%;
}
@media (max-width: 959px) {
  .template form .checkbox .form_row,
  .template form .radio .form_row {
    float: none;
    width: 100%;
  }
}
.template form .checkbox .form_row:first-child,
.template form .radio .form_row:first-child {
  float: left;
  width: 30%;
}
@media (max-width: 959px) {
  .template form .checkbox .form_row:first-child,
  .template form .radio .form_row:first-child {
    width: 100%;
  }
  .template form .checkbox .form_row:first-child .form_leftcollabel,
  .template form .radio .form_row:first-child .form_leftcollabel {
    margin-bottom: 5px;
  }
}
.template form .checkbox .form_row:first-child .form_leftcol,
.template form .radio .form_row:first-child .form_leftcol {
  width: 100%;
}
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
a {
  background: transparent;
}
a:focus {
  outline: thin dotted;
}
a:active,
a:hover {
  outline: 0;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
mark {
  background: #ff0;
  color: #000;
}
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}
pre {
  white-space: pre-wrap;
}
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 0;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}
button,
input {
  line-height: normal;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
@media print {
  * {
    text-shadow: none !important;
    color: #000 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page  {
    margin: 2cm .5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  select {
    background: #fff !important;
  }
  .navbar {
    display: none;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: Arial, sans-serif;
  font-size: 10px;
  line-height: 1.428571429;
  color: #333333;
  background-color: #ffffff;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #428bca;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #2a6496;
  text-decoration: underline;
}
a:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
img {
  vertical-align: middle;
}
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  padding: 4px;
  line-height: 1.428571429;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out 1s ease-out 0s;
  -moz-transition: all 0.2s ease-in-out 1s ease-out 0s;
  -ms-transition: all 0.2s ease-in-out 1s ease-out 0s;
  transition: all 0.2s ease-in-out 1s ease-out 0s;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 14px;
  margin-bottom: 14px;
  border: 0;
  border-top: 1px solid #eeeeee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
p {
  margin: 0 0 7px;
}
.lead {
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 200;
  line-height: 1.4;
}
@media (min-width: 600px) {
  .lead {
    font-size: 15px;
  }
}
small,
.small {
  font-size: 85%;
}
cite {
  font-style: normal;
}
.text-muted {
  color: #999999;
}
.text-primary {
  color: #428bca;
}
.text-primary:hover {
  color: #3071a9;
}
.text-warning {
  color: #c09853;
}
.text-warning:hover {
  color: #a47e3c;
}
.text-danger {
  color: #b94a48;
}
.text-danger:hover {
  color: #953b39;
}
.text-success {
  color: #468847;
}
.text-success:hover {
  color: #356635;
}
.text-info {
  color: #3a87ad;
}
.text-info:hover {
  color: #2d6987;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: Arial, sans-serif;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #999999;
}
h1,
h2,
h3 {
  margin-top: 14px;
  margin-bottom: 7px;
}
h1 small,
h2 small,
h3 small,
h1 .small,
h2 .small,
h3 .small {
  font-size: 65%;
}
h4,
h5,
h6 {
  margin-top: 7px;
  margin-bottom: 7px;
}
h4 small,
h5 small,
h6 small,
h4 .small,
h5 .small,
h6 .small {
  font-size: 75%;
}
h1,
.h1 {
  font-size: 26px;
}
h2,
.h2 {
  font-size: 21px;
}
h3,
.h3 {
  font-size: 17px;
}
h4,
.h4 {
  font-size: 13px;
}
h5,
.h5 {
  font-size: 10px;
}
h6,
.h6 {
  font-size: 9px;
}
.page-header {
  padding-bottom: 6px;
  margin: 28px 0 14px;
  border-bottom: 1px solid #eeeeee;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 7px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  list-style: none;
}
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
.list-inline > li:first-child {
  padding-left: 0;
}
dl {
  margin-bottom: 14px;
}
dt,
dd {
  line-height: 1.428571429;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
@media (min-width: 600px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
    *zoom: 1;
  }
  .dl-horizontal dd:before,
  .dl-horizontal dd:after {
    content: " ";
    /* 1 */
  
    display: table;
    /* 2 */
  
  }
  .dl-horizontal dd:after {
    clear: both;
  }
  .dl-horizontal dd:before,
  .dl-horizontal dd:after {
    content: " ";
    /* 1 */
  
    display: table;
    /* 2 */
  
  }
  .dl-horizontal dd:after {
    clear: both;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #999999;
}
abbr.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 7px 14px;
  margin: 0 0 14px;
  border-left: 5px solid #eeeeee;
}
blockquote p {
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.25;
}
blockquote p:last-child {
  margin-bottom: 0;
}
blockquote small {
  display: block;
  line-height: 1.428571429;
  color: #999999;
}
blockquote small:before {
  content: '\2014 \00A0';
}
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
}
blockquote.pull-right p,
blockquote.pull-right small,
blockquote.pull-right .small {
  text-align: right;
}
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
  content: '';
}
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}
blockquote:before,
blockquote:after {
  content: "";
}
address {
  margin-bottom: 14px;
  font-style: normal;
  line-height: 1.428571429;
}
code,
kbd,
pre,
samp {
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
}
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  white-space: nowrap;
  border-radius: 4px;
}
pre {
  display: block;
  padding: 6.5px;
  margin: 0 0 7px;
  font-size: 9px;
  line-height: 1.428571429;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f5f5f5;
  border: 1px solid #cccccc;
  border-radius: 4px;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 5px;
  padding-right: 5px;
  *zoom: 1;
}
.container:before,
.container:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
.container:after {
  clear: both;
}
.container:before,
.container:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
.container:after {
  clear: both;
}
.row {
  margin-left: -5px;
  margin-right: -5px;
  *zoom: 1;
}
.row:before,
.row:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
.row:after {
  clear: both;
}
.row:before,
.row:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
.row:after {
  clear: both;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666666666666%;
}
.col-xs-10 {
  width: 83.33333333333334%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666666666666%;
}
.col-xs-7 {
  width: 58.333333333333336%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666666666667%;
}
.col-xs-4 {
  width: 33.33333333333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.666666666666664%;
}
.col-xs-1 {
  width: 8.333333333333332%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666666666666%;
}
.col-xs-pull-10 {
  right: 83.33333333333334%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666666666666%;
}
.col-xs-pull-7 {
  right: 58.333333333333336%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666666666667%;
}
.col-xs-pull-4 {
  right: 33.33333333333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.666666666666664%;
}
.col-xs-pull-1 {
  right: 8.333333333333332%;
}
.col-xs-pull-0 {
  right: 0%;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666666666666%;
}
.col-xs-push-10 {
  left: 83.33333333333334%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666666666666%;
}
.col-xs-push-7 {
  left: 58.333333333333336%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666666666667%;
}
.col-xs-push-4 {
  left: 33.33333333333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.666666666666664%;
}
.col-xs-push-1 {
  left: 8.333333333333332%;
}
.col-xs-push-0 {
  left: 0%;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666666666666%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333333334%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666666666666%;
}
.col-xs-offset-7 {
  margin-left: 58.333333333333336%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666666666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.666666666666664%;
}
.col-xs-offset-1 {
  margin-left: 8.333333333333332%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 600px) {
  .container {
    width: 600px;
  }
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666666666666%;
  }
  .col-sm-10 {
    width: 83.33333333333334%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666666666666%;
  }
  .col-sm-7 {
    width: 58.333333333333336%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666666666667%;
  }
  .col-sm-4 {
    width: 33.33333333333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.666666666666664%;
  }
  .col-sm-1 {
    width: 8.333333333333332%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666666666666%;
  }
  .col-sm-pull-10 {
    right: 83.33333333333334%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666666666666%;
  }
  .col-sm-pull-7 {
    right: 58.333333333333336%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666666666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.666666666666664%;
  }
  .col-sm-pull-1 {
    right: 8.333333333333332%;
  }
  .col-sm-pull-0 {
    right: 0%;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666666666666%;
  }
  .col-sm-push-10 {
    left: 83.33333333333334%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666666666666%;
  }
  .col-sm-push-7 {
    left: 58.333333333333336%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666666666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.666666666666664%;
  }
  .col-sm-push-1 {
    left: 8.333333333333332%;
  }
  .col-sm-push-0 {
    left: 0%;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666666666666%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333333334%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666666666666%;
  }
  .col-sm-offset-7 {
    margin-left: 58.333333333333336%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666666666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.666666666666664%;
  }
  .col-sm-offset-1 {
    margin-left: 8.333333333333332%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 960px) {
  .container {
    width: 950px;
  }
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666666666666%;
  }
  .col-md-10 {
    width: 83.33333333333334%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666666666666%;
  }
  .col-md-7 {
    width: 58.333333333333336%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666666666667%;
  }
  .col-md-4 {
    width: 33.33333333333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.666666666666664%;
  }
  .col-md-1 {
    width: 8.333333333333332%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666666666666%;
  }
  .col-md-pull-10 {
    right: 83.33333333333334%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666666666666%;
  }
  .col-md-pull-7 {
    right: 58.333333333333336%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666666666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.666666666666664%;
  }
  .col-md-pull-1 {
    right: 8.333333333333332%;
  }
  .col-md-pull-0 {
    right: 0%;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666666666666%;
  }
  .col-md-push-10 {
    left: 83.33333333333334%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666666666666%;
  }
  .col-md-push-7 {
    left: 58.333333333333336%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666666666667%;
  }
  .col-md-push-4 {
    left: 33.33333333333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.666666666666664%;
  }
  .col-md-push-1 {
    left: 8.333333333333332%;
  }
  .col-md-push-0 {
    left: 0%;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666666666666%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333333334%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666666666666%;
  }
  .col-md-offset-7 {
    margin-left: 58.333333333333336%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666666666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.666666666666664%;
  }
  .col-md-offset-1 {
    margin-left: 8.333333333333332%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1336px) {
  .container {
    width: 950px;
  }
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666666666666%;
  }
  .col-lg-10 {
    width: 83.33333333333334%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666666666666%;
  }
  .col-lg-7 {
    width: 58.333333333333336%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666666666667%;
  }
  .col-lg-4 {
    width: 33.33333333333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.666666666666664%;
  }
  .col-lg-1 {
    width: 8.333333333333332%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666666666666%;
  }
  .col-lg-pull-10 {
    right: 83.33333333333334%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666666666666%;
  }
  .col-lg-pull-7 {
    right: 58.333333333333336%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666666666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.666666666666664%;
  }
  .col-lg-pull-1 {
    right: 8.333333333333332%;
  }
  .col-lg-pull-0 {
    right: 0%;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666666666666%;
  }
  .col-lg-push-10 {
    left: 83.33333333333334%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666666666666%;
  }
  .col-lg-push-7 {
    left: 58.333333333333336%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666666666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.666666666666664%;
  }
  .col-lg-push-1 {
    left: 8.333333333333332%;
  }
  .col-lg-push-0 {
    left: 0%;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666666666666%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333333334%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666666666666%;
  }
  .col-lg-offset-7 {
    margin-left: 58.333333333333336%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666666666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.666666666666664%;
  }
  .col-lg-offset-1 {
    margin-left: 8.333333333333332%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
table {
  max-width: 100%;
  background-color: transparent;
}
th {
  text-align: left;
}
.table {
  width: 100%;
  margin-bottom: 14px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.428571429;
  vertical-align: top;
  border-top: 1px solid #dddddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #dddddd;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #dddddd;
}
.table .table {
  background-color: #ffffff;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}
.table-bordered {
  border: 1px solid #dddddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #dddddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
  background-color: #f5f5f5;
}
table col[class*="col-"] {
  float: none;
  display: table-column;
}
table td[class*="col-"],
table th[class*="col-"] {
  float: none;
  display: table-cell;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}
@media (max-width: 1335px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 10.5px;
    overflow-y: hidden;
    overflow-x: scroll;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #dddddd;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: normal;
}
input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  /* IE8-9 */

  line-height: normal;
}
input[type="file"] {
  display: block;
}
select[multiple],
select[size] {
  height: auto;
}
select optgroup {
  font-size: inherit;
  font-style: inherit;
  font-family: inherit;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  height: auto;
}
output {
  display: block;
  padding-top: 7px;
  font-size: 10px;
  line-height: 1.428571429;
  color: #555555;
  vertical-align: middle;
}
.form-control {
  display: block;
  width: 100%;
  height: 28px;
  padding: 6px 12px;
  font-size: 10px;
  line-height: 1.428571429;
  color: #555555;
  vertical-align: middle;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s 1s ease-out 0s;
  -moz-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s 1s ease-out 0s;
  -ms-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s 1s ease-out 0s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s 1s ease-out 0s;
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  color: #000000;
  font-family: Arial;
  font-size: 13px;
  text-align: left;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control:-moz-placeholder {
  color: #999999;
}
.form-control::-moz-placeholder {
  color: #999999;
}
.form-control:-ms-input-placeholder {
  color: #999999;
}
.form-control::-webkit-input-placeholder {
  color: #999999;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #eeeeee;
}
textarea.form-control {
  height: auto;
}
.form-group {
  margin-bottom: 15px;
}
.radio,
.checkbox {
  display: block;
  min-height: 14px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
  vertical-align: middle;
}
.radio label,
.checkbox label {
  display: inline;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  float: left;
  margin-left: -20px;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
.radio[disabled],
.radio-inline[disabled],
.checkbox[disabled],
.checkbox-inline[disabled],
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"],
fieldset[disabled] .radio,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}
.input-sm {
  height: 25px;
  padding: 5px 10px;
  font-size: 9px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-sm {
  height: 25px;
  line-height: 25px;
}
textarea.input-sm {
  height: auto;
}
.input-lg {
  height: 39px;
  padding: 10px 16px;
  font-size: 13px;
  line-height: 1.33;
  border-radius: 6px;
}
select.input-lg {
  height: 39px;
  line-height: 39px;
}
textarea.input-lg {
  height: auto;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline {
  color: #c09853;
}
.has-warning .form-control {
  border-color: #c09853;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
  border-color: #a47e3c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
}
.has-warning .input-group-addon {
  color: #c09853;
  border-color: #c09853;
  background-color: #fcf8e3;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
  color: #b94a48;
}
.has-error .form-control {
  border-color: #b94a48;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
  border-color: #953b39;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
}
.has-error .input-group-addon {
  color: #b94a48;
  border-color: #b94a48;
  background-color: #f2dede;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline {
  color: #468847;
}
.has-success .form-control {
  border-color: #468847;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
  border-color: #356635;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
}
.has-success .input-group-addon {
  color: #468847;
  border-color: #468847;
  background-color: #dff0d8;
}
.form-control-static {
  margin-bottom: 0;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}
@media (min-width: 600px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    float: none;
    margin-left: 0;
  }
}
.form-horizontal .control-label,
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px;
}
.form-horizontal .form-group {
  margin-left: -5px;
  margin-right: -5px;
  *zoom: 1;
}
.form-horizontal .form-group:before,
.form-horizontal .form-group:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
.form-horizontal .form-group:after {
  clear: both;
}
.form-horizontal .form-group:before,
.form-horizontal .form-group:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
.form-horizontal .form-group:after {
  clear: both;
}
.form-horizontal .form-control-static {
  padding-top: 7px;
}
@media (min-width: 600px) {
  .form-horizontal .control-label {
    text-align: right;
  }
}
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 10px;
  line-height: 1.428571429;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.btn:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus {
  color: #333333;
  text-decoration: none;
}
.btn:active,
.btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  pointer-events: none;
  -moz-opacity: 0.65;
  -khtml-opacity: 0.65;
  -webkit-opacity: 0.65;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=65);
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-default {
  color: #333333;
  background-color: #ffffff;
  border-color: #cccccc;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
  color: #333333;
  background-color: #ebebeb;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  background-color: #ffffff;
  border-color: #cccccc;
}
.btn-primary {
  color: #ffffff;
  background-color: #428bca;
  border-color: #357ebd;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  color: #ffffff;
  background-color: #3276b1;
  border-color: #285e8e;
}
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  background-color: #428bca;
  border-color: #357ebd;
}
.btn-warning {
  color: #ffffff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.open .dropdown-toggle.btn-warning {
  color: #ffffff;
  background-color: #ed9c28;
  border-color: #d58512;
}
.btn-warning:active,
.btn-warning.active,
.open .dropdown-toggle.btn-warning {
  background-image: none;
}
.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-danger {
  color: #ffffff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.open .dropdown-toggle.btn-danger {
  color: #ffffff;
  background-color: #d2322d;
  border-color: #ac2925;
}
.btn-danger:active,
.btn-danger.active,
.open .dropdown-toggle.btn-danger {
  background-image: none;
}
.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-success {
  color: #ffffff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
  color: #ffffff;
  background-color: #47a447;
  border-color: #398439;
}
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
  background-image: none;
}
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-info {
  color: #ffffff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.open .dropdown-toggle.btn-info {
  color: #ffffff;
  background-color: #39b3d7;
  border-color: #269abc;
}
.btn-info:active,
.btn-info.active,
.open .dropdown-toggle.btn-info {
  background-image: none;
}
.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-link {
  color: #428bca;
  font-weight: normal;
  cursor: pointer;
  border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
  color: #2a6496;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #999999;
  text-decoration: none;
}
.btn-lg {
  padding: 10px 16px;
  font-size: 13px;
  line-height: 1.33;
  border-radius: 6px;
}
.btn-sm,
.btn-xs {
  padding: 5px 10px;
  font-size: 9px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-xs {
  padding: 1px 5px;
}
.btn-block {
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}
.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}
.media,
.media .media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}
.media-object {
  display: block;
}
.media-heading {
  margin: 0 0 5px;
}
.media > .pull-left {
  margin-right: 10px;
}
.media > .pull-right {
  margin-left: 10px;
}
.media-list {
  padding-left: 0;
  list-style: none;
}
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}
.well-lg {
  padding: 24px;
  border-radius: 6px;
}
.well-sm {
  padding: 9px;
  border-radius: 3px;
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
.clearfix:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
  visibility: hidden !important;
}
.affix {
  position: fixed;
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
tr.visible-xs,
th.visible-xs,
td.visible-xs {
  display: none !important;
}
@media (max-width: 599px) {
  .visible-xs {
    display: block !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .visible-xs.visible-sm {
    display: block !important;
  }
  tr.visible-xs.visible-sm {
    display: table-row !important;
  }
  th.visible-xs.visible-sm,
  td.visible-xs.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 960px) and (max-width: 1335px) {
  .visible-xs.visible-md {
    display: block !important;
  }
  tr.visible-xs.visible-md {
    display: table-row !important;
  }
  th.visible-xs.visible-md,
  td.visible-xs.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 1336px) {
  .visible-xs.visible-lg {
    display: block !important;
  }
  tr.visible-xs.visible-lg {
    display: table-row !important;
  }
  th.visible-xs.visible-lg,
  td.visible-xs.visible-lg {
    display: table-cell !important;
  }
}
.visible-sm,
tr.visible-sm,
th.visible-sm,
td.visible-sm {
  display: none !important;
}
@media (max-width: 599px) {
  .visible-sm.visible-xs {
    display: block !important;
  }
  tr.visible-sm.visible-xs {
    display: table-row !important;
  }
  th.visible-sm.visible-xs,
  td.visible-sm.visible-xs {
    display: table-cell !important;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .visible-sm {
    display: block !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 960px) and (max-width: 1335px) {
  .visible-sm.visible-md {
    display: block !important;
  }
  tr.visible-sm.visible-md {
    display: table-row !important;
  }
  th.visible-sm.visible-md,
  td.visible-sm.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 1336px) {
  .visible-sm.visible-lg {
    display: block !important;
  }
  tr.visible-sm.visible-lg {
    display: table-row !important;
  }
  th.visible-sm.visible-lg,
  td.visible-sm.visible-lg {
    display: table-cell !important;
  }
}
.visible-md,
tr.visible-md,
th.visible-md,
td.visible-md {
  display: none !important;
}
@media (max-width: 599px) {
  .visible-md.visible-xs {
    display: block !important;
  }
  tr.visible-md.visible-xs {
    display: table-row !important;
  }
  th.visible-md.visible-xs,
  td.visible-md.visible-xs {
    display: table-cell !important;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .visible-md.visible-sm {
    display: block !important;
  }
  tr.visible-md.visible-sm {
    display: table-row !important;
  }
  th.visible-md.visible-sm,
  td.visible-md.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 960px) and (max-width: 1335px) {
  .visible-md {
    display: block !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 1336px) {
  .visible-md.visible-lg {
    display: block !important;
  }
  tr.visible-md.visible-lg {
    display: table-row !important;
  }
  th.visible-md.visible-lg,
  td.visible-md.visible-lg {
    display: table-cell !important;
  }
}
.visible-lg,
tr.visible-lg,
th.visible-lg,
td.visible-lg {
  display: none !important;
}
@media (max-width: 599px) {
  .visible-lg.visible-xs {
    display: block !important;
  }
  tr.visible-lg.visible-xs {
    display: table-row !important;
  }
  th.visible-lg.visible-xs,
  td.visible-lg.visible-xs {
    display: table-cell !important;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .visible-lg.visible-sm {
    display: block !important;
  }
  tr.visible-lg.visible-sm {
    display: table-row !important;
  }
  th.visible-lg.visible-sm,
  td.visible-lg.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 960px) and (max-width: 1335px) {
  .visible-lg.visible-md {
    display: block !important;
  }
  tr.visible-lg.visible-md {
    display: table-row !important;
  }
  th.visible-lg.visible-md,
  td.visible-lg.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 1336px) {
  .visible-lg {
    display: block !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
.hidden-xs {
  display: block !important;
}
tr.hidden-xs {
  display: table-row !important;
}
th.hidden-xs,
td.hidden-xs {
  display: table-cell !important;
}
@media (max-width: 599px) {
  .hidden-xs,
  tr.hidden-xs,
  th.hidden-xs,
  td.hidden-xs {
    display: none !important;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .hidden-xs.hidden-sm,
  tr.hidden-xs.hidden-sm,
  th.hidden-xs.hidden-sm,
  td.hidden-xs.hidden-sm {
    display: none !important;
  }
}
@media (min-width: 960px) and (max-width: 1335px) {
  .hidden-xs.hidden-md,
  tr.hidden-xs.hidden-md,
  th.hidden-xs.hidden-md,
  td.hidden-xs.hidden-md {
    display: none !important;
  }
}
@media (min-width: 1336px) {
  .hidden-xs.hidden-lg,
  tr.hidden-xs.hidden-lg,
  th.hidden-xs.hidden-lg,
  td.hidden-xs.hidden-lg {
    display: none !important;
  }
}
.hidden-sm {
  display: block !important;
}
tr.hidden-sm {
  display: table-row !important;
}
th.hidden-sm,
td.hidden-sm {
  display: table-cell !important;
}
@media (max-width: 599px) {
  .hidden-sm.hidden-xs,
  tr.hidden-sm.hidden-xs,
  th.hidden-sm.hidden-xs,
  td.hidden-sm.hidden-xs {
    display: none !important;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .hidden-sm,
  tr.hidden-sm,
  th.hidden-sm,
  td.hidden-sm {
    display: none !important;
  }
}
@media (min-width: 960px) and (max-width: 1335px) {
  .hidden-sm.hidden-md,
  tr.hidden-sm.hidden-md,
  th.hidden-sm.hidden-md,
  td.hidden-sm.hidden-md {
    display: none !important;
  }
}
@media (min-width: 1336px) {
  .hidden-sm.hidden-lg,
  tr.hidden-sm.hidden-lg,
  th.hidden-sm.hidden-lg,
  td.hidden-sm.hidden-lg {
    display: none !important;
  }
}
.hidden-md {
  display: block !important;
}
tr.hidden-md {
  display: table-row !important;
}
th.hidden-md,
td.hidden-md {
  display: table-cell !important;
}
@media (max-width: 599px) {
  .hidden-md.hidden-xs,
  tr.hidden-md.hidden-xs,
  th.hidden-md.hidden-xs,
  td.hidden-md.hidden-xs {
    display: none !important;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .hidden-md.hidden-sm,
  tr.hidden-md.hidden-sm,
  th.hidden-md.hidden-sm,
  td.hidden-md.hidden-sm {
    display: none !important;
  }
}
@media (min-width: 960px) and (max-width: 1335px) {
  .hidden-md,
  tr.hidden-md,
  th.hidden-md,
  td.hidden-md {
    display: none !important;
  }
}
@media (min-width: 1336px) {
  .hidden-md.hidden-lg,
  tr.hidden-md.hidden-lg,
  th.hidden-md.hidden-lg,
  td.hidden-md.hidden-lg {
    display: none !important;
  }
}
.hidden-lg {
  display: block !important;
}
tr.hidden-lg {
  display: table-row !important;
}
th.hidden-lg,
td.hidden-lg {
  display: table-cell !important;
}
@media (max-width: 599px) {
  .hidden-lg.hidden-xs,
  tr.hidden-lg.hidden-xs,
  th.hidden-lg.hidden-xs,
  td.hidden-lg.hidden-xs {
    display: none !important;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .hidden-lg.hidden-sm,
  tr.hidden-lg.hidden-sm,
  th.hidden-lg.hidden-sm,
  td.hidden-lg.hidden-sm {
    display: none !important;
  }
}
@media (min-width: 960px) and (max-width: 1335px) {
  .hidden-lg.hidden-md,
  tr.hidden-lg.hidden-md,
  th.hidden-lg.hidden-md,
  td.hidden-lg.hidden-md {
    display: none !important;
  }
}
@media (min-width: 1336px) {
  .hidden-lg,
  tr.hidden-lg,
  th.hidden-lg,
  td.hidden-lg {
    display: none !important;
  }
}
.visible-print,
tr.visible-print,
th.visible-print,
td.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
  .hidden-print,
  tr.hidden-print,
  th.hidden-print,
  td.hidden-print {
    display: none !important;
  }
}
/* **********************************************************
 *  Templates
 * ******************************************************* */
.template-a .tertiary-rail {
  padding-left: 0;
  padding-right: 45px;
  padding-top: 33px;
}
.template-a .main {
  padding-left: 0;
  padding-right: 0px;
}
.template-a .main .main-content {
  padding-left: 0;
  padding-right: 0;
  padding-top: 10px;
}
.template-a .main .secondary-rail {
  padding-left: 30px;
  padding-right: 0;
  padding-top: 10px;
}
@media (min-width: 600px) and (max-width: 959px) {
  .template-a .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .template-a .tertiary-rail {
    padding-right: 13px;
    padding-top: 23px;
  }
  .template-a .main {
    padding-left: 7px;
    padding-right: 0;
  }
  .template-a .main .main-content {
    padding-top: 5px;
  }
  .template-a .main .secondary-rail {
    padding-left: 0;
    padding-top: 0;
  }
}
@media (max-width: 599px) {
  .template-a .container {
    padding-left: 0;
    padding-right: 0;
  }
  .template-a .main {
    padding-left: 0;
    padding-right: 0;
  }
  .template-a .tertiary-rail,
  .template-a .main .main-content,
  .template-a .main .secondary-rail {
    padding-left: 10px;
    padding-right: 10px;
  }
  .template-a .main .secondary-rail {
    padding-top: 15px;
  }
}
.template-b .tertiary-rail {
  padding-left: 0;
  padding-right: 45px;
  padding-top: 33px;
}
.template-b .main {
  padding-left: 0;
  padding-right: 0;
}
.template-b .main .main-content {
  padding-left: 0;
  padding-right: 0;
  padding-top: 35px;
}
.template-b .main .secondary-rail {
  padding-left: 30px;
  padding-right: 0;
  padding-top: 50px;
}
@media (min-width: 600px) and (max-width: 959px) {
  .template-b .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .template-b .masthead {
    padding-left: 40px;
    padding-right: 40px;
  }
  .template-b .tertiary-rail {
    padding-right: 13px;
    padding-top: 23px;
  }
  .template-b .main {
    padding-left: 7px;
    padding-right: 0;
  }
  .template-b .main .main-content {
    padding-top: 23px;
  }
  .template-b .main .secondary-rail {
    padding-left: 0;
    padding-top: 5px;
  }
}
@media (max-width: 599px) {
  .template-b .container {
    padding-left: 0;
    padding-right: 0;
  }
  .template-b .tertiary-rail,
  .template-b .main .main-content,
  .template-b .main .secondary-rail {
    padding-left: 10px;
    padding-right: 10px;
  }
  .template-b .main {
    padding-left: 0;
    padding-right: 0;
  }
  .template-b .main .main-content {
    padding-top: 10px;
  }
  .template-b .main .secondary-rail {
    padding-top: 0;
  }
}
.template-c .tertiary-rail {
  padding-left: 0;
  padding-right: 45px;
  padding-top: 33px;
}
.template-c .main {
  padding-left: 0;
  padding-right: 0;
}
.template-c .main .main-content {
  padding-left: 0;
  padding-right: 0;
  padding-top: 35px;
}
@media (min-width: 600px) and (max-width: 959px) {
  .template-c .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .template-c .tertiary-rail {
    padding-right: 13px;
    padding-top: 23px;
  }
  .template-c .main {
    padding-left: 7px;
    padding-right: 0;
  }
  .template-c .main .main-content {
    padding-top: 23px;
  }
}
@media (max-width: 599px) {
  .template-c .container {
    padding-left: 0;
    padding-right: 0;
  }
  .template-c .tertiary-rail,
  .template-c .main .main-content {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 0px;
  }
  .template-c .main {
    padding-left: 0;
    padding-right: 0;
  }
  .template-c .main .main-content {
    padding-top: 10px;
  }
}
.template-d .container {
  padding-left: 5px;
  padding-right: 5px;
}
@media (min-width: 600px) and (max-width: 959px) {
  .template-d .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 599px) {
  .template-d .container {
    padding-left: 0;
    padding-right: 0;
  }
  .template-d .main {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.template-e .page-info {
  padding-top: 35px;
}
.template-e .masthead {
  padding-left: 5px;
  padding-right: 10px;
}
.template-e .secondary-rail {
  padding-left: 30px;
  padding-right: 0;
  padding-top: 10px;
}
@media (min-width: 600px) and (max-width: 959px) {
  .template-e .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .template-e .masthead {
    padding-left: 7px;
    padding-right: 0;
  }
  .template-e .secondary-rail {
    padding-left: 0;
    padding-top: 0;
  }
}
@media (max-width: 599px) {
  .template-e .container {
    padding-left: 0;
    padding-right: 0;
  }
  .template-e .masthead {
    padding-left: 0;
    padding-right: 0;
  }
  .template-e .tertiary-rail,
  .template-e .main .main-content,
  .template-e .main .secondary-rail {
    padding-left: 10px;
    padding-right: 10px;
  }
  .template-e .main .secondary-rail {
    padding-top: 15px;
  }
}
.template-f .tertiary-rail {
  padding-left: 0;
  padding-right: 45px;
  padding-top: 33px;
}
.template-f .main {
  padding-left: 0;
  padding-right: 0;
}
.template-f .main .masthead,
.template-f .main .main-content {
  padding-left: 0;
  padding-right: 0;
  padding-top: 35px;
}
.template-f .main .secondary-rail {
  padding-left: 30px;
  padding-right: 0;
  padding-top: 10px;
}
@media (min-width: 600px) and (max-width: 959px) {
  .template-f .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .template-f .tertiary-rail {
    padding-right: 13px;
    padding-top: 23px;
  }
  .template-f .main {
    padding-left: 7px;
    padding-right: 0;
  }
  .template-f .main .masthead,
  .template-f .main .main-content {
    padding-top: 23px;
  }
  .template-f .main .secondary-rail {
    padding-left: 0;
    padding-top: 0;
  }
}
@media (max-width: 599px) {
  .template-f .container {
    padding-left: 0;
    padding-right: 0;
  }
  .template-f .tertiary-rail,
  .template-f .main .main-content,
  .template-f .main .secondary-rail {
    padding-left: 10px;
    padding-right: 10px;
  }
  .template-f .main .secondary-rail {
    padding-top: 15px;
  }
  .template-f .main .masthead,
  .template-f .main {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
  }
  .template-f .main .masthead .main-content,
  .template-f .main .main-content {
    padding-top: 10px;
  }
}
.template-g .container {
  padding-left: 5px;
  padding-right: 5px;
}
@media (min-width: 600px) and (max-width: 959px) {
  .template-g .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 599px) {
  .template-g .container {
    padding-left: 0;
    padding-right: 0;
  }
  .template-g .main {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.campaign-template.template {
  padding-top: 0;
}
.campaign-template .container {
  padding-left: 5px;
  padding-right: 5px;
}
@media (min-width: 600px) and (max-width: 959px) {
  .campaign-template .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 599px) {
  .campaign-template .container {
    padding-left: 0;
    padding-right: 0;
  }
  .campaign-template .main {
    padding-left: 10px;
    padding-right: 10px;
  }
}
/* **********************************************************
 *  Pages
 * ******************************************************* */
/* **********************************************************
 *  Components
 * ******************************************************* */
h1 {
  font: 400 3.6em "open_sansregular", serif;
  /* 36px */

  color: #19598C;
  *zoom: 1;
  margin-bottom: 15px;
}
@media (min-width: 600px) and (max-width: 959px) {
  h1 {
    font: 400 3.2em "open_sansregular", serif;
    /* 32px */
  
  }
}
@media (max-width: 599px) {
  h1 {
    font: 400 2.2em "open_sansregular", serif;
    /* 22px */
  
  }
}
h1:before,
h1:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
h1:after {
  clear: both;
}
h1:before,
h1:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
h1:after {
  clear: both;
}
h1.product-viewer-title {
  font: 400 3.4em "itc_officina_serif_std_bookBd", serif;
  /* 34px */

  color: #FFFFFF;
  color: #00467F;
  font-size: 3.8em;
  margin: 10px 0 0;
}
@media (min-width: 600px) and (max-width: 959px) {
  h1.product-viewer-title {
    font: 400 2.6em "itc_officina_serif_std_bookBd", serif;
    /* 26px */
  
  }
}
@media (max-width: 599px) {
  h1.product-viewer-title {
    font: 400 2.2em "itc_officina_serif_std_bookBd", serif;
    /* 22px */
  
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  h1.product-viewer-title {
    font-size: 3.8em;
  }
}
@media (max-width: 599px) {
  h1.xs-center {
    text-align: center;
  }
  h1.product-viewer-title.subtitle {
    font-size: 2.8em;
  }
}
h2 {
  font: 700 2.2em Arial;
  /* 22px */

  color: #19598C;
  *zoom: 1;
  display: block;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1px dotted #999999;
  clear: both;
}
@media (min-width: 600px) and (max-width: 959px) {
  h2 {
    font: 700 2em Arial;
    /* 20px */
  
  }
}
@media (max-width: 599px) {
  h2 {
    font: 700 1.8em Arial;
    /* 18px */
  
  }
}
h2:before,
h2:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
h2:after {
  clear: both;
}
h2:before,
h2:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
h2:after {
  clear: both;
}
h2.product-viewer-title.subtitle {
  font: 400 3.4em "itc_officina_serif_std_bookBd", serif;
  /* 34px */

  color: #FFFFFF;
  border: 0;
  color: #737373;
  font-size: 2.4em;
  margin: 0 0 5px 0;
}
@media (min-width: 600px) and (max-width: 959px) {
  h2.product-viewer-title.subtitle {
    font: 400 2.6em "itc_officina_serif_std_bookBd", serif;
    /* 26px */
  
  }
}
@media (max-width: 599px) {
  h2.product-viewer-title.subtitle {
    font: 400 2.2em "itc_officina_serif_std_bookBd", serif;
    /* 22px */
  
  }
}
h2.no-border {
  border-bottom: 0;
  margin-bottom: 25px;
  padding-bottom: 0;
}
@media (min-width: 600px) and (max-width: 959px) {
  h2.product-viewer-title.subtitle {
    font-size: 2.4em;
  }
}
@media (max-width: 599px) {
  h2.product-viewer-title.subtitle {
    font-size: 2.0em;
  }
}
.template-g h2 {
  margin-top: 20px;
}
@media (min-width: 320px) and (max-width: 959px) {
  .template-g h2 {
    margin-top: 30px;
  }
}
h3 {
  font: 700 2.2em Arial;
  /* 22px */

  color: #19598C;
  *zoom: 1;
}
@media (min-width: 600px) and (max-width: 959px) {
  h3 {
    font: 700 2em Arial;
    /* 20px */
  
  }
}
@media (max-width: 599px) {
  h3 {
    font: 700 1.8em Arial;
    /* 18px */
  
  }
}
h3:before,
h3:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
h3:after {
  clear: both;
}
h3:before,
h3:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
h3:after {
  clear: both;
}
h4 {
  font: 700 1.6em Arial;
  /* 16px */

  color: #404040;
  *zoom: 1;
  line-height: 1.8em;
}
h4:before,
h4:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
h4:after {
  clear: both;
}
h4:before,
h4:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
h4:after {
  clear: both;
}
h5 {
  *zoom: 1;
  font: 700 1.6em Arial;
  color: #404040;
  line-height: 1.8em;
}
h5:before,
h5:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
h5:after {
  clear: both;
}
h5:before,
h5:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
h5:after {
  clear: both;
}
hr {
  border-top: 1px dotted #808080;
  height: 1px;
  background: none;
  width: 100%;
  margin: 20px 0;
}
p {
  font-family: 'Arial', Arial, sans-serif;
  font-size: 1.6em;
  line-height: 2em;
  color: #737373;
  margin-bottom: 24px;
}
@media (max-width: 599px) {
  p.xs-center {
    text-align: center;
  }
}
a {
  font: 700 1.4em Arial;
  /* 14px */

  color: #48B8D2;
  font-weight: bold;
}
a:focus {
  outline: 0;
}
a span.arrows {
  font-weight: normal;
  letter-spacing: -0.1em;
  margin-left: 5px;
}
a.body-link {
  font-size: 1.0em;
  text-decoration: none;
  font: 700 1.4em Arial;
  /* 14px */

  color: #48B8D2;
  display: inline-block;
  font-weight: bold;
  margin-bottom: 35px;
}
a.body-link:hover {
  text-decoration: none;
}
p a {
  font: 700 1.4em Arial;
  /* 14px */

  color: #48B8D2;
  font-size: 1.0em;
  text-decoration: none;
  font-weight: bold;
}
p a:hover {
  text-decoration: none;
}
@media (max-width: 599px) {
  a.body-link {
    display: block;
    text-align: center;
  }
}
.achievement-tile .certification {
  margin: 15px 0;
}
.achievement-tile .certification img {
  float: left;
  margin-right: 10px;
}
.achievement-tile .certification p {
  font: 700 2.8em Arial;
  /* 28px */

  color: #84C019;
  font-size: 1.8em;
  line-height: normal;
  margin: 5px 0 0;
}
.achievement-tile .subtext {
  font: 400 1.4em Arial;
  /* 14px */
  color: #737373;
  line-height: 1.5em;
  margin-top: 0;
  text-align: center;
}
@media (min-width: 320px) and (max-width: 959px) {
  .achievement-tile .certification p {
    margin-top: 12px;
  }
}
.carousel {
  margin-top: 20px;
  position: relative;
}
.carousel .carousel-banner {
  -moz-opacity: 0.85;
  -khtml-opacity: 0.85;
  -webkit-opacity: 0.85;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=85);
  opacity: 0.85;
  filter: alpha(opacity=85);
  background: #00467F;
  bottom: 0;
  padding: 10px 0;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 1;
}
.carousel .carousel-banner h1,
.carousel .carousel-banner p {
  margin: 0 auto;
  width: 460px;
}
.carousel .carousel-banner h1 {
  font: 400 3.4em "itc_officina_serif_std_bookBd", serif;
  /* 34px */

  color: #FFFFFF;
  margin-bottom: 0;
}
@media (min-width: 600px) and (max-width: 959px) {
  .carousel .carousel-banner h1 {
    font: 400 2.6em "itc_officina_serif_std_bookBd", serif;
    /* 26px */
  
  }
}
@media (max-width: 599px) {
  .carousel .carousel-banner h1 {
    font: 400 2.2em "itc_officina_serif_std_bookBd", serif;
    /* 22px */
  
  }
}
.carousel .carousel-banner p {
  font: 400 1.4em Arial;
  /* 14px */

  color: #FFFFFF;
  line-height: 1.5em;
  margin-bottom: 8px;
}
@media (min-width: 600px) and (max-width: 959px) {
  .carousel .carousel-banner p {
    font: 400 1.3em Arial;
    /* 13px */
  
  }
}
@media (max-width: 599px) {
  .carousel .carousel-banner p {
    font: 400 1.3em Arial;
    /* 13px */
  
  }
}
.carousel .carousel-banner a {
  font-size: 1.0em;
  text-decoration: none;
  font: 700 1.4em Arial;
  /* 14px */

  color: #48B8D2;
  display: inline-block;
  font-weight: bold;
  margin-bottom: 10px;
}
.carousel .carousel-banner a:hover {
  text-decoration: none;
}
.carousel .carousel-banner a button {
  font-size: 0.85em;
  margin-bottom: 0;
}
.carousel .carousel-banner button {
  font: 700 1.2em Arial;
  /* 12px */

  color: #ffffff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background: #008ECD;
  border: 0;
  font-size: 1.20em;
  margin-bottom: 10px;
  margin-top: 5px;
  padding: 15px 20px;
}
.carousel .carousel-nav > a {
  /* background: url('../img/icons/carousel-nav.png') 0 0 no-repeat; */

  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  bottom: 85px;
  display: block;
  height: 35px;
  outline: 0;
  position: absolute;
  text-align: center;
  text-decoration: none;
  width: 35px;
  z-index: 2;
}
.carousel .carousel-nav > a.carousel-nav-prev {
  left: 10px;
  font-size: 1em;
}
.carousel .carousel-nav > a.carousel-nav-next {
  background-position: -35px 0;
  right: 10px;
  font-size: 1em;
}
.carousel .carousel-nav > a span {
  /* display: none; */

  color: #ffffff;
  display: block;
  font-size: 3.0em;
  padding-top: 2px;
}
.carousel .carousel-dots {
  margin-top: 10px;
  text-align: center;
}
.carousel .carousel-dots ul {
  list-style-type: none;
  margin-bottom: 0;
}
.carousel .carousel-dots ul li {
  display: inline-block;
}
.carousel .carousel-dots ul li span {
  /* background: url('../img/icons/carousel-indicators.png') 0 0 no-repeat; */

  color: #CCDAE4;
  display: block;
  font-size: 1.1em;
  margin: 10px 10px 5px 10px;
}
.carousel .carousel-dots ul li span:before {
  display: none;
}
.carousel .carousel-dots ul li.active span {
  /* background-position: -10px 0; */

  color: #00467F;
}
.carousel .carousel-dots ul li:hover {
  cursor: default;
}
.carousel .carousel-container {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.carousel .carousel-container a.carousel-preview {
  display: none;
  /*.opacity(0.5);*/

  /*background: @black;*/

  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  z-index: 3;
}
.carousel .carousel-container a.carousel-preview.carousel-preview-prev {
  background: url('../img/backgrounds/masthead-carousel-prev.png') 100% 0 repeat-y;
}
.carousel .carousel-container a.carousel-preview.carousel-preview-next {
  background: url('../img/backgrounds/masthead-carousel-next.png') 0 0 repeat-y;
}
.carousel .carousel-container a.carousel-preview span {
  display: none;
}
.carousel .carousel-container ul.carousel-slides {
  list-style-type: none;
  margin: 0;
  position: relative;
}
.carousel .carousel-container ul.carousel-slides li.carousel-slide {
  display: none;
  float: left;
  position: relative;
  width: 100%;
}
.carousel .carousel-container ul.carousel-slides li.carousel-slide > img {
  display: inline-block;
  max-width: 100%;
  width: 100%;
}
.carousel .carousel-container ul.carousel-slides li.carousel-slide:first-child {
  display: block;
}
@media (min-width: 600px) and (max-width: 959px) {
  .carousel .carousel-banner h1,
  .carousel .carousel-banner p {
    width: 390px;
  }
  .carousel .carousel-banner h1 {
    margin-bottom: 5px;
  }
  .carousel .carousel-banner p {
    display: none;
  }
  .carousel .carousel-banner a {
    margin-bottom: 5px;
  }
  .carousel .carousel-nav > a {
    display: none;
  }
}
@media (max-width: 599px) {
  .carousel {
    margin-top: 0px;
  }
  .carousel .carousel-banner {
    clear: both;
    position: relative;
  }
  .carousel .carousel-banner h1,
  .carousel .carousel-banner p {
    width: 280px;
  }
  .carousel .carousel-banner h1 {
    margin-bottom: 6px;
    margin-top: 6px;
  }
  .carousel .carousel-banner p {
    display: none;
  }
  .carousel .carousel-nav {
    display: none;
  }
  .carousel .carousel-dots {
    bottom: 100px;
    margin-top: 5px;
  }
  .carousel .carousel-dots ul li span {
    font-size: 1.0em;
  }
}
.carousel.rollover .carousel-dots {
  position: absolute;
  bottom: 0;
  margin: 0 0 10px 0;
}
.carousel.rollover .carousel-dots ul li a span {
  font-size: 1.5em;
}
.carousel.rollover .carousel-nav > a {
  bottom: 52%;
}
.carousel.rollover .carousel-nav > a span {
  color: #8f8f8f;
  font-size: 4.0em;
}
.carousel.rollover .carousel-nav > a span:before {
  display: none;
}
.carousel.rollover .carousel-nav > a:hover span,
.carousel.rollover .carousel-nav > a.hover span {
  color: #fff;
}
.carousel.rollover .carousel-container .carousel-rollover-tile {
  left: 80px;
  position: absolute;
  top: 30px;
  width: 300px;
  z-index: 1;
}
.carousel.rollover .carousel-container .carousel-rollover-tile h2 {
  font: 400 3.4em "itc_officina_serif_std_bookBd", serif;
  /* 34px */

  color: #FFFFFF;
  color: #00467F;
  font-size: 4.2em;
  margin-top: 0;
}
@media (min-width: 600px) and (max-width: 959px) {
  .carousel.rollover .carousel-container .carousel-rollover-tile h2 {
    font: 400 2.6em "itc_officina_serif_std_bookBd", serif;
    /* 26px */
  
  }
}
@media (max-width: 599px) {
  .carousel.rollover .carousel-container .carousel-rollover-tile h2 {
    font: 400 2.2em "itc_officina_serif_std_bookBd", serif;
    /* 22px */
  
  }
}
.carousel.rollover .carousel-container .carousel-rollover-tile h3 {
  font: 400 1.3em "open_sansbold", serif;
  /* 13px */

  color: #19598C;
  color: #81A3BE;
  font-size: 2.0em;
  letter-spacing: 0.2em;
}
.carousel.rollover .carousel-container .carousel-rollover-tile p {
  line-height: 1.8em;
  padding-bottom: 10px;
}
.carousel.rollover .carousel-container .carousel-rollover-tile a {
  font: 700 1.4em Arial;
  /* 14px */

  color: #48B8D2;
  background: none;
  letter-spacing: normal;
  padding: 0;
  text-transform: none;
}
.carousel.rollover .carousel-container .carousel-rollover-tile a span.arrows {
  display: inline-block;
}
.carousel.rollover .carousel-container .carousel-rollover-tile a.carousel-btn {
  font-size: 1.0em;
  text-decoration: none;
  font: 700 1.2em Arial;
  /* 12px */

  color: #ffffff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background: #008ECD;
  border: 0;
  letter-spacing: 0.3em;
  padding: 15px 20px;
  text-transform: uppercase;
  display: block;
  float: left;
}
.carousel.rollover .carousel-container .carousel-rollover-tile a.carousel-btn:hover {
  text-decoration: none;
}
.carousel.rollover .carousel-container .carousel-rollover-tile a.carousel-btn span.arrows {
  display: none;
}
@media (min-width: 600px) and (max-width: 959px) {
  .carousel.rollover .carousel-container .carousel-rollover-tile a.carousel-btn {
    font-size: 1em;
  }
}
@media (max-width: 599px) {
  .carousel.rollover .carousel-container .carousel-rollover-tile a.carousel-btn {
    font: 700 1.4em Arial;
    /* 14px */
  
    color: #48B8D2;
    background: none;
    letter-spacing: normal;
    padding: 0;
    text-transform: none;
    float: none;
  }
  .carousel.rollover .carousel-container .carousel-rollover-tile a.carousel-btn span.arrows {
    display: inline-block;
  }
}
.carousel.rollover .carousel-container .carousel-rollover {
  font-size: 1.0em;
  text-decoration: none;
  -moz-opacity: 0.85;
  -khtml-opacity: 0.85;
  -webkit-opacity: 0.85;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=85);
  opacity: 0.85;
  filter: alpha(opacity=85);
  background: #18598C;
  display: none;
  padding: 15px;
  position: absolute;
  top: 35%;
  z-index: 1;
}
.carousel.rollover .carousel-container .carousel-rollover:hover {
  text-decoration: none;
}
.carousel.rollover .carousel-container .carousel-rollover.hover {
  display: block;
}
.carousel.rollover .carousel-container .carousel-rollover.carousel-nav-prev {
  left: 0;
  padding-left: 80px;
}
.carousel.rollover .carousel-container .carousel-rollover.carousel-nav-next {
  left: auto;
  padding-right: 80px;
  right: 0;
}
.carousel.rollover .carousel-container .carousel-rollover a img {
  height: 60px;
  width: 105px;
}
.carousel.rollover .carousel-container .carousel-rollover span {
  font: 400 1.2em "open_sansbold", serif;
  /* 12px */

  color: #FFFFFF;
  letter-spacing: 0.10em;
  /* Tracking: 100 */

  color: #ffffff;
  display: block;
  font-size: 1.0em;
  font-style: normal;
  margin-top: 8px;
  text-align: center;
}
@media (max-width: 599px) {
  .carousel.rollover .carousel-container .carousel-rollover span {
    font: 400 1em "open_sansbold", serif;
    /* 10px */
  
  }
}
@media (max-width: 959px) {
  .carousel.rollover .carousel-container .carousel-rollover-tile {
    left: 60px;
    top: 15px;
  }
  .carousel.rollover .carousel-container .carousel-rollover-tile h2 {
    margin-bottom: 5px;
  }
  .carousel.rollover .carousel-container .carousel-rollover-tile h3 {
    font-size: 1.4em;
    margin-bottom: 2px;
  }
  .carousel.rollover .carousel-container .carousel-rollover-tile p {
    font-size: 1.4em;
    margin-bottom: 0;
  }
  .carousel.rollover .carousel-rollover {
    display: none;
  }
  .carousel.rollover .carousel-nav > a.carousel-nav-next span {
    color: #8f8f8f;
  }
}
@media (max-width: 599px) {
  .carousel.rollover {
    margin-left: -10px;
    margin-right: -10px;
  }
  .carousel.rollover .carousel-container .carousel-rollover-tile {
    background: #ffffff;
    /* Old browsers */
  
    background: -moz-linear-gradient(top, #ffffff 0%, #f7f7f7 100%);
    /* FF3.6+ */
  
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #f7f7f7));
    /* Chrome,Safari4+ */
  
    background: -webkit-linear-gradient(top, #ffffff 0%, #f7f7f7 100%);
    /* Chrome10+,Safari5.1+ */
  
    background: -o-linear-gradient(top, #ffffff 0%, #f7f7f7 100%);
    /* Opera 11.10+ */
  
    background: -ms-linear-gradient(top, #ffffff 0%, #f7f7f7 100%);
    /* IE10+ */
  
    background: linear-gradient(to bottom, #ffffff 0%, #f7f7f7 100%);
    /* W3C */
  
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f7f7f7', GradientType=0);
    /* IE6-9 */
    border-bottom: 1px solid #E5E5E5;
    left: 0;
    padding: 15px 0;
    position: relative;
    text-align: center;
    top: 0;
    width: 100%;
  }
  .carousel.rollover .carousel-container .carousel-rollover-tile h2 {
    border-bottom: 0;
    padding-bottom: 3px;
  }
  .carousel.rollover .carousel-container .carousel-rollover-tile h3 {
    margin-top: 0;
  }
  .carousel.rollover .carousel-container .carousel-rollover-tile p {
    display: none;
  }
  .carousel.rollover .carousel-container .carousel-rollover-tile a {
    font-weight: bold;
  }
  .carousel.rollover .carousel-dots {
    padding: 5px 0;
    position: relative;
  }
}
.feature-content-video-carousel.carousel {
  margin-bottom: 30px;
  /*
	@media (min-width: @screen-sm) and (max-width: @screen-sm-max) {
		ul.carousel-slides li.carousel-slide {
			height: 370px;
		}
	}
	*/

}
.feature-content-video-carousel.carousel .carousel-nav > a {
  /* background: url('../img/icons/feature-content-video-carousel-nav.png') 0 0 no-repeat; */

  font-size: 1.0em;
  text-decoration: none;
  border: 0;
  bottom: 60px;
}
.feature-content-video-carousel.carousel .carousel-nav > a:hover {
  text-decoration: none;
}
.feature-content-video-carousel.carousel .carousel-nav > a.carousel-nav-prev {
  left: 5px;
}
.feature-content-video-carousel.carousel .carousel-nav > a.carousel-nav-next {
  /* background-position: -18px 0; */

  right: 5px;
}
.feature-content-video-carousel.carousel .carousel-nav > a span {
  color: #888;
  font-size: 2.4em;
  padding-top: 7px;
}
.feature-content-video-carousel.carousel ul.carousel-slides li.carousel-slide {
  background: #f7f8f8;
  border-bottom: 5px solid #e5e5e5;
  padding-bottom: 20px;
  text-align: center;
  width: 100%;
}
.feature-content-video-carousel.carousel ul.carousel-slides li.carousel-slide .banner,
.feature-content-video-carousel.carousel ul.carousel-slides li.carousel-slide .text,
.feature-content-video-carousel.carousel ul.carousel-slides li.carousel-slide .watch {
  margin: 0 auto;
  max-width: 260px;
}
.feature-content-video-carousel.carousel ul.carousel-slides li.carousel-slide .banner {
  font: 400 1.2em "open_sansbold", serif;
  /* 12px */

  color: #FFFFFF;
  letter-spacing: 0.10em;
  /* Tracking: 100 */

  background: #008ECD;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 0;
  padding: 8px 35px;
  position: relative;
  top: -18px;
}
@media (max-width: 599px) {
  .feature-content-video-carousel.carousel ul.carousel-slides li.carousel-slide .banner {
    font: 400 1em "open_sansbold", serif;
    /* 10px */
  
  }
}
.feature-content-video-carousel.carousel ul.carousel-slides li.carousel-slide .text {
  font: 700 2.4em Arial;
  /* 24px */

  color: #4D4D4D;
  margin-bottom: 10px;
}
@media (min-width: 600px) and (max-width: 959px) {
  .feature-content-video-carousel.carousel ul.carousel-slides li.carousel-slide .text {
    font: 700 2.2em Arial;
    /* 22px */
  
  }
}
@media (max-width: 599px) {
  .feature-content-video-carousel.carousel ul.carousel-slides li.carousel-slide .text {
    font: 700 1.8em Arial;
    /* 18px */
  
  }
}
.feature-content-video-carousel.carousel ul.carousel-slides li.carousel-slide .watch {
  font-size: 1.0em;
  text-decoration: none;
  font: 700 1.4em Arial;
  /* 14px */

  color: #48B8D2;
  font-weight: bold;
  margin-top: 10px;
}
.feature-content-video-carousel.carousel ul.carousel-slides li.carousel-slide .watch:hover {
  text-decoration: none;
}
.feature-content-video-carousel.carousel ul.carousel-slides li.carousel-slide .watch span {
  font-weight: normal;
  letter-spacing: -0.2em;
  margin-left: 5px;
}
.feature-content-video-carousel.carousel .feature-content-video-carousel-contents {
  min-height: 100%;
  text-align: center;
}
.feature-content-video-carousel.carousel .feature-content-video-carousel-contents .feature-content-video-carousel-wrap {
  position: relative;
  display: block;
}
.feature-content-video-carousel.carousel .feature-content-video-carousel-contents .feature-content-video-carousel-wrap .feature-content-video-carousel-wimg {
  width: 100%;
}
@media (max-width: 599px) {
  .feature-content-video-carousel.carousel .carousel-nav {
    display: block;
  }
  .feature-content-video-carousel.carousel .carousel-nav > a {
    bottom: 55px;
  }
  .feature-content-video-carousel.carousel ul.carousel-slides li.carousel-slide {
    height: auto;
    width: 100%;
  }
  .feature-content-video-carousel.carousel ul.carousel-slides li.carousel-slide .banner,
  .feature-content-video-carousel.carousel ul.carousel-slides li.carousel-slide .text,
  .feature-content-video-carousel.carousel ul.carousel-slides li.carousel-slide .watch {
    max-width: 180px;
  }
  .feature-content-video-carousel.carousel ul.carousel-slides li.carousel-slide .banner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .feature-content-video-carousel.carousel ul.carousel-slides li.carousel-slide .text {
    font-size: 1.8em;
  }
}
.feature-content-article-image.carousel {
  margin-bottom: 30px;
}
.feature-content-article-image.carousel .carousel-pages {
  bottom: 15px;
  left: 50%;
  position: absolute;
  z-index: 1;
}
.feature-content-article-image.carousel .carousel-pages ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.feature-content-article-image.carousel .carousel-pages ul li {
  display: inline-block;
}
.feature-content-article-image.carousel .carousel-pages ul li a {
  font-size: 1.0em;
  text-decoration: none;
  font: 400 1.6em Arial;
  /* 16px */

  color: #737373;
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  -webkit-opacity: 0.5;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
  opacity: 0.5;
  filter: alpha(opacity=50);
  color: #ffffff;
  display: block;
  padding: 10px 18px 10px 2px;
}
.feature-content-article-image.carousel .carousel-pages ul li a:hover {
  text-decoration: none;
}
@media (min-width: 600px) and (max-width: 959px) {
  .feature-content-article-image.carousel .carousel-pages ul li a {
    font: 400 1.4em Arial;
    /* 14px */
  
  }
}
@media (max-width: 599px) {
  .feature-content-article-image.carousel .carousel-pages ul li a {
    font: 400 1.4em Arial;
    /* 14px */
  
  }
}
.feature-content-article-image.carousel .carousel-pages ul li a.active {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  opacity: 1;
  filter: alpha(opacity=100);
}
.feature-content-article-image.carousel ul.carousel-slides li.carousel-slide {
  height: 100%;
  width: 100%;
}
.feature-content-article-image.carousel ul.carousel-slides li.carousel-slide .article-image {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.feature-content-article-image.carousel ul.carousel-slides li.carousel-slide .article-image .image,
.feature-content-article-image.carousel ul.carousel-slides li.carousel-slide .article-image .article {
  float: left;
}
.feature-content-article-image.carousel ul.carousel-slides li.carousel-slide .article-image .image {
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 45%;
}
.feature-content-article-image.carousel ul.carousel-slides li.carousel-slide .article-image .article {
  padding-left: 20px;
  padding-top: 15px;
  width: 50%;
}
.feature-content-article-image.carousel ul.carousel-slides li.carousel-slide .article-image .article h4 {
  font: 400 1.2em "open_sansbold", serif;
  /* 12px */

  color: #FFFFFF;
  letter-spacing: 0.10em;
  /* Tracking: 100 */

  border-bottom: 1px dotted #8fd2e1;
  display: block;
  padding-bottom: 10px;
}
@media (max-width: 599px) {
  .feature-content-article-image.carousel ul.carousel-slides li.carousel-slide .article-image .article h4 {
    font: 400 1em "open_sansbold", serif;
    /* 10px */
  
  }
}
.feature-content-article-image.carousel ul.carousel-slides li.carousel-slide .article-image .article h3 {
  font: 700 2.4em Arial;
  /* 24px */

  color: #FFFFFF;
}
@media (max-width: 599px) {
  .feature-content-article-image.carousel ul.carousel-slides li.carousel-slide .article-image .article h3 {
    font: 700 1.8em Arial;
    /* 18px */
  
  }
}
.feature-content-article-image.carousel ul.carousel-slides li.carousel-slide .article-image .article p {
  font: 400 1.4em Arial;
  /* 14px */

  color: #FFFFFF;
  line-height: 1.5em;
  margin-bottom: 0;
}
.feature-content-article-image.carousel ul.carousel-slides li.carousel-slide .article-image .go-link {
  font-size: 1.0em;
  text-decoration: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 2px solid #ffffff;
  bottom: 20px;
  display: block;
  float: right;
  height: 35px;
  position: absolute;
  right: 20px;
  text-align: center;
  width: 35px;
}
.feature-content-article-image.carousel ul.carousel-slides li.carousel-slide .article-image .go-link:hover {
  text-decoration: none;
}
.feature-content-article-image.carousel ul.carousel-slides li.carousel-slide .article-image .go-link .fa {
  /* display: none; */

  color: #ffffff;
  display: block;
  font-size: 2.2em;
  font-weight: bold;
  padding-left: 4px;
  padding-top: 4px;
}
.feature-content-article-image.carousel ul.carousel-slides li.carousel-slide .article-image.blue {
  background: #3ea4d6;
}
.feature-content-article-image.carousel ul.carousel-slides li.carousel-slide .article-image.green {
  background: #7ac142;
}
.feature-content-article-image.carousel ul.carousel-slides li.carousel-slide .article-image.green .article h4 {
  border-bottom: 1px dotted #ffffff;
}
.feature-content-article-image.carousel ul.carousel-slides li.carousel-slide .article-image.teal {
  background: #71C6DA;
}
.feature-content-article-image.carousel ul.carousel-slides li.carousel-slide .article-image.teal .article h4 {
  border-bottom: 1px dotted #ffffff;
  color: #DAF1F5;
}
@media (min-width: 600px) and (max-width: 959px) {
  .feature-content-article-image.carousel .carousel-pages {
    bottom: 15px;
    height: 30px;
  }
  .feature-content-article-image.carousel ul.carousel-slides li.carousel-slide .article-image .article {
    padding-left: 15px;
    padding-top: 10px;
  }
  .feature-content-article-image.carousel ul.carousel-slides li.carousel-slide .article-image .article h4 {
    font-size: 1em;
  }
  .feature-content-article-image.carousel ul.carousel-slides li.carousel-slide .article-image .article h3 {
    font-size: 1.4em;
  }
  .feature-content-article-image.carousel ul.carousel-slides li.carousel-slide .article-image .go-link {
    bottom: 10px;
    height: 30px;
    right: 15px;
    width: 30px;
  }
  .feature-content-article-image.carousel ul.carousel-slides li.carousel-slide .article-image .go-link .fa {
    /* display: none; */
  
    font-size: 1.6em;
  }
}
@media (max-width: 599px) {
  .feature-content-article-image.carousel .carousel-pages {
    bottom: 15px;
    height: 30px;
  }
  .feature-content-article-image.carousel ul.carousel-slides li.carousel-slide .article-image .article {
    padding-left: 15px;
    padding-top: 10px;
  }
  .feature-content-article-image.carousel ul.carousel-slides li.carousel-slide .article-image .article h4 {
    font-size: 1em;
  }
  .feature-content-article-image.carousel ul.carousel-slides li.carousel-slide .article-image .article h3 {
    font-size: 1.6em;
  }
  .feature-content-article-image.carousel ul.carousel-slides li.carousel-slide .article-image .go-link {
    bottom: 12px;
    height: 30px;
    right: 15px;
    width: 30px;
  }
  .feature-content-article-image.carousel ul.carousel-slides li.carousel-slide .article-image .go-link .fa {
    /* display: none; */
  
    font-size: 1.6em;
  }
}
.news-feed-tile {
  padding-bottom: 40px;
}
.news-feed-tile .sidebar-header,
.news-feed-tile p {
  margin: 0;
}
.news-feed-tile .sidebar-header {
  font: 700 1.8em Arial;
  /* 18px */

  color: #404040;
  background: url('../img/icons/news-feed-header.png') 97% 0 no-repeat;
}
@media (min-width: 600px) and (max-width: 959px) {
  .news-feed-tile .sidebar-header {
    font: 700 2em Arial;
    /* 18px */
  
  }
}
.news-feed-tile .items {
  border-bottom: 1px dotted #999999;
  list-style-type: none;
  padding-top: 20px;
}
.news-feed-tile .items li {
  margin-bottom: 20px;
}
.news-feed-tile .items li div,
.news-feed-tile .items li a {
  display: inline-block;
  margin: 0;
  vertical-align: top;
}
.news-feed-tile .items li div {
  width: 17%;
}
.news-feed-tile .items li div span {
  display: block;
  font-weight: bold;
}
.news-feed-tile .items li div span.mo {
  font: 700 1.4em Arial;
  /* 14px */
  color: #404040;
}
.news-feed-tile .items li div span.day {
  font: 700 2.2em Arial;
  /* 22px */
  color: #404040;
}
.news-feed-tile .items li a {
  font-weight: bold;
  width: 82%;
}
.news-feed-tile .view-link {
  font-size: 1.0em;
  text-decoration: none;
  font: 700 1.4em Arial;
  /* 14px */

  color: #48B8D2;
  float: right;
  font-weight: bold;
  margin-top: 8px;
}
.news-feed-tile .view-link:hover {
  text-decoration: none;
}
@media (min-width: 320px) and (max-width: 959px) {
  .news-feed-tile {
    padding-bottom: 10px;
  }
  .news-feed-tile .sidebar-header {
    background-position: 100% 0;
    padding-bottom: 15px;
  }
}
h3.sidebar-header {
  font: 700 1.8em Arial;
  /* 18px */

  color: #404040;
  border-bottom: 1px dotted #999999;
  padding-top: 3px;
  padding-bottom: 10px;
}
@media (min-width: 600px) and (max-width: 959px) {
  h3.sidebar-header {
    font: 700 2em Arial;
    /* 18px */
  
  }
}
.quick-facts-tile {
  padding-bottom: 40px;
  text-align: center;
}
.quick-facts-tile .sidebar-header,
.quick-facts-tile h4,
.quick-facts-tile p {
  margin: 0;
}
.quick-facts-tile .sidebar-header {
  font: 700 1.8em Arial;
  /* 18px */

  color: #404040;
  background: url('../img/icons/quick-facts-header.png') 97% 0 no-repeat;
  text-align: left;
}
@media (min-width: 600px) and (max-width: 959px) {
  .quick-facts-tile .sidebar-header {
    font: 700 2em Arial;
    /* 18px */
  
  }
}
.quick-facts-tile .map {
  margin: 20px;
  margin-bottom: 20px;
}
.quick-facts-tile .map img {
  max-width: 180px;
  width: 100%;
}
.quick-facts-tile .items {
  border-bottom: 1px dotted #999999;
  list-style-type: none;
}
.quick-facts-tile .items li {
  margin-bottom: 20px;
}
.quick-facts-tile .items li h4 {
  font: 700 1.8em Arial;
  /* 18px */

  color: #404040;
  margin-bottom: 3px;
}
@media (min-width: 600px) and (max-width: 959px) {
  .quick-facts-tile .items li h4 {
    font: 700 2em Arial;
    /* 18px */
  
  }
}
.quick-facts-tile .items li p {
  font: 400 1.4em Arial;
  /* 14px */
  color: #737373;
}
.quick-facts-tile .view-link {
  font-size: 1.0em;
  text-decoration: none;
  font: 700 1.4em Arial;
  /* 14px */

  color: #48B8D2;
  float: right;
  font-weight: bold;
  margin-top: 8px;
}
.quick-facts-tile .view-link:hover {
  text-decoration: none;
}
@media (min-width: 320px) and (max-width: 959px) {
  .quick-facts-tile .sidebar-header {
    background-position: 100% 0;
    margin-bottom: 20px;
    padding-bottom: 15px;
  }
  .quick-facts-tile .map {
    display: none;
  }
}
.header {
  position: relative;
}
.header .utility-nav {
  position: absolute;
  top: 12px;
  right: 10px;
}
.header .search-box {
  position: absolute;
  top: 50px;
  right: 10px;
}
.header .back-to-main {
  display: none;
}
@media (min-width: 600px) and (max-width: 959px) {
  .header .utility-nav {
    top: 10px;
    right: 15px;
  }
}
@media (max-width: 599px) {
  .header {
    position: absolute;
    padding: 0;
    z-index: 10001;
    overflow-x: hidden;
    width: 100%;
  }
  .header .mobile-drawer-container {
    position: relative;
    left: -100%;
    width: 100%;
    overflow-x: hidden;
    /* Fixes the scrolling of the fixed element content*/
  
    /* END Fixes the scrolling of the fixed element content*/
  
    -webkit-transition: left 0.25s linear 0s;
    -moz-transition: left 0.25s linear 0s;
    -ms-transition: left 0.25s linear 0s;
    transition: left 0.25s linear 0s;
    height: 0;
  }
  .header .mobile-drawer-container.slide {
    height: auto;
    left: 0;
  }
  .header .mobile-drawer-container .nav-megamenu,
  .header .mobile-drawer-container .utility-nav {
    position: relative;
    left: 0;
    -webkit-transition: left 0.25s linear 0s;
    -moz-transition: left 0.25s linear 0s;
    -ms-transition: left 0.25s linear 0s;
    transition: left 0.25s linear 0s;
  }
  .header .mobile-drawer-container .nav-megamenu.expanded-subnav,
  .header .mobile-drawer-container .utility-nav.expanded-subnav {
    left: -100%;
  }
  .header .mobile-drawer-container .utility-nav {
    top: 0;
  }
  .header .mobile-drawer-container .nav-secondary-container {
    width: 100%;
    position: absolute;
    left: 100%;
    top: 48px;
    -webkit-transition: left 0.25s linear 0s;
    -moz-transition: left 0.25s linear 0s;
    -ms-transition: left 0.25s linear 0s;
    transition: left 0.25s linear 0s;
  }
  .header .mobile-drawer-container .nav-secondary-container.expanded {
    left: 0;
  }
  .header .mobile-drawer-container .main-nav .sub-nav {
    position: absolute;
    left: 100%;
    border-bottom: 1px solid #cccccc;
    -webkit-transition: left 0.25s linear 0s;
    -moz-transition: left 0.25s linear 0s;
    -ms-transition: left 0.25s linear 0s;
    transition: left 0.25s linear 0s;
  }
  .header .mobile-drawer-container .main-nav .sub-nav.expanded {
    display: block;
  }
  .header .mobile-drawer-container .mobile-scroll-box {
    padding-bottom: 58px;
    overflow-x: hidden;
  }
  .header .search-box {
    position: static;
    margin-bottom: 16px;
    margin-top: 4px;
  }
  .header.sticky {
    top: 0;
    position: fixed;
  }
  .header .back-to-main {
    background: url(../img/icons/icon-mobilenav-back-button.png) no-repeat;
    padding: 5px 0 5px 10px;
    display: none;
    border: none;
    width: 59px;
    height: 31px;
    font: 700 1.2em Arial;
    /* 12px */
  
    color: #ffffff;
    color: #cccccc;
    position: absolute;
    top: 18px;
    left: 12px;
  }
  .header .back-to-main.expanded {
    display: block;
  }
}
.mobile-nav-drawer {
  position: absolute;
  top: 0;
  border: none;
  width: 64px;
  height: 64px;
  background: none;
  color: #B5B9C6;
  font-size: 2.3em;
}
.mobile-nav-drawer,
tr.mobile-nav-drawer,
th.mobile-nav-drawer,
td.mobile-nav-drawer {
  display: none !important;
}
@media (max-width: 599px) {
  .mobile-nav-drawer {
    display: block !important;
  }
  tr.mobile-nav-drawer {
    display: table-row !important;
  }
  th.mobile-nav-drawer,
  td.mobile-nav-drawer {
    display: table-cell !important;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .mobile-nav-drawer.visible-sm {
    display: block !important;
  }
  tr.mobile-nav-drawer.visible-sm {
    display: table-row !important;
  }
  th.mobile-nav-drawer.visible-sm,
  td.mobile-nav-drawer.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 960px) and (max-width: 1335px) {
  .mobile-nav-drawer.visible-md {
    display: block !important;
  }
  tr.mobile-nav-drawer.visible-md {
    display: table-row !important;
  }
  th.mobile-nav-drawer.visible-md,
  td.mobile-nav-drawer.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 1336px) {
  .mobile-nav-drawer.visible-lg {
    display: block !important;
  }
  tr.mobile-nav-drawer.visible-lg {
    display: table-row !important;
  }
  th.mobile-nav-drawer.visible-lg,
  td.mobile-nav-drawer.visible-lg {
    display: table-cell !important;
  }
}
.mobile-nav-drawer.open-button {
  left: 0;
}
.mobile-nav-drawer.close-button {
  right: 0;
  left: auto;
  font-size: 3.2em;
  font-weight: 100;
}
.links-list {
  list-style-type: none;
  overflow: hidden;
  width: 100%;
  margin-bottom: 50px;
}
.links-list-item {
  padding-top: 10px;
  padding-bottom: 10px;
  display: inline-block;
  vertical-align: top;
  width: 100%;
}
.btn-expandable-list {
  display: block;
  color: #737373;
  border: 1px solid #d0d0d0;
  padding: 20px;
  width: 100%;
  margin-top: 30px;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.2em;
  letter-spacing: 2px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.btn-expandable-list .fa {
  margin-left: 10px;
}
.btn-expandable-list:hover,
.btn-expandable-list:active,
.btn-expandable-list:focus {
  text-decoration: none;
  color: #48B8D2;
}
@media (max-width: 599px) {
  .js-expandable-list li.hidden-item {
    display: none !important;
  }
  .js-list-btn.js-btn-see-more {
    display: inline-block;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .links-list.three-two-col-list .links-list-item {
    width: 49%;
    padding-right: 1%;
  }
  .links-list.four-three-col-list .links-list-item {
    display: inline-block;
    width: 32%;
    margin-right: 2%;
  }
  .links-list.four-three-col-list .links-list-item:nth-child(3n) {
    margin-right: 0;
  }
  .btn-expandable-list {
    display: none;
  }
  .lt-ie9 .four-three-col-list .links-list-item {
    width: 21.5%;
  }
}
@media (min-width: 960px) {
  .links-list.three-two-col-list .links-list-item {
    width: 33%;
    padding-right: 1%;
  }
  .links-list.four-three-col-list .links-list-item {
    display: inline-block;
    margin-right: 2%;
    width: 22.0%;
  }
  .links-list.four-three-col-list .links-list-item:nth-child(4n) {
    margin-right: 0;
  }
  .btn-expandable-list {
    display: none;
  }
  .lt-ie9 .four-three-col-list .links-list-item {
    width: 30%;
  }
}
.contact-info {
  overflow: hidden;
  padding: 2em 0;
  border: 1px dotted #999999;
  border-width: 1px 0;
}
.contact-info .support-details-list {
  font: 400  1.4em Arial;
  /* 14px */

  color: #737373;
  list-style-position: inside;
  line-height: 1.6em;
}
.contact-us-links {
  margin-top: 5em;
  padding-right: 3%;
}
.contact-us-links .contact-links-list {
  list-style-type: none;
}
.contact-us-links .contact-links-list li {
  border-top: 1px dotted #999999;
  display: block;
  padding: 2em 0;
}
.contact-us-links .contact-links-list li:first-child {
  border-top: 0;
}
.contact-us-links .contact-links-list li a {
  font-size: 1.0em;
  text-decoration: none;
  font: 700 1.4em Arial;
  /* 14px */

  color: #48B8D2;
  display: block;
  font-weight: bold;
  overflow: hidden;
}
.contact-us-links .contact-links-list li a:hover {
  text-decoration: none;
}
.contact-us-links .contact-links-list li a span {
  display: inline-block;
}
.contact-us-links .contact-links-list li a img {
  width: 8%;
  margin-right: 10%;
  display: inline-block;
}
/* GK 3-27-2014: Fitting copy */
@media (min-width: 960px) {
  .secondary-rail .contact-us-links .contact-links-list li a,
  .secondary-rail .resource-links .contact-us-links .contact-links-list li a {
    font-size: 1.3em;
  }
  .secondary-rail .contact-us-links .contact-links-list li a img,
  .secondary-rail .resource-links .contact-us-links .contact-links-list li a img {
    margin-right: 3%;
    width: 13%;
  }
}
.contact-us-form {
  margin-top: 40px;
  background-color: #f7f7f7;
  border-bottom: 3px solid #e6e6e6;
  padding: 24px 40px;
}
.contact-us-form textarea {
  font: 400 1.6em Arial;
  /* 16px */

  color: #737373;
  width: 100%;
  resize: none;
  min-height: 80px;
}
@media (min-width: 600px) and (max-width: 959px) {
  .contact-us-form textarea {
    font: 400 1.4em Arial;
    /* 14px */
  
  }
}
@media (max-width: 599px) {
  .contact-us-form textarea {
    font: 400 1.4em Arial;
    /* 14px */
  
  }
}
.contact-us-form .truste-privacy {
  width: 100%;
  margin-top: 20px;
}
.contact-us-form .truste-privacy .truste-seal {
  width: 113px;
}
@media (min-width: 960px) {
  .contact-us-form form {
    width: 100%;
    display: inline-block;
  }
  .contact-us-form .truste-privacy {
    width: 20%;
    margin-left: 20px;
    display: inline-block;
    vertical-align: bottom;
  }
}
.footer {
  overflow: hidden;
  position: relative;
  padding: 0;
  margin-top: 40px;
}
.footer .footer-disclaimer-bar {
  overflow: hidden;
  position: relative;
  padding: 24px 0;
}
.footer .footer-disclaimer-bar .footer-disclaimer {
  font-size: .9em;
  color: #b3b3b3;
  padding: 0 10px;
}
.footer .footer-disclaimer-bar .footer-disclaimer span {
  display: block;
  font-weight: bold;
  text-transform: uppercase;
}
.footer .footer-bar {
  overflow: hidden;
  position: relative;
  border-top: 1px solid #E1E3E5;
  padding: 24px 0;
}
.footer .footer-bar .footer-logo {
  display: none;
}
.footer .footer-bar .footer-body {
  font: 400 1.4em Arial;
  /* 14px */

  color: #808080;
  line-height: 1.8em;
  text-align: center;
  display: none;
}
.footer .footer-bar .social-media-links {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}
.footer .footer-bar .social-media-links .social-icons {
  text-align: center;
}
.footer .footer-bar .social-media-links .social-icons .social-media-text {
  color: #b3b3b3;
  display: block;
  margin: 0 0 12px 10px;
  font-size: 1.2em;
}
.footer .footer-bar .social-media-links .social-icons .social-icon-link {
  font-size: 1em;
  display: inline-block;
  vertical-align: middle;
}
.footer .footer-bar .social-media-links .social-icons .social-icon-link:hover {
  text-decoration: none;
}
.footer .footer-bar .social-media-links .social-icons .social-icon-link .fa {
  margin: 0 10px;
  color: #19598C;
  font-size: 2.5em;
}
.footer .footer-links-bar {
  overflow: hidden;
  position: relative;
  background-color: #f7f7f7;
  border-top: 1px solid #E1E3E5;
  text-align: center;
  padding: 20px 0;
}
.footer .footer-links-bar .footer-links ul {
  margin: 0;
}
.footer .footer-links-bar .footer-links ul li {
  padding: 0 20px 12px;
  list-style-type: none;
  display: inline-block;
}
.footer .footer-links-bar .footer-links ul li a {
  font: 700 1em Arial;
  /* 10px */

  color: #666666;
  font-weight: bold;
  display: block;
  font-size: 1.1em;
}
.footer .footer-links-bar .footer-copyright {
  color: #b3b3b3;
  font-size: .9em;
  padding: 0 0 10px;
}
.footer .footer-links-bar .footer-date {
  color: #b3b3b3;
  font-size: .9em;
}
.footer .footer-links-bar .truste-privacy {
  clear: both;
  display: block;
  margin: 8px auto 20px;
}
.footer .footer-links-bar .truste-privacy .truste-seal {
  width: 113px;
}
@media (min-width: 600px) and (max-width: 959px) {
  .footer .country-selector {
    display: none;
  }
  .footer .footer-bar .footer-logo {
    display: inline-block;
    vertical-align: middle;
    width: 50%;
  }
  .footer .footer-bar .social-media-links {
    width: 49%;
  }
  .footer .footer-bar .social-media-links .social-icons {
    text-align: left;
    float: right;
  }
  .footer .footer-links-bar .footer-links {
    padding: 0 0 12px;
  }
  .footer .footer-links-bar .footer-links ul {
    display: inline-block;
  }
  .footer .footer-links-bar .footer-links ul li {
    padding: 0 8px;
  }
  .footer .footer-links-bar .footer-links ul li:first-child {
    padding-left: 0;
  }
  .footer .footer-links-bar .footer-links ul li a {
    font-size: 1em;
  }
  .footer .footer-links-bar .footer-copyright {
    display: inline-block;
    margin: 0 10px 0 0;
    padding: 0;
  }
  .footer .footer-links-bar .footer-date {
    display: inline-block;
  }
  .footer .footer-links-bar .truste-privacy {
    display: inline-block;
    margin: 0;
  }
}
@media (min-width: 960px) {
  .footer .country-selector {
    display: none;
  }
  .footer .footer-bar .footer-logo {
    display: inline-block;
    vertical-align: middle;
    width: 24%;
  }
  .footer .footer-bar .footer-body {
    font: 400 1.4em Arial;
    /* 14px */
  
    color: #808080;
    line-height: 1.8em;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    width: 50%;
  }
  .footer .footer-bar .social-media-links {
    width: 25%;
  }
  .footer .footer-bar .social-media-links .social-icons {
    text-align: left;
    float: right;
  }
  .footer .footer-links-bar .footer-links {
    padding: 0 0 12px;
  }
  .footer .footer-links-bar .footer-links ul {
    display: inline-block;
  }
  .footer .footer-links-bar .footer-links ul li {
    padding: 0 8px;
  }
  .footer .footer-links-bar .footer-links ul li:first-child {
    padding-left: 0;
  }
  .footer .footer-links-bar .footer-links ul li a {
    font-size: 1em;
  }
  .footer .footer-links-bar .footer-copyright {
    display: inline-block;
    margin: 0 10px 0 0;
    padding: 0;
  }
  .footer .footer-links-bar .footer-date {
    display: inline-block;
  }
  .footer .footer-links-bar .truste-privacy {
    display: inline-block;
    margin: 0;
  }
}
.nav-megamenu {
  line-height: 35px;
  position: relative;
}
.nav-megamenu .centeredlist {
  position: relative;
}
.nav-megamenu .centeredlist > ul {
  float: none;
  left: 0;
  text-align: center;
  list-style: none;
}
.nav-megamenu .centeredlist > ul > li {
  background: #195a89;
  /* Old browsers */
  background-image: -webkit-gradient(linear, left 0%, left 100%, from(#195a89), to(#134977));
  background-image: -webkit-linear-gradient(top, #195a89 0%, #134977 100%);
  background-image: -moz-linear-gradient(top, #195a89 0%, #134977 100%);
  background-image: linear-gradient(to bottom, #195a89 0%, #134977 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff195a89', endColorstr='#ff134977', GradientType=0);
  float: none;
  display: inline-block;
  position: static;
  width: 25%;
  border-right: 1px solid #ffffff;
  height: 45px;
  /*
				&:hover {
					background: #F7F7F7;

					a {
						.f-nav-drop-down-link-selected;
						color: #00467F;
					}
					.item-expand-down {
						visibility: hidden;
					}
				}
				*/

}
.nav-megamenu .centeredlist > ul > li.first {
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
.nav-megamenu .centeredlist > ul > li.last {
  border-right: none;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
}
.nav-megamenu .centeredlist > ul > li.active {
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background: #0F679A;
}
.nav-megamenu .centeredlist > ul > li.expanded {
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background: #F7F7F7;
}
.nav-megamenu .centeredlist > ul > li.expanded a {
  color: #00467F;
}
@media (max-width: 599px) {
  .nav-megamenu .centeredlist > ul > li.expanded a {
    color: #003F77;
  }
}
.nav-megamenu .centeredlist > ul > li.expanded .item-expand-down {
  visibility: hidden;
}
.nav-megamenu .centeredlist > ul > li > a {
  font-size: 1.0em;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  padding: 13px 0 11px;
  font: 400 1.2em "open_sansbold", serif;
  /* 12px */

  color: #ffffff;
  letter-spacing: 0.10em;
  /* Tracking: 100 */

}
.nav-megamenu .centeredlist > ul > li > a:hover {
  text-decoration: none;
}
@media (min-width: 600px) and (max-width: 959px) {
  .nav-megamenu .centeredlist > ul > li > a {
    font: 400 1.1em "open_sansbold", serif;
    /* 11px */
  
    color: #ccdae5;
  }
}
@media (max-width: 599px) {
  .nav-megamenu .centeredlist > ul > li > a {
    font: 400 1.6em "open_sansregular", serif;
    /* 16px */
  
    color: #ccdae5;
  }
}
.nav-megamenu .centeredlist > ul > li > a > .item-expand-side {
  display: none;
}
.nav-megamenu .centeredlist > ul > li > a > .item-expand-down {
  margin-left: 10px;
}
.nav-megamenu .centeredlist > ul > li .sub-nav {
  background-color: #F7F7F7;
  display: none;
  left: 0;
  padding: 20px 30px 20px 20px;
  position: absolute;
  /* top: 35px; Removed to allow dynamic positioning, if nav nodes wrap */

  z-index: 1001;
  width: 100%;
  text-align: left;
}
.nav-megamenu .centeredlist > ul > li .sub-nav a {
  font-size: 1.0em;
  text-decoration: none;
  font: 700 1.4em Arial;
  /* 14px */

  color: #19598C;
  display: block;
}
.nav-megamenu .centeredlist > ul > li .sub-nav a:hover {
  text-decoration: none;
}
@media (min-width: 600px) and (max-width: 959px) {
  .nav-megamenu .centeredlist > ul > li .sub-nav a {
    font: 700 1.4em Arial;
    /* 14px */
  
  }
}
@media (max-width: 599px) {
  .nav-megamenu .centeredlist > ul > li .sub-nav a {
    font: 400 1.6em "open_sansregular", serif;
    /* 16px */
  
  }
}
@media (max-width: 599px) {
  .nav-megamenu .centeredlist > ul > li .sub-nav a:hover {
    color: #003F77;
  }
}
.nav-megamenu .centeredlist > ul > li .sub-nav .feature {
  width: 49%;
  float: left;
  background: #ffffff;
  padding-right: 25px;
  /*margin-top: 36px;*/

}
.nav-megamenu .centeredlist > ul > li .sub-nav .feature .feature-img {
  float: left;
  width: 54%;
  max-width: 220px;
}
.nav-megamenu .centeredlist > ul > li .sub-nav .feature > h1,
.nav-megamenu .centeredlist > ul > li .sub-nav .feature > p,
.nav-megamenu .centeredlist > ul > li .sub-nav .feature > a {
  float: right;
  width: 46%;
  padding-left: 20px;
}
.nav-megamenu .centeredlist > ul > li .sub-nav .feature > h1 {
  font: 700 2.2em Arial;
  /* 22px */

  color: #19598C;
  margin-bottom: 12px;
}
@media (min-width: 600px) and (max-width: 959px) {
  .nav-megamenu .centeredlist > ul > li .sub-nav .feature > h1 {
    font: 700 2em Arial;
    /* 20px */
  
  }
}
@media (max-width: 599px) {
  .nav-megamenu .centeredlist > ul > li .sub-nav .feature > h1 {
    font: 700 1.8em Arial;
    /* 18px */
  
  }
}
.nav-megamenu .centeredlist > ul > li .sub-nav .feature > p {
  font: 400 1.2em Arial;
  /* 12px */

  color: #666666;
  line-height: 1.4em;
  letter-spacing: 0.075em;
  /* Tracking: 75 */

  margin-bottom: 12px;
  letter-spacing: 0;
}
.nav-megamenu .centeredlist > ul > li .sub-nav .feature > a {
  font: 700 1.8em Arial;
  /* 18px */

  color: #48B8D2;
}
.nav-megamenu .centeredlist > ul > li .sub-nav .feature sup {
  font-size: .4em;
  vertical-align: top;
  position: relative;
  top: .9em;
}
.nav-megamenu .centeredlist > ul > li .sub-nav ul {
  display: block;
  list-style: none;
  float: left;
  width: 25%;
}
.nav-megamenu .centeredlist > ul > li .sub-nav ul li {
  margin-bottom: 15px;
}
.nav-megamenu .centeredlist > ul > li .sub-nav ul li a {
  font: 700 1.4em Arial;
  /* 14px */

  color: #19598C;
  display: block;
  height: 100%;
}
@media (min-width: 600px) and (max-width: 959px) {
  .nav-megamenu .centeredlist > ul > li .sub-nav ul li a {
    font: 700 1.4em Arial;
    /* 14px */
  
  }
}
@media (max-width: 599px) {
  .nav-megamenu .centeredlist > ul > li .sub-nav ul li a {
    font: 400 1.6em "open_sansregular", serif;
    /* 16px */
  
  }
}
.nav-megamenu .centeredlist > ul > li .sub-nav.with-feature > .links {
  width: 51%;
  float: left;
  padding-right: 10px;
}
.nav-megamenu .centeredlist > ul > li .sub-nav.with-feature ul {
  display: block;
  list-style: none;
  float: left;
  width: 50%;
}
.nav-megamenu .centeredlist > ul > li .sub-nav.with-feature ul li {
  margin-bottom: 15px;
}
.nav-megamenu .centeredlist > ul > li .sub-nav.with-feature ul li a {
  font: 700 1.4em Arial;
  /* 14px */

  color: #19598C;
  display: block;
  height: 100%;
}
@media (min-width: 600px) and (max-width: 959px) {
  .nav-megamenu .centeredlist > ul > li .sub-nav.with-feature ul li a {
    font: 700 1.4em Arial;
    /* 14px */
  
  }
}
@media (max-width: 599px) {
  .nav-megamenu .centeredlist > ul > li .sub-nav.with-feature ul li a {
    font: 400 1.6em "open_sansregular", serif;
    /* 16px */
  
  }
}
.nav-megamenu .centeredlist > ul > li .sub-nav.expanded {
  display: block;
}
/*
.no-touch {
	.nav-megamenu {
		.centeredlist {
			&> ul {
				> li {
					&:hover {
						background: #F7F7F7;

						a {
							.f-nav-drop-down-link-selected;
							color: #00467F;
						}
						.item-expand-down {
							visibility: hidden;
						}
					}
				}
			}
		}
	}
}
*/
@media (min-width: 600px) and (max-width: 959px) {
  .nav-megamenu {
    line-height: 20px;
  }
  .nav-megamenu .centeredlist > ul > li {
    vertical-align: top;
  }
  .nav-megamenu .centeredlist > ul > li > a {
    display: table;
    height: 45px;
    vertical-align: middle;
    width: 100%;
    padding: 0;
    margin: 0 auto;
    line-height: 12px;
    letter-spacing: 0;
    width: 90%;
  }
  .nav-megamenu .centeredlist > ul > li > a > span {
    padding-left: 10%;
    width: 80%;
    display: table-cell;
    height: 45px;
    top: 0;
    left: 0;
    vertical-align: middle;
  }
  .nav-megamenu .centeredlist > ul > li > a > .item-expand-down {
    margin-left: 0;
    margin-top: 15px;
    display: table-cell;
    width: 20%;
  }
  .nav-megamenu .centeredlist > ul > li > a > i {
    width: 5%;
    margin: 0;
    margin-right: 5%;
    vertical-align: middle;
  }
  .nav-megamenu .centeredlist > ul > li .sub-nav ul li {
    height: 30px;
    padding: 0 15px 0 0;
  }
  .nav-megamenu .centeredlist > ul > li .sub-nav .feature h1 {
    font-size: 1.6em;
  }
  .nav-megamenu .centeredlist > ul > li .sub-nav .feature p {
    display: none;
  }
  .nav-megamenu .centeredlist > ul > li .sub-nav .feature a {
    font-size: 1.4em;
  }
}
@media (max-width: 599px) {
  .nav-megamenu {
    padding: 0;
    position: static;
    width: 100%;
  }
  .nav-megamenu .centeredlist {
    position: static;
  }
  .nav-megamenu .centeredlist > ul {
    margin: 0;
    text-align: left;
  }
  .nav-megamenu .centeredlist > ul > li {
    position: static;
    display: block;
    width: 100%;
    float: none;
    height: auto;
    border: none;
    /*
  					&.expanded {
  						.sub-nav {
  							display: block;
  						}
  					}
  					*/
  
  }
  .nav-megamenu .centeredlist > ul > li.first {
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
  }
  .nav-megamenu .centeredlist > ul > li.last {
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
  }
  .nav-megamenu .centeredlist > ul > li > a {
    display: block;
    padding: 0 20px;
    line-height: 58px;
    height: 58px;
    border-bottom: 1px solid #ffffff;
  }
  .nav-megamenu .centeredlist > ul > li > a > span {
    width: 95%;
    display: inline-block;
  }
  .nav-megamenu .centeredlist > ul > li > a > .item-expand-side {
    display: inline-block;
  }
  .nav-megamenu .centeredlist > ul > li > a > .item-expand-down {
    display: none;
  }
  .nav-megamenu .centeredlist > ul > li .sub-nav {
    display: none;
    background-color: #ffffff;
    padding: 0;
    /* Panel Animation */
  
    position: fixed;
    left: 100%;
    top: 0;
    overflow: hidden;
    width: 100%;
  }
  .nav-megamenu .centeredlist > ul > li .sub-nav hr {
    display: none;
  }
  .nav-megamenu .centeredlist > ul > li .sub-nav .feature {
    display: none;
    visibility: hidden;
    float: none;
  }
  .nav-megamenu .centeredlist > ul > li .sub-nav > .links {
    float: none;
    position: relative;
  }
  .nav-megamenu .centeredlist > ul > li .sub-nav a {
    display: block;
    height: 58px;
    line-height: 58px;
    padding: 0 20px;
  }
  .nav-megamenu .centeredlist > ul > li .sub-nav a:hover {
    line-height: 58px;
  }
  .nav-megamenu .centeredlist > ul > li .sub-nav ul {
    float: none;
    width: 100%;
  }
  .nav-megamenu .centeredlist > ul > li .sub-nav ul > li {
    width: 100%;
    margin: 0;
    border-top: 1px solid #E6E6E6;
  }
  .nav-megamenu .centeredlist > ul > li .sub-nav ul > li > a {
    display: inline-block;
    height: 58px;
    line-height: 58px;
  }
  .nav-megamenu .centeredlist > ul > li .sub-nav ul > li > a:hover {
    line-height: 58px;
  }
  .nav-megamenu .centeredlist > ul > li .sub-nav.with-feature > .links {
    width: 100%;
    float: none;
  }
  .nav-megamenu .centeredlist > ul > li .sub-nav.with-feature ul {
    float: none;
    width: 100%;
  }
  .nav-megamenu .centeredlist > ul > li .sub-nav.with-feature ul li {
    margin: 0;
  }
  .nav-megamenu .centeredlist > ul > li .sub-nav.with-feature ul li a {
    display: inline-block;
    height: 58px;
    line-height: 58px;
    width: 100%;
  }
  .nav-megamenu .centeredlist > ul > li .sub-nav.with-feature ul li:hover a {
    line-height: 58px;
  }
  .nav-megamenu .centeredlist > ul > li:hover {
    background-color: #48b8d2;
  }
  .nav-megamenu .centeredlist > ul > li:hover > a {
    color: #F7F7F7;
  }
}
.secondary-callout {
  background-color: #f7f7f7;
  border-bottom: 3px solid #e6e6e6;
  margin-bottom: 20px;
  width: 100%;
}
.secondary-callout .secondary-callout-img {
  width: 100%;
}
.secondary-callout .secondary-callout-text {
  padding: 1em 4% 2em;
}
.secondary-callout .secondary-callout-text .secondary-callout-title {
  font: 700 2.8em Arial;
  /* 28px */

  color: #84C019;
}
.secondary-callout .secondary-callout-text .secondary-callout-subtitle {
  font: 700 1.8em Arial;
  /* 18px */

  color: #ADD566;
  margin: .125em 0;
}
.secondary-callout .secondary-callout-text .secondary-callout-detail {
  font: 400 1.4em Arial;
  /* 14px */

  color: #737373;
  line-height: 1.6em;
  margin: 1em 0;
}
.left-nav {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  border: 1px solid #d7d7d7;
  background: #ffffff;
}
.left-nav ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.left-nav ul li {
  /* Base LI Styles */

  border-top: 1px solid #d7d7d7;
  /* Selected LI Styles */

  /* Bulleted LI Styles */

  /* General LI Styles */

}
.left-nav ul li a {
  display: block;
  width: 100%;
  padding: 16px 20px;
  font-size: 1em;
}
.left-nav ul li a .left-nav-link-text {
  display: block;
  width: 100%;
}
.left-nav ul li a .fa {
  display: none;
}
.left-nav ul li:first-child {
  border-top: 0;
}
.left-nav ul li:first-child a {
  -webkit-border-radius: 6px 6px 0 0;
  -moz-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
}
.left-nav ul li:last-child a {
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
}
.left-nav ul li.link-selected a {
  background-color: #f7f7f7;
}
.left-nav ul li.link-selected a .left-nav-link-text {
  font: 400 1.3em "open_sansbold", serif;
  /* 13px */

  color: #19598C;
}
.left-nav ul li.link-bulleted a {
  font-size: 1.0em;
  text-decoration: none;
}
.left-nav ul li.link-bulleted a:hover {
  text-decoration: none;
}
.left-nav ul li.link-bulleted a .fa {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  font-size: .4em;
}
.left-nav ul li.link-bulleted a .left-nav-link-text {
  display: inline-block;
  width: 85%;
  vertical-align: middle;
}
.left-nav ul li.link-general a {
  background-color: transparent;
}
.left-nav ul li.link-general a .left-nav-link-text {
  font: 400 1.3em "open_sansbold", serif;
  /* 13px */

  color: #666666;
}
.left-nav ul li.link-parent a {
  font-size: 1.0em;
  text-decoration: none;
  color: #666666;
  font: 400 1.3em "open_sansbold", serif;
  /* 13px */

  letter-spacing: 0.05em;
  /* Tracking: 50 */

  text-transform: uppercase;
}
.left-nav ul li.link-parent a:hover {
  text-decoration: none;
}
@media (max-width: 599px) {
  .left-nav ul li.link-parent a {
    font: 400 1.6em "open_sansbold", serif;
    /* 16px */
  
    color: #B4B9BD;
  }
}
.left-nav ul li.link-self a {
  font-size: 1.0em;
  text-decoration: none;
  font: 400 1.3em "open_sansbold", serif;
  /* 13px */

  color: #19598C;
  letter-spacing: 0.05em;
  /* Tracking: 50 */

}
.left-nav ul li.link-self a:hover {
  text-decoration: none;
}
@media (max-width: 599px) {
  .left-nav ul li.link-self a {
    font: 400 1.6em "open_sansbold", serif;
    /* 16px */
  
    color: #ffffff;
  }
}
.left-nav ul li.link-child a {
  font-size: 1.0em;
  text-decoration: none;
}
.left-nav ul li.link-child a:hover {
  text-decoration: none;
}
.left-nav ul li.link-child a .fa {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  font-size: .4em;
}
.left-nav ul li.link-child a .left-nav-link-text {
  display: inline-block;
  width: 85%;
  vertical-align: middle;
}
.left-nav ul li.link-child a {
  font: 400 1.3em "open_sansregular", serif;
  /* 13px */

  color: #666666;
  letter-spacing: 0.05em;
  /* Tracking: 50 */

}
@media (max-width: 599px) {
  .left-nav ul li.link-child a {
    font: 400 1.6em "open_sansregular", serif;
    /* 16px */
  
    color: #05487E;
  }
}
@media (max-width: 599px) {
  .left-nav {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }
  .left-nav ul li {
    height: 58px;
    background: #F7F7F7;
    padding: 0 20px ;
  }
  .left-nav ul li a {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    font-size: 1.0em;
    text-decoration: none;
    color: #1D5A89;
  }
  .left-nav ul li a:hover {
    text-decoration: none;
  }
  .left-nav ul li:first-child {
    border-top: 0;
  }
  .left-nav ul li:first-child a {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }
  .left-nav ul li:last-child a {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }
  .left-nav ul li.link-bulleted a .left-nav-link-text {
    color: #1D5A89;
  }
  .left-nav ul li.link-selected a {
    background-color: #269AD0;
  }
  .left-nav ul li.link-selected a .left-nav-link-text {
    color: #ffffff;
  }
  .left-nav ul li.link-general a .left-nav-link-text {
    color: #1D5A89;
  }
  .left-nav ul li.link-parent a {
    text-transform: uppercase;
  }
  .left-nav ul li.link-self {
    background: #289AD0;
  }
}
/* GK 4-3-2014 */
.left-nav ul li.link-child a .fa {
  display: none;
}
.left-nav ul li.link-child.active a {
  font-family: "open_sansbold", serif;
}
.left-nav ul li.link-child.bullet a .fa {
  display: inline-block;
}
.utility-nav {
  width: 100%;
}
.utility-nav .utility-links {
  width: 100%;
  text-align: right;
  margin: 0;
}
.utility-nav .utility-links > li {
  display: inline-block;
  padding: 0 0 0 30px;
}
.utility-nav .utility-links > li a {
  font-size: 1.0em;
  text-decoration: none;
  font: 400 1.1em "open_sansbold", serif;
  /* 11px */

  color: #6A737B;
  display: block;
  width: 100%;
  text-align: center;
}
.utility-nav .utility-links > li a:hover {
  text-decoration: none;
}
@media (min-width: 600px) and (max-width: 959px) {
  .utility-nav .utility-links > li a {
    font: 400 1em "open_sansbold", serif;
    /* 10px */
  
  }
}
@media (max-width: 599px) {
  .utility-nav .utility-links > li a {
    font: 400 1.6em "open_sansbold", serif;
    /* 12px */
  
  }
}
.utility-nav .utility-links > li a:hover {
  font: 400 1.1em "open_sansbold", serif;
  /* 12px */

  color: #003F77;
}
@media (min-width: 600px) and (max-width: 959px) {
  .utility-nav .utility-links > li a:hover {
    font: 400 1em "open_sansbold", serif;
    /* 10px */
  
  }
}
@media (max-width: 599px) {
  .utility-nav .utility-links > li a:hover {
    font: 400 1.6em "open_sansbold", serif;
    /* 16px */
  
  }
}
.utility-nav .utility-links > li.utility-region span {
  padding: 0 5px;
}
.utility-nav .utility-links > li.utility-region .utility-region-icon {
  display: inline-block;
  background: url(../img/icons/icon-nav-map.png);
  width: 30px;
  height: 20px;
  vertical-align: middle;
}
@media (min-width: 600px) and (max-width: 959px) {
  .utility-nav .utility-links > li {
    padding: 0 0 0 18px;
  }
}
@media (max-width: 599px) {
  .utility-nav .utility-links > li {
    display: block;
    width: 100%;
    padding: 0 0 0 18px;
    margin: 0;
    border-bottom: 1px solid #E6E6E6;
  }
  .utility-nav .utility-links > li > a {
    text-align: left;
    display: inline-block;
    height: 58px;
    line-height: 58px;
  }
  .utility-nav .utility-links > li:hover > a {
    line-height: 58px;
  }
  .utility-nav .utility-links > li.utility-region {
    display: none;
    /*
  					.utility-region-expand {
  						float: right;
  						height: 45px;
  						padding-top: 15px;
  						padding-right: 10px;
  					}
  					*/
  
  }
}
@media (min-width: 960px) {
  .logo-link {
    display: block;
    max-width: 150px;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .logo-link {
    display: block;
    max-width: 130px;
  }
}
.logo-link .logo {
  max-width: 150px;
  height: auto;
  padding: 20px 0;
}
@media (min-width: 600px) and (max-width: 959px) {
  .logo-link .logo {
    max-width: 130px;
    padding: 25px 0 15px 0;
  }
}
@media (max-width: 599px) {
  .logo-link .logo {
    max-width: 120px;
    margin: 0 auto;
    padding: 14px 0;
  }
}
.image-tile {
  *zoom: 1;
  background-color: #F7F7F7;
  margin-bottom: 20px;
  border-bottom: 4px solid #e6e6e6;
  width: 100%;
}
.image-tile:before,
.image-tile:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
.image-tile:after {
  clear: both;
}
.image-tile:before,
.image-tile:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
.image-tile:after {
  clear: both;
}
.image-tile .image-tile-link {
  position: relative;
  font-size: 1.0em;
  text-decoration: none;
  display: block;
  width: 100%;
}
.image-tile .image-tile-link:hover {
  text-decoration: none;
}
.image-tile .image-tile-link img {
  width: 100%;
}
.image-tile .image-tile-link .image-tile-label {
  margin: 20px 15px;
}
.image-tile .image-tile-link .image-tile-label .image-tile-title {
  color: #19598C;
  font-weight: 700;
  display: block;
  vertical-align: middle;
  text-align: left;
  font-size: 1.8em;
  line-height: 1.4em;
  width: 100%;
  margin-bottom: 10px;
  word-wrap: break-word;
}
.image-tile .image-tile-link .image-tile-label .image-arrow-icon {
  display: block;
  text-align: right;
  width: 100%;
}
.image-tile .image-tile-link .image-tile-label .image-arrow-icon .fa {
  border: 3px solid #d2d2d2;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #d2d2d2;
  font-size: 1.8em;
  padding: 8px 10px 8px 13px;
}
@media (min-width: 960px) {
  .image-tile .image-tile-link {
    width: 96%;
    margin: auto;
    padding-top: 2%;
  }
  .image-tile .image-tile-link .image-tile-label .image-arrow-icon {
    width: 100%;
  }
  .image-tile:hover {
    background-color: #33a4d6;
    border-bottom: 4px solid #008ECD;
  }
  .image-tile:hover .image-tile-link .image-tile-label .image-tile-title {
    color: #ffffff;
  }
  .image-tile:hover .image-tile-link .image-tile-label .image-arrow-icon .fa {
    color: #ffffff;
    border: 3px solid #ffffff;
  }
}
.search-box > .search-label {
  border-bottom: 1px solid #cccccc;
  width: 300px;
}
.search-box > .search-label > input {
  border: none;
  font: 400 1.2em Arial;
  /* 12px */

  color: #B5B9C6;
  width: 240px;
  padding-left: 12px;
}
.search-box > .search-label > input:focus::-webkit-input-placeholder {
  color: transparent!important;
}
.search-box > .search-label > input:focus::-moz-placeholder {
  color: transparent!important;
}
.search-box > .search-label > input:focus:-moz-placeholder {
  color: transparent!important;
}
@media (max-width: 599px) {
  .search-box > .search-label > input {
    font: 400 1.4em Arial;
    /* 14px */
  
  }
}
.search-box > .search-label > button {
  background: none;
  border: 0;
  color: #B5B9C6;
  vertical-align: -15%;
  width: 28px;
  height: 28px;
  padding: 0;
  margin: 0 0 0 24px;
  display: inline-block;
}
.search-box > .search-label > button > i {
  color: #B5B9C6;
  margin-right: 10px;
  vertical-align: 0;
}
@media (min-width: 600px) and (max-width: 959px) {
  .search-box > .search-label {
    width: 220px;
  }
  .search-box > .search-label > input {
    width: 180px;
  }
  .search-box > .search-label > button {
    width: 24px;
    height: 24px;
    margin: 0 0 0 12px;
  }
}
@media (max-width: 599px) {
  .search-box {
    width: 100%;
    padding: 0 15px;
  }
  .search-box > .search-label {
    max-width: 100%;
    width: 100%;
  }
  .search-box > .search-label > input {
    max-width: 90%;
    width: 89%;
    padding-left: 4px;
  }
  .search-box > .search-label > button {
    margin: 0;
  }
  .search-box > .search-label > button > i {
    width: 9%;
    text-align: center;
    margin: 0;
  }
}
h3.sidebar-header {
  font: 700 1.8em Arial;
  /* 18px */

  color: #404040;
  border-bottom: 1px dotted #999999;
  padding-top: 3px;
  padding-bottom: 10px;
}
@media (min-width: 600px) and (max-width: 959px) {
  h3.sidebar-header {
    font: 700 2em Arial;
    /* 18px */
  
  }
}
.quote-tile {
  padding-bottom: 15px;
}
.quote-tile span {
  display: block;
}
.quote-tile span.quote-txt {
  font: 400 1.6em "open_sansitalic", serif;
  /* 16px */
  color: #999999;
  margin: 1em 0;
}
.quote-tile span.quoted-by {
  font: 700 1.2em Arial;
  /* 12px */
  color: #666666;
  letter-spacing: 0.075em;
  /* Tracking: 75 */

  margin: .25em 0;
  text-transform: uppercase;
}
.quote-tile span.quoted-by-desc {
  font: 400 1.1em Arial;
  /* 11px */
  color: #999999;
  line-height: 1.5em;
  margin: .25em 0;
}
.resources-tile {
  padding-bottom: 40px;
  text-align: center;
}
.resources-tile .sidebar-header {
  text-align: left;
}
.resources-tile img {
  margin: 20px 0 5px;
}
.resources-tile h4 {
  font: 700 1.4em Arial;
  /* 14px */
  color: #404040;
}
.resources-tile p {
  font: 400 1.4em Arial;
  /* 14px */
  color: #737373;
  line-height: 1.5em;
  padding-bottom: 15px;
}
.resources-tile a {
  font: 700 1.2em Arial;
  /* 12px */

  color: #ffffff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background: #008ECD;
  padding: 15px 20px;
}
.breadcrumb li {
  display: inline-block;
  vertical-align: middle;
}
.breadcrumb li.breadcrumb-item a {
  font: 400 1.2em Arial;
  /* 12px */

  color: #808080;
}
.breadcrumb li.breadcrumb-item span {
  font: 400 1.2em Arial;
  /* 12px */

  color: #808080;
  color: #19598C;
  font-weight: bold;
  display: block;
}
.breadcrumb li.breadcrumb-divider {
  color: #808080;
  font-size: .9em;
  margin: 0 1em;
}
.template-d .main > .breadcrumb {
  margin-top: 25px;
}
.social-tile {
  width: 100%;
}
.social-tile .social-media-tabs {
  margin: 0 0 20px 0;
  list-style-type: none;
  border: 1px solid #d3d3d3;
  border-radius: 10px;
}
.social-tile .social-media-tabs li {
  display: inline-block;
  width: 49%;
  text-align: center;
  border-left: 1px solid #dedede;
}
.social-tile .social-media-tabs li:first-child {
  border-left: 0;
}
.social-tile .social-media-tabs li a {
  color: #e6e6e6;
  display: block;
  width: 100%;
  padding: 12px 0;
}
.social-tile .social-media-tabs li a:hover {
  color: #19598C;
}
.social-tile .social-media-tabs li a.active {
  color: #19598C;
}
.social-tile .social-media-tabs li a .fa {
  font-size: 2em;
}
.social-tile .social-media-feed {
  width: 100%;
  height: 395px;
  position: relative;
}
.social-tile .social-media-feed .social-feed-loading {
  width: 100%;
  height: 50px;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
}
.social-tile .social-media-feed .social-feed-loading .fa {
  font-size: 5em;
  color: #999999;
}
.social-tile .social-media-feed .social-feed-obj .twitter-timeline {
  width: 100%;
}
.social-tile .social-media-feed .social-feed-obj #fb-root {
  display: none;
}
.social-tile .social-media-feed .social-feed-obj .fb_iframe_widget,
.social-tile .social-media-feed .social-feed-obj .fb_iframe_widget span,
.social-tile .social-media-feed .social-feed-obj .fb_iframe_widget span iframe[style] {
  width: 100% !important;
}
@media (max-width: 320px) {
  #twitter-widget-0 {
    width: 300px !important;
  }
}
.rss-feed-obj {
  min-height: 395px;
}
.rss-feed-obj .news-feed-tile .items {
  padding-top: 0;
  height: 395px;
  overflow-x: auto;
}
.rss-feed-obj .news-feed-tile .items li {
  overflow: hidden;
}
.rss-feed-obj .news-feed-tile .items li div {
  float: left;
  margin-top: 5px;
}
.rss-feed-obj .news-feed-tile .items li div .mo,
.rss-feed-obj .news-feed-tile .items li div .day {
  font: 700 2.2em Arial;
  color: #404040;
  float: left;
  margin-right: 10px;
}
.rss-feed-obj .news-feed-tile .items li div .mo {
  font-size: 1.6em;
}
.rss-feed-obj .news-feed-tile .items li .rss-news-title {
  font-size: 1.4em;
  display: block;
  margin-top: 5px;
  padding-left: 10px;
  color: #48B8D2;
  float: left;
}
.authorable a,
.authorable p,
.authorable p button,
.authorable h1,
.authorable h2,
.authorable h3,
.authorable h4 {
  font-size: 10px;
}
.authorable > p {
  color: #737373;
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 1.5em;
  text-align: center;
}
.authorable > p a {
  font-size: 14px;
}
.authorable ul li,
.authorable ol li,
.authorable ul li a,
.authorable ol li a,
.authorable ul li p,
.authorable ol li p {
  font-size: 14px;
}
article .authorable > p {
  text-align: left;
}
.text-container ul li,
.text-container ol li,
.text-container ul li a,
.text-container ol li a {
  font-size: 16px;
}
/* GK 3-18-2014 */
.authorable ul,
.text-container ul,
.authorable ol,
.text-container ol {
  margin-left: 25px;
}
.authorable ul > li,
.text-container ul > li,
.authorable ol > li,
.text-container ol > li {
  color: #737373;
}
.sidebar-component {
  margin-bottom: 10px;
  /* BSGWC-148 */

}
.sidebar-component .authorable h5 {
  font: 700 1.4em Arial;
  color: #404040;
  text-align: center;
}
.sidebar-component img {
  max-width: 100%;
}
.sidebar-component .sidebar-header-img {
  float: right;
}
.sidebar-component .view-link {
  font-size: 1.0em;
  text-decoration: none;
  font: 700 1.4em Arial;
  /* 14px */

  color: #48B8D2;
  font-weight: bold;
  border-top: 1px dotted #999999;
  padding-top: 15px;
  text-align: right;
}
.sidebar-component .view-link:hover {
  text-decoration: none;
}
.sidebar-component .button-link {
  text-align: center;
}
.sidebar-component .button-link button {
  font: 700 1.2em Arial;
  /* 12px */

  color: #ffffff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background: #008ECD;
  border: 0;
  padding: 15px 20px;
}
.country-selector {
  padding: 0;
}
.country-selector .selected-country {
  background-color: #f7f7f7;
  border-top: 1px solid #e3e3e3;
  padding: 0;
}
.country-selector .selected-country .selected-country-link {
  font-size: 1.0em;
  text-decoration: none;
  position: relative;
  display: block;
  padding: 16px 10px;
}
.country-selector .selected-country .selected-country-link:hover {
  text-decoration: none;
}
.country-selector .selected-country .selected-country-link .selected-country-icon {
  display: inline-block;
  margin-right: 16px;
}
.country-selector .selected-country .selected-country-link .selected-country-name {
  font: 400 1.2em "open_sansbold", serif;
  color: #666666;
  display: inline-block;
  vertical-align: middle;
  width: 60%;
}
.country-selector .selected-country .selected-country-link .fa {
  font-size: 1.2em;
  color: #666666;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 26px;
  height: 13px;
}
.country-selector .country-list {
  list-style-type: none;
  border-top: 1px solid #e3e3e3;
  display: none;
}
.country-selector .country-list .country-item {
  display: inline-block;
  width: 48%;
  margin: 0 .5%;
}
.country-selector .country-list .country-item .country-link {
  font-size: 1.0em;
  text-decoration: none;
  display: block;
  padding: 16px 10px;
}
.country-selector .country-list .country-item .country-link:hover {
  text-decoration: none;
}
.country-selector .country-list .country-item .country-link .country-icon {
  display: inline-block;
  margin-right: 16px;
  max-width: 45px;
}
.country-selector .country-list .country-item .country-link .country-name {
  font: 400 1.2em "open_sansbold", serif;
  color: #666666;
  display: inline-block;
  vertical-align: middle;
}
.country-selector-window .country-window-content {
  width: 460px;
  height: auto;
  padding: 30px;
}
.country-selector-window .country-window-close {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 1em;
}
.country-selector-window .country-window-close .fa {
  font-size: 3em;
  color: #cbcdce;
}
@media (min-width: 600px) {
  .country-selector .country-list {
    border-top: 0;
    display: block;
  }
  .country-selector .selected-country {
    display: none;
  }
}
.layout-component {
  overflow: hidden;
  position: relative;
}
.layout-component .row {
  margin-left: 0;
  margin-right: 0;
}
.layout-component.two-col .row > div,
.layout-component.three-col .row > div,
.layout-component.four-col .row > div {
  float: left;
}
.layout-component.two-col .row > div:first-child,
.layout-component.three-col .row > div:first-child,
.layout-component.four-col .row > div:first-child {
  margin-left: 0;
}
.layout-component.two-col .row > div {
  margin-left: 2%;
  width: 49%;
}
.layout-component.three-col .row > div {
  margin-left: 2%;
  width: 32%;
}
.layout-component.four-col .row > div {
  margin-left: 2%;
  width: 23%;
}
@media (max-width: 959px) {
  .layout-component.two-col .row > div,
  .layout-component.three-col .row > div,
  .layout-component.four-col .row > div {
    margin-left: 0;
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .layout-component.tablet-two-col .row > div {
    margin-left: 4%;
    width: 48%;
  }
  .layout-component.tablet-three-col .row > div {
    margin-left: 2%;
    width: 32%;
  }
}
@media (min-width: 320px) and (max-width: 599px) {
  .layout-component.mobile-two-col .row > div {
    margin-left: 2%;
    width: 49%;
  }
}
.sidebar-enlarge-print {
  text-align: center;
  float: right;
  margin-bottom: 10px;
  margin-right: 20px;
  margin-top: 30px;
}
.sidebar-enlarge-print a {
  font: 700 1.4em Arial;
  /* 14px */

  color: #48B8D2;
  display: inline-block;
  font-size: 1.2em;
  font-weight: normal;
  padding: 0px 15px 0px 13px;
  text-decoration: none;
}
.sidebar-enlarge-print a:first-child {
  border-right: 1px dotted #999999;
}
.sidebar-enlarge-print a i {
  font-size: 1.8em;
}
.sidebar-enlarge-print a.enlarge i {
  font-style: normal;
  font-weight: bold;
}
.sidebar-enlarge-print a.enlarge i.enlarge-small {
  font-size: 1.2em;
}
.sidebar-enlarge-print a span {
  line-height: 1.0em;
  margin-left: 5px;
  position: relative;
  top: -4px;
}
.template-a .sidebar-enlarge-print {
  margin-bottom: 20px;
}
.template-b .sidebar-enlarge-print {
  margin-bottom: 25px;
}
.secondary-rail .sidebar-enlarge-print {
  margin-right: 0;
  width: 100%;
}
.sidebar-share {
  border-top: 1px dotted #999999;
  clear: both;
  padding-bottom: 20px;
  padding-top: 20px;
}
.sidebar-share.standalone {
  width: 164px;
  float: right;
  margin-right: 20px;
}
.sidebar-share.for-mobile {
  display: none;
}
.sidebar-share ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.sidebar-share ul li {
  display: inline-block;
  margin: 0 4px;
}
.sidebar-share ul li p {
  font: 400 1.4em Arial;
  /* 14px */
  color: #737373;
  color: #ccc;
  margin: 0;
  margin-top: 3px;
}
.sidebar-share ul li a {
  font-size: 1.0em;
  text-decoration: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #42B9D0;
  color: #ffffff;
  display: block;
  height: 22px;
  text-align: center;
  width: 22px;
}
.sidebar-share ul li a:hover {
  text-decoration: none;
}
.sidebar-share ul li a .fa {
  display: block;
  font-size: 1.2em;
  padding-top: 5px;
}
@media (max-width: 959px) {
  .sidebar-share.for-mobile {
    display: block;
    border-top: 1px dotted #999999;
    border-bottom: 1px dotted #999999;
    clear: both;
    padding-bottom: 20px;
    padding-top: 20px;
    width: 100%;
    margin: auto;
  }
  .sidebar-share.standalone {
    display: none;
  }
  .template-f .sidebar-share.for-mobile {
    border-bottom: 0;
    padding-bottom: 40px;
  }
}
.ticker {
  min-height: 18px;
  padding: 12px;
  background-color: #f7f7f7;
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #e7e7e7;
  margin-left: -10px;
  margin-right: -10px;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  -o-box-sizing: content-box;
  -ms-box-sizing: content-box;
  box-sizing: content-box;
  background: -moz-linear-gradient(top, #ffffff 0%, #f7f7f7 100%);
  /* FF3.6+ */

  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #f7f7f7));
  /* Chrome,Safari4+ */

  background: -webkit-linear-gradient(top, #ffffff 0%, #f7f7f7 100%);
  /* Chrome10+,Safari5.1+ */

  background: -o-linear-gradient(top, #ffffff 0%, #f7f7f7 100%);
  /* Opera 11.10+ */

  background: -ms-linear-gradient(top, #ffffff 0%, #f7f7f7 100%);
  /* IE10+ */

  background: linear-gradient(to bottom, #ffffff 0%, #f7f7f7 100%);
  /* W3C */

  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f7f7f7', GradientType=0);
  /* IE6-9 */
}
.ticker ul.ticker-list {
  list-style-type: none;
  margin: 0;
  position: relative;
  overflow: hidden;
  height: 19px;
}
.ticker ul.ticker-list li {
  height: 18px;
  position: absolute;
  width: 100%;
  top: 18px;
}
.ticker ul.ticker-list li:first-child {
  margin-top: 0;
  top: 0;
}
.ticker ul.ticker-list li .rss-icon {
  display: inline-block;
  vertical-align: bottom;
  color: #19598C;
  margin-right: 16px;
  width: 16px;
  padding-bottom: 1px;
}
.ticker ul.ticker-list li .rss-icon .fa {
  font-size: 1.7em;
}
.ticker ul.ticker-list li .ticker-story {
  color: #737373;
  margin-right: 8px;
  display: inline-block;
  vertical-align: bottom;
  max-width: 85%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ticker ul.ticker-list li .arrow-icon {
  color: #737373;
  display: block;
  height: 12px;
  position: absolute;
  right: 0;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
}
.ticker ul.ticker-list li .arrow-icon .fa {
  font-size: 1.1em;
}
.ticker ul.ticker-list li .view-all {
  display: none;
  vertical-align: bottom;
}
@media (min-width: 600px) {
  .ticker {
    background: #ffffff;
    margin: 20px 0 0 0;
    border: 0;
    padding: 0;
  }
  .ticker ul.ticker-list li .ticker-story {
    max-width: 80%;
  }
  .ticker ul.ticker-list li .arrow-icon {
    margin-right: 10px;
    display: inline-block;
    position: relative;
  }
  .ticker ul.ticker-list li .view-all {
    display: inline-block;
    vertical-align: bottom;
  }
}
.content-callout-row {
  background: #ffffff;
  /* Old browsers */

  /* IE9 SVG, needs conditional override of 'filter' to 'none' */

  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIxNSUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZjdmN2Y3IiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
  background: -moz-linear-gradient(top, #ffffff 15%, #f7f7f7 100%);
  /* FF3.6+ */

  background: -webkit-gradient(linear, left top, left bottom, color-stop(15%, #ffffff), color-stop(100%, #f7f7f7));
  /* Chrome,Safari4+ */

  background: -webkit-linear-gradient(top, #ffffff 15%, #f7f7f7 100%);
  /* Chrome10+,Safari5.1+ */

  background: -o-linear-gradient(top, #ffffff 15%, #f7f7f7 100%);
  /* Opera 11.10+ */

  background: -ms-linear-gradient(top, #ffffff 15%, #f7f7f7 100%);
  /* IE10+ */

  background: linear-gradient(to bottom, #ffffff 15%, #f7f7f7 100%);
  /* W3C */

  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f7f7f7', GradientType=0);
  position: relative;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  margin: 0 -10px 24px -10px;
  padding: 0 10px;
}
.content-callout-row .layout-component .row > div:first-child .content-callout-item {
  border-top: 0;
}
.content-callout-row .content-callout-item {
  font: 700 1.4em Arial;
  /* 14px */

  color: #48B8D2;
  font-size: 1.0em;
  text-decoration: none;
  border-top: 1px dotted #808080;
  display: block;
  width: 100%;
  padding: 8px 0;
  position: relative;
  overflow: hidden;
}
.content-callout-row .content-callout-item:hover {
  text-decoration: none;
}
.content-callout-row .content-callout-item .callout-pretext {
  color: #19598C;
  font: 400 1.3em "open_sansbold", serif;
  display: inline-block;
  text-transform: capitalize;
  margin: 4px 0;
}
.content-callout-row .content-callout-item .callout-title {
  font: 400 1.3em "open_sansbold", serif;
  color: #19598c;
  display: inline-block;
  text-transform: capitalize;
  width: 70%;
}
.content-callout-row .content-callout-item .callout-text {
  display: none;
}
.content-callout-row .content-callout-item .callout-icon .fa {
  border: 2px solid #19598c;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #19598c;
  font-size: 1.2em;
  padding: 6px 7px 6px 8px;
  float: right;
}
@media (min-width: 600px) {
  .content-callout-row {
    padding: 30px 0;
    border: 0;
    margin: 0 0 24px 0;
  }
  .content-callout-row .layout-component .row > div:first-child .content-callout-item {
    border-left: 0;
  }
  .content-callout-row .content-callout-item {
    border-bottom: 0;
    border-top: 0;
    border-left: 1px dotted #808080;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    padding: 10px;
    position: relative;
  }
  .content-callout-row .content-callout-item .callout-pretext {
    color: #19598C;
    font: 400 1.4em "open_sansregular", serif;
    display: inline-block;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .content-callout-row .content-callout-item .callout-title {
    font: 400 2em "open_sansbold", serif;
    color: #19598c;
    display: inline-block;
    text-transform: capitalize;
    width: 100%;
    margin-bottom: 15px;
  }
  .content-callout-row .content-callout-item .callout-text {
    font: 400 1.2em Arial;
    color: #b3b3b3;
    display: block;
    margin-bottom: 15px;
    line-height: 18px;
  }
  .content-callout-row .content-callout-item .callout-icon {
    font: 700 1.4em Arial;
    /* 14px */
  
    color: #48B8D2;
    font-size: 1.0em;
    text-decoration: none;
    width: 100%;
    display: block;
  }
  .content-callout-row .content-callout-item .callout-icon:hover {
    text-decoration: none;
  }
  .content-callout-row .content-callout-item .callout-icon .fa {
    font-size: 1.4em;
    padding: 9px 10px 8px 12px;
    float: none;
  }
}
@media (min-width: 960px) {
  .content-callout-row {
    padding: 30px;
  }
  .content-callout-row .content-callout-item {
    padding: 0 15px;
  }
  .content-callout-row .content-callout-item .callout-text {
    font: 400 1.4em Arial;
  }
}
/* GK 3-18-2014 */
@media (min-width: 600px) {
  .content-callout-row .content-callout-item {
    min-height: 160px;
    position: relative;
  }
  .content-callout-row .content-callout-item .callout-icon {
    bottom: 0;
    left: 0;
    position: absolute;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .content-callout-row .content-callout-item {
    min-height: 210px;
  }
}
.product-viewer {
  background: url('../img/backgrounds/product-viewer-top.png') 0 0 repeat-x;
  margin-bottom: 35px;
  margin-top: 10px;
  padding-top: 70px;
  position: relative;
}
.product-viewer > div {
  background: url('../img/backgrounds/product-viewer-bottom.png') 0 100% repeat-x;
  padding-bottom: 40px;
}
.product-viewer .product-viewer-side {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
}
.product-viewer .product-viewer-side.right {
  left: auto;
  right: 0;
}
.product-viewer .container {
  min-width: 0;
}
.product-viewer .product-viewer-gallery,
.product-viewer .product-viewer-sidebar,
.product-viewer .product-viewer-sidebar .product-viewer-sidebar-top,
.product-viewer .product-viewer-sidebar .product-viewer-sidebar-bottom {
  padding-left: 0;
  padding-right: 0;
}
.product-viewer .product-viewer-gallery {
  padding-left: 10px;
  margin-right: 100px;
  width: 540px;
}
.product-viewer .product-viewer-gallery ul {
  list-style-type: none;
  margin: 0;
}
.product-viewer .product-viewer-gallery .product-viewer-gallery-image {
  margin-bottom: 30px;
}
.product-viewer .product-viewer-gallery .product-viewer-gallery-image .product-viewer-zoom-icon {
  color: #777;
  font-size: 3.00em;
  left: 0px;
  position: absolute;
  top: -40px;
}
.product-viewer .product-viewer-gallery .product-viewer-gallery-image ul {
  margin-left: 46px;
}
.product-viewer .product-viewer-gallery .product-viewer-gallery-image ul li {
  display: none;
  position: relative;
}
.product-viewer .product-viewer-gallery .product-viewer-gallery-image ul li.active {
  display: block;
}
.product-viewer .product-viewer-gallery .product-viewer-gallery-image ul li .product-viewer-gallery-img {
  width: 421px;
}
.product-viewer .product-viewer-gallery .product-viewer-gallery-carousel .product-viewer-gallery-carousel-images,
.product-viewer .product-viewer-gallery .product-viewer-gallery-carousel .product-viewer-gallery-carousel-images ul li,
.product-viewer .product-viewer-gallery .product-viewer-gallery-carousel .product-viewer-gallery-carousel-nav {
  float: left;
}
.product-viewer .product-viewer-gallery .product-viewer-gallery-carousel .product-viewer-gallery-carousel-images {
  overflow: hidden;
  width: 430px;
}
.product-viewer .product-viewer-gallery .product-viewer-gallery-carousel .product-viewer-gallery-carousel-images ul {
  left: 0;
  position: relative;
}
.product-viewer .product-viewer-gallery .product-viewer-gallery-carousel .product-viewer-gallery-carousel-images ul li {
  margin: 0 5px;
  position: relative;
}
.product-viewer .product-viewer-gallery .product-viewer-gallery-carousel .product-viewer-gallery-carousel-images ul li a {
  border: 1px solid #CCC;
  float: left;
  height: 76px;
  overflow: hidden;
  width: 76px;
}
.product-viewer .product-viewer-gallery .product-viewer-gallery-carousel .product-viewer-gallery-carousel-images ul li a img {
  height: 76px;
  width: 76px;
}
.product-viewer .product-viewer-gallery .product-viewer-gallery-carousel .product-viewer-gallery-carousel-images ul li.active {
  background: url('../img/icons/product-viewer-carousel-active.png') bottom center no-repeat;
  padding-bottom: 12px;
}
.product-viewer .product-viewer-gallery .product-viewer-gallery-carousel .product-viewer-gallery-carousel-images ul li.active a {
  border-bottom: 0;
}
.product-viewer .product-viewer-gallery .product-viewer-gallery-carousel .product-viewer-gallery-carousel-nav {
  color: #666666;
  display: block;
  font-size: 2.8em;
  padding: 23px 0;
  text-align: center;
  visibility: hidden;
  width: 30px;
}
.product-viewer .product-viewer-gallery .product-viewer-gallery-carousel .product-viewer-gallery-carousel-nav.prev {
  margin-right: 10px;
}
.product-viewer .product-viewer-gallery .product-viewer-gallery-carousel .product-viewer-gallery-carousel-nav.next {
  margin-left: 10px;
}
.product-viewer .product-viewer-gallery .product-viewer-gallery-description {
  margin-left: 45px;
  margin-top: 20px;
  width: 420px;
}
.product-viewer .product-viewer-gallery .product-viewer-gallery-description p {
  display: none;
  font-size: 1.4em;
  line-height: 1.5em;
  margin-bottom: 0;
}
.product-viewer .product-viewer-gallery .product-viewer-gallery-description p strong {
  color: #333;
}
.product-viewer .product-viewer-gallery .product-viewer-gallery-description p.active {
  display: block;
}
.product-viewer .product-viewer-sidebar {
  width: 300px;
}
.product-viewer .product-viewer-sidebar .product-viewer-sidebar-top p {
  font-size: 1.8em;
  line-height: 1.8em;
}
.product-viewer .product-viewer-sidebar .product-viewer-sidebar-top .product-viewer-resource {
  font-size: 1.0em;
  text-decoration: none;
  *zoom: 1;
  clear: both;
  float: left;
  font-size: 1.4em;
  margin-bottom: 15px;
}
.product-viewer .product-viewer-sidebar .product-viewer-sidebar-top .product-viewer-resource:hover {
  text-decoration: none;
}
.product-viewer .product-viewer-sidebar .product-viewer-sidebar-top .product-viewer-resource:before,
.product-viewer .product-viewer-sidebar .product-viewer-sidebar-top .product-viewer-resource:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
.product-viewer .product-viewer-sidebar .product-viewer-sidebar-top .product-viewer-resource:after {
  clear: both;
}
.product-viewer .product-viewer-sidebar .product-viewer-sidebar-top .product-viewer-resource:before,
.product-viewer .product-viewer-sidebar .product-viewer-sidebar-top .product-viewer-resource:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
.product-viewer .product-viewer-sidebar .product-viewer-sidebar-top .product-viewer-resource:after {
  clear: both;
}
.product-viewer .product-viewer-sidebar .product-viewer-sidebar-bottom .product-viewer-request-button {
  font-size: 1.0em;
  text-decoration: none;
  font: 700 1.2em Arial;
  /* 12px */

  color: #ffffff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background: #008ECD;
  border: 0;
  clear: both;
  display: block;
  float: left;
  letter-spacing: 0.3em;
  margin-bottom: 20px;
  margin-top: 20px;
  padding: 15px 20px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}
.product-viewer .product-viewer-sidebar .product-viewer-sidebar-bottom .product-viewer-request-button:hover {
  text-decoration: none;
}
.product-viewer .product-viewer-sidebar .product-viewer-sidebar-bottom .contact-us-links {
  clear: both;
  margin-top: 20px;
  padding-right: 0;
}
.product-viewer .product-viewer-sidebar .product-viewer-sidebar-bottom .contact-us-links .contact-links-list {
  margin-bottom: 0;
}
@media (min-width: 600px) and (max-width: 959px) {
  .product-viewer {
    margin-top: 5px;
    padding-top: 40px;
  }
  .product-viewer .product-viewer-gallery {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
  }
  .product-viewer .product-viewer-gallery .product-viewer-gallery-image {
    text-align: center;
  }
  .product-viewer .product-viewer-gallery .product-viewer-gallery-image .product-viewer-zoom-icon {
    font-size: 3.00em;
    left: 0;
    top: -10px;
  }
  .product-viewer .product-viewer-gallery .product-viewer-gallery-image ul {
    margin-left: 0;
  }
  .product-viewer .product-viewer-gallery .product-viewer-gallery-image ul li img {
    margin-left: auto;
    margin-right: auto;
    max-width: 264px;
  }
  .product-viewer .product-viewer-gallery .product-viewer-gallery-carousel {
    margin-left: 15px;
  }
  .product-viewer .product-viewer-gallery .product-viewer-gallery-description {
    margin-left: 60px;
  }
  .product-viewer .product-viewer-sidebar {
    margin-top: 40px;
    width: 100%;
  }
  .product-viewer .product-viewer-sidebar .product-viewer-sidebar-top {
    padding-right: 10px;
  }
  .product-viewer .product-viewer-sidebar .product-viewer-sidebar-bottom {
    padding-left: 10px;
  }
  .product-viewer .product-viewer-sidebar .product-viewer-sidebar-bottom .product-viewer-request-button {
    float: none;
    margin-bottom: 0px;
    margin-top: 0;
  }
  .product-viewer .product-viewer-sidebar .product-viewer-sidebar-bottom .contact-us-links {
    margin-top: 10px;
  }
  .product-viewer .product-viewer-sidebar .sidebar-share.hidden-sm {
    display: block !important;
  }
}
@media (min-width: 320px) and (max-width: 599px) {
  .product-viewer {
    background: none;
    margin-bottom: 0px;
    padding-top: 0;
  }
  .product-viewer > div {
    background: none;
    padding-bottom: 10px;
  }
  .product-viewer .product-viewer-gallery {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
  .product-viewer .product-viewer-gallery .product-viewer-gallery-image {
    text-align: center;
  }
  .product-viewer .product-viewer-gallery .product-viewer-gallery-image .product-viewer-zoom-icon {
    display: none;
  }
  .product-viewer .product-viewer-gallery .product-viewer-gallery-image ul {
    margin-left: 0;
  }
  .product-viewer .product-viewer-gallery .product-viewer-gallery-image ul li .product-viewer-gallery-img {
    max-width: 100%;
    width: 100%;
  }
  .product-viewer .product-viewer-gallery .product-viewer-gallery-description {
    border-bottom: 1px dotted #999;
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 10px;
    padding-bottom: 20px;
    width: auto;
  }
  .product-viewer .product-viewer-gallery .product-viewer-gallery-carousel {
    width: 100%;
  }
  .product-viewer .product-viewer-gallery .product-viewer-gallery-carousel .product-viewer-gallery-carousel-nav {
    display: none;
  }
  .product-viewer .product-viewer-gallery .product-viewer-gallery-carousel .product-viewer-gallery-carousel-images {
    padding-left: 0px;
    padding-right: 0px;
    width: 100%;
  }
  .product-viewer .product-viewer-gallery .product-viewer-gallery-carousel .product-viewer-gallery-carousel-images ul li {
    margin: 0 10px;
  }
  .product-viewer .product-viewer-gallery .product-viewer-gallery-carousel .product-viewer-gallery-carousel-images ul li a,
  .product-viewer .product-viewer-gallery .product-viewer-gallery-carousel .product-viewer-gallery-carousel-images ul li a img {
    height: 60px;
    width: 60px;
  }
  .product-viewer .product-viewer-sidebar {
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
  }
  .product-viewer .product-viewer-sidebar .product-viewer-sidebar-top p {
    font-size: 1.4em;
  }
  .product-viewer .product-viewer-sidebar .product-viewer-sidebar-bottom .product-viewer-request-button {
    float: none;
    margin-bottom: 0px;
  }
  .product-viewer .product-viewer-sidebar .product-viewer-sidebar-bottom .contact-us-links {
    margin-top: 10px;
  }
  .product-viewer .product-viewer-sidebar .product-viewer-sidebar-bottom .contact-us-links .contact-links-list li {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .product-viewer .product-viewer-sidebar .product-viewer-sidebar-bottom .contact-us-links .contact-links-list li a img {
    max-width: 25px;
  }
  .product-viewer .product-viewer-sidebar .sidebar-share.hidden-sm {
    display: block !important;
  }
}
h3.product-section {
  display: block;
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 1px dotted #808080;
  margin: 0;
}
.explore-products .explore-product-link-list {
  list-style-type: none;
  margin: 30px 0 0 0;
}
.explore-products .explore-product-link-list li {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  padding: 0;
}
.explore-products .explore-product-link-list li a {
  font-size: 1.0em;
  text-decoration: none;
  display: block;
  width: 100%;
  padding: 16px 0;
  border-top: 1px solid #d3d3d3;
}
.explore-products .explore-product-link-list li a:hover {
  text-decoration: none;
}
.explore-products .explore-product-link-list li a .explore-product-link-name {
  color: #48B8D2;
  font: 700 1.4em Arial;
  width: 90%;
  display: inline-block;
  vertical-align: middle;
}
.explore-products .explore-product-link-list li a .fa {
  font-size: .8em;
  vertical-align: middle;
  width: 10%;
  text-align: right;
}
@media (min-width: 600px) and (max-width: 959px) {
  .explore-products .explore-product-link-list li {
    width: 33%;
    padding: 0 12px;
  }
}
@media (min-width: 960px) {
  .explore-products .explore-product-link-list li {
    width: 33%;
    padding: 0 30px;
  }
}
.back-to-top {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 30px;
  background-color: #f2f2f2;
  padding: 16px 20px;
  color: #737373;
  z-index: 100;
  text-align: center;
  font-size: 1em;
}
.back-to-top:hover,
.back-to-top:active,
.back-to-top:focus {
  text-decoration: none;
  color: #737373;
}
.back-to-top .top-text {
  display: block;
  font-size: 1.2em;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.back-to-top .fa {
  font-size: 1.6em;
}
.section-accordion-content {
  padding: 20px 0;
}
.section-accordion-content.section-accordion-main {
  margin-top: 20px;
}
.section-accordion-content.section-accordion-optional {
  display: none;
}
.section-accordion-view-btn {
  display: block;
  border: 1px solid #d0d0d0;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  width: 100%;
  padding: 20px 0;
  margin: 20px auto;
  text-align: center;
  outline: 0;
}
.section-accordion-view-btn:hover,
.section-accordion-view-btn:focus {
  text-decoration: none;
  color: #48B8D2;
}
.section-accordion-view-btn .view-btn-text {
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.section-accordion-view-btn .fa {
  vertical-align: middle;
  margin-left: 10px;
}
@media (min-width: 600px) and (max-width: 959px) {
  .section-accordion-view-btn {
    width: 50%;
    padding: 20px 0;
  }
}
@media (min-width: 960px) {
  .section-accordion-view-btn {
    border: 0;
    padding: 20px 0;
    margin: 0;
  }
  .section-accordion-view-btn .view-btn-text {
    text-transform: capitalize;
    letter-spacing: normal;
  }
  .section-accordion-view-btn:hover,
  .section-accordion-view-btn:focus {
    color: #19598C;
  }
}
.video-gallery {
  margin: 20px 0 30px;
  overflow: hidden;
  position: relative;
}
.video-gallery-tile {
  width: 50%;
  float: left;
}
.video-gallery-tile .video-gallery-tile-link {
  width: 100%;
  display: block;
  position: relative;
  font-size: 1.0em;
  text-decoration: none;
}
.video-gallery-tile .video-gallery-tile-link:hover {
  text-decoration: none;
}
.video-gallery-tile .video-gallery-tile-link .video-gallery-img {
  top: 0;
  left: 0;
  width: 100%;
}
.video-gallery-tile .video-gallery-tile-link .video-gallery-tile-overlay {
  background: -moz-linear-gradient(top, rgba(40, 40, 40, 0.5) 0%, rgba(40, 40, 40, 0.5) 35%, rgba(212, 212, 212, 0.5) 65%, rgba(212, 212, 212, 0.5) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(40, 40, 40, 0.5)), color-stop(35%, rgba(40, 40, 40, 0.5)), color-stop(65%, rgba(212, 212, 212, 0.5)), color-stop(100%, rgba(212, 212, 212, 0.5)));
  background: -webkit-linear-gradient(top, rgba(40, 40, 40, 0.5) 0%, rgba(40, 40, 40, 0.5) 35%, rgba(212, 212, 212, 0.5) 65%, rgba(212, 212, 212, 0.5) 100%);
  background: -o-linear-gradient(top, rgba(40, 40, 40, 0.5) 0%, rgba(40, 40, 40, 0.5) 35%, rgba(212, 212, 212, 0.5) 65%, rgba(212, 212, 212, 0.5) 100%);
  background: -ms-linear-gradient(top, rgba(40, 40, 40, 0.5) 0%, rgba(40, 40, 40, 0.5) 35%, rgba(212, 212, 212, 0.5) 65%, rgba(212, 212, 212, 0.5) 100%);
  background: linear-gradient(to bottom, rgba(40, 40, 40, 0.5) 0%, rgba(40, 40, 40, 0.5) 35%, rgba(212, 212, 212, 0.5) 65%, rgba(212, 212, 212, 0.5) 100%);
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
}
.video-gallery-tile .video-gallery-tile-link .video-gallery-tile-title {
  color: #FFFFFF;
  display: block;
  font-size: 1.6em;
  font-weight: 700;
  line-height: 1.4em;
  text-align: left;
  width: 80%;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}
.video-gallery-tile .video-gallery-tile-link .video-gallery-arrow-icon {
  display: inline-block;
  vertical-align: middle;
  text-align: right;
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 2;
}
.video-gallery-tile .video-gallery-tile-link .video-gallery-arrow-icon .fa {
  color: #ffffff;
  font-size: 2.5em;
}
.lt-ie9 .video-gallery-tile-overlay {
  filter: none;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzI4MjgyOCIgc3RvcC1vcGFjaXR5PSIwLjUiLz4KICAgIDxzdG9wIG9mZnNldD0iMzUlIiBzdG9wLWNvbG9yPSIjMjgyODI4IiBzdG9wLW9wYWNpdHk9IjAuNSIvPgogICAgPHN0b3Agb2Zmc2V0PSI2NSUiIHN0b3AtY29sb3I9IiNkNGQ0ZDQiIHN0b3Atb3BhY2l0eT0iMC41Ii8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkNGQ0ZDQiIHN0b3Atb3BhY2l0eT0iMC41Ii8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
}
.lt-ie8 .video-gallery-tile-overlay {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80282828', endColorstr='#80d4d4d4', GradientType=0);
}
@media (min-width: 600px) and (max-width: 959px) {
  .video-gallery {
    margin: 20px 0 30px;
    overflow: hidden;
    position: relative;
  }
  .video-gallery-tile {
    width: 189px;
  }
  .video-gallery-tile .video-gallery-tile-link .video-gallery-tile-title {
    font-size: 1.4em;
    line-height: 1.4em;
  }
  .video-gallery-tile .video-gallery-tile-link .video-gallery-arrow-icon .fa {
    font-size: 2em;
  }
  .cq-colctrl-2d2t2m .video-gallery-tile,
  .cq-colctrl-2d2t1m .video-gallery-tile,
  .cq-colctrl-3d2t2m .video-gallery-tile {
    width: 140px;
  }
}
@media (min-width: 960px) {
  .video-gallery-tile {
    width: 235px;
  }
  .video-gallery-tile .video-gallery-tile-link .video-gallery-tile-title {
    font-size: 2em;
  }
  .video-gallery-tile .video-gallery-arrow-icon .fa {
    font-size: 3em;
  }
  .cq-colctrl-2d2t2m .video-gallery-tile,
  .cq-colctrl-2d2t1m .video-gallery-tile {
    width: 230px;
  }
}
@media (min-width: 320px) and (max-width: 460px) {
  .video-gallery-tile .video-gallery-tile-link .video-gallery-tile-title {
    font-size: 1.3em;
  }
  .video-gallery-tile .video-gallery-tile-link .video-gallery-arrow-icon .fa {
    font-size: 2em;
  }
}
.feature-section,
.feature-section-small {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.feature-section .feature-section-col,
.feature-section-small .feature-section-col {
  width: 48%;
  margin-left: 2%;
  float: left;
}
.feature-section .feature-section-col:first-child,
.feature-section-small .feature-section-col:first-child {
  margin-left: 0;
}
@media (min-width: 320px) and (max-width: 959px) {
  .feature-section .feature-section-col {
    margin-left: 2%;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .feature-section .feature-section-col {
    width: 32%;
  }
}
@media (min-width: 960px) {
  .feature-section {
    width: 100%;
    overflow: hidden;
  }
  .feature-section .feature-section-col {
    width: 23.5%;
    margin-left: 2%;
  }
  .feature-section-small .feature-section-col {
    width: 32%;
    margin-left: 2%;
  }
}
.image-carousel .carousel-nav a {
  bottom: 50%;
}
.image-carousel .carousel-nav a span {
  color: #888;
  font-size: 3em;
}
.image-carousel .image-carousel-banner {
  -moz-opacity: 0.9;
  -khtml-opacity: 0.9;
  -webkit-opacity: 0.9;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=90);
  opacity: 0.9;
  filter: alpha(opacity=90);
  background: #F3F3F3;
  height: 100%;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 50%;
}
.image-carousel .image-carousel-banner h2 {
  font: 400 3.6em "open_sansregular", serif;
  /* 36px */

  color: #19598C;
  border: 0;
  font-size: 2.2em;
}
@media (min-width: 600px) and (max-width: 959px) {
  .image-carousel .image-carousel-banner h2 {
    font: 400 3.2em "open_sansregular", serif;
    /* 32px */
  
  }
}
@media (max-width: 599px) {
  .image-carousel .image-carousel-banner h2 {
    font: 400 2.2em "open_sansregular", serif;
    /* 22px */
  
  }
}
.image-carousel .image-carousel-banner h3 {
  font: 400 1.2em "open_sansbold", serif;
  /* 12px */

  color: #E6F4FA;
  letter-spacing: 0.10em;
  /* Tracking: 100 */

  border-bottom: 1px dotted #999;
  color: #666;
  margin-top: 50px;
  padding-bottom: 15px;
}
@media (max-width: 599px) {
  .image-carousel .image-carousel-banner h3 {
    font: 400 1em "open_sansbold", serif;
    /* 10px */
  
  }
}
.image-carousel .image-carousel-banner h2,
.image-carousel .image-carousel-banner h3 {
  margin-left: auto;
  margin-right: auto;
  max-width: 200px;
}
.image-carousel .image-carousel-banner .learn {
  font-size: 1.0em;
  text-decoration: none;
  font: 700 1.2em Arial;
  /* 12px */

  color: #ffffff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  display: inline-block;
  background: #008ECD;
  padding: 15px 20px;
  text-transform: uppercase;
}
.image-carousel .image-carousel-banner .learn:hover {
  text-decoration: none;
}
.image-carousel .image-carousel-banner .learn .arrows {
  display: none;
}
.image-carousel .image-carousel-banner.dark {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  opacity: 1;
  filter: alpha(opacity=100);
  background: #195A89;
}
.image-carousel .image-carousel-banner.dark h2,
.image-carousel .image-carousel-banner.dark h3 {
  color: #ffffff;
}
.image-carousel .image-carousel-banner.dark h3 {
  border-bottom: 1px dotted #ffffff;
}
@media (min-width: 320px) and (max-width: 959px) {
  .image-carousel .carousel-nav a {
    bottom: 75px;
  }
  .image-carousel .image-carousel-banner {
    bottom: 0;
    height: auto;
    padding-bottom: 15px;
    padding-top: 15px;
    position: relative;
    top: auto;
    width: 100%;
  }
  .image-carousel .image-carousel-banner h2,
  .image-carousel .image-carousel-banner h3 {
    margin: 0 auto;
    padding-bottom: 0;
  }
  .image-carousel .image-carousel-banner h2 {
    font-size: 1.8em;
    margin-bottom: 8px;
    margin-top: 5px;
    max-width: 280px;
  }
  .image-carousel .image-carousel-banner h3 {
    font-size: 1.0em;
    padding-bottom: 10px;
  }
  .image-carousel .image-carousel-banner .learn {
    background: none;
    color: #48B8D2;
    padding: 0;
    text-transform: none;
  }
  .image-carousel .image-carousel-banner .learn .arrows {
    display: inline-block;
  }
}
.resource-links .sidebar-header {
  margin-bottom: 0;
}
.resource-links .contact-us-links {
  margin-top: 0;
  padding-right: 0;
}
.resource-links .contact-us-links .contact-links-list li {
  padding-bottom: 12px;
  padding-top: 12px;
}
.resource-links .contact-us-links .contact-links-list li a img {
  width: 18%;
}
@media (min-width: 320px) and (max-width: 959px) {
  .resource-links .contact-us-links .contact-links-list li {
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .resource-links .contact-us-links .contact-links-list li a img {
    width: 13%;
  }
}
.template table {
  border: 1px solid #e2e2e2;
  table-layout: fixed;
  width: 100%;
}
.template table tbody tr th,
.template table tbody tr td {
  border-right: 1px solid #e2e2e2;
  font-size: 1.6em;
  padding: 8px 5px;
  vertical-align: top;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
.template table tbody tr th {
  border-bottom: 1px solid #e2e2e2;
  border-top: 1px solid #e2e2e2;
}
.template table tbody tr td {
  border-top: 1px solid #fff;
  color: #4f4f4f;
}
.template table tbody tr td ul,
.template table tbody tr td ol {
  margin-left: 25px;
}
.finder {
  margin-bottom: 30px;
}
.finder .finder-header {
  background: #F8F8F8;
  border: 1px solid #DDD;
  height: 55px;
}
.finder .finder-header h2 {
  border: 0;
  display: inline-block;
  margin: 0;
  padding: 15px 0 0 15px;
}
.finder .finder-header .js-finder-toggle {
  border-left: 1px solid #DDD;
  color: #BBB;
  display: block;
  height: 100%;
  float: right;
  text-align: center;
  text-decoration: none;
  width: 55px;
}
.finder .finder-header .js-finder-toggle i {
  display: block;
  padding-top: 18px;
}
.finder .finder-contents {
  border: 1px solid #DDD;
  border-top: 0;
  padding: 20px 15px;
}
.finder .finder-contents h3 {
  color: #404040;
  font-size: 1.8em;
  margin: 0 0 10px;
  padding: 0;
}
.finder .finder-contents .links-list {
  margin-bottom: 0;
}
.finder .finder-contents .links-list .links-list-item {
  width: 23%;
}
@media (min-width: 599px) {
  .finder .finder-contents.hide-toggle {
    display: block !important;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .finder .finder-contents .links-list .links-list-item {
    width: 170px;
    margin-right: 10px;
  }
}
@media (max-width: 599px) {
  .finder {
    margin-left: -10px;
    margin-right: -10px;
  }
  .finder .finder-header {
    border-left: 0;
    border-right: 0;
  }
  .finder .finder-contents {
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
    padding: 0;
  }
  .finder .finder-contents h3 {
    display: none;
  }
  .finder .finder-contents .links-list .links-list-item {
    padding: 0;
    width: 100%;
  }
  .finder .finder-contents .links-list .links-list-item a {
    border-bottom: 1px solid #DDD;
    display: block;
    padding: 20px 15px;
  }
}
@media (min-width: 960px) {
  .lt-ie9 .finder .finder-contents .links-list .links-list-item {
    width: 21.5%;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .lt-ie9 .finder .finder-contents .links-list .links-list-item {
    width: 30%;
  }
}
.results-product-finder {
  margin-bottom: 30px;
}
.results-product-finder.finder-expanded .results-product-finder-header h2 {
  color: #19598C;
}
.results-product-finder .results-product-finder-header {
  background: #F8F8F8;
  border: 1px solid #DDD;
  height: 55px;
  position: relative;
}
.results-product-finder .results-product-finder-header h2 {
  border: 0;
  display: inline-block;
  margin: 0;
  padding: 15px 0 0 15px;
  width: 80%;
  color: #48B8D2;
}
.results-product-finder .results-product-finder-header .results-product-finder-header-divider {
  right: 106px;
  width: 1px;
  height: 100%;
  background-color: #e6e6e6;
  top: 0;
  position: absolute;
}
.results-product-finder .results-product-finder-header .results-product-finder-header-link {
  font-size: 1em;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 56px;
  padding: 12px 30px;
  text-align: center;
}
.results-product-finder .results-product-finder-header .results-product-finder-header-link .results-product-finder-header-link-text {
  display: block;
  font-size: 1.2em;
  color: #b3b3b3;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 2px;
  width: 46px;
}
.results-product-finder .results-product-finder-header .results-product-finder-header-link:hover,
.results-product-finder .results-product-finder-header .results-product-finder-header-link:active,
.results-product-finder .results-product-finder-header .results-product-finder-header-link:focus {
  text-decoration: none;
}
.results-product-finder .results-product-finder-header .results-product-finder-header-link .results-product-finder-header-arrow {
  color: #b3b3b3;
}
.results-product-finder .results-product-finder-contents {
  border: 1px solid #DDD;
  border-top: 0;
  padding: 20px 15px;
  display: none;
}
.results-product-finder .results-product-finder-contents h3 {
  color: #404040;
  font-size: 1.8em;
  margin: 0 0 10px;
  padding: 0;
}
.results-product-finder .results-product-finder-contents .links-list {
  margin-bottom: 0;
}
.results-product-finder .results-product-finder-contents .links-list .links-list-item {
  width: 23%;
}
@media (min-width: 599px) {
  .results-product-finder .results-product-finder-contents.hide-toggle {
    display: block !important;
  }
}
@media (max-width: 599px) {
  .results-product-finder {
    margin-left: -10px;
    margin-right: -10px;
  }
  .results-product-finder .results-product-finder-header {
    border-left: 0;
    border-right: 0;
  }
  .results-product-finder .results-product-finder-header .results-product-finder-header-divider {
    right: 60px;
  }
  .results-product-finder .results-product-finder-header .results-product-finder-header-link {
    padding: 20px 28px 20px 24px;
  }
  .results-product-finder .results-product-finder-header .results-product-finder-header-link .results-product-finder-header-link-text {
    display: none;
  }
  .results-product-finder .results-product-finder-contents {
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
    padding: 0;
  }
  .results-product-finder .results-product-finder-contents h3 {
    display: none;
  }
  .results-product-finder .results-product-finder-contents .links-list .links-list-item {
    padding: 0;
    width: 100%;
  }
  .results-product-finder .results-product-finder-contents .links-list .links-list-item a {
    border-bottom: 1px solid #DDD;
    display: block;
    padding: 20px 15px;
  }
}
@media (min-width: 960px) {
  .lt-ie9 .results-product-finder .results-product-finder-contents .links-list .links-list-item {
    width: 21.5%;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .lt-ie9 .results-product-finder .results-product-finder-contents .links-list .links-list-item {
    width: 30%;
  }
  .results-product-finder .results-product-finder-header .results-product-finder-header-divider {
    right: 60px;
  }
  .results-product-finder .results-product-finder-header .results-product-finder-header-link {
    height: 54px;
    padding: 20px 24px;
  }
  .results-product-finder .results-product-finder-header .results-product-finder-header-link .results-product-finder-header-link-text {
    display: none;
  }
}
.product-tile {
  list-style-type: none;
  margin-bottom: 30px;
}
.product-tile .product-tile-image img {
  float: left;
  margin-right: 40px;
  width: 120px;
}
.product-tile .product-tile-content {
  float: left;
  margin-right: 20px;
  width: 620px;
}
.product-tile .product-tile-content h3 {
  font-size: 1.6em;
  margin-bottom: 10px;
}
.product-tile .product-tile-content h3 a {
  text-decoration: none;
  font-size: 1.0em;
}
.product-tile .product-tile-content h3 a:hover {
  text-decoration: none;
}
.product-tile .product-tile-content p {
  font-size: 1.4em;
  margin: 0;
  margin-top: 15px;
  line-height: 1.5em;
}
.product-tile .product-tile-categories {
  float: left;
  list-style-type: none;
  width: 140px;
}
.product-tile .product-tile-categories li {
  font: 400 1.2em "open_sansbold", serif;
  color: #AAA;
  margin-bottom: 5px;
  padding-left: 15px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product-tile .product-tile-categories li .fa {
  left: 0;
  position: absolute;
  top: 3px;
}
.product-categories h2 {
  margin-bottom: 30px;
}
.product-categories h2 .product-categories-count {
  color: #666;
  font-weight: normal;
}
.product-categories .product-category-name {
  font: 700 1.8em Arial;
  color: #404040;
  margin-bottom: 20px;
  display: block;
}
.product-categories .product-category-name .product-categories-subcount {
  font-weight: 400;
  color: #666666;
}
.product-categories .product-categories-list.list .product-tile .product-tile-content h3 {
  margin-top: 0;
}
.product-categories .product-categories-list.gallery {
  margin-bottom: 0px;
  margin-left: -10px;
  margin-right: -10px;
}
.product-categories .product-categories-list.gallery .product-tile {
  margin-left: 8px;
  margin-right: 8px;
  width: 221px;
  display: inline-block;
  vertical-align: top;
}
.product-categories .product-categories-list.gallery .product-tile .product-tile-image img {
  margin-right: 0;
  width: 100%;
}
.product-categories .product-categories-list.gallery .product-tile .product-tile-content {
  width: 100%;
}
.product-categories .product-categories-list.gallery .product-tile .product-tile-content h3 {
  font-size: 1.4em;
  margin-top: 20px;
}
.product-categories .product-categories-list.gallery .product-tile .product-tile-content p {
  display: none;
}
@media (min-width: 600px) and (max-width: 959px) {
  .product-categories .product-categories-list.list .product-tile .product-tile-image img {
    margin-right: 20px;
    width: 100px;
  }
  .product-categories .product-categories-list.list .product-tile .product-tile-content {
    margin-right: 30px;
    width: 310px;
  }
  .product-categories .product-categories-list.list .product-tile .product-tile-content p {
    margin-top: 10px;
  }
  .product-categories .product-categories-list.list .product-tile .product-tile-categories {
    width: 144px;
  }
  .product-categories .product-categories-list.gallery .product-tile {
    width: 180px;
  }
  .product-categories .product-categories-list.gallery .product-tile .product-tile-content p {
    margin-top: 10px;
  }
}
@media (max-width: 599px) {
  .product-categories .btn-expandable-list {
    margin: 10px 0 30px 0;
  }
  .product-categories .product-categories-list.list .product-tile {
    margin-bottom: 20px;
    position: relative;
  }
  .product-categories .product-categories-list.list .product-tile .product-tile-image img {
    position: absolute;
    width: 60px;
  }
  .product-categories .product-categories-list.list .product-tile .product-tile-content {
    padding-left: 80px;
    width: 100%;
  }
  .product-categories .product-categories-list.list .product-tile .product-tile-content h3 {
    margin-bottom: 10px;
  }
  .product-categories .product-categories-list.list .product-tile .product-tile-content p {
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .product-categories .product-categories-list.list .product-tile .product-tile-categories {
    padding-left: 80px;
    width: auto;
  }
  .product-categories .product-categories-list.gallery .product-tile {
    height: 40%;
    margin-left: 2%;
    margin-right: 2%;
    width: 45%;
  }
  .product-categories .product-categories-list.gallery .product-tile h3 {
    margin-bottom: 10px;
  }
  .product-categories .product-categories-list.gallery .product-tile p {
    margin-bottom: 10px;
  }
}
.product-categories .product-categories-list.gallery .product-tile .product-tile-categories {
  margin-top: 5px;
  width: 100%;
}
@media (min-width: 600px) and (max-width: 959px) {
  .product-categories .product-categories-list.gallery .product-tile {
    margin-right: 9px;
  }
}
.product-categories .product-categories-list.list .product-tile .product-tile-image img {
  margin-right: 20px;
  width: 100px;
}
.product-categories .product-categories-list.list .product-tile .product-tile-content {
  margin-right: 30px;
  width: 310px;
}
.product-categories .product-categories-list.list .product-tile .product-tile-categories {
  width: 144px;
}
.product-categories .product-categories-list.list .product-tile.product-category .product-tile-content {
  margin: 0;
  width: 560px;
}
@media (max-width: 959px) {
  .product-categories .product-categories-list.list .product-tile.product-category .product-tile-content {
    width: 100%;
  }
}
.product-categories .product-categories-list.list .product-tile.product-specialty .product-tile-content {
  width: 642px;
}
@media (max-width: 959px) {
  .product-categories .product-categories-list.list .product-tile.product-specialty .product-tile-content {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .product-categories .product-categories-list.list .product-tile {
    margin-bottom: 20px;
    position: relative;
  }
  .product-categories .product-categories-list.list .product-tile .product-tile-image img {
    position: absolute;
    width: 60px;
  }
  .product-categories .product-categories-list.list .product-tile .product-tile-content {
    padding-left: 80px;
    width: 100%;
  }
  .product-categories .product-categories-list.list .product-tile .product-tile-content h3 {
    margin-bottom: 10px;
  }
  .product-categories .product-categories-list.list .product-tile .product-tile-content p {
    margin-bottom: 10px;
  }
  .product-categories .product-categories-list.list .product-tile .product-tile-categories {
    padding-left: 80px;
    width: 100%;
  }
}
@media (max-width: 599px) {
  .product-categories .product-categories-list.list .product-tile {
    margin-bottom: 20px;
    position: relative;
  }
  .product-categories .product-categories-list.list .product-tile .product-tile-image img {
    position: absolute;
    width: 60px;
  }
  .product-categories .product-categories-list.list .product-tile .product-tile-content {
    padding-left: 80px;
    width: 100%;
  }
  .product-categories .product-categories-list.list .product-tile .product-tile-content h3 {
    margin-bottom: 10px;
  }
  .product-categories .product-categories-list.list .product-tile .product-tile-content p {
    margin-bottom: 10px;
  }
  .product-categories .product-categories-list.list .product-tile .product-tile-categories {
    padding-left: 80px;
    width: 100%;
  }
}
.product-categories-filter {
  padding-bottom: 10px;
}
.product-categories-filter .solution-filter {
  float: left;
}
@media (min-width: 960px) {
  .product-categories-filter .solution-filter {
    width: 460px;
  }
}
@media (max-width: 599px) {
  .product-categories-filter {
    border-top: 0;
    padding-top: 0;
  }
}
.solution-filter {
  width: 100%;
  margin-bottom: 24px;
}
.solution-filter .solution-filter-label {
  font: 400 1.6em Arial;
  color: #737373;
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
.solution-filter .solution-filter-field {
  width: 100%;
  border: 1px solid #d9d9d9;
  cursor: pointer;
}
.solution-filter .solution-filter-field .solution-filter-selected {
  padding: 16px;
}
.solution-filter .solution-filter-field .solution-filter-selected .solution-filter-selected-text {
  font: 700 1.6em Arial;
  color: #404040;
  display: inline-block;
  vertical-align: middle;
  width: 88%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.solution-filter .solution-filter-field .solution-filter-selected .solution-filter-arrow {
  display: inline-block;
  vertical-align: middle;
  width: 10%;
  text-align: right;
  color: #808080;
}
.solution-filter .solution-filter-field .solution-filter-option-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.solution-filter .solution-filter-field .solution-filter-option-list .solution-filter-option {
  padding: 10px 16px;
  font: 400 1.4em Arial;
  color: #737373;
}
.solution-filter .solution-filter-field .solution-filter-option-list .solution-filter-option:hover {
  background: #f7f7f7;
}
@media (min-width: 600px) and (max-width: 959px) {
  .solution-filter {
    width: 380px;
  }
}
@media (max-width: 599px) {
  .solution-filter {
    width: 100%;
  }
}
.solution-block.solution-expanded .solution-block-header .solution-block-title {
  color: #2a6496;
}
.solution-block .solution-block-header {
  background: #f7f7f7;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  margin-left: -10px;
  margin-right: -10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.solution-block .solution-block-header .solution-block-title {
  padding: 24px 10px;
  width: 80%;
  display: block;
  line-height: 1.8em;
}
.solution-block .solution-block-header .solution-block-title:hover,
.solution-block .solution-block-header .solution-block-title:active,
.solution-block .solution-block-header .solution-block-title:focus {
  text-decoration: none;
}
.solution-block .solution-block-header .solution-block-header-divider {
  width: 1px;
  height: 100%;
  background-color: #e6e6e6;
  right: 60px;
  top: 0;
  position: absolute;
}
.solution-block .solution-block-header .solution-block-header-link {
  font-size: 1em;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 62px;
  padding: 24px;
}
.solution-block .solution-block-header .solution-block-header-link:hover,
.solution-block .solution-block-header .solution-block-header-link:active,
.solution-block .solution-block-header .solution-block-header-link:focus {
  text-decoration: none;
}
.solution-block .solution-block-header .solution-block-header-link .solution-block-header-link-text {
  display: none;
}
.solution-block .solution-block-header .solution-block-header-link .solution-block-header-arrow {
  color: #b3b3b3;
}
.solution-block .solution-block-body {
  padding: 20px 0;
  display: none;
}
.solution-block .solution-block-body .solution-block-main-desc {
  font: 400 1.4em Arial;
  color: #808080;
  line-height: 1.7em;
  margin-bottom: 20px;
}
.solution-block .solution-block-body .solution-block-desc-link {
  display: block;
  margin-bottom: 20px;
}
.solution-block .solution-block-body .solution-block-desc-link:hover {
  text-decoration: none;
}
.solution-block .solution-block-body .solution-block-desc-link .fa {
  font-size: .7em;
  vertical-align: baseline;
  margin-left: 8px;
}
@media (max-width: 599px) {
  .for-mobile.solutions {
    margin-top: 30px;
  }
}
@media (min-width: 600px) {
  .solution-block {
    margin-bottom: 30px;
    border: 1px solid #e6e6e6;
  }
  .solution-block .solution-block-header {
    border-top: 0;
    margin: 0;
  }
  .solution-block .solution-block-header .solution-block-title {
    font-size: 2.2em;
    line-height: 1.4em;
    padding: 18px 30px;
  }
  .solution-block .solution-block-header .solution-block-header-divider {
    right: 106px;
  }
  .solution-block .solution-block-header .solution-block-header-link {
    height: 64px;
    padding: 18px 30px;
    text-align: center;
  }
  .solution-block .solution-block-header .solution-block-header-link .solution-block-header-link-text {
    display: block;
    font-size: 1.2em;
    color: #b3b3b3;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: 46px;
  }
  .solution-block .solution-block-body {
    padding: 30px;
    display: block;
  }
  .solution-block .solution-block-body .solution-block-main-desc {
    font: 400 1.6em Arial;
    line-height: 1.8em;
  }
  .solution-block .solution-block-body .solution-block-products {
    display: none;
    overflow: hidden;
  }
}
.solution-block-tile {
  margin: 5px 0;
  padding: 10px 0;
  font-size: 1em;
  display: block;
}
.solution-block-tile:hover,
.solution-block-tile:active,
.solution-block-tile:focus {
  text-decoration: none;
}
.solution-block-tile .solutions-block-tile-img {
  display: inline-block;
  vertical-align: top;
  width: 21%;
  overflow: hidden;
}
.solution-block-tile .solutions-block-tile-img img {
  width: 100%;
}
.solution-block-tile .solution-block-tile-text {
  display: inline-block;
  vertical-align: top;
  margin-left: 20px;
  overflow: hidden;
  width: 71%;
}
.solution-block-tile .solution-block-tile-text .solution-block-tile-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  line-height: 1.4em;
}
.solution-block-tile .solution-block-tile-text .solution-block-tile-desc {
  font: 400 1.2em Arial;
  color: #666666;
  line-height: 1.6em;
  max-height: 40px;
  overflow: hidden;
  display: block;
  margin-bottom: 0;
  margin-top: 12px;
}
@media (min-width: 600px) {
  .solution-block-tile {
    margin: 4px 0;
    padding: 6px 0;
  }
  .solution-block-tile .solution-block-tile-text {
    margin-top: -5px;
  }
  .solution-block-tile .solution-block-tile-text .solution-block-tile-title {
    font-size: 1.8em;
    margin-bottom: 18px;
    line-height: 1.6em;
  }
  .solution-block-tile .solution-block-tile-text .solution-block-tile-desc {
    font: 400 1.4em Arial;
    color: #737373;
    line-height: 1.5em;
    max-height: 104px;
  }
}
.digital-asset-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  clear: both;
}
.digital-asset-list .digital-asset-list-item {
  padding: 16px 0;
}
.digital-asset-list .digital-asset-list-item .digital-asset-item-img {
  width: 80px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: top;
}
@media (min-width: 600px) and (max-width: 959px) {
  .digital-asset-list .digital-asset-list-item .digital-asset-item-img {
    width: 60px;
    margin-right: 16px;
  }
}
@media (max-width: 599px) {
  .digital-asset-list .digital-asset-list-item .digital-asset-item-img {
    width: 20%;
    margin-right: 4%;
    max-width: 60px;
  }
}
.digital-asset-list .digital-asset-list-item .digital-asset-item-info {
  display: inline-block;
  vertical-align: top;
  font-size: 1em;
  width: 376px;
  margin-top: -2px;
}
@media (min-width: 600px) and (max-width: 959px) {
  .digital-asset-list .digital-asset-list-item .digital-asset-item-info {
    width: 300px;
  }
}
@media (max-width: 599px) {
  .digital-asset-list .digital-asset-list-item .digital-asset-item-info {
    width: 70%;
    margin-left: 1%;
    max-width: 376px;
  }
}
.digital-asset-list .digital-asset-list-item .digital-asset-item-info .digital-asset-date {
  font: 400 1.6em Arial;
  color: #b3b3b3;
  line-height: 1.5em;
  display: block;
}
.digital-asset-list .digital-asset-list-item .digital-asset-item-info .digital-asset-title {
  font-size: 1.8em;
  line-height: 1.4em;
  display: block;
  margin-bottom: 5px;
}
.digital-asset-list .digital-asset-list-item .digital-asset-item-info .digital-asset-desc {
  font-size: 1.4em;
  line-height: 1.6em;
  margin: 0;
}
.digital-asset-list .digital-asset-list-item .digital-asset-item-info .digital-asset-desc .digital-asset-file-info {
  font-weight: 700;
}
.digital-asset-list .digital-asset-list-item.no-desc .digital-asset-item-info .digital-asset-file-info {
  display: block;
  font: 700 1.4em Arial;
  color: #737373;
}
.digital-asset-list .digital-asset-list-item.no-image .digital-asset-item-img {
  display: none;
}
.digital-asset-list .digital-asset-list-item.no-image .digital-asset-item-info {
  width: 100%;
}
@media (min-width: 600px) {
  .digital-asset-list .digital-asset-list-item .digital-asset-item-info .digital-asset-date {
    font: 400 1.8em Arial;
    line-height: 1.6em;
  }
  .digital-asset-list .digital-asset-list-item .digital-asset-item-info .digital-asset-title {
    font-size: 1.8em;
    line-height: 1.6em;
  }
  .digital-asset-list .digital-asset-list-item .digital-asset-item-info .digital-asset-desc {
    font-size: 1.4em;
    line-height: 1.7em;
  }
  .digital-asset-list .digital-asset-list-item.no-desc .digital-asset-item-info .digital-asset-file-info {
    font: 700 1.4em Arial;
  }
  .digital-asset-toggle .toggle-options li a {
    min-width: 140px;
    text-align: center;
  }
}
@media (max-width: 959px) {
  .digital-asset-list .digital-asset-list-item .digital-asset-item-info .digital-asset-date {
    font-size: 1.6em;
  }
  .digital-asset-list .digital-asset-list-item.no-image .digital-asset-item-img {
    display: none;
  }
  .digital-asset-list .digital-asset-list-item.no-image .digital-asset-item-info {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 959px) {
  .digital-asset-list .digital-asset-list-item .digital-asset-title {
    margin-top: 5px;
  }
}
.search-results {
  list-style-type: none;
  margin: 0;
  padding: 0;
  clear: both;
}
.search-results .search-result-item {
  padding: 16px 0;
}
.search-results .search-result-item .search-result-title {
  font-size: 1.4em;
  line-height: 1.4em;
  display: block;
  margin-bottom: 16px;
}
.search-results .search-result-item .search-result-desc {
  font-size: 1.2em;
  line-height: 1.5em;
  margin: 0;
}
.search-results .search-result-item .search-result-desc > strong {
  color: #404040;
}
@media (min-width: 600px) {
  .search-results .search-result-item .search-result-title {
    font-size: 1.6em;
    line-height: 1.4em;
  }
  .search-results .search-result-item .search-result-desc {
    font-size: 1.4em;
    line-height: 1.7em;
  }
}
.search-results-header {
  padding: 20px 0;
  border-top: 1px dotted #808080;
  border-bottom: 1px dotted #808080;
  margin-bottom: 16px;
}
.search-results-header .search-results-header-text {
  display: block;
  font: 400 1.4em "open_sansitalic", serif;
  color: #999999;
}
.search-results-header .search-results-header-text > span {
  font-family: "open_sansbold", serif;
  color: #404040;
}
.search-results-header .search-results-suggestion {
  font-size: 1.4em;
  font-weight: bold;
  display: block;
  color: #737373;
  margin: 10px 0 0;
}
.search-results-header .search-results-suggestion a {
  font-size: 1em;
}
@media (min-width: 960px) {
  .search-results-header .search-results-header-text {
    font: 400 1.6em "open_sansitalic", serif;
  }
}
.pagination .pagination-option {
  padding: 30px 0;
}
.pagination .pagination-option label {
  display: inline-block;
  font: 400 1.4em Arial;
  color: #737373;
  vertical-align: middle;
}
.pagination .pagination-option .pagination-displayed-results {
  display: inline-block;
  width: 110px;
  margin: 0 20px;
  vertical-align: middle;
}
.pagination .pagination-option .pagination-displayed-results .pagination-custom-select {
  width: 100%;
  cursor: pointer;
  position: relative;
}
.pagination .pagination-option .pagination-displayed-results .pagination-custom-select .custom-select-selected {
  padding: 16px;
  border: 1px solid #d9d9d9;
  background-color: #ffffff;
}
.pagination .pagination-option .pagination-displayed-results .pagination-custom-select .custom-select-selected.custom-select-expanded {
  border-bottom: 1px solid #ffffff;
}
.pagination .pagination-option .pagination-displayed-results .pagination-custom-select .custom-select-selected .custom-select-selected-text {
  font: 700 1.6em Arial;
  color: #404040;
  display: inline-block;
  vertical-align: middle;
  width: 88%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.pagination .pagination-option .pagination-displayed-results .pagination-custom-select .custom-select-selected .custom-select-arrow {
  display: inline-block;
  vertical-align: middle;
  width: 10%;
  text-align: right;
  color: #808080;
}
.pagination .pagination-option .pagination-displayed-results .pagination-custom-select .custom-select-option-list {
  display: none;
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: absolute;
  background: #ffffff;
  width: 100%;
  border: 1px solid #d9d9d9;
  border-top: 0;
}
.pagination .pagination-option .pagination-displayed-results .pagination-custom-select .custom-select-option-list .custom-select-option {
  padding: 10px 16px;
  font: 400 1.4em Arial;
  color: #737373;
}
.pagination .pagination-option .pagination-displayed-results .pagination-custom-select .custom-select-option-list .custom-select-option:hover {
  background: #f7f7f7;
}
.pagination .pagination-option .pagination-displayed-results .pagination-custom-select select {
  display: block;
  position: absolute;
  left: 4px;
  top: 4px;
  z-index: -1;
  width: 100px;
  height: 44px;
  background: transparent;
}
.pagination .pagination-pages .pages-list {
  list-style-type: none;
  margin: 0;
}
.pagination .pagination-pages .pages-list li {
  display: inline-block;
}
.pagination .pagination-pages .pages-list li a {
  display: block;
  padding: 0 7px;
  text-transform: uppercase;
}
.pagination .pagination-pages .pages-list li a:hover,
.pagination .pagination-pages .pages-list li a:active,
.pagination .pagination-pages .pages-list li a:focus,
.pagination .pagination-pages .pages-list li a.active-page {
  color: #737373;
  text-decoration: none;
}
.pagination .pagination-pages .pages-list li a .fa {
  font-size: .7em;
}
.pagination .pagination-pages .pages-list li.pages-list-prev a .fa {
  padding-right: 3px;
}
.pagination .pagination-pages .pages-list li.pages-list-next a .fa {
  padding-left: 3px;
}
.pagination .pagination-pages .pages-list li.pages-page-ellipsis {
  font-size: 2em;
  letter-spacing: -2px;
  color: #737373;
}
@media (min-width: 600px) {
  .pagination {
    padding: 30px 0 0;
  }
  .pagination .pagination-option {
    display: inline-block;
    vertical-align: baseline;
    padding: 0;
    margin-right: 30px;
  }
  .pagination .pagination-pages {
    display: inline-block;
    vertical-align: baseline;
  }
  .pagination .pagination-pages .pages-list li a {
    padding: 0 6px;
  }
  .pagination .pagination-pages .pages-list li.pages-list-prev a .fa {
    padding-right: 3px;
  }
  .pagination .pagination-pages .pages-list li.pages-list-next a .fa {
    padding-left: 3px;
  }
}
@media (min-width: 960px) {
  .pagination label {
    font: 400 1.6em Arial;
  }
  .pagination .pagination-pages .pages-list li a {
    padding: 0 8px;
    font-size: 1.6em;
  }
  .pagination .pagination-pages .pages-list li.pages-list-prev a .fa {
    padding-right: 5px;
  }
  .pagination .pagination-pages .pages-list li.pages-list-next a .fa {
    padding-left: 5px;
  }
}
.toggle {
  float: left;
  margin-left: 35px;
}
.toggle.standalone {
  margin-left: 0;
  margin-bottom: 16px;
  clear: both;
}
.toggle .toggle-label {
  font: 400 1.6em Arial;
  color: #737373;
  display: block;
  margin-bottom: 10px;
}
.toggle .toggle-options {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #d9d9d9;
  float: left;
  list-style-type: none;
}
.toggle .toggle-options li {
  float: left;
}
.toggle .toggle-options li:first-child {
  border-right: 1px solid #d9d9d9;
}
.toggle .toggle-options li a {
  font-size: 1.0em;
  text-decoration: none;
  color: #666;
  display: block;
  font-size: 1.3em;
  padding: 13px 20px 17px;
}
.toggle .toggle-options li a:hover {
  text-decoration: none;
}
.toggle .toggle-options li a .fa {
  top: 3px;
  font-size: 1.55em;
  padding-right: 5px;
  position: relative;
}
.toggle .toggle-options li a.active {
  background: #F7F7F7;
  color: #19598C;
}
@media (min-width: 960px) {
  .toggle .toggle-options li {
    text-align: center;
    width: 100px;
  }
  .toggle .toggle-options li a {
    padding-left: 0;
    padding-right: 0;
  }
  .toggle.standalone .toggle-options li {
    width: auto;
  }
  .toggle.standalone .toggle-options li a {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .toggle {
    float: right;
    margin-left: 0;
  }
  .toggle.standalone {
    float: none;
  }
  .toggle .toggle-options li a {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 599px) {
  .toggle {
    margin-left: 0;
    width: 100%;
  }
  .toggle .toggle-options {
    width: 100%;
  }
  .toggle .toggle-options li {
    text-align: center;
    width: 50%;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .template-c .toggle {
    margin-left: 0;
    width: 100%;
  }
  .template-c .toggle .toggle-options {
    width: 100%;
  }
  .template-c .toggle .toggle-options li {
    text-align: center;
    width: 50%;
  }
}
.play-icon-overlay,
.play-icon-overlay-thumbnail {
  display: block;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  opacity: .90;
  z-index: 3;
  height: 80px;
}
.play-icon-overlay img.play-icon-img,
.play-icon-overlay-thumbnail img.play-icon-img {
  height: 80px;
  width: 80px;
  margin: auto;
}
.product-viewer .play-icon-overlay {
  width: 421px;
}
@media (max-width: 959px) {
  .product-viewer .play-icon-overlay {
    width: 100%;
  }
}
.product-viewer .play-icon-overlay-thumbnail {
  height: 30px;
  width: 100%;
}
.product-viewer .play-icon-overlay-thumbnail img.play-icon-img {
  height: 30px;
  width: 30px;
  margin: auto;
}
.product-viewer .active .play-icon-overlay-thumbnail {
  top: -12px;
}
.cq-colctrl-2d2t2m,
.cq-colctrl-2d2t1m,
.cq-colctrl-3d2t2m,
.cq-colctrl-3d3t1m,
.cq-colctrl-4d3t2m,
.cq-colctrl-2d2t2m,
.cq-colctrl-2d2t1m,
.cq-colctrl-3d2t2m,
.cq-colctrl-3d3t1m,
.cq-colctrl-4d3t2m {
  margin-left: -5px;
  margin-right: -5px;
  *zoom: 1;
}
.cq-colctrl-2d2t2m:before,
.cq-colctrl-2d2t1m:before,
.cq-colctrl-3d2t2m:before,
.cq-colctrl-3d3t1m:before,
.cq-colctrl-4d3t2m:before,
.cq-colctrl-2d2t2m:before,
.cq-colctrl-2d2t1m:before,
.cq-colctrl-3d2t2m:before,
.cq-colctrl-3d3t1m:before,
.cq-colctrl-4d3t2m:before,
.cq-colctrl-2d2t2m:after,
.cq-colctrl-2d2t1m:after,
.cq-colctrl-3d2t2m:after,
.cq-colctrl-3d3t1m:after,
.cq-colctrl-4d3t2m:after,
.cq-colctrl-2d2t2m:after,
.cq-colctrl-2d2t1m:after,
.cq-colctrl-3d2t2m:after,
.cq-colctrl-3d3t1m:after,
.cq-colctrl-4d3t2m:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
.cq-colctrl-2d2t2m:after,
.cq-colctrl-2d2t1m:after,
.cq-colctrl-3d2t2m:after,
.cq-colctrl-3d3t1m:after,
.cq-colctrl-4d3t2m:after,
.cq-colctrl-2d2t2m:after,
.cq-colctrl-2d2t1m:after,
.cq-colctrl-3d2t2m:after,
.cq-colctrl-3d3t1m:after,
.cq-colctrl-4d3t2m:after {
  clear: both;
}
.cq-colctrl-2d2t2m:before,
.cq-colctrl-2d2t1m:before,
.cq-colctrl-3d2t2m:before,
.cq-colctrl-3d3t1m:before,
.cq-colctrl-4d3t2m:before,
.cq-colctrl-2d2t2m:before,
.cq-colctrl-2d2t1m:before,
.cq-colctrl-3d2t2m:before,
.cq-colctrl-3d3t1m:before,
.cq-colctrl-4d3t2m:before,
.cq-colctrl-2d2t2m:after,
.cq-colctrl-2d2t1m:after,
.cq-colctrl-3d2t2m:after,
.cq-colctrl-3d3t1m:after,
.cq-colctrl-4d3t2m:after,
.cq-colctrl-2d2t2m:after,
.cq-colctrl-2d2t1m:after,
.cq-colctrl-3d2t2m:after,
.cq-colctrl-3d3t1m:after,
.cq-colctrl-4d3t2m:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
.cq-colctrl-2d2t2m:after,
.cq-colctrl-2d2t1m:after,
.cq-colctrl-3d2t2m:after,
.cq-colctrl-3d3t1m:after,
.cq-colctrl-4d3t2m:after,
.cq-colctrl-2d2t2m:after,
.cq-colctrl-2d2t1m:after,
.cq-colctrl-3d2t2m:after,
.cq-colctrl-3d3t1m:after,
.cq-colctrl-4d3t2m:after {
  clear: both;
}
.cq-colctrl-2d2t2m:before,
.cq-colctrl-2d2t1m:before,
.cq-colctrl-3d2t2m:before,
.cq-colctrl-3d3t1m:before,
.cq-colctrl-4d3t2m:before,
.cq-colctrl-2d2t2m:after,
.cq-colctrl-2d2t1m:after,
.cq-colctrl-3d2t2m:after,
.cq-colctrl-3d3t1m:after,
.cq-colctrl-4d3t2m:after {
  margin-left: -5px;
  margin-right: -5px;
  *zoom: 1;
}
.cq-colctrl-2d2t2m:before:before,
.cq-colctrl-2d2t1m:before:before,
.cq-colctrl-3d2t2m:before:before,
.cq-colctrl-3d3t1m:before:before,
.cq-colctrl-4d3t2m:before:before,
.cq-colctrl-2d2t2m:after:before,
.cq-colctrl-2d2t1m:after:before,
.cq-colctrl-3d2t2m:after:before,
.cq-colctrl-3d3t1m:after:before,
.cq-colctrl-4d3t2m:after:before,
.cq-colctrl-2d2t2m:before:after,
.cq-colctrl-2d2t1m:before:after,
.cq-colctrl-3d2t2m:before:after,
.cq-colctrl-3d3t1m:before:after,
.cq-colctrl-4d3t2m:before:after,
.cq-colctrl-2d2t2m:after:after,
.cq-colctrl-2d2t1m:after:after,
.cq-colctrl-3d2t2m:after:after,
.cq-colctrl-3d3t1m:after:after,
.cq-colctrl-4d3t2m:after:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
.cq-colctrl-2d2t2m:before:after,
.cq-colctrl-2d2t1m:before:after,
.cq-colctrl-3d2t2m:before:after,
.cq-colctrl-3d3t1m:before:after,
.cq-colctrl-4d3t2m:before:after,
.cq-colctrl-2d2t2m:after:after,
.cq-colctrl-2d2t1m:after:after,
.cq-colctrl-3d2t2m:after:after,
.cq-colctrl-3d3t1m:after:after,
.cq-colctrl-4d3t2m:after:after {
  clear: both;
}
.cq-colctrl-2d2t2m:before:before,
.cq-colctrl-2d2t1m:before:before,
.cq-colctrl-3d2t2m:before:before,
.cq-colctrl-3d3t1m:before:before,
.cq-colctrl-4d3t2m:before:before,
.cq-colctrl-2d2t2m:after:before,
.cq-colctrl-2d2t1m:after:before,
.cq-colctrl-3d2t2m:after:before,
.cq-colctrl-3d3t1m:after:before,
.cq-colctrl-4d3t2m:after:before,
.cq-colctrl-2d2t2m:before:after,
.cq-colctrl-2d2t1m:before:after,
.cq-colctrl-3d2t2m:before:after,
.cq-colctrl-3d3t1m:before:after,
.cq-colctrl-4d3t2m:before:after,
.cq-colctrl-2d2t2m:after:after,
.cq-colctrl-2d2t1m:after:after,
.cq-colctrl-3d2t2m:after:after,
.cq-colctrl-3d3t1m:after:after,
.cq-colctrl-4d3t2m:after:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
.cq-colctrl-2d2t2m:before:after,
.cq-colctrl-2d2t1m:before:after,
.cq-colctrl-3d2t2m:before:after,
.cq-colctrl-3d3t1m:before:after,
.cq-colctrl-4d3t2m:before:after,
.cq-colctrl-2d2t2m:after:after,
.cq-colctrl-2d2t1m:after:after,
.cq-colctrl-3d2t2m:after:after,
.cq-colctrl-3d3t1m:after:after,
.cq-colctrl-4d3t2m:after:after {
  clear: both;
}
/* 1 Col Desktop / 1 Col Tablet / 1 Col Mobile */
.cq-colctrl-1d1t1m .cq-colctrl-1d1t1m-c0 {
  float: left;
  width: 100%;
  position: relative;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
}
@media (min-width: 600px) {
  .cq-colctrl-1d1t1m .cq-colctrl-1d1t1m-c0 {
    float: left;
    width: 100%;
  }
}
@media (min-width: 960px) {
  .cq-colctrl-1d1t1m .cq-colctrl-1d1t1m-c0 {
    float: left;
    width: 100%;
  }
}
@media (min-width: 1336px) {
  .cq-colctrl-1d1t1m .cq-colctrl-1d1t1m-c0 {
    float: left;
    width: 100%;
  }
}
/* 2 Col Desktop / 2 Col Tablet / 2 Col Mobile */
.cq-colctrl-2d2t2m .cq-colctrl-2d2t2m-c0,
.cq-colctrl-2d2t2m .cq-colctrl-2d2t2m-c1 {
  float: left;
  width: 50%;
  position: relative;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
}
@media (min-width: 600px) {
  .cq-colctrl-2d2t2m .cq-colctrl-2d2t2m-c0,
  .cq-colctrl-2d2t2m .cq-colctrl-2d2t2m-c1 {
    float: left;
    width: 50%;
  }
}
@media (min-width: 960px) {
  .cq-colctrl-2d2t2m .cq-colctrl-2d2t2m-c0,
  .cq-colctrl-2d2t2m .cq-colctrl-2d2t2m-c1 {
    float: left;
    width: 50%;
  }
}
@media (min-width: 1336px) {
  .cq-colctrl-2d2t2m .cq-colctrl-2d2t2m-c0,
  .cq-colctrl-2d2t2m .cq-colctrl-2d2t2m-c1 {
    float: left;
    width: 50%;
  }
}
/* 2 Col Desktop / 2 Col Tablet / 1 Col Mobile - Extra column wraps */
.cq-colctrl-2d2t1m .cq-colctrl-2d2t1m-c0,
.cq-colctrl-2d2t1m .cq-colctrl-2d2t1m-c1 {
  float: left;
  width: 100%;
  position: relative;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
}
@media (min-width: 600px) {
  .cq-colctrl-2d2t1m .cq-colctrl-2d2t1m-c0,
  .cq-colctrl-2d2t1m .cq-colctrl-2d2t1m-c1 {
    float: left;
    width: 50%;
  }
}
@media (min-width: 960px) {
  .cq-colctrl-2d2t1m .cq-colctrl-2d2t1m-c0,
  .cq-colctrl-2d2t1m .cq-colctrl-2d2t1m-c1 {
    float: left;
    width: 50%;
  }
}
@media (min-width: 1336px) {
  .cq-colctrl-2d2t1m .cq-colctrl-2d2t1m-c0,
  .cq-colctrl-2d2t1m .cq-colctrl-2d2t1m-c1 {
    float: left;
    width: 50%;
  }
}
/* 3 Col Desktop / 2 Col Tablet / 2 Col Mobile - Extra column hides */
.cq-colctrl-3d2t2m .cq-colctrl-3d2t2m-c0,
.cq-colctrl-3d2t2m .cq-colctrl-3d2t2m-c1,
.cq-colctrl-3d2t2m .cq-colctrl-3d2t2m-c2 {
  float: left;
  width: 50%;
  position: relative;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
}
@media (min-width: 600px) {
  .cq-colctrl-3d2t2m .cq-colctrl-3d2t2m-c0,
  .cq-colctrl-3d2t2m .cq-colctrl-3d2t2m-c1,
  .cq-colctrl-3d2t2m .cq-colctrl-3d2t2m-c2 {
    float: left;
    width: 50%;
  }
}
@media (min-width: 960px) {
  .cq-colctrl-3d2t2m .cq-colctrl-3d2t2m-c0,
  .cq-colctrl-3d2t2m .cq-colctrl-3d2t2m-c1,
  .cq-colctrl-3d2t2m .cq-colctrl-3d2t2m-c2 {
    float: left;
    width: 33.33333333333333%;
  }
}
@media (min-width: 1336px) {
  .cq-colctrl-3d2t2m .cq-colctrl-3d2t2m-c0,
  .cq-colctrl-3d2t2m .cq-colctrl-3d2t2m-c1,
  .cq-colctrl-3d2t2m .cq-colctrl-3d2t2m-c2 {
    float: left;
    width: 33.33333333333333%;
  }
}
/* 3 Col Desktop / 3 Col Tablet / 1 Col Mobile - Extra columns wraps */
.cq-colctrl-3d3t1m .cq-colctrl-3d3t1m-c0,
.cq-colctrl-3d3t1m .cq-colctrl-3d3t1m-c1,
.cq-colctrl-3d3t1m .cq-colctrl-3d3t1m-c2 {
  float: left;
  width: 100%;
  position: relative;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
}
@media (min-width: 600px) {
  .cq-colctrl-3d3t1m .cq-colctrl-3d3t1m-c0,
  .cq-colctrl-3d3t1m .cq-colctrl-3d3t1m-c1,
  .cq-colctrl-3d3t1m .cq-colctrl-3d3t1m-c2 {
    float: left;
    width: 33.33333333333333%;
  }
}
@media (min-width: 960px) {
  .cq-colctrl-3d3t1m .cq-colctrl-3d3t1m-c0,
  .cq-colctrl-3d3t1m .cq-colctrl-3d3t1m-c1,
  .cq-colctrl-3d3t1m .cq-colctrl-3d3t1m-c2 {
    float: left;
    width: 33.33333333333333%;
  }
}
@media (min-width: 1336px) {
  .cq-colctrl-3d3t1m .cq-colctrl-3d3t1m-c0,
  .cq-colctrl-3d3t1m .cq-colctrl-3d3t1m-c1,
  .cq-colctrl-3d3t1m .cq-colctrl-3d3t1m-c2 {
    float: left;
    width: 33.33333333333333%;
  }
}
/* 4 Col Desktop / 3 Col Tablet / 2 Col Mobile - Extra column hides */
.cq-colctrl-4d3t2m .cq-colctrl-4d3t2m-c0,
.cq-colctrl-4d3t2m .cq-colctrl-4d3t2m-c1,
.cq-colctrl-4d3t2m .cq-colctrl-4d3t2m-c2,
.cq-colctrl-4d3t2m .cq-colctrl-4d3t2m-c3 {
  float: left;
  width: 50%;
  position: relative;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
}
@media (min-width: 600px) {
  .cq-colctrl-4d3t2m .cq-colctrl-4d3t2m-c0,
  .cq-colctrl-4d3t2m .cq-colctrl-4d3t2m-c1,
  .cq-colctrl-4d3t2m .cq-colctrl-4d3t2m-c2,
  .cq-colctrl-4d3t2m .cq-colctrl-4d3t2m-c3 {
    float: left;
    width: 33.33333333333333%;
  }
}
@media (min-width: 960px) {
  .cq-colctrl-4d3t2m .cq-colctrl-4d3t2m-c0,
  .cq-colctrl-4d3t2m .cq-colctrl-4d3t2m-c1,
  .cq-colctrl-4d3t2m .cq-colctrl-4d3t2m-c2,
  .cq-colctrl-4d3t2m .cq-colctrl-4d3t2m-c3 {
    float: left;
    width: 25%;
  }
}
@media (min-width: 1336px) {
  .cq-colctrl-4d3t2m .cq-colctrl-4d3t2m-c0,
  .cq-colctrl-4d3t2m .cq-colctrl-4d3t2m-c1,
  .cq-colctrl-4d3t2m .cq-colctrl-4d3t2m-c2,
  .cq-colctrl-4d3t2m .cq-colctrl-4d3t2m-c3 {
    float: left;
    width: 25%;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  /* 3 Col Desktop / 2 Col Tablet / 2 Col Mobile - Extra column hides */
  .cq-colctrl-3d2t2m .cq-colctrl-3d2t2m-c2 {
    display: none;
  }
  /* 4 Col Desktop / 3 Col Tablet / 2 Col Mobile - Extra column hides */
  .cq-colctrl-4d3t2m .cq-colctrl-4d3t2m-c3 {
    display: none;
  }
}
@media (max-width: 599px) {
  /* 3 Col Desktop / 2 Col Tablet / 2 Col Mobile - Extra column hides */
  .cq-colctrl-3d2t2m .cq-colctrl-3d2t2m-c2 {
    display: none;
  }
  /* 4 Col Desktop / 3 Col Tablet / 2 Col Mobile - Extra column hides */
  .cq-colctrl-4d3t2m .cq-colctrl-4d3t2m-c2,
  .cq-colctrl-4d3t2m .cq-colctrl-4d3t2m-c3 {
    display: none;
  }
}
.site-map {
  margin-top: 14px;
}
.site-map .text > .linkcontainer > .link {
  padding: 10px 0;
  display: inline-block;
  width: 100%;
}
.site-map .text > .linkcontainer > .linkcontainer {
  padding: 0 0 0 40px ;
}
.site-map .text > .linkcontainer > .linkcontainer > .link {
  display: inline-block;
  width: 100%;
}
.site-map .text > .linkcontainer > .linkcontainer .linkcontainer {
  padding: 0 0 0 40px;
}
.site-map .link {
  padding: 8px;
  border-bottom: 1px dotted #b3b3b3;
}
.simulator-preview {
  background: #333;
  padding: 15px 20px;
  position: relative;
}
.simulator-preview > a {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background: #008ECD;
  border: 2px solid #008ECD;
  color: #fff;
  display: inline-block;
  padding: 12px 15px;
  text-decoration: none;
}
.simulator-preview > a span {
  display: inline-block;
  padding-left: 5px;
}
.simulator-preview > a span .fa-chevron-down {
  display: none;
}
.simulator-preview > a.active {
  -webkit-border-top-left-radius: 0px;
  -moz-border-top-left-radius: 0px;
  border-top-left-radius: 0px;
  -webkit-border-top-right-radius: 0px;
  -moz-border-top-right-radius: 0px;
  border-top-right-radius: 0px;
  background: #f7f7f7;
  border: 2px solid #008ECD;
  border-top: 0;
  color: #008ECD;
  padding-top: 14px;
}
.simulator-preview > a.active span .fa-chevron-down {
  display: block;
}
.simulator-preview > a.active span .fa-chevron-up {
  display: none;
}
.simulator-preview > ul {
  background: #f7f7f7;
  border: 2px solid #008ECD;
  bottom: 100%;
  display: none;
  list-style-type: none;
  margin: 0;
  margin-bottom: -15px;
  padding: 0;
  position: absolute;
  width: 200px;
}
.simulator-preview > ul li {
  border-top: 1px solid #E1E3E5;
}
.simulator-preview > ul li:first-child {
  border-top: 0;
}
.simulator-preview > ul li a {
  color: #888;
  display: block;
  padding: 10px 15px;
  text-decoration: none;
}
.simulator-preview > ul li a:hover {
  background: #f0f0f0;
}
.simulator-preview > ul.active {
  display: block;
}
/* **********************************************************
 *  Third-Party Integration
 * ******************************************************* */
/*! fancyBox v2.1.4 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}
.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}
.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.fancybox-opened {
  z-index: 8030;
}
.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
.fancybox-outer,
.fancybox-inner {
  position: relative;
}
.fancybox-outer {
  /* padding: 25px 15px; */

}
.fancybox-inner {
  overflow: hidden;
}
.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}
.fancybox-error {
  color: #444;
  font: 14px/20px Arial, sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}
.fancybox-image,
.fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}
#fancybox-loading,
.fancybox-close,
.fancybox-prev span,
.fancybox-next span {
  background-image: url('../img/icons/fancybox_sprite.png');
}
#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}
#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url('../img/icons/fancybox_loading.gif') center center no-repeat;
}
.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}
.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  /* helps IE */

  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 8040;
}
.fancybox-prev {
  left: 0;
}
.fancybox-next {
  right: 0;
}
.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
}
.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}
.fancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}
.fancybox-nav:hover span {
  visibility: visible;
}
.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}
/* Overlay helper */
.fancybox-lock {
  overflow: hidden;
}
.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: rgba(122, 122, 122, 0.5);
}
.lt-ie9 .fancybox-overlay {
  background: transparent url(../img/backgrounds/bg-modal-layer.png) repeat 50% 50%;
}
.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}
.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}
/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px Arial, sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}
.fancybox-opened .fancybox-title {
  visibility: visible;
}
.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}
.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */

  background: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap;
}
.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}
.fancybox-title-inside-wrap {
  padding-top: 10px;
}
.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
}
/* **********************************************************
 *  Workaround fixes added by CQ
 * ******************************************************* */
/* 3-25-2014: Below from workaround.css */
.enlargePrint {
  clear: both;
  display: table;
  float: right;
}
.enlarge > i {
  letter-spacing: -4px;
}
.contactTools {
  display: table;
}
.horizontalrule {
  margin: 0 0 10px;
}
.placeholder {
  color: #000000;
  font-family: Arial;
  font-size: 13px;
  text-align: left;
}
.linkcontainer,
.link {
  margin-bottom: 5px;
}
.linkcontainer {
  padding-left: 40px;
}
.linkcontainer:first-child {
  padding-left: 0;
}
/* 3-25-2014: Above from workaround.css *//* **********************************************************
 *  Print Styles
 * ******************************************************* */
@media print {
  @page  {
    margin-left: -5cm;
    margin-right: -5cm;
    size: A3;
  }
  a[href]:after {
    content: none !important;
  }
}
