@charset "UTF-8";
@import url("demo.css");
.slide-in-down.mui-enter, .slide-in-left.mui-enter, .slide-in-up.mui-enter, .slide-in-right.mui-enter, .slide-out-down.mui-leave, .slide-out-right.mui-leave, .slide-out-up.mui-leave, .slide-out-left.mui-leave, .fade-in.mui-enter, .fade-out.mui-leave, .hinge-in-from-top.mui-enter, .hinge-in-from-right.mui-enter, .hinge-in-from-bottom.mui-enter, .hinge-in-from-left.mui-enter, .hinge-in-from-middle-x.mui-enter, .hinge-in-from-middle-y.mui-enter, .hinge-out-from-top.mui-leave, .hinge-out-from-right.mui-leave, .hinge-out-from-bottom.mui-leave, .hinge-out-from-left.mui-leave, .hinge-out-from-middle-x.mui-leave, .hinge-out-from-middle-y.mui-leave, .scale-in-up.mui-enter, .scale-in-down.mui-enter, .scale-out-up.mui-leave, .scale-out-down.mui-leave, .spin-in.mui-enter, .spin-out.mui-leave, .spin-in-ccw.mui-enter, .spin-out-ccw.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
}

.slide-in-down.mui-enter {
  transform: translateY(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-down.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-left.mui-enter {
  transform: translateX(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-left.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-in-up.mui-enter {
  transform: translateY(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-up.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-right.mui-enter {
  transform: translateX(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-right.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-out-down.mui-leave {
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-down.mui-leave.mui-leave-active {
  transform: translateY(100%);
}

.slide-out-right.mui-leave {
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-right.mui-leave.mui-leave-active {
  transform: translateX(100%);
}

.slide-out-up.mui-leave {
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-up.mui-leave.mui-leave-active {
  transform: translateY(-100%);
}

.slide-out-left.mui-leave {
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-left.mui-leave.mui-leave-active {
  transform: translateX(-100%);
}

.fade-in.mui-enter {
  opacity: 0;
  transition-property: opacity;
}

.fade-in.mui-enter.mui-enter-active {
  opacity: 1;
}

.fade-out.mui-leave {
  opacity: 1;
  transition-property: opacity;
}

.fade-out.mui-leave.mui-leave-active {
  opacity: 0;
}

.hinge-in-from-top.mui-enter {
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-top.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-right.mui-enter {
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-right.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-bottom.mui-enter {
  transform: perspective(2000px) rotateX(90deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-bottom.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-left.mui-enter {
  transform: perspective(2000px) rotateY(90deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-left.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-x.mui-enter {
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-x.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-y.mui-enter {
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-y.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-out-from-top.mui-leave {
  transform: perspective(2000px) rotate(0deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-top.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

.hinge-out-from-right.mui-leave {
  transform: perspective(2000px) rotate(0deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-right.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

.hinge-out-from-bottom.mui-leave {
  transform: perspective(2000px) rotate(0deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-bottom.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0;
}

.hinge-out-from-left.mui-leave {
  transform: perspective(2000px) rotate(0deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-left.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0;
}

.hinge-out-from-middle-x.mui-leave {
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-x.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

.hinge-out-from-middle-y.mui-leave {
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-y.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

.scale-in-up.mui-enter {
  transform: scale(0.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-up.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-in-down.mui-enter {
  transform: scale(1.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-down.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-out-up.mui-leave {
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-up.mui-leave.mui-leave-active {
  transform: scale(1.5);
  opacity: 0;
}

.scale-out-down.mui-leave {
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-down.mui-leave.mui-leave-active {
  transform: scale(0.5);
  opacity: 0;
}

.spin-in.mui-enter {
  transform: rotate(-0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out.mui-leave {
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out.mui-leave.mui-leave-active {
  transform: rotate(0.75turn);
  opacity: 0;
}

.spin-in-ccw.mui-enter {
  transform: rotate(0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in-ccw.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out-ccw.mui-leave {
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out-ccw.mui-leave.mui-leave-active {
  transform: rotate(-0.75turn);
  opacity: 0;
}

.slow {
  transition-duration: 750ms !important;
}

.fast {
  transition-duration: 250ms !important;
}

.linear {
  transition-timing-function: linear !important;
}

.ease {
  transition-timing-function: ease !important;
}

.ease-in {
  transition-timing-function: ease-in !important;
}

.ease-out {
  transition-timing-function: ease-out !important;
}

.ease-in-out {
  transition-timing-function: ease-in-out !important;
}

.bounce-in {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  transition-delay: 300ms !important;
}

.long-delay {
  transition-delay: 700ms !important;
}

.shake {
  animation-name: shake-7;
}

@keyframes shake-7 {
  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
    transform: translateX(7%);
  }
  5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
    transform: translateX(-7%);
  }
}

.spin-cw {
  animation-name: spin-cw-1turn;
}

@keyframes spin-cw-1turn {
  0% {
    transform: rotate(-1turn);
  }
  100% {
    transform: rotate(0);
  }
}

.spin-ccw {
  animation-name: spin-cw-1turn;
}

@keyframes spin-cw-1turn {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(1turn);
  }
}

.wiggle {
  animation-name: wiggle-7deg;
}

@keyframes wiggle-7deg {
  40%, 50%, 60% {
    transform: rotate(7deg);
  }
  35%, 45%, 55%, 65% {
    transform: rotate(-7deg);
  }
  0%, 30%, 70%, 100% {
    transform: rotate(0);
  }
}

.infinite {
  animation-iteration-count: infinite;
}

.slow {
  animation-duration: 750ms !important;
}

.fast {
  animation-duration: 250ms !important;
}

.linear {
  animation-timing-function: linear !important;
}

.ease {
  animation-timing-function: ease !important;
}

.ease-in {
  animation-timing-function: ease-in !important;
}

.ease-out {
  animation-timing-function: ease-out !important;
}

.ease-in-out {
  animation-timing-function: ease-in-out !important;
}

.bounce-in {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  animation-delay: 300ms !important;
}

.long-delay {
  animation-delay: 700ms !important;
}

/*!
 *  Font Awesome 4.5.0 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("../bower_components/font-awesome/fonts/fontawesome-webfont.eot?v=4.5.0");
  src: url("../bower_components/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.5.0") format("embedded-opentype"), url("../bower_components/font-awesome/fonts/fontawesome-webfont.woff2?v=4.5.0") format("woff2"), url("../bower_components/font-awesome/fonts/fontawesome-webfont.woff?v=4.5.0") format("woff"), url("../bower_components/font-awesome/fonts/fontawesome-webfont.ttf?v=4.5.0") format("truetype"), url("../bower_components/font-awesome/fonts/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333em;
  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.28571em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14286em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14286em;
  width: 2.14286em;
  top: 0.14286em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: .1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: .3em;
}

.fa.fa-pull-right {
  margin-left: .3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: .3em;
}

.fa.pull-right {
  margin-left: .3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

.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: #fff;
}

/* 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: "";
}

.fa-music:before {
  content: "";
}

.fa-search:before {
  content: "";
}

.fa-envelope-o:before {
  content: "";
}

.fa-heart:before {
  content: "";
}

.fa-star:before {
  content: "";
}

.fa-star-o:before {
  content: "";
}

.fa-user:before {
  content: "";
}

.fa-film:before {
  content: "";
}

.fa-th-large:before {
  content: "";
}

.fa-th:before {
  content: "";
}

.fa-th-list:before {
  content: "";
}

.fa-check:before {
  content: "";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "";
}

.fa-search-plus:before {
  content: "";
}

.fa-search-minus:before {
  content: "";
}

.fa-power-off:before {
  content: "";
}

.fa-signal:before {
  content: "";
}

.fa-gear:before,
.fa-cog:before {
  content: "";
}

.fa-trash-o:before {
  content: "";
}

.fa-home:before {
  content: "";
}

.fa-file-o:before {
  content: "";
}

.fa-clock-o:before {
  content: "";
}

.fa-road:before {
  content: "";
}

.fa-download:before {
  content: "";
}

.fa-arrow-circle-o-down:before {
  content: "";
}

.fa-arrow-circle-o-up:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-play-circle-o:before {
  content: "";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "";
}

.fa-refresh:before {
  content: "";
}

.fa-list-alt:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

.fa-volume-off:before {
  content: "";
}

.fa-volume-down:before {
  content: "";
}

.fa-volume-up:before {
  content: "";
}

.fa-qrcode:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-book:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-print:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

.fa-font:before {
  content: "";
}

.fa-bold:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

.fa-text-height:before {
  content: "";
}

.fa-text-width:before {
  content: "";
}

.fa-align-left:before {
  content: "";
}

.fa-align-center:before {
  content: "";
}

.fa-align-right:before {
  content: "";
}

.fa-align-justify:before {
  content: "";
}

.fa-list:before {
  content: "";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "";
}

.fa-indent:before {
  content: "";
}

.fa-video-camera:before {
  content: "";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "";
}

.fa-pencil:before {
  content: "";
}

.fa-map-marker:before {
  content: "";
}

.fa-adjust:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "";
}

.fa-share-square-o:before {
  content: "";
}

.fa-check-square-o:before {
  content: "";
}

.fa-arrows:before {
  content: "";
}

.fa-step-backward:before {
  content: "";
}

.fa-fast-backward:before {
  content: "";
}

.fa-backward:before {
  content: "";
}

.fa-play:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

.fa-fast-forward:before {
  content: "";
}

.fa-step-forward:before {
  content: "";
}

.fa-eject:before {
  content: "";
}

.fa-chevron-left:before {
  content: "";
}

.fa-chevron-right:before {
  content: "";
}

.fa-plus-circle:before {
  content: "";
}

.fa-minus-circle:before {
  content: "";
}

.fa-times-circle:before {
  content: "";
}

.fa-check-circle:before {
  content: "";
}

.fa-question-circle:before {
  content: "";
}

.fa-info-circle:before {
  content: "";
}

.fa-crosshairs:before {
  content: "";
}

.fa-times-circle-o:before {
  content: "";
}

.fa-check-circle-o:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

.fa-arrow-left:before {
  content: "";
}

.fa-arrow-right:before {
  content: "";
}

.fa-arrow-up:before {
  content: "";
}

.fa-arrow-down:before {
  content: "";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "";
}

.fa-expand:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

.fa-minus:before {
  content: "";
}

.fa-asterisk:before {
  content: "";
}

.fa-exclamation-circle:before {
  content: "";
}

.fa-gift:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-eye:before {
  content: "";
}

.fa-eye-slash:before {
  content: "";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "";
}

.fa-plane:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

.fa-chevron-up:before {
  content: "";
}

.fa-chevron-down:before {
  content: "";
}

.fa-retweet:before {
  content: "";
}

.fa-shopping-cart:before {
  content: "";
}

.fa-folder:before {
  content: "";
}

.fa-folder-open:before {
  content: "";
}

.fa-arrows-v:before {
  content: "";
}

.fa-arrows-h:before {
  content: "";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-camera-retro:before {
  content: "";
}

.fa-key:before {
  content: "";
}

.fa-gears:before,
.fa-cogs:before {
  content: "";
}

.fa-comments:before {
  content: "";
}

.fa-thumbs-o-up:before {
  content: "";
}

.fa-thumbs-o-down:before {
  content: "";
}

.fa-star-half:before {
  content: "";
}

.fa-heart-o:before {
  content: "";
}

.fa-sign-out:before {
  content: "";
}

.fa-linkedin-square:before {
  content: "";
}

.fa-thumb-tack:before {
  content: "";
}

.fa-external-link:before {
  content: "";
}

.fa-sign-in:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-github-square:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-lemon-o:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-square-o:before {
  content: "";
}

.fa-bookmark-o:before {
  content: "";
}

.fa-phone-square:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

.fa-credit-card:before {
  content: "";
}

.fa-feed:before,
.fa-rss:before {
  content: "";
}

.fa-hdd-o:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bell:before {
  content: "";
}

.fa-certificate:before {
  content: "";
}

.fa-hand-o-right:before {
  content: "";
}

.fa-hand-o-left:before {
  content: "";
}

.fa-hand-o-up:before {
  content: "";
}

.fa-hand-o-down:before {
  content: "";
}

.fa-arrow-circle-left:before {
  content: "";
}

.fa-arrow-circle-right:before {
  content: "";
}

.fa-arrow-circle-up:before {
  content: "";
}

.fa-arrow-circle-down:before {
  content: "";
}

.fa-globe:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-tasks:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

.fa-arrows-alt:before {
  content: "";
}

.fa-group:before,
.fa-users:before {
  content: "";
}

.fa-chain:before,
.fa-link:before {
  content: "";
}

.fa-cloud:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-cut:before,
.fa-scissors:before {
  content: "";
}

.fa-copy:before,
.fa-files-o:before {
  content: "";
}

.fa-paperclip:before {
  content: "";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "";
}

.fa-square:before {
  content: "";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "";
}

.fa-list-ul:before {
  content: "";
}

.fa-list-ol:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-table:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

.fa-pinterest-square:before {
  content: "";
}

.fa-google-plus-square:before {
  content: "";
}

.fa-google-plus:before {
  content: "";
}

.fa-money:before {
  content: "";
}

.fa-caret-down:before {
  content: "";
}

.fa-caret-up:before {
  content: "";
}

.fa-caret-left:before {
  content: "";
}

.fa-caret-right:before {
  content: "";
}

.fa-columns:before {
  content: "";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "";
}

.fa-legal:before,
.fa-gavel:before {
  content: "";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "";
}

.fa-comment-o:before {
  content: "";
}

.fa-comments-o:before {
  content: "";
}

.fa-flash:before,
.fa-bolt:before {
  content: "";
}

.fa-sitemap:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "";
}

.fa-lightbulb-o:before {
  content: "";
}

.fa-exchange:before {
  content: "";
}

.fa-cloud-download:before {
  content: "";
}

.fa-cloud-upload:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-stethoscope:before {
  content: "";
}

.fa-suitcase:before {
  content: "";
}

.fa-bell-o:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-cutlery:before {
  content: "";
}

.fa-file-text-o:before {
  content: "";
}

.fa-building-o:before {
  content: "";
}

.fa-hospital-o:before {
  content: "";
}

.fa-ambulance:before {
  content: "";
}

.fa-medkit:before {
  content: "";
}

.fa-fighter-jet:before {
  content: "";
}

.fa-beer:before {
  content: "";
}

.fa-h-square:before {
  content: "";
}

.fa-plus-square:before {
  content: "";
}

.fa-angle-double-left:before {
  content: "";
}

.fa-angle-double-right:before {
  content: "";
}

.fa-angle-double-up:before {
  content: "";
}

.fa-angle-double-down:before {
  content: "";
}

.fa-angle-left:before {
  content: "";
}

.fa-angle-right:before {
  content: "";
}

.fa-angle-up:before {
  content: "";
}

.fa-angle-down:before {
  content: "";
}

.fa-desktop:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-tablet:before {
  content: "";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "";
}

.fa-circle-o:before {
  content: "";
}

.fa-quote-left:before {
  content: "";
}

.fa-quote-right:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "";
}

.fa-github-alt:before {
  content: "";
}

.fa-folder-o:before {
  content: "";
}

.fa-folder-open-o:before {
  content: "";
}

.fa-smile-o:before {
  content: "";
}

.fa-frown-o:before {
  content: "";
}

.fa-meh-o:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-keyboard-o:before {
  content: "";
}

.fa-flag-o:before {
  content: "";
}

.fa-flag-checkered:before {
  content: "";
}

.fa-terminal:before {
  content: "";
}

.fa-code:before {
  content: "";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "";
}

.fa-location-arrow:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

.fa-code-fork:before {
  content: "";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "";
}

.fa-question:before {
  content: "";
}

.fa-info:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-subscript:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-puzzle-piece:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

.fa-microphone-slash:before {
  content: "";
}

.fa-shield:before {
  content: "";
}

.fa-calendar-o:before {
  content: "";
}

.fa-fire-extinguisher:before {
  content: "";
}

.fa-rocket:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

.fa-chevron-circle-left:before {
  content: "";
}

.fa-chevron-circle-right:before {
  content: "";
}

.fa-chevron-circle-up:before {
  content: "";
}

.fa-chevron-circle-down:before {
  content: "";
}

.fa-html5:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

.fa-ellipsis-h:before {
  content: "";
}

.fa-ellipsis-v:before {
  content: "";
}

.fa-rss-square:before {
  content: "";
}

.fa-play-circle:before {
  content: "";
}

.fa-ticket:before {
  content: "";
}

.fa-minus-square:before {
  content: "";
}

.fa-minus-square-o:before {
  content: "";
}

.fa-level-up:before {
  content: "";
}

.fa-level-down:before {
  content: "";
}

.fa-check-square:before {
  content: "";
}

.fa-pencil-square:before {
  content: "";
}

.fa-external-link-square:before {
  content: "";
}

.fa-share-square:before {
  content: "";
}

.fa-compass:before {
  content: "";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "";
}

.fa-euro:before,
.fa-eur:before {
  content: "";
}

.fa-gbp:before {
  content: "";
}

.fa-dollar:before,
.fa-usd:before {
  content: "";
}

.fa-rupee:before,
.fa-inr:before {
  content: "";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "";
}

.fa-won:before,
.fa-krw:before {
  content: "";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "";
}

.fa-file:before {
  content: "";
}

.fa-file-text:before {
  content: "";
}

.fa-sort-alpha-asc:before {
  content: "";
}

.fa-sort-alpha-desc:before {
  content: "";
}

.fa-sort-amount-asc:before {
  content: "";
}

.fa-sort-amount-desc:before {
  content: "";
}

.fa-sort-numeric-asc:before {
  content: "";
}

.fa-sort-numeric-desc:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-youtube-play:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-stack-overflow:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-bitbucket:before {
  content: "";
}

.fa-bitbucket-square:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-long-arrow-down:before {
  content: "";
}

.fa-long-arrow-up:before {
  content: "";
}

.fa-long-arrow-left:before {
  content: "";
}

.fa-long-arrow-right:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "";
}

.fa-sun-o:before {
  content: "";
}

.fa-moon-o:before {
  content: "";
}

.fa-archive:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-vk:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-stack-exchange:before {
  content: "";
}

.fa-arrow-circle-o-right:before {
  content: "";
}

.fa-arrow-circle-o-left:before {
  content: "";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "";
}

.fa-dot-circle-o:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "";
}

.fa-plus-square-o:before {
  content: "";
}

.fa-space-shuttle:before {
  content: "";
}

.fa-slack:before {
  content: "";
}

.fa-envelope-square:before {
  content: "";
}

.fa-wordpress:before {
  content: "";
}

.fa-openid:before {
  content: "";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "";
}

.fa-yahoo:before {
  content: "";
}

.fa-google:before {
  content: "";
}

.fa-reddit:before {
  content: "";
}

.fa-reddit-square:before {
  content: "";
}

.fa-stumbleupon-circle:before {
  content: "";
}

.fa-stumbleupon:before {
  content: "";
}

.fa-delicious:before {
  content: "";
}

.fa-digg:before {
  content: "";
}

.fa-pied-piper:before {
  content: "";
}

.fa-pied-piper-alt:before {
  content: "";
}

.fa-drupal:before {
  content: "";
}

.fa-joomla:before {
  content: "";
}

.fa-language:before {
  content: "";
}

.fa-fax:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-child:before {
  content: "";
}

.fa-paw:before {
  content: "";
}

.fa-spoon:before {
  content: "";
}

.fa-cube:before {
  content: "";
}

.fa-cubes:before {
  content: "";
}

.fa-behance:before {
  content: "";
}

.fa-behance-square:before {
  content: "";
}

.fa-steam:before {
  content: "";
}

.fa-steam-square:before {
  content: "";
}

.fa-recycle:before {
  content: "";
}

.fa-automobile:before,
.fa-car:before {
  content: "";
}

.fa-cab:before,
.fa-taxi:before {
  content: "";
}

.fa-tree:before {
  content: "";
}

.fa-spotify:before {
  content: "";
}

.fa-deviantart:before {
  content: "";
}

.fa-soundcloud:before {
  content: "";
}

.fa-database:before {
  content: "";
}

.fa-file-pdf-o:before {
  content: "";
}

.fa-file-word-o:before {
  content: "";
}

.fa-file-excel-o:before {
  content: "";
}

.fa-file-powerpoint-o:before {
  content: "";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "";
}

.fa-file-code-o:before {
  content: "";
}

.fa-vine:before {
  content: "";
}

.fa-codepen:before {
  content: "";
}

.fa-jsfiddle:before {
  content: "";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "";
}

.fa-circle-o-notch:before {
  content: "";
}

.fa-ra:before,
.fa-rebel:before {
  content: "";
}

.fa-ge:before,
.fa-empire:before {
  content: "";
}

.fa-git-square:before {
  content: "";
}

.fa-git:before {
  content: "";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "";
}

.fa-tencent-weibo:before {
  content: "";
}

.fa-qq:before {
  content: "";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "";
}

.fa-history:before {
  content: "";
}

.fa-circle-thin:before {
  content: "";
}

.fa-header:before {
  content: "";
}

.fa-paragraph:before {
  content: "";
}

.fa-sliders:before {
  content: "";
}

.fa-share-alt:before {
  content: "";
}

.fa-share-alt-square:before {
  content: "";
}

.fa-bomb:before {
  content: "";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "";
}

.fa-tty:before {
  content: "";
}

.fa-binoculars:before {
  content: "";
}

.fa-plug:before {
  content: "";
}

.fa-slideshare:before {
  content: "";
}

.fa-twitch:before {
  content: "";
}

.fa-yelp:before {
  content: "";
}

.fa-newspaper-o:before {
  content: "";
}

.fa-wifi:before {
  content: "";
}

.fa-calculator:before {
  content: "";
}

.fa-paypal:before {
  content: "";
}

.fa-google-wallet:before {
  content: "";
}

.fa-cc-visa:before {
  content: "";
}

.fa-cc-mastercard:before {
  content: "";
}

.fa-cc-discover:before {
  content: "";
}

.fa-cc-amex:before {
  content: "";
}

.fa-cc-paypal:before {
  content: "";
}

.fa-cc-stripe:before {
  content: "";
}

.fa-bell-slash:before {
  content: "";
}

.fa-bell-slash-o:before {
  content: "";
}

.fa-trash:before {
  content: "";
}

.fa-copyright:before {
  content: "";
}

.fa-at:before {
  content: "";
}

.fa-eyedropper:before {
  content: "";
}

.fa-paint-brush:before {
  content: "";
}

.fa-birthday-cake:before {
  content: "";
}

.fa-area-chart:before {
  content: "";
}

.fa-pie-chart:before {
  content: "";
}

.fa-line-chart:before {
  content: "";
}

.fa-lastfm:before {
  content: "";
}

.fa-lastfm-square:before {
  content: "";
}

.fa-toggle-off:before {
  content: "";
}

.fa-toggle-on:before {
  content: "";
}

.fa-bicycle:before {
  content: "";
}

.fa-bus:before {
  content: "";
}

.fa-ioxhost:before {
  content: "";
}

.fa-angellist:before {
  content: "";
}

.fa-cc:before {
  content: "";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "";
}

.fa-meanpath:before {
  content: "";
}

.fa-buysellads:before {
  content: "";
}

.fa-connectdevelop:before {
  content: "";
}

.fa-dashcube:before {
  content: "";
}

.fa-forumbee:before {
  content: "";
}

.fa-leanpub:before {
  content: "";
}

.fa-sellsy:before {
  content: "";
}

.fa-shirtsinbulk:before {
  content: "";
}

.fa-simplybuilt:before {
  content: "";
}

.fa-skyatlas:before {
  content: "";
}

.fa-cart-plus:before {
  content: "";
}

.fa-cart-arrow-down:before {
  content: "";
}

.fa-diamond:before {
  content: "";
}

.fa-ship:before {
  content: "";
}

.fa-user-secret:before {
  content: "";
}

.fa-motorcycle:before {
  content: "";
}

.fa-street-view:before {
  content: "";
}

.fa-heartbeat:before {
  content: "";
}

.fa-venus:before {
  content: "";
}

.fa-mars:before {
  content: "";
}

.fa-mercury:before {
  content: "";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "";
}

.fa-transgender-alt:before {
  content: "";
}

.fa-venus-double:before {
  content: "";
}

.fa-mars-double:before {
  content: "";
}

.fa-venus-mars:before {
  content: "";
}

.fa-mars-stroke:before {
  content: "";
}

.fa-mars-stroke-v:before {
  content: "";
}

.fa-mars-stroke-h:before {
  content: "";
}

.fa-neuter:before {
  content: "";
}

.fa-genderless:before {
  content: "";
}

.fa-facebook-official:before {
  content: "";
}

.fa-pinterest-p:before {
  content: "";
}

.fa-whatsapp:before {
  content: "";
}

.fa-server:before {
  content: "";
}

.fa-user-plus:before {
  content: "";
}

.fa-user-times:before {
  content: "";
}

.fa-hotel:before,
.fa-bed:before {
  content: "";
}

.fa-viacoin:before {
  content: "";
}

.fa-train:before {
  content: "";
}

.fa-subway:before {
  content: "";
}

.fa-medium:before {
  content: "";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "";
}

.fa-optin-monster:before {
  content: "";
}

.fa-opencart:before {
  content: "";
}

.fa-expeditedssl:before {
  content: "";
}

.fa-battery-4:before,
.fa-battery-full:before {
  content: "";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "";
}

.fa-mouse-pointer:before {
  content: "";
}

.fa-i-cursor:before {
  content: "";
}

.fa-object-group:before {
  content: "";
}

.fa-object-ungroup:before {
  content: "";
}

.fa-sticky-note:before {
  content: "";
}

.fa-sticky-note-o:before {
  content: "";
}

.fa-cc-jcb:before {
  content: "";
}

.fa-cc-diners-club:before {
  content: "";
}

.fa-clone:before {
  content: "";
}

.fa-balance-scale:before {
  content: "";
}

.fa-hourglass-o:before {
  content: "";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "";
}

.fa-hourglass:before {
  content: "";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "";
}

.fa-hand-scissors-o:before {
  content: "";
}

.fa-hand-lizard-o:before {
  content: "";
}

.fa-hand-spock-o:before {
  content: "";
}

.fa-hand-pointer-o:before {
  content: "";
}

.fa-hand-peace-o:before {
  content: "";
}

.fa-trademark:before {
  content: "";
}

.fa-registered:before {
  content: "";
}

.fa-creative-commons:before {
  content: "";
}

.fa-gg:before {
  content: "";
}

.fa-gg-circle:before {
  content: "";
}

.fa-tripadvisor:before {
  content: "";
}

.fa-odnoklassniki:before {
  content: "";
}

.fa-odnoklassniki-square:before {
  content: "";
}

.fa-get-pocket:before {
  content: "";
}

.fa-wikipedia-w:before {
  content: "";
}

.fa-safari:before {
  content: "";
}

.fa-chrome:before {
  content: "";
}

.fa-firefox:before {
  content: "";
}

.fa-opera:before {
  content: "";
}

.fa-internet-explorer:before {
  content: "";
}

.fa-tv:before,
.fa-television:before {
  content: "";
}

.fa-contao:before {
  content: "";
}

.fa-500px:before {
  content: "";
}

.fa-amazon:before {
  content: "";
}

.fa-calendar-plus-o:before {
  content: "";
}

.fa-calendar-minus-o:before {
  content: "";
}

.fa-calendar-times-o:before {
  content: "";
}

.fa-calendar-check-o:before {
  content: "";
}

.fa-industry:before {
  content: "";
}

.fa-map-pin:before {
  content: "";
}

.fa-map-signs:before {
  content: "";
}

.fa-map-o:before {
  content: "";
}

.fa-map:before {
  content: "";
}

.fa-commenting:before {
  content: "";
}

.fa-commenting-o:before {
  content: "";
}

.fa-houzz:before {
  content: "";
}

.fa-vimeo:before {
  content: "";
}

.fa-black-tie:before {
  content: "";
}

.fa-fonticons:before {
  content: "";
}

.fa-reddit-alien:before {
  content: "";
}

.fa-edge:before {
  content: "";
}

.fa-credit-card-alt:before {
  content: "";
}

.fa-codiepie:before {
  content: "";
}

.fa-modx:before {
  content: "";
}

.fa-fort-awesome:before {
  content: "";
}

.fa-usb:before {
  content: "";
}

.fa-product-hunt:before {
  content: "";
}

.fa-mixcloud:before {
  content: "";
}

.fa-scribd:before {
  content: "";
}

.fa-pause-circle:before {
  content: "";
}

.fa-pause-circle-o:before {
  content: "";
}

.fa-stop-circle:before {
  content: "";
}

.fa-stop-circle-o:before {
  content: "";
}

.fa-shopping-bag:before {
  content: "";
}

.fa-shopping-basket:before {
  content: "";
}

.fa-hashtag:before {
  content: "";
}

.fa-bluetooth:before {
  content: "";
}

.fa-bluetooth-b:before {
  content: "";
}

.fa-percent:before {
  content: "";
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after,
.mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

.mfp-ie7 .mfp-img {
  padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
  padding: 0;
}

.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*@include foundation-global-styles;
@include foundation-grid;
@include foundation-typography;
@include foundation-button;
@include foundation-forms;
@include foundation-visibility-classes; 

@include foundation-float-classes;
@include foundation-accordion;
@include foundation-badge;
@include foundation-breadcrumbs;
@include foundation-button-group;
@include foundation-callout;
@include foundation-close-button;
@include foundation-drilldown-menu;
@include foundation-dropdown;
@include foundation-dropdown-menu;
@include foundation-flex-video;
@include foundation-label;

@include foundation-menu;
@include foundation-off-canvas;
@include foundation-orbit;
@include foundation-pagination;
@include foundation-progress-bar;
@include foundation-slider;
@include foundation-sticky;
@include foundation-reveal; 
@include foundation-switch; 
@include foundation-table; 
@include foundation-tabs; 
@include foundation-thumbnail; 
@include foundation-title-bar; 
@include foundation-tooltip; 
@include foundation-top-bar;*/
.slide-in-down.mui-enter {
  transform: translateY(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-down.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-left.mui-enter {
  transform: translateX(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-left.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-in-up.mui-enter {
  transform: translateY(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-up.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-right.mui-enter {
  transform: translateX(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-right.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-out-down.mui-leave {
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-down.mui-leave.mui-leave-active {
  transform: translateY(100%);
}

.slide-out-right.mui-leave {
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-right.mui-leave.mui-leave-active {
  transform: translateX(100%);
}

.slide-out-up.mui-leave {
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-up.mui-leave.mui-leave-active {
  transform: translateY(-100%);
}

.slide-out-left.mui-leave {
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-left.mui-leave.mui-leave-active {
  transform: translateX(-100%);
}

.fade-in.mui-enter {
  opacity: 0;
  transition-property: opacity;
}

.fade-in.mui-enter.mui-enter-active {
  opacity: 1;
}

.fade-out.mui-leave {
  opacity: 1;
  transition-property: opacity;
}

.fade-out.mui-leave.mui-leave-active {
  opacity: 0;
}

.hinge-in-from-top.mui-enter {
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-top.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-right.mui-enter {
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-right.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-bottom.mui-enter {
  transform: perspective(2000px) rotateX(90deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-bottom.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-left.mui-enter {
  transform: perspective(2000px) rotateY(90deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-left.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-x.mui-enter {
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-x.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-y.mui-enter {
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-y.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-out-from-top.mui-leave {
  transform: perspective(2000px) rotate(0deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-top.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

.hinge-out-from-right.mui-leave {
  transform: perspective(2000px) rotate(0deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-right.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

.hinge-out-from-bottom.mui-leave {
  transform: perspective(2000px) rotate(0deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-bottom.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0;
}

.hinge-out-from-left.mui-leave {
  transform: perspective(2000px) rotate(0deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-left.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0;
}

.hinge-out-from-middle-x.mui-leave {
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-x.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

.hinge-out-from-middle-y.mui-leave {
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-y.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

.scale-in-up.mui-enter {
  transform: scale(0.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-up.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-in-down.mui-enter {
  transform: scale(1.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-down.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-out-up.mui-leave {
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-up.mui-leave.mui-leave-active {
  transform: scale(1.5);
  opacity: 0;
}

.scale-out-down.mui-leave {
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-down.mui-leave.mui-leave-active {
  transform: scale(0.5);
  opacity: 0;
}

.spin-in.mui-enter {
  transform: rotate(-0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out.mui-leave {
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out.mui-leave.mui-leave-active {
  transform: rotate(0.75turn);
  opacity: 0;
}

.spin-in-ccw.mui-enter {
  transform: rotate(0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in-ccw.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out-ccw.mui-leave {
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out-ccw.mui-leave.mui-leave-active {
  transform: rotate(-0.75turn);
  opacity: 0;
}

.slow {
  transition-duration: 750ms !important;
}

.fast {
  transition-duration: 250ms !important;
}

.linear {
  transition-timing-function: linear !important;
}

.ease {
  transition-timing-function: ease !important;
}

.ease-in {
  transition-timing-function: ease-in !important;
}

.ease-out {
  transition-timing-function: ease-out !important;
}

.ease-in-out {
  transition-timing-function: ease-in-out !important;
}

.bounce-in {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  transition-delay: 300ms !important;
}

.long-delay {
  transition-delay: 700ms !important;
}

.shake {
  animation-name: shake-7;
}

@keyframes shake-7 {
  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
    transform: translateX(7%);
  }
  5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
    transform: translateX(-7%);
  }
}

.spin-cw {
  animation-name: spin-cw-1turn;
}

@keyframes spin-cw-1turn {
  0% {
    transform: rotate(-1turn);
  }
  100% {
    transform: rotate(0);
  }
}

.spin-ccw {
  animation-name: spin-cw-1turn;
}

@keyframes spin-cw-1turn {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(1turn);
  }
}

.wiggle {
  animation-name: wiggle-7deg;
}

@keyframes wiggle-7deg {
  40%, 50%, 60% {
    transform: rotate(7deg);
  }
  35%, 45%, 55%, 65% {
    transform: rotate(-7deg);
  }
  0%, 30%, 70%, 100% {
    transform: rotate(0);
  }
}

.infinite {
  animation-iteration-count: infinite;
}

.slow {
  animation-duration: 750ms !important;
}

.fast {
  animation-duration: 250ms !important;
}

.linear {
  animation-timing-function: linear !important;
}

.ease {
  animation-timing-function: ease !important;
}

.ease-in {
  animation-timing-function: ease-in !important;
}

.ease-out {
  animation-timing-function: ease-out !important;
}

.ease-in-out {
  animation-timing-function: ease-in-out !important;
}

.bounce-in {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  animation-delay: 300ms !important;
}

.long-delay {
  animation-delay: 700ms !important;
}

@font-face {
  font-family: 'fontawesome-selected';
  src: url("../font/fontawesome-selected.eot");
  src: url("../font/fontawesome-selected.eot?#iefix") format("embedded-opentype"), url("../font/fontawesome-selected.woff") format("woff"), url("../font/fontawesome-selected.ttf") format("truetype"), url("../font/fontawesome-selected.svg#fontawesome-selected") format("svg");
  font-weight: normal;
  font-style: normal;
}

.fc-calendar-container {
  position: relative;
  height: 400px;
  width: 400px;
}

.fc-calendar {
  width: 100%;
  height: 100%;
}

.fc-calendar .fc-head {
  height: 30px;
  line-height: 30px;
  background: #ccc;
  color: #fff;
}

.fc-calendar .fc-body {
  position: relative;
  width: 100%;
  height: 100%;
  height: -moz-calc(100% - 30px);
  height: -webkit-calc(100% - 30px);
  height: calc(100% - 30px);
  border: 1px solid #ddd;
}

.fc-calendar .fc-row {
  width: 100%;
  border-bottom: 1px solid #ddd;
}

.fc-four-rows .fc-row {
  height: 25%;
}

.fc-five-rows .fc-row {
  height: 20%;
}

.fc-six-rows .fc-row {
  height: 16.66%;
  height: -moz-calc(100%/6);
  height: -webkit-calc(100%/6);
  height: calc(100%/6);
}

.fc-calendar .fc-row > div,
.fc-calendar .fc-head > div {
  float: left;
  height: 100%;
  width: 14.28%;
  /* 100% / 7 */
  width: -moz-calc(100%/7);
  width: -webkit-calc(100%/7);
  width: calc(100%/7);
  position: relative;
}

/* IE 9 is rounding up the calc it seems */
.ie9 .fc-calendar .fc-row > div,
.ie9 .fc-calendar .fc-head > div {
  width: 14.2%;
}

.fc-calendar .fc-row > div {
  border-right: 1px solid #ddd;
  padding: 4px;
  overflow: hidden;
  position: relative;
}

.fc-calendar .fc-head > div {
  text-align: center;
}

.fc-calendar .fc-row > div > span.fc-date {
  position: absolute;
  width: 30px;
  height: 20px;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: #ddd;
  text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.8);
  bottom: 5px;
  right: 5px;
  text-align: right;
}

.fc-calendar .fc-row > div > span.fc-weekday {
  padding-left: 5px;
  display: none;
}

.fc-calendar .fc-row > div.fc-today {
  background: #fff4c3;
}

.fc-calendar .fc-row > div.fc-out {
  opacity: 0.6;
}

.fc-calendar .fc-row > div:last-child,
.fc-calendar .fc-head > div:last-child {
  border-right: none;
}

.fc-calendar .fc-row:last-child {
  border-bottom: none;
}

.fc-calendar-container {
  position: relative;
  height: 800px;
  width: 100%;
}

.fc-calendar .fc-head {
  background: #2e2e2e;
}

.fc-calendar .fc-row > div,
.fc-calendar .fc-head > div {
  width: 14.28% !important;
  /* 100% / 7 */
}

.fc-calendar .fc-row > .fc-past {
  background: #ededed;
}

.fc-calendar .fc-row > .fc-future {
  background: #ededed;
}

.fc-calendar .fc-row > div.fc-today {
  background: #94cae5;
}

.fc-calendar .fc-row > .fc-lastmonth {
  background: #cecece;
}

.fc-calendar .fc-row > .fc-nextmonth {
  background: #cecece;
}

.fc-calendar .fc-row > div > span.fc-date {
  color: #808080;
  bottom: 0;
  right: 0;
  position: relative;
  font-weight: normal;
}

.fc-calendar-event {
  margin-bottom: 3px;
}

.fc-calendar-event a {
  font-size: 13px;
  white-space: nowrap;
}

.fc-time {
  font-size: 11px;
  white-space: nowrap;
}

a.fc-tag {
  margin-bottom: 9px;
  display: block;
  border-radius: 3px;
  border: 1px solid #ddd;
  padding: 6px;
}

a.fc-tag.active {
  color: #fff;
  background: #5fb346;
}

.fc-calendar-events > .fc-morehidden {
  display: none;
}

.fc-datemonth {
  display: none;
}

a.fc-viewmore {
  color: #fff;
  background: #5fb346;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
  font-size: 11px;
  padding: 1px 4px;
}

a.fc-viewmore:hover {
  color: #fff;
  background: #5fb346;
}

#viewMoreModal > .fc-calendar-events > .fc-morehidden {
  display: block;
}

#viewMoreModal > .fc-calendar-events > .fc-viewmore {
  display: none;
}

#viewMoreModal span.fc-date {
  font-size: 22px !important;
  display: block;
  margin-bottom: 5px;
}

#viewMoreModal > .fc-date > .fc-datemonth {
  display: inline;
}

#viewMoreModal .fc-calendar-event {
  margin-bottom: 10px;
}

#viewMoreModal .fc-calendar-event a {
  font-size: 16px;
}

#viewMoreModal .fc-time {
  font-size: 13px;
}

@media screen and (max-width: 880px), screen and (max-height: 450px) {
  html, body, .container {
    height: auto;
  }
  .custom-header,
  .custom-header nav,
  .custom-calendar-full,
  .fc-calendar-container,
  .fc-calendar,
  .fc-calendar .fc-head,
  .fc-calendar .fc-row > div > span.fc-date {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    height: auto;
    width: auto;
  }
  .fc-calendar {
    margin: 0;
  }
  .custom-header h2,
  .custom-header h3 {
    float: none;
    width: auto;
    text-align: left;
    padding-right: 100px;
  }
  .fc-calendar .fc-row,
  .ie9 .fc-calendar .fc-row > div,
  .fc-calendar .fc-row > div {
    height: auto;
    width: 100% !important;
    border: none;
  }
  .fc-calendar .fc-row > div {
    float: none;
    min-height: 50px;
    border-radius: 0 !important;
    border-bottom: 1px solid #cecece;
    overflow: visible;
  }
  .fc-calendar .fc-row > div:empty {
    min-height: 0;
    height: 0;
    box-shadow: none !important;
    padding: 0;
  }
  .fc-calendar .fc-row {
    box-shadow: none;
  }
  .fc-calendar .fc-head {
    display: none;
  }
  .fc-calendar .fc-row > div > div {
    margin-top: 0px;
    padding-left: 10px;
    max-width: 70%;
    display: inline-block;
  }
  .fc-calendar .fc-row > div.fc-today {
    background: rgba(255, 255, 255, 0.2);
  }
  .fc-calendar .fc-row > div.fc-today:after {
    display: none;
  }
  .fc-calendar .fc-row > div > span.fc-date {
    width: 30px;
    display: inline-block;
    text-align: right;
    float: left;
  }
  .fc-calendar .fc-row > div > span.fc-weekday {
    display: inline-block;
    width: 40px;
    color: #fff;
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    text-transform: uppercase;
  }
  /* cancel out the viewmore */
  .fc-calendar-events > .fc-morehidden {
    display: block;
  }
  .fc-calendar-events > .fc-viewmore {
    display: none;
  }
}

/*
 * simplyScroll 2 - a scroll-tastic jQuery plugin
 *
 * http://logicbox.net/jquery/simplyscroll
 *
 * Copyright (c) 2009-2012 Will Kelly - http://logicbox.net
 *
 * Dual licensed under the MIT and GPL licenses.
 *
 * Last revised: 31/01/2012
 *
 */
/* Default/Master classes 

Example markup format (for horizontal scroller)
Note all DIVs are generated and should not be hard-coded

<div class="your-custom-class simply-scroll-container">
	<div class="simply-scroll-btn simply-scroll-btn-left"></div>
	<div class="simply-scroll-btn simply-scroll-btn-right"></div>
	<div class="simply-scroll-clip">
		<ul class="simply-scroll-list">
			<li>...</li>
			...
		</ul>
	</div>
</div>


*/
.simply-scroll-container {
  /* Container DIV - automatically generated */
  position: relative;
}

.simply-scroll-clip {
  /* Clip DIV - automatically generated */
  position: relative;
  overflow: hidden;
}

.simply-scroll-list {
  /* UL/OL/DIV - the element that simplyScroll is inited on */
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
}

.simply-scroll-list li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.simply-scroll-list li img {
  border: none;
  display: block;
}

.simply-scroll-btn {
  position: absolute;
  background-image: url(buttons.png);
  width: 42px;
  height: 44px;
  z-index: 3;
  cursor: pointer;
}

.simply-scroll-btn-left {
  left: 6px;
  bottom: 6px;
  background-position: 0 -44px;
}

.simply-scroll-btn-left.disabled {
  background-position: 0 0 !important;
}

.simply-scroll-btn-left:hover, .simply-scroll-btn-left:focus {
  background-position: 0 -88px;
}

.simply-scroll-btn-right {
  right: 6px;
  bottom: 6px;
  background-position: -84px -44px;
}

.simply-scroll-btn-right.disabled {
  background-position: -84px 0 !important;
}

.simply-scroll-btn-right:hover, .simply-scroll-btn-right:focus {
  background-position: -84px -88px;
}

.simply-scroll-btn-up {
  right: 6px;
  top: 6px;
  background-position: -126px -44px;
}

.simply-scroll-btn-up.disabled {
  background-position: -126px 0 !important;
}

.simply-scroll-btn-up:hover, .simply-scroll-btn-up:focus {
  background-position: -126px -88px;
}

.simply-scroll-btn-down {
  right: 6px;
  bottom: 6px;
  background-position: -42px -44px;
}

.simply-scroll-btn-down.disabled {
  background-position: -42px 0 !important;
}

.simply-scroll-btn-down:hover, .simply-scroll-btn-down:focus {
  background-position: -42px -88px;
}

.simply-scroll-btn-pause {
  right: 6px;
  bottom: 6px;
  background-position: -168px -44px;
}

.simply-scroll-btn-pause:hover, .simply-scroll-btn-pause:focus {
  background-position: -168px -88px;
}

.simply-scroll-btn-pause.active {
  background-position: -84px -44px;
}

.simply-scroll-btn-pause.active:hover, .simply-scroll-btn-pause.active:focus {
  background-position: -84px -88px;
}

/* Custom class modifications - override classees

.simply-scroll is default

*/
.simply-scroll {
  /* Customisable base class for style override DIV */
  width: 576px;
  height: 200px;
  margin-bottom: 1em;
}

.simply-scroll .simply-scroll-clip {
  width: 576px;
  height: 200px;
}

.simply-scroll .simply-scroll-list li {
  float: left;
  width: 290px;
  height: 200px;
}

/* Vertical scroller example */
.vert {
  /* wider than clip to position buttons to side */
  width: 340px;
  height: 400px;
  margin-bottom: 1.5em;
}

.vert .simply-scroll-clip {
  width: 290px;
  height: 400px;
}

.vert .simply-scroll-list li {
  width: 290px;
  height: 200px;
}

.vert .simply-scroll-btn-up {
  /* modified btn pos */
  right: 0;
  top: 0;
}

.vert .simply-scroll-btn-down {
  /* modified btn pos */
  right: 0;
  top: 52px;
}

/* NOTE left-right classes wouldn't be needed on vertical scroller */
/*@import 'clientlibs.min.scss';
@import 'corp-clientlibs.min.scss';
@import 'pardot-styles.scss';
@import 'style.scss';*/
/*! jQuery UI - v1.11.4 - 2015-03-11
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, draggable.css, menu.css, progressbar.css, resizable.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=highlight_soft&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=glass&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
* Copyright 2015 jQuery Foundation and other contributors; Licensed MIT */
.ui-helper-hidden {
  display: none;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}

.ui-helper-clearfix:before, .ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}

.ui-helper-clearfix:after {
  clear: both;
}

.ui-helper-clearfix {
  min-height: 0;
}

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0);
}

.ui-front {
  z-index: 100;
}

.ui-state-disabled {
  cursor: default !important;
}

.ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}

.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 2px 0 0 0;
  padding: 0.5em 0.5em 0.5em 0.7em;
  min-height: 0;
  font-size: 100%;
}

.ui-accordion .ui-accordion-icons {
  padding-left: 2.2em;
}

.ui-accordion .ui-accordion-icons .ui-accordion-icons {
  padding-left: 2.2em;
}

.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
  position: absolute;
  left: .5em;
  top: 50%;
  margin-top: -8px;
}

.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  overflow: auto;
}

.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
}

.ui-button {
  display: inline-block;
  position: relative;
  padding: 0;
  line-height: normal;
  margin-right: .1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  overflow: visible;
}

.ui-button, .ui-button:link, .ui-button:visited, .ui-button:hover, .ui-button:active {
  text-decoration: none;
}

.ui-button-icon-only {
  width: 2.2em;
}

button.ui-button-icon-only {
  width: 2.4em;
}

.ui-button-icons-only {
  width: 3.4em;
}

button.ui-button-icons-only {
  width: 3.7em;
}

.ui-button .ui-button-text {
  display: block;
  line-height: normal;
}

.ui-button-text-only .ui-button-text {
  padding: 0.4em 1em;
}

.ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text {
  padding: .4em;
  text-indent: -9999999px;
}

.ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text {
  padding: 0.4em 1em 0.4em 2.1em;
}

.ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text {
  padding: 0.4em 2.1em 0.4em 1em;
}

.ui-button-text-icons .ui-button-text {
  padding-left: 2.1em;
  padding-right: 2.1em;
}

input.ui-button {
  padding: 0.4em 1em;
}

.ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon {
  position: absolute;
  top: 50%;
  margin-top: -8px;
}

.ui-button-icon-only .ui-icon {
  left: 50%;
  margin-left: -8px;
}

.ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary {
  left: .5em;
}

.ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary {
  right: .5em;
}

.ui-buttonset {
  margin-right: 7px;
}

.ui-buttonset .ui-button {
  margin-left: 0;
  margin-right: -.3em;
}

input.ui-button::-moz-focus-inner, button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.ui-datepicker {
  width: 17em;
  padding: 0.2em 0.2em 0;
  display: none;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: .2em 0;
}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}

.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next {
  right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}

.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
  width: 45%;
}

.ui-datepicker table {
  width: 100%;
  font-size: .9em;
  border-collapse: collapse;
  margin: 0 0 0.4em;
}

.ui-datepicker th {
  padding: 0.7em 0.3em;
  text-align: center;
  font-weight: bold;
  border: 0;
}

.ui-datepicker td {
  border: 0;
  padding: 1px;
}

.ui-datepicker td span, .ui-datepicker td a {
  display: block;
  padding: .2em;
  text-align: right;
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: .7em 0 0 0;
  padding: 0 0.2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em 0.6em;
  width: auto;
  overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}

.ui-datepicker.ui-datepicker-multi {
  width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto 0.4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}

.ui-datepicker-rtl {
  direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current, .ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

.ui-dialog {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  padding: .2em;
  outline: 0;
}

.ui-dialog .ui-dialog-titlebar {
  padding: 0.4em 1em;
  position: relative;
}

.ui-dialog .ui-dialog-title {
  float: left;
  margin: .1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: .3em;
  top: 50%;
  width: 20px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 20px;
}

.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: 0.5em 1em;
  background: 0;
  overflow: auto;
}

.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin-top: .5em;
  padding: 0.3em 1em 0.5em 0.4em;
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}

.ui-dialog .ui-dialog-buttonpane button {
  margin: 0.5em 0.4em 0.5em 0;
  cursor: pointer;
}

.ui-dialog .ui-resizable-se {
  width: 12px;
  height: 12px;
  right: -5px;
  bottom: -5px;
  background-position: 16px 16px;
}

.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}

.ui-draggable-handle {
  -ms-touch-action: none;
  touch-action: none;
}

.ui-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  outline: 0;
}

.ui-menu .ui-menu {
  position: absolute;
}

.ui-menu .ui-menu-item {
  position: relative;
  margin: 0;
  padding: 3px 1em 3px 0.4em;
  cursor: pointer;
  min-height: 0;
  list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}

.ui-menu .ui-menu-divider {
  margin: 5px 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0;
}

.ui-menu .ui-state-focus, .ui-menu .ui-state-active {
  margin: -1px;
}

.ui-menu-icons {
  position: relative;
}

.ui-menu-icons .ui-menu-item {
  padding-left: 2em;
}

.ui-menu .ui-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: .2em;
  margin: auto 0;
}

.ui-menu .ui-menu-icon {
  left: auto;
  right: 0;
}

.ui-progressbar {
  height: 2em;
  text-align: left;
  overflow: hidden;
}

.ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%;
}

.ui-progressbar .ui-progressbar-overlay {
  background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
  height: 100%;
  filter: alpha(opacity=25);
  opacity: .25;
}

.ui-progressbar-indeterminate .ui-progressbar-value {
  background-image: none;
}

.ui-resizable {
  position: relative;
}

.ui-resizable-handle {
  position: absolute;
  font-size: .1px;
  display: block;
  -ms-touch-action: none;
  touch-action: none;
}

.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle {
  display: none;
}

.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}

.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}

.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}

.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}

.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}

.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}

.ui-selectable {
  -ms-touch-action: none;
  touch-action: none;
}

.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted black;
}

.ui-selectmenu-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

.ui-selectmenu-menu .ui-menu {
  overflow: auto;
  overflow-x: hidden;
  padding-bottom: 1px;
}

.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5;
  padding: 2px 0.4em;
  margin: .5em 0 0 0;
  height: auto;
  border: 0;
}

.ui-selectmenu-open {
  display: block;
}

.ui-selectmenu-button {
  display: inline-block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  cursor: pointer;
}

.ui-selectmenu-button span.ui-icon {
  right: .5em;
  left: auto;
  margin-top: -8px;
  position: absolute;
  top: 50%;
}

.ui-selectmenu-button span.ui-selectmenu-text {
  text-align: left;
  padding: 0.4em 2.1em 0.4em 1em;
  display: block;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ui-slider {
  position: relative;
  text-align: left;
}

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
  -ms-touch-action: none;
  touch-action: none;
}

.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: .7em;
  display: block;
  border: 0;
  background-position: 0 0;
}

.ui-slider.ui-state-disabled .ui-slider-handle, .ui-slider.ui-state-disabled .ui-slider-range {
  filter: inherit;
}

.ui-slider-horizontal {
  height: .8em;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -.3em;
  margin-left: -.6em;
}

.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

.ui-slider-vertical {
  width: .8em;
  height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
  left: -.3em;
  margin-left: 0;
  margin-bottom: -.6em;
}

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}

.ui-sortable-handle {
  -ms-touch-action: none;
  touch-action: none;
}

.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle;
}

.ui-spinner-input {
  border: 0;
  background: 0;
  color: inherit;
  padding: 0;
  margin: .2em 0;
  vertical-align: middle;
  margin-left: .4em;
  margin-right: 22px;
}

.ui-spinner-button {
  width: 16px;
  height: 50%;
  font-size: .5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0;
}

.ui-spinner a.ui-spinner-button {
  border-top: 0;
  border-bottom: 0;
  border-right: 0;
}

.ui-spinner .ui-icon {
  position: absolute;
  margin-top: -8px;
  top: 50%;
  left: 0;
}

.ui-spinner-up {
  top: 0;
}

.ui-spinner-down {
  bottom: 0;
}

.ui-spinner .ui-icon-triangle-1-s {
  background-position: -65px -16px;
}

.ui-tabs {
  position: relative;
  padding: .2em;
}

.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: 0.2em 0.2em 0;
}

.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px 0.2em 0 0;
  border-bottom-width: 0;
  padding: 0;
  white-space: nowrap;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  float: left;
  padding: 0.5em 1em;
  text-decoration: none;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor, .ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor, .ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
  cursor: text;
}

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: pointer;
}

.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: 0;
}

.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
  -webkit-box-shadow: 0 0 5px #aaa;
  box-shadow: 0 0 5px #aaa;
}

body .ui-tooltip {
  border-width: 2px;
}

.ui-widget {
  font-family: Verdana,Arial,sans-serif;
  font-size: 1.1em;
}

.ui-widget .ui-widget {
  font-size: 1em;
}

.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
  font-family: Verdana,Arial,sans-serif;
  font-size: 1em;
}

.ui-widget-content {
  border: 1px solid #aaa;
  background: #fff url("clientlibs/css/images/ui-bg_flat_75_ffffff_40x100.png") 50% 50% repeat-x;
  color: #222;
}

.ui-widget-content a {
  color: #222;
}

.ui-widget-header {
  border: 1px solid #aaa;
  background: #ccc url("clientlibs/css/images/ui-bg_highlight-soft_75_cccccc_1x100.png") 50% 50% repeat-x;
  color: #222;
  font-weight: bold;
}

.ui-widget-header a {
  color: #222;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
  border: 1px solid #d3d3d3;
  background: #e6e6e6 url("clientlibs/css/images/ui-bg_glass_75_e6e6e6_1x400.png") 50% 50% repeat-x;
  font-weight: normal;
  color: #555;
}

.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
  color: #555;
  text-decoration: none;
}

.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus {
  border: 1px solid #999;
  background: #dadada url("clientlibs/css/images/ui-bg_glass_75_dadada_1x400.png") 50% 50% repeat-x;
  font-weight: normal;
  color: #212121;
}

.ui-state-hover a, .ui-state-hover a:hover, .ui-state-hover a:link, .ui-state-hover a:visited, .ui-state-focus a, .ui-state-focus a:hover, .ui-state-focus a:link, .ui-state-focus a:visited {
  color: #212121;
  text-decoration: none;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
  border: 1px solid #aaa;
  background: #fff url("clientlibs/css/images/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x;
  font-weight: normal;
  color: #212121;
}

.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
  color: #212121;
  text-decoration: none;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  border: 1px solid #fcefa1;
  background: #fbf9ee url("clientlibs/css/images/ui-bg_glass_55_fbf9ee_1x400.png") 50% 50% repeat-x;
  color: #363636;
}

.ui-state-highlight a, .ui-widget-content .ui-state-highlight a, .ui-widget-header .ui-state-highlight a {
  color: #363636;
}

.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {
  border: 1px solid #cd0a0a;
  background: #fef1ec url("clientlibs/css/images/ui-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x;
  color: #cd0a0a;
}

.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a {
  color: #cd0a0a;
}

.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text {
  color: #cd0a0a;
}

.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary {
  font-weight: bold;
}

.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary {
  opacity: .7;
  filter: Alpha(Opacity=70);
  font-weight: normal;
}

.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled {
  opacity: .35;
  filter: Alpha(Opacity=35);
  background-image: none;
}

.ui-state-disabled .ui-icon {
  filter: Alpha(Opacity=35);
}

.ui-icon {
  width: 16px;
  height: 16px;
}

.ui-icon, .ui-widget-content .ui-icon {
  background-image: url("clientlibs/css/images/ui-icons_222222_256x240.png");
}

.ui-widget-header .ui-icon {
  background-image: url("clientlibs/css/images/ui-icons_222222_256x240.png");
}

.ui-state-default .ui-icon {
  background-image: url("clientlibs/css/images/ui-icons_888888_256x240.png");
}

.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {
  background-image: url("clientlibs/css/images/ui-icons_454545_256x240.png");
}

.ui-state-active .ui-icon {
  background-image: url("clientlibs/css/images/ui-icons_454545_256x240.png");
}

.ui-state-highlight .ui-icon {
  background-image: url("clientlibs/css/images/ui-icons_2e83ff_256x240.png");
}

.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {
  background-image: url("clientlibs/css/images/ui-icons_cd0a0a_256x240.png");
}

.ui-icon-blank {
  background-position: 16px 16px;
}

.ui-icon-carat-1-n {
  background-position: 0 0;
}

.ui-icon-carat-1-ne {
  background-position: -16px 0;
}

.ui-icon-carat-1-e {
  background-position: -32px 0;
}

.ui-icon-carat-1-se {
  background-position: -48px 0;
}

.ui-icon-carat-1-s {
  background-position: -64px 0;
}

.ui-icon-carat-1-sw {
  background-position: -80px 0;
}

.ui-icon-carat-1-w {
  background-position: -96px 0;
}

.ui-icon-carat-1-nw {
  background-position: -112px 0;
}

.ui-icon-carat-2-n-s {
  background-position: -128px 0;
}

.ui-icon-carat-2-e-w {
  background-position: -144px 0;
}

.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}

.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}

.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}

.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}

.ui-icon-triangle-1-s {
  background-position: -64px -16px;
}

.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}

.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}

.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}

.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}

.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}

.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}

.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}

.ui-icon-arrow-1-s {
  background-position: -64px -32px;
}

.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}

.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}

.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}

.ui-icon-arrowthick-1-n {
  background-position: 0 -48px;
}

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}

.ui-icon-arrow-4 {
  background-position: 0 -80px;
}

.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}

.ui-icon-extlink {
  background-position: -32px -80px;
}

.ui-icon-newwin {
  background-position: -48px -80px;
}

.ui-icon-refresh {
  background-position: -64px -80px;
}

.ui-icon-shuffle {
  background-position: -80px -80px;
}

.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}

.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}

.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}

.ui-icon-folder-open {
  background-position: -16px -96px;
}

.ui-icon-document {
  background-position: -32px -96px;
}

.ui-icon-document-b {
  background-position: -48px -96px;
}

.ui-icon-note {
  background-position: -64px -96px;
}

.ui-icon-mail-closed {
  background-position: -80px -96px;
}

.ui-icon-mail-open {
  background-position: -96px -96px;
}

.ui-icon-suitcase {
  background-position: -112px -96px;
}

.ui-icon-comment {
  background-position: -128px -96px;
}

.ui-icon-person {
  background-position: -144px -96px;
}

.ui-icon-print {
  background-position: -160px -96px;
}

.ui-icon-trash {
  background-position: -176px -96px;
}

.ui-icon-locked {
  background-position: -192px -96px;
}

.ui-icon-unlocked {
  background-position: -208px -96px;
}

.ui-icon-bookmark {
  background-position: -224px -96px;
}

.ui-icon-tag {
  background-position: -240px -96px;
}

.ui-icon-home {
  background-position: 0 -112px;
}

.ui-icon-flag {
  background-position: -16px -112px;
}

.ui-icon-calendar {
  background-position: -32px -112px;
}

.ui-icon-cart {
  background-position: -48px -112px;
}

.ui-icon-pencil {
  background-position: -64px -112px;
}

.ui-icon-clock {
  background-position: -80px -112px;
}

.ui-icon-disk {
  background-position: -96px -112px;
}

.ui-icon-calculator {
  background-position: -112px -112px;
}

.ui-icon-zoomin {
  background-position: -128px -112px;
}

.ui-icon-zoomout {
  background-position: -144px -112px;
}

.ui-icon-search {
  background-position: -160px -112px;
}

.ui-icon-wrench {
  background-position: -176px -112px;
}

.ui-icon-gear {
  background-position: -192px -112px;
}

.ui-icon-heart {
  background-position: -208px -112px;
}

.ui-icon-star {
  background-position: -224px -112px;
}

.ui-icon-link {
  background-position: -240px -112px;
}

.ui-icon-cancel {
  background-position: 0 -128px;
}

.ui-icon-plus {
  background-position: -16px -128px;
}

.ui-icon-plusthick {
  background-position: -32px -128px;
}

.ui-icon-minus {
  background-position: -48px -128px;
}

.ui-icon-minusthick {
  background-position: -64px -128px;
}

.ui-icon-close {
  background-position: -80px -128px;
}

.ui-icon-closethick {
  background-position: -96px -128px;
}

.ui-icon-key {
  background-position: -112px -128px;
}

.ui-icon-lightbulb {
  background-position: -128px -128px;
}

.ui-icon-scissors {
  background-position: -144px -128px;
}

.ui-icon-clipboard {
  background-position: -160px -128px;
}

.ui-icon-copy {
  background-position: -176px -128px;
}

.ui-icon-contact {
  background-position: -192px -128px;
}

.ui-icon-image {
  background-position: -208px -128px;
}

.ui-icon-video {
  background-position: -224px -128px;
}

.ui-icon-script {
  background-position: -240px -128px;
}

.ui-icon-alert {
  background-position: 0 -144px;
}

.ui-icon-info {
  background-position: -16px -144px;
}

.ui-icon-notice {
  background-position: -32px -144px;
}

.ui-icon-help {
  background-position: -48px -144px;
}

.ui-icon-check {
  background-position: -64px -144px;
}

.ui-icon-bullet {
  background-position: -80px -144px;
}

.ui-icon-radio-on {
  background-position: -96px -144px;
}

.ui-icon-radio-off {
  background-position: -112px -144px;
}

.ui-icon-pin-w {
  background-position: -128px -144px;
}

.ui-icon-pin-s {
  background-position: -144px -144px;
}

.ui-icon-play {
  background-position: 0 -160px;
}

.ui-icon-pause {
  background-position: -16px -160px;
}

.ui-icon-seek-next {
  background-position: -32px -160px;
}

.ui-icon-seek-prev {
  background-position: -48px -160px;
}

.ui-icon-seek-end {
  background-position: -64px -160px;
}

.ui-icon-seek-start {
  background-position: -80px -160px;
}

.ui-icon-seek-first {
  background-position: -80px -160px;
}

.ui-icon-stop {
  background-position: -96px -160px;
}

.ui-icon-eject {
  background-position: -112px -160px;
}

.ui-icon-volume-off {
  background-position: -128px -160px;
}

.ui-icon-volume-on {
  background-position: -144px -160px;
}

.ui-icon-power {
  background-position: 0 -176px;
}

.ui-icon-signal-diag {
  background-position: -16px -176px;
}

.ui-icon-signal {
  background-position: -32px -176px;
}

.ui-icon-battery-0 {
  background-position: -48px -176px;
}

.ui-icon-battery-1 {
  background-position: -64px -176px;
}

.ui-icon-battery-2 {
  background-position: -80px -176px;
}

.ui-icon-battery-3 {
  background-position: -96px -176px;
}

.ui-icon-circle-plus {
  background-position: 0 -192px;
}

.ui-icon-circle-minus {
  background-position: -16px -192px;
}

.ui-icon-circle-close {
  background-position: -32px -192px;
}

.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}

.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}

.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}

.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}

.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}

.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}

.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}

.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}

.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}

.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}

.ui-icon-circle-check {
  background-position: -208px -192px;
}

.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}

.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}

.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}

.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}

.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}

.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}

.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl {
  border-top-left-radius: 4px;
}

.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr {
  border-top-right-radius: 4px;
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl {
  border-bottom-left-radius: 4px;
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
  border-bottom-right-radius: 4px;
}

.ui-widget-overlay {
  background: #aaa url("clientlibs/css/images/ui-bg_flat_0_aaaaaa_40x100.png") 50% 50% repeat-x;
  opacity: .3;
  filter: Alpha(Opacity=30);
}

.ui-widget-shadow {
  margin: -8px 0 0 -8px;
  padding: 8px;
  background: #aaa url("clientlibs/css/images/ui-bg_flat_0_aaaaaa_40x100.png") 50% 50% repeat-x;
  opacity: .3;
  filter: Alpha(Opacity=30);
  border-radius: 8px;
}

/*!
 * Bootstrap v3.3.1 (http://getbootstrap.com)
 * Copyright 2011-2014 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: 700;
}

dfn {
  font-style: italic;
}

h1 {
  margin: .67em 0;
  font-size: 2em;
}

mark {
  color: #000;
  background: #ff0;
}

small {
  font-size: 80%;
}

sub, sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -.5em;
}

sub {
  bottom: -.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  height: 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

pre {
  overflow: auto;
}

code, kbd, pre, samp {
  font-family: monospace,monospace;
  font-size: 1em;
}

button, input, optgroup, select, textarea {
  margin: 0;
  font: inherit;
  color: inherit;
}

button {
  overflow: visible;
}

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;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input {
  line-height: normal;
}

input[type=checkbox], input[type=radio] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  padding: 0.35em 0.625em 0.75em;
  margin: 0 2px;
  border: 1px solid silver;
}

legend {
  padding: 0;
  border: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: 700;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

td, th {
  padding: 0;
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *, :before, :after {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    -webkit-box-shadow: none !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^="#"]:after, a[href^="javascript:"]: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;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2, h3 {
    page-break-after: avoid;
  }
  select {
    background: #fff !important;
  }
  .navbar {
    display: none;
  }
  .btn > .caret, .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td, .table th {
    background-color: #fff !important;
  }
  .table-bordered th, .table-bordered td {
    border: 1px solid #ddd !important;
  }
}

@font-face {
  font-family: 'Glyphicons Halflings';
  src: url(clientlibs/fonts/glyphicons-halflings-regular.eot);
  src: url(clientlibs/fonts/glyphicons-halflings-regular.eot?#iefix) format("embedded-opentype"), url(clientlibs/fonts/glyphicons-halflings-regular.woff) format("woff"), url(clientlibs/fonts/glyphicons-halflings-regular.ttf) format("truetype"), url(clientlibs/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format("svg");
}

.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.glyphicon-asterisk:before {
  content: "\2a";
}

.glyphicon-plus:before {
  content: "\2b";
}

.glyphicon-euro:before, .glyphicon-eur:before {
  content: "\20ac";
}

.glyphicon-minus:before {
  content: "\2212";
}

.glyphicon-cloud:before {
  content: "\2601";
}

.glyphicon-envelope:before {
  content: "\2709";
}

.glyphicon-pencil:before {
  content: "\270f";
}

.glyphicon-glass:before {
  content: "\e001";
}

.glyphicon-music:before {
  content: "\e002";
}

.glyphicon-search:before {
  content: "\e003";
}

.glyphicon-heart:before {
  content: "\e005";
}

.glyphicon-star:before {
  content: "\e006";
}

.glyphicon-star-empty:before {
  content: "\e007";
}

.glyphicon-user:before {
  content: "\e008";
}

.glyphicon-film:before {
  content: "\e009";
}

.glyphicon-th-large:before {
  content: "\e010";
}

.glyphicon-th:before {
  content: "\e011";
}

.glyphicon-th-list:before {
  content: "\e012";
}

.glyphicon-ok:before {
  content: "\e013";
}

.glyphicon-remove:before {
  content: "\e014";
}

.glyphicon-zoom-in:before {
  content: "\e015";
}

.glyphicon-zoom-out:before {
  content: "\e016";
}

.glyphicon-off:before {
  content: "\e017";
}

.glyphicon-signal:before {
  content: "\e018";
}

.glyphicon-cog:before {
  content: "\e019";
}

.glyphicon-trash:before {
  content: "\e020";
}

.glyphicon-home:before {
  content: "\e021";
}

.glyphicon-file:before {
  content: "\e022";
}

.glyphicon-time:before {
  content: "\e023";
}

.glyphicon-road:before {
  content: "\e024";
}

.glyphicon-download-alt:before {
  content: "\e025";
}

.glyphicon-download:before {
  content: "\e026";
}

.glyphicon-upload:before {
  content: "\e027";
}

.glyphicon-inbox:before {
  content: "\e028";
}

.glyphicon-play-circle:before {
  content: "\e029";
}

.glyphicon-repeat:before {
  content: "\e030";
}

.glyphicon-refresh:before {
  content: "\e031";
}

.glyphicon-list-alt:before {
  content: "\e032";
}

.glyphicon-lock:before {
  content: "\e033";
}

.glyphicon-flag:before {
  content: "\e034";
}

.glyphicon-headphones:before {
  content: "\e035";
}

.glyphicon-volume-off:before {
  content: "\e036";
}

.glyphicon-volume-down:before {
  content: "\e037";
}

.glyphicon-volume-up:before {
  content: "\e038";
}

.glyphicon-qrcode:before {
  content: "\e039";
}

.glyphicon-barcode:before {
  content: "\e040";
}

.glyphicon-tag:before {
  content: "\e041";
}

.glyphicon-tags:before {
  content: "\e042";
}

.glyphicon-book:before {
  content: "\e043";
}

.glyphicon-bookmark:before {
  content: "\e044";
}

.glyphicon-print:before {
  content: "\e045";
}

.glyphicon-camera:before {
  content: "\e046";
}

.glyphicon-font:before {
  content: "\e047";
}

.glyphicon-bold:before {
  content: "\e048";
}

.glyphicon-italic:before {
  content: "\e049";
}

.glyphicon-text-height:before {
  content: "\e050";
}

.glyphicon-text-width:before {
  content: "\e051";
}

.glyphicon-align-left:before {
  content: "\e052";
}

.glyphicon-align-center:before {
  content: "\e053";
}

.glyphicon-align-right:before {
  content: "\e054";
}

.glyphicon-align-justify:before {
  content: "\e055";
}

.glyphicon-list:before {
  content: "\e056";
}

.glyphicon-indent-left:before {
  content: "\e057";
}

.glyphicon-indent-right:before {
  content: "\e058";
}

.glyphicon-facetime-video:before {
  content: "\e059";
}

.glyphicon-picture:before {
  content: "\e060";
}

.glyphicon-map-marker:before {
  content: "\e062";
}

.glyphicon-adjust:before {
  content: "\e063";
}

.glyphicon-tint:before {
  content: "\e064";
}

.glyphicon-edit:before {
  content: "\e065";
}

.glyphicon-share:before {
  content: "\e066";
}

.glyphicon-check:before {
  content: "\e067";
}

.glyphicon-move:before {
  content: "\e068";
}

.glyphicon-step-backward:before {
  content: "\e069";
}

.glyphicon-fast-backward:before {
  content: "\e070";
}

.glyphicon-backward:before {
  content: "\e071";
}

.glyphicon-play:before {
  content: "\e072";
}

.glyphicon-pause:before {
  content: "\e073";
}

.glyphicon-stop:before {
  content: "\e074";
}

.glyphicon-forward:before {
  content: "\e075";
}

.glyphicon-fast-forward:before {
  content: "\e076";
}

.glyphicon-step-forward:before {
  content: "\e077";
}

.glyphicon-eject:before {
  content: "\e078";
}

.glyphicon-chevron-left:before {
  content: "\e079";
}

.glyphicon-chevron-right:before {
  content: "\e080";
}

.glyphicon-plus-sign:before {
  content: "\e081";
}

.glyphicon-minus-sign:before {
  content: "\e082";
}

.glyphicon-remove-sign:before {
  content: "\e083";
}

.glyphicon-ok-sign:before {
  content: "\e084";
}

.glyphicon-question-sign:before {
  content: "\e085";
}

.glyphicon-info-sign:before {
  content: "\e086";
}

.glyphicon-screenshot:before {
  content: "\e087";
}

.glyphicon-remove-circle:before {
  content: "\e088";
}

.glyphicon-ok-circle:before {
  content: "\e089";
}

.glyphicon-ban-circle:before {
  content: "\e090";
}

.glyphicon-arrow-left:before {
  content: "\e091";
}

.glyphicon-arrow-right:before {
  content: "\e092";
}

.glyphicon-arrow-up:before {
  content: "\e093";
}

.glyphicon-arrow-down:before {
  content: "\e094";
}

.glyphicon-share-alt:before {
  content: "\e095";
}

.glyphicon-resize-full:before {
  content: "\e096";
}

.glyphicon-resize-small:before {
  content: "\e097";
}

.glyphicon-exclamation-sign:before {
  content: "\e101";
}

.glyphicon-gift:before {
  content: "\e102";
}

.glyphicon-leaf:before {
  content: "\e103";
}

.glyphicon-fire:before {
  content: "\e104";
}

.glyphicon-eye-open:before {
  content: "\e105";
}

.glyphicon-eye-close:before {
  content: "\e106";
}

.glyphicon-warning-sign:before {
  content: "\e107";
}

.glyphicon-plane:before {
  content: "\e108";
}

.glyphicon-calendar:before {
  content: "\e109";
}

.glyphicon-random:before {
  content: "\e110";
}

.glyphicon-comment:before {
  content: "\e111";
}

.glyphicon-magnet:before {
  content: "\e112";
}

.glyphicon-chevron-up:before {
  content: "\e113";
}

.glyphicon-chevron-down:before {
  content: "\e114";
}

.glyphicon-retweet:before {
  content: "\e115";
}

.glyphicon-shopping-cart:before {
  content: "\e116";
}

.glyphicon-folder-close:before {
  content: "\e117";
}

.glyphicon-folder-open:before {
  content: "\e118";
}

.glyphicon-resize-vertical:before {
  content: "\e119";
}

.glyphicon-resize-horizontal:before {
  content: "\e120";
}

.glyphicon-hdd:before {
  content: "\e121";
}

.glyphicon-bullhorn:before {
  content: "\e122";
}

.glyphicon-bell:before {
  content: "\e123";
}

.glyphicon-certificate:before {
  content: "\e124";
}

.glyphicon-thumbs-up:before {
  content: "\e125";
}

.glyphicon-thumbs-down:before {
  content: "\e126";
}

.glyphicon-hand-right:before {
  content: "\e127";
}

.glyphicon-hand-left:before {
  content: "\e128";
}

.glyphicon-hand-up:before {
  content: "\e129";
}

.glyphicon-hand-down:before {
  content: "\e130";
}

.glyphicon-circle-arrow-right:before {
  content: "\e131";
}

.glyphicon-circle-arrow-left:before {
  content: "\e132";
}

.glyphicon-circle-arrow-up:before {
  content: "\e133";
}

.glyphicon-circle-arrow-down:before {
  content: "\e134";
}

.glyphicon-globe:before {
  content: "\e135";
}

.glyphicon-wrench:before {
  content: "\e136";
}

.glyphicon-tasks:before {
  content: "\e137";
}

.glyphicon-filter:before {
  content: "\e138";
}

.glyphicon-briefcase:before {
  content: "\e139";
}

.glyphicon-fullscreen:before {
  content: "\e140";
}

.glyphicon-dashboard:before {
  content: "\e141";
}

.glyphicon-paperclip:before {
  content: "\e142";
}

.glyphicon-heart-empty:before {
  content: "\e143";
}

.glyphicon-link:before {
  content: "\e144";
}

.glyphicon-phone:before {
  content: "\e145";
}

.glyphicon-pushpin:before {
  content: "\e146";
}

.glyphicon-usd:before {
  content: "\e148";
}

.glyphicon-gbp:before {
  content: "\e149";
}

.glyphicon-sort:before {
  content: "\e150";
}

.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}

.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}

.glyphicon-sort-by-order:before {
  content: "\e153";
}

.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}

.glyphicon-sort-by-attributes:before {
  content: "\e155";
}

.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}

.glyphicon-unchecked:before {
  content: "\e157";
}

.glyphicon-expand:before {
  content: "\e158";
}

.glyphicon-collapse-down:before {
  content: "\e159";
}

.glyphicon-collapse-up:before {
  content: "\e160";
}

.glyphicon-log-in:before {
  content: "\e161";
}

.glyphicon-flash:before {
  content: "\e162";
}

.glyphicon-log-out:before {
  content: "\e163";
}

.glyphicon-new-window:before {
  content: "\e164";
}

.glyphicon-record:before {
  content: "\e165";
}

.glyphicon-save:before {
  content: "\e166";
}

.glyphicon-open:before {
  content: "\e167";
}

.glyphicon-saved:before {
  content: "\e168";
}

.glyphicon-import:before {
  content: "\e169";
}

.glyphicon-export:before {
  content: "\e170";
}

.glyphicon-send:before {
  content: "\e171";
}

.glyphicon-floppy-disk:before {
  content: "\e172";
}

.glyphicon-floppy-saved:before {
  content: "\e173";
}

.glyphicon-floppy-remove:before {
  content: "\e174";
}

.glyphicon-floppy-save:before {
  content: "\e175";
}

.glyphicon-floppy-open:before {
  content: "\e176";
}

.glyphicon-credit-card:before {
  content: "\e177";
}

.glyphicon-transfer:before {
  content: "\e178";
}

.glyphicon-cutlery:before {
  content: "\e179";
}

.glyphicon-header:before {
  content: "\e180";
}

.glyphicon-compressed:before {
  content: "\e181";
}

.glyphicon-earphone:before {
  content: "\e182";
}

.glyphicon-phone-alt:before {
  content: "\e183";
}

.glyphicon-tower:before {
  content: "\e184";
}

.glyphicon-stats:before {
  content: "\e185";
}

.glyphicon-sd-video:before {
  content: "\e186";
}

.glyphicon-hd-video:before {
  content: "\e187";
}

.glyphicon-subtitles:before {
  content: "\e188";
}

.glyphicon-sound-stereo:before {
  content: "\e189";
}

.glyphicon-sound-dolby:before {
  content: "\e190";
}

.glyphicon-sound-5-1:before {
  content: "\e191";
}

.glyphicon-sound-6-1:before {
  content: "\e192";
}

.glyphicon-sound-7-1:before {
  content: "\e193";
}

.glyphicon-copyright-mark:before {
  content: "\e194";
}

.glyphicon-registration-mark:before {
  content: "\e195";
}

.glyphicon-cloud-download:before {
  content: "\e197";
}

.glyphicon-cloud-upload:before {
  content: "\e198";
}

.glyphicon-tree-conifer:before {
  content: "\e199";
}

.glyphicon-tree-deciduous:before {
  content: "\e200";
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

:before, :after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  background-color: #fff;
}

input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  color: #337ab7;
  text-decoration: none;
}

a:hover, a:focus {
  color: #23527c;
  text-decoration: underline;
}

a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
}

.img-responsive, .thumbnail > img, .thumbnail a > img, .carousel-inner > .item > img, .carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-rounded {
  border-radius: 6px;
}

.img-thumbnail {
  display: inline-block;
  max-width: 100%;
  height: auto;
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.img-circle {
  border-radius: 50%;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  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: 400;
  line-height: 1;
  color: #777;
}

h1, .h1, h2, .h2, h3, .h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

h1 small, .h1 small, h2 small, .h2 small, h3 small, .h3 small, h1 .small, .h1 .small, h2 .small, .h2 .small, h3 .small, .h3 .small {
  font-size: 65%;
}

h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}

h4 small, .h4 small, h5 small, .h5 small, h6 small, .h6 small, h4 .small, .h4 .small, h5 .small, .h5 .small, h6 .small, .h6 .small {
  font-size: 75%;
}

h1, .h1 {
  font-size: 36px;
}

h2, .h2 {
  font-size: 30px;
}

h3, .h3 {
  font-size: 24px;
}

h4, .h4 {
  font-size: 18px;
}

h5, .h5 {
  font-size: 14px;
}

h6, .h6 {
  font-size: 12px;
}

p {
  margin: 0 0 10px;
}

.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}

small, .small {
  font-size: 85%;
}

mark, .mark {
  padding: .2em;
  background-color: #fcf8e3;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-muted {
  color: #777;
}

.text-primary {
  color: #337ab7;
}

a.text-primary:hover {
  color: #286090;
}

.text-success {
  color: #3c763d;
}

a.text-success:hover {
  color: #2b542c;
}

.text-info {
  color: #31708f;
}

a.text-info:hover {
  color: #245269;
}

.text-warning {
  color: #8a6d3b;
}

a.text-warning:hover {
  color: #66512c;
}

.text-danger {
  color: #a94442;
}

a.text-danger:hover {
  color: #843534;
}

.bg-primary {
  color: #fff;
  background-color: #337ab7;
}

a.bg-primary:hover {
  background-color: #286090;
}

.bg-success {
  background-color: #dff0d8;
}

a.bg-success:hover {
  background-color: #c1e2b3;
}

.bg-info {
  background-color: #d9edf7;
}

a.bg-info:hover {
  background-color: #afd9ee;
}

.bg-warning {
  background-color: #fcf8e3;
}

a.bg-warning:hover {
  background-color: #f7ecb5;
}

.bg-danger {
  background-color: #f2dede;
}

a.bg-danger:hover {
  background-color: #e4b9b9;
}

.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eee;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
}

ul ul, ol ul, ul ol, ol ol {
  margin-bottom: 0;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  margin-left: -5px;
  list-style: none;
}

.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}

dl {
  margin-top: 0;
  margin-bottom: 20px;
}

dt, dd {
  line-height: 1.42857143;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    overflow: hidden;
    clear: left;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}

abbr[title], abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eee;
}

blockquote p:last-child, blockquote ul:last-child, blockquote ol:last-child {
  margin-bottom: 0;
}

blockquote footer, blockquote small, blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777;
}

blockquote footer:before, blockquote small:before, blockquote .small:before {
  content: '\2014 \00A0';
}

.blockquote-reverse, blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #eee;
  border-left: 0;
}

.blockquote-reverse footer:before, blockquote.pull-right footer:before, .blockquote-reverse small:before, blockquote.pull-right small:before, .blockquote-reverse .small:before, blockquote.pull-right .small:before {
  content: '';
}

.blockquote-reverse footer:after, blockquote.pull-right footer:after, .blockquote-reverse small:after, blockquote.pull-right small:after, .blockquote-reverse .small:after, blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}

address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}

code, kbd, pre, samp {
  font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
}

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}

kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
  -webkit-box-shadow: none;
  box-shadow: none;
}

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  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 {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.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-right: 15px;
  padding-left: 15px;
}

.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, .col-xs-12 {
  float: left;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-11 {
  width: 91.66666667%;
}

.col-xs-10 {
  width: 83.33333333%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-8 {
  width: 66.66666667%;
}

.col-xs-7 {
  width: 58.33333333%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-5 {
  width: 41.66666667%;
}

.col-xs-4 {
  width: 33.33333333%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-2 {
  width: 16.66666667%;
}

.col-xs-1 {
  width: 8.33333333%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-pull-11 {
  right: 91.66666667%;
}

.col-xs-pull-10 {
  right: 83.33333333%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-8 {
  right: 66.66666667%;
}

.col-xs-pull-7 {
  right: 58.33333333%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-5 {
  right: 41.66666667%;
}

.col-xs-pull-4 {
  right: 33.33333333%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-2 {
  right: 16.66666667%;
}

.col-xs-pull-1 {
  right: 8.33333333%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-push-11 {
  left: 91.66666667%;
}

.col-xs-push-10 {
  left: 83.33333333%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-8 {
  left: 66.66666667%;
}

.col-xs-push-7 {
  left: 58.33333333%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-5 {
  left: 41.66666667%;
}

.col-xs-push-4 {
  left: 33.33333333%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-2 {
  left: 16.66666667%;
}

.col-xs-push-1 {
  left: 8.33333333%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-0 {
  margin-left: 0;
}

@media (min-width: 768px) {
  .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, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
}

@media (min-width: 992px) {
  .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, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
}

@media (min-width: 1200px) {
  .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, .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
}

table {
  background-color: transparent;
}

caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777;
  text-align: left;
}

th {
  text-align: left;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

.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.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}

.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}

.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 #ddd;
}

.table .table {
  background-color: #fff;
}

.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 #ddd;
}

.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 #ddd;
}

.table-bordered > thead > tr > th, .table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

.table-striped > tbody > tr:nth-child(odd) {
  background-color: #f9f9f9;
}

.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}

table col[class*=col-] {
  position: static;
  display: table-column;
  float: none;
}

table td[class*=col-], table th[class*=col-] {
  position: static;
  display: table-cell;
  float: none;
}

.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-hover > tbody > tr > td.active:hover, .table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}

.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:hover > .success, .table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}

.table > thead > tr > td.info, .table > tbody > tr > td.info, .table > tfoot > tr > td.info, .table > thead > tr > th.info, .table > tbody > tr > th.info, .table > tfoot > tr > th.info, .table > thead > tr.info > td, .table > tbody > tr.info > td, .table > tfoot > tr.info > td, .table > thead > tr.info > th, .table > tbody > tr.info > th, .table > tfoot > tr.info > th {
  background-color: #d9edf7;
}

.table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}

.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:hover > .warning, .table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}

.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:hover > .danger, .table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}

.table-responsive {
  min-height: .01%;
  overflow-x: auto;
}

@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  .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 {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
}

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;
  line-height: normal;
}

input[type=file] {
  display: block;
}

input[type=range] {
  display: block;
  width: 100%;
}

select[multiple], select[size] {
  height: auto;
}

input[type=file]:focus, input[type=radio]:focus, input[type=checkbox]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
}

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  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 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #999;
}

.form-control::-webkit-input-placeholder {
  color: #999;
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #eee;
  opacity: 1;
}

textarea.form-control {
  height: auto;
}

input[type=search] {
  -webkit-appearance: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type=date], input[type=time], input[type=datetime-local], input[type=month] {
    line-height: 34px;
  }
  input[type=date].input-sm, input[type=time].input-sm, input[type=datetime-local].input-sm, input[type=month].input-sm {
    line-height: 30px;
  }
  input[type=date].input-lg, input[type=time].input-lg, input[type=datetime-local].input-lg, input[type=month].input-lg {
    line-height: 46px;
  }
}

.form-group {
  margin-bottom: 15px;
}

.radio, .checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.radio label, .checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}

.radio input[type=radio], .radio-inline input[type=radio], .checkbox input[type=checkbox], .checkbox-inline input[type=checkbox] {
  position: absolute;
  margin-top: 4px \9;
  margin-left: -20px;
}

.radio + .radio, .checkbox + .checkbox {
  margin-top: -5px;
}

.radio-inline, .checkbox-inline {
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  vertical-align: middle;
  cursor: pointer;
}

.radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

input[type=radio][disabled], input[type=checkbox][disabled], input[type=radio].disabled, input[type=checkbox].disabled, fieldset[disabled] input[type=radio], fieldset[disabled] input[type=checkbox] {
  cursor: not-allowed;
}

.radio-inline.disabled, .checkbox-inline.disabled, fieldset[disabled] .radio-inline, fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}

.radio.disabled label, .checkbox.disabled label, fieldset[disabled] .radio label, fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}

.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
}

.form-control-static.input-lg, .form-control-static.input-sm {
  padding-right: 0;
  padding-left: 0;
}

.input-sm, .form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

select.input-sm, select.form-group-sm .form-control {
  height: 30px;
  line-height: 30px;
}

textarea.input-sm, textarea.form-group-sm .form-control, select[multiple].input-sm, select[multiple].form-group-sm .form-control {
  height: auto;
}

.input-lg, .form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}

select.input-lg, select.form-group-lg .form-control {
  height: 46px;
  line-height: 46px;
}

textarea.input-lg, textarea.form-group-lg .form-control, select[multiple].input-lg, select[multiple].form-group-lg .form-control {
  height: auto;
}

.has-feedback {
  position: relative;
}

.has-feedback .form-control {
  padding-right: 42.5px;
}

.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}

.input-lg + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}

.input-sm + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label {
  color: #3c763d;
}

.has-success .form-control {
  border-color: #3c763d;
  -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: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}

.has-success .input-group-addon {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #3c763d;
}

.has-success .form-control-feedback {
  color: #3c763d;
}

.has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label {
  color: #8a6d3b;
}

.has-warning .form-control {
  border-color: #8a6d3b;
  -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: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}

.has-warning .input-group-addon {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #8a6d3b;
}

.has-warning .form-control-feedback {
  color: #8a6d3b;
}

.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
  color: #a94442;
}

.has-error .form-control {
  border-color: #a94442;
  -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: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}

.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}

.has-error .form-control-feedback {
  color: #a94442;
}

.has-feedback label ~ .form-control-feedback {
  top: 25px;
}

.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}

@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon, .form-inline .input-group .input-group-btn, .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio, .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label, .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type=radio], .form-inline .checkbox input[type=checkbox] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}

.form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0;
}

.form-horizontal .radio, .form-horizontal .checkbox {
  min-height: 27px;
}

.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width: 768px) {
  .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right;
  }
}

.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}

@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 14.3px;
  }
}

@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
  }
}

.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

.btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.btn:hover, .btn:focus, .btn.focus {
  color: #333;
  text-decoration: none;
}

.btn:active, .btn.active {
  background-image: none;
  outline: 0;
  -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 {
  pointer-events: none;
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: .65;
}

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}

.btn-default:hover, .btn-default:focus, .btn-default.focus, .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  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.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: #fff;
  border-color: #ccc;
}

.btn-default .badge {
  color: #fff;
  background-color: #333;
}

.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}

.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.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: #337ab7;
  border-color: #2e6da4;
}

.btn-primary .badge {
  color: #337ab7;
  background-color: #fff;
}

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}

.btn-success:hover, .btn-success:focus, .btn-success.focus, .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #449d44;
  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.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-success .badge {
  color: #5cb85c;
  background-color: #fff;
}

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}

.btn-info:hover, .btn-info:focus, .btn-info.focus, .btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #31b0d5;
  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.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-info .badge {
  color: #5bc0de;
  background-color: #fff;
}

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}

.btn-warning:hover, .btn-warning:focus, .btn-warning.focus, .btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ec971f;
  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.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-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}

.btn-danger:hover, .btn-danger:focus, .btn-danger.focus, .btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #c9302c;
  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.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-danger .badge {
  color: #d9534f;
  background-color: #fff;
}

.btn-link {
  font-weight: 400;
  color: #337ab7;
  border-radius: 0;
}

.btn-link, .btn-link:active, .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: #23527c;
  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: #777;
  text-decoration: none;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-xs, .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 5px;
}

input[type=submit].btn-block, input[type=reset].btn-block, input[type=button].btn-block {
  width: 100%;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
  visibility: hidden;
}

.collapse.in {
  display: block;
  visibility: visible;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: .35s;
  -o-transition-duration: .35s;
  transition-duration: .35s;
  -webkit-transition-property: height,visibility;
  -o-transition-property: height,visibility;
  transition-property: height,visibility;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.dropdown {
  position: relative;
}

.dropdown-toggle:focus {
  outline: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}

.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #337ab7;
  outline: 0;
}

.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #777;
}

.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.open > .dropdown-menu {
  display: block;
}

.open > a {
  outline: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777;
  white-space: nowrap;
}

.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}

.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

.dropup .caret, .navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px solid;
}

.dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
}

@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  .navbar-right .dropdown-menu-left {
    right: auto;
    left: 0;
  }
}

.btn-group, .btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.btn-group > .btn, .btn-group-vertical > .btn {
  position: relative;
  float: left;
}

.btn-group > .btn:hover, .btn-group-vertical > .btn:hover, .btn-group > .btn:focus, .btn-group-vertical > .btn:focus, .btn-group > .btn:active, .btn-group-vertical > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn.active {
  z-index: 2;
}

.btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group {
  margin-left: -1px;
}

.btn-toolbar {
  margin-left: -5px;
}

.btn-toolbar .btn-group, .btn-toolbar .input-group {
  float: left;
}

.btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group {
  margin-left: 5px;
}

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}

.btn-group > .btn:first-child {
  margin-left: 0;
}

.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group > .btn-group {
  float: left;
}

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

.btn-group > .btn-group:first-child > .btn:last-child, .btn-group > .btn-group:first-child > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn-group:last-child > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
  outline: 0;
}

.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
}

.btn-group > .btn-lg + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}

.btn-group.open .dropdown-toggle {
  -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-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn .caret {
  margin-left: 0;
}

.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}

.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}

.btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}

.btn-group-vertical > .btn-group > .btn {
  float: none;
}

.btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 4px;
}

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}

.btn-group-justified > .btn, .btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  width: 1%;
}

.btn-group-justified > .btn-group .btn {
  width: 100%;
}

.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}

[data-toggle=buttons] > .btn input[type=radio], [data-toggle=buttons] > .btn-group > .btn input[type=radio], [data-toggle=buttons] > .btn input[type=checkbox], [data-toggle=buttons] > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}

.input-group[class*=col-] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}

.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}

.input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}

select.input-group-lg > .form-control, select.input-group-lg > .input-group-addon, select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px;
}

textarea.input-group-lg > .form-control, textarea.input-group-lg > .input-group-addon, textarea.input-group-lg > .input-group-btn > .btn, select[multiple].input-group-lg > .form-control, select[multiple].input-group-lg > .input-group-addon, select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto;
}

.input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

select.input-group-sm > .form-control, select.input-group-sm > .input-group-addon, select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}

textarea.input-group-sm > .form-control, textarea.input-group-sm > .input-group-addon, textarea.input-group-sm > .input-group-btn > .btn, select[multiple].input-group-sm > .form-control, select[multiple].input-group-sm > .input-group-addon, select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto;
}

.input-group-addon, .input-group-btn, .input-group .form-control {
  display: table-cell;
}

.input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.input-group-addon, .input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}

.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}

.input-group-addon input[type=radio], .input-group-addon input[type=checkbox] {
  margin-top: 0;
}

.input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-addon:first-child {
  border-right: 0;
}

.input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-addon:last-child {
  border-left: 0;
}

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}

.input-group-btn > .btn {
  position: relative;
}

.input-group-btn > .btn + .btn {
  margin-left: -1px;
}

.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
  z-index: 2;
}

.input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}

.input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group {
  margin-left: -1px;
}

.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav > li {
  position: relative;
  display: block;
}

.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}

.nav > li > a:hover, .nav > li > a:focus {
  text-decoration: none;
  background-color: #eee;
}

.nav > li.disabled > a {
  color: #777;
}

.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
  color: #777;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}

.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  background-color: #eee;
  border-color: #337ab7;
}

.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

.nav > li > a > img {
  max-width: none;
}

.nav-tabs {
  border-bottom: 1px solid #ddd;
}

.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}

.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}

.nav-tabs > li > a:hover {
  border-color: #eee #eee #ddd;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: #555;
  cursor: default;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
}

.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}

.nav-tabs.nav-justified > li {
  float: none;
}

.nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}

.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}

@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}

.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}

.nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}

@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}

.nav-pills > li {
  float: left;
}

.nav-pills > li > a {
  border-radius: 4px;
}

.nav-pills > li + li {
  margin-left: 2px;
}

.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #337ab7;
}

.nav-stacked > li {
  float: none;
}

.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}

.nav-justified {
  width: 100%;
}

.nav-justified > li {
  float: none;
}

.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}

.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}

@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a {
    margin-bottom: 0;
  }
}

.nav-tabs-justified {
  border-bottom: 0;
}

.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}

.nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}

@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}

.tab-content > .tab-pane {
  display: none;
  visibility: hidden;
}

.tab-content > .active {
  display: block;
  visibility: visible;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}

@media (min-width: 768px) {
  .navbar {
    border-radius: 4px;
  }
}

@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
}

.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.navbar-collapse.in {
  overflow-y: auto;
}

@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
    visibility: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }
}

.navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}

@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}

.container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width: 768px) {
  .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}

.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}

@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}

.navbar-fixed-top, .navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}

@media (min-width: 768px) {
  .navbar-fixed-top, .navbar-fixed-bottom {
    border-radius: 0;
  }
}

.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}

.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}

.navbar-brand {
  float: left;
  height: 50px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}

.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-brand > img {
  display: block;
}

@media (min-width: 768px) {
  .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}

.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

.navbar-toggle:focus {
  outline: 0;
}

.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}

.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}

@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}

.navbar-nav {
  margin: 7.5px -15px;
}

.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}

@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}

@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.navbar-form {
  padding: 10px 15px;
  margin-top: 8px;
  margin-right: -15px;
  margin-bottom: 8px;
  margin-left: -15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .navbar-form .form-control-static {
    display: inline-block;
  }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .navbar-form .input-group .input-group-addon, .navbar-form .input-group .input-group-btn, .navbar-form .input-group .form-control {
    width: auto;
  }
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio, .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio label, .navbar-form .checkbox label {
    padding-left: 0;
  }
  .navbar-form .radio input[type=radio], .navbar-form .checkbox input[type=checkbox] {
    position: relative;
    margin-left: 0;
  }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}

@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}

.navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px;
}

.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}

.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px;
  }
}

@media (min-width: 768px) {
  .navbar-left {
    float: left !important;
  }
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}

.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}

.navbar-default .navbar-brand {
  color: #777;
}

.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}

.navbar-default .navbar-text {
  color: #777;
}

.navbar-default .navbar-nav > li > a {
  color: #777;
}

.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}

.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}

.navbar-default .navbar-toggle {
  border-color: #ddd;
}

.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}

.navbar-default .navbar-collapse, .navbar-default .navbar-form {
  border-color: #e7e7e7;
}

.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  color: #555;
  background-color: #e7e7e7;
}

@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}

.navbar-default .navbar-link {
  color: #777;
}

.navbar-default .navbar-link:hover {
  color: #333;
}

.navbar-default .btn-link {
  color: #777;
}

.navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
  color: #333;
}

.navbar-default .btn-link[disabled]:hover, fieldset[disabled] .navbar-default .btn-link:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}

.navbar-inverse {
  background-color: #222;
  border-color: #080808;
}

.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}

.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}

.navbar-inverse .navbar-text {
  color: #9d9d9d;
}

.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}

.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}

.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #080808;
}

.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}

.navbar-inverse .navbar-toggle {
  border-color: #333;
}

.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}

.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}

.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
  border-color: #101010;
}

.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
  color: #fff;
  background-color: #080808;
}

@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}

.navbar-inverse .navbar-link {
  color: #9d9d9d;
}

.navbar-inverse .navbar-link:hover {
  color: #fff;
}

.navbar-inverse .btn-link {
  color: #9d9d9d;
}

.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
  color: #fff;
}

.navbar-inverse .btn-link[disabled]:hover, fieldset[disabled] .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}

.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}

.breadcrumb > li {
  display: inline-block;
}

.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/\00a0";
}

.breadcrumb > .active {
  color: #777;
}

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}

.pagination > li {
  display: inline;
}

.pagination > li > a, .pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}

.pagination > li:first-child > a, .pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.pagination > li:last-child > a, .pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
  color: #23527c;
  background-color: #eee;
  border-color: #ddd;
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
  z-index: 2;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}

.pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}

.pagination-lg > li > a, .pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
}

.pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.pagination-sm > li > a, .pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
}

.pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}

.pager li {
  display: inline;
}

.pager li > a, .pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}

.pager li > a:hover, .pager li > a:focus {
  text-decoration: none;
  background-color: #eee;
}

.pager .next > a, .pager .next > span {
  float: right;
}

.pager .previous > a, .pager .previous > span {
  float: left;
}

.pager .disabled > a, .pager .disabled > a:hover, .pager .disabled > a:focus, .pager .disabled > span {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
}

.label {
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}

a.label:hover, a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.label:empty {
  display: none;
}

.btn .label {
  position: relative;
  top: -1px;
}

.label-default {
  background-color: #777;
}

.label-default[href]:hover, .label-default[href]:focus {
  background-color: #5e5e5e;
}

.label-primary {
  background-color: #337ab7;
}

.label-primary[href]:hover, .label-primary[href]:focus {
  background-color: #286090;
}

.label-success {
  background-color: #5cb85c;
}

.label-success[href]:hover, .label-success[href]:focus {
  background-color: #449d44;
}

.label-info {
  background-color: #5bc0de;
}

.label-info[href]:hover, .label-info[href]:focus {
  background-color: #31b0d5;
}

.label-warning {
  background-color: #f0ad4e;
}

.label-warning[href]:hover, .label-warning[href]:focus {
  background-color: #ec971f;
}

.label-danger {
  background-color: #d9534f;
}

.label-danger[href]:hover, .label-danger[href]:focus {
  background-color: #c9302c;
}

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  background-color: #777;
  border-radius: 10px;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.btn-xs .badge {
  top: 0;
  padding: 1px 5px;
}

a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
  color: #337ab7;
  background-color: #fff;
}

.list-group-item > .badge {
  float: right;
}

.list-group-item > .badge + .badge {
  margin-right: 5px;
}

.nav-pills > li > a > .badge {
  margin-left: 3px;
}

.jumbotron {
  padding: 30px 15px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eee;
}

.jumbotron h1, .jumbotron .h1 {
  color: inherit;
}

.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}

.jumbotron > hr {
  border-top-color: #d5d5d5;
}

.container .jumbotron, .container-fluid .jumbotron {
  border-radius: 6px;
}

.jumbotron .container {
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .jumbotron {
    padding: 48px 0;
  }
  .container .jumbotron, .container-fluid .jumbotron {
    padding-right: 60px;
    padding-left: 60px;
  }
  .jumbotron h1, .jumbotron .h1 {
    font-size: 63px;
  }
}

.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}

.thumbnail > img, .thumbnail a > img {
  margin-right: auto;
  margin-left: auto;
}

a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active {
  border-color: #337ab7;
}

.thumbnail .caption {
  padding: 9px;
  color: #333;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert h4 {
  margin-top: 0;
  color: inherit;
}

.alert .alert-link {
  font-weight: 700;
}

.alert > p, .alert > ul {
  margin-bottom: 0;
}

.alert > p + p {
  margin-top: 5px;
}

.alert-dismissable, .alert-dismissible {
  padding-right: 35px;
}

.alert-dismissable .close, .alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.alert-success hr {
  border-top-color: #c9e2b3;
}

.alert-success .alert-link {
  color: #2b542c;
}

.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

.alert-info hr {
  border-top-color: #a6e1ec;
}

.alert-info .alert-link {
  color: #245269;
}

.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

.alert-warning hr {
  border-top-color: #f7e1b5;
}

.alert-warning .alert-link {
  color: #66512c;
}

.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

.alert-danger hr {
  border-top-color: #e4b9c0;
}

.alert-danger .alert-link {
  color: #843534;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}

@-o-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}

.progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}

.progress-striped .progress-bar, .progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  -webkit-background-size: 40px 40px;
  background-size: 40px 40px;
}

.progress.active .progress-bar, .progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}

.progress-bar-success {
  background-color: #5cb85c;
}

.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-info {
  background-color: #5bc0de;
}

.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-warning {
  background-color: #f0ad4e;
}

.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-danger {
  background-color: #d9534f;
}

.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.media {
  margin-top: 15px;
}

.media:first-child {
  margin-top: 0;
}

.media-right, .media > .pull-right {
  padding-left: 10px;
}

.media-left, .media > .pull-left {
  padding-right: 10px;
}

.media-left, .media-right, .media-body {
  display: table-cell;
  vertical-align: top;
}

.media-middle {
  vertical-align: middle;
}

.media-bottom {
  vertical-align: bottom;
}

.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

.media-list {
  padding-left: 0;
  list-style: none;
}

.list-group {
  padding-left: 0;
  margin-bottom: 20px;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}

.list-group-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

a.list-group-item {
  color: #555;
}

a.list-group-item .list-group-item-heading {
  color: #333;
}

a.list-group-item:hover, a.list-group-item:focus {
  color: #555;
  text-decoration: none;
  background-color: #f5f5f5;
}

.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
  color: #777;
  cursor: not-allowed;
  background-color: #eee;
}

.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}

.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
  color: #777;
}

.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}

.list-group-item.active .list-group-item-heading, .list-group-item.active:hover .list-group-item-heading, .list-group-item.active:focus .list-group-item-heading, .list-group-item.active .list-group-item-heading > small, .list-group-item.active:hover .list-group-item-heading > small, .list-group-item.active:focus .list-group-item-heading > small, .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}

.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
  color: #c7ddef;
}

.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}

a.list-group-item-success {
  color: #3c763d;
}

a.list-group-item-success .list-group-item-heading {
  color: inherit;
}

a.list-group-item-success:hover, a.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}

a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}

.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}

a.list-group-item-info {
  color: #31708f;
}

a.list-group-item-info .list-group-item-heading {
  color: inherit;
}

a.list-group-item-info:hover, a.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}

a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}

.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}

a.list-group-item-warning {
  color: #8a6d3b;
}

a.list-group-item-warning .list-group-item-heading {
  color: inherit;
}

a.list-group-item-warning:hover, a.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}

a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}

.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}

a.list-group-item-danger {
  color: #a94442;
}

a.list-group-item-danger .list-group-item-heading {
  color: inherit;
}

a.list-group-item-danger:hover, a.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}

a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}

.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}

.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-body {
  padding: 15px;
}

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}

.panel-title > a {
  color: inherit;
}

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel > .list-group, .panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}

.panel > .list-group .list-group-item, .panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}

.panel > .list-group:first-child .list-group-item:first-child, .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.panel > .list-group:last-child .list-group-item:last-child, .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

.list-group + .panel-footer {
  border-top-width: 0;
}

.panel > .table, .panel > .table-responsive > .table, .panel > .panel-collapse > .table {
  margin-bottom: 0;
}

.panel > .table caption, .panel > .table-responsive > .table caption, .panel > .panel-collapse > .table caption {
  padding-right: 15px;
  padding-left: 15px;
}

.panel > .table:first-child, .panel > .table-responsive:first-child > .table:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.panel > .table:first-child > thead:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}

.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}

.panel > .table:last-child, .panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}

.panel > .panel-body + .table, .panel > .panel-body + .table-responsive, .panel > .table + .panel-body, .panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}

.panel > .table > tbody:first-child > tr:first-child th, .panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}

.panel > .table-bordered, .panel > .table-responsive > .table-bordered {
  border: 0;
}

.panel > .table-bordered > thead > tr > th:first-child, .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, .panel > .table-bordered > tbody > tr > th:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .panel > .table-bordered > tfoot > tr > th:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .panel > .table-bordered > thead > tr > td:first-child, .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .panel > .table-bordered > tbody > tr > td:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .panel > .table-bordered > tfoot > tr > td:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}

.panel > .table-bordered > thead > tr > th:last-child, .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, .panel > .table-bordered > tbody > tr > th:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .panel > .table-bordered > tfoot > tr > th:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .panel > .table-bordered > thead > tr > td:last-child, .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .panel > .table-bordered > tbody > tr > td:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .panel > .table-bordered > tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}

.panel > .table-bordered > thead > tr:first-child > td, .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .panel > .table-bordered > tbody > tr:first-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .panel > .table-bordered > thead > tr:first-child > th, .panel > .table-responsive > .table-bordered > thead > tr:first-child > th, .panel > .table-bordered > tbody > tr:first-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}

.panel > .table-bordered > tbody > tr:last-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .panel > .table-bordered > tfoot > tr:last-child > td, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .panel > .table-bordered > tbody > tr:last-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .panel > .table-bordered > tfoot > tr:last-child > th, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}

.panel > .table-responsive {
  margin-bottom: 0;
  border: 0;
}

.panel-group {
  margin-bottom: 20px;
}

.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}

.panel-group .panel + .panel {
  margin-top: 5px;
}

.panel-group .panel-heading {
  border-bottom: 0;
}

.panel-group .panel-heading + .panel-collapse > .panel-body, .panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}

.panel-group .panel-footer {
  border-top: 0;
}

.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}

.panel-default {
  border-color: #ddd;
}

.panel-default > .panel-heading {
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd;
}

.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}

.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333;
}

.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}

.panel-primary {
  border-color: #337ab7;
}

.panel-primary > .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}

.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}

.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff;
}

.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}

.panel-success {
  border-color: #d6e9c6;
}

.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}

.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}

.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}

.panel-info {
  border-color: #bce8f1;
}

.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}

.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}

.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}

.panel-warning {
  border-color: #faebcc;
}

.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}

.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}

.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}

.panel-danger {
  border-color: #ebccd1;
}

.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}

.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}

.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object, .embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

.embed-responsive.embed-responsive-4by3 {
  padding-bottom: 75%;
}

.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;
}

.close {
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2;
}

.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: .5;
}

button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: 0;
  border: 0;
}

.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
}

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}

.modal-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background-color: #000;
}

.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}

.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .5;
}

.modal-header {
  min-height: 16.43px;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.42857143;
}

.modal-body {
  position: relative;
  padding: 15px;
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  visibility: visible;
  filter: alpha(opacity=0);
  opacity: 0;
}

.tooltip.in {
  filter: alpha(opacity=90);
  opacity: .9;
}

.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}

.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}

.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}

.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #000;
  border-radius: 4px;
}

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}

.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: left;
  white-space: normal;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.popover.top {
  margin-top: -10px;
}

.popover.right {
  margin-left: 10px;
}

.popover.bottom {
  margin-top: 10px;
}

.popover.left {
  margin-left: -10px;
}

.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}

.popover-content {
  padding: 9px 14px;
}

.popover > .arrow, .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.popover > .arrow {
  border-width: 11px;
}

.popover > .arrow:after {
  content: "";
  border-width: 10px;
}

.popover.top > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0;
}

.popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}

.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999;
  border-right-color: rgba(0, 0, 0, 0.25);
  border-left-width: 0;
}

.popover.right > .arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0;
}

.popover.bottom > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

.popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}

.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.popover.left > .arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff;
}

.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: .6s ease-in-out left;
  -o-transition: .6s ease-in-out left;
  transition: .6s ease-in-out left;
}

.carousel-inner > .item > img, .carousel-inner > .item > a > img {
  line-height: 1;
}

@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    -o-transition: -o-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
  }
  .carousel-inner > .item.next, .carousel-inner > .item.active.right {
    left: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev {
  display: block;
}

.carousel-inner > .active {
  left: 0;
}

.carousel-inner > .next, .carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}

.carousel-inner > .next {
  left: 100%;
}

.carousel-inner > .prev {
  left: -100%;
}

.carousel-inner > .next.left, .carousel-inner > .prev.right {
  left: 0;
}

.carousel-inner > .active.left {
  left: -100%;
}

.carousel-inner > .active.right {
  left: 100%;
}

.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  filter: alpha(opacity=50);
  opacity: .5;
}

.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000',endColorstr='#00000000',GradientType=1);
  background-repeat: repeat-x;
}

.carousel-control.right {
  right: 0;
  left: auto;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#80000000',GradientType=1);
  background-repeat: repeat-x;
}

.carousel-control:hover, .carousel-control:focus {
  color: #fff;
  text-decoration: none;
  filter: alpha(opacity=90);
  outline: 0;
  opacity: .9;
}

.carousel-control .icon-prev, .carousel-control .icon-next, .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
}

.carousel-control .icon-prev, .carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}

.carousel-control .icon-next, .carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}

.carousel-control .icon-prev, .carousel-control .icon-next {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  font-family: serif;
}

.carousel-control .icon-prev:before {
  content: '\2039';
}

.carousel-control .icon-next:before {
  content: '\203a';
}

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}

.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 10px;
}

.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.carousel-caption .btn {
  text-shadow: none;
}

@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {
    margin-left: -15px;
  }
  .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next {
    margin-right: -15px;
  }
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}

.clearfix:before, .clearfix:after, .dl-horizontal dd:before, .dl-horizontal dd:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after, .form-horizontal .form-group:before, .form-horizontal .form-group:after, .btn-toolbar:before, .btn-toolbar:after, .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after, .nav:before, .nav:after, .navbar:before, .navbar:after, .navbar-header:before, .navbar-header:after, .navbar-collapse:before, .navbar-collapse:after, .pager:before, .pager:after, .panel-body:before, .panel-body:after, .modal-footer:before, .modal-footer:after {
  display: table;
  content: " ";
}

.clearfix:after, .dl-horizontal dd:after, .container:after, .container-fluid:after, .row:after, .form-horizontal .form-group:after, .btn-toolbar:after, .btn-group-vertical > .btn-group:after, .nav:after, .navbar:after, .navbar-header:after, .navbar-collapse:after, .pager:after, .panel-body:after, .modal-footer:after {
  clear: both;
}

.center-block {
  display: block;
  margin-right: auto;
  margin-left: 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, .visible-sm, .visible-md, .visible-lg {
  display: none !important;
}

.visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs, td.visible-xs {
    display: table-cell !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm, td.visible-sm {
    display: table-cell !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md, td.visible-md {
    display: table-cell !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg, td.visible-lg {
    display: table-cell !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}

.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print, td.visible-print {
    display: table-cell !important;
  }
}

.visible-print-block {
  display: none !important;
}

@media print {
  .visible-print-block {
    display: block !important;
  }
}

.visible-print-inline {
  display: none !important;
}

@media print {
  .visible-print-inline {
    display: inline !important;
  }
}

.visible-print-inline-block {
  display: none !important;
}

@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  .hidden-print {
    display: none !important;
  }
}

/*!
 * Jasny Bootstrap v3.1.3 (http://jasny.github.io/bootstrap)
 * Copyright 2012-2014 Arnold Daniels
 * Licensed under Apache-2.0 (https://github.com/jasny/bootstrap/blob/master/LICENSE)
 */
.container-smooth {
  max-width: 1170px;
}

@media (min-width: 1px) {
  .container-smooth {
    width: auto;
  }
}

.btn-labeled {
  padding-top: 0;
  padding-bottom: 0;
}

.btn-label {
  position: relative;
  background: 0;
  background: rgba(0, 0, 0, 0.15);
  display: inline-block;
  padding: 6px 12px;
  left: -12px;
  border-radius: 3px 0 0 3px;
}

.btn-label.btn-label-right {
  left: auto;
  right: -12px;
  border-radius: 0 3px 3px 0;
}

.btn-lg .btn-label {
  padding: 10px 16px;
  left: -16px;
  border-radius: 5px 0 0 5px;
}

.btn-lg .btn-label.btn-label-right {
  left: auto;
  right: -16px;
  border-radius: 0 5px 5px 0;
}

.btn-sm .btn-label {
  padding: 5px 10px;
  left: -10px;
  border-radius: 2px 0 0 2px;
}

.btn-sm .btn-label.btn-label-right {
  left: auto;
  right: -10px;
  border-radius: 0 2px 2px 0;
}

.btn-xs .btn-label {
  padding: 1px 5px;
  left: -5px;
  border-radius: 2px 0 0 2px;
}

.btn-xs .btn-label.btn-label-right {
  left: auto;
  right: -5px;
  border-radius: 0 2px 2px 0;
}

.nav-tabs-bottom {
  border-bottom: 0;
  border-top: 1px solid #ddd;
}

.nav-tabs-bottom > li {
  margin-bottom: 0;
  margin-top: -1px;
}

.nav-tabs-bottom > li > a {
  border-radius: 0 0 4px 4px;
}

.nav-tabs-bottom > li > a:hover, .nav-tabs-bottom > li > a:focus, .nav-tabs-bottom > li.active > a, .nav-tabs-bottom > li.active > a:hover, .nav-tabs-bottom > li.active > a:focus {
  border: 1px solid #ddd;
  border-top-color: transparent;
}

.nav-tabs-left {
  border-bottom: 0;
  border-right: 1px solid #ddd;
}

.nav-tabs-left > li {
  margin-bottom: 0;
  margin-right: -1px;
  float: none;
}

.nav-tabs-left > li > a {
  border-radius: 4px 0 0 4px;
  margin-right: 0;
  margin-bottom: 2px;
}

.nav-tabs-left > li > a:hover, .nav-tabs-left > li > a:focus, .nav-tabs-left > li.active > a, .nav-tabs-left > li.active > a:hover, .nav-tabs-left > li.active > a:focus {
  border: 1px solid #ddd;
  border-right-color: transparent;
}

.row > .nav-tabs-left {
  padding-right: 0;
  padding-left: 15px;
  margin-right: -1px;
  position: relative;
  z-index: 1;
}

.row > .nav-tabs-left + .tab-content {
  border-left: 1px solid #ddd;
}

.nav-tabs-right {
  border-bottom: 0;
  border-left: 1px solid #ddd;
}

.nav-tabs-right > li {
  margin-bottom: 0;
  margin-left: -1px;
  float: none;
}

.nav-tabs-right > li > a {
  border-radius: 0 4px 4px 0;
  margin-left: 0;
  margin-bottom: 2px;
}

.nav-tabs-right > li > a:hover, .nav-tabs-right > li > a:focus, .nav-tabs-right > li.active > a, .nav-tabs-right > li.active > a:hover, .nav-tabs-right > li.active > a:focus {
  border: 1px solid #ddd;
  border-left-color: transparent;
}

.row > .nav-tabs-right {
  padding-left: 0;
  padding-right: 15px;
}

.navmenu, .navbar-offcanvas {
  width: 300px;
  height: auto;
  border-width: 1px;
  border-style: solid;
  border-radius: 4px;
}

.navmenu-fixed-left, .navmenu-fixed-right, .navbar-offcanvas {
  position: fixed;
  z-index: 1030;
  top: 0;
  bottom: 0;
  overflow-y: auto;
  border-radius: 0;
}

.navmenu-fixed-left, .navbar-offcanvas.navmenu-fixed-left {
  left: 0;
  right: auto;
  border-width: 0 1px 0 0;
}

.navmenu-fixed-right, .navbar-offcanvas {
  left: auto;
  right: 0;
  border-width: 0 0 0 1px;
}

.navmenu-nav {
  margin-bottom: 10px;
}

.navmenu-nav.dropdown-menu {
  position: static;
  margin: 0;
  padding-top: 0;
  float: none;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
}

.navbar-offcanvas .navbar-nav {
  margin: 0;
}

@media (min-width: 768px) {
  .navbar-offcanvas {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  .navbar-offcanvas.offcanvas {
    position: static;
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-offcanvas .navbar-nav.navbar-left:first-child {
    margin-left: -15px;
  }
  .navbar-offcanvas .navbar-nav.navbar-right:last-child {
    margin-right: -15px;
  }
  .navbar-offcanvas .navmenu-brand {
    display: none;
  }
}

.navmenu-brand {
  display: block;
  font-size: 18px;
  line-height: 20px;
  padding: 10px 15px;
  margin: 10px 0;
}

.navmenu-brand:hover, .navmenu-brand:focus {
  text-decoration: none;
}

.navmenu-default, .navbar-default .navbar-offcanvas {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}

.navmenu-default .navmenu-brand, .navbar-default .navbar-offcanvas .navmenu-brand {
  color: #777;
}

.navmenu-default .navmenu-brand:hover, .navbar-default .navbar-offcanvas .navmenu-brand:hover, .navmenu-default .navmenu-brand:focus, .navbar-default .navbar-offcanvas .navmenu-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}

.navmenu-default .navmenu-text, .navbar-default .navbar-offcanvas .navmenu-text {
  color: #777;
}

.navmenu-default .navmenu-nav > .dropdown > a:hover .caret, .navbar-default .navbar-offcanvas .navmenu-nav > .dropdown > a:hover .caret, .navmenu-default .navmenu-nav > .dropdown > a:focus .caret, .navbar-default .navbar-offcanvas .navmenu-nav > .dropdown > a:focus .caret {
  border-top-color: #333;
  border-bottom-color: #333;
}

.navmenu-default .navmenu-nav > .open > a, .navbar-default .navbar-offcanvas .navmenu-nav > .open > a, .navmenu-default .navmenu-nav > .open > a:hover, .navbar-default .navbar-offcanvas .navmenu-nav > .open > a:hover, .navmenu-default .navmenu-nav > .open > a:focus, .navbar-default .navbar-offcanvas .navmenu-nav > .open > a:focus {
  background-color: #e7e7e7;
  color: #555;
}

.navmenu-default .navmenu-nav > .open > a .caret, .navbar-default .navbar-offcanvas .navmenu-nav > .open > a .caret, .navmenu-default .navmenu-nav > .open > a:hover .caret, .navbar-default .navbar-offcanvas .navmenu-nav > .open > a:hover .caret, .navmenu-default .navmenu-nav > .open > a:focus .caret, .navbar-default .navbar-offcanvas .navmenu-nav > .open > a:focus .caret {
  border-top-color: #555;
  border-bottom-color: #555;
}

.navmenu-default .navmenu-nav > .dropdown > a .caret, .navbar-default .navbar-offcanvas .navmenu-nav > .dropdown > a .caret {
  border-top-color: #777;
  border-bottom-color: #777;
}

.navmenu-default .navmenu-nav.dropdown-menu, .navbar-default .navbar-offcanvas .navmenu-nav.dropdown-menu {
  background-color: #e7e7e7;
}

.navmenu-default .navmenu-nav.dropdown-menu > .divider, .navbar-default .navbar-offcanvas .navmenu-nav.dropdown-menu > .divider {
  background-color: #f8f8f8;
}

.navmenu-default .navmenu-nav.dropdown-menu > .active > a, .navbar-default .navbar-offcanvas .navmenu-nav.dropdown-menu > .active > a, .navmenu-default .navmenu-nav.dropdown-menu > .active > a:hover, .navbar-default .navbar-offcanvas .navmenu-nav.dropdown-menu > .active > a:hover, .navmenu-default .navmenu-nav.dropdown-menu > .active > a:focus, .navbar-default .navbar-offcanvas .navmenu-nav.dropdown-menu > .active > a:focus {
  background-color: #d7d7d7;
}

.navmenu-default .navmenu-nav > li > a, .navbar-default .navbar-offcanvas .navmenu-nav > li > a {
  color: #777;
}

.navmenu-default .navmenu-nav > li > a:hover, .navbar-default .navbar-offcanvas .navmenu-nav > li > a:hover, .navmenu-default .navmenu-nav > li > a:focus, .navbar-default .navbar-offcanvas .navmenu-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}

.navmenu-default .navmenu-nav > .active > a, .navbar-default .navbar-offcanvas .navmenu-nav > .active > a, .navmenu-default .navmenu-nav > .active > a:hover, .navbar-default .navbar-offcanvas .navmenu-nav > .active > a:hover, .navmenu-default .navmenu-nav > .active > a:focus, .navbar-default .navbar-offcanvas .navmenu-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}

.navmenu-default .navmenu-nav > .disabled > a, .navbar-default .navbar-offcanvas .navmenu-nav > .disabled > a, .navmenu-default .navmenu-nav > .disabled > a:hover, .navbar-default .navbar-offcanvas .navmenu-nav > .disabled > a:hover, .navmenu-default .navmenu-nav > .disabled > a:focus, .navbar-default .navbar-offcanvas .navmenu-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}

.navmenu-inverse, .navbar-inverse .navbar-offcanvas {
  background-color: #222;
  border-color: #080808;
}

.navmenu-inverse .navmenu-brand, .navbar-inverse .navbar-offcanvas .navmenu-brand {
  color: #999;
}

.navmenu-inverse .navmenu-brand:hover, .navbar-inverse .navbar-offcanvas .navmenu-brand:hover, .navmenu-inverse .navmenu-brand:focus, .navbar-inverse .navbar-offcanvas .navmenu-brand:focus {
  color: #fff;
  background-color: transparent;
}

.navmenu-inverse .navmenu-text, .navbar-inverse .navbar-offcanvas .navmenu-text {
  color: #999;
}

.navmenu-inverse .navmenu-nav > .dropdown > a:hover .caret, .navbar-inverse .navbar-offcanvas .navmenu-nav > .dropdown > a:hover .caret, .navmenu-inverse .navmenu-nav > .dropdown > a:focus .caret, .navbar-inverse .navbar-offcanvas .navmenu-nav > .dropdown > a:focus .caret {
  border-top-color: #fff;
  border-bottom-color: #fff;
}

.navmenu-inverse .navmenu-nav > .open > a, .navbar-inverse .navbar-offcanvas .navmenu-nav > .open > a, .navmenu-inverse .navmenu-nav > .open > a:hover, .navbar-inverse .navbar-offcanvas .navmenu-nav > .open > a:hover, .navmenu-inverse .navmenu-nav > .open > a:focus, .navbar-inverse .navbar-offcanvas .navmenu-nav > .open > a:focus {
  background-color: #080808;
  color: #fff;
}

.navmenu-inverse .navmenu-nav > .open > a .caret, .navbar-inverse .navbar-offcanvas .navmenu-nav > .open > a .caret, .navmenu-inverse .navmenu-nav > .open > a:hover .caret, .navbar-inverse .navbar-offcanvas .navmenu-nav > .open > a:hover .caret, .navmenu-inverse .navmenu-nav > .open > a:focus .caret, .navbar-inverse .navbar-offcanvas .navmenu-nav > .open > a:focus .caret {
  border-top-color: #fff;
  border-bottom-color: #fff;
}

.navmenu-inverse .navmenu-nav > .dropdown > a .caret, .navbar-inverse .navbar-offcanvas .navmenu-nav > .dropdown > a .caret {
  border-top-color: #999;
  border-bottom-color: #999;
}

.navmenu-inverse .navmenu-nav.dropdown-menu, .navbar-inverse .navbar-offcanvas .navmenu-nav.dropdown-menu {
  background-color: #080808;
}

.navmenu-inverse .navmenu-nav.dropdown-menu > .divider, .navbar-inverse .navbar-offcanvas .navmenu-nav.dropdown-menu > .divider {
  background-color: #222;
}

.navmenu-inverse .navmenu-nav.dropdown-menu > .active > a, .navbar-inverse .navbar-offcanvas .navmenu-nav.dropdown-menu > .active > a, .navmenu-inverse .navmenu-nav.dropdown-menu > .active > a:hover, .navbar-inverse .navbar-offcanvas .navmenu-nav.dropdown-menu > .active > a:hover, .navmenu-inverse .navmenu-nav.dropdown-menu > .active > a:focus, .navbar-inverse .navbar-offcanvas .navmenu-nav.dropdown-menu > .active > a:focus {
  background-color: #000;
}

.navmenu-inverse .navmenu-nav > li > a, .navbar-inverse .navbar-offcanvas .navmenu-nav > li > a {
  color: #999;
}

.navmenu-inverse .navmenu-nav > li > a:hover, .navbar-inverse .navbar-offcanvas .navmenu-nav > li > a:hover, .navmenu-inverse .navmenu-nav > li > a:focus, .navbar-inverse .navbar-offcanvas .navmenu-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}

.navmenu-inverse .navmenu-nav > .active > a, .navbar-inverse .navbar-offcanvas .navmenu-nav > .active > a, .navmenu-inverse .navmenu-nav > .active > a:hover, .navbar-inverse .navbar-offcanvas .navmenu-nav > .active > a:hover, .navmenu-inverse .navmenu-nav > .active > a:focus, .navbar-inverse .navbar-offcanvas .navmenu-nav > .active > a:focus {
  color: #fff;
  background-color: #080808;
}

.navmenu-inverse .navmenu-nav > .disabled > a, .navbar-inverse .navbar-offcanvas .navmenu-nav > .disabled > a, .navmenu-inverse .navmenu-nav > .disabled > a:hover, .navbar-inverse .navbar-offcanvas .navmenu-nav > .disabled > a:hover, .navmenu-inverse .navmenu-nav > .disabled > a:focus, .navbar-inverse .navbar-offcanvas .navmenu-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}

.alert-fixed-top, .alert-fixed-bottom {
  position: fixed;
  width: 100%;
  z-index: 1035;
  border-radius: 0;
  margin: 0;
  left: 0;
}

@media (min-width: 992px) {
  .alert-fixed-top, .alert-fixed-bottom {
    width: 992px;
    left: 50%;
    margin-left: -496px;
  }
}

.alert-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}

@media (min-width: 992px) {
  .alert-fixed-top {
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-width: 0 1px 1px;
  }
}

.alert-fixed-bottom {
  bottom: 0;
  border-width: 1px 0 0;
}

@media (min-width: 992px) {
  .alert-fixed-bottom {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border-width: 1px 1px 0;
  }
}

.offcanvas {
  display: none;
}

.offcanvas.in {
  display: block;
}

@media (max-width: 767px) {
  .offcanvas-xs {
    display: none;
  }
  .offcanvas-xs.in {
    display: block;
  }
}

@media (max-width: 991px) {
  .offcanvas-sm {
    display: none;
  }
  .offcanvas-sm.in {
    display: block;
  }
}

@media (max-width: 1199px) {
  .offcanvas-md {
    display: none;
  }
  .offcanvas-md.in {
    display: block;
  }
}

.offcanvas-lg {
  display: none;
}

.offcanvas-lg.in {
  display: block;
}

.canvas-sliding {
  -webkit-transition: top 0.35s, left 0.35s, bottom 0.35s, right 0.35s;
  transition: top 0.35s, left 0.35s, bottom 0.35s, right 0.35s;
}

.offcanvas-clone {
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  position: absolute !important;
  top: auto !important;
  left: auto !important;
  bottom: 0 !important;
  right: 0 !important;
  opacity: 0 !important;
}

.table.rowlink td:not(.rowlink-skip), .table .rowlink td:not(.rowlink-skip) {
  cursor: pointer;
}

.table.rowlink td:not(.rowlink-skip) a, .table .rowlink td:not(.rowlink-skip) a {
  color: inherit;
  font: inherit;
  text-decoration: inherit;
}

.table-hover.rowlink tr:hover td, .table-hover .rowlink tr:hover td {
  background-color: #cfcfcf;
}

.btn-file {
  overflow: hidden;
  position: relative;
  vertical-align: middle;
}

.btn-file > input {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  font-size: 23px;
  height: 100%;
  width: 100%;
  direction: ltr;
  cursor: pointer;
}

.fileinput {
  margin-bottom: 9px;
  display: inline-block;
}

.fileinput .form-control {
  padding-top: 7px;
  padding-bottom: 5px;
  display: inline-block;
  margin-bottom: 0;
  vertical-align: middle;
  cursor: text;
}

.fileinput .thumbnail {
  overflow: hidden;
  display: inline-block;
  margin-bottom: 5px;
  vertical-align: middle;
  text-align: center;
}

.fileinput .thumbnail > img {
  max-height: 100%;
}

.fileinput .btn {
  vertical-align: middle;
}

.fileinput-exists .fileinput-new, .fileinput-new .fileinput-exists {
  display: none;
}

.fileinput-inline .fileinput-controls {
  display: inline;
}

.fileinput-filename {
  vertical-align: middle;
  display: inline-block;
  overflow: hidden;
}

.form-control .fileinput-filename {
  vertical-align: bottom;
}

.fileinput.input-group {
  display: table;
}

.fileinput.input-group > * {
  position: relative;
  z-index: 2;
}

.fileinput.input-group > .btn-file {
  z-index: 1;
}

.fileinput-new.input-group .btn-file, .fileinput-new .input-group .btn-file {
  border-radius: 0 4px 4px 0;
}

.fileinput-new.input-group .btn-file.btn-xs, .fileinput-new .input-group .btn-file.btn-xs, .fileinput-new.input-group .btn-file.btn-sm, .fileinput-new .input-group .btn-file.btn-sm {
  border-radius: 0 3px 3px 0;
}

.fileinput-new.input-group .btn-file.btn-lg, .fileinput-new .input-group .btn-file.btn-lg {
  border-radius: 0 6px 6px 0;
}

.form-group.has-warning .fileinput .fileinput-preview {
  color: #8a6d3b;
}

.form-group.has-warning .fileinput .thumbnail {
  border-color: #faebcc;
}

.form-group.has-error .fileinput .fileinput-preview {
  color: #a94442;
}

.form-group.has-error .fileinput .thumbnail {
  border-color: #ebccd1;
}

.form-group.has-success .fileinput .fileinput-preview {
  color: #3c763d;
}

.form-group.has-success .fileinput .thumbnail {
  border-color: #d6e9c6;
}

.input-group-addon:not(:first-child) {
  border-left: 0;
}

.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: 0;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 303px;
  }
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.cugLoginContainer {
  width: 90%;
  max-width: 400px;
  padding: 20px;
  margin: 10% auto;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 4px 18px 3px rgba(0, 0, 0, 0.14);
  font-size: 13px;
}

#loginform, .cugLoginContainer p {
  padding: 0;
  margin: 0;
}

#err {
  color: red;
}

.cugLoginContainer input {
  width: 100% !important;
  padding: 5px;
  margin-bottom: 8px;
  background-color: #ebebeb;
  border: 0;
  border-radius: 2px;
  font-weight: 400;
  font-size: 1em;
  color: #000;
}

.cugLoginContainer button {
  background-color: #e41f35;
  border: 0;
  padding: 5px 20px;
  display: inline-block;
  color: #fff;
  border-radius: 4px;
  margin-top: 10px;
}

.cugLoginContainer .get-credentials {
  margin-top: 18px;
  font-size: 11px;
}

.cugLoginContainer a {
  color: #e41f35;
}

@font-face {
  font-family: 'cardinal';
  src: url("/fonts/cardinal.eot");
  src: url("/fonts/cardinal.eot?#iefix") format("embedded-opentype"), url("/fonts/cardinal.woff") format("woff"), url("/fonts/cardinal.ttf") format("truetype"), url("/fonts/cardinal.svg#archerlight") format("svg");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
}

/*!
 *  Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
  font-family: 'FontAwesome';
  src: url("/fonts/fontawesome/fontawesome-webfont.eot");
  src: url("/fonts/fontawesome/fontawesome-webfont.eot?#iefix") format("embedded-opentype"), url("/fonts/fontawesome/fontawesome-webfont.woff") format("woff"), url("/fonts/fontawesome/fontawesome-webfont.ttf") format("truetype"), url("/fonts/fontawesome/fontawesome-webfont.svg#archerlight") format("svg");
  font-weight: normal;
  font-style: normal;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.fa-lg {
  font-size: 1.33333em;
  line-height: .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.28571em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14286em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14286em;
  width: 2.14286em;
  top: .14286em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  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: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0,mirror=1);
  -webkit-transform: scale(-1, 1);
  -ms-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);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical {
  -webkit-filter: none;
  filter: none;
}

.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: #fff;
}

.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-remove:before, .fa-close:before, .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-photo:before, .fa-image:before, .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, .fa-bar-chart: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-f:before, .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-navicon:before, .fa-reorder:before, .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-desc:before {
  content: "\f0dd";
}

.fa-sort-up:before, .fa-sort-asc: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-mail-reply-all:before, .fa-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, .fa-gratipay: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";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-slack:before {
  content: "\f198";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-institution:before, .fa-bank:before, .fa-university:before {
  content: "\f19c";
}

.fa-mortar-board:before, .fa-graduation-cap:before {
  content: "\f19d";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-pied-piper:before {
  content: "\f1a7";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-spoon:before {
  content: "\f1b1";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-automobile:before, .fa-car:before {
  content: "\f1b9";
}

.fa-cab:before, .fa-taxi:before {
  content: "\f1ba";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-file-pdf-o:before {
  content: "\f1c1";
}

.fa-file-word-o:before {
  content: "\f1c2";
}

.fa-file-excel-o:before {
  content: "\f1c3";
}

.fa-file-powerpoint-o:before {
  content: "\f1c4";
}

.fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before {
  content: "\f1c5";
}

.fa-file-zip-o:before, .fa-file-archive-o:before {
  content: "\f1c6";
}

.fa-file-sound-o:before, .fa-file-audio-o:before {
  content: "\f1c7";
}

.fa-file-movie-o:before, .fa-file-video-o:before {
  content: "\f1c8";
}

.fa-file-code-o:before {
  content: "\f1c9";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-life-bouy:before, .fa-life-buoy:before, .fa-life-saver:before, .fa-support:before, .fa-life-ring:before {
  content: "\f1cd";
}

.fa-circle-o-notch:before {
  content: "\f1ce";
}

.fa-ra:before, .fa-rebel:before {
  content: "\f1d0";
}

.fa-ge:before, .fa-empire:before {
  content: "\f1d1";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-wechat:before, .fa-weixin:before {
  content: "\f1d7";
}

.fa-send:before, .fa-paper-plane:before {
  content: "\f1d8";
}

.fa-send-o:before, .fa-paper-plane-o:before {
  content: "\f1d9";
}

.fa-history:before {
  content: "\f1da";
}

.fa-genderless:before, .fa-circle-thin:before {
  content: "\f1db";
}

.fa-header:before {
  content: "\f1dc";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-sliders:before {
  content: "\f1de";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-soccer-ball-o:before, .fa-futbol-o:before {
  content: "\f1e3";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-newspaper-o:before {
  content: "\f1ea";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bell-slash-o:before {
  content: "\f1f7";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-eyedropper:before {
  content: "\f1fb";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-area-chart:before {
  content: "\f1fe";
}

.fa-pie-chart:before {
  content: "\f200";
}

.fa-line-chart:before {
  content: "\f201";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-bus:before {
  content: "\f207";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-cc:before {
  content: "\f20a";
}

.fa-shekel:before, .fa-sheqel:before, .fa-ils:before {
  content: "\f20b";
}

.fa-meanpath:before {
  content: "\f20c";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-diamond:before {
  content: "\f219";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-venus:before {
  content: "\f221";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-facebook-official:before {
  content: "\f230";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-server:before {
  content: "\f233";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-hotel:before, .fa-bed:before {
  content: "\f236";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-train:before {
  content: "\f238";
}

.fa-subway:before {
  content: "\f239";
}

.fa-medium:before {
  content: "\f23a";
}

body {
  font-size: 16px;
  background-color: #efefef;
}

@media (max-width: 1079px) {
  body {
    font-size: 14px;
  }
}

@media (min-width: 1080px) and (max-width: 1280px) {
  body {
    font-size: 1.25vw;
  }
}

@media (min-width: 1280px) {
  body body {
    font-size: 16px;
  }
}

body h1 {
  font-size: 2em;
}

body h2 {
  font-size: 1.875em;
}

a:visited, a:link, a:active {
  text-decoration: none;
  color: #e41f35;
}

a:hover {
  text-decoration: underline;
  color: #e41f35;
}

.related-products-carousel a:hover, a.icon-product_carousel_L:hover, a.icon-product_carousel_R:hover, a.accordion-toggle:hover, .article-title a:hover, a.play-icon:hover, .collapsible a:hover {
  text-decoration: none;
}

.template {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  background-color: white;
}

body:before {
  display: none !important;
}

@media (min-width: 992px) {
  body:before {
    content: "desktop";
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  body:before {
    content: "tablet";
  }
}

@media (max-width: 767px) {
  body:before {
    content: "mobile";
  }
}

.raquo:after {
  color: #e41f35;
  content: "\0000a0\00BB";
  white-space: nowrap;
}

*::-webkit-input-placeholder {
  color: #555 !important;
}

*:-moz-placeholder {
  color: #555 !important;
}

*::-moz-placeholder {
  color: #555 !important;
}

*:-ms-input-placeholder {
  color: #555 !important;
}

input[type="text"] {
  padding-left: 8px;
}

.default-gutter {
  padding-left: 5.5%;
  padding-right: 5.5%;
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 767px) {
  .default-gutter {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.padding-gutter {
  padding-left: 5.5%;
  padding-right: 5.5%;
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 767px) {
  .padding-gutter {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.main-container-bottom-padding {
  padding-bottom: 60px;
}

@media (max-width: 767px) {
  .main-container-bottom-padding {
    padding-bottom: 30px;
  }
}

.template {
  box-shadow: 1px 6px 20px rgba(0, 0, 0, 0.1), -1px 6px 20px rgba(0, 0, 0, 0.1);
}

.default-bottom-padding {
  padding-bottom: 80px;
}

iframe {
  border-width: 0;
}

input[type="text"]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

.xs-pull-left {
  float: left;
}

.xs-pull-right {
  float: right;
}

@media (min-width: 768px) {
  .sm-pull-left {
    float: left;
  }
  .sm-pull-right {
    float: right;
  }
}

@media (min-width: 992px) {
  .md-pull-left {
    float: left;
  }
  .md-pull-right {
    float: right;
  }
}

@media (min-width: 1200px) {
  .lg-pull-left {
    float: left;
  }
  .lg-pull-right {
    float: right;
  }
}

.footLogo {
  float: left;
  width: 110px;
  height: 90px;
  margin: 5px;
}

.cardinal-logo {
  float: left;
  padding: 17px 0 0 0;
  margin-left: 5.5%;
}

.cardinal-logo a {
  display: block;
}

.cardinal-logo-img {
  height: 73px;
  height: 5.7vw;
  max-height: 73px;
}

@media (max-width: 767px) {
  .cardinal-logo {
    height: 53px;
    padding: 9px 0 13px 0;
  }
  .cardinal-logo-img {
    height: 31px;
  }
}

.input-group-addon {
  padding: 5px;
}

.form-control {
  padding-left: 3px;
}

.row-no-margin {
  margin-left: 0;
  margin-right: 0;
}

.carousel-control {
  text-shadow: none;
}

@media print {
  a[href]:after {
    content: '';
  }
}

.full-width {
  margin-left: -5.5vw;
  margin-right: -5.5vw;
}

@media (min-width: 1280px) {
  .full-width {
    margin-left: -70px;
    margin-right: -71px;
  }
}

@media (max-width: 767px) {
  .full-width {
    margin-left: -25px;
    margin-right: -25px;
  }
}

body.modal-open {
  overflow: visible;
}

@media (min-width: 541px) and (max-width: 767px) {
  .col-xs-ls-6 {
    width: 50%;
  }
}

div[image-fill] {
  overflow: hidden;
  position: relative;
}

div[image-fill] > img {
  position: absolute;
  top: -9999px;
  bottom: -9999px;
  left: -9999px;
  right: -9999px;
  margin: auto;
}

div[image-fill][image-right] > img {
  left: auto;
  right: 0;
}

.search {
  margin-top: 30px;
  position: relative;
  width: 100%;
  min-width: 200px;
  max-width: 600px;
  display: inline-block;
  float: right;
  background-color: #ebebeb;
  border-radius: 4px;
}

div.page-title-desktop ~ div.search {
  margin-top: 0;
}

@media (min-width: 768px) {
  .home .searchModel {
    float: right;
    width: 41.6%;
    margin-right: 0;
    max-width: 600px;
  }
  .searchModel {
    float: right;
    width: 41.6%;
    margin-right: 3.2%;
    max-width: 600px;
  }
  .searchModelLogin {
    float: right;
    width: 41.6%;
    margin-top: 13px;
    margin-right: 20px;
    max-width: 300px;
  }
  .home .searchModelLogin {
    float: right;
    width: 41.6%;
    margin-right: 20px;
    max-width: 300px;
  }
}

.page-title-mobile {
  padding: 10px 5.5%;
  margin: 0;
  display: block;
  z-index: 0;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  font-size: 1.5em;
  text-align: left;
  overflow: hidden;
}

@media (min-width: 768px) {
  .page-title-mobile {
    display: none;
  }
}

.search-filter {
  visibility: hidden;
}

.search .input-group {
  padding-top: 4px;
  padding-bottom: 4px;
}

.home .search {
  margin-right: 20px;
}

.search .sign-in-drop-close > a {
  font-size: 50px;
  font-weight: 100;
  color: #5d5d5d;
}

.search > .input-group > .insearch.search-icon {
  position: absolute;
  left: 0;
  padding-left: 5px;
  top: .5px;
  height: 26px;
  float: left;
  width: 26px;
  padding-top: 0;
  margin-bottom: 0;
  background-color: #ebebeb;
  z-index: 7;
}

.search > .input-group > .insearch.search-icon:before {
  height: 30px;
  font-family: cardinal;
  content: "\e618";
  color: #e41f35;
  font-weight: lighter;
  font-size: 26px;
  vertical-align: text-top;
  display: block;
}

.search-box {
  padding-right: 40px;
  padding-left: 35px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  position: relative;
  width: 100% !important;
  float: left;
  height: 29px;
  display: table-cell !important;
  font-size: 20px;
  background-color: #ebebeb;
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
  border: 0;
}

.input-group .close_search {
  position: absolute;
  z-index: 20;
  right: 20px;
  top: -21px;
  display: none;
}

.close_search.-drop-close {
  font-family: cardinal;
  display: block;
}

.close_search.search-drop-close a:before {
  font-weight: 100;
  color: #5d5d5d;
  font-family: cardinal;
  content: "\e60e";
}

#ie8-search-icon {
  display: none;
}

.search-box:focus {
  outline-style: none;
}

.input-group {
  width: 100%;
  float: right;
}

.input-group:focus {
  outline-style: none;
}

.input-group ul {
  list-style-type: none;
  color: black;
  padding: 0;
}

.submenu-content div {
  padding: 0;
}

.search_results_list a {
  color: black;
  font-size: 1.95vw;
}

.search_results_list a:hover {
  color: #e00;
  font-size: 1.95vw;
  text-decoration: none;
}

.go-icon:after {
  content: "\0000a0\00bb";
  font-size: 1.41vw;
  color: #e41f35;
}

.submenu-content a {
  color: black;
}

.submenu-content a:hover {
  color: #e41f35;
  text-decoration: none;
}

.submenu-content ul {
  margin-bottom: 2.34vw;
}

div.divider {
  border-top: 1px solid #ccc;
}

.wrap.search_popup {
  background-color: #ebebeb;
  width: 100%;
  position: absolute;
  top: 95%;
  left: 0;
  z-index: 8995;
  padding-top: 1.56vw;
  display: none;
}

.search_popup h4 {
  color: #e41f35;
  padding-left: 1.56vw;
}

.search_popup ul {
  line-height: 120%;
  list-style: none;
  padding: 0;
}

.search_popup li {
  width: 100%;
  padding: 0 1.56vw;
  margin-bottom: 2%;
}

.search_popup a {
  width: 100%;
}

.search-mobile {
  display: none;
}

.search-button {
  color: #e41f35;
  background-color: #ebebeb;
  border: 0;
  top: 0;
  height: 2.81vw;
  min-height: 28px;
}

.form-control {
  box-shadow: none;
}

.form-control:focus {
  box-shadow: none;
}

li a.full_results {
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
  color: black;
  font-weight: bolder;
  font-size: 1.09vw;
  text-decoration: none;
}

a.full_results:hover {
  text-decoration: none;
  color: #e41f35;
  font-size: 1.09vw;
}

.thought_lead {
  font-style: italic;
}

.search_popup ul.thought_lead li {
  margin-bottom: .78vw;
}

.search-popup-mobile {
  display: none;
}

.search-popup-mobile .search_results_list {
  display: none;
}

.corporate-callout {
  padding: 5px 5.5%;
  font-size: 14px;
  background: #f7f7f7;
  position: relative;
}

.corporate-callout a {
  color: #5d5d5d;
  font-weight: 400;
}

.corporate-callout a:hover {
  text-decoration: none;
  color: #e41f35;
}

.corporate-callout .raquo:after {
  color: #e41f35;
}

@media (min-width: 768px) {
  .search-popup-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .search {
    margin-top: 22px;
  }
  div.page-title-desktop ~ div.search {
    margin-top: 0;
  }
  .search .input-group {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .home .search {
    margin-right: 20px;
  }
  .search > .input-group > .insearch.search-icon {
    top: 0;
    border-radius: 5px;
  }
  .search > .input-group > .insearch.search-icon:before {
    font-size: 23px;
  }
  .search-box {
    padding-right: 30px;
    padding-left: 30px !important;
    font-size: 16px;
  }
  .input-group .close_search {
    position: absolute;
    z-index: 7;
    right: 20px;
    top: -21px;
    display: none;
  }
  .close_search.search-drop-close {
    font-family: cardinal;
    display: block;
  }
  .search .sign-in-drop-close > a {
    font-size: 40px;
    font-weight: 100;
    color: #5d5d5d;
  }
  .close_search.sign-in-drop-close {
    font-family: cardinal;
    display: none;
    width: 5%;
    top: -23px;
  }
}

@media (max-width: 767px) {
  .search_popup {
    background-color: #ebebeb;
    width: 250px;
  }
  .search-popup-mobile {
    margin: 53px auto;
    width: 100%;
    background-color: #ebebeb;
    top: 53px;
  }
  .input-group-mobile {
    position: relative;
    display: block;
    width: 100%;
    border-bottom: thin solid lightgrey;
  }
  .input-group-mobile input {
    background-color: #ebebeb;
    border: 0;
    font-size: 1.5em;
    height: 50px;
    width: 100%;
  }
  .input-group-mobile .search-icon {
    font-size: 1.25em;
    margin-top: 2%;
  }
  .form-control {
    box-shadow: none;
  }
  .form-control:focus {
    box-shadow: none;
  }
  .search-popup-mobile span {
    color: #e41f35;
  }
  .search-popup-mobile span.go-icon {
    display: inline-block;
    color: #e41f35;
    padding: 0 5px;
    line-height: 30px;
    font-size: .7em;
  }
  .search {
    display: none;
  }
  .search-icon {
    position: absolute;
    vertical-align: top;
  }
  .search-mobile {
    float: right;
    padding-top: 14px;
    color: #e41f35;
    font-weight: normal;
    display: block;
  }
  .search-mobile .search-icon {
    background-color: transparent;
    height: 100%;
    width: 30px;
    padding: 0;
    top: 9px;
    right: 68px;
  }
  .search-mobile .search-icon:before {
    font-family: cardinal;
    content: "\e618";
    color: #e41f35;
    font-weight: lighter;
    font-size: 30px;
    vertical-align: text-top;
    display: block;
    position: absolute;
  }
  .input-group-mobile .search-icon {
    left: 21px;
    top: -5px;
    position: absolute;
  }
  .input-group-mobile .search-icon:before {
    font-family: cardinal;
    content: "\e618";
    color: #e41f35;
    font-weight: lighter;
    font-size: 30px;
    vertical-align: text-top;
    display: block;
    position: absolute;
  }
  .search-mobile .search-icon img {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: -50%;
    display: none;
  }
  .input-group-mobile .search-icon img {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: -50%;
    display: none;
  }
  .search-popup-mobile > .input-group-mobile > .col-xs-9, .search-popup-mobile > .input-group-mobile > .col-xs-9 > input[type='text'] {
    padding-right: 0;
  }
  .search-popup-mobile > .input-group-mobile > .col-xs-9 > input[type='text']::-ms-clear {
    display: none;
    width: 0;
    height: 0;
  }
  .search-popup-mobile .search-drop-close {
    line-height: 40px;
    position: absolute;
    right: 2%;
    font-family: cardinal;
  }
  .search-mobile a img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .search-popup-mobile .search_results_list {
    font-size: .8em;
    list-style: none;
    padding: 15px 0 15px 40px;
  }
  .close_search {
    font-size: 10px;
    font-family: cardinal;
    content: "\0000a0\e603";
  }
  .search_results_list a {
    font-size: 1.4em;
  }
  .search_results_list a:hover {
    font-size: 1.4em;
  }
  .go-icon:after {
    content: "\0000a0\00bb";
    font-size: 20px;
    line-height: 20px;
    color: #e41f35;
  }
}

.navigation {
  width: 100%;
  padding-top: 7px;
  padding-bottom: 7px;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
  z-index: 8991;
  position: relative;
  margin: 0 auto;
}

@media (min-width: 768px) and (max-width: 1280px) {
  .navigation {
    font-size: 1.25vw;
  }
}

.primary-nav-bar {
  padding-left: 5.5vw;
  padding-right: 5.5vw;
  text-align: justify;
  height: 3em;
}

@media (max-width: 767px) {
  .primary-nav-bar {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (min-width: 1280px) {
  .primary-nav-bar {
    padding-left: 70px;
    padding-right: 71px;
  }
}

.primary-nav-bar:after {
  content: '';
  display: inline-block;
  width: 100%;
}

.primary-nav-bar > li {
  display: inline-block;
}

.primary-nav-bar > li:first-child {
  margin-left: -15px;
}

.primary-nav-bar > li:last-child {
  margin-right: -15px;
}

.navigation a {
  color: black;
  font-size: 1.25em;
}

.navigation a:hover {
  color: #e41f35;
  background-color: white;
}

.nav > li > a {
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
}

.nav > li > a:hover, .nav > li > a:focus {
  background-color: #fff;
}

.nav-dropdown > span {
  white-space: normal;
}

.navigation a:hover {
  background-color: white;
}

.nav-dropdown span:after {
  font-family: cardinal;
  content: "\0000a0\e60b";
  color: #e41f35;
  font-size: .66em;
  white-space: nowrap;
}

.nav-mobile-icon {
  display: none;
}

.navigation li a {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

@media screen and (max-width: 767px) {
  .navigation-underlay {
    padding: 150px;
    display: none;
  }
  .template .navigation {
    position: fixed;
    top: 0;
  }
  .navigation {
    display: block;
    box-shadow: 0 0 0 #e7e7e7;
    width: 80%;
    height: 100%;
    background-color: #dedede;
  }
  .navigation-moved {
    display: block;
    right: 0;
  }
  .template {
    position: relative;
  }
  .template-moved {
    position: relative;
    right: 80%;
  }
  .header-moved {
    position: relative;
    right: 80%;
  }
  .nav-mobile-icon {
    display: block;
    float: right;
    padding: 0;
    margin: 0;
    cursor: pointer;
    cursor: hand;
    border: solid 0 black;
  }
  .nav-mobile-img {
    height: 53px;
    width: auto;
  }
  .nav > li > a, .nav > li > a {
    background-color: #dedede;
  }
  .navigation {
    padding-top: 0;
    overflow-y: scroll;
    height: 100%;
  }
  .nav-pills > li + li {
    margin-left: 0;
  }
  .navigation li a {
    font-family: "myriad-pro";
    font-weight: 400;
    font-style: normal;
    margin-bottom: 0;
    border-bottom: solid 1px white;
    width: 267px;
    height: 52px;
    font-size: 18px;
    font-size: 1.41vw;
    line-height: 50px;
    text-align: left;
    padding: 10px 10px 0 20px;
  }
  .nav-dropdown:after {
    font-family: cardinal;
    content: "\0000a0\e609";
    color: #e41f35;
    font-size: 30px;
    font-size: 2.34vw;
    position: relative;
    float: right;
    right: 12px;
    top: -10px;
  }
  .navigation li:first-child {
    display: block;
    width: 100%;
    height: 53px;
    margin-bottom: 1px;
    border-bottom: solid 1px white;
    padding: 0;
  }
  .navigation li:first-child a {
    height: 54px;
    padding: 5px 10px;
  }
  .nav-close:after {
    font-family: cardinal;
    content: "\0000a0\e603";
    color: black;
    font-size: 53px;
    font-size: 4.14vw;
    position: relative;
    float: right;
  }
  .nav-dropdown.minus-icon:after {
    content: "\0000a0\e613";
  }
  .nav-dropdown span:after {
    content: "";
  }
  .nav-dropdown:hover {
    background-color: #e41f35;
  }
  .nav > li > a:hover, .nav > li > a:focus {
    background-color: #dedede;
  }
}

.navigation a.selected-nav-link {
  color: #e41f35;
}

.secondary-navigation {
  position: absolute;
  display: none;
  padding: 0;
  width: 100%;
  max-width: 1280px;
  z-index: 8990;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2);
}

.secondary-navigation a {
  color: black;
}

.secondary-navigation > div {
  width: 100%;
  padding: 0;
}

.secondary-navigation > .sub-nav-list-menu .sub-nav-list {
  padding-top: 6px;
  padding-bottom: 24px;
}

.secondary-navigation a:hover {
  color: #e41f35;
}

.secondary-navigation > .nav-hover-from-navigation {
  padding-top: 0;
}

.mobile-nav {
  background-color: #dedede;
  box-shadow: 5px 0 5px -5px rgba(0, 0, 0, 0.05) inset;
  width: 267px;
}

.mobile-nav > a {
  display: block;
  height: 54px;
  background-color: #dedede;
  border-bottom: solid 1px white;
}

.mobile-nav a {
  box-shadow: 5px 0 5px -5px rgba(0, 0, 0, 0.05) inset;
}

.mobile-nav ul {
  box-shadow: 5px 0 5px -5px rgba(0, 0, 0, 0.05) inset;
}

.mobile-nav > ul {
  display: block;
  background-color: #dedede;
  padding: 0;
  margin: 0;
}

.mobile-nav > ul > li {
  display: block;
  padding: 0;
  margin: 0;
  border-bottom: solid 1px white;
}

.mobile-nav > ul > li > a {
  display: block;
  padding: 0 0 0 20px;
  margin: 0;
  height: 53px;
  line-height: 53px;
  color: black;
  font-size: 19px;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
}

.mobile-nav > ul > li > a.mobile-nav-closed + ul {
  display: none;
}

.mobile-nav > ul > li > a.mobile-nav-closed:after {
  font-family: cardinal;
  content: "\0000a0\e602";
  color: #e41f35;
  font-size: 30px;
  position: relative;
  float: right;
  padding-right: 10px;
}

.mobile-nav > ul > li > a.mobile-nav-open:after {
  font-family: cardinal;
  content: "\0000a0\e613";
  color: #e41f35;
  font-size: 30px;
  position: relative;
  float: right;
  padding-right: 10px;
}

.mobile-nav > ul > li > ul {
  display: block;
  background-color: white;
  padding: 10px 0 10px 0;
  margin: 0;
}

.mobile-nav > ul > li > ul > li {
  display: block;
  padding: 0;
  margin: 0;
}

.mobile-nav > ul > li > ul > li > a {
  display: block;
  padding: 10px 0 10px 20px;
  margin: 0;
  height: 35px;
  line-height: 16px;
  color: #3c3c3c;
  font-size: 17px;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
}

.mobile-nav > ul > li > ul > li > a:after {
  content: "\0000a0\00BB";
  color: #e41f35;
}

.mobile-nav > a:after {
  font-family: cardinal;
  content: "\e60e";
  float: right;
  font-size: 26px;
  line-height: 54px;
  color: #5d5d5d;
  padding-right: 10px;
}

@media (max-width: 479px) {
  div.corporate-callout ~ div.header-mobile {
    top: 50px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  div.corporate-callout ~ div.header-mobile {
    top: 26px;
  }
}

.page-title-desktop {
  text-align: right;
  margin-right: 4.2%;
  margin-top: 17px;
  margin-bottom: 3px;
  font-weight: 300;
}

@media (max-width: 767px) {
  .header-mobile {
    display: block;
    height: 53px;
    position: fixed;
    top: 0;
    width: 100%;
  }
  .header-underlay-mobile {
    padding: 27px;
  }
}

@media (min-width: 768px) {
  .header-mobile {
    display: none !important;
  }
}

.sub-navigation {
  background-color: white;
  padding: 10px 0 0 0;
  z-index: 6;
  display: none;
  white-space: normal;
}

@media (min-width: 768px) and (max-width: 1280px) {
  .sub-navigation {
    font-size: 1.25vw;
  }
}

.sub-navigation > div {
  padding-left: 2%;
}

.nav > li {
  position: static;
}

.sub-navigation a:hover {
  text-decoration: none;
}

.sub-navigation > .row {
  display: block;
  width: 100%;
  margin: 0;
}

.nav-hover-from-navigation {
  background-color: transparent;
}

.nav-hover-from-navigation > div {
  background-color: white;
}

@media (max-width: 767px) {
  .sub-navigation {
    display: none;
    position: relative;
    top: auto;
    padding: 0;
  }
}

.sub-nav-list h2 {
  border-bottom: solid 1px #e41f35;
  width: auto;
  margin-bottom: 2px;
  font-size: 1.688em;
}

.sub-nav-list {
  padding: 6px 2% 10px;
}

.sub-nav-list p {
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  line-height: 1.15em;
}

.sub-nav-list li a {
  color: black;
  font-size: 1.125em;
}

.sub-nav-list .sub-nav-see-more a {
  font-weight: bold;
  color: black;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  font-size: 1.063em;
  padding: .2em;
}

.sub-nav-list .sub-nav-see-more a:hover {
  color: #e41f35;
}

.sub-nav-list li {
  display: block;
}

.sub-nav-list ul {
  display: block;
  padding: 0;
}

.left-menu > ul > li > ul, .sub-nav-list ul {
  font-weight: 300;
  margin-bottom: 0;
}

.sub-nav-list a:after {
  content: "\0000a0\00BB";
  color: #e41f35;
}

.sub-nav-list .no-after-mark:after {
  content: '';
  display: block;
  padding: 0;
}

.sub-nav-list li a {
  display: block;
  padding: 0.3em 0.2em;
  line-height: 1.063em;
}

@media (max-width: 767px) {
  .sub-nav-list {
    display: inline-block;
    width: 100%;
    height: 42px;
  }
  .sub-nav-list h2 {
    font-size: 1.125em;
    margin: 0;
    padding: 0;
    padding-left: 5px;
    border-bottom: solid 0 #e41f35;
  }
  .sub-nav-list a {
    display: block;
  }
}

.sub-nav-header {
  height: 50px;
  font-size: 18px;
  line-height: 50px;
  padding: 0 5% !important;
  background-color: #5d5d5d;
  width: 100%;
  float: left;
  box-shadow: 0 6px 6px #555 inset;
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
  display: none;
  z-index: 8;
}

.sub-nav-header > a {
  color: white;
}

.sub-nav-header .nav-close-sub a {
  display: block;
  height: 50px;
  line-height: 50px;
  vertical-align: top;
  color: white;
}

.sub-nav-header .nav-close-sub a:hover {
  color: #e41f35;
}

.sub-nav-header.show-header-tablet {
  display: block;
}

.sub-nav-header .nav-close-sub a:after {
  font-family: cardinal;
  content: "\e60e";
  color: white;
  font-size: 1.25em;
  position: relative;
  display: inline;
  padding-left: 25px;
}

.sub-nav-header .nav-close-sub a:hover:after {
  color: #e41f35;
}

.sub-nav-header div {
  float: right;
}

.sub-nav-header a:hover {
  background-color: transparent;
}

.sub-nav-header > a:after {
  content: "\0000a0\00BB";
  color: white;
}

.sub-nav-mega-menu {
  width: 100%;
  display: none;
  white-space: normal;
  height: 100%;
}

@media (min-width: 768px) and (max-width: 1280px) {
  .sub-nav-mega-menu {
    font-size: 1.25vw;
  }
}

.sub-nav-mega-menu > div {
  height: 100%;
}

.sub-nav-mega-menu a:hover {
  text-decoration: none;
}

.sub-nav-mega-menu > div > ul {
  width: 100%;
  display: block;
  background-color: #dcdcdc;
  padding-left: 0;
  min-height: 18.938em;
  margin-bottom: 0;
  position: relative;
}

.sub-nav-mega-menu > div > ul > li {
  width: 100%;
  display: block;
  min-height: 2.188em;
  line-height: 2.188em;
  padding-left: 0;
  padding-top: .5em;
  padding-bottom: .5em;
}

.sub-nav-mega-menu > .row {
  height: 50px;
  margin: 0;
}

.sub-nav-mega-menu > div > ul > li > a {
  font-size: 1.25em;
  width: 100%;
  display: block;
  padding-left: 5.5%;
  height: 100%;
}

.sub-nav-mega-menu > div > ul > li > div {
  display: none;
}

.sub-nav-mega-menu > div > ul > li.selected-mega-menu {
  background-color: white;
}

.sub-nav-mega-menu > div > ul > li.selected-mega-menu > a:after {
  content: "\0000a0\00BB";
  color: #e41f35;
}

.selected-mega-menu > .sub-nav-mega-menu-list {
  display: block;
  position: absolute;
  margin-left: 25%;
  top: 0;
  min-height: 18.938em;
  background-color: white;
  padding-left: 2%;
}

.selected-mega-menu > .sub-nav-mega-menu-list {
  line-height: normal;
  background-color: white;
  padding-right: 15px;
}

.selected-mega-menu > .sub-nav-mega-menu-list > .sub-nav-list {
  width: 33%;
}

.sub-nav-list {
  background-color: white;
}

.template .sitting-header {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  background-color: white;
}

.template .sitting-header-underlay {
  width: 100%;
}

@media (max-width: 767px) {
  .template .sitting-header {
    width: 100%;
  }
}

.header {
  width: 100%;
  background-color: white;
  padding: 0;
  z-index: 8;
  display: inline-block;
}

.header-component-border {
  border: 5px solid #d5d5d5;
}

@media (max-width: 767px) {
  .header {
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    padding-bottom: 0;
    height: 53px;
  }
}

.home-content {
  width: 100%;
  overflow: hidden;
}

.homepage-header {
  position: relative;
}

.homepage-articles {
  height: 580px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.homepage-articles .slick-list {
  width: 100%;
}

.article {
  width: 100%;
  height: 640px;
  padding: 70px 0 20px 68px;
}

.article.reverse {
  color: white;
}

.article.reverse h2 {
  color: white;
}

.article img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}

.article h2 {
  position: relative;
  font-size: 5em;
  width: 35%;
  color: #636363;
  line-height: 90%;
  letter-spacing: -2px;
}

.article p {
  position: relative;
  width: 35%;
  font-size: 1.313em;
}

.article button {
  position: relative;
  background-color: #e41f35;
  color: white;
}

.article button:hover {
  color: white;
  background-color: darkred;
}

#meatballs {
  float: left;
}

#meatballs .slick-dots {
  list-style: none;
  outline: 0;
  padding: 0;
  padding-top: 2px;
  margin: 0;
}

#meatballs .slick-dots:focus {
  border: 0;
}

#meatballs .slick-dots li {
  position: relative;
  display: inline-block;
  height: 16px;
  width: 16px;
  margin: 0 1px;
  padding: 0;
  cursor: pointer;
  list-style: none;
  vertical-align: top;
  width: 20px !important;
  height: 20px !important;
  left: 1px;
  color: #333;
}

#meatballs .slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 100%;
  width: 100%;
  outline: 0;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer;
  outline: 0;
}

#meatballs .slick-dots li button:before {
  position: absolute;
  left: 1px;
  content: '\2022';
  font-family: "slick";
  font-size: 35px;
  text-align: center;
  color: #2e2e2f;
  height: 0;
  width: 0;
  line-height: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white;
  font-size: 15px;
  font-family: FontAwesome;
  content: "\f111";
}

#meatballs .slick-dots li.slick-active button:before {
  color: #e41f35;
}

#hpPause {
  float: left;
  color: #333;
  font-size: 21px;
  cursor: pointer;
  text-shadow: -0.5px -1px 2px white, 0.5px -1px 2px white, -1px 1px 2px white, 0.5px 0.5px 2px white;
  height: 100%;
  position: static;
}

@media (max-width: 1199px) and (min-width: 768px) {
  .article {
    height: 440px;
  }
}

@media (max-width: 768px) and (min-width: 540px) {
  .homepage-articles .article {
    height: auto;
    padding-bottom: 60px;
  }
}

@media (max-width: 640px) {
  .homepage-article {
    position: relative !important;
    z-index: 10 !important;
  }
}

@media (max-width: 767px) {
  #carousel-controls {
    bottom: auto !important;
    top: 23vw !important;
  }
  #now-trending {
    position: relative;
    z-index: 2;
  }
  #now-trending .slick-slide {
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 540px) {
  .homepage-articles {
    padding-bottom: 52px !important;
  }
  .homepage-articles .article {
    height: auto;
    padding-top: 70vw;
  }
  .homepage-articles .article > div {
    height: 70vw;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
  }
  .homepage-articles .article > div > img {
    height: 93vw;
  }
  .homepage-articles {
    z-index: 10;
    position: relative;
  }
  .homepage-articles-Search {
    z-index: 7;
  }
  #carousel-controls {
    top: 60vw !important;
    bottom: auto !important;
    z-index: 11 !important;
  }
  .now-trending-background > div {
    height: 100%;
    min-height: 390px;
  }
  .now-trending-background > div div {
    height: 100%;
    min-height: 390px;
    left: 0;
    position: relative;
    text-align: center;
  }
  .now-trending-background > div div img {
    height: 100%;
    min-height: 390px;
    position: absolute;
    right: -70%;
    width: auto;
  }
}

#carousel-controls {
  position: absolute;
  bottom: 100px;
  left: 68px;
  z-index: 4;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .homepage-articles {
    height: 440px;
  }
  .article {
    height: 440px;
    padding-top: 50px;
  }
  .article h2 {
    font-size: 3.75em;
  }
  #carousel-controls {
    bottom: 40px;
  }
}

@media (max-width: 767px) {
  .homepage-articles {
    padding-bottom: 0 !important;
    height: auto !important;
  }
  .homepage-articles .slick-list {
    padding-bottom: 0 !important;
  }
  .article {
    height: 420px;
    padding: 8% 20px 2px 30px;
  }
  .article h2 {
    font-size: 3em;
    position: absolute;
    top: 20px;
    width: 60%;
  }
  .article p {
    position: relative;
    width: 100%;
    color: #333;
    margin: 10px 0;
  }
  .article img {
    width: 100%;
    height: auto;
  }
  .home-content .article .article-content {
    height: auto;
    padding-top: 0;
    padding-left: 10.5vw;
    padding-right: 10.5vw;
    margin-left: -10.5vw;
    margin-right: -10.5vw;
  }
  #carousel-controls {
    bottom: auto;
    left: 30px;
  }
}

@media (max-width: 540px) {
  .article {
    padding: 218px 10px 30px 30px;
  }
  .article h2 {
    font-size: 2em;
    position: relative;
    width: 100%;
    top: auto;
  }
  .article.reverse h2 {
    color: #333;
  }
  .article img {
    width: auto;
    height: 220px;
  }
  #carousel-controls {
    top: 180px;
    right: 25px;
    left: auto;
  }
}

.footer-desktop {
  background-image: url("//info.cardinalhealth.com/l/34802/2015-07-21/7563ly/34802/110860/black_footer.png");
  background-repeat: no-repeat;
  background-position: center 2px;
  background-size: 100% 301px;
  height: 300px;
  margin-top: -30px;
  z-index: 1;
  position: relative;
}

.footer-desktop > .container-fluid > .row {
  width: 100%;
}

.footer-desktop .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.logo-holder-footer-desktop {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.footer-connect-header-desktop {
  font-size: 18px;
  color: white;
  padding-bottom: 20px;
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
}

.footer-company-header {
  color: white;
  font-size: 18px;
  margin-bottom: 15px;
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
  border-bottom: solid 1px white;
  padding: 0 0 5px;
}

.footer-list-1 .footer-company-header {
  margin-left: 15px;
}

.footer-list-2 .footer-company-header {
  padding-left: 15px;
  margin-left: 0;
}

.footer-support-header {
  color: white;
  font-size: 18px;
  padding-bottom: 5px;
  margin-left: 15px;
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
  border-bottom: solid 1px white;
  width: 180px;
  margin-bottom: 15px;
}

ul.footer-list-links {
  padding: 0 15px;
  text-decoration: none;
  margin-bottom: 0;
}

.footer-list-links li {
  padding-bottom: 4px;
  -webkit-padding-start: 0;
  list-style: none;
  color: #999;
}

.footer-list-links a {
  color: #999;
}

.footer-list-links a:hover {
  color: white;
  text-decoration: none;
}

.desktop-col-1 {
  padding-top: 50px;
  padding-left: 5%;
  min-width: 252px;
}

.desktop-col-2 {
  padding-top: 50px;
  padding-left: 40px;
  min-width: 325px;
}

.desktop-col-3 {
  padding-top: 50px;
  padding-right: 0;
  max-width: 300px;
}

.footer-nested-list-1-desktop {
  padding: 0;
}

.footer-nested-list-2-desktop {
  padding-top: 0;
  padding-left: 0;
}

.desktop-col-4 {
  padding-top: 50px;
  padding-left: 20px;
  padding-right: 0;
  margin-left: -1%;
}

.footer-list-1 {
  display: inline-block;
  width: 100%;
}

.footer-list-2 {
  display: inline-block;
}

.footer-list-2 a:hover {
  color: white;
  text-decoration: none;
}

.footer-list-3 {
  color: #999;
  -webkit-padding-start: 0;
}

.footer-list-3 a:hover {
  color: white;
  text-decoration: none;
}

.copyright-footer-desktop {
  margin-top: 80px;
  color: #999;
  font-size: 12px;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  padding-left: 35px;
}

.copyright-wrapper-desktop {
  margin-left: 5%;
  position: relative;
  top: -10px;
}

.sign-in {
  padding-left: 120px;
  padding-top: 20px;
}

.sign-in-desktop {
  white-space: nowrap;
  padding-top: 17px;
  padding-left: 52px;
}

.sign-in-text-desktop {
  font-size: 16px;
  max-width: 100%;
}

.sign-in-text-desktop a {
  color: #999;
  max-width: 100%;
}

.sign-in-text-desktop a:hover {
  color: white;
  text-decoration: none;
}

.sign-in-text {
  padding-left: 0;
  color: #e41f35;
}

.sign-in-text a {
  color: #e41f35;
}

.sign-in-text a:hover {
  color: white;
  text-decoration: none;
}

.icon-list-desktop {
  list-style-type: none;
  padding-top: 0;
  padding-left: 0;
}

.icon-list-desktop li {
  padding-bottom: 12px;
  color: #999;
  font-size: 1em;
}

.icon-list-desktop a {
  color: #999;
}

.icon-list-desktop a:hover {
  color: white;
  text-decoration: none;
}

.icon-span {
  padding-left: 10px;
  font-size: 1em;
}

.icon-span a {
  color: #999;
}

.logo-holder-footer-desktop img {
  width: 221px;
  height: auto;
}

.button-red {
  color: #fff;
  background-color: #e41f35;
  border: 0 solid #d5d5d5;
  padding-top: .55vw;
  padding-bottom: .39vw;
  padding-right: 12px;
  padding-left: .94vw;
  font-size: 1.41vw;
  border-radius: 5px;
  width: 8.44vw;
}

.button-red:hover {
  background-color: #bc0000;
  color: white;
}

.sign-in-div .button-red {
  height: 48px;
}

.button-black-on-red {
  color: #fff;
  background-color: #252525;
  border: 5px solid #ab1727;
  padding-top: 9px;
  padding-bottom: 9px;
}

.button-black-on-red:hover {
  color: #d5d5d5;
}

.button-blue {
  color: #fff;
  background-color: #346170;
  border: 5px solid #8ccfde;
  padding-top: 9px;
  padding-bottom: 9px;
}

.button-blue:hover {
  color: #8ccfde;
}

@media (max-width: 767px) {
  .button-red {
    height: 83px;
    width: 222px;
    font-size: 35px;
    font-weight: 100;
  }
}

@media (min-width: 1280px) {
  .button-red {
    padding-top: 7px;
    padding-bottom: 5px;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 18px;
    border-radius: 5px;
    width: 108px;
  }
}

.button-dark {
  width: auto;
  height: 36px;
  color: white;
  font-size: 16px;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  background-color: #515151;
}

.button-dark:hover {
  color: white;
}

.button-dark:hover {
  background-color: black;
}

.button-red-2 {
  width: auto;
  height: 36px;
  color: white;
  font-size: 16px;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  background-color: #e41f35;
}

.button-red-2:hover {
  color: white;
}

.button-red-2:hover {
  background-color: #bc0000;
}

.email {
  position: relative;
}

.connect-btn img {
  width: 12%;
  display: inline;
  margin-left: 8px;
}

.open-connect {
  color: #e41f35;
  cursor: pointer;
}

.connect-btn {
  float: right;
  background-size: cover;
  display: inline-block;
  width: 20px;
  height: 20px;
}

.open-connect {
  color: #e41f35;
  cursor: pointer;
}

.connect-btn.closed:before {
  content: "\e602";
  font-family: "cardinal";
  font-size: 24px;
}

.connect-btn.open:after {
  display: inline-block;
  font-family: "cardinal";
  content: "\e613";
  font-size: 24px;
}

.connect-mobile-icon {
  display: none;
}

.connect-body .collapse {
  display: none;
  visibility: hidden;
}

.connect-body .collapse.in {
  display: block;
  visibility: visible;
}

#collapseConnect .well {
  background: transparent;
}

@media (max-width: 767px) {
  .connect-mobile-icon {
    padding: 26px;
    float: right;
    display: block;
  }
}

.connect-widget {
  width: 255px;
  top: 50%;
  right: -255px;
  z-index: 100;
  position: fixed;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
}

@media (min-width: 768px) and (max-width: 991px) and (max-height: 650px) {
  .connect-widget {
    top: 317px;
  }
}

@media (max-width: 767px) {
  .connect-widget {
    padding-bottom: 49px;
    overflow-y: scroll;
  }
}

.connect-widget:hover {
  right: -240px;
}

.connect-widget.touch-no-hover:hover {
  right: -255px;
}

.connect-widget.open {
  right: 0 !important;
}

.connect-widget .tab {
  width: 48px;
  height: 165px;
  top: 50%;
  left: -48px;
  color: #fff;
  cursor: pointer;
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #5d5d5d;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  -webkit-font-smoothing: subpixel-antialiased;
}

@media (max-width: 767px) {
  .connect-widget .tab {
    display: none;
  }
}

.connect-widget .tab .connect-btn {
  width: 24px;
  height: 24px;
  top: 10px;
  color: #fff;
  float: none;
  margin: 0 auto;
  display: block;
  position: relative;
}

.connect-widget .tab span {
  bottom: 0;
  display: block;
  position: absolute;
  font-size: 24px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: 0 50% 0;
  -ms-transform-origin: 0 50% 0;
  transform-origin: 0 50% 0;
}

.connect-widget .tab span.ie9 {
  left: -38%;
  bottom: 25%;
}

.connect-widget .form {
  padding: 15px;
  background-color: #fff;
}

.connect-widget .form_leftcolmark {
  margin-top: 10px !important;
}

.connect-widget .form .close {
  top: -15px;
  right: -15px;
  display: none;
  position: relative;
}

.connect-widget .form h2, .connect-widget .form h3, .connect-widget .form h4 {
  margin: 0;
}

.connect-widget .form h2 {
  color: #e41f35;
  font-size: 36px;
}

.connect-widget .form h3 {
  font-size: 12px;
}

.connect-widget .form h4 {
  font-size: 36px;
  font-weight: 400;
}

.connect-widget .form label {
  color: #666;
  display: block;
  font-size: 12px;
  font-weight: normal;
  margin-top: 5px;
  margin-left: 10px;
}

.connect-widget .form input[type='text'], .connect-widget .form input[type='tel'], .connect-widget .form input[type='email'] {
  width: 100%;
  border: 0;
  padding: 5px;
  padding-left: 10px;
  border-radius: 5px;
  background-color: #e7e7e7;
}

.connect-widget .form .btn {
  padding: 6px 12px;
  font-size: 20px;
  margin-top: 15px;
  font-weight: normal;
}

@media (max-width: 767px) {
  .connect-widget .form .btn.button-red {
    height: auto;
  }
}

.connect-widget .form .btn[type='reset'] {
  width: 40%;
  background-color: #fff;
}

.connect-widget .form .btn[type='button'] {
  width: 55%;
  float: right;
}

@media (max-width: 767px) {
  .connect-widget.open {
    width: 100%;
    height: 100%;
    top: 53px;
    left: 50%;
    right: auto;
    background-color: #fff;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .connect-widget.open .form {
    padding-left: 5.5vw;
    padding-right: 5.5vw;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  .connect-widget.open .form {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 767px) and (min-width: 1280px) {
  .connect-widget.open .form {
    padding-left: 70px;
    padding-right: 71px;
  }
}

@media (max-width: 767px) {
  .connect-widget.open .form .close {
    opacity: 1;
    display: block;
    position: absolute;
    right: 0;
    top: -13px;
    line-height: 40px;
  }
  .connect-widget.open .form h3 {
    font-size: 16px;
  }
  .connect-widget.open .form label, .connect-widget.open .form input[type='text'], .connect-widget.open .form input[type='tel'], .connect-widget.open .form input[type='email'] {
    font-size: 16px;
  }
}

.connect-mobile-icon {
  top: 17px;
  right: 110px;
  height: 30px;
  padding: 0;
  position: absolute;
}

.connect-mobile-icon img {
  height: 80%;
}

.related-products-carousel .icon-product_carousel_L {
  position: absolute;
  top: 25%;
  color: darkgray;
  outline-style: none;
}

.related-products-carousel .icon-product_carousel_R {
  position: absolute;
  top: 25%;
  color: darkgray;
  right: 0;
  outline-style: none;
}

.related-products-carousel .icon-product_carousel_L:hover {
  color: black;
}

.related-products-carousel .icon-product_carousel_R:hover {
  color: black;
}

.related-products-carousel .icon-product_carousel_L.slick-disabled {
  color: gainsboro;
  cursor: default;
}

.related-products-carousel .icon-product_carousel_R.slick-disabled {
  color: gainsboro;
  cursor: default;
}

.related-products-carousel .icon-product_carousel_L.slick-disabled:active {
  color: gainsboro;
  cursor: default;
}

.related-products-carousel .icon-product_carousel_R.slick-disabled:active {
  color: gainsboro;
  cursor: default;
}

.related-products-carousel .icon-product_carousel_L.slick-disabled:hover {
  color: gainsboro;
  cursor: default;
}

.related-products-carousel .icon-product_carousel_R.slick-disabled:hover {
  color: gainsboro;
  cursor: default;
}

.related-products-carousel .icon-product_carousel_L:before {
  font-family: cardinal;
  content: "\e609";
  font-size: 4vw;
  padding: 0 1px;
}

.related-products-carousel .icon-product_carousel_R:before {
  font-family: cardinal;
  content: "\e60c";
  font-size: 4vw;
  padding: 0 1px;
}

.carousel {
  padding-bottom: 4%;
  position: relative;
}

.related-products-carousel .slick-list {
  width: 80%;
  margin: 0 auto;
}

#carousel-pagination {
  width: 100%;
  max-width: 960px;
  text-align: right;
  display: inline-block;
  margin-top: 35px;
  margin-bottom: 20px;
}

.carousel img {
  max-width: 200px;
  width: 100%;
}

#carousel-pagination > span > h3 {
  margin: 0;
  vertical-align-align: bottom;
}

#carousel-pagination > p {
  margin: 0;
  padding: 0;
}

#carousel-pagination:after {
  clear: both;
}

#carousel-pagination a {
  color: black;
}

.carousel-inner {
  width: 80%;
  margin: 0 auto;
}

.carousel-inner .active.left {
  left: -25%;
}

.carousel-inner .next {
  left: 25%;
}

.carousel-inner .prev {
  left: -25%;
}

.product {
  padding: 2px;
}

.related-products-carousel .product {
  padding: 2px 10px;
}

.product p, .product .stars {
  margin: 0 auto;
}

.stars p {
  display: inline;
}

.product .go-icon {
  color: black;
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
  display: block;
  margin: 0 auto;
  text-align: left;
}

.go-icon:hover, #carousel-pagination a:hover {
  color: #e41f35;
  position: relative;
  text-decoration: none;
}

.page {
  position: absolute;
}

.page {
  right: 90px;
}

.stars {
  color: #e41f35;
}

.product div a p {
  color: black;
}

@media (max-width: 767px) {
  .product div a img {
    margin: 0 auto;
  }
  .product div a p {
    margin: 0 auto;
    width: 60%;
  }
  .product div .stars {
    margin: 0 auto;
    width: 60%;
  }
  .product div .go-icon {
    margin: 0 auto;
    width: 60%;
  }
  .product {
    margin: 0 auto;
  }
  #wrapper .icon-product_carousel_L:before {
    font-size: 10vw;
  }
  #wrapper .icon-product_carousel_R:before {
    font-size: 10vw;
  }
  .product p, .product .stars {
    font-size: 1em;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .carousel-inner .active.left {
    left: -50%;
  }
  .carousel-inner .next {
    left: 50%;
  }
  .carousel-inner .prev {
    left: -50%;
  }
  .active > div:first-child {
    display: block;
  }
  .active > div:first-child + div {
    display: block;
  }
}

#solutions-carousel .icon-solutions_carousel_L {
  position: absolute;
  top: 25%;
  color: darkgrey;
  outline-style: none;
}

#solutions-carousel .icon-solutions_carousel_R {
  position: absolute;
  top: 25%;
  color: darkgrey;
  right: 0;
  outline-style: none;
}

#solutions-carousel .icon-solutions_carousel_L:hover {
  color: black;
  cursor: pointer;
}

#solutions-carousel .icon-solutions_carousel_R:hover {
  color: black;
  cursor: pointer;
}

#solutions-carousel .slick-disabled {
  color: gainsboro !important;
  cursor: default !important;
}

#solutions-carousel .icon-solutions_carousel_L:before {
  padding-top: 1px;
  padding-bottom: 1px;
  padding-left: 2px;
  padding-right: 2px;
  font-family: cardinal;
  content: "\e609";
  font-size: 4em;
}

@media (max-width: 767px) {
  #solutions-carousel .icon-solutions_carousel_L:before {
    font-size: 3em;
  }
}

#solutions-carousel p {
  position: relative;
}

#solutions-carousel .icon-solutions_carousel_R:before {
  padding-top: 1px;
  padding-bottom: 1px;
  padding-left: 2px;
  padding-right: 2px;
  font-family: cardinal;
  content: "\e60c";
  font-size: 4em;
}

@media (max-width: 767px) {
  #solutions-carousel .icon-solutions_carousel_R:before {
    font-size: 3em;
  }
}

.business-advantage {
  padding-left: 35px !important;
}

.business-advantage:before {
  position: absolute;
  left: 1px;
  top: -2px;
  font-size: 25px;
  color: #81d0cb;
  font-family: cardinal;
  content: "\e615\00a0";
}

.retail-advantage {
  padding-left: 35px !important;
}

.retail-advantage:before {
  position: absolute;
  left: 1px;
  top: -2px;
  font-size: 25px;
  color: #adc577;
  font-family: cardinal;
  content: "\e61c";
}

.wellness-advantage {
  padding-left: 35px !important;
}

.wellness-advantage:before {
  position: absolute;
  left: 1px;
  top: -2px;
  font-size: 25px;
  color: #e41f35;
  font-family: cardinal;
  content: "\e61d";
}

.slick-disabled {
  cursor: default;
}

#solutions-carousel .slick-list {
  width: auto;
}

#solutions-carousel .slick-list.draggable {
  margin-right: 80px;
  margin-left: 80px;
}

.solution a {
  color: black;
}

.solution {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
  padding-left: 5px !important;
  padding-right: 5px !important;
  margin-left: auto;
  margin-right: auto;
}

.solution h3 {
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
}

.invisible {
  visibility: hidden;
}

.solution .go-icon {
  color: black;
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
  font-size: 1em;
}

.solution .go-icon:hover {
  color: #e41f35;
}

.solution .go-icon:after {
  font-size: 1em;
}

.solution h3 {
  margin-top: 0;
}

@media (max-width: 767px) {
  #carousel-pagination > p {
    display: none;
  }
  #solutions-carousel .icon-solutions_carousel_L {
    position: absolute;
    top: 25%;
  }
  #solutions-carousel .icon-solutions_carousel_R {
    position: absolute;
    top: 25%;
  }
  #related-solutions-mobile .carousel-inner {
    margin: 0 auto;
  }
  .item {
    padding-left: 7%;
  }
  .solution h3 {
    font-weight: 900;
    margin-top: -10px;
    font-size: 1.75em;
  }
  .solution p {
    font-size: 1em;
  }
  #solutions-carousel .slick-list.draggable {
    margin-right: 50px;
    margin-left: 50px;
  }
  #solutions-carousel .solution a {
    font-size: 1em !important;
  }
  .carousel-control {
    width: 10%;
  }
}

#carousel-pagination.no-pagination > p {
  display: none;
}

@media (max-width: 767px) {
  .footer-desktop {
    display: none;
  }
  .footer-tablet {
    display: none;
  }
}

@media (min-width: 768px) {
  .footer-mobile {
    display: none;
  }
}

.footer-mobile-bg-img {
  background-image: url(//info.cardinalhealth.com/l/34802/2015-07-21/7563ly/34802/110860/black_footer.png);
  background-size: 100%;
  height: 85px;
  margin-top: -30px;
  z-index: 1;
  position: relative;
}

@media (max-width: 767px) {
  .footer-mobile-bg-img {
    height: 15px;
  }
}

.footer-mobile-black-bg-div {
  background-color: #1a1a1a;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 301px;
  z-index: 1;
  position: relative;
}

.icon-list-mobile {
  list-style-type: none;
  padding-top: 0;
  padding-left: 0;
}

.icon-list-mobile li {
  list-style-type: none;
  padding-bottom: 0;
  font-size: 41px;
}

.icon-list-mobile a {
  color: #999;
  text-decoration: none;
}

.icon-span-mobile {
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
  font-size: 24px;
  padding-left: 15px;
}

.icon-list-mobile a:hover {
  color: white;
}

.sign-in-mobile {
  padding-top: 17px;
  padding-left: 25px;
}

.sign-in-text-mobile {
  display: inline-block;
  padding-top: 0;
  color: #999;
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
  font-size: 24px;
}

.sign-in-text-mobile a {
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
  font-size: 24px;
  text-decoration: none;
  color: #999;
}

.sign-in-text-mobile a:hover {
  color: white;
}

.hr-footer-mobile {
  margin: 0;
  border: 0;
  height: 1px;
  background: #999;
}

.footer-company-header-mobile {
  font-size: 24px;
  color: white;
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
}

.footer-company-text-mobile {
  display: inline-block;
  padding-left: 14px;
}

.footer-support-header-mobile {
  font-size: 24px;
  color: white;
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
}

.footer-support-text-mobile {
  display: inline-block;
  padding-left: 14px;
}

.footer-connect-header-mobile {
  font-size: 24px;
  color: white;
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
}

.footer-connect-text-mobile {
  font-size: 15px;
  color: white;
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
}

.copyright-footer-mobile {
  font-size: 11px;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  color: #999;
}

.footer-plus-icon {
  font-family: cardinal;
  display: inline-block;
}

.footer-twitter-icon-itself {
  display: inline-block;
}

.footer-linkedin-icon-itself {
  display: inline-block;
  font-family: Stackicons-Social;
}

.footer-facebook-icon-itself {
  display: inline-block;
}

.footer-youtube-icon-itself {
  display: inline-block;
}

.logo-component-footer-mobile {
  padding-left: 0;
}

.mobile-sign-in-row-2 {
  padding-top: 17px;
  padding-bottom: 15px;
}

.mobile-social-row-5 {
  padding-top: 22px;
}

.mobile-copyright-row-6 {
  padding-top: 10px;
  padding-bottom: 20px;
}

.mobile-logo-row-1 {
  padding-left: 5px;
}

.footer-margin-left {
  padding-left: 9%;
}

.footer-mobile .row {
  width: 100%;
}

.language-select {
  width: 100%;
  text-align: left;
  margin-top: 55px;
  margin-left: 53px;
}

.language-select label {
  font-weight: 600 !important;
  margin-right: 15px;
  color: #fff;
}

.language-select select {
  width: auto !important;
  font-size: 1em;
  font-weight: 400;
  padding: 1px;
  margin-bottom: 0;
  background-color: #ccc;
  border-radius: 3px;
  border: 0;
}

@media screen and (max-width: 700px) {
  .language-select {
    margin: 10px 0 20px 0 !important;
    font-size: 1.3em;
  }
  .language-select select {
    margin-top: 5px;
  }
}

@media (max-width: 991px) {
  .footer-desktop {
    display: none;
  }
}

@media (min-width: 992px) {
  .footer-tablet {
    display: none;
  }
}

.footer-tablet .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.footer-tablet-bg-img {
  background-image: url("//info.cardinalhealth.com/l/34802/2015-07-21/7563ly/34802/110860/black_footer.png");
  height: 47px;
  background-size: 100%;
  margin-top: -30px;
  z-index: 1;
  position: relative;
}

.footer-tablet-black-bg-div {
  background-color: #1a1a1a;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 301px;
  z-index: 1;
  position: relative;
}

.tablet-col-1 {
  padding-left: 20px;
  padding-top: 0;
  min-width: 150px;
  min-width: 252px;
}

.tablet-col-2 {
  padding-left: 1%;
  padding-top: 37px;
  width: 33%;
}

.tablet-col-3 {
  padding-top: 37px;
  padding-right: 0;
}

.copyright-footer-tablet {
  font-size: .75em;
  color: #999;
  padding-left: 30px;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
}

.tablet-bottom-row .col-sm-4 {
  padding-top: 70px;
}

.sign-in-tablet {
  padding-left: 60px;
  padding-top: 15px;
}

.icon-list-tablet {
  list-style-type: none;
}

.footer-tablet-social {
  display: inline-block;
  padding-right: 20px;
}

.footer-tablet-social a:hover {
  color: white;
  text-decoration: none;
}

.footer-nested-list-1-tablet {
  padding-right: 0;
}

.footer-tablet .footer-list-links li {
  padding-bottom: 10px;
}

.footer-nested-list-2-tablet {
  padding-top: 0;
  padding-left: 0;
}

.logo-holder-footer-tablet {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.sign-in-tablet {
  white-space: nowrap;
  padding-top: 17px;
  padding-left: 36px;
}

.sign-in-text-tablet {
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
  font-size: 1em;
  max-width: 100%;
}

.sign-in-text-tablet a {
  text-decoration: none;
  color: #999;
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
  max-width: 100%;
}

.sign-in-text-tablet a:hover {
  color: white;
  text-decoration: none;
}

.footer-connect-header-tablet {
  font-size: 1.125em;
  color: white;
  padding-bottom: 23px;
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
}

.tablet-bottom-row {
  margin-left: 0;
  margin-right: 0;
  padding-top: 35px;
  padding-bottom: 42px;
}

.tablet-bottom-row .col-sm-4 {
  padding-left: 10px;
}

.icon-span {
  color: #999;
}

.footer-tablet > .container-fluid > .footer-tablet-black-bg-div > .row {
  width: 100%;
}

.tablet-col-social {
  padding-left: 5px;
}

.social-tablet-section {
  white-space: nowrap;
}

.footer-mobile-company-collapse {
  margin: 0;
}

.footer-mobile-support-collapse {
  margin: 0;
}

.footer-collapse-content {
  background-color: #212121;
}

ul.footer-list-links-collapse {
  padding-top: 20px;
  padding-left: 0;
  text-decoration: none;
}

.footer-list-links-collapse li {
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  -webkit-padding-start: 0;
  list-style: none;
  color: #999;
  padding-bottom: 10px;
  padding-top: 12px;
}

.footer-list-links-collapse a {
  color: #999;
}

.footer-list-links-collapse a:hover {
  color: white;
  text-decoration: none;
}

.footer-collapse-header {
  font-size: 24px;
  color: #999;
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
  padding-top: 8px;
  padding-bottom: 5px;
  cursor: pointer;
  position: relative;
  width: 100%;
}

.footer-collapse-header-text {
  font-size: 24px;
  display: inline-block;
  color: #999;
  padding-left: 16px;
  vertical-align: top;
  padding-top: 8px;
}

.company-collapse-left-col {
  padding-left: 0;
}

.footer-collapse-header .col-xs-12 {
  padding: 0;
}

.footer-collapse-content .col-xs-12 {
  padding: 0;
}

.footer-plus-icon:before {
  content: "\e602";
  font-family: "cardinal";
  font-size: 34px;
}

.footer-minus-icon:after {
  display: inline-block;
  font-family: "cardinal";
  content: "\e613";
  font-size: 34px;
}

.footer-minus-icon {
  font-size: 34px;
  display: inline-block;
}

.footer-collapse-header-inner-div {
  padding-left: 15px;
}

p {
  padding: 5px 0;
}

.sub-nav-article {
  display: inline-block;
  vertical-align: top;
  background-color: #efeeed;
  margin-top: 26px;
  margin-bottom: 26px;
  padding: 0;
}

.sub-nav-article > div {
  display: inline-block;
  padding: 0;
  vertical-align: top;
}

.sub-nav-article > div > a > img {
  width: 100%;
}

.sub-nav-article > .sub-nav-article-image-div {
  padding: 0 1% 0 0;
  width: 48%;
  overflow-y: hidden;
}

.sub-nav-article > .sub-nav-article-text-div {
  padding: 0 0 0 1%;
  width: 48%;
}

.sub-nav-article > div > a {
  display: block;
}

.sub-nav-article > div > div > a {
  color: black;
  font-size: 1.125em;
}

.sub-nav-article .sub-nav-see-more > a {
  font-weight: bold;
  color: black;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
}

.sub-nav-article .sub-nav-see-more > a:after {
  content: "\0000a0\00BB";
  color: #e41f35;
}

.sub-nav-article .sub-nav-see-more > a:hover {
  color: #e41f35;
}

.sub-nav-article p {
  font-size: 1em;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  line-height: 1.25em;
  margin-bottom: .1em;
}

.sub-nav-article h2 {
  font-size: 1.5em;
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
  margin-top: .75em;
  margin-bottom: .1em;
}

.breadcrumbs {
  display: inline-block;
  font-size: 14px;
  margin-top: 28px;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  margin-bottom: 6px;
  z-index: 2;
  padding: 5px 12px 5px 12px;
  border-radius: 8px;
  background-color: white;
  position: relative;
  margin-left: -12px;
}

.breadcrumbs > .breadcrumb-list-container {
  display: inline-block;
}

.breadcrumbs > .breadcrumb-list-container .breadcrumb-nav {
  padding: 0;
  margin: 0;
  list-style: none;
  background-color: inherit;
}

.breadcrumbs > .breadcrumb-list-container .breadcrumb-nav > li {
  display: inline-block;
}

.breadcrumbs > .breadcrumb-list-container .breadcrumb-nav > li > a {
  color: black;
  text-decoration: none;
}

.breadcrumbs > .breadcrumb-list-container .breadcrumb-nav > li > a:hover {
  color: #e41f35;
}

.breadcrumbs > .breadcrumb-list-container .breadcrumb-nav > li > a:hover:after {
  color: #e41f35;
}

.breadcrumbs > .breadcrumb-list-container .breadcrumb-nav > li:last-child {
  color: #e41f35;
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
}

.breadcrumbs > .breadcrumb-list-container .breadcrumb-nav > li:last-child > a:after {
  content: none;
}

.breadcrumbs > .breadcrumb-list-container .breadcrumb-nav > li > a:after {
  content: "\00a0\00a0/\00a0";
}

.breadcrumbs > .breadcrumb-list-container .breadcrumb-nav > li > a:hover:after {
  color: black;
}

@media (min-width: 768px) and (max-width: 991px) {
  .breadcrumbs {
    font-size: 12px;
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .breadcrumbs {
    display: none;
  }
}

@media (max-width: 767px) {
  .utility-nav {
    float: right;
    display: inline-block;
    margin-top: 15px;
  }
  .utility-nav-divider {
    display: none;
  }
  .utility-nav-button-print {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .utility-nav {
    float: right;
  }
  .utility-nav-divider {
    display: none;
  }
  .utility-nav-button-share {
    margin-top: 5px;
  }
}

@media (min-width: 992px) {
  .utility-nav-divider {
    width: 100%;
    height: 1px;
    min-height: 1px;
    background-color: #948a85;
    position: absolute;
    top: 50%;
  }
  .utility-btn {
    cursor: pointer;
  }
  .utility-nav {
    display: block;
    width: 100%;
  }
  .utility-nav .utility-nav-button-container {
    width: 176px;
    height: 100%;
    float: right;
    margin-right: 75px;
    background-color: white;
    position: relative;
    z-index: 0;
  }
  .utility-nav .utility-nav-button-containerWithoutShare {
    width: 90px;
  }
}

.utility-nav {
  position: relative;
  min-height: 30px;
  font-size: 14px;
}

.utility-nav-mobile {
  display: none;
}

.utility-nav .utility-nav-button {
  margin-left: 15px;
  display: inline-block;
}

.utility-nav .utility-nav-button-text {
  margin-left: 4px;
  float: left;
  margin-top: 6px;
}

.utility-nav-icon-container {
  font-family: cardinal;
  height: 30px;
  max-height: 30px;
  width: 30px;
  max-width: 30px;
  float: left;
  display: block;
  position: relative;
}

.utility-nav-icon {
  max-height: 30px;
  position: absolute;
  font-size: 30px;
}

.utility-nav-button-print .utility-nav-icon {
  bottom: 7px;
}

.utility-nav-button-share .utility-nav-icon {
  bottom: 7px;
}

.utility-nav-button-container a:link {
  color: #5d5d5d;
}

.utility-nav-button-container a:visited {
  color: #5d5d5d;
}

.utility-nav-button-container a:hover {
  color: #e41f35;
}

.utility-nav-button-container a:active {
  color: #e41f35;
}

@media (max-width: 991px) {
  .article-template .utility-nav {
    display: none;
  }
  .article-template .utility-nav.utility-nav-mobile {
    display: block;
    float: right;
    margin-top: 2px;
    font-weight: normal;
  }
}

.titles-container {
  padding-bottom: 20px;
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
}

@media (max-width: 767px) {
  .titles-container {
    display: none;
  }
}

.product-detail-tabbed-content {
  clear: both;
  color: black;
  margin-top: 36px;
}

@media (max-width: 767px) {
  .product-detail-tabbed-content {
    margin-top: 0;
  }
}

.tabbed-content {
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  padding: 20px 20px 20px 20px;
  outline: 0;
}

@media (max-width: 767px) {
  .tabbed-content {
    display: none;
  }
}

.tabbed-content p {
  padding: 0;
}

.product-detail-tabbed-content .title {
  position: relative;
  font-size: 1.75em !important;
  display: inline-block;
  margin-right: 4.5%;
  margin-top: 0;
  margin-bottom: 0;
  cursor: pointer;
  outline-style: none;
}

@media (max-width: 767px) {
  .product-detail-tabbed-content .title {
    display: none;
  }
}

.product-detail-tabbed-content .title > img {
  position: absolute;
  width: 22px;
  height: 15px;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -21px;
  visibility: hidden;
}

.product-detail-tabbed-content .title.active-title > img {
  visibility: visible;
}

.product-detail-tabbed-content .title:hover {
  color: #e41f35;
}

.product-detail-tabbed-content .active-title {
  color: #e41f35;
  cursor: default;
}

@media (min-width: 768px) {
  .product-detail-tabbed-content .tabbed-content {
    display: none;
  }
}

@media (max-width: 767px) {
  .product-detail-tabbed-content .tabbed-content {
    display: block;
    visibility: visible;
  }
}

@media (min-width: 768px) {
  .product-detail-tabbed-content .active-tabbed-content {
    display: block !important;
    visibility: visible !important;
    height: auto !important;
  }
}

.mobile-tabbed-content-title {
  display: none;
  height: 65px;
  width: 100%;
  font-size: 24px;
  border-top: 1px solid black;
  background-color: white;
}

@media (max-width: 767px) {
  .mobile-tabbed-content-title {
    display: block;
  }
}

.mobile-tabbed-content-title:hover {
  color: #e41f35;
}

.mobile-tabbed-content-title-text {
  width: 100%;
  margin-top: 18px;
  padding-left: 24px;
  display: inline-block;
}

.mobile-tabbed-content-title-text:after {
  font-family: cardinal;
  color: #e41f35;
  content: "\0000a0\e602";
  float: right;
  margin-right: 16px;
}

@media (max-width: 767px) {
  .mobile-tabbed-content-title {
    height: auto;
  }
  .mobile-tabbed-content-title-text {
    position: relative;
    padding-right: 58px;
    margin-bottom: 10px;
  }
  .mobile-tabbed-content-title-text::after {
    position: absolute;
    top: 0;
    right: 24px;
    float: none;
    margin: 0;
  }
}

.mobile-tabbed-content-title.title-active .mobile-tabbed-content-title-text {
  color: #e41f35;
}

.mobile-tabbed-content-title.title-active .mobile-tabbed-content-title-text:after {
  font-family: cardinal;
  color: black;
  content: "\0000a0\e613";
}

@media (min-width: 768px) {
  .collapse {
    display: block;
    visibility: visible;
  }
}

@media (max-width: 767px) {
  .collapse {
    display: none !important;
    visibility: hidden !important;
  }
}

@media (min-width: 768px) {
  .collapse.in {
    display: none;
    visibility: hidden;
  }
}

@media (max-width: 767px) {
  .collapse.in {
    display: block !important;
    visibility: visible !important;
  }
}

ol {
  margin-bottom: 0;
}

ul {
  margin-bottom: 0;
}

.tabs-content-container {
  width: 100%;
  color: black;
  border: 1px solid #ccc;
  background-color: #f7f7f7;
  border-radius: 5px;
  font-size: 1em;
  display: inline-block;
}

@media (max-width: 767px) {
  .tabs-content-container {
    border: 0;
    border-radius: 0;
    padding: 0;
  }
}

.tabbed-content-description {
  display: none;
}

.tabbed-content-description > #description-paragraph {
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  font-size: 1.25em;
}

#description-list-container {
  width: 100%;
  display: inline-block;
}

.description-list {
  float: left;
  width: 50%;
  max-width: 50%;
  display: inline-block;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .description-list {
    clear: both;
    width: 100%;
    max-width: 100%;
  }
  #description-list-right:after {
    clear: both;
  }
}

.tabbed-content-order-info-tablet-desktop th {
  vertical-align: bottom;
  min-width: 75px;
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
}

.tabbed-content-order-info-tablet-desktop {
  display: none;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
}

.tabbed-content-order-info-tablet-desktop table {
  width: 100%;
}

.tabbed-content-order-info-tablet-desktop table td {
  padding-top: 5px;
  padding-bottom: 5px;
}

.tabbed-content-order-info-tablet-desktop td:nth-child(1) {
  padding-left: 24px;
}

.tabbed-content-order-info-tablet-desktop th:nth-child(1) {
  padding-left: 24px;
}

.tabbed-content-order-info-tablet-desktop table > tbody > tr:nth-child(even) {
  background-color: #e7e7e7;
}

.tabbed-content-order-info-tablet-desktop td {
  background-color: inherit;
}

.tabbed-content-order-info-mobile {
  display: none;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
}

.tabbed-content-order-info-mobile table {
  width: 100%;
  margin-bottom: 20px;
}

.tabbed-content-order-info-mobile table:last-child {
  margin-bottom: 0;
}

.tabbed-content-order-info-mobile table > tbody > tr {
  background-color: #e7e7e7;
}

.tabbed-content-order-info-mobile table > tbody > tr > td {
  width: 50%;
  max-width: 50%;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 12px;
}

.tabbed-content-order-info-mobile table > tbody > tr > td:first-child {
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
}

.tabbed-content-package-details {
  display: none;
}

.tabbed-content-package-details #description-paragraph {
  font-size: 1.25em;
  margin-bottom: 30px;
}

.tabbed-content-package-details .page-break {
  display: block;
  clear: both;
  height: 1px;
  max-height: 1px;
  min-height: 1px;
  width: 100%;
  background-color: #aaa;
  margin-top: 24px;
  margin-bottom: 24px;
}

.tabbed-content-package-details .bold-title {
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
}

.tabbed-content-package-details .italic {
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: italic;
}

.tabbed-content-package-details .bottom-margin {
  margin-bottom: 14px;
}

#dimensions-and-properties {
  width: 100%;
  display: inline-block;
}

.product-spec {
  display: inline-block;
  float: left;
  width: 50%;
  max-width: 50%;
  min-width: 50%;
}

@media (max-width: 768px) {
  .product-spec {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    clear: both;
  }
}

#dimensions .last-list-item {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  #dimensions .last-list-item {
    margin-bottom: 14px;
  }
}

.service-detail-header h1 {
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
  font-size: 2.56em;
  margin-top: 40px;
}

.service-detail-header p {
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  font-size: 2em;
  line-height: 1.2;
  margin-bottom: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .service-detail-header h1 {
    margin-top: 20px;
  }
}

#tabbed-content-customer-feedback #mobile-bottom-border {
  display: none;
}

@media (max-width: 767px) {
  #tabbed-content-customer-feedback #mobile-bottom-border {
    height: 1px;
    width: 100%;
    background-color: black;
    display: block;
  }
}

.tabbed-content-customer-reviews {
  font-size: .875em;
  display: none;
}

.tabbed-content-customer-reviews .review-title {
  font-weight: bold;
  font-size: 1.125em;
}

.tabbed-content-customer-reviews .review-user-info {
  font-size: 1em;
  margin-bottom: 5px;
  margin-left: 15px;
}

.tabbed-content-customer-reviews .review-username {
  color: #e41f35;
}

.tabbed-content-customer-reviews p {
  margin-bottom: 15px;
}

.tabbed-content-customer-reviews p:last-child {
  margin-bottom: 0;
}

.tabbed-content-questions-answers {
  display: none;
}

.question {
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  padding-left: 40px;
  display: block;
  position: relative;
  line-height: 24px;
}

.question.collapsed .question-icon:before {
  content: "\0000a0\e602";
  color: #e41f35;
}

.question .question-icon:before {
  color: black;
  content: "\0000a0\e613";
}

.question-icon {
  padding-top: 0;
  font-family: cardinal;
  font-size: 1.3em;
  color: black;
  position: absolute;
  left: -5px;
  top: -1px;
}

.question-answer {
  margin-bottom: 20px;
}

.question-answer a {
  font-weight: normal;
  outline: 0;
}

.question-answer a:link {
  color: black;
}

.question-answer a:visited {
  color: black;
}

.question-answer a:hover {
  color: #e41f35;
}

.question-answer a:active {
  color: #e41f35;
}

.question-answer .accordion-heading {
  font-size: 1.25em;
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
}

.question-answer .accordion-body {
  margin-left: 40px;
  font-size: 1em;
}

.question-answer .accordion-inner {
  margin: 0;
  padding: 0;
}

.tabbed-content-questions-answers .question-answer:last-child {
  margin-bottom: 0;
}

.question-answer .collapse {
  display: none;
  visibility: hidden;
}

.question-answer .collapse.in {
  display: block;
  visibility: visible;
}

@media (max-width: 767px) {
  #tabbed-content-specs {
    display: block;
    margin-top: 32px;
  }
}

#now-trending {
  color: white;
  text-align: center;
  width: 100%;
  height: auto;
  min-height: 200px;
  padding: 2% 5%;
  margin-top: -150px;
  position: relative;
  z-index: 2;
}

.now-trending-background {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: -10;
  overflow: hidden;
  min-height: 390px;
}

.now-trending-background .slick-track {
  min-height: 390px;
}

.now-trending-background .slick-list {
  min-height: 390px;
}

.now-trending-background .slick-track img {
  width: auto;
}

.now-trending-background > img {
  width: auto;
  height: 100%;
}

@media (max-width: 991px) {
  .now-trending-background > img {
    height: 100%;
    width: auto;
    margin-left: -9999px;
    margin-right: -9999px;
    left: 0;
    right: 0;
  }
}

#now-trending-carousel h2 {
  font-size: 2.219em;
  margin-top: 0;
  font-weight: 100;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
}

#now-trending-carousel p {
  font-weight: 100;
  font-size: 1.313em;
}

#now-trending-carousel {
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
}

.trend-title {
  margin: 80px auto 0 auto;
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
}

#now-trending-carousel .slick-list {
  width: 75%;
  margin: 0 auto;
}

#now-trending-carousel button {
  background-color: #333;
}

#now-trending-carousel button:hover {
  background-color: black;
}

.story .btn {
  background-color: black;
}

.story .btn:hover {
  color: white;
  background-color: grey;
}

.now-trending_carousel_R {
  position: absolute;
  top: 20%;
  color: lightgrey;
  right: 0;
}

.now-trending_carousel_R:after {
  color: white;
  font-family: cardinal;
  content: "\e60c";
  font-size: 63px;
  padding: 1px;
}

@media (max-width: 1200px) {
  .now-trending_carousel_R:after {
    font-size: 4.5vw;
  }
}

.now-trending_carousel_R:hover::after {
  background: transparent;
  background-size: cover;
  opacity: .8;
  border-radius: 50%;
}

.now-trending_carousel_L {
  position: absolute;
  top: 20%;
  color: lightgrey;
}

.now-trending_carousel_L:before {
  color: white;
  font-family: cardinal;
  content: "\e609";
  font-size: 63px;
  padding: 1px;
}

@media (max-width: 1200px) {
  .now-trending_carousel_L:before {
    font-size: 4.5vw;
  }
}

.now-trending_carousel_L:hover::before {
  background: transparent;
  background-size: cover;
  opacity: .8;
  border-radius: 50%;
}

.now-trending_carousel_L:hover, .now-trending_carousel_R:hover {
  text-decoration: none !important;
}

#now-trending .slick-dots {
  list-style: none;
  outline: 0;
  padding: 0 10px 0 0;
  margin: 20px auto;
  width: 200px;
}

@media (max-width: 540px) {
  #now-trending .slick-dots {
    padding-bottom: 30px;
  }
}

#now-trending .slick-dots:focus {
  border: 0;
}

#now-trending .slick-dots li {
  position: relative;
  display: inline-block;
  height: 16px;
  width: 16px;
  margin: 0 1px;
  padding: 0;
  cursor: pointer;
  list-style: none;
  vertical-align: top;
  color: #333;
  left: 5px;
}

@media (max-width: 767px) {
  #now-trending .slick-dots li {
    left: 4px;
  }
}

#now-trending .slick-dots li.slick-active button:before {
  color: white;
}

#now-trending .slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 100%;
  width: 100%;
  outline: 0;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer;
  outline: 0;
}

#now-trending .slick-dots li button:before {
  position: absolute;
  left: 1px;
  content: '\2022';
  font-family: "slick";
  font-size: 35px;
  text-align: center;
  color: #2e2e2f;
  height: 0;
  width: 0;
  line-height: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white;
}

@media (max-width: 767px) {
  #now-trending {
    margin-top: -74px;
    background-position: center;
  }
  .trend-title {
    margin-top: 80px;
  }
  a.now-trending_carousel_L {
    bottom: 15%;
    top: inherit;
    left: 50px;
  }
  .now-trending_carousel_L:before {
    font-size: 40px;
  }
  a.now-trending_carousel_R {
    bottom: 15%;
    top: inherit;
    right: 50px;
  }
  .now-trending_carousel_R:after {
    font-size: 40px;
  }
  #now-trending-carousel .slick-list {
    width: 100%;
  }
  .now-trending-background .slick-track img {
    position: absolute;
    right: -30%;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  #now-trending {
    background-position: center;
    margin-top: -100px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .trend-title {
    margin-top: 95px;
  }
}

@media (max-width: 540px) {
  #now-trending {
    margin-top: -60px;
  }
  #now-trending-carousel h2 {
    font-size: 2em;
  }
  .now-trending-background .slick-track img {
    position: absolute;
    right: -70%;
  }
  #now-trending .slick-dots {
    margin: 10px auto;
  }
}

#now-trending .flat {
  width: auto;
  margin-left: -5.5vw;
  margin-right: -5.5vw;
}

@media (min-width: 1280px) {
  #now-trending .flat {
    margin-left: -70px;
    margin-right: -71px;
  }
}

@media (max-width: 767px) {
  #now-trending .flat {
    margin-left: -25px;
    margin-right: -25px;
  }
}

#now-trending > .now-trending-background > .slick-list {
  height: 100%;
}

#now-trending > .now-trending-background > .slick-list > .slick-track {
  height: 100%;
}

#now-trending > .now-trending-background > .slick-list > .slick-track > .slick-slide > img {
  height: 100%;
}

#home-case-study {
  position: relative;
  z-index: 0;
  height: 500px;
  overflow: hidden;
}

#home-case-study.gutter-escape {
  margin-left: -5.5vw;
  margin-right: -5.5vw;
}

@media (min-width: 1280px) {
  #home-case-study.gutter-escape {
    margin-left: -70px;
    margin-right: -71px;
  }
}

@media (max-width: 767px) {
  #home-case-study.gutter-escape {
    margin-left: -25px;
    margin-right: -25px;
  }
}

#home-case-study > div:nth-child(2) {
  padding: 0;
  padding-right: 5.5vw;
}

@media (max-width: 767px) {
  #home-case-study > div:nth-child(2) {
    padding-right: 25px;
  }
}

@media (min-width: 1280px) {
  #home-case-study > div:nth-child(2) {
    padding-right: 71px;
  }
}

#case-img {
  overflow: hidden;
  height: 100%;
  padding: 0;
}

.case-img-contain {
  position: absolute;
  text-align: center;
  padding: 0;
  border-radius: 0 50% 50% 0;
  overflow: hidden;
  width: 600px;
  height: 600px;
  right: 20px;
  top: -15px;
}

.case-img-contain img {
  height: 100%;
  width: 100%;
}

.center-outer {
  display: table;
  position: absolute;
  height: 100%;
  width: 100%;
}

.center-middle {
  display: table-cell;
  vertical-align: middle;
}

.center-center {
  margin-left: auto;
  margin-right: auto;
  width: 15%;
}

.play-icon {
  background: 0;
  border: 0;
  position: absolute;
  top: 44%;
  left: 34%;
}

.case-snippet {
  max-width: 624px;
  padding-top: 12%;
  padding-left: 28px;
}

.play-icon:after {
  color: #2e2e2f;
  font-family: cardinal;
  content: "\e614";
  font-size: 6vw;
  background: rgba(46, 46, 47, 0.25);
  background-size: cover;
  border-radius: 50%;
  cursor: pointer;
}

.play-icon:hover::after {
  background: rgba(46, 46, 46, 0.5);
}

.section-label {
  margin: 0;
  color: #e41f35;
  font-weight: bold;
}

.case-snippet h2 {
  margin-top: 10px;
  font-weight: 600;
  font-size: 2.625em;
}

.case-snippet p {
  color: #666;
  font-size: 1.75em;
}

.case-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #e41f35;
}

.case-nav li {
  float: left;
}

.case-nav li a {
  color: #e41f35;
}

.case-nav li a:hover {
  color: black;
}

.case-nav li.spacer {
  margin: 0 5px;
}

@media (max-width: 767px) {
  #home-case-study {
    margin-top: -30px;
    height: auto;
  }
  #home-case-study > div:nth-child(2) {
    padding: 0;
    padding-left: 5.5vw;
    padding-right: 5.5vw;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  #home-case-study > div:nth-child(2) {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 767px) and (min-width: 1280px) {
  #home-case-study > div:nth-child(2) {
    padding-left: 70px;
    padding-right: 71px;
  }
}

@media (max-width: 767px) {
  #case-img {
    height: 268px;
    border-radius: inherit;
  }
  .case-img-contain {
    position: absolute;
    text-align: center;
    padding: 0;
    width: 100%;
    height: auto;
    right: 0;
    border-radius: 0;
  }
  .case-snippet {
    margin: 0 auto;
    padding: 10% 0;
  }
  .play-icon {
    top: 40%;
    left: 42%;
  }
  .play-icon:after {
    font-size: 14vw;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  #home-case-study {
    margin-top: -20px;
    height: 400px;
  }
  .case-img-contain {
    top: -22%;
  }
  .case-snippet h2 {
    font-size: 2.625em;
  }
  .case-snippet p {
    font-size: 1.25em;
  }
}

@media (min-width: 768px) {
  .content #home-case-study > div:nth-child(2) {
    bottom: 30px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .content #home-case-study > div:nth-child(2) {
    bottom: 40px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .content #home-case-study > div:nth-child(2) > .case-snippet > h2 {
    font-size: 2em;
  }
}

.home-product-articles {
  margin-top: 30px;
  margin-left: -25px;
  margin-right: -25px;
}

.home-product-articles > div {
  padding-left: 10%;
  padding-right: 10%;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .home-product-articles > div {
    border: solid 0 #ccc;
    padding: 0;
    padding-left: 50px;
    padding-right: 50px;
  }
}

.home-product-articles > div > div {
  padding: 20px 0;
}

.home-product-articles > div > div > div.article-wrap {
  padding: 1em 0;
  height: 100%;
}

.home-product-articles > div > div > div.article-wrap > a {
  color: black;
  text-decoration: none;
}

.home-product-articles > div > div > div.article-wrap > a:hover {
  color: #e41f35;
}

.home-product-articles > div > div > div.article-wrap > a:hover:after {
  color: #e41f35;
}

@media (max-width: 1199px) {
  .home-product-articles > div > div > div.article-wrap {
    padding: 0;
    min-height: 10em;
    margin-top: 10px;
  }
}

.home-product-articles > div > div > div.article-wrap p {
  line-height: 1.2;
  font-size: 1.75em;
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
}

@media (max-width: 767px) {
  .home-product-articles > div > div > div.article-wrap p {
    font-size: 1em;
  }
}

.home-product-articles > div > div > div.article-wrap h2 > a {
  color: #333;
  line-height: 1.2;
}

.home-product-articles > div > div > div.article-wrap h2 a:hover {
  color: #e41f35;
}

.home-product-articles > div > div > div.article-wrap a.more-info {
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
  display: block;
  padding-top: 10px;
}

.home-product-articles > div > div > div.article-wrap a.more-info:after {
  color: #e41f35;
  content: "\0000a0\00BB";
  white-space: nowrap;
}

@media (max-width: 767px) {
  .home-product-articles > div > div > div.article-wrap a.more-info {
    font-size: 1em;
  }
}

.home-product-articles > div > div > div:last-child {
  padding-left: 0;
  padding-right: 0;
  display: block;
  font-size: 1em;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
}

@media (min-width: 768px) {
  .home-product-articles > div > div > div:last-child {
    display: inline-block;
    width: 75%;
  }
}

.home-product-articles > div > div > div:last-child > h2 {
  margin: 0;
  padding-top: 0;
  font-size: 2.625em;
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
}

@media (max-width: 767px) {
  .home-product-articles > div > div > div:last-child > h2 {
    font-size: 2em;
  }
}

.home-product-articles > div > div > div:last-child > p {
  text-indent: 0;
  margin: 0;
}

@media (max-width: 767px) {
  .home-product-articles > div > div > div:last-child > p {
    font-size: 1em;
  }
}

.home-product-articles > div > div > div.article-image-boundary {
  text-align: center;
  width: 85%;
  max-width: 13em;
  max-height: 100%;
  margin-right: 35px;
  margin-left: 15px;
  margin-top: 15px;
  float: right;
  vertical-align: top;
  display: block;
}

.home-product-articles > div > div > div.article-image-boundary > .article-date-container {
  border-radius: 10PX;
  border: 3px solid #fff;
  height: 100%;
  width: 140px;
  max-width: 80%;
  overflow: hidden;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 25px;
  margin-bottom: 20px;
  display: inline-block;
  font-size: 1em;
}

.article-date-month {
  background-color: #fde69f;
  padding: 3% 5%;
}

.article-date-day-wrap {
  background-color: #f3f3f3;
  padding: 2% 0 5% 0;
  font-weight: 300;
  border-top: 1px solid #fff;
}

.article-date-day {
  font-size: 3.75em;
  line-height: 1em;
  display: block;
}

.article-date-year {
  font-size: 1.25em;
  display: block;
}

@media (max-width: 1199px) {
  .home-product-articles > div > div > div.article-image-boundary {
    max-width: 10em;
    max-height: 10em;
    margin-top: 0;
    margin-right: 15px;
  }
}

@media (min-width: 768px) {
  .home-product-articles > div > div > div.article-image-boundary {
    float: none;
    display: inline-block;
    width: 25%;
    text-align: left;
    margin-left: 0;
    margin-top: 0;
  }
  .home-product-articles > div > div > div.article-image-boundary > .article-date-container {
    margin-bottom: 10px;
    font-size: .75em;
    width: 70%;
  }
}

@media (max-width: 767px) {
  .home-product-articles > div > div > div.article-image-boundary {
    max-width: 10em;
    max-height: 10em;
    margin-top: -10px;
    margin-bottom: 5px;
  }
}

@media (max-width: 540px) {
  .home-product-articles > div > div > div.article-image-boundary {
    float: none;
    margin-left: 0;
  }
}

.home-product-articles > div > div > div.article-image-boundary > .article-image-container {
  border-radius: 50%;
  border: 5px solid #fff;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.home-product-articles > div > div > div.article-image-boundary > .article-image-container > img {
  width: 100%;
  height: auto;
}

.product-article-home .product-article div div .article-wrap h2.article-title {
  font-size: 4em;
}

.service-case-study {
  margin-top: 25px;
  border: 1px solid #ccc;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 25px 8% 0;
}

.service-case-study > h2 {
  line-height: 1em;
  font-size: 1.75em;
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
  margin: 0;
}

.service-case-study > a {
  display: block;
  color: black;
}

.service-case-study > a:hover {
  color: #e41f35;
}

.service-case-study > a > .study-download-container {
  margin-top: 1em;
  position: relative;
  margin-bottom: 1em;
  width: 100%;
  height: 50px;
}

.service-case-study > a > .study-download-container > .service-download-icon {
  float: left;
  width: 30px;
}

.service-case-study > a > .study-download-container > .service-download-icon > img {
  width: 100%;
}

.service-case-study > a > .study-download-container > .service-download-link {
  float: left;
  font-size: 1em;
  padding-left: 15px;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  min-width: 50%;
}

.service-case-study > a > .study-download-container > .service-download-link:after {
  content: "\00BB";
  color: #e41f35;
  font-size: 1em;
}

.service-case-study > a > .study-download-container > .download-size {
  float: left;
  padding-left: 15px;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  font-size: .75em;
  min-width: 50%;
}

.category-2-category-container {
  border-radius: 5px;
  padding: 0;
  margin-bottom: 24px;
  display: inline-block;
  float: left;
  width: 100%;
  overflow: hidden;
}

.category-2-column {
  padding: 0 0 0 24px;
  float: left;
}

@media (max-width: 767px) {
  .category-2-column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .category-2-column {
    padding-left: 0;
  }
}

.category-2-category-container > .inner {
  width: 100%;
  height: 100%;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  display: inline-block;
  z-index: 50;
  padding-bottom: 20px;
  margin-bottom: 1px;
}

.lists-list-block-cat-3 h2 a {
  color: #fff;
}

.lists-list-block-cat-3 h2 a:hover {
  color: #000;
  text-decoration: none;
}

.category-2-category-container h2 a {
  color: #000;
}

.category-2-category-container h2 a:hover {
  color: #e41f35;
  text-decoration: none;
}

#all-categories-container.row {
  padding-left: 0;
  padding-right: 0;
  margin-left: -44px;
  margin-right: -20px;
}

@media (max-width: 767px) {
  #all-categories-container.row {
    margin-left: 0;
    margin-right: 0;
  }
}

.mobile-tabbed-content-title-text:after {
  font-family: cardinal;
  color: #e41f35;
  content: "\0000a0\e602";
  float: right;
  margin-right: 16px;
}

.category-2-category-container > .inner > .text-container {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 1em;
}

.category-2-category-container > .inner h2 {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 2em;
  margin-bottom: 0;
}

.category-2-category-image {
  width: 100%;
  max-width: 100%;
}

.category-2-category-container > .inner p {
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
  padding-top: 1.5625em;
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 1em;
}

.category-2-category-container > .inner ul {
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  margin-top: 1.5625em;
  list-style: none;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  width: 100%;
}

.category-2-category-container > .inner .text-container.collapsible {
  display: block;
  visibility: visible;
}

.category-2-category-container > .inner ul > li {
  margin-bottom: .938em;
}

.category-2-category-container > .inner ul > li > a:link {
  color: black;
  display: block;
}

.category-2-category-container > .inner ul > li > a:visited {
  color: black;
}

.category-2-category-container > .inner ul > li > a:hover {
  color: #e41f35;
}

.category-2-category-container > .inner ul > li > a:active {
  color: #e41f35;
}

.category-2-category-container > .inner ul > li:last-child {
  margin-bottom: 0;
}

.category-2-category-container > .inner ul > li:last-child > a {
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
}

.category-2-category-container > .inner ul > li > a:after {
  content: "\0000a0\00BB";
  white-space: nowrap;
  color: #e41f35;
  font-weight: normal;
}

.category-2-category-container > .inner ul > li > a:after:after {
  color: #e41f35;
  content: "\0000a0\00BB";
  white-space: nowrap;
}

.category-2-category-container.no-paragraph .inner p {
  display: none;
}

.category-2-category-container.no-img img {
  display: none;
}

@media (max-width: 991px) {
  .col-sm-4 .category-2-category-container > .inner h2 {
    font-size: 1.2em;
  }
  .col-sm-6 .category-2-category-container > .inner h2 {
    font-size: 1.9em;
  }
  .category-2-category-container > .inner h2:after {
    font-family: cardinal;
    color: #e41f35;
    content: "\0000a0\e602";
    float: right;
  }
  .category-2-category-container > .inner h2.expand:after {
    font-family: cardinal;
    color: #5d5d5d;
    content: "\0000a0\e613";
  }
  .category-2-category-container > .inner h2:hover {
    color: #e41f35;
    cursor: hand;
    cursor: pointer;
  }
  .category-2-category-container > .inner .text-container.collapsible {
    display: none;
    visibility: hidden;
  }
  .category-2-category-container > .inner .text-container.collapsible.expanded {
    display: block;
    visibility: visible;
  }
}

@media (max-width: 767px) {
  .col-xs-12 .category-2-category-container > .inner h2 {
    font-size: 2em;
  }
}

@media (min-width: 992px) {
  .category-2-category-container > .inner .text-container.collapsible {
    display: inline-block !important;
    visibility: visible !important;
  }
}

.category-header-background {
  position: absolute;
  min-height: 500px;
  max-width: 1600px;
  width: 1600px;
  background-repeat: no-repeat;
  background-position: 0 -240px;
  pointer-events: none;
  background-position-x: 50%;
  background-size: auto 100%;
}

@media (max-width: 767px) {
  .category-header-background {
    background-position-y: -300px;
  }
}

.category-header-background-image {
  height: 100%;
  width: 1600px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -9;
}

.category-header-background-bar {
  position: absolute;
  width: 100%;
  height: 82px;
  z-index: -10;
}

.category-header-background-gradient {
  height: 82px;
  width: 50px;
  position: absolute;
  z-index: -7;
  left: 0;
  display: none;
}

@media (max-width: 767px) {
  .category-header-background-image {
    width: 100%;
  }
  .category-header-background-gradient {
    display: none;
  }
}

.sign-in-div {
  display: none;
  float: right;
  padding-top: 30px;
  padding-right: 5.5vw;
  position: relative;
}

@media (max-width: 767px) {
  .sign-in-div {
    padding-right: 25px;
  }
}

@media (min-width: 1280px) {
  .sign-in-div {
    padding-right: 71px;
  }
}

@media (min-width: 768px) {
  .home .sign-in-div {
    display: block;
  }
}

.sign-in-div input {
  margin-left: 10px;
}

.sign-in-div > input[type="button"] {
  height: 37px;
  min-height: 28px;
  max-height: 37px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .sign-in-div {
    padding-top: 22px;
  }
  .sign-in-div > input[type="button"] {
    font-size: 13px;
    height: 31px;
  }
}

@media (max-width: 767px) {
  .sign-in-div {
    display: none;
  }
}

@media (min-width: 1280px) {
  .sign-in-div {
    padding-top: 30px;
  }
}

.sign-in-drop {
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
  padding: 30px 20px;
  display: none;
  background-color: #ebebeb;
  align: middle;
  color: #696969;
  position: relative;
}

.legacy-browser .sign-in-drop {
  display: block !important;
  background-color: #fff;
}

.sign-in-drop .sign-in-field {
  padding-right: 15px;
}

.sign-in-drop .sign-in-field > label {
  display: block;
  font-size: 14px;
  margin: 0;
  padding-left: 10px;
}

.sign-in-drop .sign-in-field > input {
  display: block;
  height: 36px;
}

.sign-in-drop .sign-in-field > a {
  display: block;
  padding-left: 10px;
  color: #cd192c;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
}

.sign-in-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1150px;
  height: 80px;
  display: block;
  position: relative;
}

.sign-in-wrapper > form > div {
  height: 80px;
  vertical-align: top;
}

.sign-in-drop .sign-in-field > input[type="text"] {
  color: black;
  background-color: white;
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  border-radius: 6px;
  padding-left: 10px;
}

.sign-in-drop .sign-in-field > input[type="password"] {
  border-radius: 6px;
  padding-left: 10px;
  font-size: 18px;
}

.sign-in-drop .sign-in-field > a {
  padding-top: 5px;
  font-size: 13px;
}

.sign-in-drop-message {
  width: 94%;
  display: inline-block;
  vertical-align: top;
  line-height: 80px;
}

.sign-in-drop-close {
  font-family: cardinal;
  display: inline-block;
  width: 5%;
  line-height: 80px;
  font-size: 20px;
  height: 80px;
}

.legacy-browser .sign-in-drop-close {
  display: none !important;
}

.close-search-mobile {
  line-height: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  top: 2px;
  padding-right: 20px;
  width: 50px;
  padding-top: 5px;
}

.sign-in-drop-close a {
  font-size: 50px;
  font-weight: 100;
  color: #5d5d5d;
}

.sign-in-drop-close a:hover {
  text-decoration: none;
  color: #e41f35;
}

.sign-in-user-name {
  display: inline-block;
  width: 27%;
  font-size: 14px;
}

.sign-in-user-name > a:after {
  content: "\0000a0\00BB";
  color: #e41f35;
}

.sign-in-password {
  display: inline-block;
  width: 28%;
  font-size: 14px;
}

.sign-in-submit {
  display: inline-block;
  width: 10%;
}

.sign-in-submit .btn {
  width: 100%;
  margin: 0 2%;
  font-size: 18px;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
}

.sign-in-submit a {
  text-align: center;
  font-size: 14px;
}

.order-express {
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
  display: inline-block;
  width: 25%;
  font-size: 21px;
  line-height: 80px;
  color: #545454;
  text-align: right;
  padding-right: 20px;
  min-width: 160px;
  white-space: nowrap;
}

.sign-in-triangle {
  position: absolute;
  padding: 1px;
  height: 10px !important;
  width: 20px !important;
  background-image: url("clientlibs/images/sign-in-ebebeb-triangle.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  left: 45%;
  top: 0;
  display: none;
}

.left-menu {
  display: block;
}

.left-menu > h3 {
  font-size: 15px;
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
  padding: 5px;
  margin: 0;
  height: 54px;
  line-height: 49px;
  display: none;
}

.left-menu > h3 > a {
  color: black;
  text-decoration: none;
}

.left-menu > h3 > a:hover {
  color: #e41f35;
}

.left-menu > h3 > a:hover:after {
  color: #e41f35;
}

@media (max-width: 991px) {
  .left-menu > h3 {
    display: block;
  }
}

.left-menu > h3 > a {
  display: block;
  padding-left: 15px;
}

.left-menu > h3 > a:after {
  font-family: cardinal;
  content: "\e60e";
  float: right;
}

.left-menu > h3 > a:after {
  padding-right: 15px;
  font-size: 25px;
  color: #686868;
}

.left-menu > h2 {
  padding-bottom: 15px;
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
  white-space: normal;
  height: 44px;
}

.left-menu > h2 > a {
  color: black;
  text-decoration: none;
}

.left-menu > h2 > a:hover {
  color: #e41f35;
}

.left-menu > h2 > a:hover:after {
  color: #e41f35;
}

@media (max-width: 991px) {
  .left-menu > h2 {
    border-bottom: solid 1px #d6d6d6;
    margin: 0;
    padding-left: 21px;
    font-size: 21px;
    line-height: 39px;
    font-family: "myriad-pro";
    font-weight: 700;
    font-style: normal;
  }
}

@media (min-width: 992px) {
  .left-menu > h2 {
    border-bottom: solid 1px black;
    padding-left: 0;
    font-size: 28px;
    line-height: 28px;
    font-family: "myriad-pro";
    font-weight: 300;
    font-style: normal;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .left-menu > h2 .raquo:after {
    content: '';
  }
}

.left-menu > ul {
  padding: 0;
}

@media (max-width: 991px) {
  .left-menu > ul {
    background-color: #efefef;
    font-family: "myriad-pro";
    font-weight: 400;
    font-style: normal;
  }
}

@media (min-width: 992px) {
  .left-menu > ul {
    background-color: white;
    font-family: "myriad-pro";
    font-weight: 300;
    font-style: normal;
  }
}

.left-menu > ul > li {
  display: block;
}

.left-menu > ul > li > a {
  color: black;
  text-decoration: none;
}

.left-menu > ul > li > a:hover {
  color: #e41f35;
}

.left-menu > ul > li > a:hover:after {
  color: #e41f35;
}

@media (max-width: 991px) {
  .left-menu > ul > li > a {
    padding: 0 0 0 21px;
    height: 53px;
    line-height: 53px;
    display: block;
    font-size: 18px;
    border-bottom: solid 1px white;
  }
  .left-menu > ul > li > a:after {
    font-family: cardinal;
    content: "\0000a0\e602";
    color: #e41f35;
  }
  .left-menu > ul > li > a:hover {
    color: black;
  }
  .left-menu > ul > li > a:after {
    float: right;
    padding-right: 15px;
    font-size: 30px;
  }
  .left-menu > ul > li > a.left-menu-expand:after {
    font-family: cardinal;
    content: "\0000a0\e613";
    color: #e41f35;
  }
  .left-menu > ul > li > a.left-menu-expand:after {
    color: #5d5d5d;
    float: right;
  }
}

@media (min-width: 992px) {
  .left-menu > ul > li > a {
    font-size: 20px;
    padding: 5px 0;
    height: auto;
    display: block;
    line-height: 28.57px;
  }
  .left-menu > ul > li > a:after {
    font-family: cardinal;
    content: "\0000a0\e60b";
    color: #e41f35;
  }
  .left-menu > ul > li > a:after {
    font-size: 10px;
  }
}

.left-menu > ul > li > ul {
  display: none;
  padding: 0;
}

.left-menu > ul > li > ul > li {
  display: block;
  padding: 0;
}

.left-menu > ul > li > ul > li > a {
  color: black;
  text-decoration: none;
}

.left-menu > ul > li > ul > li > a:hover {
  color: #e41f35;
}

.left-menu > ul > li > ul > li > a:hover:after {
  color: #e41f35;
}

.left-menu > ul > li > ul > li > a {
  display: block;
  width: 100%;
}

@media (max-width: 991px) {
  .left-menu > ul > li > ul > li > a {
    padding: 20px 15px 8px 21px;
    font-size: 15px;
    line-height: 15px;
    background-color: white;
  }
}

@media (min-width: 992px) {
  .left-menu > ul > li > ul > li > a {
    padding: 5px 2px 5px 15px;
    font-size: 16px;
    line-height: 16px;
  }
}

.left-menu > ul > li > ul > li > span {
  display: block;
  width: 100%;
}

@media (max-width: 991px) {
  .left-menu > ul > li > ul > li > span {
    padding: 20px 15px 8px 21px;
    font-size: 15px;
    line-height: 15px;
    background-color: white;
  }
}

@media (min-width: 992px) {
  .left-menu > ul > li > ul > li > span {
    padding: 5px 2px 5px 15px;
    font-size: 16px;
    line-height: 16px;
  }
}

.left-menu > ul > li > ul > li > span.left-menu-selected-product {
  color: #e41f35;
}

.left-menu > ul > li > ul > li > span.left-menu-selected-product > .raquo:after {
  content: '';
}

.left-menu > ul > li > ul > li:last-child {
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
}

@media (max-width: 991px) {
  .left-menu {
    display: none;
    width: 235px;
    padding: 0;
    background-color: #efefef;
  }
}

@media (min-width: 992px) {
  .left-menu {
    display: block;
    float: left;
    padding-right: 4vw;
    background-color: white;
  }
  .left-menu > h3 {
    display: none;
  }
}

.left-menu-mobile-browse {
  padding: 0;
  margin: 0;
  max-width: 300px;
  height: 39px;
}

@media (max-width: 767px) {
  .left-menu-mobile-browse {
    float: left;
    display: inline-block;
  }
}

.left-menu-mobile-browse > h2 {
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
  line-height: 39px;
}

.left-menu-mobile-browse > h2 > a {
  color: black;
  text-decoration: none;
}

.left-menu-mobile-browse > h2 > a:hover {
  color: #e41f35;
}

.left-menu-mobile-browse > h2 > a:hover:after {
  color: #e41f35;
}

.left-menu-mobile-browse > h2 > a {
  margin: 0;
  width: 100%;
  text-align: left;
  display: block;
  vertical-align: bottom;
}

.left-menu-mobile-browse > h2 > a:before {
  font-family: cardinal;
  content: "\e60d";
  background-color: #ccc;
  font-size: 20px;
  border-radius: 2px;
  position: relative;
  top: 3px;
  padding-left: 1px;
  padding-bottom: .5px;
}

@media (min-width: 992px) {
  .left-menu-mobile-browse {
    display: none;
  }
}

@media (max-width: 767px) {
  .product-details-main-container .left-menu-mobile-browse {
    margin-left: -15px;
    display: inline-block;
  }
}

.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}

.product-details-main-container {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 40px;
  padding: 0 5.5%;
}

@media (max-width: 767px) {
  .product-details-main-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.product-content {
  padding: 0;
  background-color: transparent;
  display: block;
  margin-top: 40px;
  min-height: 1000px;
}

@media (max-width: 767px) {
  .product-content {
    margin-top: 0;
    padding-top: 15px;
    border-top: solid 1px #ccc;
  }
}

.product-content .product-article {
  margin-left: 0;
  margin-right: 0;
}

.product-image-panel {
  height: 35em;
  float: left;
  width: 56%;
  margin-right: 25px;
}

.product-image-panel > div {
  height: 100%;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .product-image-panel {
    width: 100%;
  }
}

.product-header-description {
  margin-top: -2px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .product-header-description {
    font-size: 1.272em;
  }
}

@media (max-width: 767px) {
  .product-header-description {
    font-size: 1em;
  }
}

.product-title {
  padding-top: 0;
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
}

.product-title > h1 {
  margin: 0;
  font-size: 2em;
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
}

@media (max-width: 767px) {
  .product-title {
    width: 100%;
  }
}

.product-title.product-title-width-100 {
  width: 100%;
}

.product-rating {
  padding-top: 10px;
  font-weight: bold;
  font-size: 1.063em;
}

@media (max-width: 767px) {
  .product-rating {
    font-size: .85em;
  }
}

.product-rating > span > .fa {
  color: #e41f35;
}

.product-rating > a {
  color: black;
  text-decoration: none;
}

.product-rating > a:hover {
  color: #e41f35;
}

.product-rating > a:hover:after {
  color: #e41f35;
}

.product-rating > span > a {
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
  color: black;
}

.product-rating > span > a:hover {
  color: #e41f35;
}

@media (max-width: 767px) {
  .product-rating-inner {
    margin-top: 10px;
    display: inline-block;
  }
}

.product-short-description {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 1.15em;
  line-height: 1.25em;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
}

.product-short-description > a {
  color: black;
  text-decoration: none;
}

.product-short-description > a:hover {
  color: #e41f35;
}

.product-short-description > a:hover:after {
  color: #e41f35;
}

.product-short-description > a {
  padding-top: 10px;
  display: block;
  font-size: 16px;
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
}

.product-how-to-buy > div {
  overflow: hidden;
  border: solid 1px #ccc;
  border-radius: 5px;
  font-size: 1em;
  padding: 15px;
  padding-bottom: 10px;
  padding-right: 5px;
  margin-top: 10px;
}

@media (max-width: 767px) {
  .product-how-to-buy > div {
    width: auto;
    display: block;
  }
}

.product-how-to-buy > div > h2 {
  color: #e41f35;
  font-size: 1.75em;
  margin-top: 0;
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
}

.product-how-to-buy > div span.icons {
  font-family: cardinal;
  color: #e41f35;
  font-size: 1.4em;
  padding-right: 8px;
}

.product-how-to-buy > div > div > a {
  color: black;
  text-decoration: none;
}

.product-how-to-buy > div > div > a:hover {
  color: #e41f35;
}

.product-how-to-buy > div > div > a:hover:after {
  color: #e41f35;
}

.product-how-to-buy > div > div > a {
  display: block;
  padding-bottom: 3px;
}

.product-how-to-buy > div > div > a:after {
  color: #e41f35;
  content: "\0000a0\00BB";
  white-space: nowrap;
}

@media (max-width: 767px) {
  .product-how-to-buy > div > div {
    font-size: 1.5em;
  }
}

.product-download-sheet > div {
  padding-left: 0;
  padding-top: 15px;
}

.product-download-sheet > div > a {
  color: black;
  text-decoration: none;
}

.product-download-sheet > div > a:hover {
  color: #e41f35;
}

.product-download-sheet > div > a:hover:after {
  color: #e41f35;
}

.product-download-sheet > div > a > span > span:first-child {
  display: block;
  font-size: 1.5em;
}

.product-download-sheet > div > a > span > span:first-child:after {
  color: #e41f35;
  content: "\0000a0\00BB";
  white-space: nowrap;
}

@media (max-width: 767px) {
  .product-download-sheet > div > a > span > span:first-child {
    font-size: 2em;
  }
}

.product-download-sheet > div > a > span > span:last-child {
  display: block;
  font-size: 1em;
  line-height: .813em;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
}

@media (max-width: 767px) {
  .product-download-sheet > div > a > span > span:last-child {
    color: #a1a1a1;
    font-family: "myriad-pro";
    font-weight: 400;
    font-style: italic;
  }
}

.product-download-sheet > div > a > span:first-child {
  color: #e41f35;
  font-size: 2.5em;
  line-height: 1.5em;
  vertical-align: top;
  padding-right: 13px;
}

.product-download-sheet > div > a > span:first-child > img {
  height: 1.2em;
  vertical-align: top;
}

.service-detail-content-block h2 {
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  font-size: 2em;
  margin-top: 0;
  margin-bottom: 0;
}

.service-detail-content-block img {
  width: 100%;
  height: auto;
  max-width: 675px;
  margin-bottom: 38px;
}

.textTitleAsset .about-us-featured-zone img {
  margin-bottom: 0;
}

.service-detail-content-block p {
  font-size: 1em;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  margin-bottom: 20px;
  padding-top: 5px;
  display: inline-block;
}

.product-logo {
  border-bottom: solid 1px #ccc;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.product-logo > img {
  width: 100%;
  max-width: 480px;
}

.product-article {
  margin-top: 30px;
  margin-left: -25px;
  margin-right: -25px;
}

.product-article > div {
  padding-left: 25px;
  border: solid 1px #ccc;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .product-article > div {
    border: solid 0 #ccc;
    padding: 0;
  }
  .product-article {
    margin-top: 0;
  }
}

.product-article > div > div {
  padding: 20px;
}

.product-article > div > div > div > a {
  color: black;
  text-decoration: none;
}

.product-article > div > div > div > a:hover {
  color: #e41f35;
}

.product-article > div > div > div > a:hover:after {
  color: #e41f35;
}

.product-article > div > div > div a {
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
  display: block;
  padding-top: 10px;
}

.product-article > div > div > div a:after {
  color: #e41f35;
  content: "\0000a0\00BB";
  white-space: nowrap;
}

@media (max-width: 767px) {
  .product-article > div > div > div a {
    font-size: 1em;
  }
}

.product-article > div > div > div:last-child {
  padding-left: 0;
  padding-right: 0;
  display: block;
  font-size: 1em;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
}

@media (min-width: 768px) {
  .product-article > div > div > div:last-child {
    display: inline-block;
    width: calc(100% - 8em);
  }
}

.product-article > div > div > div:last-child > h2 {
  margin-top: 0;
  padding-top: 0;
}

.product-article > div > div > div:last-child > p {
  text-indent: 0;
}

@media (max-width: 767px) {
  .product-article > div > div > div:last-child > p {
    font-size: 1em;
  }
}

.product-article > div > div > div.article-image-boundary {
  width: 85%;
  max-width: 8em;
  max-height: 100%;
  margin-right: 15px;
  margin-left: 15px;
  margin-top: 15px;
  float: right;
  vertical-align: top;
  display: block;
}

@media (min-width: 768px) {
  .product-article > div > div > div.article-image-boundary {
    float: none;
    display: inline-block;
    width: 25%;
    margin-left: 0;
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .product-article > div > div > div.article-image-boundary {
    max-width: 90px;
    max-height: 90px;
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .product-article > div > div > div.article-image-boundary {
    max-width: 70px;
    max-height: 70px;
  }
}

.product-article > div > div > div.article-image-boundary > .article-image-container {
  border-radius: 50%;
  border: 5px solid #EEE;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.product-article > div > div > div.article-image-boundary > .article-image-container > img {
  width: 100%;
  height: auto;
}

.product-displayed-image {
  display: block;
}

@media (max-width: 767px) {
  .product-displayed-image > div {
    min-height: 25em;
  }
}

.product-displayed-image > div .slick-slide {
  text-align: center;
}

.product-displayed-image > div .scene-7-image {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}

.product-displayed-image > div .scene-7-image img.icon {
  position: absolute;
  bottom: 20px;
  height: 30px;
  width: 30px;
  background-color: rgba(0, 0, 0, 0.2);
}

.product-displayed-image > div .scene-7-image img.icon:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.product-displayed-image > div .scene-7-image img.icon.icon-full-screen {
  left: 20px;
}

.product-displayed-image > div .scene-7-image img.icon.icon-refresh {
  right: 20px;
}

.product-displayed-image > div .scene-7-image img.icon.icon-plus {
  right: 60px;
}

.product-displayed-image > div .scene-7-image img.icon.icon-minus {
  right: 100px;
}

.product-displayed-image > div img {
  max-width: 100%;
  max-height: 28.61em;
  width: auto;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
  cursor: pointer;
  border-radius: 5px;
}

.product-displayed-image > div iframe {
  max-width: 100%;
  max-height: 28.61em;
  display: block;
  padding: 5px;
}

.product-displayed-image-full {
  width: 100%;
  margin: auto;
  position: static;
}

.product-displayed-image-full .slick-prev {
  top: 50%;
  position: absolute;
}

.product-image-carousel {
  padding-right: 20px;
  padding-left: 20px;
  padding-top: 10px;
  width: 28em;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) and (max-width: 1280px) {
  .product-image-carousel {
    font-size: 1.25vw;
  }
}

@media (max-width: 767px) {
  .product-image-carousel {
    width: 25em;
    max-width: 100%;
  }
}

.product-image-carousel .slick-slide {
  margin-right: 3px;
  margin-left: 3px;
  border-radius: 5px;
  max-width: 98px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}

.product-image-carousel .product-image-selected {
  background-color: black;
  display: block;
}

.product-image-carousel .product-image-selected > img {
  opacity: .5;
}

.product-image-carousel .glyphicon-play:before {
  position: absolute;
  top: 25%;
  left: 35%;
  color: white;
}

.product-image-carousel img {
  width: 100%;
  max-height: 4.5em;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .product-image-carousel img {
    max-height: 60px;
  }
}

.product-image-carousel .carousel-arrow-left {
  position: absolute;
  right: 94%;
  top: 30%;
  z-index: 10;
  display: block;
}

.product-image-carousel .carousel-arrow-left:after {
  content: "\e616";
  font-family: cardinal;
  font-size: 2em;
  color: #c2c2c2;
}

.product-image-carousel .carousel-arrow-left:hover:after {
  color: #e41f35;
}

.product-image-carousel .carousel-arrow-right {
  display: block;
  top: 30%;
  left: 94%;
  position: absolute;
}

.product-image-carousel .carousel-arrow-right:after {
  content: "\e617";
  font-family: cardinal;
  font-size: 2em;
  color: #c2c2c2;
}

.product-image-carousel .carousel-arrow-right:hover:after {
  color: #e41f35;
}

.product-image-carousel .slick-disabled {
  cursor: default;
}

.product-image-carousel .slick-disabled:after {
  color: gainsboro;
}

.product-image-carousel .slick-disabled:hover:after {
  color: gainsboro;
}

.service-detail-header-row {
  margin-bottom: 60px;
}

@media (max-width: 991px) {
  .service-details-container {
    font-size: 14px;
  }
  .service-detail-header-row {
    margin-bottom: 40px;
  }
}

@media (min-width: 768px) {
  .service-content-column {
    padding-right: 35px;
  }
}

.service-details-container {
  margin-bottom: 40px;
}

.product-details-info {
  border-bottom: solid 1px #ccc;
  padding-bottom: 20px;
}

@media (max-width: 767px) {
  .product-details-main-container .utility-nav {
    display: none;
  }
  .product-details-main-container .utility-nav.utility-nav-mobile {
    display: block;
    float: right;
    margin-top: 2px;
    font-weight: normal;
  }
}

.connect-top {
  font-size: 1.5em;
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
  background-color: #5d5d5d;
  color: white;
  padding-left: 8%;
  padding-right: 8%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding-top: 15px;
  padding-bottom: 10px;
}

.connect-body h2 {
  font-size: 1.75em;
  color: #e41f35;
  margin-bottom: 0;
}

.connect-body {
  padding-left: 8%;
  padding-right: 8%;
  border: 1px solid #ccc;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.connect-body p {
  font-size: 1.25em;
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
  display: block;
  margin-bottom: 10px;
  padding: 0;
}

.connect-body .phone {
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  font-size: 2em;
  display: block;
}

.connect-body hr {
  border: 0;
  border-top: 1px solid #bebebe;
}

.connect-body .email {
  color: #5d5d5d;
  font-size: 1.5em;
  display: block;
  margin-bottom: 20px;
  cursor: pointer;
}

.connect-body label {
  color: #666;
  font-size: 12px;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  padding-left: 6px;
  margin-bottom: 0;
}

.connect-body input[type="text"] {
  background-color: #e7e7e7;
  border: 0;
  border-radius: 4px;
  margin-bottom: 8px;
  width: 100%;
}

.connect-body input[type="button"] {
  height: 35px;
  border-radius: 4px;
  border: 0;
  padding-left: 10%;
  padding-right: 10%;
  margin-bottom: 20px;
  margin-top: 12px;
  margin-left: 10px;
  background-color: #e41f35;
  color: white;
  font-size: 1.1em;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
}

.connect-body input[type="button"]:hover {
  background-color: #bc0000;
}

.connect-body a {
  color: #5d5d5d;
  font-size: 1em;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
}

.connect-body a:hover {
  color: #e41f35;
}

.col-connect {
  padding-left: 0;
  padding-right: 0;
}

.error-input {
  border: 1px solid #e41f35 !important;
}

.error-label {
  color: #e41f35 !important;
}

.error-message {
  color: #e41f35;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  font-style: italic;
  font-size: 1em;
  margin-bottom: 15px;
  display: none;
}

.connect-thanks {
  font-size: 1.5em;
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
  line-height: 1.2;
  margin-bottom: 20px;
  display: none;
}

.youtube-thumbnail {
  max-height: 73px;
  max-width: 98px;
}

.youtube-thumbnail > img {
  width: 100%;
  height: 100%;
}

.youtube-thumbnail.glyphicon-play:before {
  position: absolute;
  top: 25%;
  left: 35%;
  color: white;
  font-size: 2em;
}

.youtube-video iframe {
  margin-left: auto;
  margin-right: auto;
}

.visual-case-study {
  margin-top: 25px;
  border-radius: 8px;
  border: 1px solid #ccc;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding-top: 25px 0 20px 25px;
}

.article-image-container {
  border-radius: 50%;
  border: 5px solid #EEE;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.article-image-boundary {
  width: 85%;
  max-width: 200px;
  max-height: 200px;
  margin-left: auto;
  margin-right: auto;
}

.article-image-boundary img {
  width: 100%;
  height: auto;
}

.visual-case-study-copy {
  padding-left: 8%;
  padding-right: 8%;
}

.visual-case-study {
  padding: 10px;
}

.visual-case-study h2 {
  margin-top: 30px;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  font-size: 1.75em;
}

.visual-case-study h3 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1em;
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
}

.visual-case-study p {
  display: inline-block;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  margin-bottom: 15px;
  padding: 0;
}

.visual-case-study a {
  color: #2e2d2f;
  font-size: 1em;
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
}

.visual-case-study a:hover {
  color: #e41f35;
}

.visual-case-study a:after {
  content: "\00BB";
  color: #e41f35;
  font-size: 1em;
}

@media (max-width: 767px) {
  .article-image-boundary {
    max-width: 90px;
    max-height: 90px;
    float: right;
    margin-right: 15px;
    margin-left: 15px;
  }
  .visual-case-study span {
    display: inline;
  }
  .visual-case-study a {
    display: block;
    margin-top: 20px;
  }
  .visual-case-study {
    border: 0;
  }
  .visual-case-study h2 {
    margin-top: 20px;
    padding-top: 0;
  }
  .visual-case-study-copy {
    padding-left: 0;
    padding-right: 0;
  }
}

#no-img-header {
  padding: 0 !important;
  margin-top: 5px !important;
}

#img-header {
  margin-top: 30px !important;
  padding: 0;
}

.service-detail-text-content h2 {
  margin-top: 0;
  font-size: 2em;
}

.service-detail-text-content p {
  padding-top: 0;
}

.service-detail-text-content {
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  margin-bottom: 40px;
}

.service-detail-text-content li {
  margin-top: 15px;
}

.service-detail-text-content ul {
  padding-left: 22px;
}

.home-small-articles {
  background-color: #92d3e1;
  width: 100%;
  margin-left: 0;
}

.home-small-articles > .btn-black {
  background-color: #333;
  margin: 50px 45%;
  color: white;
}

@media (max-width: 767px) {
  .home-small-articles > .btn-black {
    margin: 50px 40%;
  }
}

.home-small-articles > .btn-black:hover {
  background-color: black;
}

.home-small-articles > .product-article > div {
  border: solid 0;
  padding-right: 5.5%;
  padding-left: 5.5%;
}

.home-small-articles > .product-article > div h2 {
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
  font-size: 1.5em !important;
}

.home-small-articles > .product-article > div > div > .article-image-boundary {
  margin-right: 0;
}

.category-1-container .category-header-background {
  background-image: url(clientlibs/images/category-1-background.png);
  left: 0;
  width: 100%;
}

.category-1-container .product-article {
  margin-left: -20px;
  margin-right: -20px;
}

.about-us-article .product-article {
  margin-left: 0;
  margin-right: 0;
}

.about-us-article .product-article > div {
  border: 0;
}

.category-header-1 {
  position: relative;
}

.category-header-1 h1 {
  font-size: 3em;
  white-space: normal;
}

@media (max-width: 767px) {
  .category-header-1 > h1 {
    font-size: 2em;
  }
}

@media (min-width: 768px) {
  .category-header-1 {
    padding-right: 10%;
  }
}

.category-description {
  font-size: 1.25em;
  padding-bottom: 10px;
}

@media (max-width: 767px) {
  .category-description {
    font-size: 1.1em;
  }
  .category-description > p {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .category-description {
    padding-right: 10%;
  }
}

.category-1-blocks {
  margin-left: -44px;
  margin-right: -20px;
}

.category-1-blocks > div {
  padding-left: 24px;
  padding-right: 0;
}

@media (max-width: 767px) {
  .category-1-blocks {
    margin-left: -24px;
    margin-right: 0;
  }
}

.links-list-block {
  border: solid 1px #cdcdcd;
  margin-top: 24px;
  padding-left: 20px;
  border-radius: 5px;
  background-color: #f9f9f9;
  padding-bottom: 24px;
  padding-top: 24px;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
}

.links-list-block > img {
  float: right;
  padding-right: 25px;
  height: 1.6em;
}

@media (min-width: 768px) {
  .links-list-block.half-block > ul {
    width: 49%;
    display: inline-block;
  }
}

@media (min-width: 768px) and (min-width: 768px) and (max-width: 991px) {
  .links-list-block.half-block > ul {
    width: 100%;
  }
}

.links-list-block > p {
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
  padding-right: 20px;
}

.links-list-block > p > a {
  color: black;
  text-decoration: none;
}

.links-list-block > p > a:hover {
  color: #e41f35;
}

.links-list-block > p > a:hover:after {
  color: #e41f35;
}

.links-list-block > p > a {
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
}

.links-list-block > p > a:after {
  color: #e41f35;
  content: "\0000a0\00BB";
  white-space: nowrap;
}

.links-list-block > h2 {
  font-size: 2em;
  margin-top: 0;
  margin-bottom: .3em;
  padding-right: 20px;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
}

.links-list-block > h2 > a {
  color: black;
  text-decoration: none;
}

.links-list-block > h2 > a:hover {
  color: #e41f35;
}

.links-list-block > h2 > a:hover:after {
  color: #e41f35;
}

.links-list-block > ul {
  vertical-align: top;
  padding-left: 0;
}

.links-list-block > ul > li {
  display: block;
  padding-top: 12px;
  vertical-align: top;
  width: 100%;
  padding-right: 10px;
}

.links-list-block > ul > li > a {
  color: black;
  text-decoration: none;
}

.links-list-block > ul > li > a:hover {
  color: #e41f35;
}

.links-list-block > ul > li > a:hover:after {
  color: #e41f35;
}

.links-list-block > ul > li > a {
  display: block;
}

@media (min-width: 768px) {
  .links-list-block.full-block > p {
    width: 75%;
  }
}

.links-list-block.full-block ul {
  display: inline-block;
}

@media (min-width: 992px) {
  .links-list-block.full-block ul:nth-child(3) {
    width: 24%;
  }
  .links-list-block.full-block ul:nth-child(4) {
    width: 27.5%;
  }
  .links-list-block.full-block ul:nth-child(5) {
    width: 24%;
  }
  .links-list-block.full-block ul:nth-child(6) {
    width: 22%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .links-list-block.full-block ul:nth-child(3) {
    width: 53%;
  }
  .links-list-block.full-block ul:nth-child(4) {
    width: 44%;
  }
}

.links-list-block.full-block li {
  white-space: normal;
}

.links-list-block > h2 > img {
  height: 100%;
  float: right;
  width: auto;
  display: block;
}

@media (max-width: 767px) {
  .links-list-block > h2 {
    font-size: 1.6em;
  }
  .links-list-block > h2 > img {
    max-height: 100%;
  }
  .links-list-block > ul > li {
    padding-top: .3em;
  }
}

.category-2-container .product-article {
  margin-left: -20px;
  margin-right: -20px;
}

.category-2-container .category-header-background {
  background-image: url(clientlibs/images/category-2-background.png);
  background-position: 0 -320px;
  right: 0;
}

@media (max-width: 1199px) {
  .category-2-container .category-header-background {
    background-position: 0 -330px;
  }
}

@media (max-width: 767px) {
  .category-2-container .category-header-background {
    background-position: 0 -370px;
  }
}

.category-2-container .product-article {
  margin-top: 0;
}

.category-2-container .product-article .article-image-boundary {
  float: left;
}

@media (max-width: 767px) {
  .category-2-container .product-article .article-image-boundary {
    float: right;
  }
  .category-2-container .product-article .category-2-container .breadcrumbs {
    display: none;
  }
}

.category-3-container .category-header-1 {
  margin-top: 40px;
}

.category-3-container .category-description {
  font-size: 1.125em;
}

@media (max-width: 767px) {
  .category-3-container .product-article > div > div {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.lists-list-block-cat-3 {
  background-color: #f9f9f9;
  border: solid 1px #ccc;
  border-radius: 5px;
  margin-top: 24px;
}

.lists-list-block-cat-3.left-block {
  margin-left: -25px;
}

.lists-list-block-cat-3.right-block {
  margin-right: -25px;
}

.lists-list-block-cat-3 > h2 {
  display: block;
  background-color: #a7be7d;
  color: white;
  min-height: 2.7em;
  font-size: 2em;
  padding-top: 1em;
  padding-left: 25px;
  padding-bottom: .7em;
  margin-top: 0;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
}

.lists-list-block-cat-3 > p {
  font-size: 1.25em;
  padding-top: .7em;
  padding-left: 25px;
  padding-right: 5px;
}

.lists-list-block-cat-3 > ul {
  display: block;
  padding-left: 25px;
  margin-bottom: 1em;
}

.lists-list-block-cat-3 > ul > li {
  display: block;
  padding: 0;
}

.lists-list-block-cat-3 > ul > li > a {
  color: black;
  text-decoration: none;
}

.lists-list-block-cat-3 > ul > li > a:hover {
  color: #e41f35;
}

.lists-list-block-cat-3 > ul > li > a:hover:after {
  color: #e41f35;
}

.lists-list-block-cat-3 > ul > li:last-child > a {
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
}

.lists-list-block-cat-3 > ul > li > a {
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  display: block;
  width: 100%;
  height: 100%;
  padding-bottom: 5px;
  padding-top: 5px;
}

.lists-list-block-cat-3 > ul > li > a:after {
  color: #e41f35;
  content: "\0000a0\00BB";
  white-space: nowrap;
}

@media (max-width: 767px) {
  .lists-list-block-cat-3.right-block, .lists-list-block-cat-3.left-block {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .lists-list-block-cat-3 > h2, .lists-list-block-cat-3 > p, .lists-list-block-cat-3 > ul {
    padding-left: 12px;
  }
}

.category-3-image {
  padding: 0;
  margin-right: -27px;
  border-radius: 10px;
  box-shadow: 0 0 6px 6px white inset;
  background-image: url("clientlibs/images/categories/category-3-image.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: 100% 50%;
  height: 23em;
}

@media (max-width: 767px) {
  .category-3-image {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .category-3-image {
    height: 200px;
    background-size: 100% 100%;
  }
}

.full-width-image-article-black {
  background-color: black;
  margin-left: -5.5vw;
  margin-right: -5.5vw;
  padding-left: 5.5vw;
  padding-right: 5.5vw;
  overflow: hidden;
}

@media (min-width: 1280px) {
  .full-width-image-article-black {
    margin-left: -70px;
    margin-right: -71px;
  }
}

@media (max-width: 767px) {
  .full-width-image-article-black {
    margin-left: -25px;
    margin-right: -25px;
  }
}

@media (max-width: 767px) {
  .full-width-image-article-black {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (min-width: 1280px) {
  .full-width-image-article-black {
    padding-left: 70px;
    padding-right: 71px;
  }
}

.full-width-image-article-black > div {
  height: 100%;
  position: relative;
  padding-bottom: 25px;
}

.full-width-image-article-black > div img {
  position: absolute;
  top: 0;
  right: 0;
  margin-left: -5.5vw;
  margin-right: -5.5vw;
  height: 100%;
  z-index: 0;
}

@media (min-width: 1280px) {
  .full-width-image-article-black > div img {
    margin-left: -70px;
    margin-right: -71px;
  }
}

@media (max-width: 767px) {
  .full-width-image-article-black > div img {
    margin-left: -25px;
    margin-right: -25px;
  }
}

@media (max-width: 767px) and (max-width: 587px) {
  .full-width-image-article-black > div img {
    right: -10%;
  }
}

@media (max-width: 767px) and (max-width: 498px) {
  .full-width-image-article-black > div img {
    right: -15%;
  }
}

@media (max-width: 767px) and (max-width: 409px) {
  .full-width-image-article-black > div img {
    right: -35%;
  }
}

@media (max-width: 767px) and (max-width: 320px) {
  .full-width-image-article-black > div img {
    right: -50%;
  }
}

.full-width-image-article-black > div > div {
  z-index: 1;
  position: relative;
}

.full-width-image-article-black > div > div > h2 {
  color: white;
  width: 60%;
  font-size: 3em;
  line-height: 1.2em;
  padding-top: 20px;
  padding-bottom: 10px;
  margin-top: 0;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .full-width-image-article-black > div > div > h2 {
    font-size: 2.429em;
    width: 80%;
  }
}

.full-width-image-article-black > div > div > p {
  color: white;
  width: 60%;
  font-size: 1.25em;
}

.full-width-image-article-black > div > div > a {
  color: black;
  text-decoration: none;
}

.full-width-image-article-black > div > div > a:hover {
  color: #e41f35;
}

.full-width-image-article-black > div > div > a:hover:after {
  color: #e41f35;
}

.full-width-image-article-black > div > div > a {
  color: white;
  display: block;
  font-size: 1.1em;
  margin-bottom: .3em;
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
}

.full-width-image-article-black > div > div > a:after {
  color: #e41f35;
  content: "\0000a0\00BB";
  white-space: nowrap;
}

.full-width-image-article-light {
  margin-left: -5.5vw;
  margin-right: -5.5vw;
  padding-left: 5.5vw;
  padding-right: 5.5vw;
  overflow: hidden;
  position: relative;
}

@media (min-width: 1280px) {
  .full-width-image-article-light {
    margin-left: -70px;
    margin-right: -71px;
  }
}

@media (max-width: 767px) {
  .full-width-image-article-light {
    margin-left: -25px;
    margin-right: -25px;
  }
}

@media (max-width: 767px) {
  .full-width-image-article-light {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (min-width: 1280px) {
  .full-width-image-article-light {
    padding-left: 70px;
    padding-right: 71px;
  }
}

@media (max-width: 640px) {
  .full-width-image-article-light {
    margin-top: 0;
    padding-top: 220px;
  }
}

@media (max-width: 540px) {
  .full-width-image-article-light {
    padding-top: 70vw;
  }
  .carousel-full-width-article .slick-dots {
    top: 60vw;
  }
}

@media (min-width: 641px) and (max-width: 767px) {
  .full-width-image-article-light {
    margin-top: 0;
    padding-top: 310px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .full-width-image-article-light {
    font-size: 12.5px;
  }
}

@media (min-width: 768px) {
  .full-width-image-article-light {
    height: 440px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .full-width-image-article-light {
    height: 340px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .full-width-image-article-light {
    height: 415px;
  }
}

.full-width-image-article-light > div {
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

@media (max-width: 640px) {
  .full-width-image-article-light > div {
    height: 220px;
  }
}

@media (min-width: 641px) and (max-width: 767px) {
  .full-width-image-article-light > div {
    height: 310px;
  }
}

@media (max-width: 540px) {
  .full-width-image-article-light > div {
    height: 70vw;
  }
}

@media (min-width: 1600px) {
  .full-width-image-article-light > div {
    width: 1600px;
  }
}

.full-width-image-article-light > div img {
  position: absolute;
  height: 100%;
  right: 0;
}

.full-width-image-article-light > h2 {
  position: relative;
  width: 50%;
  font-size: 3em;
  line-height: 1.2em;
  padding-top: 20px;
  padding-bottom: 10px;
  margin-top: 0;
  margin-bottom: 0;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .full-width-image-article-light > h2 {
    font-size: 2.5em;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .full-width-image-article-light > h2 {
    width: 50%;
    font-size: 2em;
  }
}

@media (max-width: 767px) and (min-width: 541px) {
  .full-width-image-article-light > h2 {
    font-size: 2em;
    width: 50%;
    position: absolute;
    top: 0;
  }
}

@media (max-width: 540px) {
  .full-width-image-article-light > h2 {
    font-size: 2em;
    width: 100%;
  }
}

.full-width-image-article-light > p {
  position: relative;
  width: 50%;
  font-size: 1.25em;
}

@media (min-width: 768px) and (max-width: 991px) {
  .full-width-image-article-light > p {
    width: 45%;
  }
}

@media (max-width: 767px) {
  .full-width-image-article-light > p {
    width: 100%;
  }
}

@media (max-width: 767px) and (min-width: 541px) {
  .full-width-image-article-light > p {
    margin-top: 20px;
  }
}

.full-width-image-article-light > a {
  color: black;
  text-decoration: none;
}

.full-width-image-article-light > a:hover {
  color: #e41f35;
}

.full-width-image-article-light > a:hover:after {
  color: #e41f35;
}

.full-width-image-article-light > a {
  position: relative;
  display: block;
  font-size: 1.1em;
  margin-bottom: 25px;
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
}

.full-width-image-article-light > a:after {
  color: #e41f35;
  content: "\0000a0\00BB";
  white-space: nowrap;
}

.full-width-image-article-light.image-left > div {
  right: auto;
  left: 0;
}

.full-width-image-article-light.image-left > div > img {
  right: auto;
  left: 0;
}

@media (min-width: 541px) {
  .full-width-image-article-light.image-left > h2 {
    margin-left: 45%;
  }
}

@media (min-width: 768px) {
  .full-width-image-article-light.image-left > p {
    margin-left: 45%;
  }
  .full-width-image-article-light.image-left > a {
    margin-left: 45%;
  }
}

@media (min-width: 768px) {
  .full-width-image-article-light.breadcrumb-padding {
    padding-top: 64px;
  }
}

@media (min-width: 768px) {
  .breadcrumb-background {
    margin-top: -64px;
    padding-top: 64px;
  }
}

.thought-leadership-filter {
  position: relative;
  margin-left: -20px;
  margin-right: -20px;
}

.thought-leadership-filter-type {
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 767px) {
  .thought-leadership-filter-type {
    padding-right: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .thought-leadership-filter-type {
    font-size: .9em;
  }
}

@media (max-width: 767px) {
  .thought-leadership-filter-type {
    margin-left: 0;
  }
}

.thought-leadership-filter-type > div {
  display: inline-block;
}

.thought-leadership-filter-type > div > a {
  color: black;
  text-decoration: none;
}

.thought-leadership-filter-type > div > a:hover {
  color: #e41f35;
}

.thought-leadership-filter-type > div > a:hover:after {
  color: #e41f35;
}

.thought-leadership-filter-type > div > a {
  display: block;
  font-size: 2.25em;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .thought-leadership-filter-type > div > a {
    font-size: 1.8em;
  }
}

@media (max-width: 767px) {
  .thought-leadership-filter-type > div > a {
    font-size: 1.5em;
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (max-width: 400px) {
  .thought-leadership-filter-type > div > a {
    font-size: 1.2em;
  }
}

.thought-leadership-filter-type > div > a:after {
  font-family: cardinal;
  content: "\0000a0\e60b";
  color: #e41f35;
}

.thought-leadership-filter-type > div > a:after {
  font-size: .5em;
}

.thought-leadership-filter-type > div:first-child {
  display: block;
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
}

.thought-leadership-filter-type > div:nth-child(2) > a {
  padding-left: 0;
}

.thought-leadership-filter-type > div.selected {
  position: relative;
}

.thought-leadership-filter-type > div.selected:after {
  background-image: url("clientlibs/images/pdp_arrow_4x_nb.png");
  z-index: 2;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 7px 14px;
  content: "";
  position: absolute;
  left: calc(50% - 25px);
  bottom: -16px;
}

@media (max-width: 767px) {
  .thought-leadership-filter-type > div.selected:after {
    left: calc(50% - 20px);
  }
}

.thought-leadership-filter-type > div.selected > a {
  color: #e41f35;
}

.thought-leadership-sort {
  position: relative;
  min-height: 3.5em;
}

@media (min-width: 768px) {
  .thought-leadership-sort {
    position: absolute;
    top: 0;
    right: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .thought-leadership-sort {
    font-size: .9em;
  }
}

@media (max-width: 767px) {
  .thought-leadership-sort {
    margin-top: 10px;
    padding-left: 20px;
  }
}

.thought-leadership-sort > div {
  padding-top: 1em;
  margin-top: -1em;
  position: absolute;
  border-radius: 5px;
}

.thought-leadership-sort > div > div {
  display: none;
}

.thought-leadership-sort > div > div.selected {
  display: block;
}

.thought-leadership-sort > div > div > a {
  color: black;
  text-decoration: none;
}

.thought-leadership-sort > div > div > a:hover {
  color: #e41f35;
}

.thought-leadership-sort > div > div > a:hover:after {
  color: #e41f35;
}

.thought-leadership-sort > div > div > a {
  display: block;
  font-size: 2.25em;
}

@media (min-width: 768px) and (max-width: 991px) {
  .thought-leadership-sort > div > div > a {
    font-size: 1.8em;
  }
}

@media (max-width: 767px) {
  .thought-leadership-sort > div > div > a {
    font-size: 1.5em;
  }
}

@media (max-width: 400px) {
  .thought-leadership-sort > div > div > a {
    font-size: 1.2em;
  }
}

.thought-leadership-sort > div > div > a:after {
  font-family: cardinal;
  content: "\0000a0\e60b";
  color: #e41f35;
}

.thought-leadership-sort > div > div > a:after {
  font-size: .5em;
  padding-left: 3px;
}

.thought-leadership-sort > div > div:first-child {
  display: block;
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
}

.thought-leadership-sort > div.open {
  white-space: nowrap;
  z-index: 10;
  background-color: #ccc;
  margin-left: -2.45em;
  padding-right: 1em;
  padding-bottom: 1em;
}

@media (max-width: 767px) {
  .thought-leadership-sort > div.open {
    margin-left: -24px;
  }
}

.thought-leadership-sort > div.open > div {
  display: block;
}

.thought-leadership-sort > div.open > div > a {
  padding-left: 1.125em;
}

.thought-leadership-sort > div.open > div > a:after {
  content: '';
}

.thought-leadership-sort > div.open > div.selected > a {
  margin-left: -0.75em;
}

.thought-leadership-sort > div.open > div.selected > a:before {
  font-family: Glyphicons Halflings;
  content: '\e013';
  font-size: .5em;
}

.thought-leadership-sort > div.open > div:first-child {
  display: block;
  padding-left: 2.45em;
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
}

@media (max-width: 767px) {
  .thought-leadership-sort > div.open > div:first-child {
    padding-left: 24px;
  }
}

.thought-leadership-header {
  font-size: 2em;
}

@media (max-width: 767px) {
  .thought-leadership-header {
    margin-left: 0;
    font-size: 1.125em;
  }
}

.thought-leadership-filter-options {
  padding: 0.7em 20px;
  background-color: #f7f7f7;
  border-radius: 5px;
  margin-top: 15px;
  display: none;
  border: solid 1px #ccc;
}

@media (max-width: 767px) {
  .thought-leadership-filter-options {
    margin-left: 0;
    padding: 15px 15px 5px 20px;
  }
}

.thought-leadership-filter-options > div {
  width: 100%;
  position: relative;
}

.thought-leadership-filter-options > div > a:after {
  font-family: cardinal;
  content: "\e60e";
  float: right;
}

.thought-leadership-filter-options > div > a:after {
  position: absolute;
  top: 0;
  right: 0;
  color: #6e6e6e;
}

@media (max-width: 767px) {
  .thought-leadership-filter-options > div > a:after {
    top: -10px;
    font-size: .8em;
    right: -5px;
  }
}

.thought-leadership-filter-options > div > div {
  vertical-align: top;
  display: inline-block;
  width: 24%;
  font-size: 1.125em;
}

@media (max-width: 767px) {
  .thought-leadership-filter-options > div > div {
    font-size: .8em;
    width: 49%;
  }
}

.thought-leadership-filter-options > div > div > label {
  cursor: pointer;
  padding: .5em 0;
}

.thought-leadership-filter-options > div > div > label > input[type=checkbox] {
  display: none;
}

.thought-leadership-filter-options > div > div > label > input[type=checkbox] + span {
  width: 1.39em;
  height: 1.39em;
  display: inline-block;
  background-color: #ccc;
  position: relative;
  bottom: .1em;
  margin-right: .3em;
  vertical-align: middle;
  border-radius: 5px;
}

.thought-leadership-filter-options > div > div > label > input[type=checkbox] + span + span {
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
}

.thought-leadership-filter-options > div > div > label > input[type=checkbox]:checked + span:after {
  font-family: Glyphicons Halflings;
  content: '\e013';
  font-size: 1em;
  position: relative;
  left: .3em;
  top: -0.2em;
}

.thought-leadership-filter-options > div > div > label > input[type=checkbox]:checked + span ~ span {
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
}

.about-us-featured-zone {
  border-radius: 8px;
  overflow: auto;
  margin-top: 50px;
  border: 1px solid #ccc;
}

.about-us-featured-zone img {
  width: 100%;
  height: 100%;
  border: 0;
}

.about-feature-description h2 {
  margin: 0;
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
  color: #fff;
  font-size: 1.5em;
}

.about-feature-description p {
  margin: 0;
  padding: 0;
  color: white;
  font-size: 1.125em;
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
}

.about-feature-description {
  background-color: #5d5d5d;
  width: 100%;
  padding: 1.25em;
}

.about-feature-description > a {
  color: black;
  text-decoration: none;
}

.about-feature-description > a:hover {
  color: #e41f35;
}

.about-feature-description > a:hover:after {
  color: #e41f35;
}

.about-feature-description > a {
  color: white;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
}

.about-feature-description > a:last-child:after {
  color: #e41f35;
  content: "\0000a0\00BB";
  white-space: nowrap;
}

.about-feature-description > a:last-child:after {
  color: white;
}

.about-feature-description > a:last-child:hover {
  color: black;
}

.about-feature-description > a:last-child:hover:after {
  color: black;
}

.about-feature-description > a > h2:hover {
  color: black;
}

.about-us-featured-zone-content {
  padding-bottom: 50px;
}

.thought-leadership-selected-filters {
  display: none;
  margin-top: 5px;
  padding-left: 20px;
}

.thought-leadership-selected-filters > div {
  padding-top: 15px;
}

.thought-leadership-selected-filters > div > span {
  display: block;
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
}

.thought-leadership-selected-filters > div > div {
  background-color: #e5e5e5;
  display: inline-block;
  padding: 8px 15px 8px 15px;
  margin: 0.5em 1em 0.5em 0;
  border-radius: 5px;
  white-space: nowrap;
}

.thought-leadership-selected-filters > div > div:nth-child(2) {
  background-color: #e41f35;
  min-width: 75px;
  margin-right: .9em;
  color: white;
}

.thought-leadership-selected-filters > div > div:nth-child(2) > a:after {
  color: white;
}

.thought-leadership-selected-filters > div > div:nth-child(2) > a:hover:after {
  color: black;
}

.thought-leadership-selected-filters > div > div > a:after {
  font-family: cardinal;
  content: "\e60e";
  float: right;
}

.thought-leadership-selected-filters > div > div > a:after {
  color: #6e6e6e;
  font-size: .8em;
  padding: 3px 1px 4px 10px;
  cursor: pointer;
  float: none;
}

.thought-leadership-selected-filters > div > div > a:hover:after {
  color: #e41f35;
}

.thought-leadership-results {
  margin-left: -50px;
  margin-right: -30px;
}

@media (max-width: 767px) {
  .thought-leadership-results {
    padding: 0;
    margin-left: -20px;
    margin-right: 0;
  }
}

.thought-leadership-results > div {
  padding-right: 0;
  padding-left: 20px;
}

.thought-leadership-results > div:first-child {
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
  padding-right: 50px;
  padding-left: 50px;
}

@media (max-width: 767px) {
  .thought-leadership-results > div:first-child {
    padding-left: 20px;
    padding-right: 0;
  }
}

.thought-leadership-results .displaying-results {
  padding-right: 29px;
}

.thought-leadership-results .displaying-results.bottom {
  margin-top: 23px;
}

@media (max-width: 767px) {
  .thought-leadership-results .displaying-results {
    padding-right: 0;
  }
  .thought-leadership-results .displaying-results.bottom {
    float: none;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
  }
}

.thought-leadership-result-block {
  padding-top: 0;
  padding-bottom: 1em;
  margin-top: 1em;
  border: solid 1px #ccc;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .thought-leadership-result-block {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .thought-leadership-result-block {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 992px) {
  .thought-leadership-result-block {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.thought-leadership-result-block > h2 {
  margin: 0;
  font-size: 1.125em;
  padding: 1em 2em;
  color: white;
  background-color: #5d5d5d;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

@media (max-width: 767px) {
  .thought-leadership-result-block > h2 {
    margin-left: -20px;
    margin-right: -20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .thought-leadership-result-block > h2 {
    margin-left: -30px;
    margin-right: -30px;
  }
}

@media (min-width: 992px) {
  .thought-leadership-result-block > h2 {
    margin-left: -40px;
    margin-right: -40px;
  }
}

.thought-leadership-result-block > div {
  margin-bottom: 1em;
  height: 11em;
  overflow: hidden;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .thought-leadership-result-block > div {
    margin-left: -20px;
    margin-right: -20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .thought-leadership-result-block > div {
    margin-left: -30px;
    margin-right: -30px;
  }
}

@media (min-width: 992px) {
  .thought-leadership-result-block > div {
    margin-left: -40px;
    margin-right: -40px;
  }
}

.thought-leadership-result-block > div > img {
  min-height: 100%;
  min-width: 100%;
}

.thought-leadership-result-block > h3 {
  font-size: 2em;
  margin: .2em 0 0 0;
}

.thought-leadership-result-block > h3 > a {
  color: black;
  text-decoration: none;
}

.thought-leadership-result-block > h3 > a:hover {
  color: #e41f35;
}

.thought-leadership-result-block > h3 > a:hover:after {
  color: #e41f35;
}

.thought-leadership-result-block > h3 > a {
  color: #5d5d5d;
}

.thought-leadership-result-block > h4 {
  margin: 1.3em 0 0.2em 0;
  font-size: 1em;
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
  color: #5d5d5d;
}

.thought-leadership-result-block > span {
  display: block;
  margin-top: 1.4em;
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
}

.thought-leadership-result-block > p {
  margin: 0.1em 0 0.4em;
  font-size: 1.25em;
  color: #5d5d5d;
  line-height: 1.25em;
}

.thought-leadership-result-block > a {
  color: black;
  text-decoration: none;
}

.thought-leadership-result-block > a:hover {
  color: #e41f35;
}

.thought-leadership-result-block > a:hover:after {
  color: #e41f35;
}

.thought-leadership-result-block > a {
  display: block;
  font-size: 1.1em;
  margin: 0 0 0.3em;
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
}

.thought-leadership-result-block > a:after {
  color: #e41f35;
  content: "\0000a0\00BB";
  white-space: nowrap;
}

.expert-list {
  margin-left: -50px;
  margin-right: -30px;
  margin-top: 25px;
}

@media (max-width: 767px) {
  .expert-list {
    padding: 0;
    margin-left: -15px;
    margin-right: 0;
  }
}

.expert-list > div {
  padding-right: 0;
  padding-left: 20px;
}

@media (max-width: 767px) {
  .expert-list > div {
    padding-left: 15px;
  }
}

.expert-list > div:first-child, .featuredExperts {
  font-size: 2.25em;
  padding: 0.3em 50px;
}

@media (max-width: 767px) {
  .expert-list > div:first-child {
    padding: 0.3em 15px;
  }
}

.expert-list > div:last-child {
  text-align: center;
  margin-top: 2em;
}

.expert-list > div:last-child > input[type=button] {
  width: auto;
  font-size: 1.188em;
  padding-left: 12px;
  padding-right: 12px;
}

@media (max-width: 767px) {
  .expert-list > div:last-child > input[type=button] {
    height: 50px;
  }
}

.expert-block {
  border: solid 1px #ccc;
  border-radius: 5px;
  padding-bottom: 1em;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .expert-block {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .expert-block {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 992px) {
  .expert-block {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 767px) {
  .expert-block {
    font-size: 12px;
  }
}

.expert-block > div {
  margin-bottom: 1em;
}

@media (max-width: 767px) {
  .expert-block > div {
    margin-left: -10px;
    margin-right: -10px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .expert-block > div {
    margin-left: -30px;
    margin-right: -30px;
  }
}

@media (min-width: 992px) {
  .expert-block > div {
    margin-left: -40px;
    margin-right: -40px;
  }
}

.expert-block > div > img {
  width: 100%;
  max-height: 100%;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.expert-block > h3 {
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
  font-size: 1.25em;
  margin: 0;
}

.expert-block > span {
  font-size: 1.25em;
  margin-bottom: .3em;
}

.expert-block > p {
  margin-bottom: .3em;
}

.expert-block > a {
  color: black;
  text-decoration: none;
}

.expert-block > a:hover {
  color: #e41f35;
}

.expert-block > a:hover:after {
  color: #e41f35;
}

.expert-block > a {
  display: block;
  font-size: 1.1em;
  margin-bottom: .3em;
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
}

.expert-block > a:after {
  color: #e41f35;
  content: "\0000a0\00BB";
  white-space: nowrap;
}

.result-pagination {
  padding-right: 0;
  position: relative;
  font-size: 1em;
  margin-top: 25px;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .result-pagination {
    text-align: center;
  }
}

.result-pagination > input[type=button] {
  font-size: 16px;
}

@media (max-width: 767px) {
  .result-pagination > input[type=button] {
    margin: 0;
    font-size: 1em;
    width: 98px;
    height: 37px;
    position: absolute;
    bottom: -47px;
  }
  .result-pagination > input[type=button]:first-child {
    right: 55%;
  }
  .result-pagination > input[type=button]:last-child {
    left: 55%;
  }
}

@media (max-width: 767px) {
  .result-pagination {
    margin-bottom: 70px;
  }
}

.result-pagination > a {
  color: black;
  text-decoration: none;
}

.result-pagination > a:hover {
  color: #e41f35;
}

.result-pagination > a:hover:after {
  color: #e41f35;
}

.result-pagination > a {
  display: inline-block;
  padding: 5px 10px;
  margin: 0;
  border-radius: 5px;
  font-size: 1.125em;
  color: black;
}

.result-pagination > a:hover {
  color: #e41f35;
}

.result-pagination > a.selected {
  color: white;
  background-color: black;
}

.case-study .left-menu {
  padding-bottom: 30px;
}

.case-study-intro-content {
  margin-top: 15px;
}

.case-study .main-container-bottom-padding {
  padding-bottom: 70px;
}

@media (max-width: 767px) {
  .case-study .main-container-bottom-padding {
    padding-bottom: 40px;
  }
}

.case-study #case-study-main-container-top h2 {
  font-size: 2em;
  margin-bottom: 0;
}

.case-study #case-study-main-container-bottom h2 {
  font-size: 2em;
  margin-bottom: 0;
}

.case-study #case-study-main-container-top div {
  padding-left: 0;
  padding-right: 0;
}

.case-study #case-study-main-container-bottom div {
  padding-left: 0;
  padding-right: 0;
}

.case-study #case-study-main-container-top p {
  padding-left: 0;
}

.case-study #case-study-main-container-bottom p {
  padding-left: 0;
}

@media (max-width: 991px) {
  #case-study-main-container-bottom {
    margin-left: 0;
  }
}

.left-menu-placeholder {
  height: 1px;
}

@media (max-width: 767px) {
  .left-menu-placeholder {
    display: none;
  }
}

.case-study-main-heading {
  padding-right: 0;
}

.case-study-article-type {
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  color: #e41f35;
  font-size: 1.67em;
}

@media (max-width: 767px) {
  .case-study-article-type {
    font-size: 1.3em;
    margin-top: 10px;
  }
}

.case-study-article-heading {
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
  font-size: 2.58em !important;
}

.case-study-article-short-description {
  font-size: 1.6em;
}

@media (max-width: 767px) {
  .case-study-article-short-description {
    font-size: 1.1em;
  }
}

@media (max-width: 767px) {
  .case-study .utility-nav {
    display: none;
  }
  .case-study-main-heading .utility-nav.utility-nav-mobile {
    display: block;
    float: right;
    margin-top: 2px;
    font-weight: normal;
  }
  .case-study-article-heading {
    font-size: 1.8em !important;
    margin-top: 15px;
  }
}

.case-study-author {
  padding-top: 1.25em;
  padding-bottom: 1.25em;
  border-top: 1px solid #cdcdcd;
  border-bottom: 1px solid #cdcdcd;
  display: block;
  margin-top: 20px;
}

.case-study-author > .author-info-container > img {
  border-radius: 50%;
  width: 3.75em;
  float: left;
  margin-right: 15px;
}

.case-study-author > .author-info-container {
  float: left;
  display: table;
}

@media (max-width: 767px) {
  .case-study-author > .author-info-container {
    float: none;
  }
}

.case-study-author > .author-info-container > .author-info {
  height: 3.75em;
  display: table-cell;
  vertical-align: middle;
}

.case-study-author > .author-info-container > .author-info > h2 {
  margin: 0;
  color: #e41f35;
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
  font-size: 1.25em !important;
}

.case-study-author > .author-info-container > .author-info > h3 {
  margin: 0;
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
  font-size: 1em;
}

.case-study-author-divider {
  display: none;
}

@media (max-width: 767px) {
  .case-study-author-divider {
    width: 100%;
    height: 1px;
    margin-top: 1.25em;
    display: block;
    background-color: #cdcdcd;
  }
}

.case-study-download-pdf {
  float: right;
}

@media (max-width: 767px) {
  .case-study-download-pdf {
    margin-top: 1.25em;
    width: 100%;
    float: left;
  }
}

.case-study-author .case-study-download-pdf > div {
  padding-top: 5px;
}

@media (max-width: 767px) {
  .case-study-author .case-study-download-pdf > div {
    padding-top: 0;
  }
}

.case-study-download-pdf > div > a > span > span:first-child {
  font-size: 1.5em !important;
}

@media (max-width: 767px) {
  .case-study-download-pdf {
    margin-left: 11px;
  }
  .case-study-download-pdf > div > a > span:first-child {
    padding-right: 18px;
  }
}

#case-study-carousel-container {
  clear: both;
  display: none;
  height: 600px;
  background-color: black;
  color: white;
}

.case-study-background-solutions {
  padding-right: 0;
}

.case-study-background-solutions-text-content {
  padding-left: 0;
  padding-right: 0;
  float: left;
}

.case-study-stats {
  display: inline-block;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .case-study-stats {
    clear: both;
    margin-top: 20px;
    height: 100%;
  }
}

.case-study-stats > .img-container {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}

@media (max-width: 767px) {
  .case-study-stats > .img-container {
    border-top-right-radius: 0;
    border-bottom-left-radius: 5px;
    min-height: 200px;
    height: 100%;
    float: left;
    width: 50%;
  }
}

.case-study-stats > .img-container > img {
  width: 100%;
}

@media (max-width: 767px) {
  .case-study-stats > .img-container > img {
    height: auto !important;
    width: 100% !important;
  }
}

@media (max-width: 644px) {
  .case-study-stats > .img-container > img {
    height: auto !important;
    width: 100% !important;
    margin: auto;
  }
}

.case-study-stats > .text-content {
  padding-left: 2em !important;
  padding-right: 2em !important;
  padding-top: 20px;
  padding-bottom: 1.5em !important;
  font-size: 1em;
}

@media (max-width: 767px) {
  .case-study-stats > .img-container + .text-content {
    width: 50% !important;
  }
  .case-study-stats > .text-content {
    float: left;
    width: 100%;
    padding-left: 1em !important;
    padding-right: 1em !important;
  }
}

.case-study-stats > .text-content > h2 {
  font-size: 2.3em !important;
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
  color: #e41f35 !important;
  margin-bottom: 0;
  margin-top: 0;
}

@media (max-width: 767px) {
  .case-study-stats > .text-content > h2 {
    font-size: 1.8em !important;
    display: inline-block;
  }
}

.case-study-background-solutions > div:nth-child(2) {
  margin-top: 4.5em;
}

.case-study-big-quote {
  padding-top: 1.875em;
  padding-bottom: 1.875em;
  padding-left: 4em !important;
  padding-right: 4em !important;
  border-top: 1px solid #cdcdcd;
  border-bottom: 1px solid #cdcdcd;
  display: block;
  margin-top: 1.25em;
  margin-bottom: .875em;
}

@media (max-width: 767px) {
  .case-study-big-quote {
    width: auto;
    padding-left: 0;
    padding-right: 0;
    margin-left: -5.5vw;
    margin-right: -5.5vw;
    padding-left: 5.5vw;
    padding-right: 5.5vw;
    overflow-x: hidden;
  }
}

@media (max-width: 767px) and (min-width: 1280px) {
  .case-study-big-quote {
    margin-left: -70px;
    margin-right: -71px;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  .case-study-big-quote {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  .case-study-big-quote {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 767px) and (min-width: 1280px) {
  .case-study-big-quote {
    padding-left: 70px;
    padding-right: 71px;
  }
}

.case-study-big-quote > img {
  position: absolute;
  width: 3.125em;
}

.case-study-big-quote > .quote-left {
  top: 0;
  left: 0;
}

@media (max-width: 767px) {
  .case-study-big-quote > .quote-left {
    left: 0;
  }
}

.case-study-big-quote > .quote-right {
  bottom: 0;
  right: 0;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .case-study-big-quote > .quote-right {
    right: 0;
  }
}

.case-study-big-quote-text {
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  font-style: italic;
  font-size: 2em;
  color: #5d5d5d;
  border-width: 0;
  margin-bottom: 10px;
  padding: 5px 0;
}

@media (max-width: 767px) {
  .case-study-big-quote-text {
    font-size: 1.6em;
  }
}

.case-study-big-quote > .quoted-by-name {
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
}

.case-study-big-quote > .quoted-by-title {
  color: #5d5d5d;
}

.case-study-results {
  padding-left: 0;
  padding-bottom: 20px;
}

.case-study-results .first-paragraph {
  margin-bottom: 1.25em;
}

.case-study-results .case-study-results-worker {
  clear: both;
  float: left;
  padding-right: 0;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  font-size: .75em;
  font-style: italic;
  margin-top: .4em;
}

@media (max-width: 767px) {
  .case-study-results .case-study-results-worker {
    display: none;
  }
}

.case-study-results .case-study-results-worker > img {
  width: 100%;
}

.case-study-results .case-study-results-worker > p {
  padding-left: 1.25em !important;
  padding-right: 1.25em;
  padding-top: 1em;
  padding-bottom: 1em;
  margin-bottom: 0;
}

.case-study-results .case-study-results-right-text {
  padding-right: 0;
}

@media (max-width: 767px) {
  .case-study-results .case-study-results-right-text {
    padding-left: 0 !important;
  }
}

.case-study-results-right-text > p {
  padding-top: 0;
}

.case-study-external-link {
  border-top: 1px solid #e41f35;
  border-bottom: 1px solid #e41f35;
  padding-top: 1em;
  padding-bottom: 1em;
}

.case-study-external-link > a {
  font-size: 2em;
}

@media (max-width: 767px) {
  .case-study-external-link > a {
    font-size: 1.5em;
  }
}

.case-study-external-link > a:link {
  color: black;
}

.case-study-external-link > a:visited {
  color: black;
}

.case-study-external-link > a:hover {
  color: #e41f35;
}

.case-study-external-link > a:active {
  color: #e41f35;
}

.case-study-main-carousel {
  width: 100%;
  position: relative;
}

.case-study-main-carousel a {
  position: absolute;
  bottom: 40%;
  font-family: cardinal;
  font-size: 4em;
  width: 1.1em;
}

@media (max-width: 767px) {
  .case-study-main-carousel a {
    display: none !important;
  }
}

.case-study-main-carousel a:before {
  border-radius: 50%;
  z-index: 20;
  margin-left: 2px;
}

.case-study-main-carousel a:link:before {
  background: 0;
  color: rgba(255, 255, 255, 0.6);
}

.case-study-main-carousel a:visited:before {
  background: 0;
  color: rgba(255, 255, 255, 0.6);
}

.case-study-main-carousel a:active:before {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
}

.case-study-main-carousel a:hover::before {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
}

.case-study-main-carousel a.slick-disabled:active::before {
  background: 0;
  color: rgba(255, 255, 255, 0.6);
  cursor: default;
}

.case-study-main-carousel a.slick-disabled:hover::before {
  cursor: default;
  background: 0;
  color: rgba(255, 255, 255, 0.6);
}

.case-study-main-carousel .case-study-main-carousel-prev {
  left: 5%;
}

.case-study-main-carousel .case-study-main-carousel-prev:before {
  font-family: cardinal;
  content: "\e609";
}

.case-study-main-carousel .case-study-main-carousel-next {
  right: 5%;
}

.case-study-main-carousel .case-study-main-carousel-next:before {
  font-family: cardinal;
  content: "\e60c";
}

.case-study-main-carousel .inner-carousel {
  width: 100%;
}

.case-study-main-carousel .slick-list.draggable {
  width: 100%;
  margin: 0;
}

@media (max-width: 767px) {
  .case-study-main-carousel .slick-list.draggable {
    height: 350px;
  }
}

@media (max-width: 767px) {
  .case-study-main-carousel .slick-track {
    height: 100%;
  }
}

.case-study-main-carousel .slick-list.draggable .img-container {
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.case-study-main-carousel .slick-list.draggable .img-container img {
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .case-study-main-carousel .slick-list.draggable .img-container img {
    position: absolute;
    right: 0;
    height: 100%;
    width: auto;
  }
}

.case-study-main-carousel .carousel-captions-container {
  display: inline-block;
  position: absolute;
  left: 25%;
  top: 25%;
  padding: 1.25em 1.25em 1em 1.25em;
  width: 240px;
  color: white;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 991px) {
  .case-study-main-carousel .carousel-captions-container {
    top: 10%;
    left: 15%;
  }
}

@media (max-width: 767px) {
  .case-study-main-carousel .carousel-captions-container {
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    visibility: hidden;
  }
}

@media (min-width: 768px) {
  .case-study-main-carousel .carousel-captions-container {
    visibility: visible !important;
    opacity: 1 !important;
  }
}

.carousel-captions {
  height: 100%;
  max-height: 100%;
}

@media (max-width: 767px) {
  .carousel-captions {
    margin-right: 30px !important;
  }
}

.case-study-main-carousel .carousel-captions .slick-list {
  height: 100%;
  max-height: 100%;
}

.case-study-main-carousel .carousel-captions .slick-track {
  height: 100%;
  max-height: 100%;
}

.carousel-captions-container p {
  margin: 0;
  padding: 0 5px 0 5px;
  -webkit-font-smoothing: subpixel-antialiased;
}

.carousel-captions-container .icon-hide-carousel {
  display: none;
  font-size: 20px;
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .carousel-captions-container .icon-hide-carousel {
    display: block;
  }
}

.carousel-captions-container .icon-hide-carousel:before {
  padding-left: 1px;
  padding-right: 1px;
  font-family: cardinal;
  cursor: pointer;
  color: white;
  content: "\e60e";
}

.case-study-main-carousel .slick-dots {
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .case-study-main-carousel .slick-dots {
    margin-top: -25px;
  }
}

.case-study-main-carousel .slick-dots li {
  position: relative;
  display: inline-block;
  height: 16px;
  width: 16px;
  margin: 0 1px;
  padding: 0;
  cursor: pointer;
  list-style: none;
  vertical-align: top;
}

.case-study-main-carousel .slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 100%;
  width: 100%;
  outline: 0;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer;
  outline: 0;
}

.case-study-main-carousel .slick-dots li button:focus {
  outline: 0;
}

.case-study-main-carousel .slick-dots li button:before {
  position: absolute;
  left: 1px;
  content: '\2022';
  font-family: "slick";
  font-size: 35px;
  text-align: center;
  color: #2e2e2f;
  height: 0;
  width: 0;
  line-height: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white;
}

.case-study-main-carousel .slick-dots li.slick-active button:before {
  color: #e41f35;
}

.case-study-main-carousel .icon-show-carousel {
  cursor: pointer;
}

@media (min-width: 768px) {
  .case-study-main-carousel .icon-show-carousel {
    display: none !important;
    visibility: hidden;
  }
}

@media (max-width: 767px) {
  .case-study-main-carousel .icon-show-carousel {
    visibility: visible;
    display: inline-block;
    font-size: 30px;
    position: absolute;
    z-index: 7;
    bottom: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 5px;
    padding: 10px 18px 10px 18px;
  }
}

.icon-show-carousel:before {
  font-family: cardinal;
  cursor: pointer;
  color: white;
  content: "\e612";
  border-radius: 10px;
}

.corporate-directory {
  border: 1px solid #ccc;
  padding-left: 1.25em;
  margin-bottom: 0;
  padding-right: 20px;
  background-color: black;
  padding-left: 5.5vw;
  padding-right: 5.5vw;
}

@media (max-width: 767px) {
  .corporate-directory {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (min-width: 1280px) {
  .corporate-directory {
    padding-left: 70px;
    padding-right: 71px;
  }
}

.corporate-directory span {
  color: white;
  display: block;
  font-size: 1.5em;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .corporate-directory span {
    font-size: 15px;
  }
}

.corporate-directory h2 {
  font-size: 3em;
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
  margin: 0;
  margin-top: 45px;
  margin-bottom: 40px;
  color: white;
}

@media (max-width: 767px) {
  .corporate-directory h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.corporate-directory h3 {
  font-size: 1.5em;
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
  margin: 0;
  margin-bottom: 15px;
  color: #fff;
}

@media (max-width: 767px) {
  .corporate-directory h3 {
    font-size: 15px;
  }
}

.corporate-directory-links a {
  color: white;
  display: block;
  font-size: 1.5em;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .corporate-directory-links a {
    font-size: 15px;
  }
}

.corporate-directory-links a:last-child {
  font-size: 1em;
  line-height: 2.3em;
}

@media (max-width: 767px) {
  .corporate-directory-links a:last-child {
    font-size: 15px;
    line-height: normal;
  }
}

.corporate-directory-links a:hover {
  color: #e41f35;
}

.directory-cta a {
  color: white;
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
  font-size: 1em;
  display: inline;
}

.directory-cta:after {
  content: "\0000a0\00BB";
  color: #e41f35;
}

.directory-cta:hover {
  color: #e41f35;
}

.directory-cta-row {
  margin-top: 30px;
  margin-bottom: 30px;
}

.corporate-directory-item {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .directory-cta {
    float: left;
  }
  .directory-cta-row {
    margin-top: 15px;
    margin-bottom: 50px;
  }
}

.about-us-article-group h2 {
  font-size: 3em;
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
  margin-top: 50px;
}

.about-us-article-group a:after {
  content: "\0000a0\00BB";
  color: #e41f35;
}

.about-us-article-group a {
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
  color: black;
  font-size: 1em;
}

.about-us-article-group a:hover {
  color: #e41f35;
}

.our-history {
  height: 400px;
  background-color: #e41f35;
  position: relative;
}

@media (max-width: 767px) {
  .our-history {
    height: 250px;
  }
}

.our-history h2 {
  position: relative;
  color: white;
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
  font-size: 2.625em;
}

@media (max-width: 767px) {
  .our-history h2 {
    font-size: 24px;
    margin-top: 25px;
  }
}

.our-history-text {
  padding-top: 80px;
  padding-left: 140px;
}

@media (max-width: 767px) {
  .our-history-text {
    position: static;
    width: 100%;
    padding-left: 0;
    padding-left: 5.5vw;
    padding-right: 5.5vw;
    padding-top: 15px;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  .our-history-text {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 767px) and (min-width: 1280px) {
  .our-history-text {
    padding-left: 70px;
    padding-right: 71px;
  }
}

.our-history p {
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
  font-size: 1.4em;
  color: white;
  max-width: 500px;
  position: relative;
}

@media (max-width: 767px) {
  .our-history p {
    font-size: 13px;
  }
}

.our-history a {
  color: white;
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
  font-size: 1.1em;
  z-index: 1;
  position: relative;
}

.our-history a:after {
  content: "\0000a0\00BB";
}

.our-history a:hover {
  color: black;
}

.our-history img {
  position: absolute;
  right: 0;
  float: right;
}

.arc {
  margin-left: -5.5vw;
  margin-right: -5.5vw;
  background-color: #e41f35;
  height: 100px;
  position: relative;
  margin-bottom: -50px;
}

@media (min-width: 1280px) {
  .arc {
    margin-left: -70px;
    margin-right: -71px;
  }
}

@media (max-width: 767px) {
  .arc {
    margin-left: -25px;
    margin-right: -25px;
  }
}

.arc > img {
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: 0;
}

@media (max-width: 767px) {
  .arc {
    overflow: hidden;
    height: 50px;
    margin-bottom: -25px;
  }
  .arc > img {
    height: 100%;
  }
}

.arc.breadcrumb-background {
  margin-top: -64px;
  height: 115px;
  margin-bottom: -30px;
}

.arc.breadcrumb-background > img {
  height: 50%;
}

@media (max-width: 767px) {
  .arc.breadcrumb-background {
    overflow: hidden;
    margin-bottom: -25px;
    margin-top: 0;
    height: 100px;
  }
  .arc.breadcrumb-background > img {
    height: 100%;
  }
}

.arc.no-overlap {
  margin-bottom: 0;
}

.our-mission {
  background-color: #cbcbcb;
  height: 400px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .our-mission {
    min-height: 400px;
    height: auto;
    overflow-y: visible;
    padding-bottom: 25px;
    padding-left: 5.5vw;
    padding-right: 5.5vw;
    background-color: white;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  .our-mission {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 767px) and (min-width: 1280px) {
  .our-mission {
    padding-left: 70px;
    padding-right: 71px;
  }
}

.our-mission img {
  position: absolute;
  left: 0;
  opacity: .4;
  filter: alpha(opacity=40);
}

@media (max-width: 767px) {
  .our-mission img {
    position: relative;
    height: 200px;
    width: auto;
    left: -25px;
  }
}

.our-mission-text {
  position: absolute;
  left: 50%;
  top: 50px;
  padding-left: 15px;
}

@media (max-width: 767px) {
  .our-mission-text {
    position: static;
    width: 100%;
    padding-left: 0;
  }
}

.our-mission h2 {
  font-size: 2.625em;
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
  margin: 0;
}

@media (max-width: 767px) {
  .our-mission h2 {
    font-size: 24px;
    margin-top: 25px;
  }
}

.our-mission p {
  font-size: 1.3em;
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .our-mission p {
    font-size: 1.2em;
  }
}

@media (max-width: 767px) {
  .our-mission p {
    font-size: 13px;
  }
}

.our-mission li {
  font-size: 1.3em;
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
}

@media (max-width: 991px) {
  .our-mission li {
    font-size: 1.1em;
  }
}

@media (max-width: 767px) {
  .our-mission li {
    font-size: 13px;
  }
}

.our-mission ul {
  padding-left: 27px;
  padding-right: 75px;
}

.vision-and-purpose {
  height: 480px;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .vision-and-purpose {
    height: 410px;
  }
}

.vision-and-purpose > img {
  pointer-events: none;
}

.vision-building {
  position: absolute;
}

.swoop {
  position: absolute;
  z-index: 2;
}

.vision-and-purpose h2 {
  color: white;
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
  font-size: 2.625em;
  z-index: 3;
  margin-top: 170px;
}

@media (max-width: 767px) {
  .vision-and-purpose h2 {
    font-size: 26px;
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .vision-purpose-text > div > div:first-child > h2 {
    margin-top: 60px;
  }
}

.vision-and-purpose p {
  font-size: 1.25em;
  color: white;
}

@media (max-width: 767px) {
  .vision-and-purpose p {
    font-size: 13px;
  }
}

.vision-purpose-text {
  margin-left: 135px;
  margin-right: 135px;
}

@media (max-width: 767px) {
  .vision-purpose-text {
    margin-left: auto;
    margin-right: auto;
    padding-left: 5.5vw;
    padding-right: 5.5vw;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  .vision-purpose-text {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 767px) and (min-width: 1280px) {
  .vision-purpose-text {
    padding-left: 70px;
    padding-right: 71px;
  }
}

.careers .about-us-tabbed-content {
  margin-left: -6.2%;
  margin-right: -6.2%;
}

.about-us-tabbed-content {
  position: relative;
  margin-left: -6.2% !important;
  margin-right: -6.2% !important;
  height: calc(500px - -6.4vw);
  max-height: 583px;
  overflow: hidden;
}

@media (min-width: 1280px) {
  .careers .about-us-tabbed-content {
    margin-left: -70px;
    margin-right: -71px;
  }
}

@media (max-width: 767px) {
  .careers .about-us-tabbed-content {
    margin-left: -25px;
    margin-right: -25px;
  }
}

.about-us-tabbed-content > ul {
  padding-left: 5.5vw;
  padding-right: 5.5vw;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 6.4vw;
  max-height: 83px;
  vertical-align: bottom;
}

@media (max-width: 767px) {
  .about-us-tabbed-content > ul {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (min-width: 1280px) {
  .about-us-tabbed-content > ul {
    padding-left: 70px;
    padding-right: 71px;
  }
}

@media (max-width: 767px) {
  .about-us-tabbed-content > ul {
    height: 50px;
    border-top: solid 1px black;
    margin-left: 25px;
    margin-right: 25px;
    padding-left: 0;
    padding-right: 0;
  }
}

.about-us-tabbed-content > ul > li > div {
  display: none;
}

.about-us-tab {
  display: inline-block;
  height: 100%;
  margin-right: 2vw;
}

.about-us-tab > a {
  color: black;
  text-decoration: none;
}

.about-us-tab > a:hover {
  color: #e41f35;
}

.about-us-tab > a:hover:after {
  color: #e41f35;
}

@media (max-width: 500px) {
  .about-us-tab:first-child > a {
    padding-left: 0;
  }
  .about-us-tab:last-child > a {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .about-us-tab {
    margin-right: 3.4vw;
  }
}

@media (max-width: 319px) {
  .about-us-tab {
    margin-right: 2vw;
  }
}

.about-us-tab > a {
  display: block;
  height: 100%;
  line-height: 80px;
  white-space: nowrap;
  position: relative;
  font-size: 32px;
}

@media (min-width: 560px) and (max-width: 1280px) {
  .about-us-tab > a {
    font-size: 2.5vw;
  }
}

@media (max-width: 560px) {
  .about-us-tab > a {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .about-us-tab > a {
    line-height: 50px;
  }
}

.about-us-tab > a.selected {
  color: #e41f35;
  position: relative;
}

.about-us-tab > a.selected:after {
  background-image: url("clientlibs/images/triangle-cccccc-up.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 7px 14px;
  content: "";
  position: absolute;
  left: calc(50% - 14px);
  bottom: 0;
}

@media (max-width: 767px) {
  .about-us-tab > a.selected:after {
    padding: 5px 10px;
    left: 30%;
  }
}

.about-us-tab > a.selected + div {
  display: block;
}

.about-us-tab > div {
  height: 500px;
  background-color: #ccc;
  position: absolute;
  left: 0;
  top: 6.4vw;
  text-align: left;
  padding-bottom: 20px;
  width: 100%;
}

@media (min-width: 1280px) {
  .about-us-tab > div {
    top: 83px;
  }
}

@media (max-width: 767px) {
  .about-us-tab > div {
    top: 50px;
    padding-bottom: 0;
  }
}

.about-us-tab > div > div > img {
  z-index: 0;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}

@media (max-width: 767px) {
  .about-us-tab > div > div > img {
    position: relative;
    float: right;
    width: auto;
  }
}

@media (max-width: 767px) {
  .about-us-tab > div > div {
    background-color: #bbb;
    width: 100%;
    z-index: 0;
    height: 260px;
    margin-top: 20px;
    position: absolute;
    bottom: 0;
  }
}

.about-us-tab > div > h2 {
  z-index: 2;
  font-size: 3em;
  margin-top: 45px;
  margin-bottom: 0;
  position: relative;
  padding-left: 5.5vw;
  padding-right: 5.5vw;
}

@media (max-width: 767px) {
  .about-us-tab > div > h2 {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (min-width: 1280px) {
  .about-us-tab > div > h2 {
    padding-left: 70px;
    padding-right: 71px;
  }
}

@media (max-width: 767px) {
  .about-us-tab > div > h2 {
    font-size: 2em;
    margin-top: 20px;
  }
}

.about-us-tab > div > p {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  padding-left: 5.5vw;
  padding-right: 5.5vw;
  width: 65%;
}

@media (max-width: 767px) {
  .about-us-tab > div > p {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (min-width: 1280px) {
  .about-us-tab > div > p {
    padding-left: 70px;
    padding-right: 71px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .about-us-tab > div > p {
    width: 60%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .about-us-tab > div > p {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .about-us-tab > div > p {
    width: 100%;
  }
}

.about-us-tab > div > blockquote {
  margin-top: 20px;
  padding-top: 20px;
  margin-left: 0;
  padding-left: 0;
  padding-bottom: 20px;
  border-left: solid 0 white;
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
  font-style: italic;
  font-size: 2em;
  margin-bottom: 0;
  z-index: 1;
  position: relative;
  width: 65%;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .about-us-tab > div > blockquote {
    width: 60%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .about-us-tab > div > blockquote {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .about-us-tab > div > blockquote {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .about-us-tab > div > blockquote {
    font-size: 1.5em;
  }
}

@media (min-width: 768px) {
  .about-us-tab > div > blockquote {
    padding-left: 5.5vw;
    padding-right: 5.5vw;
    border-top: solid 1px white;
    border-bottom: solid 1px white;
  }
}

@media (min-width: 768px) and (max-width: 767px) {
  .about-us-tab > div > blockquote {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (min-width: 768px) and (min-width: 1280px) {
  .about-us-tab > div > blockquote {
    padding-left: 70px;
    padding-right: 71px;
  }
}

@media (max-width: 767px) {
  .about-us-tab > div > blockquote {
    height: 170px;
    position: absolute;
    bottom: 20px;
    left: 0;
    font-size: 18px;
    padding-right: 40%;
    width: calc(100% - 50px);
    margin-left: 25px;
    margin-right: 25px;
    margin-bottom: 25px;
    line-height: 1.2em;
  }
}

.about-us-tab > div > a {
  color: black;
  text-decoration: none;
}

.about-us-tab > div > a:hover {
  color: #e41f35;
}

.about-us-tab > div > a:hover:after {
  color: #e41f35;
}

.about-us-tab > div > a {
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
  font-size: 1.1em;
  display: block;
  z-index: 1;
  position: relative;
  padding-left: 5.5vw;
  padding-right: 5.5vw;
}

.about-us-tab > div > a:after {
  color: #e41f35;
  content: "\0000a0\00BB";
  white-space: nowrap;
}

@media (max-width: 767px) {
  .about-us-tab > div > a {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (min-width: 1280px) {
  .about-us-tab > div > a {
    padding-left: 70px;
    padding-right: 71px;
  }
}

.article-header {
  font-size: 2.5em;
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
  margin-top: 35px;
}

@media (max-width: 767px) {
  .article-header {
    font-size: 25px;
  }
}

.article-quote-stretch-right {
  position: relative;
  min-height: 100px;
  margin-top: 25px;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .article-quote-stretch-right .case-study-big-quote {
    width: 87.5vw;
    position: absolute;
    margin: 0;
  }
}

@media (min-width: 992px) {
  .article-quote-stretch-right .case-study-big-quote {
    position: absolute;
    width: 65vw;
  }
}

@media (min-width: 1280px) {
  .article-quote-stretch-right .case-study-big-quote {
    position: absolute;
    width: 846px;
  }
}

.article-image {
  width: 50%;
  float: right;
  border: solid 1px #ccc;
  border-radius: 5px;
  margin-left: 25px;
  margin-bottom: 25px;
  margin-top: 5px;
}

.article-image-subtitle {
  padding: 0;
}

.article-image > div > img {
  width: 100%;
}

@media (min-width: 399px) {
  .article-image {
    max-width: 275px;
  }
}

.article-image.left {
  float: left;
  margin-left: 0;
  margin-right: 25px;
}

.article-image > p, .article-image-subtitle > div > p, .article-image-right-subtitle > div > p {
  font-size: 13px;
  margin: 0;
  padding: 15px !important;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: italic;
}

@media (max-width: 399px) {
  .article-image {
    width: 100%;
  }
  .article-image > div {
    width: 50%;
    float: left;
    margin-right: 15px;
    min-height: 150px;
  }
}

.related-stories {
  margin-top: 25px;
  border: solid 1px #ccc;
  border-radius: 5px;
  padding: 25px 25px 0 25px;
}

.related-stories > h4 {
  color: #e41f35;
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
  margin: 0;
}

@media (max-width: 767px) {
  .related-stories {
    margin-top: 25px;
  }
}

.related-story {
  padding: 25px 0;
  border-bottom: solid 1px #ccc;
}

.related-story > a {
  color: black;
  text-decoration: none;
}

.related-story > a:hover {
  color: #e41f35;
}

.related-story > a:hover:after {
  color: #e41f35;
}

.related-story > a {
  font-size: 1.375em;
  line-height: 1.2em;
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
}

.related-story > a:after {
  color: #e41f35;
  content: "\0000a0\00BB";
  white-space: nowrap;
}

.related-story > h5 {
  margin: 5px 0 0 0;
}

.related-story:last-child {
  border-bottom-width: 0;
}

.article-video {
  margin-top: 25px;
}

.article-video > div {
  position: relative;
}

.article-video > div iframe {
  width: 100%;
  min-height: 400px;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .article-video > div iframe {
    min-height: 300px;
  }
}

@media (max-width: 767px) {
  .article-video > div {
    margin-left: -5.5vw;
    margin-right: -5.5vw;
  }
}

@media (max-width: 767px) and (min-width: 1280px) {
  .article-video > div {
    margin-left: -70px;
    margin-right: -71px;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  .article-video > div {
    margin-left: -25px;
    margin-right: -25px;
  }
}

.article-video > h3 {
  font-size: 1.85em;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
}

.video-modal .modal-dialog {
  width: 90%;
  height: 90%;
}

@media (max-width: 767px) {
  .video-modal .modal-dialog {
    width: 99%;
  }
}

.video-modal .modal-dialog > .modal-content {
  height: 100%;
}

.video-modal .modal-dialog > .modal-content > .modal-header {
  border-bottom-width: 0;
}

.video-modal .modal-dialog > .modal-content > .modal-header > a {
  color: black;
  text-decoration: none;
}

.video-modal .modal-dialog > .modal-content > .modal-header > a:hover {
  color: #e41f35;
}

.video-modal .modal-dialog > .modal-content > .modal-header > a:hover:after {
  color: #e41f35;
}

.video-modal .modal-dialog > .modal-content > .modal-header > a {
  display: block;
  height: 20px;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
}

.video-modal .modal-dialog > .modal-content > .modal-header > a:after {
  font-family: cardinal;
  content: "\e60e";
  float: right;
}

.video-modal .modal-dialog > .modal-content > .modal-header > a:after {
  float: right;
  color: black;
}

.video-modal .modal-dialog > .modal-content > .modal-header > a:hover:after {
  color: #e41f35;
}

.video-modal .modal-dialog > .modal-content > .modal-body {
  height: 92%;
  padding-top: 0;
}

.video-modal .modal-dialog > .modal-content > .modal-body > .youtube-video-full-width {
  height: 100%;
}

.video-modal .modal-dialog > .modal-content > .modal-body > .youtube-video-full-width > iframe {
  width: 100%;
  height: 100%;
}

.article-date {
  text-align: right;
  margin-top: 25px;
  color: #2e2e2e;
}

.article-date > h4 {
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  line-height: .8em;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .article-date {
    margin-bottom: 0;
    text-align: left;
  }
  .article-date > h4 {
    float: none;
  }
}

@media (min-width: 992px) {
  .article-author {
    margin-top: 25px;
    margin-bottom: 20px;
    padding-left: 25px;
    padding-right: 25px;
    max-width: 265px;
    border: solid 1px #ccc;
    border-radius: 5px;
    padding-bottom: 1em;
  }
}

@media (min-width: 992px) and (max-width: 767px) {
  .article-author {
    font-size: 12px;
  }
}

@media (min-width: 992px) {
  .article-author > div {
    margin-left: -25px;
    margin-right: -25px;
    margin-bottom: 1em;
  }
  .article-author > div > img {
    width: 100%;
    max-height: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
  .article-author > h3 {
    font-family: "myriad-pro";
    font-weight: 600;
    font-style: normal;
    font-size: 1.25em;
    margin: 0;
  }
  .article-author > span {
    font-size: 1.25em;
    margin-bottom: .3em;
  }
  .article-author > p {
    line-height: 1em;
    color: #2e2e2e;
  }
}

@media (min-width: 992px) and (max-width: 767px) {
  .article-author > p {
    font-size: 12px;
  }
}

@media (min-width: 992px) {
  .article-author > a {
    color: black;
    text-decoration: none;
  }
  .article-author > a:hover {
    color: #e41f35;
  }
  .article-author > a:hover:after {
    color: #e41f35;
  }
  .article-author > a {
    display: block;
    font-size: 1.1em;
    margin-bottom: .3em;
    font-family: "myriad-pro";
    font-weight: 600;
    font-style: normal;
  }
  .article-author > a:after {
    color: #e41f35;
    content: "\0000a0\00BB";
    white-space: nowrap;
  }
}

@media (max-width: 991px) {
  .article-author {
    border-top: solid 1px black;
    border-bottom: solid 1px black;
    padding: 16px 0;
    height: 85px;
    margin-top: 25px;
  }
  .article-author > div {
    float: left;
    overflow: hidden;
    border-radius: 50%;
    width: 53px;
    height: 53px;
  }
  .article-author > div > img {
    width: auto;
    height: 100%;
  }
  .article-author > h3, .article-author > span, .article-author > p, .article-author > a {
    float: left;
    width: 80%;
    display: block;
  }
  .article-author > h3 {
    font-size: 18px;
    margin: 0;
    padding-left: 15px;
    color: #e41f35;
    font-family: "myriad-pro";
    font-weight: 600;
    font-style: normal;
  }
  .article-author > span {
    font-size: 12px;
    padding-left: 15px;
  }
  .article-author > span:after {
    content: '';
    clear: both;
  }
  .article-author > p {
    font-size: 12px;
    padding-left: 15px;
    display: none;
  }
  .article-author > a {
    color: black;
    text-decoration: none;
  }
  .article-author > a:hover {
    color: #e41f35;
  }
  .article-author > a:hover:after {
    color: #e41f35;
  }
  .article-author > a {
    font-size: 15px;
    padding-left: 15px;
    font-family: "myriad-pro";
    font-weight: 600;
    font-style: normal;
  }
  .article-author > a:after {
    color: #e41f35;
    content: "\0000a0\00BB";
    white-space: nowrap;
  }
}

.article-news {
  margin-top: 50px;
}

@media (max-width: 767px) {
  .article-news {
    margin-top: 25px;
  }
}

@media (min-width: 992px) {
  .article-news {
    width: 75%;
  }
}

.article-news > h4 {
  margin: 0 0 10px 0;
  font-size: 1.5em;
}

@media (max-width: 767px) {
  .article-news > h4 {
    font-size: 1em;
  }
}

.article-news > h2 {
  font-size: 2em;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  margin: 0 0 10px;
}

@media (max-width: 767px) {
  .article-news > h2 {
    font-size: 1.75em;
  }
}

.article-news > p {
  font-size: 1.75em;
  line-height: 1.1em;
  margin: 0 0 8px;
}

@media (max-width: 767px) {
  .article-news > p {
    font-size: 1.2em;
  }
}

.article-news > a {
  color: black;
  text-decoration: none;
}

.article-news > a:hover {
  color: #e41f35;
}

.article-news > a:hover:after {
  color: #e41f35;
}

.article-news > a {
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
  font-size: 1.125em;
}

.article-news > a:after {
  color: #e41f35;
  content: "\0000a0\00BB";
  white-space: nowrap;
}

.article-news a {
  color: black;
}

.article-news a:hover {
  color: #e41f35;
}

.article-sub-header {
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  margin-top: 25px;
  margin-bottom: -15px;
}

.article-sub-header.no-margin {
  margin-top: 0;
}

.article-bar {
  border-bottom: solid 1px #ccc;
  margin-top: 25px;
}

.article-bar.red {
  border-color: #e41f35;
}

.article-paragraph {
  margin-top: 25px;
  margin-bottom: 0;
}

.displaying-results {
  color: #5d5d5d;
  text-align: right;
  line-height: 40px;
  font-size: 1em;
  margin-top: 25px;
  white-space: nowrap;
  float: right;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
}

@media (max-width: 767px) {
  .displaying-results {
    text-align: center;
  }
}

.result-total {
  color: #5d5d5d;
  text-align: left;
  line-height: 40px;
  font-size: 1em;
  margin-top: 25px;
  white-space: nowrap;
  float: left;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
}

@media (max-width: 767px) {
  .result-total {
    text-align: center;
  }
}

.search-results .search {
  display: none;
}

.search-results .input-group-mobile {
  border-bottom: 0;
}

.search-results-main-container .breadcrumbs {
  display: none;
}

.search-result-header {
  margin-left: -5.5vw;
  margin-right: -5.5vw;
  padding-left: 5.5vw;
  padding-right: 5.5vw;
  position: relative;
  background-color: #ccc;
  padding-top: 48px;
}

@media (min-width: 1280px) {
  .search-result-header {
    margin-left: -70px;
    margin-right: -71px;
  }
}

@media (max-width: 767px) {
  .search-result-header {
    margin-left: -25px;
    margin-right: -25px;
  }
}

@media (max-width: 767px) {
  .search-result-header {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (min-width: 1280px) {
  .search-result-header {
    padding-left: 70px;
    padding-right: 71px;
  }
}

.search-result-header .search-cardinal {
  float: left;
  font-size: 2.25em;
  padding-top: .25em;
}

@media (max-width: 991px) {
  .search-result-header .search-cardinal {
    padding-top: 4px;
  }
}

@media (max-width: 767px) {
  .search-result-header {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .search-result-header {
    font-size: 12.5px;
    height: 144px;
  }
}

@media (min-width: 992px) {
  .search-result-header {
    height: 160px;
  }
}

.search-result-search {
  position: relative;
  text-align: center;
  width: 75%;
  float: right;
  padding-left: 7px;
}

.search-result-search .search_popup {
  display: none;
  left: auto;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  text-align: left;
  background-color: white;
  top: 61px;
  z-index: 5;
}

@media (max-width: 991px) {
  .search-result-search .search_popup {
    top: 42px;
  }
}

.search-result-search .search-result-search-close {
  font-family: cardinal;
  position: absolute;
  right: 0;
  top: -8px;
  font-size: 60px;
  z-index: 1;
  display: none;
}

@media (max-width: 991px) {
  .search-result-search .search-result-search-close {
    top: -10px;
    font-size: 50px;
  }
}

.search-result-search .search-result-search-close > a {
  color: black;
}

.search-result-search .search-result-search-close > a:hover {
  color: #e41f35;
}

.search-result-search .search-result-search-close > a:active {
  color: #e41f35;
}

.search-result-search > form {
  position: relative;
}

.search-result-search > form::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

.search-result-search > form > input[type='submit'] {
  position: absolute;
  top: 0;
  left: 0;
  height: 68px;
  width: 60px;
  color: transparent;
  background-color: transparent;
  border-width: 0;
  outline: 0;
  box-shadow: none;
}

@media (max-width: 991px) {
  .search-result-search > form > input[type='submit'] {
    height: 48.4375px;
  }
}

.search-result-search > form > label {
  position: relative;
  width: 100%;
}

.search-result-search > form > label > input[type='text'] {
  outline-style: none;
  border: 0;
  box-shadow: none !important;
  width: 100%;
  height: 68px;
  border-radius: 5px;
  font-size: 2.25em;
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
  padding-left: 70px;
  padding-right: 60px;
}

@media (max-width: 991px) {
  .search-result-search > form > label > input[type='text'] {
    height: 48.4375px;
  }
}

@media (max-width: 991px) {
  .search-result-search > form > label > input[type='text'] {
    padding-left: 48px;
    padding-right: 44px;
  }
}

.search-result-search > form > label:after {
  font-family: cardinal;
  content: "\e618";
  color: #e41f35;
  position: absolute;
  left: 10px;
  top: 0;
  font-size: 50px;
  height: 68px;
  display: block;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 991px) {
  .search-result-search > form > label:after {
    font-size: 35px;
    height: 48.4375px;
  }
}

.search-featured-article {
  background-color: #ccc;
  padding-top: 35px !important;
  padding-bottom: 15px !important;
}

.search-featured-article > h5 {
  top: -18px !important;
  background-color: white !important;
  padding: 10px 10px !important;
  border-radius: 5px !important;
  left: 16px !important;
}

.search-featured-article > h2 {
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
}

@media (max-width: 540px) {
  .search-featured-article > .img-container {
    margin-top: -60px !important;
  }
}

.search-filter {
  margin-top: 25px;
  overflow-x: hidden;
}

@media (max-width: 991px) {
  .search-filter {
    margin-top: 0;
    width: 235px;
    background-color: white;
  }
}

.search-filter > h3 {
  font-size: 15px;
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
  padding: 5px;
  margin: 0;
  height: 54px;
  line-height: 49px;
  display: none;
  margin-right: -20px;
}

.search-filter > h3 > a {
  color: black;
  text-decoration: none;
}

.search-filter > h3 > a:hover {
  color: #e41f35;
}

.search-filter > h3 > a:hover:after {
  color: #e41f35;
}

@media (max-width: 991px) {
  .search-filter > h3 {
    display: block;
  }
}

.search-filter > h3 > a {
  display: block;
  padding-left: 15px;
}

.search-filter > h3 > a:after {
  font-family: cardinal;
  content: "\e60e";
  float: right;
}

.search-filter > h3 > a:after {
  padding-right: 15px;
  font-size: 25px;
  color: #686868;
}

.search-filter > h5 {
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
  font-size: 1em;
  padding: 0;
  float: left;
  margin-top: 0;
}

.search-filter > h5 > a:link {
  color: #5d5d5d;
}

.search-filter > h5 > a:visited {
  color: #5d5d5d;
}

.search-filter > h5 > a:hover {
  color: #e41f35;
}

.search-filter > h5 > a:active {
  color: #e41f35;
}

.search-filter > h5:first-of-type {
  float: right;
}

.search-filter > h5:last-of-type:after {
  content: "";
}

@media (max-width: 991px) {
  .search-filter > h5 {
    font-size: 1.5em;
  }
  .search-filter > h5:last-of-type:after {
    content: '';
  }
}

.search-filter h2 {
  clear: both;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 13px;
  padding-bottom: 13px;
}

@media (max-width: 991px) {
  .search-filter h2 {
    background-color: #dedede;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.search-filter h2:hover {
  color: #e41f35;
  cursor: pointer;
}

.search-filter h2:before {
  font-family: cardinal;
  float: right;
  color: black;
  content: "\e613";
}

.search-filter h2.collapsed:before {
  color: #e41f35;
  content: "\e602";
}

.search-filter > div > .search-filter-border {
  height: 1px;
  background-color: #ccc;
  display: block;
}

@media (max-width: 991px) {
  .search-filter > div > .search-filter-border {
    margin-left: -15px;
    margin-right: -15px;
    background-color: white;
  }
}

.search-filter > div > .search-filter-border.bottom {
  margin-top: 10px;
}

.search-filter ul {
  list-style: none;
  padding-left: 0;
}

@media (max-width: 991px) {
  .search-filter ul li {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.search-filter ul li:hover {
  color: #e41f35;
  cursor: pointer;
}

@media (max-width: 991px) {
  .search-filter .search-filter-single-select {
    margin-left: -15px;
    margin-right: -15px;
  }
}

.search-filter .search-filter-single-select > ul {
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
}

.search-filter .search-filter-single-select > ul > li {
  margin-left: -5px;
  padding-left: 13px;
  padding-right: 13px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 5px;
  margin-bottom: 5px;
  display: list-item;
}

@media (max-width: 991px) {
  .search-filter .search-filter-single-select > ul > li {
    margin-right: 10px;
    margin-left: 10px;
  }
}

.search-filter .search-filter-single-select > ul > li.checked {
  background-color: #515151;
  color: white;
}

.search-filter .search-filter-single-select > ul > li.checked:hover {
  background-color: black;
}

.search-filter .search-filter-single-select > ul > li.checked:after {
  font-family: cardinal;
  content: "\e60e";
  color: white;
  float: right;
}

.search-filter .search-filter-single-select > ul.collapsed > li {
  display: none;
}

.search-filter .search-filter-single-select > ul.collapsed > li.checked {
  display: list-item !important;
}

.search-filter .search-filter-single-select > ul.collapsed + .search-filter-border.bottom {
  display: none;
}

.search-filter .search-filter-single-select.date-range {
  display: none;
}

.search-filter .search-filter-multi-select {
  display: none;
}

@media (max-width: 991px) {
  .search-filter .search-filter-multi-select {
    margin-left: -15px;
    margin-right: -15px;
  }
}

.search-filter .search-filter-multi-select > input[type="button"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: white;
  background: 0;
  box-shadow: none;
  color: black;
  border: 0;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  padding: 0;
}

.search-filter .search-filter-multi-select > input[type="button"]:hover {
  color: #e41f35;
}

@media (max-width: 991px) {
  .search-filter .search-filter-multi-select > input[type="button"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.search-filter .search-filter-multi-select ul li {
  margin-bottom: 10px;
}

.search-filter .search-filter-multi-select ul li > input[type="checkbox"] {
  display: none;
}

.search-filter .search-filter-multi-select ul li > input[type="checkbox"] + div {
  float: left;
  width: 1.5em;
  height: 1.5em;
  display: inline-block;
  margin-right: 8px;
  background-color: #ccc;
  border-radius: 5px;
}

.search-filter .search-filter-multi-select ul li > input[type="checkbox"] + div + div {
  display: block;
  height: 100%;
  top: -10px;
}

.search-filter .search-filter-multi-select ul li.checked > input[type="checkbox"] + div:after {
  font-family: Glyphicons Halflings;
  content: '\e013';
  font-size: 1.3em;
  position: relative;
  left: .2em;
  top: -0.3em;
  color: black;
}

.search-filter .search-filter-multi-select ul.collapsed > li {
  display: none;
}

.search-filter .search-filter-multi-select ul.collapsed > li.checked {
  display: list-item !important;
}

.search-filter .search-filter-multi-select ul + input[type="button"] {
  display: none;
}

.search-filter .search-filter-multi-select ul + input[type="button"] + .search-filter-border.bottom {
  display: none;
}

.search-result-block {
  padding: 25px;
  border: solid 1px #ccc;
  border-radius: 5px;
  margin-top: 25px;
  position: relative;
  padding-right: 25%;
}

@media (max-width: 767px) {
  .search-result-block {
    padding-right: 30%;
  }
}

@media (max-width: 540px) {
  .search-result-block {
    padding-right: 25px;
  }
}

.search-result-block > h5 {
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
  margin: 0;
  font-size: 1em;
  position: absolute;
  top: -8px;
  left: 15px;
  color: #e41f35;
  background-color: white;
  padding: 0 10px;
}

.search-result-block > h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

.search-result-block > h2 > a {
  color: black;
  text-decoration: none;
}

.search-result-block > h2 > a:hover {
  color: #e41f35;
}

.search-result-block > h2 > a:hover:after {
  color: #e41f35;
}

.search-result-block > a {
  color: black;
  text-decoration: none;
}

.search-result-block > a:hover {
  color: #e41f35;
}

.search-result-block > a:hover:after {
  color: #e41f35;
}

.search-result-block > a {
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
  margin-top: 10px;
  display: inline;
  white-space: nowrap;
}

.search-result-block > a:after {
  color: #e41f35;
  content: "\0000a0\00BB";
  white-space: nowrap;
}

.search-result-block.external-link > .img-container {
  display: none;
}

.search-result-block.external-link > h5 {
  display: none;
}

.search-result-block.external-link > a {
  display: block;
  max-width: 100%;
  vertical-align: middle;
  padding-top: 10px;
  margin-right: 5px;
  word-wrap: break-word;
}

.search-result-block.external-link > a:after {
  display: inline-block;
  font-family: cardinal;
  content: "\e61e";
  font-size: 20px;
  vertical-align: middle;
  margin-top: -5px;
  padding-left: 5px;
}

.search-result-block > .img-container {
  display: block;
  height: 100%;
  position: absolute;
  overflow: hidden;
  right: 25px;
  top: 25px;
  width: 20%;
  margin-top: -25px;
  margin-right: -25px;
  margin-left: 25px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

@media (max-width: 767px) {
  .search-result-block > .img-container {
    width: 25%;
  }
}

@media (max-width: 540px) {
  .search-result-block > .img-container {
    margin-right: -50px;
    margin-top: -50px;
    margin-bottom: 35px;
    margin-left: 35px;
    height: 100px;
    position: relative;
    float: right;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 5px;
    min-width: 100px;
  }
}

.search-result-block > .img-container > img {
  position: absolute;
  left: -100px;
  right: -100px;
  top: -100px;
  bottom: -100px;
  margin: auto;
  height: auto;
  max-height: 100%;
  width: auto;
  max-width: 100%;
  display: block;
  z-index: 1;
}

.search-result-block > .img-container > img.icon {
  max-width: 60px;
  height: auto;
  left: -25px;
  right: -25px;
  top: -25px;
  bottom: -25px;
}

.search-result-block .spec-variable-container {
  display: none;
}

.login-main-container {
  background-image: url("../../../content/dam/corp/cardinal/login-background.png");
  background-size: 1280px auto;
  background-position: center;
  background-color: #ebebeb;
}

@media (min-width: 1280px) {
  .login-main-container {
    background-size: 101%;
  }
}

.login-content {
  margin-left: -5.5vw;
  margin-right: -5.5vw;
  padding-left: 5.5vw;
  padding-right: 5.5vw;
}

@media (min-width: 1280px) {
  .login-content {
    margin-left: -70px;
    margin-right: -71px;
  }
}

@media (max-width: 767px) {
  .login-content {
    margin-left: -25px;
    margin-right: -25px;
  }
}

@media (max-width: 767px) {
  .login-content {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (min-width: 1280px) {
  .login-content {
    padding-left: 70px;
    padding-right: 71px;
  }
}

@media (min-width: 768px) {
  .login-content.breadcrumb-background {
    margin-top: -64px;
    padding-top: 64px;
  }
}

.login-content .sign-in-user-name {
  width: 100%;
  margin-top: 5px;
}

@media (max-width: 767px) {
  .login-content .sign-in-user-name {
    max-width: 325px;
  }
}

.login-content .sign-in-user-name > input {
  border: 0;
  border-radius: 5px;
  height: 36px;
  color: black;
}

.login-content .sign-in-password {
  width: 100%;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .login-content .sign-in-password {
    max-width: 325px;
  }
}

.login-content .sign-in-password > input {
  border: 0;
  border-radius: 5px;
  height: 36px;
  color: black;
}

.login-content .sign-in-submit {
  width: 100%;
  text-align: right;
  position: relative;
  margin-top: 20px;
}

.login-content .sign-in-submit > .sign-in-button {
  width: 100px;
  height: 36px;
  margin-right: 0;
}

@media (min-width: 415px) and (max-width: 540px) {
  .login-content .sign-in-submit > .sign-in-button {
    position: absolute;
    left: 225px;
    margin-left: 0;
  }
}

.login-content label {
  padding-left: 10px;
}

.login-content a {
  color: black;
  padding-left: 10px;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
}

.login-content a:hover {
  color: #e41f35;
}

.login-content > div:nth-child(3) {
  padding-right: 40px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .login-content > div:nth-child(3) {
    padding-right: 25px;
  }
}

@media (min-width: 768px) {
  .login-content > div:nth-child(3) {
    border-right: solid 1px #515151;
  }
}

.login-content > div:last-child {
  padding-left: 40px;
  font-size: 1.25em;
}

@media (min-width: 768px) and (max-width: 991px) {
  .login-content > div:last-child {
    padding-left: 25px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .login-content > div:last-child {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .login-content > div:last-child {
    margin-top: 25px;
    padding-left: 15px;
  }
}

.login-content > div:last-child > a {
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
  display: block;
  padding: 0;
}

.login-content > div:last-child > a:after {
  color: #e41f35;
  content: "\0000a0\00BB";
  white-space: nowrap;
}

.search-results-main-container .displaying-results:first-of-type {
  line-height: 1em;
}

.search-results-main-container .displaying-results.bottom {
  margin-top: 23px;
}

@media (max-width: 767px) {
  .search-results-main-container .displaying-results {
    padding-right: 0;
  }
  .search-results-main-container .displaying-results.bottom {
    float: none;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
  }
}

.search-results-main-container .result-total:first-of-type {
  line-height: 1em;
}

.search-results-main-container .search-filter-mobile-browse {
  padding-left: 15px;
}

.search-results-main-container .search-filter-mobile-browse > h2 > a:before {
  content: "\e620";
  font-size: 19px;
  top: 3px;
  padding: 0;
}

@media (max-width: 991px) {
  .search-results-main-container .displaying-results {
    margin-top: 15px;
  }
  .search-results-main-container .result-total {
    margin-top: 15px;
  }
}

.search-result-specification-variable {
  margin-top: 10px;
  display: inline-block;
  margin-right: 30px;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: italic;
}

@media (max-width: 767px) {
  .search-result-specification-variable {
    display: block;
    margin-left: 0;
  }
}

.search-result-specification-variable .search-spec-attribute {
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
}

.search-result-specification-variable .search-spec-attribute:after {
  content: ":";
}

.search-result-specification-variable > div {
  display: inline-block;
}

.content-descriptive-header {
  font-size: 1.875em;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .content-descriptive-header {
    margin-top: 25px;
  }
}

.content-main-content {
  padding-right: 50px;
}

.content-main-content + div {
  margin-top: 50px;
}

@media (min-width: 768px) {
  .directory-blocks {
    margin-left: -40px;
    margin-right: -40px;
  }
  .directory-blocks > div:first-child {
    padding-left: 40px;
  }
  .directory-blocks > div:nth-child(2) {
    padding-left: 40px;
  }
}

.directory-blocks .directory-block > div:first-child {
  background-color: #ccc;
}

.directory-block {
  padding: 0 25px 0 25px;
  border: solid 1px #ccc;
  margin-bottom: 25px;
  border-radius: 5px;
}

.directory-block > div:first-child {
  cursor: pointer;
  margin-left: -25px;
  margin-right: -25px;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 25px;
  min-height: 168px;
}

.directory-block > div:first-child > h3 {
  margin: 0;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  font-size: 2em;
}

.directory-block > div:first-child > h3:after {
  font-family: cardinal;
  content: "\0000a0\e602";
  color: #e41f35;
}

.directory-block > div:first-child > h3:after {
  float: right;
}

.directory-block > div:first-child > p {
  margin-top: 10px;
  font-size: 1.2em;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .directory-block > div:first-child > p {
    font-size: 1em;
  }
}

.directory-block > div:first-child.open > h3:after {
  font-family: cardinal;
  content: "\0000a0\e613";
  color: #e41f35;
}

.directory-block > div:last-child {
  display: none;
  padding-bottom: 25px;
  margin: 0;
}

.directory-block > div:last-child > h4 {
  margin: 20px 0 0 0;
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
  font-size: 1em;
}

.directory-block > div:last-child > div {
  margin-top: 5px;
  padding-right: 10px;
  display: inline-block;
  width: 49%;
}

@media (max-width: 767px) {
  .directory-block > div:last-child > div {
    width: 100%;
  }
}

.directory-block > div:last-child > div > a {
  color: black;
  text-decoration: none;
}

.directory-block > div:last-child > div > a:hover {
  color: #e41f35;
}

.directory-block > div:last-child > div > a:hover:after {
  color: #e41f35;
}

.directory-block > div:last-child > div > a {
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
}

.directory-block > div:last-child > div > a:after {
  color: #e41f35;
  content: "\0000a0\00BB";
  white-space: nowrap;
}

.directory-block > div:last-child > div > a.tel:after {
  content: '';
}

.article-rounded-image-on-left {
  background-color: #acd8e3;
  margin-left: -5.5vw;
  margin-right: -5.5vw;
  padding-left: 5.5vw;
  padding-right: 5.5vw;
  margin-top: 25px;
  height: 420px;
  overflow: hidden;
  position: relative;
}

@media (min-width: 1280px) {
  .article-rounded-image-on-left {
    margin-left: -70px;
    margin-right: -71px;
  }
}

@media (max-width: 767px) {
  .article-rounded-image-on-left {
    margin-left: -25px;
    margin-right: -25px;
  }
}

@media (max-width: 767px) {
  .article-rounded-image-on-left {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (min-width: 1280px) {
  .article-rounded-image-on-left {
    padding-left: 70px;
    padding-right: 71px;
  }
}

@media (max-width: 767px) {
  .article-rounded-image-on-left {
    height: 310px;
  }
}

.article-rounded-image-on-left > div:first-child, .image-class {
  position: absolute;
  height: 500px;
  left: 0;
  top: -40px;
  width: 45%;
  overflow: hidden;
  border-radius: 140px/50%;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

@media (max-width: 767px) {
  .article-rounded-image-on-left > div:first-child, .image-class {
    height: 390px;
  }
}

.article-rounded-image-on-left > div:first-child > img, .image-class > img {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  top: -500px;
  bottom: -500px;
  left: -500px;
  right: -500px;
  margin: auto;
}

.article-rounded-image-on-left > div:last-child, .text-class {
  padding: 25px 0 25px calc(50% - -12.5px);
}

.article-rounded-image-on-left > div:last-child > h2, .text-class > h2 {
  margin-top: 50px;
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
  font-size: 2.625em;
}

@media (max-width: 767px) {
  .article-rounded-image-on-left > div:last-child > h2, .text-class > h2 {
    margin-top: 0;
  }
}

.article-rounded-image-on-left > div:last-child > p, .text-class > p {
  font-size: 1.125em;
  margin-top: 25px;
  padding: 0;
}

@media (max-width: 767px) {
  .article-rounded-image-on-left > div:last-child > p, .text-class > p {
    font-size: .9em;
    margin-top: 10px;
  }
}

.article-rounded-image-on-left > div:last-child > a, .text-class > div:last-child > a {
  color: black;
  text-decoration: none;
}

.article-rounded-image-on-left > div:last-child > a:hover, .text-class > div:last-child > a:hover {
  color: #e41f35;
}

.article-rounded-image-on-left > div:last-child > a:hover:after, .text-class > div:last-child > a:hover:after {
  color: #e41f35;
}

.article-rounded-image-on-left > div:last-child > a, .text-class > div:last-child > a {
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
  display: block;
  font-size: 1.2em;
  margin-top: 25px;
}

.article-rounded-image-on-left > div:last-child > a:after, .text-class > div:last-child > a:after {
  color: #e41f35;
  content: "\0000a0\00BB";
  white-space: nowrap;
}

@media (max-width: 767px) {
  .article-rounded-image-on-left > div:last-child > a, .text-class > div:last-child > a {
    font-size: 1em;
    margin-top: 10px;
  }
}

@media (max-width: 540px) {
  .article-rounded-image-on-left {
    overflow: visible;
    height: auto;
  }
  .article-rounded-image-on-left > div {
    margin-left: -5.5vw;
    margin-right: -5.5vw;
  }
}

@media (max-width: 540px) and (min-width: 1280px) {
  .article-rounded-image-on-left > div {
    margin-left: -70px;
    margin-right: -71px;
  }
}

@media (max-width: 540px) and (max-width: 767px) {
  .article-rounded-image-on-left > div {
    margin-left: -25px;
    margin-right: -25px;
  }
}

@media (max-width: 540px) {
  .article-rounded-image-on-left > div:first-child, .image-class {
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    border-radius: 0;
    height: 250px;
  }
  .article-rounded-image-on-left > div:first-child > img, .image-class > img {
    min-height: unset;
    max-height: 290px;
  }
  .article-rounded-image-on-left > div:last-child, .text-class {
    padding: 25px 25px 25px 25px;
  }
}

.career-search {
  position: relative;
  margin-left: -5.5vw;
  margin-right: -5.5vw;
  padding-left: 5.5vw;
  padding-right: 5.5vw;
  background-image: url("http://www.cardinalhealth.com/etc/designs/corp/clientlibs/images/reverse-arc.png");
  background-size: 100% 100%;
  height: 263px;
  padding-top: 90px;
  margin-top: -133px;
  z-index: 1;
}

@media (min-width: 1280px) {
  .career-search {
    margin-left: -70px;
    margin-right: -71px;
  }
}

@media (max-width: 767px) {
  .career-search {
    margin-left: -25px;
    margin-right: -25px;
  }
}

@media (max-width: 767px) {
  .career-search {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (min-width: 1280px) {
  .career-search {
    padding-left: 70px;
    padding-right: 71px;
  }
}

.career-search > h2 {
  margin: 0;
  color: white;
  font-size: 2.313em;
}

.career-search > form {
  margin-top: 10px;
}

.career-search > form > div {
  float: left;
  width: 43%;
}

.career-search > form > div:last-child {
  width: 14%;
}

@media (max-width: 767px) {
  .career-search > form > div:last-child {
    width: 100%;
    max-width: 450px;
  }
}

.career-search > form > div > label {
  width: 100%;
}

.career-search > form h4 {
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
  padding-left: 5px;
}

.career-search > form input[type=text], .career-search > form select {
  border: 0;
  border-radius: 5px;
  height: 36px;
  color: black;
  width: 90%;
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
  max-width: 450px;
}

.career-search > form input[type=submit] {
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  color: white;
  max-width: 154px;
  width: 100%;
  border-width: 0;
  border-radius: 5px;
  height: 36px;
  font-size: 1.1em;
  margin-top: 38px;
  float: right;
  background-color: #515151;
}

.career-search > form input[type=submit]:hover {
  background-color: black;
}

@media (max-width: 767px) {
  .career-search {
    height: 335px;
    background-color: #e41f35;
    background-image: none;
    margin-top: 0;
    padding-top: 25px;
  }
  .career-search > form > div {
    width: 100%;
  }
  .career-search > form > div input[type=text] {
    width: 100%;
  }
  .career-search > form > div input[type=submit] {
    width: 145px;
    float: right;
    margin-top: 25px;
  }
}

@media (max-width: 767px) {
  .careers .about-us-tabbed-content > ul {
    border-top-width: 0;
  }
}

.product-category-header-intro {
  padding-left: 45px;
}

@media (max-width: 767px) {
  .product-category-header-intro {
    padding-left: 15px;
  }
}

.product-category-header-intro h1 {
  margin: 0 !important;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0 !important;
  padding-bottom: 20px;
  font-size: 3em;
}

.product-category-header-intro h2 {
  margin: 0 !important;
  padding: 25px 0;
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
  font-size: 1.875em;
}

.product-category-header-intro .productTitle1 {
  border-bottom: 1px solid #ccc;
}

.product-category-header-intro .description {
  font-size: 1.25em;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 30px;
  border-top: 1px solid #ccc;
}

.product-category-landing-top-content {
  margin-top: 40px;
  margin-left: -26px;
  margin-right: 0;
}

@media (max-width: 991px) {
  .product-category-landing-top-content {
    margin-top: 28px;
  }
}

@media (max-width: 767px) {
  .product-category-landing-top-content {
    margin-top: 25px;
    padding-bottom: 24px;
  }
}

.product-category-landing-top-content > div {
  padding: 0 0 0 24px;
}

.product-category-landing-top-content > .heading-image-container > div {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  height: 28.75em;
}

@media (max-width: 767px) {
  .product-category-landing-top-content > .heading-image-container > div {
    height: 350px;
    margin-bottom: 24px;
    float: none;
  }
}

.product-category-landing-top-content > .heading-image-container img {
  width: 100%;
}

.product-category-landing-categories-container {
  padding-top: 25px;
  padding-left: 0;
  padding-right: 0;
  padding-left: 0;
  padding-right: 4px;
  margin-left: -11px;
  margin-right: 0;
}

@media (max-width: 767px) {
  .product-category-landing-categories-container {
    margin-left: 0;
    margin-right: 0;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.product-category-landing-categories-container > .category-2-category-container {
  margin-bottom: 1.875em;
}

.product-category-landing-categories-container .category-landing-column {
  padding: 0 0 0 24px;
  float: left;
}

@media (max-width: 767px) {
  .product-category-landing-categories-container .category-landing-column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .product-category-landing-categories-container .category-landing-column {
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .product-category-landing .product-article {
    margin-left: 0;
    margin-right: 0;
  }
}

.product-category-landing-top-content + .row > h2:first-child {
  font-size: 1.75em;
  padding: 0 15px;
  padding-top: 20px;
  margin: 0;
}

.product-category-landing .left-menu-mobile-browse {
  margin-top: 5px;
}

.carousel-full-width-article {
  margin-left: -5.5vw;
  margin-right: -5.5vw;
  position: relative;
}

@media (min-width: 1280px) {
  .carousel-full-width-article {
    margin-left: -70px;
    margin-right: -71px;
  }
}

@media (max-width: 767px) {
  .carousel-full-width-article {
    margin-left: -25px;
    margin-right: -25px;
  }
}

.carousel-full-width-article .slick-slide {
  padding-left: 5.5vw;
  padding-right: 5.5vw;
}

@media (max-width: 767px) {
  .carousel-full-width-article .slick-slide {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (min-width: 1280px) {
  .carousel-full-width-article .slick-slide {
    padding-left: 70px;
    padding-right: 71px;
  }
}

@media (min-width: 768px) {
  .carousel-full-width-article.breadcrumb-background {
    margin-top: -128px;
  }
}

.carousel-full-width-article .case-study-main-carousel .slick-dots {
  list-style: none;
  display: block;
  text-align: center;
  padding: 0 !important;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .carousel-full-width-article .case-study-main-carousel .slick-dots {
    margin-top: -25px;
  }
}

.carousel-full-width-article .slick-dots li {
  position: relative;
  display: inline-block;
  height: 16px;
  width: 16px;
  margin: 0 1px;
  padding: 0;
  cursor: pointer;
  list-style: none;
  vertical-align: top;
  margin-right: 3px;
  margin-left: 5px;
}

.carousel-full-width-article .slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 100%;
  width: 100%;
  outline: 0;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer;
  outline: 0;
}

.carousel-full-width-article .slick-dots li button:focus {
  outline: 0;
}

.carousel-full-width-article .slick-dots li button:before {
  position: absolute;
  left: 1px;
  content: '\2022';
  font-family: "slick";
  font-size: 35px;
  text-align: center;
  color: #2e2e2f;
  height: 0;
  width: 0;
  line-height: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white;
  font-size: 15px;
  font-family: FontAwesome;
  content: "\f111";
}

.carousel-full-width-article .slick-dots li.slick-active button:before {
  color: #e41f35;
}

.carousel-full-width-article .slick-dots {
  position: absolute;
  bottom: 25px;
  right: 0;
  padding-left: 5.5vw;
  padding-right: 5.5vw;
}

@media (min-width: 768px) {
  .carousel-full-width-article .slick-dots {
    right: auto;
    left: -6px;
  }
}

@media (max-width: 767px) {
  .carousel-full-width-article .slick-dots {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (min-width: 1280px) {
  .carousel-full-width-article .slick-dots {
    padding-left: 70px;
    padding-right: 71px;
  }
}

@media (min-width: 641px) and (max-width: 767px) {
  .carousel-full-width-article .slick-dots {
    top: 265px;
  }
}

@media (max-width: 640px) {
  .carousel-full-width-article .slick-dots {
    top: 175px;
  }
}

@media (max-width: 540px) {
  .carousel-full-width-article .slick-dots {
    top: 60vw;
  }
}

.content-now-trending {
  margin-left: -5.5vw;
  margin-right: -5.5vw;
  margin-top: 25px;
}

@media (min-width: 1280px) {
  .content-now-trending {
    margin-left: -70px;
    margin-right: -71px;
  }
}

@media (max-width: 767px) {
  .content-now-trending {
    margin-left: -25px;
    margin-right: -25px;
  }
}

@media (max-width: 767px) {
  .content-now-trending {
    height: auto;
    overflow: hidden;
  }
}

.content-now-trending .now-trending_carousel_R:hover:after {
  background-color: black;
}

.content-now-trending .now-trending_carousel_L:hover:before {
  background-color: black;
}

.content-now-trending .trend-title {
  margin-top: 30px;
}

.content-now-trending h2 {
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
  font-size: 3em !important;
  font-weight: 300 !important;
}

@media (max-width: 767px) {
  .content-now-trending h2 {
    font-size: 2em !important;
  }
}

.content-now-trending > div {
  margin-top: 0 !important;
}

.content-now-trending > div > div {
  margin-top: 0 !important;
}

.content-blocks {
  margin-left: -25px;
}

.content-blocks > div {
  padding-left: 25px;
  padding-right: 0;
}

.content-block {
  padding: 0 25px 25px 25px;
  margin-top: 25px;
  border: solid 1px #ccc;
  border-radius: 5px;
}

.content-block > div {
  margin-left: -25px;
  margin-right: -25px;
}

.content-block > div > img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.content-block > h2 {
  padding: 0;
  margin: 0;
  margin-top: 25px;
}

.content-block > p {
  font-size: 1.25em;
  padding: 0;
  margin: 0;
  margin-top: 15px;
}

.content-block > ul {
  display: block;
  padding: 0;
  margin: 0;
  margin-top: 15px;
}

.content-block > ul > li {
  padding: 0;
  margin: 0;
  padding-top: 5px;
  display: block;
}

.content-block > ul > li > a {
  color: black;
  text-decoration: none;
}

.content-block > ul > li > a:hover {
  color: #e41f35;
}

.content-block > ul > li > a:hover:after {
  color: #e41f35;
}

.content-block > ul > li > a {
  display: block;
  font-size: 1.125em;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
}

.content-block > ul > li > a:after {
  color: #e41f35;
  content: "\0000a0\00BB";
  white-space: nowrap;
}

.content-block > a {
  color: black;
  text-decoration: none;
}

.content-block > a:hover {
  color: #e41f35;
}

.content-block > a:hover:after {
  color: #e41f35;
}

.content-block > a {
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
  font-size: 1.25em;
  display: block;
  margin-top: 25px;
}

.content-block > a:after {
  color: #e41f35;
  content: "\0000a0\00BB";
  white-space: nowrap;
}

.expert-email-setup {
  min-height: 50px;
  background-image: url(clientlibs/images/wings.png);
  background-size: auto 100%;
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-color: #e41f35;
  margin-left: -5.5vw;
  margin-right: -5.5vw;
  padding-left: 5.5vw;
  padding-right: 5.5vw;
  margin-top: 50px;
  color: white;
  padding-top: 1px;
}

@media (min-width: 1280px) {
  .expert-email-setup {
    margin-left: -70px;
    margin-right: -71px;
  }
}

@media (max-width: 767px) {
  .expert-email-setup {
    margin-left: -25px;
    margin-right: -25px;
  }
}

@media (max-width: 767px) {
  .expert-email-setup {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (min-width: 1280px) {
  .expert-email-setup {
    padding-left: 70px;
    padding-right: 71px;
  }
}

.expert-email-setup > div {
  margin: 0 -25px 0 -25px;
}

.expert-email-setup > div > div:last-child, .expertEmailRTE {
  padding: 0 25px;
}

.expert-email-setup > div > div > h2, .expertEmailRTE > h2 {
  margin: 25px 0 0 0;
  font-size: 2.625em;
  vertical-align: top;
}

.expert-email-setup > div > div > p, .expertEmailRTE > p {
  padding: 0;
  margin: 25px 0 0 0;
  font-size: 1.313em;
}

.expert-email-setup > div > div > form {
  text-align: right;
  width: 100%;
  max-width: 320px;
  display: block;
}

.expert-email-setup > div > div > form > div {
  text-align: left;
  margin: 25px 0 0 0;
}

.expert-email-setup > div > div > form > div > label, .expert-email-setup .form_leftcollabel > label {
  font-size: 12px;
  display: block;
  padding-left: 10px;
  color: #fff;
}

.expert-email-setup > div > div > form > div > input[type=text] {
  margin: 0;
  width: 100%;
  max-width: 320px;
  border: 0;
  border-radius: 5px;
  height: 36px;
  color: black;
}

.expert-email-setup > div > div > form > div:last-child {
  text-align: right;
}

@media (min-width: 541px) {
  .expert-email-setup > div > div:last-child, .expertEmailRTE {
    width: 49.7%;
    display: inline-block;
    vertical-align: top;
  }
}

@media (min-width: 992px) {
  .expert-email-setup > div > divlast-child, .expertEmailRTE {
    margin-top: 15px;
  }
  .expert-email-setup > div > div > h2, .expertEmailRTE > h2 {
    display: inline-block;
    width: 49.6%;
  }
  .expert-email-setup > div > div > p, .expertEmailRTE > p {
    display: inline-block;
    width: 49.6%;
  }
  .expert-email-setup > div > div > form {
    max-width: none;
  }
  .expert-email-setup > div > div > form > div {
    margin-top: 15px;
    display: inline-block;
    width: 49.6%;
  }
  .expert-email-setup > div > div > form > div:nth-child(2n+1) {
    padding-right: 12.5px;
  }
  .expert-email-setup > div > div > form > div:nth-child(2n) {
    padding-left: 12.5px;
  }
}

.article-media {
  border: solid 1px #ccc;
  border-radius: 5px;
  padding: 0 20px 20px 20px;
  margin-top: 25px;
  max-width: 768px;
}

.article-media > div {
  height: 240px;
  overflow: hidden;
  position: relative;
  margin-left: -20px;
  margin-right: -20px;
  background-color: #e41f35;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.article-media > div > img {
  min-width: 100%;
  min-height: 100%;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.article-media > div > h2 {
  position: absolute;
  z-index: 1;
  bottom: 20px;
  margin: 0;
  color: white;
  padding-left: 20px;
  padding-right: 20px;
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
}

.article-media > h4 {
  color: #e41f35;
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
  font-size: 12px;
  margin: 10px 0 0 0;
}

.article-media > a {
  color: black;
  text-decoration: none;
}

.article-media > a:hover {
  color: #e41f35;
}

.article-media > a:hover:after {
  color: #e41f35;
}

.article-media > a {
  font-size: 1.125em;
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-media > p {
  font-size: 12px;
  margin: 10px 0 0 0;
  padding: 0;
}

.article-media > p > a {
  color: black;
  text-decoration: none;
}

.article-media > p > a:hover {
  color: #e41f35;
}

.article-media > p > a:hover:after {
  color: #e41f35;
}

.styled-select {
  position: relative;
  display: inline-block;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
}

.styled-select:after {
  font-family: cardinal;
  content: "\0000a0\e60b";
  color: #e41f35;
}

.styled-select:after {
  position: absolute;
  right: 10px;
  top: 12px;
  color: black;
  pointer-events: none;
  font-size: 10px;
}

.styled-select:hover:after {
  color: #e41f35;
}

.styled-select > select {
  padding: 5px 30px 5px 10px;
  background-color: transparent;
  -webkit-border-image: none;
  -o-border-image: none;
  border-image: none;
  border: solid 1px #ccc;
  height: 36px;
  min-width: 100px;
  border-radius: 5px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.checkbox > label {
  cursor: pointer;
  padding: .5em 0;
}

.checkbox > label > input[type=checkbox] {
  display: none;
}

.checkbox > label > input[type=checkbox] + span {
  width: 1.39em;
  height: 1.39em;
  display: inline-block;
  background-color: #ccc;
  position: relative;
  bottom: .1em;
  margin-right: .3em;
  vertical-align: middle;
  border-radius: 5px;
}

.checkbox > label > input[type=checkbox] + span + span {
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
}

.checkbox > label > input[type=checkbox]:checked + span:after {
  font-family: Glyphicons Halflings;
  content: '\e013';
  font-size: 1em;
  position: relative;
  left: .3em;
  top: -0.2em;
}

.checkbox > label > input[type=checkbox]:checked + span ~ span {
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
}

.styled-radio > label {
  cursor: pointer;
  padding: .5em 0;
}

.styled-radio > label > input[type=radio] {
  display: none;
}

.styled-radio > label > input[type=radio] + span {
  width: 1.39em;
  height: 1.39em;
  display: inline-block;
  background-color: #ccc;
  position: relative;
  bottom: .1em;
  margin-right: .3em;
  vertical-align: middle;
  border-radius: 5px;
}

.styled-radio > label > input[type=radio] + span + span {
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
}

.styled-radio > label > input[type=radio]:checked + span:after {
  font-family: Glyphicons Halflings;
  content: '\e013';
  font-size: 1em;
  position: relative;
  left: .3em;
  top: -0.2em;
}

.styled-radio > label > input[type=radio]:checked + span ~ span {
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
}

.guideFieldWidget input[type="text"], form .form_field_text, form .form_field_select, .guideFieldWidget select, form .form_field_textarea {
  width: 100% !important;
  padding: 5px;
  margin-bottom: 8px;
  background-color: #ebebeb;
  border: 0;
  border-radius: 2px;
  font-weight: 400;
  font-size: 1em;
  color: #000;
}

form .form_row {
  font-size: inherit;
}

.radio label, .checkbox label {
  padding-left: 0;
}

.connect-widget .form label {
  font-size: 14px;
  margin-bottom: 1px;
  margin-top: 10px;
  font-weight: 700;
}

.radio input[type=radio], .radio-inline input[type=radio], .checkbox input[type=checkbox], .checkbox-inline input[type=checkbox] {
  margin-left: 0;
  position: relative;
}

form .form_field_select, .guideFieldWidget select {
  padding: 6px 5px;
}

.guideFieldLabel label {
  margin: 3px 0 0 0;
}

button.submit, form .form_button_submit {
  background-color: #e41f35;
  border: 0;
  padding: 5px 20px;
  display: inline-block;
  color: #fff;
  border-radius: 4px;
}

@media print {
  .left-menu, .left-menu-mobile-browse {
    display: none !important;
  }
  .utility-nav {
    display: none;
  }
  .search, .search-icon {
    display: none;
  }
  .navigation {
    display: none;
  }
  .footer-desktop, .footer-tablet, .footer-mobile {
    display: none;
  }
  .product-image-panel {
    height: 400px;
    display: block !important;
  }
  .product-displayed-image {
    display: block !important;
  }
  .product-displayed-image > .slick-list > .slick-track > .slick-slide {
    display: none;
  }
  .product-displayed-image > .slick-list > .slick-track > .slick-slide.slick-center {
    display: block;
  }
  .product-details, .cardinal-logo, .moving-header, .header.hidden-xs {
    display: block !important;
  }
  .breadcrumbs, .header-underlay-mobile {
    display: none;
  }
  .tabbed-content, .accordion-body {
    display: block !important;
    visibility: visible !important;
  }
  .mobile-tabbed-content-title-text:after {
    content: '';
  }
  .question-icon:before {
    content: '' !important;
  }
  .utility-nav {
    display: none !important;
  }
  .header-mobile {
    display: none !important;
  }
  .slick-track {
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
  }
  .tabbed-content-order-info-mobile {
    display: none !important;
  }
  .product-image-carousel {
    display: none;
  }
  .product-download-sheet {
    display: none;
  }
  .product-short-description {
    display: block !important;
    clear: both !important;
  }
  .product-how-to-buy > div > div:nth-child(2) {
    display: none;
  }
  .product-rating {
    margin-bottom: 25px;
  }
  .product-article, .related-products-carousel {
    display: none;
  }
  .service-case-study, .visual-case-study, .connect-body > hr, .connect-body > .email {
    display: none;
  }
  #service-detail-main-container .connect-top {
    display: none;
  }
  #service-detail-main-container #sdp-related-solutions-carousel-container {
    display: none;
  }
  .connect-mobile-icon, .connect-widget {
    display: none;
  }
  .case-study-stats {
    display: none;
  }
  .carousel-captions-container, .case-study-main-carousel-prev, .case-study-main-carousel-next {
    display: none !important;
  }
  .related-solutions-carousel-pagination {
    display: none !important;
  }
  .related-solutions-carousel-pagination + div {
    display: none;
  }
}

.product-detail-tabbed-content td, .product-detail-tabbed-content th, .tabbed-content-ordering-information th, .parbase.table table td, .parbase.table table th, .rte table th, .rte table td {
  padding-left: 15px !important;
}

.product-detail-tabbed-content table, .parbase.table table, .rte table table {
  border: 0 !important;
  border-color: transparent !important;
  border-spacing: 1px !important;
  border-collapse: separate;
}

.tabbed-content-order-info-tablet-desktop table > tbody > tr:nth-child(even), .rte table > tbody > tr:nth-child(even) {
  background-color: #e7e7e7;
}

.product-detail-tabbed-content table p {
  margin: 0;
}

.tabbed-content .rte {
  overflow-x: scroll;
}

table {
  width: 100%;
  background-color: transparent;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  background-color: #f7f7f7;
}

table th {
  font-weight: 700;
  font-family: "myriad-pro";
  font-style: normal;
  vertical-align: bottom;
  min-width: 75px;
}

table td {
  padding-top: 5px;
  padding-bottom: 5px;
}

#noResults {
  display: none;
}

.connect-text {
  width: 130px;
  height: 50px;
  -ms-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  left: 65%;
}

.cq-wcm-edit form .hidden {
  display: block !important;
  visibility: visible !important;
}

.display-none {
  display: none;
}

.globalFooter {
  margin-top: -30px;
}

.careers-placeholder {
  height: 200px;
}

.footer-container {
  font-family: Myriad-pro;
}

.footer-collapse-content {
  background-color: #1a1a1a;
}

.innerCompany {
  float: left;
  padding: 0;
  width: 50%;
}

.innerCompany ul {
  padding: 0;
}

.company-list-div {
  float: left;
}

.socialList a {
  color: #999;
}

.socialList a:hover {
  color: #fff;
  text-decoration: none;
}

.footerAllBgImg {
  background-image: url("//info.cardinalhealth.com/l/34802/2015-07-21/7563ly/34802/110860/black_footer.png");
}

.footerAllBlackBg {
  position: relative;
  background-color: #1a1a1a;
}

.copyright-footer-all {
  color: #999;
  font-family: Myriad-pro;
}

.footerCompanyHeader p {
  padding: 0;
  margin: 0;
}

.footerSupportHeader p {
  padding: 0;
  margin: 0;
}

.article-author > a {
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 767px) {
  .logo-holder-footer-all {
    display: none;
  }
  .columnLogo, .columnConnect {
    padding-left: 9%;
  }
  .companyColumn, .supportColumn, .connectColumn {
    padding-left: 0;
    padding-right: 0;
  }
  .columnConnect {
    padding-top: 35px;
  }
  .footer-collapse-header .col-xs-12, .footer-collapse-content .col-xs-12 {
    padding: 0;
  }
  .footer-collapse-header {
    color: #999;
    cursor: pointer;
    font-family: Myriad-pro;
    font-size: 24px;
    margin-left: 0;
    padding-bottom: 0;
    padding-left: 9%;
    position: relative;
    width: 100%;
  }
  .footer-collapse-content {
    background-color: #202020;
    display: none;
    margin-left: 0;
    margin-top: 20px;
    margin-bottom: 0;
    padding: 0 9%;
    text-decoration: none;
    width: 100%;
  }
  .footer-collapse-content li {
    background-color: #202020;
    color: #999;
    font-size: 16px;
    list-style: none;
    margin-left: 0;
    padding-bottom: 10px;
    padding-left: 9%;
    padding-right: 0;
    padding-top: 7px;
    -webkit-padding-start: 0;
  }
  .footer-collapse-content a {
    color: #999;
  }
  .footer-collapse-content a:hover {
    color: #fff;
    text-decoration: none;
  }
  .columnCompany.active .footer-collapse-content, .columnSupport.active .footer-collapse-content {
    display: block;
    max-height: 500px;
  }
  .footer-collapse-content {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.8s;
    -moz-transition: max-height 0.8s;
    transition: max-height 0.8s;
  }
  .columnCompany .footer-collapse-icon:before, .columnSupport .footer-collapse-icon:before {
    color: #999;
    content: "\e602";
    font-family: "cardinal";
    font-size: 34px;
    padding-bottom: 6px;
    padding-right: 20px;
  }
  .columnCompany.active .footer-collapse-icon:before, .columnSupport.active .footer-collapse-icon:before {
    content: "\e613";
  }
  .footerCompanyHeader, .footerSupportHeader {
    border: 0;
    color: #999;
    font-size: 24px;
    margin-left: 20px;
    margin-top: 8px;
  }
  .footerConnectHeader {
    color: #fff;
    font-family: "Myriad-pro";
    font-weight: 600;
    font-size: 15px;
    margin-top: -10px;
  }
  .socialList {
    margin: 0;
    padding-left: 0;
    padding-top: 0;
    text-decoration: none;
  }
  .socialList li {
    color: #999;
    font-size: 24px;
    list-style: none;
    padding-bottom: 10px;
    padding-top: 12px;
    -webkit-padding-start: 0;
  }
  .footer-icon-linkedin, .footer-icon-twitter, .footer-icon-youtube, .footer-icon-fb {
    width: 34px;
    height: 34px;
  }
  .footer-icon-linkedin {
    padding-left: 0;
    padding-top: 0;
  }
  .icon-span {
    font-family: Myriad-pro;
    font-size: 24px;
    padding-left: 15px;
  }
  .icon-list a:hover {
    color: #fff;
  }
  .sign-in-all {
    padding-left: 0;
    padding-bottom: 15px;
    padding-top: 25px;
  }
  .sign-in-text-all, .sign-in-text-all a {
    color: #999;
    font-family: Myriad-pro;
    font-size: 24px;
  }
  .sign-in-text-all a {
    text-decoration: none;
  }
  .sign-in-text-all a:hover {
    color: #fff;
  }
  .footerAllBgImg {
    background-size: 100%;
    position: relative;
    height: 15px;
  }
  .hr-footer-mobile-new {
    background: #999;
    border: 0;
    height: 1px;
    margin: 0;
  }
  .copyright-footer-all {
    font-size: 11px;
  }
  .copyright-wrapper {
    padding-bottom: 20px;
    padding-left: 7%;
    padding-top: 10px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .logo-holder-footer-all {
    display: inline-block;
    height: auto;
    max-width: 100%;
  }
  .logo-holder-footer-all img {
    height: 50px;
    width: 150px;
  }
  .columnLogo, .companyColumn, .supportColumn {
    width: 33%;
  }
  .companyColumn, .supportColumn {
    padding-top: 33px;
  }
  .connectColumn {
    margin-left: 33%;
    padding-left: 15px;
    padding-right: 15px;
    width: 66%;
  }
  .footer-collapse-header {
    color: #999;
    cursor: default;
    font-family: Myriad-pro;
    font-size: 24px;
    margin-left: 0;
    padding-left: 0;
    padding-right: 35px;
    position: relative;
    width: 100%;
  }
  .footer-collapse-content {
    margin-left: 0;
    padding-left: 0;
    padding-right: 30px;
    padding-top: 5px;
    text-decoration: none;
    background-color: #1a1a1a;
  }
  .footer-collapse-content li {
    font-size: 15px;
    -webkit-padding-start: 0;
    list-style: none;
    color: #999;
    line-height: 1.2;
    margin-left: 0;
    padding: 7px 4px 7px 0;
  }
  .footer-collapse-content a {
    color: #999;
  }
  .footer-collapse-content a:hover {
    color: #fff;
    text-decoration: none;
  }
  .footer-collapse-content.active, .footer-collapse-content {
    display: block;
    max-height: 500px;
  }
  .footerCompanyHeader, .footerSupportHeader {
    border-bottom: solid 1px #fff;
    color: #fff;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 0;
    margin-top: -5px;
    padding: 0;
  }
  .footerConnectHeader {
    color: #fff;
    font-family: "Myriad-pro";
    font-size: 1.125em;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 23px;
  }
  .footer-plus-icon, .footer-twitter-icon-itself, .footer-plus-icon:before, .footer-minus-icon:after, .footer-minus-icon {
    display: none;
  }
  .socialList {
    list-style: none;
    margin: 0;
    padding-left: 0;
    padding-top: 0;
    text-decoration: none;
  }
  .socialList li {
    display: inline;
    color: #999;
    font-family: Myriad-pro;
    font-size: 18px;
    margin-right: 12px;
    padding-bottom: 12px;
  }
  .icon-list-desktop li {
    display: inline-block;
  }
  .icon-list-desktop li > div {
    padding-right: 20px;
  }
  .footer-icon-linkedin {
    height: 29px;
    width: 29px;
  }
  .footer-icon-twitter, .footer-icon-youtube, .footer-icon-fb {
    height: 30px;
    width: 30px;
  }
  .sign-in-all {
    padding-left: 36px;
    padding-top: 20px;
    white-space: nowrap;
  }
  .sign-in-text-all, .sign-in-text-all a {
    font-family: Myriad-pro;
    font-size: 16px;
    max-width: 100%;
  }
  .sign-in-text-all a {
    color: #999;
    text-decoration: none;
  }
  .sign-in-text-all a:hover {
    color: #fff;
    text-decoration: none;
  }
  .footerAllBgImg {
    background-size: 100%;
    position: relative;
    height: 47px;
  }
  .hr-footer-mobile-new {
    display: none;
  }
  .copyright-footer-all {
    font-size: 10px;
  }
  .copyright-wrapper {
    padding-left: 30px;
  }
}

@media (min-width: 992px) {
  .footer-tablet {
    display: none;
  }
  .logo-holder-footer-all {
    max-width: 100%;
    height: auto;
    display: inline-block;
  }
  .logo-holder-footer-all img {
    width: 221px;
    height: auto;
  }
  .footer-all .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
  .footer-all {
    background-image: url("//info.cardinalhealth.com/l/34802/2015-07-21/7563ly/34802/110860/black_footer.png");
    background-repeat: no-repeat;
    background-position: center 2px;
    background-size: 100% 301px;
    height: 300px;
  }
  .footer-all > .container-fluid > .row {
    width: 100%;
  }
  .sign-in-all {
    white-space: nowrap;
    padding-top: 17px;
    padding-left: 52px;
  }
  .sign-in-text-all {
    font-family: Myriad-pro;
    font-size: 16px;
    max-width: 100%;
  }
  .sign-in-text-all a {
    color: #999;
    max-width: 100%;
  }
  .sign-in-text-all a:hover {
    color: #fff;
    text-decoration: none;
  }
  .all-col-1 {
    padding-top: 50px;
    padding-left: 5%;
    min-width: 252px;
  }
  .all-col-2 {
    padding-top: 50px;
    padding-left: 40px;
    min-width: 325px;
  }
  .all-col-3 {
    padding-top: 50px;
    padding-right: 0;
    max-width: 300px;
  }
  .all-col-4 {
    padding-top: 50px;
    padding-left: 20px;
    padding-right: 0;
    margin-left: -1%;
  }
  .footer-all-bg-img {
    display: none;
  }
  .footer-all-black-bg {
    background: 0;
  }
  .footer-connect-header-all {
    font-size: 18px;
    color: #fff;
    padding-bottom: 20px;
    font-family: MyriadPro-Semibold;
  }
  .footer-nested-list-1-all {
    padding: 0;
  }
  .footer-nested-list-2-all {
    padding-top: 0;
    padding-left: 0;
  }
  .footer-plus-icon {
    display: none;
  }
  .footer-collapse-icon {
    display: none;
  }
  .footer-collapse-content {
    display: block;
    background-color: #1a1a1a;
  }
  .footer-collapse-content ul {
    padding: 0;
  }
  .footer-collapse-header-inner-div {
    display: block;
  }
  .columnLogo {
    min-width: 252px;
    padding-left: 5%;
    width: 25%;
  }
  .companyColumn {
    min-width: 325px;
    padding-left: 40px;
    padding-top: 0;
    width: 33%;
  }
  .supportColumn {
    max-width: 300px;
    padding-right: 0;
    padding-top: 0;
    width: 25%;
  }
  .connectColumn {
    margin-left: -1%;
    padding-left: 20px;
    padding-right: 0;
    padding-top: 1px;
    width: 16.666667%;
  }
  .footer-collapse-header {
    color: #999;
    cursor: default;
    font-family: Myriad-pro;
    font-size: 24px;
    padding-left: 0;
    padding-right: 25px;
    position: relative;
    margin-left: 0;
    width: 100%;
  }
  .footer-collapse-content {
    margin-left: 0;
    padding-left: 0;
    padding-right: 30px;
    padding-top: 5px;
    text-decoration: none;
  }
  .footer-collapse-content li {
    color: #999;
    font-size: 16px;
    line-height: 1.2;
    list-style: none;
    margin-left: 0;
    padding: 7px 4px 7px 0;
    -webkit-padding-start: 0;
  }
  .footer-collapse-content a {
    color: #999;
  }
  .footer-collapse-content a:hover {
    color: #fff;
    text-decoration: none;
  }
  .footer-collapse-content.active, .footer-collapse-content {
    display: block;
    max-height: 500px;
  }
  .footerCompanyHeader, .footerSupportHeader {
    border-bottom: solid 1px #fff;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 0;
    padding: 0 0 5px;
  }
  .footerConnectHeader {
    color: #fff;
    font-family: "Myriad-pro";
    font-weight: 600;
    font-size: 18px;
    padding-bottom: 20px;
  }
  .socialList {
    list-style-type: none;
    margin-top: -10px;
    padding-left: 0;
    padding-top: 0;
    text-decoration: none;
  }
  .socialList li {
    color: #999;
    font-family: Myriad-pro;
    font-size: 18px;
    padding-bottom: 12px;
  }
  .footer-icon-linkedin {
    height: 29px;
    width: 29px;
  }
  .footer-icon-twitter, .footer-icon-youtube, .footer-icon-fb {
    height: 30px;
    width: 30px;
  }
  .footerAllBgImg {
    background-size: 100%;
    position: relative;
    height: 47px;
  }
  .hr-footer-mobile-new {
    display: none;
  }
  .copyright-footer-all {
    font-size: 12px;
    padding-left: 2%;
  }
  .copyright-wrapper {
    margin-left: 70px;
    position: relative;
    top: -10px;
  }
}

#contentArea {
  min-height: 500px;
}

#cqMegaMenu {
  display: block;
}

#headerEdit {
  height: 54px;
}

.sharethis_text {
  vertical-align: top;
  line-height: 35px;
}

.selected-mega-menu > .sub-nav-mega-menu-list {
  display: block;
  position: absolute;
  margin-left: 25%;
  top: 0;
  min-height: 26.17vw;
  padding-left: 2%;
  line-height: normal;
  background-color: #fff;
  width: 75%;
}

.utility-nav .stButton {
  display: none !important;
}

.sub-nav-article div {
  width: 100% !important;
  display: inline-block;
  padding: 0;
  vertical-align: top;
}

.sub-nav-article .sub-nav-article-image-div {
  padding: 0 1% 0 0;
  width: 48% !important;
  overflow-y: hidden;
}

.sub-nav-article .sub-nav-article-image-div div {
  display: block;
}

.sub-nav-article .sub-nav-article-text-div {
  padding: 0 0 0 1%;
  width: 48% !important;
}

.sub-nav-article img {
  width: 100%;
}

.sub-nav-article .sub-nav-see-more a {
  font-weight: 400;
  color: #000;
  font-family: "myriad-pro";
}

.sub-nav-article .sub-nav-see-more a:hover {
  color: #e41f35;
}

.sub-nav-article .sub-nav-see-more a:after {
  content: "\0000a0\00BB";
  color: #e41f35;
}

.product-article div a {
  color: #000;
  text-decoration: none;
}

.product-article div a:hover {
  color: #e41f35;
}

.product-article div h2 a:after {
  content: "" !important;
}

@media (min-width: 768px) {
  .product-article > div > div > div:last-child {
    white-space: normal;
  }
  .product-article > div > div {
    padding: 20px !important;
    white-space: nowrap;
  }
}

@media (max-width: 849px) {
  .product-article {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

.product-article {
  margin-left: 0;
  margin-right: 0;
}

.article-image-boundary > .article-image-container > img {
  margin-bottom: 0;
}

.navigation .nav > li > a {
  padding: 9px 15px;
}

.mobile-nav > ul > li ul {
  display: block;
  background-color: #fff;
  padding: 10px 0;
  margin: 0;
}

.mobile-nav > ul > li > ul {
  padding: 0;
}

.mobile-nav > ul > li ul > li {
  display: block;
  padding: 0;
  margin: 0;
}

.mobile-nav > ul > li ul > li > a {
  display: block;
  padding: 10px 0 10px 20px;
  margin: 0;
  height: 35px;
  line-height: 16px;
  color: #3c3c3c;
  font-size: 17px;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
}

.mobile-nav > ul > li ul > li > a:after {
  content: "\0000a0\00BB";
  color: #e41f35;
}

.s7thumbcell .s7thumb {
  border-radius: 5px;
}

.s7mixedmediaviewer .s7swatches .s7thumbcell {
  cursor: pointer;
}

.s7mixedmediaviewer .s7swatches .s7button {
  background-image: url("") !important;
}

.s7mixedmediaviewer .s7swatches .s7scrollleftbutton {
  margin-left: 15px !important;
}

.s7mixedmediaviewer .s7swatches .s7scrollleftbutton:after {
  content: "\e616";
  font-family: cardinal;
  font-size: 30px;
  color: #c2c2c2;
  width: 56px;
  height: 56px;
  position: absolute;
  padding-top: 8px;
  text-align: right;
}

.s7mixedmediaviewer .s7swatches .s7scrollleftbutton:hover:after {
  color: #e41f35;
}

.s7mixedmediaviewer .s7swatches .s7scrollrightbutton {
  margin-left: -15px !important;
}

.s7mixedmediaviewer .s7swatches .s7scrollrightbutton:after {
  content: "\e617";
  font-family: cardinal;
  font-size: 30px;
  color: #c2c2c2;
  width: 56px;
  height: 56px;
  position: absolute;
  padding-top: 8px;
  text-align: left;
}

.s7mixedmediaviewer .s7swatches .s7scrollrightbutton:hover:after {
  color: #e41f35;
}

.s7container .s7innercontainer {
  background-color: white !important;
}

.s7mixedmediaviewer.s7touchinput .s7zoominbutton {
  width: 28px !important;
  height: 28px !important;
}

.s7mixedmediaviewer.s7touchinput .s7zoomoutbutton {
  width: 28px !important;
  height: 28px !important;
  left: 50px !important;
}

.s7mixedmediaviewer.s7touchinput .s7zoomresetbutton {
  width: 28px !important;
  height: 28px !important;
  left: 80px !important;
}

.s7mixedmediaviewer.s7touchinput .s7fullscreenbutton {
  width: 28px !important;
  height: 28px !important;
}

@media (max-width: 541px) {
  div#article-lists {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media (max-width: 767px) {
  .case-snippet {
    max-width: none;
  }
  div#article-lists {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .home-product-articles {
    margin-left: 0;
    margin-right: 0;
  }
}

div#article-lists {
  padding-left: 8%;
  padding-right: 8%;
}

button#loadMore {
  background-color: black;
  margin: 50px 45%;
  color: white;
}

@media (max-width: 540px) {
  .home-product-articles > div > div > div.article-image-boundary > .article-date-container {
    margin-top: 5px;
  }
  .home-product-articles > div > div > div.article-image-boundary {
    text-align: left;
  }
  .home-small-articles > button#loadMore {
    margin: 50px 40%;
  }
}

.home-product-articles > div > div > div.article-wrap h2 a:hover {
  text-decoration: none;
}

#CQ .cq-editrollover-insert-container {
  overflow: hidden;
}

.product-detail-tabbed-content .tabbed-content-tab1 {
  display: none;
}

.product-detail-tabbed-content .tabbed-content-tab1 p {
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  font-size: 1em;
  margin-bottom: 20px;
}

.product-detail-tabbed-content th {
  vertical-align: bottom;
  min-width: 75px;
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
}

.product-detail-tabbed-content .tabbed-content-tab2 {
  display: none;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
}

.product-detail-tabbed-content table {
  width: 100%;
}

.product-detail-tabbed-content table td {
  padding-top: 5px;
  padding-bottom: 5px;
}

.product-detail-tabbed-content td:nth-child(1), .tabbed-content-ordering-information th:nth-child(1) {
  padding-left: 24px;
}

.product-detail-tabbed-content table > tbody > tr:nth-child(even) {
  background-color: #e7e7e7;
}

.product-detail-tabbed-content td {
  background-color: inherit;
}

.product-detail-tabbed-content .tabbed-content-tab3 {
  display: none;
}

.product-detail-tabbed-content .tabbed-content-tab3 p {
  font-size: 1em;
  font-weight: 400;
  margin-bottom: 20px;
}

.product-detail-tabbed-content .page-break {
  display: block;
  clear: both;
  height: 1px;
  max-height: 1px;
  min-height: 1px;
  width: 100%;
  background-color: #aaa;
  margin-top: 24px;
  margin-bottom: 24px;
}

.product-detail-tabbed-content .bold-title {
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
}

.product-detail-tabbed-content .italic {
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: italic;
}

.product-detail-tabbed-content .bottom-margin {
  margin-bottom: 14px;
}

#tabbed-content-customer-feedback .tabbed-content-tab1 {
  font-size: .875em;
  display: none;
}

.product-detail-tabbed-content .review-title {
  font-weight: 700;
  font-size: 1.125em;
}

.product-detail-tabbed-content .review-user-info {
  font-size: 1em;
  margin-bottom: 5px;
  margin-left: 15px;
}

.product-detail-tabbed-content .review-username {
  color: #e41f35;
}

#tabbed-content-customer-feedback .tabbed-content-tab1 p {
  margin-bottom: 15px;
}

#tabbed-content-customer-feedback .tabbed-content-tab1 p:last-child {
  margin-bottom: 0;
}

#tabbed-content-customer-feedback .tabbed-content-tab2 {
  display: none;
}

.product-detail-tabbed-content .question-answer:last-child {
  margin-bottom: 0;
}

.service-case-study {
  padding: 25px 8% 0 !important;
}

.service-case-study > a > .study-download-container {
  height: auto;
}

.service-case-study > a > .study-download-container > .service-download-link {
  float: none;
  padding-left: 45px !important;
}

.service-case-study > a > .study-download-container > .download-size {
  float: none;
  padding-left: 45px !important;
}

.detail_parsys1 {
  overflow: hidden;
}

.product-download-sheet-container {
  text-align: right;
}

.product-download-sheet-container > div {
  display: inline-block;
  width: calc(44% - 25px);
}

.product-download-sheet-container > div div {
  text-align: left;
}

.product-title .parsys1 {
  display: inline-block;
  width: calc(44% - 25px);
}

@media (max-width: 767px) {
  .product-download-sheet-container > div {
    display: block;
    width: auto;
  }
  .product-title .parsys1 {
    display: block;
    width: auto;
  }
}

.product-short-description {
  overflow: hidden;
}

@media (max-width: 767px) {
  .product-short-description {
    padding-top: 20px;
    overflow: visible;
  }
}

.product-title {
  overflow: hidden;
}

.tabbed-content-description p {
  font-family: "myriad-pro";
  font-size: 1.25em;
  font-style: normal;
  font-weight: 400;
}

.product-how-to-buy a {
  display: block;
  padding-bottom: 3px;
  color: #000;
  text-decoration: none;
}

.product-how-to-buy a:hover {
  color: #e41f35;
}

.product-how-to-buy a:after {
  color: #e41f35;
  content: "\0000a0\00BB";
  white-space: nowrap;
}

.product-how-to-buy h2 {
  color: #e41f35;
  font-size: 1.75em;
  margin-top: 0;
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
}

.full-width-image-article-light span p {
  position: relative;
  width: 50%;
  font-size: 1.25em;
}

@media (max-width: 767px) {
  .full-width-image-article-light span p {
    width: 100%;
  }
}

.full-width-image-article-light span {
  position: relative;
}

a[class="no-after-mark"] {
  font-weight: 400;
  color: #000;
  font-family: "myriad-pro";
}

a[class="no-after-mark"]:hover {
  color: #e41f35;
}

.case-study-author > .author-info-container img {
  border-radius: 50%;
  width: 3.75em;
  float: left;
  margin-right: 15px;
}

.author-info-container > div {
  height: 63px;
}

.textTitleAsset p {
  display: block;
}

@media (max-width: 399px) {
  .article-image > div {
    width: 100%;
    min-height: initial;
  }
}

.article-image > div > img {
  width: 100%;
}

.article-image div[image-fill] {
  overflow: visible;
  height: auto !important;
}

.article-image div[image-fill] > img {
  position: static;
}

.sub-nav-mega-menu .placerholder {
  height: 50px;
}

.secondary-navigation .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

#now-trending-carousel .btn:hover {
  background-color: #000;
}

#now-trending-carousel .btn {
  color: #fff;
  background-color: #000;
  background-color: #333;
}

.article .btn {
  position: relative;
  background-color: #e41f35;
  color: #fff;
}

.article .btn:hover {
  color: #fff;
  background-color: darkred;
}

.now-trending_carousel_L {
  top: 40%;
}

.now-trending_carousel_R {
  top: 40%;
}

#now-trending {
  min-height: 390px;
}

.home-page #now-trending {
  margin-bottom: -50px;
}

@media (max-width: 767px) {
  #carousel-controls {
    bottom: 20px !important;
  }
}

@media (max-width: 767px) {
  .article p {
    color: #333 !important;
  }
}

@media (max-width: 767px) and (min-width: 541px) {
  .article {
    padding: 0;
  }
  .article img {
    position: relative;
  }
  .article h2 {
    margin-right: 20px;
    margin-left: 30px;
  }
  .article p {
    width: initial;
    margin-right: 20px;
    margin-left: 30px;
  }
  .article a.btn {
    margin-right: 20px;
    margin-left: 30px;
  }
}

@media (max-width: 540px) {
  .article h2 {
    color: #636363 !important;
  }
}

#now-trendingy, .carousel-no-margin {
  margin-top: 0 !important;
}

#now-trending-carousel .reverse {
  color: #000;
}

.relatedSolution {
  position: relative;
}

.related-solutions-carousel .reverse {
  color: #fff;
}

@media (min-width: 1280px) {
  .carousel-full-width-article {
    width: 1280px;
    overflow: hidden;
  }
}

.carousel-full-width-article .slick-slide {
  padding-left: 0;
  padding-right: 0;
}

.carousel-full-width-article .full-width-image-article-light {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.carousel-full-width-article .reverse {
  color: #fff;
}

@media (max-width: 767px) and (min-width: 541px) {
  .full-width-image-article-light > p {
    color: #000 !important;
  }
  .full-width-image-article-light > a[class="reverse"] {
    color: #000 !important;
  }
}

@media (max-width: 540px) {
  .carousel-full-width-article .reverse {
    color: #000 !important;
  }
}

.full-width-image-article-light > a[class="reverse"] {
  color: #fff;
}

.full-width-image-article-light > a[class="reverse"]:hover {
  color: #e41f35;
}

.about-us-tabbed-content .about-us-tab .reverse {
  color: #fff;
}

.about-us-tab > div > a[class="reverse"] {
  color: #fff;
}

.about-us-tab > div > a[class="reverse"]:hover {
  color: #e41f35;
}

.carousel-captions-container .reverse {
  color: #000;
}

#video_div {
  height: 500px;
}

@media (max-width: 991px) {
  .left-menu {
    z-index: 8999;
  }
}

@media (min-width: 992px) {
  .left-menu {
    padding-right: 2vw;
  }
  .left-menu > ul > li > a {
    word-wrap: break-word;
  }
}

.left-menu > ul > li > ul > li {
  word-wrap: break-word;
}

.left-menu > h2 {
  height: auto !important;
}

.left-menu-mobile-browse {
  height: auto !important;
}

@media (max-width: 991px) {
  .left-menu > ul > li > a {
    height: auto !important;
    line-height: 30px;
    word-wrap: break-word;
    padding-right: 45px;
    padding-top: 12px;
    margin-bottom: -1px;
    padding-bottom: 12px;
  }
  .left-menu a.left-menu-no-child:after {
    content: "" !important;
  }
}

@media (max-width: 991px) {
  .left-menu > ul > li > a:after {
    position: absolute;
    right: 0;
  }
}

@media (min-width: 992px) {
  .left-menu > ul > li > a:after {
    content: "" !important;
  }
  .left-menu a.has-children:after {
    content: "\0000a0\e60b" !important;
  }
}

.left-menu .left-menu-selected-product {
  color: #e41f35;
}

.placeDiv {
  margin-top: 60px;
}

@media (max-width: 767px) {
  .search_results_list a {
    font-size: 1.4em !important;
  }
  .header .search-result-search {
    display: none;
  }
  .header .search-cardinal {
    display: none;
  }
}

.search-result-block > a {
  white-space: normal !important;
}

.search-result-block > .img-container > img {
  height: 100%;
  max-width: none;
}

.search-filter .search-filter-border {
  height: 1px;
  background-color: #ccc;
  display: block;
}

fieldSet {
  min-width: 442px !important;
}

legend {
  width: initial !important;
  border-bottom: none !important;
}

.category-1-container .product-article {
  margin-left: 0;
  margin-right: 0;
}

.category-2-category-container.no-paragraph .inner .two-columns-descrption {
  display: block;
}

.landing_description {
  font-size: 1.25em;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 30px;
  border-top: 1px solid #ccc;
}

.connect-mobile-icon {
  display: none;
}

.contact-container {
  width: 150px;
  top: 50%;
  right: 0;
  z-index: 100;
  position: fixed;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: right 0.3s ease;
}

.background {
  display: block;
  width: 100%;
  height: 100%;
  opacity: .4;
  filter: alpha(opacity=40);
  background: white;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
}

.progressBar {
  border: solid 2px gray;
  background: white url("clientlibs/images/progress.gif") no-repeat 10px 10px;
}

.progressBar {
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -74px;
  margin-top: -14px;
  padding: 10px 10px 10px 50px;
  text-align: left;
  font-weight: bold;
  position: absolute;
  z-index: 2001;
}

.connect-widget .form input.form_field_text {
  width: 100% !important;
  border: 0 !important;
  padding: 5px !important;
  padding-left: 10px !important;
  border-radius: 5px !important;
  background-color: #e7e7e7 !important;
  background: inherit;
}

.connect-widget .form input[type='submit'] {
  color: #fff;
  background-color: #e41f35;
  border: 0 solid #d5d5d5;
  padding-top: .55vw;
  padding-bottom: .39vw;
  padding-right: 12px;
  padding-left: .94vw;
  font-size: 1.41vw;
  border-radius: 5px;
  width: 8.44vw;
}

.connect-widget .form input[type='reset'] {
  width: 40%;
  background-color: #fff;
  border: 1px solid transparent;
  margin-top: 20px;
}

@media (min-width: 1280px) {
  .connect-widget .form input[type='submit'] {
    padding-top: 7px;
    padding-bottom: 5px;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 18px;
    border-radius: 5px;
    width: 108px;
  }
}

.connect-widget .form input[type='submit']:hover {
  background-color: #bc0000;
  color: white;
}

@media (max-width: 767px) {
  .connect-widget .form input[type='submit'] {
    height: 83px;
    width: 222px;
    font-size: 35px;
    font-weight: 100;
  }
}

.connect-widget .form input[type='submit'], .connect-widget .form input[type='reset'] {
  padding: 6px 12px;
  font-size: 20px;
  margin-top: 15px;
  font-weight: normal;
}

@media (max-width: 767px) {
  .connect-widget .form input[type='submit'] {
    height: auto;
  }
}

.connect-widget .form .btn[type='reset'] {
  width: 40%;
  background-color: #fff;
}

.connect-widget .form input[type='submit'] {
  width: 55%;
  float: right;
}

.connect-widget .form .form_row {
  margin-top: -20px;
}

.connect-body .form_field_text {
  background: inherit;
  background-color: #e7e7e7;
  border: 0;
  border-radius: 4px;
  margin-bottom: 8px;
  width: 100%;
  padding-left: 8px;
}

.connect-body input[type="submit"] {
  height: 35px;
  border-radius: 4px;
  border: 0;
  padding-left: 10%;
  padding-right: 10%;
  margin-bottom: 20px;
  margin-top: 12px;
  margin-left: 10px;
  background-color: #e41f35;
  color: white;
  font-size: 1.1em;
  font-family: "myriad-pro";
  font-style: normal;
}

.connect-body input[type="submit"]:hover {
  background-color: #bc0000;
}

.connect-body input[type='reset'] {
  background-color: #fff;
  border: 1px solid transparent;
  font-size: 1em;
  margin-top: 15px;
  float: left;
}

.connect-body form .form_row {
  margin-top: -10px;
}

@media (min-width: 768px) {
  .connect-widget .form input[type='submit'] {
    width: 54%;
  }
}

.expert-email-setup form input {
  margin: 0;
  width: 100%;
  max-width: 320px;
  border: 0;
  border-radius: 5px;
  height: 36px;
  color: black;
  padding-left: 8px;
  text-align: left;
}

.expert-email-setup form input[type=submit] {
  width: auto;
  float: right;
  height: 36px;
  color: #fff;
  font-size: 16px;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  background-color: #515151;
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

.expert-email-setup form input[type=submit]:hover {
  color: #fff;
  background-color: #000;
  text-decoration: none;
}

.expert-email-setup form input[type=submit]:focus {
  color: #333;
  text-decoration: none;
}

.login-content > div:last-child a::after {
  color: #e41f35;
  content: " �";
  white-space: nowrap;
}

.login-content > div:last-child a {
  display: block;
  font-family: "myriad-pro";
  font-style: normal;
  font-weight: 600;
  padding: 0;
}

.clear-block {
  clear: both;
}

.about-us-featured-zone {
  border-radius: 8px;
  overflow: auto;
  margin-top: 50px;
  border: 1px solid #ccc;
}

.about-us-featured-zone div > img {
  width: 100%;
  height: 100%;
  border: 0;
}

.about-feature-description h2 {
  margin: 0;
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
  color: #fff;
  font-size: 1.5em;
}

.about-feature-description div > p {
  margin: 0;
  padding: 0;
  color: white;
  font-size: 1.125em;
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
}

.about-feature-description {
  background-color: #5d5d5d;
  width: 100%;
  padding: 1.25em;
}

.about-feature-description > div > a {
  color: black;
  text-decoration: none;
}

.about-feature-description > div > a:hover {
  color: #e41f35;
}

.about-feature-description > div > a:hover:after {
  color: #e41f35;
}

.about-feature-description > div > a {
  color: white;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
}

.about-feature-description > div > a:last-child:after {
  color: #e41f35;
  content: "\0000a0\00BB";
  white-space: nowrap;
}

.about-feature-description > div > a:last-child:after {
  color: white;
}

.about-feature-description > div > a:last-child:hover {
  color: black;
}

.about-feature-description > div > a:last-child:hover:after {
  color: black;
}

.about-feature-description > a > h2:hover {
  color: black;
}

.about-us-featured-zone-content {
  padding-bottom: 50px;
}

.howToBuy .cq-text-placeholder-ipe {
  display: none;
}

.howToBuy h2, .thought-leadership-result-block h3 {
  font-weight: 300;
}

.howToBuy h2, .howToBuy .rte {
  margin-bottom: 5px;
}

.article-header div h1 {
  font-size: 40px !important;
  font-weight: bold;
}

@media (max-width: 540px) {
  .image-class > img {
    max-height: none;
  }
  .article-rounded-image-on-left_1 {
    height: auto;
    padding: 0;
  }
}

.article-rounded-image-on-left_1 {
  background-color: #acd8e3;
  margin-left: -5.5vw;
  margin-right: -5.5vw;
  padding-left: 5.5vw;
  padding-right: 5.5vw;
  margin-top: 25px;
  height: 420px;
  overflow: hidden;
  position: relative;
}

@media (min-width: 1280px) {
  .article-rounded-image-on-left_1 {
    margin-left: -70px;
    margin-right: -71px;
  }
}

@media (max-width: 767px) {
  .article-rounded-image-on-left_1 {
    margin-left: -25px;
    margin-right: -25px;
  }
}

@media (max-width: 767px) {
  .article-rounded-image-on-left_1 {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (min-width: 1280px) {
  .article-rounded-image-on-left_1 {
    padding-left: 70px;
    padding-right: 71px;
  }
}

@media (max-width: 767px) {
  .article-rounded-image-on-left_1 {
    height: 310px;
  }
}

.image_class {
  position: absolute;
  height: 500px;
  left: 0;
  top: -40px;
  width: 45%;
  overflow: hidden;
  border-radius: 140px/50%;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

@media (max-width: 767px) {
  .image_class {
    height: 390px;
  }
}

.image_class > img {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  top: -500px;
  bottom: -500px;
  left: -500px;
  right: -500px;
  margin: auto;
}

.text_class {
  padding: 25px 0 25px calc(50% - -12.5px);
}

.text_class > div > h2 {
  margin-top: 50px;
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
  font-size: 2.625em;
}

@media (max-width: 767px) {
  .text_class > div > h2 {
    margin-top: 0;
  }
}

.text_class > div > p {
  font-size: 1.125em;
  margin-top: 25px;
  padding: 0;
}

@media (max-width: 767px) {
  .text_class > div > p {
    font-size: .9em;
    margin-top: 10px;
  }
}

.text_class > div > a {
  color: black;
  text-decoration: none;
}

.text_class > div > a:hover {
  color: #e41f35;
}

.text_class > div > a:hover:after {
  color: #e41f35;
}

.text_class > div > a {
  font-family: "myriad-pro";
  font-weight: 600;
  font-style: normal;
  display: block;
  font-size: 1.2em;
  margin-top: 25px;
}

.text_class > div > a:after {
  color: #e41f35;
  content: "\0000a0\00BB";
  white-space: nowrap;
}

@media (max-width: 767px) {
  .text_class > div > a {
    font-size: 1em;
    margin-top: 10px;
  }
}

@media (max-width: 540px) {
  .article-rounded-image-on-left_1 {
    overflow: visible;
    height: auto;
  }
  .article-rounded-image-on-left_1 > div {
    margin-left: -5.5vw;
    margin-right: -5.5vw;
  }
}

@media (max-width: 540px) and (min-width: 1280px) {
  .article-rounded-image-on-left_1 > div {
    margin-left: -70px;
    margin-right: -71px;
  }
}

@media (max-width: 540px) and (max-width: 767px) {
  .article-rounded-image-on-left_1 > div {
    margin-left: -25px;
    margin-right: -25px;
  }
}

@media (max-width: 540px) {
  .image_class {
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    border-radius: 0;
    height: 250px;
  }
  .image_class > div > img {
    min-height: unset;
    max-height: 290px;
  }
  .text_class {
    padding: 25px 25px 25px 25px;
  }
}

.article-quote-stretch-right .case-study-big-quote {
  width: 100%;
  word-wrap: break-word;
  float: inherit;
}

@media (max-width: 767px) {
  .article-quote-stretch-right .case-study-big-quote {
    width: auto !important;
  }
  .col-connect {
    padding-left: 15px;
    padding-right: 15px;
  }
}

div.image img {
  width: 100%;
  max-width: 100%;
}

@media (min-width: 992px) {
  .textimage {
    display: table;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    margin-top: 25px;
  }
  .textimage .textimage-top img {
    width: 100%;
    max-width: 100%;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }
}

.textimage .textimage-left {
  width: 50%;
  float: right;
  border: solid 1px #ccc;
  border-radius: 5px;
  margin-left: 25px;
  margin-bottom: 25px;
  margin-top: 5px;
  display: table;
}

.textimage .textimage-right {
  width: 50%;
  float: left;
  border: solid 1px #ccc;
  border-radius: 5px;
  margin-left: 25px;
  margin-bottom: 25px;
  margin-top: 5px;
  display: table;
}

.textimage .textimage-left > img {
  width: 100%;
}

@media (min-width: 399px) {
  .textimage .textimage-left {
    max-width: 275px;
  }
}

.textimage .textimage-right > img {
  width: 100%;
}

@media (min-width: 399px) {
  .textimage .textimage-right {
    max-width: 275px;
  }
}

.textimage .textimage-text {
  margin-top: 25px;
  margin-bottom: 0;
  vertical-align: top;
  padding: 0 0 0 25px !important;
  display: table;
}

.textimage .textimage-text p {
  display: table;
  padding: 15px;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 15px !important;
}

.generic-template .globalFooter {
  margin-top: 0;
}

.product-download-sheet a span img {
  width: auto;
}

@media (max-width: 991px) {
  .article-author {
    height: auto;
    overflow: auto;
  }
  .article-author > div {
    width: 20%;
    height: 53px;
    max-width: 53px;
    max-height: 53px;
  }
  .article-author > div > img {
    width: auto;
    height: 100%;
    left: -10px;
    position: relative;
  }
}

@media (min-width: 992px) {
  .article-author {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
}

.meetExpertButton .button-red {
  color: #fff;
}

table {
  width: 100%;
  background-color: transparent;
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  background-color: #f7f7f7;
}

table th {
  font-weight: 700;
  font-family: "myriad-pro";
  font-style: normal;
  vertical-align: bottom;
  min-width: 75px;
}

table td {
  padding-top: 5px;
  padding-bottom: 5px;
}

table p {
  margin-bottom: 0 !important;
}

.title h2 {
  margin-bottom: 20px;
  font-weight: 700;
}

h3 {
  margin-bottom: 20px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .category-3-container .carousel-full-width-article.breadcrumb-background {
    margin-bottom: 40px;
  }
  .category--container .carousel-full-width-article.breadcrumb-background {
    margin-bottom: 40px;
  }
}

.product-detail-tabbed-content .tabbed-content-tab1 p, .product-detail-tabbed-content .tabbed-content-tab2 p, .product-detail-tabbed-content .tabbed-content-tab3 p, ul, ol, .text p, .rte p, .rte, .rich-text-area p {
  font-weight: 400;
  font-size: 1em;
  margin-bottom: 20px;
}

.corporate-directory-links {
  color: white;
  display: block;
  font-size: 1.5em;
  line-height: 1.2;
}

.corporate-directory-links a {
  color: white;
  display: block;
  font-size: 1em;
  line-height: 1.2;
}

.corporate-directory-links a:last-child {
  display: block;
  font-size: .67em;
  line-height: 2.3em;
}

.content-descriptive-header {
  margin-top: 40px;
}

.text {
  word-wrap: break-word;
}

.textTitleAsset {
  word-wrap: break-word;
}

.article-video .youtube-video-full-width {
  position: relative;
  padding-bottom: 51.95%;
  padding-top: 4.4%;
  height: 0;
}

.article-video .youtube-video-full-widthAuthor {
  position: relative;
  padding-bottom: 51.95%;
  padding-top: 4.4%;
  height: 0;
}

.article-video .youtube-video-full-width iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  min-height: 0;
}

.article-video .youtube-video-full-widthAuthor iframe {
  position: absolute;
  top: 10px;
  left: 10px;
  height: 100%;
  width: 100%;
  min-height: 0;
}

@media (max-width: 767px) {
  .vision-and-purpose {
    min-height: 410px;
    height: auto;
  }
}

@media (max-width: 1199px) and (min-width: 768px) {
  .case-snippet h2 {
    font-size: 2.025em;
  }
}

.rssfeed-overflow-hide {
  overflow: hidden;
}

.category-landing-padding .category-title-padding {
  padding: 0 12px;
}

.product-category-landing-top-content > .heading-image-container > div {
  height: 25.6em;
}

.product-category-landing-top-content > div {
  padding: 0 0 30px 24px;
}

.expert-list > div:last-child > div > a {
  width: auto;
  font-size: 1.188em;
  padding-left: 12px;
  padding-right: 12px;
}

@media (max-width: 767px) {
  .expert-list > div:last-child > div > a {
    height: auto;
    line-height: 40px;
  }
}

.service-detail-content-block .textimage img {
  margin-bottom: 5px;
}

.thought-leadership-result-block > div > img {
  max-width: 100%;
  width: 100%;
  min-height: 0;
}

.thought-leadership-result-block > div {
  height: auto;
}

@media (min-width: 768px) {
  .thought-leadership-filter-options > div > div > label {
    margin: 0;
  }
}

.content #home-case-study {
  height: auto;
  max-height: 500px;
}

@media (max-width: 768px) {
  .rte table {
    word-break: break-word;
  }
}

@media print {
  .product-how-to-buy .howToBuyLogin {
    display: none;
  }
}

form .form_captcha_input {
  width: 30%;
}

.form_leftcolmark {
  margin-top: 0;
}

#cq_captchatimer {
  display: none;
}

.tab .rte {
  overflow-x: hidden;
}

.product-details-main-container .tabs-content-container .rte {
  overflow-x: auto;
}

.connect-widget {
  z-index: 8992;
}

.captcha .form_row + .form_row {
  display: none;
}

.connect-body .captcha input[type="button"] {
  font-size: .9em;
  margin-top: 0;
  margin-left: 0;
}

.col-connect .form_leftcolmark {
  margin-top: 0;
}

.dynamicimage img {
  max-width: 100%;
}

.essentialInsightsarticle {
  width: 100%;
  overflow-x: hidden;
}

.essentialInsightsarticle .globalFooter {
  margin-top: 40px;
}

.dropcase {
  float: left;
  color: #333;
  font-size: 5em;
  line-height: 60px;
  padding-top: 4px;
  padding-right: 8px;
  padding-left: 0;
  font-family: myriad-pro;
}

.article-quote-stretch-right .case-study-small-quote {
  word-wrap: break-word;
  float: inherit;
}

.case-study-small-quote {
  margin-left: 0;
  margin-right: 0;
}

.case-study-small-quote {
  padding-top: 1.875em;
  padding-bottom: 1.875em;
  padding-left: 4em !important;
  padding-right: 4em !important;
  border-top: 1px solid #cdcdcd;
  border-bottom: 1px solid #cdcdcd;
  display: block;
  margin-top: 1.25em;
  margin-bottom: .875em;
  width: 500px;
}

.case-study-small-quote > .quote-left {
  left: 0;
}

.case-study-small-quote > .quote-left {
  top: 0;
}

.case-study-small-quote > img {
  position: absolute;
  width: 3.125em;
}

.case-study-small-quote > .quote-right {
  right: 0;
}

.case-study-small-quote > .quote-right {
  bottom: 0;
  margin-bottom: 0;
}

.case-study-small-quote > img {
  position: absolute;
  width: 3.125em;
}

.case-study-small-quote-text {
  font-family: "myriad-pro";
  font-weight: 400;
  font-style: normal;
  font-style: italic;
  color: #5d5d5d;
  border-width: 0;
  margin-bottom: 10px;
  padding: 5px 0;
}

blockquote {
  margin: 0 0 20px;
  border-left: 5px solid #eee;
}

.case-study-small-quote > .quoted-by-name {
  font-family: "myriad-pro";
  font-weight: 700;
  font-style: normal;
}

.essential-article-par div.title-date {
  position: relative;
  display: block;
  width: 50%;
}

.essential-article-par {
  margin-bottom: 30px;
}

.eIarticle-title {
  width: auto;
  margin-top: 50px;
}

.eIarticle-title h1 {
  font-weight: 700;
  margin-top: 0;
  font-size: 3em;
}

.white {
  color: #fff;
}

.black {
  color: #333;
}

.title-date .article-date {
  color: inherit;
}

.article-date > h4 {
  margin-top: 0;
  line-height: 1.1;
  font-weight: 300;
}

.ei-article-container .breadcrumbs {
  position: relative;
  top: 10px;
  left: 70px;
}

.title-date-nonfeatured {
  margin-left: 0;
  margin-top: 40px;
}

.eIarticle-nonfeatured-title h1 {
  font-weight: bold;
  margin-bottom: 0;
  font-size: 3em;
}

.title-date-nonfeatured .article-date {
  margin-top: 10px;
}

.essentialInsightsarticle .ei-article-bannertta {
  margin-bottom: 20px;
}

.essentialInsightsarticle .ei-article-bannertta + .row h2:first-of-type {
  margin-top: 0;
}

.textimage {
  margin-bottom: 30px;
}

.textimage img {
  max-width: 100%;
}

.ei-fullwidth-par .textimage {
  border: 0 none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
}

.ei-fullwidth-par .textimage img {
  border-radius: 0;
}

.default-gutter .textimage {
  border: 1px solid #ccc;
  border-radius: 5px;
}

.default-gutter .textimage img {
  border-radius: 5px 5px 0 0;
}

.essentialInsightsarticle .utility-nav {
  margin-top: 30px;
}

.essentialInsightsarticle .utility-nav-button-print {
  margin-left: 0;
}

.essentialInsightsarticle .utility-nav-button-container {
  float: left;
  width: auto;
  padding-right: 15px;
}

.article-inline-text {
  font-weight: 400;
}

.textTitleAsset .pull-right {
  margin-bottom: 30px;
}

.eiContributor {
  margin-bottom: 30px;
}

.contributor-head {
  color: #e41f35;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.085px;
  line-height: 18px;
  text-align: left;
  margin-top: 30px;
}

.contributor-detail {
  margin-bottom: 5px;
}

.contributor-detail:after {
  content: "";
  display: table;
  clear: both;
}

.contributor-name {
  color: #333;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.085px;
  line-height: 18px;
  text-align: left;
  margin: 0;
  padding: 0;
}

.contributor-name a {
  color: #333;
}

.contributor-name a:hover {
  color: #e41f35;
  text-decoration: none;
}

.contributor-title {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.07px;
  line-height: 18px;
  text-align: left;
  overflow: hidden;
}

.eiContributor .img-circle {
  height: 70px;
  width: 70px;
  margin-right: 15px;
  float: left;
  overflow: hidden;
}

.contributor-img {
  width: auto;
  height: 100%;
  position: relative;
  left: -20px;
}

.masthead {
  padding: 20px 0 20px;
  display: block;
  border-bottom: 1px solid #ccc;
  margin: 0 auto 30px;
  width: 100%;
}

.masthead h1 {
  font-weight: 700;
  font-style: italic;
  font-size: 2.25em;
  line-height: 1.55;
  letter-spacing: -0.0125em;
  margin: 0;
}

.masthead_filter {
  text-align: right;
  padding-top: 12px;
}

.audience-filter_label {
  font-size: 1.1em;
  font-style: italic;
  color: #333;
  font-weight: 400;
  line-height: 34px;
  margin-right: 20px;
  padding-bottom: 0;
}

#audience-filter {
  border: 0 none;
  background: #ebebeb;
  font-size: 1.1em;
}

.essential-signup {
  margin: 0 auto 60px;
  text-align: center;
  max-width: 100%;
  padding: 0 5.5%;
  position: relative;
}

.essential-signup_cta {
  font-size: 1.125em;
  font-weight: 300;
  text-align: left;
}

.essential-signup_cta, .essential-signup_form {
  display: inline-block;
  position: relative;
  z-index: 3;
}

.essential-signup_form {
  float: right;
}

.essential-signup_cta .callout {
  font-size: 2.25em;
  letter-spacing: -0.0125em;
  margin: 0 0 5px;
  padding-top: 0;
  line-height: 90%;
}

.essential-signup_cta a {
  font-weight: 700;
  color: #000;
  white-space: nowrap;
}

.essential-signup_cta a:after {
  content: "\0000a0\00BB";
  color: #e41f35;
}

.essential-signup_cta a:hover {
  color: #e41f35;
  text-decoration: none;
}

.red {
  color: #e41f35;
  white-space: nowrap;
}

#essential-email {
  width: 250px;
  background: #ebebeb;
  border-radius: 4px;
  border: 0 none;
  font-size: 1.1em;
  color: #333;
  padding: 0 15px;
  height: 34px;
  margin-right: 10px;
}

#essential-email::-webkit-input-placeholder {
  color: #333;
}

#essential-email:-moz-placeholder {
  color: #333;
  opacity: 1;
}

#essential-email::-moz-placeholder {
  color: #333;
  opacity: 1;
}

#essential-email:-ms-input-placeholder {
  color: #333;
}

.cta-button, a.cta-button {
  background: #e41f35;
  border-radius: 5px;
  font-weight: 700;
  letter-spacing: .025em;
  color: #fff;
  font-size: 1.1em;
  border: 0 none;
  padding: 10px 20px;
  display: inline-block;
  transition: all 0.1s ease;
}

.cta-button:hover, a.cta-button:hover {
  background: #b6192a;
  text-decoration: none;
}

.visually-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.article-grid {
  margin-bottom: 60px;
}

.article-summary {
  margin-bottom: 10px;
  width: 100%;
  display: block;
}

.article-summary:after {
  content: "";
  display: table;
  clear: both;
}

.article-summary a {
  color: #333;
}

.article-summary a:hover {
  text-decoration: none;
  color: #e41f35;
}

.article-summary img {
  max-width: 100%;
  border-radius: 5px;
  margin-bottom: 15px;
}

.article-summary_title {
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 10px;
}

.article-summary_author {
  font-size: .875em;
  font-weight: 400;
  line-height: 1.35em;
  margin-bottom: 10px;
}

.article-summary_author a {
  font-weight: 700;
}

.article-summary_desc {
  line-height: 1.5;
  padding: 0;
  font-weight: 400;
}

p.article-summary_desc.article-summary_charjs {
  font-size: .95em;
}

.featured-article .article-summary_title {
  font-size: 1.875em;
}

.featured-article .article-summary_author {
  margin-bottom: 20px;
}

.article-list {
  margin-right: 20px;
}

.list-article {
  margin-bottom: 30px;
}

.list-article:after {
  content: "";
  display: table;
  clear: both;
}

.list-article a + .article-summary_copy {
  display: inline-block;
  float: left;
  width: calc(100% - 260px);
}

.list-article img {
  width: 240px;
  display: inline-block;
  float: left;
  margin: 0 20px 20px 0;
}

.list-article .article-summary_title {
  font-size: 1.625em;
}

.article-list_more {
  text-align: center;
}

.article-list_button {
  background: #5d5d5d;
  line-height: 2.2em;
  height: auto;
  padding: 4px 20px 0 20px;
}

.article-list_button:hover {
  background: #000;
}

.article-list_button .plus-ico {
  width: 17px;
  height: 17px;
  line-height: 34px;
}

.plus-ico img {
  max-width: 100%;
  width: 17px;
  height: 17px;
  position: relative;
  top: -4px;
  margin-right: 10px;
}

.loading .plus-ico img {
  animation: spinner 1600ms linear infinite both;
  -webkit-animation: spinner 1600ms linear infinite both;
}

.loading.article-list_button {
  animation: pulsate 1600ms ease infinite both;
}

@keyframes pulsate {
  0% {
    background: #333;
  }
  50% {
    background: #000;
  }
  100% {
    background: #333;
  }
}

@keyframes spinner {
  0% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  10% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  28.57% {
    -webkit-transform: matrix3d(0.103, 0.995, 0, 0, -0.995, 0.103, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.103, 0.995, 0, 0, -0.995, 0.103, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  42.84% {
    -webkit-transform: matrix3d(-0.627, 0.779, 0, 0, -0.779, -0.627, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(-0.627, 0.779, 0, 0, -0.779, -0.627, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  57.12% {
    -webkit-transform: matrix3d(-0.893, 0.45, 0, 0, -0.45, -0.893, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(-0.893, 0.45, 0, 0, -0.45, -0.893, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  71.4% {
    -webkit-transform: matrix3d(-0.97, 0.241, 0, 0, -0.241, -0.97, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(-0.97, 0.241, 0, 0, -0.241, -0.97, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  90% {
    -webkit-transform: matrix3d(-1, 0.016, 0, 0, -0.016, -1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(-1, 0.016, 0, 0, -0.016, -1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  100% {
    -webkit-transform: matrix3d(-1, 0.016, 0, 0, -0.016, -1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(-1, 0.016, 0, 0, -0.016, -1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  10% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  28.57% {
    -webkit-transform: matrix3d(0.103, 0.995, 0, 0, -0.995, 0.103, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.103, 0.995, 0, 0, -0.995, 0.103, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  42.84% {
    -webkit-transform: matrix3d(-0.627, 0.779, 0, 0, -0.779, -0.627, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(-0.627, 0.779, 0, 0, -0.779, -0.627, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  57.12% {
    -webkit-transform: matrix3d(-0.893, 0.45, 0, 0, -0.45, -0.893, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(-0.893, 0.45, 0, 0, -0.45, -0.893, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  71.4% {
    -webkit-transform: matrix3d(-0.97, 0.241, 0, 0, -0.241, -0.97, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(-0.97, 0.241, 0, 0, -0.241, -0.97, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  90% {
    -webkit-transform: matrix3d(-1, 0.016, 0, 0, -0.016, -1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(-1, 0.016, 0, 0, -0.016, -1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  100% {
    -webkit-transform: matrix3d(-1, 0.016, 0, 0, -0.016, -1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(-1, 0.016, 0, 0, -0.016, -1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}

.list-button_text {
  position: relative;
  top: -2px;
}

.article-list_remaining {
  font-size: .875em;
  font-style: italic;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 34px;
  margin-left: 10px;
  display: inline-block;
  position: relative;
  top: -2px;
}

.trending-articles {
  margin-bottom: 30px;
}

.trending-articles_title {
  font-size: 1.875em;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.0125em;
  color: #e41f35;
  margin-bottom: 25px;
}

.trending {
  padding-left: 25px;
  margin-bottom: 10px;
}

.trending .article-summary_title {
  font-size: 1.1875em;
  line-height: 1.25;
  display: inline;
}

.trending .article-summary_counter {
  font-weight: 300;
  margin-right: 10px;
  margin-left: -25px;
  display: inline;
}

select::-ms-expand {
  display: none;
}

@media (min-width: 1200px) {
  .article-inline-parsys {
    width: 500px;
  }
  .article-inline-text {
    width: 680px;
  }
}

@media (min-width: 991px) {
  .essential-article-par div.title-date {
    margin-left: 40px;
  }
  .title-date-nonfeatured, .essential-article-par div.title-date {
    margin-left: 40px;
  }
  .essential-article-par {
    margin-top: -64px;
  }
  .ei-fullwidth-par .default-gutter {
    padding-left: calc(5.5% - -55px);
  }
  .ei-article-leftpar {
    padding-left: 40px;
  }
  .essentialInsightsarticle .utility-nav {
    float: none;
    margin-bottom: 30px;
  }
}

@media (max-width: 1199px) {
  .article-inline-parsys {
    width: 500px;
  }
  .article-inline-text {
    width: 680px;
  }
  .essential-article-par div.title-date {
    width: 60%;
  }
}

@media (max-width: 991px) {
  .eIarticle-title {
    margin-top: 30px;
  }
  .ei-fullwidth-par .default-gutter {
    padding-left: calc(5.5vw - -15px);
    padding-right: calc(5.5vw - -15px);
  }
  .article-inline-parsys {
    width: 500px;
  }
  .article-inline-text {
    width: 680px;
  }
  .eiContributor {
    border-top: 1px solid #5d5d5d;
    border-bottom: 1px solid #5d5d5d;
    padding-bottom: 25px;
  }
  .essential-signup {
    width: 482px;
    margin: 0 auto 60px;
  }
  .essential-signup:before {
    left: calc(-100vw - 241px);
    right: calc(-100vw - 241px);
  }
  .essential-signup_cta, .essential-signup_form {
    display: block;
    float: none;
    text-align: center;
  }
  .essential-signup_cta {
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .essential-article-par div.title-date {
    width: 100%;
    margin-top: 30px;
    height: auto;
    margin-left: 0;
  }
  .article-quote-stretch-right .case-study-small-quote {
    word-wrap: break-word;
    float: inherit;
  }
  .essential-article-par {
    padding-left: 25px;
    padding-right: 25px;
  }
  .ei-fullwidth-par .default-gutter {
    padding-left: 40px;
    padding-right: 40px;
  }
  .essentialInsightsarticle .utility-nav.ei-article-utility {
    margin-top: 0;
    top: -85px;
  }
  .white, .black {
    color: #333;
  }
  .eiContributor {
    border-top: 1px solid #5d5d5d;
    border-bottom: 1px solid #5d5d5d;
    padding-bottom: 25px;
    margin-top: 30px;
  }
  .article-inline-parsys {
    width: 500px;
  }
  .article-inline-text {
    width: 100%;
  }
  .textTitleAsset .pull-right {
    margin-left: 30px;
  }
  .masthead {
    padding: 20px 0;
    margin: 0;
    border: 0 none;
  }
  .masthead_title, .masthead_filter {
    display: inline-block;
    width: auto;
  }
  .masthead_filter {
    text-align: left;
    padding-top: 0;
    position: relative;
    top: -6px;
    margin-top: 16px;
  }
  .article-summary {
    padding-top: 20px;
    margin: 20px 0;
    border-top: 1px solid #ccc;
  }
  .featured-article, .visual-article, .list-article, .trending {
    border-top: 0 none;
    margin-top: 0;
    padding-top: 0;
  }
  .article-summary img {
    max-width: calc(100% - -90px);
    margin-left: -40px;
    margin-right: -40px;
    border-radius: 0;
  }
  .article-summary_author {
    font-size: 1em;
  }
  .article-summary_desc {
    font-size: 1.25em;
  }
  .article-list {
    margin-right: 0;
  }
  .list-article {
    margin-bottom: 40px;
  }
  .list-article img {
    max-width: 100%;
    border-radius: 5px;
    margin: 0 0 15px;
    display: block;
    float: none;
    width: 100%;
  }
  .list-article .article-summary_copy, .list-article a + .article-summary_copy {
    width: 100%;
    display: block;
    float: none;
  }
  .article-summary_title, .featured-article .article-summary_title {
    font-size: 1.875em;
  }
  .article-list_more {
    text-align: left;
  }
  .trending .article-summary_title {
    font-size: 1.36em;
  }
  .essential-signup_cta {
    font-size: 1.28em;
  }
  .essential-signup_cta .callout {
    font-size: 1.5em;
  }
}

@media (max-width: 540px) {
  .essential-signup, .essential-signup_form, .essential-signup_cta {
    text-align: left;
  }
  .essential-signup {
    padding: 0 25px;
  }
  .essential-signup:before {
    background: 0;
  }
  .essential-signup_cta .callout {
    line-height: 1.1;
  }
  #essential-email {
    width: 100%;
    display: block;
    margin-bottom: 10px;
  }
}

@media print {
  *, *::before, *::after {
    color: rgba(0, 0, 0, 0.8) !important;
    box-sizing: border-box;
  }
  body {
    font-size: 11pt;
    color: rgba(0, 0, 0, 0.8) !important;
    line-height: 1.5;
    margin: 0 auto;
    padding: 0;
  }
  @page {
    margin: 0.5in 0.25in 1in;
  }
  .default-gutter, .ei-article-leftpar {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .ei-fullwidth-par .default-gutter {
    padding-left: 15px;
    padding-right: 15px;
  }
  .cardinal-logo {
    padding-top: .25in;
    padding-left: 0;
  }
  .cardinal-logo-img {
    height: .5in;
    max-height: .5in;
  }
  a {
    page-break-inside: avoid;
  }
  blockquote, .textTitleAsset {
    page-break-inside: avoid;
  }
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
    page-break-inside: avoid;
    overflow: visible !important;
  }
  img, .case-study-main-carousel {
    page-break-inside: avoid;
    page-break-after: avoid;
  }
  table, pre {
    page-break-inside: avoid;
  }
  ul, ol, dl {
    page-break-before: avoid;
  }
  p {
    padding: 0;
    margin-bottom: .125in;
    overflow: visible !important;
    page-break-inside: avoid;
    display: inline;
  }
  h2, h3, p {
    orphans: 3;
    widows: 3;
  }
  .row {
    margin-left: 0;
    margin-right: 0;
  }
  .textimage .textimage-text p {
    display: block;
  }
  .video {
    display: none !important;
  }
  .title h2 {
    margin-top: .25in;
    margin-bottom: .125in;
  }
  .col-lg-12, .col-md-12 {
    width: 100%;
    display: block;
  }
  .col-lg-11, .col-md-11 {
    width: 91.66%;
    display: inline-block;
  }
  .col-lg-10, .col-md-10 {
    width: 83.33%;
    display: inline-block;
  }
  .col-lg-9, .col-md-9 {
    width: 75%;
    display: inline-block;
  }
  .col-lg-8, .col-md-8 {
    width: 66.66%;
    display: inline-block;
  }
  .col-lg-7, .col-md-7 {
    width: 58.33%;
    display: inline-block;
  }
  .col-lg-6, .col-md-6 {
    width: 50%;
    display: inline-block;
  }
  .col-lg-5, .col-md-5 {
    width: 41.66%;
    display: inline-block;
  }
  .col-lg-4, .col-md-4 {
    width: 33.33%;
    display: inline-block;
  }
  .col-lg-3, .col-md-3 {
    width: 25%;
    display: inline-block;
  }
  .col-lg-2, .col-md-2 {
    width: 16.66%;
    display: inline-block;
  }
  .col-lg-1, .col-md-1 {
    width: 8.33%;
    display: inline-block;
  }
  .essential-article-par.full-width-image-article-light {
    margin: .25in 0 0;
    width: 100%;
    height: auto;
    padding: 0;
  }
  .eIarticle-title {
    margin-top: .25in;
  }
  .eIarticle-title h2 {
    margin-bottom: 0;
  }
  .title-date .article-date {
    margin-top: .25in;
  }
  .textTitleAsset .col-sm-6.pull-right {
    float: right !important;
    width: 50% !important;
    margin-left: .25in !important;
    margin-bottom: .25in !important;
  }
  .ei-article-bannertta {
    display: block;
    clear: both;
    margin: .25in 0;
    padding-top: 10px;
  }
  .article-date > h4 {
    line-height: 1.5;
  }
  .title-date-nonfeatured {
    margin-top: 20px;
    margin-left: 40px;
  }
  .article-quote-stretch-right {
    height: auto !important;
  }
  .article-quote-stretch-right:after {
    content: "";
    display: table;
    clear: both;
  }
  .testimonial:after {
    content: "";
    display: table;
    clear: both;
  }
  .full-width-image-article-light > div {
    position: relative;
    width: 100%;
  }
  .full-width-image-article-light > div img {
    position: relative;
    height: auto;
    width: 100%;
  }
  .essential-article-par div.title-date {
    width: 100% !important;
    margin: 0 !important;
    color: rgba(0, 0, 0, 0.8) !important;
  }
  .essentialInsightsarticle .col-md-8, .essentialInsightsarticle .col-md-4 {
    width: 100% !important;
    float: none;
    right: auto;
    left: auto;
  }
  .dropcase {
    line-height: 60%;
  }
  .container {
    width: 100% !important;
  }
  .article-inline-text {
    width: 100%;
  }
  .contributor-head {
    color: #e41f35 !important;
    display: block !important;
  }
  .eiContributor {
    border-top: 1px solid #5d5d5d;
    border-bottom: 1px solid #5d5d5d;
    padding-bottom: 25px;
    margin-left: -15px;
    margin-right: -15px;
  }
  .contributor-detail {
    display: inline-block;
    float: left;
    width: 33.33%;
    margin-bottom: .125in;
    margin-right: .125in;
    page-break-inside: avoid;
  }
  .contributor-img {
    max-width: none !important;
  }
  .ei-featured-list, .ei-contributor-list {
    display: block;
  }
  .ei-featured-list:after, .ei-contributor-list:after {
    content: "";
    display: table;
    clear: both;
  }
  .footerAllBlackBg {
    background-color: #1a1a1a !important;
  }
  .companyColumn, .columnSupport, .connectColumn, .sign-in-all {
    display: none !important;
    min-width: 0;
  }
  .copyright-footer-all {
    color: #fff !important;
  }
  .footerAllBgImg {
    background-image: url("//info.cardinalhealth.com/l/34802/2015-07-21/7563ly/34802/110860/black_footer.png") !important;
    background-size: 100% !important;
    margin-bottom: -0.125in;
    min-width: 100%;
    min-height: .5in;
  }
  .ei-fullwidth-par .textimage, .default-gutter .textimage {
    border: 1px solid #ccc !important;
    border-radius: 5px;
    margin-bottom: .25in;
  }
  .ei-fullwidth-par .textimage img, .default-gutter .textimage img {
    border-radius: 5px 5px 0 0;
  }
  .visual-case-study, .product-article {
    display: block;
  }
  .article-image-boundary, .article-image-container {
    max-width: 1in;
    max-height: 1in;
  }
  .visual-case-study h2 {
    margin-top: .25in;
  }
  .visual-case-study h3 {
    margin-top: .125in;
    margin-bottom: .125in;
  }
  .visual-case-study p {
    margin-bottom: .125in;
  }
  .masthead {
    border-bottom: .25pt solid #ccc;
    padding: .125in 0;
    margin-left: -0.0625in;
    margin-right: -0.0625in;
    width: auto;
    margin-bottom: .25in;
    margin-top: .25in;
  }
  .col-md-6.masthead_title {
    width: 41% !important;
  }
  .col-md-6.masthead_filter {
    width: 58% !important;
  }
  .audience-filter_label {
    display: inline-block !important;
  }
  #audience-filter {
    background: #ebebeb !important;
  }
  .article-list_more {
    display: none;
  }
  .list-article img {
    margin-bottom: 40px;
  }
  .article-summary {
    page-break-inside: avoid;
  }
  .article-summary img {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .article-grid .col-md-6 {
    width: 50% !important;
    padding: 0 0.125in;
    display: inline-block;
    float: left;
  }
  .article-grid .col-md-3 {
    width: 25% !important;
    padding: 0 0.125in;
    display: inline-block;
    float: left;
  }
  .article-summary {
    padding-top: 0;
    margin: 0 0 10px;
    border-top: 0 none;
  }
  .article-summary_title {
    margin-bottom: 5px;
    display: inline-block;
    width: 100%;
  }
  .article-summary_desc {
    display: inline-block;
    width: 100%;
  }
  .article-summary_author {
    margin-bottom: .0625in !important;
  }
  .trending {
    margin-bottom: .125in;
    margin-top: 0;
  }
  .trending .article-summary_title {
    margin-bottom: 0;
  }
  .trending-articles_title {
    margin-bottom: .125in;
  }
  .article-grid, .essential-signup {
    margin-bottom: .125in;
  }
  .list-col {
    width: 66.66%;
    float: left;
    padding: 0 0.0625in;
    right: auto;
  }
  .trending-col {
    width: 33.33%;
    float: left;
    padding: 0 0.0625in;
    left: auto;
  }
  .trending-col .col-sm-6 {
    width: 100% !important;
  }
  .list-article img {
    width: 33.33%;
    max-width: .25in;
    margin: 0 0.125in 0.125in 0 !important;
    display: inline-block !important;
    float: left;
  }
  .list-article {
    max-width: 100%;
  }
  .trending a {
    display: block;
    max-width: 100%;
  }
  .list-article a + .article-summary_copy {
    width: calc(66.66% - .125in) !important;
    display: inline-block !important;
  }
  .list-article .article-summary_title {
    margin-top: 0 !important;
  }
  #essential-email, #audience-filter {
    background: #ebebeb !important;
  }
  .cta-button {
    background: #e41f35 !important;
    color: #fff !important;
  }
  .red, .trending-articles_title, .essential-signup_cta a::after {
    color: #e41f35 !important;
  }
  .essential-signup {
    max-width: 100%;
    padding: 0;
    display: none !important;
  }
  .essential-signup input[name="EmailAddress"] {
    max-width: .5in;
    background: #ebebeb !important;
  }
  .essential-signup:before {
    background: #ccc !important;
    left: 0;
    right: 0;
  }
  .essential-signup:after {
    background: #fff !important;
  }
  .essential-signup_form {
    float: none;
    margin-top: 10px;
  }
  .essential-signup_cta, .essential-signup_form {
    display: inline-block;
    float: left;
    text-align: left;
  }
  .essential-signup_form {
    float: right;
    margin-top: 0;
  }
  #essential-email {
    width: 150px;
  }
  .essential-signup {
    width: auto;
    max-width: 90%;
    margin: 0 auto 0.125in;
    text-align: center;
  }
  .article-grid > .col-md-6 {
    width: 50% !important;
    padding: 0 0.0625in;
  }
  .article-grid > .col-md-3 {
    width: 25% !important;
    padding: 0 0.0625in;
  }
  .moving-header:after {
    content: "";
    display: table;
    clear: both;
  }
  .col-md-3 {
    width: 25%;
    padding: 0 0.0625in;
  }
  .col-md-9 {
    width: 75%;
    padding: 0 0.0625in;
  }
  .case-study-main-carousel .slick-slide, .case-study-main-carousel .slick-cloned, .case-study-main-carousel .slick-dots, .case-study-main-carousel .icon-show-carousel, .icon-hide-carousel {
    display: none !important;
  }
  .case-study-main-carousel .slick-list.draggable .img-container:nth-of-type(2) {
    display: inline-block !important;
    width: 100vw !important;
  }
  .carousel-captions-container {
    all: initial !important;
    display: inline-block !important;
    background-color: rgba(0, 0, 0, 0.6) !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 2in !important;
    height: auto !important;
    min-height: .5in !important;
    position: absolute !important;
    left: 25% !important;
    top: 25% !important;
    padding: 1.25em 1.25em 1em 1.25em !important;
    border-radius: 5px !important;
  }
  .carousel-captions-container .slick-list.draggable .slick-slide:nth-of-type(2) {
    all: initial !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #fff !important;
  }
  .carousel-captions-container p, .carousel-captions-container p * {
    all: initial !important;
    color: #fff !important;
    overflow: visible !important;
    width: auto !important;
    font-family: 'myriad-pro' !important;
  }
  .carousel-captions, .case-study-main-carousel .carousel-captions .slick-list, .case-study-main-carousel .carousel-captions .slick-track {
    all: initial !important;
    height: auto !important;
    max-height: none !important;
  }
  .carousel-captions .slick-slide {
    height: auto !important;
  }
  .article-author {
    padding-left: 25px !important;
    padding-right: 25px !important;
    margin-top: 25px !important;
    margin-bottom: 20px !important;
    max-width: 265px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding-bottom: 1em;
    padding-top: 0 !important;
    display: block !important;
    page-break-inside: avoid !important;
  }
  .article-author > div {
    margin: 0 -25px 1em -25px;
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    float: none;
    border-radius: 0;
  }
  .article-author > div > img {
    width: 100%;
    max-width: 100%;
    border-radius: 5px 5px 0 0;
    position: static;
    height: auto;
  }
  .visual-case-study {
    all: initial;
    display: block;
    margin-top: 25px;
    border-radius: 8px;
    border: 1px solid #ccc;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    padding-top: 25px;
    padding-bottom: 20px;
  }
  .article-image-boundary {
    all: initial;
    width: 85%;
    max-width: 1in;
    max-height: 1in;
    margin-left: auto;
    margin-right: auto;
  }
  .article-image-container {
    all: initial;
    display: block;
    border-radius: 50%;
    border: 5px solid #EEE;
    height: 100%;
    width: 100%;
    overflow: hidden;
    max-width: 85%;
    max-height: 1.5in;
    margin: 0 auto;
  }
  .visual-case-study-copy {
    all: initial;
    display: block;
    padding-left: 8%;
    padding-right: 8%;
  }
  .product-article {
    margin: 30px 0 0;
  }
  .product-article > div {
    padding-left: 25px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  .product-article > div > div > div.article-image-boundary {
    float: none;
    display: inline-block;
    width: 25%;
    margin-left: 0;
    margin-top: 0;
    max-width: 8em;
    max-height: none;
  }
  .product-article > div > div > div:last-child {
    display: inline-block;
    width: calc(100% - 13em);
  }
  .case-study-stats {
    display: block;
  }
  .case-study-stats > .img-container {
    border-radius: 5px 5px 0 0;
    width: 100%;
    height: auto;
    min-height: 0;
  }
  .case-study-stats > .img-container + .text-content {
    width: 100% !important;
    float: none !important;
  }
  .tab {
    margin-top: 30px;
  }
  .product-detail-tabbed-content .title {
    display: none !important;
  }
  .mobile-tabbed-content-title {
    border-top: 1px solid black;
    display: block !important;
  }
  .mobile-tabbed-content-title-text {
    width: 100%;
    margin-top: 18px;
    padding-left: 24px;
    display: inline-block !important;
    position: relative;
    margin-bottom: 10px;
  }
  .tabbed-content {
    display: block;
    page-break-inside: avoid;
    overflow: visible !important;
  }
  .tabs-content-container {
    border: 0;
    display: block !important;
  }
  .tab .rte {
    overflow: visible !important;
    display: block !important;
  }
  #now-trending {
    page-break-inside: avoid;
  }
  #now-trending-carousel .slick-track {
    width: 100% !important;
  }
  .now-trending-background .slick-track img {
    all: initial;
    width: auto;
    height: 100%;
    right: 0 !important;
  }
  #now-trending > .now-trending-background > .slick-list > .slick-track > .slick-slide > img {
    right: 0 !important;
    position: absolute !important;
  }
  .now-trending-background {
    right: 0 !important;
    width: 100vw !important;
  }
  #now-trending .story.slick-slide {
    width: auto !important;
    display: none !important;
  }
  .now-trending_carousel_L, .now-trending_carousel_R, #now-trending .slick-dots {
    display: none !important;
  }
  #now-trending-carousel .story h2 {
    color: #fff !important;
  }
  #now-trending-carousel .story p {
    color: #fff !important;
  }
  #now-trending-carousel .story p.trend-title {
    color: #fff !important;
  }
  #now-trending-carousel .story:nth-of-type(2) {
    display: block !important;
  }
}

.video,
body h1 {
  position: relative;
}

.left-menu h3 a:after,
.left-menu h3 span {
  content: "";
}

label {
  display: block;
  font-size: 16px;
  color: #666666;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

input, select, text, textarea {
  display: block;
  width: 100%;
}

input[type="submit"] {
  width: auto;
}

.header h2,
.open h3 {
  text-align: right;
  font-weight: 300;
}

@font-face {
  font-family: cardinal;
  src: url(http://www.cardinalhealth.com/content/dam/corp/web/fonts/.eot);
  src: url(http://www.cardinalhealth.com/content/dam/corp/web/fonts/cardinal.eot?#iefix) format("embedded-opentype"), url(http://www.cardinalhealth.com/content/dam/corp/web/fonts/.woff) format("woff"), url(http://www.cardinalhealth.com/content/dam/corp/web/fonts/.ttf) format("truetype"), url(http://www.cardinalhealth.com/content/dam/corp/web/fonts/.svg#archerlight) format("svg");
  font-weight: 400;
  font-style: normal;
}

body {
  overflow-x: hidden;
}

body h1 {
  font-size: 2.5em;
  margin: 30px 0;
  z-index: 4;
}

body h2 {
  font-weight: 700;
}

li,
ol,
p,
ul {
  font-weight: 400;
}

img {
  max-width: 100%;
}

p {
  font-size: 1em;
  margin-bottom: 20px;
}

.video {
  padding-bottom: 51.95%;
  padding-top: 4.4%;
  height: 0;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.header h2 {
  margin: 0;
  padding-right: 5.5%;
}

.navigation {
  background: #FFF;
  margin-top: -1px;
  padding: 12px;
  z-index: 1;
}

.moving-header {
  position: relative;
  z-index: 10;
  padding-bottom: 10px;
}

.header-underlay-mobile {
  padding: 0;
}

.left-menu {
  position: relative;
  left: 0;
}

.left-menu a,
.left-menu p {
  display: block;
  margin: 0;
  padding: 0;
}

.left-menu h2 {
  font-weight: 300;
  border-bottom: 1px solid #000;
  padding-bottom: 7px;
  margin: 20px 0 10px;
  height: auto;
  line-height: 1.1;
  font-size: 21px;
}

.left-menu h3 a {
  position: relative;
  padding: 0;
  border: 0;
  line-height: 1;
}

.left-menu h3 a:after {
  display: none;
}

.left-menu h3 span {
  width: 2px;
  height: 50px;
  background: #5D5D5D;
  display: block;
  position: absolute;
  right: 10%;
}

.pardot-menu a:after,
.visual-case-study a:after {
  content: "\0000a0\00BB";
}

.left-menu h3 span:first-of-type {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}

.left-menu h3 span:last-of-type {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}

.left-menu h3:hover span {
  background: #E41F35;
}

.pardot-menu a {
  color: #000;
  text-decoration: none;
}

.pardot-menu a:after {
  color: #E41F35;
  font-size: 1em;
}

.pardot-menu a:focus,
.pardot-menu a:hover {
  color: #E41F35;
}

.navmenu {
  width: 100%;
  border: 0;
}

.navbar-toggle {
  margin-left: 14px;
}

.open {
  display: block;
  position: fixed;
  width: 300px;
  top: 0;
  overflow: hidden;
}

.open h3 {
  font-size: 3em;
  cursor: pointer;
}

.open a,
.open p {
  line-height: 30px;
  border-bottom: 1px solid #FFF;
  display: block;
  font-size: 18px;
  padding: 12px 34px 12px 21px;
  margin: 0;
}

.open h2 {
  font-weight: 700;
  font-size: 21px;
  padding-left: 21px;
  padding-right: 21px;
  border-bottom: solid 1px #d6d6d6;
  margin: 0;
  line-height: 29px;
}

.full-width-image-article-light > h2,
.full-width-image-article-light > p,
.product-article > div > div > div h2 a {
  font-weight: 300;
}

input,
label {
  line-height: 24px;
}

.product-article {
  margin: 30px 0;
}

.case-study-author {
  margin-bottom: 20px;
}

.case-study-author .product-download-sheet h2 {
  margin: 0;
  padding-top: .5em;
}

.image-left_title {
  font-weight: 600;
  font-size: 2.5em;
}

.image-left_content,
.image-left_content li,
.image-left_content ol,
.image-left_content p,
.image-left_content ul {
  color: #666;
  font-weight: 300;
}

.image-left_content {
  font-size: 1.25em;
}

.carousel-full-width-article > div > div {
  margin: 0;
  padding: 0;
  position: relative;
}

.carousel-full-width-article .slick-dots li button {
  background: #333;
  border-radius: 100%;
  border: 2px solid #FFF;
}

.carousel-full-width-article .slick-dots li button:before {
  content: "";
}

.carousel-full-width-article .slick-dots li.slick-active button {
  background: #E41F35;
}

.carousel-full-width-article.breadcrumb-background {
  margin-top: -64px;
}

.full-width-image-article-light > div img {
  max-width: none;
}

.directory-block h3:after,
.mobile-tabbed-content-title-text::after,
.question.collapsed .question-icon:before {
  width: 32px;
  height: 32px;
  background: url(http://info.cardinalhealth.com/l/34802/2015-08-24/8kddx7/34802/116584/plus_ico.png) no-repeat;
  content: "";
  position: absolute;
}

.directory-block .open h3:after,
.mobile-tabbed-content-title.title-active .mobile-tabbed-content-title-text::after,
.question .question-icon:before {
  background: url(http://info.cardinalhealth.com/l/34802/2015-08-24/8kddx5/34802/116582/minus_ico.png) no-repeat;
  content: "";
  width: 32px;
  height: 32px;
  position: absolute;
}

.tablet-bottom-row .col-sm-4 {
  padding-top: 20px;
}

.tablet-bottom-row {
  padding: 0 0 20px;
}

.form-cta {
  font-weight: 300;
  margin-bottom: 20px;
  font-size: 1.75em;
  margin-top: 15px;
}

input {
  padding: 5px;
  font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
  border-radius: 2px;
  height: auto;
}

label {
  padding: 0;
  text-align: left;
}

.connect-body input[type=submit] {
  margin: 0;
  font-size: 18px;
  font-weight: 300;
  max-width: 100%;
  height: 34px;
  border-radius: 5px;
  padding-left: 10%;
  padding-right: 10%;
}

.form.form div.submit {
  margin: 0;
}

form.form div.required label,
form.form span.required label {
  padding-left: 0;
  background: 0 0;
}

form.form div.required label:after,
form.form span.required label:after {
  content: "*";
  color: #E41F35;
}

input,
select,
text,
textarea {
  border-color: #7c7c7c #c3c3c3 #ddd;
  border-style: solid;
  border-width: 0;
  background: url(http://www.cardinalhealth.com/etc/designs/default/images/social/fieldbg.gif) center top repeat-x #E7E7E7;
  border-radius: 2px;
  margin-bottom: 8px;
  padding: 5px;
  font-weight: 400;
  font-size: 1em;
  color: #000;
}

textarea {
  min-height: 150px;
}

.connect-body .email {
  margin-bottom: 0;
}

form.form,
form.form div {
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.45;
  font-family: Myriad Pro, sans-serif;
}

.connect-body {
  padding: none;
  border: none;
}

.description,
form.form div span.description {
  color: #000;
  margin-left: 0;
  font-style: italic;
}

.description a {
  color: #E41F35;
  font-style: italic;
}

.header-title {
  text-align: center;
  margin: 60px 0;
  width: 100%;
  display: block;
}

.header-title h1 {
  font-size: 2.25em;
  font-weight: 300;
  letter-spacing: -.0325em;
}

.header-title h2 {
  font-size: 1.5em;
  font-weight: 700;
}

.header-title p {
  font-size: 1.25em;
  font-weight: 300;
}

.header-title button {
  margin: 0 auto;
  width: 200px;
  height: 34px;
  text-align: center;
}

.expert-card {
  display: block;
  text-align: center;
  font-size: 1.1em;
  font-weight: 300;
  color: #333;
}

.expert-card img {
  width: 100%;
  display: block;
  max-width: 200px;
  margin: 0 auto 10px;
}

.expert-card h2 {
  font-size: 1.5em;
  font-weight: 700;
  color: #333;
  margin: 0;
  padding: 0;
}

.expert-card p {
  padding: 0;
}

.expert-specialty {
  color: #e41f35;
  font-size: 1em;
  font-weight: 400;
}

.about-us-featured-zone.reverse {
  border-radius: 4px;
}

.about-us-featured-zone.reverse .about-feature-description {
  background-color: #f3f2f8;
}

.about-us-featured-zone.reverse .about-feature-description h2, .about-us-featured-zone.reverse .about-feature-description p {
  color: #333333;
}

.about-us-featured-zone.reverse .about-feature-description a {
  color: #000000;
  font-weight: 700;
  font-size: 1.1em;
  margin-top: 20px;
  display: block;
}

.about-us-featured-zone.reverse .about-feature-description a:hover {
  color: #e41f35;
}

.about-us-featured-zone.reverse .about-feature-description a:after {
  color: #e41f35;
}

.about-us-featured-zone.reverse .about-feature-description a:hover:after {
  color: #e41f35;
}

a.cta-button:after {
  content: "";
}

a.cta-button:hover {
  color: #FFFFFF;
}

.bordered {
  text-align: center;
  font-size: 1em;
  border-bottom: 1px solid #cccccc;
  margin-bottom: 30px;
  font-weight: 700;
}

.bordered h2 {
  display: inline-block;
  position: relative;
  top: 25px;
  font-weight: 700;
  background-color: #fff;
  padding: 0 40px;
}

p.large {
  font-size: 1.25em;
  font-weight: 300;
  line-height: 1.5;
}

@media (min-width: 1280px) {
  .video-modal .modal-dialog {
    margin-top: 150px;
  }
}

@media (max-width: 991px) {
  .tout.color-block {
    margin-left: calc(-5.5% - 7.5px);
    margin-right: calc(-5.5% - 8px);
    position: relative;
    padding: 60px calc(5.5% + 8px);
  }
  .color-block .tout-content {
    width: 75%;
  }
  .form-offset {
    margin-top: -48px;
  }
  #left-menu {
    display: none;
    padding: 0 5px;
    box-shadow: 1px 6px 20px rgba(0, 0, 0, 0.1), -1px 6px 20px rgba(0, 0, 0, 0.1);
  }
  .mobile-menu {
    display: inline-block;
  }
  #menu-toggle:checked + #left-menu {
    display: block;
  }
  .left-menu {
    position: fixed;
  }
  .left-menu a,
  .left-menu p {
    padding: 12px 34px 12px 21px;
  }
  .navbar-toggle {
    display: block;
    margin: 0 0 0 14px;
    padding: 0;
    border: 0;
    border-radius: 0;
    cursor: pointer;
  }
  .cardinal-logo {
    padding-bottom: 14px;
  }
  .moving-header {
    padding-bottom: 0;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
  }
  .navigation {
    display: none;
  }
  #title {
    padding-right: 55px;
    font-size: 1.25em;
    margin-top: 0;
  }
  .category-2-category-container > .inner h2:after {
    width: 32px;
    height: 32px;
    background: url(http://info.cardinalhealth.com/l/34802/2015-08-24/8kddx7/34802/116584/plus_ico.png) no-repeat;
    content: "";
    position: absolute;
    right: 5%;
  }
  .category-2-category-container > .inner h2.expand:after {
    background: url(http://info.cardinalhealth.com/l/34802/2015-08-24/8kddx5/34802/116582/minus_ico.png) no-repeat;
    content: "";
    width: 32px;
    height: 32px;
    position: absolute;
  }
}

@media (min-width: 991px) {
  .tout {
    padding: 60px 5.5%;
  }
  .open {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
  }
  .open h2 {
    font-weight: 300;
    padding: 0 0 7px;
    font-size: 28px;
    line-height: 1.1;
  }
  .left-menu {
    left: auto;
  }
  .header h2 {
    line-height: 1;
    text-align: right;
    padding-right: 5.5%;
  }
  .single-form {
    padding-top: 6 0px;
    min-height: 240px;
  }
  .single-form .input-text {
    width: 100%;
    display: inline-block;
  }
}

@media (min-width: 768px) {
  .horz-form #pardot-form {
    display: flex;
    align-items: flex-end;
  }
  .horz-form #pardot-form .form-field {
    padding: 0 8px;
  }
  .horz-form #pardot-form .cta-button {
    margin-bottom: 20px;
  }
  span.reverse {
    color: #FFFFFF;
  }
  .video-text h2 {
    padding-top: 15%;
  }
}

@media (max-width: 767px) {
  .video-modal .modal-close {
    top: -40px;
    right: 25px;
  }
  .video-modal .modal-dialog {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin: 0;
    margin-top: 25vw;
  }
  .banner-copy h2, .banner-copy p {
    font-size: 3em;
  }
  .mobile-menu {
    top: 25px;
  }
  .cardinal-logo {
    float: left;
  }
  .button-red {
    height: auto;
    min-height: 44px;
    min-width: 200px;
  }
  .header {
    height: auto;
  }
  .video {
    margin-right: 0 !important;
  }
  .full-width-image-article-light > div.color-block {
    top: 20px;
    height: 50%;
    width: 70%;
  }
  .single-form {
    height: auto;
    padding-bottom: 40px;
  }
  .full-width-image-article-light > div.color-block {
    width: 100%;
    height: 20px;
    top: 290px;
    left: 0;
  }
  .full-width-image-article-light > div.banner-copy.reverse {
    background: #e41f35;
    padding: 0 50px;
    margin-left: -25px;
    margin-right: -25px;
    width: auto;
  }
  .banner-copy h2, .banner-copy p {
    width: 100%;
  }
  .tout {
    padding: 0;
  }
  .color-block .tout-content {
    padding-bottom: 60px;
  }
  .form-offset {
    margin-top: -30px;
  }
  .tout-media {
    width: auto;
    padding: 0;
    margin-left: -25px;
    margin-right: -25px;
  }
  .tout-media img {
    border-radius: 0;
  }
  .color-block .tout-content {
    display: block;
    width: 100%;
    padding: 30px 0;
  }
  .color-block .tout-media {
    margin-left: -50px;
    margin-right: -50px;
  }
  .color-block .tout-media, .color-block .tout-media img {
    position: static;
    display: none;
    width: auto;
    padding: 0;
  }
  .tout.color-block {
    padding: 0 50px;
    margin: 0 -25px;
  }
  .footer-tuck {
    padding-bottom: 30px;
  }
  .cardinal-logo-img {
    height: 50px;
  }
  .cardinal-logo {
    height: auto;
  }
  .tout-content--heading {
    font-size: 2.25em;
  }
  .tout-content--eyebrow {
    font-size: 16px;
  }
  .tout.color-block {
    padding: 0 25px;
  }
}

@media (min-width: 541px) {
  .reverse > h2 {
    color: #FFF;
  }
  /*.header {
        align-items: flex-end;
        display: flex;
        justify-content: space-between;
    }*/
}

@media (max-width: 540px) {
  .full-width-image-article-light > div.color-block {
    top: calc(70vw - 20px);
  }
  .large-copy h2, .large-copy p {
    font-size: 2.5em;
  }
}

form:after {
  content: "";
  display: table;
  clear: both;
}

form.form select, input, select, text, textarea {
  background: #ebebeb;
}

select {
  height: 34px !important;
}

.header {
  height: auto !important;
  box-shadow: 0 0 !important;
}

.tabbed-content .rte {
  overflow: visible;
}

.case-study-stats {
  min-height: 215px;
}

.button-red {
  font-size: 16px;
  padding: 7px 10%;
}

body h1 {
  font-size: 2em;
  letter-spacing: -.025em;
  line-height: 1.45em;
  max-width: 100%;
  display: block;
  margin: 40px 0 30px;
}

.reverse > h2, .reverse > p {
  color: #FFF;
}

.full-width-image-article-light h2 {
  position: relative;
  z-index: 10;
  padding-top: 5%;
}

.full-width-image-article-light p {
  position: relative;
  z-index: 10;
}

.full-width-image-article-light > div.color-block {
  position: absolute;
  z-index: 1;
  left: -5.5vw;
  top: 15%;
  height: 70%;
  width: 60%;
  background-color: #e41f35;
  content: "";
  mix-blend-mode: multiply;
}

.video-row .video-container {
  height: 100%;
}

.video-row .video-text {
  padding: 30px 70px 30px 0;
}

.video-text h2 {
  margin-top: 0;
}

.is-tablet .video-row .video-text {
  padding: 20px 0;
}

.mobile-tabbed-content-title-text::after {
  right: 0;
  cursor: pointer;
}

.mobile-tabbed-content-title-text {
  cursor: pointer;
}

.video-row .video-text {
  padding: 30px 0 30px 30px;
}

.video-row .video-text h2 {
  font-size: 10vw !important;
}

/** brand new code **/
.wings h2 {
  font-size: 2.5em;
}

.wings p {
  font-size: 2.5em;
}

.tout {
  padding: 60px 0;
}

.tout:after {
  content: "";
  display: table;
  clear: both;
}

.tout-media img {
  border-radius: 8px;
}

.tout-content {
  margin-top: 30px;
}

.tout-content--eyebrow {
  font-weight: 700;
  font-size: 2em;
  color: #5AC9E6;
}

.tout-content--heading {
  font-size: 3em;
  font-weight: 300;
  letter-spacing: -0.0125em;
  line-height: 90%;
  padding: 0;
  margin: 0;
}

.tout-content--copy, .tout-content--cta {
  display: block;
  font-size: 1.5em;
  font-weight: 300;
  line-height: 1.5;
  color: #333333;
  margin: 0;
}

.tout-content--cta {
  font-weight: 700;
}

.blue {
  background: #9AD9E9;
}

.grey {
  background-color: #f3f2f8;
}

.tan {
  background: #EBE1D2;
}

.tout.color-block {
  margin-left: calc(-5.5% - 7.5px);
  margin-right: calc(-5.5% - 8px);
  position: relative;
  padding: 60px calc(5.5% + 8px);
}

.color-block .tout-content {
  margin-top: 0;
  position: relative;
  z-index: 10;
}

.color-block .tout-media {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  padding: 0 0 0 15px;
  width: 100%;
}

.color-block .tout-media img {
  border-radius: 0;
  height: 100%;
  position: absolute;
  right: 0;
}

.form-heading {
  font-size: 2em;
  font-weight: 700;
}

.highlight {
  color: #5AC9E6;
}

.footer-tuck {
  margin-bottom: -80px;
}

.large-copy h2, .large-copy p {
  font-size: 3.75em;
  line-height: 1;
}

.form-offset {
  background: #FFFFFF;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  padding: 20px;
  margin-top: -70px;
}

.form-offset .cta-button {
  width: 100%;
}

.form-offset .description {
  display: block;
  margin-bottom: 20px;
}

h1.lift {
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.1;
}

input, select, text, textarea {
  margin-bottom: 20px;
}

.large-copy {
  font-size: 1.25em;
  font-weight: 300;
  line-height: 1.5;
}

.cardinal-logo {
  padding-top: 20px;
}

.cardinal-logo-img {
  max-height: 50px;
}

.moving-header {
  padding-bottom: 0;
}

.video-modal .modal-body {
  padding: 0;
}

.video-modal .modal-content {
  border-radius: 0;
}

.video-modal .modal-header {
  padding: 0;
  position: static;
  border: 0 none;
  background-color: none;
  min-height: 0;
}

.video-modal .modal-close {
  position: absolute;
  top: 0;
  right: -40px;
}

.video-modal .close {
  color: #FFFFFF;
  text-shadow: 0 0 0;
  opacity: 1;
  font-size: 32px;
}

.video-modal .close:hover {
  color: #E41F35;
  opacity: 1;
}

.video-modal .modal-dialog {
  margin-top: 12vw;
  max-width: 800px;
  width: auto;
  height: auto;
}

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.modal-custom {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1000;
  display: none;
}

.zone {
  display: block;
}

.form-cta {
  color: #e41f35;
  font-size: 1.5em;
  font-weight: 700;
}

form.flex-form {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}

form.flex-form label {
  color: white !important;
}

form.flex-form .cta-button {
  background: #333333;
  height: 2.75em;
}

form.flex-form div {
  max-width: 50%;
  min-width: 25%;
  padding: 0 8px !important;
}

.flex-form select, .flex-form input {
  height: 3em !important;
  background: white;
  margin: 0;
}

.single-form, .single-form label {
  color: #ffffff !important;
}

.single-form {
  height: auto;
  padding-bottom: 30px;
  margin-top: -80px;
  margin-bottom: 60px;
}

.single-form .input-text {
  width: calc(100% - 240px);
  display: inline-block;
  margin-right: 20px;
  max-width: 320px;
}

.single-form h3 {
  margin-bottom: 0;
  margin-top: 0;
}

.full-width-image-article-light > div.banner-copy {
  height: auto;
  position: relative;
  font-weight: 300;
  width: 100%;
}

.banner-copy h2 {
  position: relative;
  width: 50%;
  font-size: 3em;
  line-height: 1.2em;
  padding-top: 20px;
  padding-bottom: 10px;
  margin-top: 0;
  margin-bottom: 0;
}

.banner-copy p {
  position: relative;
  width: 50%;
  font-size: 1.25em;
  font-weight: 300;
}

.banner-copy strong, .banner-copy h3 {
  width: 50%;
}

form:after {
  content: "";
  display: table;
  clear: both;
}

.zone {
  width: 100%;
  display: block;
}

@font-face {
  font-family: 'Glyphicons Halflings';
  src: url(/fonts/glyphicons-halflings-regular.eot);
  src: url(/fonts/glyphicons-halflings-regular.eot?#iefix) format("embedded-opentype"), url(/fonts/glyphicons-halflings-regular.woff) format("woff"), url(/fonts/glyphicons-halflings-regular.ttf) format("truetype"), url(/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format("svg");
}

@font-face {
  font-family: 'cardinal';
  src: url(/fonts/cardinal.eot);
  src: url(/fonts/cardinal.eot?#iefix) format("embedded-opentype"), url(/fonts/cardinal.woff) format("woff"), url(/fonts/cardinal.ttf) format("truetype"), url(/fonts/cardinal.svg#glyphicons_halflingsregular) format("svg");
}

body {
  line-height: 1.5;
}

.template {
  width: 100%;
  overflow-x: hidden;
}

.full-width-image-article-light h2 {
  letter-spacing: -0.025em;
}

.navigation {
  padding: 7px 0;
  margin: 0;
  z-index: 1;
}

.nav > li > a {
  font-weight: 400;
}

.primary-nav-bar {
  height: 3em;
}

.mobile-spacer {
  height: 2.0625em;
  font-size: 15px;
  width: 100%;
  background: #f7f7f7;
  display: none;
}

.mobile-submenu, .open-accordion {
  display: none;
}

/** new nav code **/
@media (max-width: 767px) {
  .open-accordion {
    color: #e41f35;
    font-family: 'cardinal';
    float: right;
    font-size: 30px;
    padding-right: 10px;
    display: inline-block;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 0;
  }
  .mobile-nav-item {
    width: calc(100% - 45px);
    float: left;
  }
  .mobile-submenu {
    background-color: #FFFFFF;
    padding: 10px 0;
    margin: 0;
    box-shadow: 5px 0 5px -5px rgba(0, 0, 0, 0.05) inset;
  }
  .mobile-submenu.closed {
    display: none;
  }
  .mobile-submenu li {
    list-style-type: none;
    display: block;
    padding: 0;
    margin: 0;
  }
  .mobile-submenu li a {
    display: block;
    padding: 10px 0 10px 20px;
    margin: 0;
    line-height: 16px;
    color: #333333;
    font-size: 17px;
    font-weight: 400;
  }
  .mobile-submenu li a:after {
    content: "\0000a0\00BB";
    color: #e41f35;
  }
}

.search > .input-group > .insearch.search-icon::before {
  content: url("/images/search-red.svg");
}

.search > .input-group > .insearch.search-icon {
  background: none;
  top: -1px;
}

/** New Utility bar code **/
.utility-nav .utility-nav-button-container {
  width: 90px;
}

body h1 {
  margin: 20px 0 10px;
}

.category-header-1 h1 {
  font-size: 2.5em;
}

.header h2.page-title-desktop, .page-title-mobile {
  text-align: right;
  margin-right: 5.5%;
  margin-top: 13px;
  margin-bottom: 3px;
  font-weight: 300;
  font-size: 1.875em;
  padding-right: 0;
}

.page-title-mobile {
  display: none;
}

.footer-desktop {
  background: #1a1a1a;
  background-image: none;
  margin-top: 0;
}

.footerAllBgImg {
  width: 100%;
  margin-top: -30px;
}

.columnTitle {
  padding-left: 5%;
  min-width: 252px;
}

.copyright-wrapper-desktop {
  top: 0;
  margin-top: 10px;
  margin-left: 15px;
  margin-bottom: 5px;
}

.large-text {
  font-size: 1.25em;
  font-weight: 300;
}

.large-text em {
  font-weight: 400;
}

.top-padding {
  padding-top: 60px;
}

.category-2-category-container h2 {
  font-weight: 300;
}

.category-description {
  margin-bottom: 30px;
}

.rss-title {
  font-size: 3em;
  font-weight: 300;
  margin-top: -30px;
}

.media-room .sweep.footerAllBgImg {
  background-image: url(rss-sweep-top.png);
}

.home-small-articles {
  background-color: #FFFFFF;
}

.media-room .social-link {
  float: left;
  margin-left: 10px;
}

.media-room .social-link:first-of-type {
  margin-left: 5.5%;
}

/** Search updates **/
.search-icon {
  position: relative;
}

.search-popup-mobile {
  top: 60px;
  margin: 60px auto 0;
  padding: 0 10px 0 25px;
}

.input-group-mobile {
  border: 0 none;
}

.search-popup-mobile .search-icon:before {
  top: 5px;
}

input.mobile-search-input {
  border: 0 none;
  font-size: 1.5em;
  font-weight: 300;
  height: 50px !important;
  font-family: "myriad-pro";
  margin-bottom: 0;
}

.close-search-mobile {
  font-family: cardinal !important;
  padding: 0;
}

/** Authentification **/
.corporate-callout {
  background-color: #f9f9f9;
  border-bottom: 1px solid #e7e7e7;
  padding-top: 10px;
  padding-bottom: 10px;
}

.corporate-callout_right {
  text-align: right;
  display: inline-block;
  float: right;
}

.login-credentials {
  display: inline-block;
}

.login-credentials_label {
  color: #333333;
  font-weight: 400;
}

.login-credentials_name {
  color: #333333;
  font-weight: 400;
}

.login-credentials a {
  color: #e41f35;
  font-weight: 400;
  display: inline-block;
  padding: 0 10px;
}

.portal {
  border-left: 1px solid #666666;
  padding-left: 10px;
  color: #e41f35;
  font-weight: 400;
  display: inline-block;
  cursor: pointer;
}

.portal:hover {
  color: #333333;
}

.mobile-login {
  padding: 10px 20px;
  border-bottom: 1px solid #FFFFFF;
  background: #e7e7e7;
}

.mobile-login .chat {
  display: block;
  padding: 0;
  border: 0 none;
}

.mobile-login .login-credentials_label, .mobile-login .login-credentials_name, .mobile-login .login-credentials a {
  font-size: 1.5em;
  font-weight: 300;
}

.mobile-login .login-credentials a {
  display: block;
  padding: 0;
}

.mobile-login .login-credentials a:hover {
  text-decoration: none;
  color: #000000;
}

.mobile-login .login-credentials a:after {
  content: "\0000a0\00BB";
  color: #000000;
  white-space: nowrap;
  font-weight: 600;
}

/** style select **/
.styled-select {
  width: 100%;
}

.styled-select > select {
  background: #e7e7e7;
  border: 0 none;
}

/** datepicker **/
#ui-datepicker-div {
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
}

.ui-datepicker {
  width: 200px;
}

.ui-datepicker-calendar th {
  min-width: 0;
  padding: 4px 0;
  font-weight: 400;
  font-size: 12px;
}

.ui-widget-header {
  border-color: #cccccc;
  background: #f7f7f7;
}

.ui-datepicker, .ui-widget-header {
  color: #333333;
  font-family: myriad-pro;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
  border-radius: 2px;
  border: 1px solid #CCCCCC;
  background: #e7e7e7;
  color: #5d5d5d;
}

.ui-datepicker td {
  width: 15%;
  text-align: center;
}

.ui-datepicker td a {
  padding: 2px;
  text-align: center;
}

.ui-datepicker-prev, .ui-datepicker-next {
  color: #333333;
  cursor: pointer;
}

.ui-datepicker-prev.ui-state-hover, .ui-datepicker-next.ui-state-hover.ui-datepicker-next-hover {
  background: none;
  color: #e41f35;
  border: 0;
}

.ui-datepicker-next.ui-state-hover.ui-datepicker-next-hover {
  right: 2px;
  top: 2px;
}

.ui-datepicker-prev.ui-state-hover {
  left: 2px;
  top: 2px;
}

/** Search results page **/
.result-pagination > input[type="button"] {
  width: 108px;
  display: inline-block;
  background-image: none;
}

.results-header h2.page-title-desktop {
  margin-top: 62px;
}

.search-result-search_input {
  height: 68px;
  border-radius: 5px;
  padding-left: 70px;
  padding-right: 60px;
}

.search-result-search > form > label:after {
  line-height: 1.42857143;
}

.media-room-results .article-wrap {
  float: left;
}

.media-room-results .search-result-block {
  padding: 0 25px;
}

.media-room-results .home-product-articles {
  margin: 0;
}

.media-room-results .home-product-article:after {
  content: "";
  display: table;
  clear: both;
}

.media-room-results .home-product-articles > div > div > div.article-image-boundary {
  margin-right: 0;
  width: auto;
  float: left;
  padding-right: 35px;
}

.media-room-results .home-product-articles > div > div > div.article-image-boundary > .article-date-container {
  min-width: 130px;
  max-width: 150px;
  width: auto;
}

.media-room-results .home-product-articles > div > div > div.article-wrap p {
  font-size: 1em;
  line-height: 1.42857143;
}

.media-room-results .home-product-articles > div > div > div:last-child > h2 {
  font-size: 1.875em;
  font-weight: 300;
  color: #000000;
}

.media-room-results .home-product-articles > div > div > div.article-wrap a.more-info {
  display: inline;
  color: #000000;
}

.media-room-results .home-product-articles > div > div > div.article-wrap a.more-info:hover {
  color: #e41f35;
  text-decoration: none;
}

.results-filters #from-date, .results-filters #to-date {
  width: 100%;
  max-width: 100%;
  background: #ebebeb;
  display: block;
  padding: 8px;
  min-height: 34px;
  float: none;
}

.results-filters .calendar-select {
  display: block;
  float: none;
  width: 100%;
  padding: 0;
  height: auto;
}

.results-filters h2 {
  font-weight: 300;
  font-size: 2em;
  line-height: 1;
  padding-bottom: 10px;
  border-bottom: 1px solid #cccccc;
  color: #333333;
  margin-top: 0px;
  padding-top: 10px;
}

.results-filters h5 {
  font-weight: 700;
  font-size: 1em;
  padding: 0;
  float: left;
  margin: 25px 0 0;
}

.results-filters h5:last-of-type {
  float: right;
}

.results-filters h5 a {
  color: #5d5d5d;
}

.results-filters h5:last-of-type a:hover {
  color: #e41f35;
}

.results-filters h2 .cal-icon {
  max-width: 32px;
  max-height: 32px;
  float: right;
}

.additional-select ul {
  margin: 0;
  padding: 0;
  padding-top: 10px;
}

.additional-select li {
  list-style-type: none;
}

.additional-select li input {
  display: none;
}

.additional-select li.checked input + div:after {
  font-family: 'Glyphicons Halflings';
  content: '\e013';
  font-size: 1.3em;
  position: relative;
  left: .2em;
  top: -0.3em;
  color: black;
}

.additional-select li input + div {
  float: left;
  width: 1.5em;
  height: 1.5em;
  background: #cccccc;
  display: inline-block;
  margin-right: 8px;
  border-radius: 5px;
  cursor: pointer;
}

.additional-select li input + div + div:hover {
  color: #e41f35;
  cursor: pointer;
}

.results-filters .calendar-select, .year-select, .category-select {
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 30px;
}

/** Contract summaries **/
.contract-summaries a {
  font-size: 1.25em;
  margin: 1.25em 0;
  padding-left: 25px;
}

.contract-summaries a.pdf-link {
  display: none;
}

a.updated, a.new-contract {
  padding-left: 0;
}

.new-contract:before {
  content: "*";
  font-size: 20px;
  margin-right: 5px;
  display: inline-block;
  font-weight: 700;
  color: #e41f35;
  width: 20px;
}

.updated:before {
  content: url("updated.svg");
  height: 20px;
  width: 20px;
  position: relative;
  top: 4px;
  margin-right: 5px;
  display: inline-block;
}

.contract-summaries h2, .contract-summaries-count {
  padding-left: 25px;
}

.contract-summaries h2 {
  border-bottom: 1px solid;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

/** FDA drug report page **/
.drug-detail .eyebrow {
  padding: 0;
  margin-bottom: 0;
  color: #e41f35;
  font-weight: 700;
}

.drug-detail h2 {
  font-weight: 700;
  margin-top: 0;
}

h2 + .article-bar {
  margin: 10px 0 30px;
}

.left-menu h2 {
  margin-top: 50px;
}

.left-menu li {
  font-weight: 300;
}

.drug-detail ul {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 60px;
}

.drug-detail p {
  margin-bottom: 0;
  padding: 0;
}

.drug-detail .yes:before {
  font-family: Glyphicons Halflings;
  color: #a8cc96;
  content: '\e013';
  margin-right: 5px;
}

.drug-detail .no img {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  margin-bottom: 0;
  position: relative;
  top: -2px;
}

.footnotes h3 {
  font-size: 18px;
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 0.25em;
  margin-bottom: 0;
}

.footnotes p {
  font-size: 0.9em;
  margin-bottom: 0;
}

.visual-case-study a:after {
  content: " \00BB";
}

.col-connect {
  margin-top: -30px;
}

.description {
  font-style: normal;
}

.product-article h2 {
  font-weight: 300;
}

body h1 {
  max-width: 100%;
}

.lists-list-block-cat-3 p {
  font-weight: 300;
}

.color-padding {
  margin-top: 30px;
}

#now-trending {
  min-width: 100%;
  width: auto;
}

#now-trending img {
  max-width: none;
}

body h2 {
  font-weight: 300;
}

.login-content > div:last-child a::after {
  content: "";
}

.product-article > div > div > div:last-child {
  width: auto;
}

/** Ad space **/
.billboard, .leaderboard {
  background: #e7e7e7;
  margin-bottom: 60px;
}

.billboard img, .leaderboard img {
  margin: 0 auto;
  display: block;
}

.leader {
  width: 728px;
  margin-top: 30px;
}

.ad-center img {
  margin: 0 auto;
  display: block;
}

.ad-center {
  display: block;
  background: #e7e7e7;
  margin-left: -70px;
  margin-right: -71px;
  padding-top: 10px;
  margin-bottom: 60px;
  width: auto;
  margin-top: 0;
}

.footer-tuck {
  padding-bottom: 80px;
  margin-bottom: -80px;
}

.billboard {
  padding-bottom: 10px;
}

.leaderboard {
  margin-bottom: 0;
}

.rectangle {
  margin-bottom: 60px;
  margin-left: 30px;
}

.ad {
  background: #e7e7e7;
}

.ad p {
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  padding: 5px 0 2px;
  letter-spacing: .025em;
}

.rect {
  width: 300px;
}

/** login template **/
.login-content .sign-in-submit > .sign-in-button {
  width: 100px !important;
  height: 36px !important;
  color: #FFFFFF;
}

.login-main-container {
  background: none;
}

.login-content > div:last-child {
  font-size: 1em;
}

.login-content label {
  color: #333333 !important;
}

.login-content input {
  background: #ebebeb;
}

.login-content input.button-red-2 {
  background: #e41f35;
}

.login-header {
  margin-bottom: 30px;
}

.login-header h1, .login-header p {
  margin: 0;
}

.login-header h1 {
  margin-bottom: 15px;
}

.login-header a {
  padding: 0;
}

.gpo-login input {
  max-width: 370px;
}

.login-content .col-sm-8 {
  border-right: 1px solid #515151;
  padding-bottom: 30px;
}

.login-content > div:nth-child(3) {
  border: 0;
}

.sign-in-submit .btn {
  margin: 0;
}

h2.page-title-desktop.gpo-login {
  margin-top: 60px;
  margin: 60px 5.5% 0 0;
}

.login-main-container {
  background-size: cover;
  /**background-image: url('gpo-login-bg.jpg');**/
}

/** Drug Dictionary **/
.dictionary {
  margin-top: 30px;
}

.dictionary h2 {
  margin-bottom: 30px;
}

.dictionary .btn {
  font-size: 14px;
  padding: 7px 24px !important;
  margin-top: 30px;
  margin-bottom: 30px;
}

input[type="checkbox"] {
  width: auto !important;
  display: inline;
  float: left;
  margin-right: 5px;
}

input[type="checkbox"] + label {
  display: inline;
}

/** Practic Analytics **/
.analytics-form {
  margin-bottom: 60px;
}

.analytics-form input {
  max-width: 300px;
}

.analytics-form h3 {
  margin-top: 29px;
}

.analytics-form .btn {
  font-size: 14px;
  padding: 7px 24px !important;
  margin-top: 29px;
}

/**
.pdf-link:before {
	content: url("pdf-ico.svg");
	background-size: 16px;
	background-size: contain;
	height: 16px;
	width: 16px;
	display: inline-block;
	margin-right: 4px;
	position: relative;
	vertical-align: middle;
	margin-left: -18px;
}

**/
a.pdf-link, a.ext-link {
  color: #000000;
  font-weight: 400;
  margin-bottom: 1em;
  display: block;
  line-height: 1;
}

a.ext-link {
  padding-left: 0;
}

a.pdf-link:hover, a.ext-link:hover {
  color: #e41f35;
  text-decoration: none;
}

.ext-link:after {
  color: #e41f35;
  content: "\0000a0\00BB";
  white-space: nowrap;
}

.pdf-link:after {
  color: #e41f35;
  content: "\0000a0[PDF]\0000a0\00BB";
  white-space: nowrap;
}

.new {
  font-weight: 600;
  color: #e41f35;
}

.mail-btn {
  font-size: 14px;
  width: auto;
  height: 36px;
}

.mail-ico:after {
  content: url("mail-ico.svg");
  background-size: 16px;
  background-size: contain;
  height: 16px;
  width: 16px;
  display: inline-block;
  margin-right: 5px;
  position: relative;
  top: -2px;
  vertical-align: middle;
}

/** homepage **/
.gpo .full-width-image-article-light > h2 {
  font-size: 4em;
}

.carousel-full-width-article .slick-dots {
  bottom: 125px;
}

.carousel-full-width-article.alt .slick-dots {
  bottom: 10px;
}

.gpo .full-width-image-article-light.alt > h2 {
  font-size: 2.5em;
}

.gpo .full-width-image-article-light a.cta-button {
  font-size: 16px;
  font-weight: 400;
}

.gpo .full-width-image-article-light a.cta-button:hover {
  color: #FFFFFF;
}

.gpo .full-width-image-article-light a.cta-button:after {
  content: "";
}

#now-trending {
  margin-top: -80px;
}

#now-trending-carousel .trend-title {
  margin-top: 60px;
}

.analyze {
  padding: 10px 20px;
  width: 100%;
  background: #E41f35;
  color: #FFFFFF;
  font-size: 2em;
  font-weight: 300;
  margin: 5px 0;
  transition: all .2 ease;
}

.analyze img {
  max-height: 32px;
  max-width: 32px;
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: -2px;
}

.analyze .expand {
  float: right;
  top: 0;
  padding-top: 5px;
  margin-right: 0;
  max-height: 48px;
  max-width: 48px;
}

.analyze:hover {
  cursor: pointer;
  background: #8b0000;
}

.analyze-form {
  background: #ebebeb;
  margin-top: -10px;
  margin-bottom: 30px;
  padding: 20px;
  display: none;
}

.analyze-form input, .analyze-form select, .analyze-form .styled-select {
  background: #FFFFFF;
}

.analyze-form input, .analyze-form .styled-select {
  margin-bottom: 30px;
}

.analyze-form .styled-select {
  border-radius: 2px;
}

.analyze-form label {
  color: #333333;
}

.analyze-form .inline {
  display: inline-block;
  font-size: 20px;
  padding: 10px !important;
  border-radius: 2px 0 0 2px !important;
  min-height: 47px;
}

.analytics-form .cta-button {
  margin-top: 30px;
}

.analytics-form .secondary {
  color: #000000;
  font-weight: 400;
  padding: 0 20px;
}

.analytics-form .secondary:hover {
  color: #e41f35;
  text-decoration: none;
}

input[type="radio"] {
  display: inline-block !important;
  width: auto !important;
  margin-right: 10px;
}

input[type="radio"] + p {
  display: inline-block;
}

a.cta-button, .product-article div a.cta-button {
  color: #FFFFFF;
  font-size: 18px;
  font-style: normal;
  display: inline-block;
  cursor: pointer;
}

a.cta-button:hover {
  color: #FFFFFF;
}

a.cta-button:after, .product-article div a.cta-button:after {
  content: "";
}

.description p {
  font-weight: 300;
}

.large-text {
  font-size: 1.25em;
  font-weight: 300;
}

.service-case-study a:hover {
  text-decoration: none;
}

.login-main-container a.secondary {
  padding: 10px 20px;
  color: #FFFFFF;
  display: inline-block;
  margin-right: 30px;
  background: #333333;
  margin-top: 30px;
  font-weight: 400;
  font-size: 1em;
}

.login-main-container a.secondary:hover {
  background: #000000;
  color: #FFFFFF;
}

.login-bg {
  background-image: url("gpo-login-bg.jpg");
}

.login-bg input {
  background: #FFFFFF;
  box-shadow: 0 0 1px 2px rgba(0, 0, 0, 0.05);
}

.login-bg div.border-right {
  border-right: 1px solid #5d5d5d;
  padding-right: 30px;
}

/** tweaks from dotcom **/
.lists-list-block-cat-3 > h2 {
  padding-right: 25px;
  background-color: #A8CC96;
}

.reverse h2, .reverse p {
  color: #FFFFFF;
}

@media (max-width: 767px) {
  .reverse p {
    color: #333333;
  }
}

@media (max-width: 540px) {
  .reverse h2 {
    color: #333333;
  }
}

.gutter-escape {
  margin-left: -70px;
  margin-right: -71px;
}

/** Media queries **/
@media (min-width: 1280px) {
  .billboard, .leaderboard {
    margin-left: -70px;
    margin-right: -71px;
  }
}

@media (max-width: 1280px) {
  .gutter-escape {
    margin-left: -5.5vw;
    margin-right: -5.5vw;
  }
}

@media (min-width: 991px) and (max-width: 1280px) {
  .billboard {
    margin-left: -5.5vw;
    margin-right: -5.5vw;
  }
}

@media (min-width: 991px) {
  #now-trending.industry-insights {
    margin-top: -150px;
    margin-left: -70px;
    margin-right: -71px;
  }
  .gpo .full-width-image-article-light {
    padding-left: 70px;
    padding-right: 71px;
  }
}

@media (min-width: 768px) {
  .gpo .full-width-image-article-light {
    height: 580px;
  }
  .gpo .alt.full-width-image-article-light {
    height: 440px;
  }
  .gpo .full-width-image-article-light > p {
    width: 40%;
  }
  .mobile-login {
    display: none;
  }
}

@media (max-width: 991px) {
  .carousel-full-width-article .slick-slide {
    padding-left: 5.5vw;
    padding-right: 5.5vw;
  }
  .billboard, .leader {
    display: none;
  }
  #login-submit {
    margin-bottom: 30px;
  }
  .login-main-container {
    padding-top: 60px;
  }
  .navigation {
    display: block;
  }
  .navbar-toggle {
    display: none;
  }
  .moving-header {
    box-shadow: 0 0 0 0;
  }
  .header {
    margin-bottom: -5px;
  }
  .header h2.page-title-desktop, .page-title-mobile {
    margin-top: 40px;
  }
  .advanced-search {
    display: block;
    width: 89%;
    max-width: 89%;
    margin-left: 5.5%;
    float: none;
  }
  .advanced-search:after {
    content: "";
    display: table;
    clear: both;
  }
  .advanced-search .search {
    max-width: calc(44.5% - 35px);
    width: auto;
    min-width: 300px;
  }
  .calendar-select {
    max-width: calc(44.5% - 35px);
    width: calc(44.5% - 35px);
  }
  #now-trending.industry-insights {
    margin-left: -5.5vw;
    margin-right: -5.5vw;
  }
}

@media (max-width: 767px) {
  .product-category-landing-top-content > .heading-image-container > div {
    height: 50vw;
  }
  .product-category-landing-top-content > .heading-image-container > div img {
    position: relative;
    top: -50%;
  }
  .corporate-callout_right {
    display: none;
  }
  .page-title-desktop {
    display: none;
  }
  .page-title-mobile {
    display: block;
    margin-top: 0;
    position: relative;
    z-index: 1;
    padding-right: 0;
    margin-bottom: 0;
    width: 100%;
  }
  .navbar-toggle {
    display: block;
  }
  .nav-mobile-img {
    height: 60px;
  }
  .navmenu {
    width: 300px;
  }
  .advanced-search, .advanced-search .search, .calendar-select {
    display: block;
    width: 100%;
    max-width: 100%;
    float: none;
  }
  .calendar-select {
    background: #e7e7e7;
    margin-top: 10px;
  }
  .advanced-search .search-box {
    font-size: 20px;
  }
  .advanced-search {
    height: auto;
    margin: 0;
    background: #FFFFFF;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
    display: none;
    position: absolute;
    top: 48px;
    max-width: 100vw;
    z-index: 10;
  }
  .advanced-search.active {
    display: block;
    position: relative;
    z-index: 1;
  }
  .advanced-search .button-red {
    margin: 10px;
    min-height: 34px;
    min-width: 150px;
  }
  .search-icon:before {
    font-family: cardinal;
    content: "\e618";
    color: #e41f35;
    font-size: 30px;
    line-height: 1;
    vertical-align: text-top;
    display: block;
    position: absolute;
    right: 5px;
  }
  .search-mobile .search-icon {
    position: absolute;
    top: 15px;
    cursor: pointer;
    right: 80px;
  }
  .header h2.page-title-desktop, .page-title-mobile {
    padding-right: 60px;
    margin-right: 6%;
    margin-top: 13px;
  }
  .close-search-mobile {
    line-height: 50px;
    position: relative;
    float: right;
  }
  .search-mobile {
    display: block;
  }
  .media-room .sweep.footerAllBgImg {
    margin-top: 0;
  }
  .navigation {
    display: none;
  }
  .header {
    box-shadow: 0 0 0 0;
    height: 48px;
  }
  .moving-header {
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  }
  .social-link {
    padding-left: 9%;
    max-width: 100vw;
  }
  .gpo .full-width-image-article-light > h2 {
    font-size: 2.5em;
  }
  #now-trending.industry-insights, .gutter-escape {
    margin-left: -25px;
    margin-right: -25px;
  }
  .login-main-container {
    padding-bottom: 120px;
  }
  .mobile-login .portal {
    border-left: 0;
    padding-left: 0;
    color: #666666;
  }
  .mobile-login .portal:hover, .mobile-nav a:hover {
    text-decoration: none;
    color: #e41f35;
  }
}

/** temp code **/
.search > .input-group > .insearch.search-icon::before, .search-icon:before, .sign-in-drop-close, .styled-select::after, .search-result-search > form > label::after {
  font-family: icomoon;
}

.form-error {
  display: none;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  color: #ec5840;
}

.form-error.is-visible {
  display: block;
}

.header .login {
  float: right;
  height: 36px;
  margin-right: 5.5%;
  padding: 4px 20px;
  position: relative;
  top: 19px;
}

.full-width-image-article-light.breadcrumb-padding {
  padding-top: 40px;
}

.full-width-image-article-light > p {
  font-size: 1.1em;
  margin-bottom: 10px;
}

.tagline {
  text-align: center;
  line-height: 20px;
  padding: 30px 0;
}

.tagline h1 {
  color: #003091;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  font-size: 45px;
  line-height: 1;
  margin: 0;
}

.tagline h1:first-child {
  color: #6b81ad;
  font-size: 35px;
}

.logo-slider {
  padding-top: 60px;
  padding-bottom: 60px;
}

#ourPartners .logo {
  height: 115px;
  display: flex;
  align-items: center;
}

.hpLogo {
  padding-top: 15px;
  padding-bottom: 15px;
}

.breadcrumbPullUp {
  margin-bottom: -65px;
}

.side-nav {
  background-color: white;
  font-family: "myriad-pro";
  font-weight: 300;
  font-style: normal;
}

.side-nav > li {
  display: block;
}

.side-nav > li > a {
  font-size: 20px;
  padding: 5px 0;
  height: auto;
  display: block;
  line-height: 28.57px;
  word-wrap: break-word;
}

.morecontent span {
  display: none;
}

.morelink {
  cursor: pointer;
  display: block;
}

.img-right {
  float: right;
  margin: 0 0 30px 30px;
}

.img-left {
  float: left;
  margin: 0 30px 30px 0;
}

.block-link {
  display: block;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  margin-bottom: 16px;
  text-align: center;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.block-link .inner {
  padding: 16px;
}

.block-link .title {
  color: #333;
  font-size: 1.875em;
  font-weight: 300;
  line-height: 1.1;
}

.block-link:hover {
  text-decoration: none;
}

.block-link:hover .title {
  color: #e41f35;
}

.block-link.noLink {
  cursor: default;
}

.block-link.noLink:hover .title {
  color: black;
}

.quote {
  border-top: 1px solid #cdcdcd;
  border-bottom: 1px solid #cdcdcd;
  padding: 3em;
  position: relative;
}

.quote:before {
  background-image: url("/images/case-study-left-quote.png");
  background-size: 50px 32px;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 32px;
}

.quote:after {
  background-image: url("/images/case-study-right-quote.png");
  background-size: 50px 32px;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 32px;
}

.quote aside {
  font-size: 26px;
}

.quote cite {
  display: block;
  font-size: 18px;
  margin: 15px 0 0 15px;
}

.checks {
  list-style-type: none;
  margin-top: 25px;
}

.checks li {
  font-size: 20px;
  text-transform: uppercase;
}

.checks li:before {
  color: #2DA2C8;
  content: "\f00c";
  font-family: FontAwesome;
  margin-right: 10px;
}

.checks li + li {
  border-top: 1px solid #d1d1d1;
  padding-top: 20px;
  margin-top: 20px;
}

.listTitle {
  color: #212C6A;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
}

.checks2 {
  list-style-type: none;
  padding-left: 0;
  margin-top: 10px;
  margin-bottom: 35px;
}

.checks2 li {
  font-size: 20px;
  /*+ li{
            border-top: 1px solid #d1d1d1;
            padding-top: 5px;
            margin-top: 5px;
        }*/
}

.checks2 li:before {
  background: #0080A3;
  content: "";
  display: inline-block;
  margin-right: 10px;
  width: 8px;
  height: 8px;
  position: relative;
  top: -3px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

ol {
  counter-reset: my-awesome-counter;
  list-style: none;
  padding-left: 60px;
}

ol li {
  margin: 0 0 0.5rem 0;
  counter-increment: my-awesome-counter;
  position: relative;
  /*+ li{
            border-top: 1px solid #d1d1d1;
            padding-top: 10px;
            margin-top: 10px;
        }*/
}

ol li:before {
  content: counter(my-awesome-counter);
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  position: absolute;
  --size: 40px;
  left: calc(-1 * var(--size) - 15px);
  line-height: var(--size);
  width: var(--size);
  height: var(--size);
  top: 0;
  background: #72B26A;
  border-radius: 50%;
  text-align: center;
  box-shadow: 1px 1px 0 #999;
}

.numList .title {
  color: #007DA0;
  display: block;
  font-size: 1.4em;
  line-height: 1;
}

.accessibleResponsiveTabs .ghost {
  position: absolute;
  top: auto;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.accessibleResponsiveTabs .tabs {
  width: auto;
  padding: 0;
  margin: 0;
}

.accessibleResponsiveTabs .tabs li {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
}

.accessibleResponsiveTabs .tabs li a {
  background: #ddd !important;
  color: #000;
  display: block;
  font-weight: 700;
  line-height: 1;
  padding: 10px 15px;
  text-decoration: none;
  -webkit-border-top-left-radius: 4px;
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topleft: 4px;
  -moz-border-radius-topright: 4px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.accessibleResponsiveTabs .tabs li + li {
  margin-left: 3px;
}

.accessibleResponsiveTabs .tabs .active {
  display: inline-block;
}

.accessibleResponsiveTabs .tabs .active a {
  background: #214187 !important;
  border: none !important;
  color: white !important;
}

.accessibleResponsiveTabs .tabContainer {
  clear: both;
}

.accessibleResponsiveTabs .tabContent {
  border: 1px solid #e4e4e4;
  padding: 20px;
  display: none;
}

.accessibleResponsiveTabs .tabContent.active {
  display: block;
}

.accessibleResponsiveTabs .accordionHeading {
  display: none;
}

@media screen and (max-width: 480px) {
  .accessibleResponsiveTabs .tabs {
    display: none;
  }
  .accessibleResponsiveTabs .accordionHeading {
    font-size: 1em;
    font-weight: normal;
    background-color: #ddd !important;
    border-bottom: 1px solid #999;
    color: #000;
    margin: 0;
    padding: 10px 20px;
    display: block;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .accessibleResponsiveTabs .accordionHeading[aria-selected="true"] {
    background-color: #214187 !important;
    color: white !important;
  }
  .accessibleResponsiveTabs .activeAccordion {
    background-color: #214187 !important;
    border: none !important;
    color: white !important;
  }
}

#dashboard {
  background: none;
}

#dashboard thead tr {
  background: #202D69;
  color: white;
}

#dashboard thead tr th {
  border: none;
  text-align: center;
}

#dashboard tbody tr:nth-child(even) {
  background: #F0F0F0;
}

#dashboard .neg {
  color: red;
}

#dashboard .pos {
  color: green;
}

.footerNav {
  background: #1A1A1A;
}

.footerNav ul {
  list-style-type: none;
  padding-left: 35px;
  margin: 0;
}

.footerNav ul li {
  display: inline-block;
}

.footerNav ul li + li {
  margin-left: 15px;
}

.footerNav ul a {
  color: white;
  font-size: .9em;
}

@media (max-width: 767px) {
  .header .login {
    margin-right: 0;
    font-size: 14px;
    height: auto;
    padding: 4px 10px;
    top: 15px;
  }
}

@media (max-width: 767px) {
  .cardinal-logo {
    max-width: 150px;
  }
  .cardinal-logo-img {
    height: auto;
    max-height: none;
  }
  .search-mobile {
    position: relative;
  }
  .search-mobile .search-icon {
    right: 0;
  }
}

.recaptchaError {
  margin: 10px 0;
  color: #c00;
  font-weight: bold;
}

/*# sourceMappingURL=app.css.map */