/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
a .owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
/* No Js */
.no-js .owl-carousel {
  display: block;
}
/*
   *  Owl Carousel - Animate Plugin
   */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
   * 	Owl Carousel - Auto Height Plugin
   */
.owl-height {
  transition: height 500ms ease-in-out;
}
/*
   * 	Owl Carousel - Lazy Load Plugin
   */
.owl-carousel .owl-item {
  /**
              This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
              calculation of the height of the owl-item that breaks page layouts
           */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
/*
   * 	Owl Carousel - Video Plugin
   */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
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: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
  max-width: 100%;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
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 {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  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-appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
@media print {
  * {
    text-shadow: none !important;
    color: #000 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  select {
    background: #fff !important;
  }
  .navbar {
    display: none;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
* {
  box-sizing: border-box;
}
*:before,
*:after {
  box-sizing: border-box;
}
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.42857143;
  color: #333333;
  background-color: #fff;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #00a9e0;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #006f93;
  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 {
  display: block;
  width: 100% \9;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 0;
}
.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  display: inline-block;
  width: 100% \9;
  max-width: 100%;
  height: auto;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 22px;
  margin-bottom: 22px;
  border: 0;
  border-top: 1px solid #eeeeee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.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: normal;
  line-height: 1;
  color: #777777;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 22px;
  margin-bottom: 11px;
}
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: 11px;
  margin-bottom: 11px;
}
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: 41px;
}
h2,
.h2 {
  font-size: 34px;
}
h3,
.h3 {
  font-size: 28px;
}
h4,
.h4 {
  font-size: 20px;
}
h5,
.h5 {
  font-size: 16px;
}
h6,
.h6 {
  font-size: 14px;
}
p {
  margin: 0 0 11px;
}
.lead {
  margin-bottom: 22px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 24px;
  }
}
small,
.small {
  font-size: 87%;
}
cite {
  font-style: normal;
}
mark,
.mark {
  background-color: #fcf8e3;
  padding: 0.2em;
}
.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: #777777;
}
.text-primary {
  color: #00a9e0;
}
a.text-primary:hover {
  color: #0083ad;
}
.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: #00a9e0;
}
a.bg-primary:hover {
  background-color: #0083ad;
}
.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: 10px;
  margin: 44px 0 22px;
  border-bottom: 1px solid #eeeeee;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 11px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-unstyled > li {
  padding-left: 0;
}
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
.list-inline > li {
  padding-left: 0;
}
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
dl {
  margin-top: 0;
  margin-bottom: 22px;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
@media (min-width: 975px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777777;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 11px 22px;
  margin: 0 0 22px;
  font-size: 20px;
  border-left: 5px solid #eeeeee;
}
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: #777777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right;
}
.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';
}
blockquote:before,
blockquote:after {
  content: "";
}
address {
  margin-bottom: 22px;
  font-style: normal;
  line-height: 1.42857143;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .container {
    max-width: 760px;
  }
}
@media (min-width: 975px) {
  .container {
    max-width: 980px;
  }
}
@media (min-width: 1125px) {
  .container {
    max-width: 1180px;
  }
}
@media (min-width: 1575px) {
  .container {
    max-width: 1615px;
  }
}
@media (min-width: 1575px) {
  .container--general {
    max-width: 1230px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.row {
  margin-left: -20px;
  margin-right: -20px;
}
.col-xxs-1,
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xxs-2,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xxs-3,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xxs-4,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xxs-5,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xxs-6,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xxs-7,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xxs-8,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xxs-9,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xxs-10,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xxs-11,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xxs-12,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12,
.col-xxs-13,
.col-xs-13,
.col-sm-13,
.col-md-13,
.col-lg-13,
.col-xxs-14,
.col-xs-14,
.col-sm-14,
.col-md-14,
.col-lg-14,
.col-xxs-15,
.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15,
.col-xxs-16,
.col-xs-16,
.col-sm-16,
.col-md-16,
.col-lg-16,
.col-xxs-17,
.col-xs-17,
.col-sm-17,
.col-md-17,
.col-lg-17,
.col-xxs-18,
.col-xs-18,
.col-sm-18,
.col-md-18,
.col-lg-18,
.col-xxs-19,
.col-xs-19,
.col-sm-19,
.col-md-19,
.col-lg-19,
.col-xxs-20,
.col-xs-20,
.col-sm-20,
.col-md-20,
.col-lg-20 {
  position: relative;
  min-height: 1px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 480px) {
  .col-xxs-1,
  .col-xxs-2,
  .col-xxs-3,
  .col-xxs-4,
  .col-xxs-5,
  .col-xxs-6,
  .col-xxs-7,
  .col-xxs-8,
  .col-xxs-9,
  .col-xxs-10,
  .col-xxs-11,
  .col-xxs-12,
  .col-xxs-13,
  .col-xxs-14,
  .col-xxs-15,
  .col-xxs-16,
  .col-xxs-17,
  .col-xxs-18,
  .col-xxs-19,
  .col-xxs-20 {
    float: left;
  }
  .col-xxs-20 {
    width: 100%;
  }
  .col-xxs-19 {
    width: 95%;
  }
  .col-xxs-18 {
    width: 90%;
  }
  .col-xxs-17 {
    width: 85%;
  }
  .col-xxs-16 {
    width: 80%;
  }
  .col-xxs-15 {
    width: 75%;
  }
  .col-xxs-14 {
    width: 70%;
  }
  .col-xxs-13 {
    width: 65%;
  }
  .col-xxs-12 {
    width: 60%;
  }
  .col-xxs-11 {
    width: 55%;
  }
  .col-xxs-10 {
    width: 50%;
  }
  .col-xxs-9 {
    width: 45%;
  }
  .col-xxs-8 {
    width: 40%;
  }
  .col-xxs-7 {
    width: 35%;
  }
  .col-xxs-6 {
    width: 30%;
  }
  .col-xxs-5 {
    width: 25%;
  }
  .col-xxs-4 {
    width: 20%;
  }
  .col-xxs-3 {
    width: 15%;
  }
  .col-xxs-2 {
    width: 10%;
  }
  .col-xxs-1 {
    width: 5%;
  }
  .col-xxs-pull-20 {
    right: 100%;
  }
  .col-xxs-pull-19 {
    right: 95%;
  }
  .col-xxs-pull-18 {
    right: 90%;
  }
  .col-xxs-pull-17 {
    right: 85%;
  }
  .col-xxs-pull-16 {
    right: 80%;
  }
  .col-xxs-pull-15 {
    right: 75%;
  }
  .col-xxs-pull-14 {
    right: 70%;
  }
  .col-xxs-pull-13 {
    right: 65%;
  }
  .col-xxs-pull-12 {
    right: 60%;
  }
  .col-xxs-pull-11 {
    right: 55%;
  }
  .col-xxs-pull-10 {
    right: 50%;
  }
  .col-xxs-pull-9 {
    right: 45%;
  }
  .col-xxs-pull-8 {
    right: 40%;
  }
  .col-xxs-pull-7 {
    right: 35%;
  }
  .col-xxs-pull-6 {
    right: 30%;
  }
  .col-xxs-pull-5 {
    right: 25%;
  }
  .col-xxs-pull-4 {
    right: 20%;
  }
  .col-xxs-pull-3 {
    right: 15%;
  }
  .col-xxs-pull-2 {
    right: 10%;
  }
  .col-xxs-pull-1 {
    right: 5%;
  }
  .col-xxs-pull-0 {
    right: auto;
  }
  .col-xxs-push-20 {
    left: 100%;
  }
  .col-xxs-push-19 {
    left: 95%;
  }
  .col-xxs-push-18 {
    left: 90%;
  }
  .col-xxs-push-17 {
    left: 85%;
  }
  .col-xxs-push-16 {
    left: 80%;
  }
  .col-xxs-push-15 {
    left: 75%;
  }
  .col-xxs-push-14 {
    left: 70%;
  }
  .col-xxs-push-13 {
    left: 65%;
  }
  .col-xxs-push-12 {
    left: 60%;
  }
  .col-xxs-push-11 {
    left: 55%;
  }
  .col-xxs-push-10 {
    left: 50%;
  }
  .col-xxs-push-9 {
    left: 45%;
  }
  .col-xxs-push-8 {
    left: 40%;
  }
  .col-xxs-push-7 {
    left: 35%;
  }
  .col-xxs-push-6 {
    left: 30%;
  }
  .col-xxs-push-5 {
    left: 25%;
  }
  .col-xxs-push-4 {
    left: 20%;
  }
  .col-xxs-push-3 {
    left: 15%;
  }
  .col-xxs-push-2 {
    left: 10%;
  }
  .col-xxs-push-1 {
    left: 5%;
  }
  .col-xxs-push-0 {
    left: auto;
  }
  .col-xxs-offset-20 {
    margin-left: 100%;
  }
  .col-xxs-offset-19 {
    margin-left: 95%;
  }
  .col-xxs-offset-18 {
    margin-left: 90%;
  }
  .col-xxs-offset-17 {
    margin-left: 85%;
  }
  .col-xxs-offset-16 {
    margin-left: 80%;
  }
  .col-xxs-offset-15 {
    margin-left: 75%;
  }
  .col-xxs-offset-14 {
    margin-left: 70%;
  }
  .col-xxs-offset-13 {
    margin-left: 65%;
  }
  .col-xxs-offset-12 {
    margin-left: 60%;
  }
  .col-xxs-offset-11 {
    margin-left: 55%;
  }
  .col-xxs-offset-10 {
    margin-left: 50%;
  }
  .col-xxs-offset-9 {
    margin-left: 45%;
  }
  .col-xxs-offset-8 {
    margin-left: 40%;
  }
  .col-xxs-offset-7 {
    margin-left: 35%;
  }
  .col-xxs-offset-6 {
    margin-left: 30%;
  }
  .col-xxs-offset-5 {
    margin-left: 25%;
  }
  .col-xxs-offset-4 {
    margin-left: 20%;
  }
  .col-xxs-offset-3 {
    margin-left: 15%;
  }
  .col-xxs-offset-2 {
    margin-left: 10%;
  }
  .col-xxs-offset-1 {
    margin-left: 5%;
  }
  .col-xxs-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 640px) {
  .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,
  .col-xs-13,
  .col-xs-14,
  .col-xs-15,
  .col-xs-16,
  .col-xs-17,
  .col-xs-18,
  .col-xs-19,
  .col-xs-20 {
    float: left;
  }
  .col-xs-20 {
    width: 100%;
  }
  .col-xs-19 {
    width: 95%;
  }
  .col-xs-18 {
    width: 90%;
  }
  .col-xs-17 {
    width: 85%;
  }
  .col-xs-16 {
    width: 80%;
  }
  .col-xs-15 {
    width: 75%;
  }
  .col-xs-14 {
    width: 70%;
  }
  .col-xs-13 {
    width: 65%;
  }
  .col-xs-12 {
    width: 60%;
  }
  .col-xs-11 {
    width: 55%;
  }
  .col-xs-10 {
    width: 50%;
  }
  .col-xs-9 {
    width: 45%;
  }
  .col-xs-8 {
    width: 40%;
  }
  .col-xs-7 {
    width: 35%;
  }
  .col-xs-6 {
    width: 30%;
  }
  .col-xs-5 {
    width: 25%;
  }
  .col-xs-4 {
    width: 20%;
  }
  .col-xs-3 {
    width: 15%;
  }
  .col-xs-2 {
    width: 10%;
  }
  .col-xs-1 {
    width: 5%;
  }
  .col-xs-pull-20 {
    right: 100%;
  }
  .col-xs-pull-19 {
    right: 95%;
  }
  .col-xs-pull-18 {
    right: 90%;
  }
  .col-xs-pull-17 {
    right: 85%;
  }
  .col-xs-pull-16 {
    right: 80%;
  }
  .col-xs-pull-15 {
    right: 75%;
  }
  .col-xs-pull-14 {
    right: 70%;
  }
  .col-xs-pull-13 {
    right: 65%;
  }
  .col-xs-pull-12 {
    right: 60%;
  }
  .col-xs-pull-11 {
    right: 55%;
  }
  .col-xs-pull-10 {
    right: 50%;
  }
  .col-xs-pull-9 {
    right: 45%;
  }
  .col-xs-pull-8 {
    right: 40%;
  }
  .col-xs-pull-7 {
    right: 35%;
  }
  .col-xs-pull-6 {
    right: 30%;
  }
  .col-xs-pull-5 {
    right: 25%;
  }
  .col-xs-pull-4 {
    right: 20%;
  }
  .col-xs-pull-3 {
    right: 15%;
  }
  .col-xs-pull-2 {
    right: 10%;
  }
  .col-xs-pull-1 {
    right: 5%;
  }
  .col-xs-pull-0 {
    right: auto;
  }
  .col-xs-push-20 {
    left: 100%;
  }
  .col-xs-push-19 {
    left: 95%;
  }
  .col-xs-push-18 {
    left: 90%;
  }
  .col-xs-push-17 {
    left: 85%;
  }
  .col-xs-push-16 {
    left: 80%;
  }
  .col-xs-push-15 {
    left: 75%;
  }
  .col-xs-push-14 {
    left: 70%;
  }
  .col-xs-push-13 {
    left: 65%;
  }
  .col-xs-push-12 {
    left: 60%;
  }
  .col-xs-push-11 {
    left: 55%;
  }
  .col-xs-push-10 {
    left: 50%;
  }
  .col-xs-push-9 {
    left: 45%;
  }
  .col-xs-push-8 {
    left: 40%;
  }
  .col-xs-push-7 {
    left: 35%;
  }
  .col-xs-push-6 {
    left: 30%;
  }
  .col-xs-push-5 {
    left: 25%;
  }
  .col-xs-push-4 {
    left: 20%;
  }
  .col-xs-push-3 {
    left: 15%;
  }
  .col-xs-push-2 {
    left: 10%;
  }
  .col-xs-push-1 {
    left: 5%;
  }
  .col-xs-push-0 {
    left: auto;
  }
  .col-xs-offset-20 {
    margin-left: 100%;
  }
  .col-xs-offset-19 {
    margin-left: 95%;
  }
  .col-xs-offset-18 {
    margin-left: 90%;
  }
  .col-xs-offset-17 {
    margin-left: 85%;
  }
  .col-xs-offset-16 {
    margin-left: 80%;
  }
  .col-xs-offset-15 {
    margin-left: 75%;
  }
  .col-xs-offset-14 {
    margin-left: 70%;
  }
  .col-xs-offset-13 {
    margin-left: 65%;
  }
  .col-xs-offset-12 {
    margin-left: 60%;
  }
  .col-xs-offset-11 {
    margin-left: 55%;
  }
  .col-xs-offset-10 {
    margin-left: 50%;
  }
  .col-xs-offset-9 {
    margin-left: 45%;
  }
  .col-xs-offset-8 {
    margin-left: 40%;
  }
  .col-xs-offset-7 {
    margin-left: 35%;
  }
  .col-xs-offset-6 {
    margin-left: 30%;
  }
  .col-xs-offset-5 {
    margin-left: 25%;
  }
  .col-xs-offset-4 {
    margin-left: 20%;
  }
  .col-xs-offset-3 {
    margin-left: 15%;
  }
  .col-xs-offset-2 {
    margin-left: 10%;
  }
  .col-xs-offset-1 {
    margin-left: 5%;
  }
  .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,
  .col-sm-13,
  .col-sm-14,
  .col-sm-15,
  .col-sm-16,
  .col-sm-17,
  .col-sm-18,
  .col-sm-19,
  .col-sm-20 {
    float: left;
  }
  .col-sm-20 {
    width: 100%;
  }
  .col-sm-19 {
    width: 95%;
  }
  .col-sm-18 {
    width: 90%;
  }
  .col-sm-17 {
    width: 85%;
  }
  .col-sm-16 {
    width: 80%;
  }
  .col-sm-15 {
    width: 75%;
  }
  .col-sm-14 {
    width: 70%;
  }
  .col-sm-13 {
    width: 65%;
  }
  .col-sm-12 {
    width: 60%;
  }
  .col-sm-11 {
    width: 55%;
  }
  .col-sm-10 {
    width: 50%;
  }
  .col-sm-9 {
    width: 45%;
  }
  .col-sm-8 {
    width: 40%;
  }
  .col-sm-7 {
    width: 35%;
  }
  .col-sm-6 {
    width: 30%;
  }
  .col-sm-5 {
    width: 25%;
  }
  .col-sm-4 {
    width: 20%;
  }
  .col-sm-3 {
    width: 15%;
  }
  .col-sm-2 {
    width: 10%;
  }
  .col-sm-1 {
    width: 5%;
  }
  .col-sm-pull-20 {
    right: 100%;
  }
  .col-sm-pull-19 {
    right: 95%;
  }
  .col-sm-pull-18 {
    right: 90%;
  }
  .col-sm-pull-17 {
    right: 85%;
  }
  .col-sm-pull-16 {
    right: 80%;
  }
  .col-sm-pull-15 {
    right: 75%;
  }
  .col-sm-pull-14 {
    right: 70%;
  }
  .col-sm-pull-13 {
    right: 65%;
  }
  .col-sm-pull-12 {
    right: 60%;
  }
  .col-sm-pull-11 {
    right: 55%;
  }
  .col-sm-pull-10 {
    right: 50%;
  }
  .col-sm-pull-9 {
    right: 45%;
  }
  .col-sm-pull-8 {
    right: 40%;
  }
  .col-sm-pull-7 {
    right: 35%;
  }
  .col-sm-pull-6 {
    right: 30%;
  }
  .col-sm-pull-5 {
    right: 25%;
  }
  .col-sm-pull-4 {
    right: 20%;
  }
  .col-sm-pull-3 {
    right: 15%;
  }
  .col-sm-pull-2 {
    right: 10%;
  }
  .col-sm-pull-1 {
    right: 5%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-20 {
    left: 100%;
  }
  .col-sm-push-19 {
    left: 95%;
  }
  .col-sm-push-18 {
    left: 90%;
  }
  .col-sm-push-17 {
    left: 85%;
  }
  .col-sm-push-16 {
    left: 80%;
  }
  .col-sm-push-15 {
    left: 75%;
  }
  .col-sm-push-14 {
    left: 70%;
  }
  .col-sm-push-13 {
    left: 65%;
  }
  .col-sm-push-12 {
    left: 60%;
  }
  .col-sm-push-11 {
    left: 55%;
  }
  .col-sm-push-10 {
    left: 50%;
  }
  .col-sm-push-9 {
    left: 45%;
  }
  .col-sm-push-8 {
    left: 40%;
  }
  .col-sm-push-7 {
    left: 35%;
  }
  .col-sm-push-6 {
    left: 30%;
  }
  .col-sm-push-5 {
    left: 25%;
  }
  .col-sm-push-4 {
    left: 20%;
  }
  .col-sm-push-3 {
    left: 15%;
  }
  .col-sm-push-2 {
    left: 10%;
  }
  .col-sm-push-1 {
    left: 5%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-20 {
    margin-left: 100%;
  }
  .col-sm-offset-19 {
    margin-left: 95%;
  }
  .col-sm-offset-18 {
    margin-left: 90%;
  }
  .col-sm-offset-17 {
    margin-left: 85%;
  }
  .col-sm-offset-16 {
    margin-left: 80%;
  }
  .col-sm-offset-15 {
    margin-left: 75%;
  }
  .col-sm-offset-14 {
    margin-left: 70%;
  }
  .col-sm-offset-13 {
    margin-left: 65%;
  }
  .col-sm-offset-12 {
    margin-left: 60%;
  }
  .col-sm-offset-11 {
    margin-left: 55%;
  }
  .col-sm-offset-10 {
    margin-left: 50%;
  }
  .col-sm-offset-9 {
    margin-left: 45%;
  }
  .col-sm-offset-8 {
    margin-left: 40%;
  }
  .col-sm-offset-7 {
    margin-left: 35%;
  }
  .col-sm-offset-6 {
    margin-left: 30%;
  }
  .col-sm-offset-5 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 20%;
  }
  .col-sm-offset-3 {
    margin-left: 15%;
  }
  .col-sm-offset-2 {
    margin-left: 10%;
  }
  .col-sm-offset-1 {
    margin-left: 5%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 975px) {
  .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,
  .col-md-13,
  .col-md-14,
  .col-md-15,
  .col-md-16,
  .col-md-17,
  .col-md-18,
  .col-md-19,
  .col-md-20 {
    float: left;
  }
  .col-md-20 {
    width: 100%;
  }
  .col-md-19 {
    width: 95%;
  }
  .col-md-18 {
    width: 90%;
  }
  .col-md-17 {
    width: 85%;
  }
  .col-md-16 {
    width: 80%;
  }
  .col-md-15 {
    width: 75%;
  }
  .col-md-14 {
    width: 70%;
  }
  .col-md-13 {
    width: 65%;
  }
  .col-md-12 {
    width: 60%;
  }
  .col-md-11 {
    width: 55%;
  }
  .col-md-10 {
    width: 50%;
  }
  .col-md-9 {
    width: 45%;
  }
  .col-md-8 {
    width: 40%;
  }
  .col-md-7 {
    width: 35%;
  }
  .col-md-6 {
    width: 30%;
  }
  .col-md-5 {
    width: 25%;
  }
  .col-md-4 {
    width: 20%;
  }
  .col-md-3 {
    width: 15%;
  }
  .col-md-2 {
    width: 10%;
  }
  .col-md-1 {
    width: 5%;
  }
  .col-md-pull-20 {
    right: 100%;
  }
  .col-md-pull-19 {
    right: 95%;
  }
  .col-md-pull-18 {
    right: 90%;
  }
  .col-md-pull-17 {
    right: 85%;
  }
  .col-md-pull-16 {
    right: 80%;
  }
  .col-md-pull-15 {
    right: 75%;
  }
  .col-md-pull-14 {
    right: 70%;
  }
  .col-md-pull-13 {
    right: 65%;
  }
  .col-md-pull-12 {
    right: 60%;
  }
  .col-md-pull-11 {
    right: 55%;
  }
  .col-md-pull-10 {
    right: 50%;
  }
  .col-md-pull-9 {
    right: 45%;
  }
  .col-md-pull-8 {
    right: 40%;
  }
  .col-md-pull-7 {
    right: 35%;
  }
  .col-md-pull-6 {
    right: 30%;
  }
  .col-md-pull-5 {
    right: 25%;
  }
  .col-md-pull-4 {
    right: 20%;
  }
  .col-md-pull-3 {
    right: 15%;
  }
  .col-md-pull-2 {
    right: 10%;
  }
  .col-md-pull-1 {
    right: 5%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-20 {
    left: 100%;
  }
  .col-md-push-19 {
    left: 95%;
  }
  .col-md-push-18 {
    left: 90%;
  }
  .col-md-push-17 {
    left: 85%;
  }
  .col-md-push-16 {
    left: 80%;
  }
  .col-md-push-15 {
    left: 75%;
  }
  .col-md-push-14 {
    left: 70%;
  }
  .col-md-push-13 {
    left: 65%;
  }
  .col-md-push-12 {
    left: 60%;
  }
  .col-md-push-11 {
    left: 55%;
  }
  .col-md-push-10 {
    left: 50%;
  }
  .col-md-push-9 {
    left: 45%;
  }
  .col-md-push-8 {
    left: 40%;
  }
  .col-md-push-7 {
    left: 35%;
  }
  .col-md-push-6 {
    left: 30%;
  }
  .col-md-push-5 {
    left: 25%;
  }
  .col-md-push-4 {
    left: 20%;
  }
  .col-md-push-3 {
    left: 15%;
  }
  .col-md-push-2 {
    left: 10%;
  }
  .col-md-push-1 {
    left: 5%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-20 {
    margin-left: 100%;
  }
  .col-md-offset-19 {
    margin-left: 95%;
  }
  .col-md-offset-18 {
    margin-left: 90%;
  }
  .col-md-offset-17 {
    margin-left: 85%;
  }
  .col-md-offset-16 {
    margin-left: 80%;
  }
  .col-md-offset-15 {
    margin-left: 75%;
  }
  .col-md-offset-14 {
    margin-left: 70%;
  }
  .col-md-offset-13 {
    margin-left: 65%;
  }
  .col-md-offset-12 {
    margin-left: 60%;
  }
  .col-md-offset-11 {
    margin-left: 55%;
  }
  .col-md-offset-10 {
    margin-left: 50%;
  }
  .col-md-offset-9 {
    margin-left: 45%;
  }
  .col-md-offset-8 {
    margin-left: 40%;
  }
  .col-md-offset-7 {
    margin-left: 35%;
  }
  .col-md-offset-6 {
    margin-left: 30%;
  }
  .col-md-offset-5 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 20%;
  }
  .col-md-offset-3 {
    margin-left: 15%;
  }
  .col-md-offset-2 {
    margin-left: 10%;
  }
  .col-md-offset-1 {
    margin-left: 5%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1125px) {
  .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,
  .col-lg-13,
  .col-lg-14,
  .col-lg-15,
  .col-lg-16,
  .col-lg-17,
  .col-lg-18,
  .col-lg-19,
  .col-lg-20 {
    float: left;
  }
  .col-lg-20 {
    width: 100%;
  }
  .col-lg-19 {
    width: 95%;
  }
  .col-lg-18 {
    width: 90%;
  }
  .col-lg-17 {
    width: 85%;
  }
  .col-lg-16 {
    width: 80%;
  }
  .col-lg-15 {
    width: 75%;
  }
  .col-lg-14 {
    width: 70%;
  }
  .col-lg-13 {
    width: 65%;
  }
  .col-lg-12 {
    width: 60%;
  }
  .col-lg-11 {
    width: 55%;
  }
  .col-lg-10 {
    width: 50%;
  }
  .col-lg-9 {
    width: 45%;
  }
  .col-lg-8 {
    width: 40%;
  }
  .col-lg-7 {
    width: 35%;
  }
  .col-lg-6 {
    width: 30%;
  }
  .col-lg-5 {
    width: 25%;
  }
  .col-lg-4 {
    width: 20%;
  }
  .col-lg-3 {
    width: 15%;
  }
  .col-lg-2 {
    width: 10%;
  }
  .col-lg-1 {
    width: 5%;
  }
  .col-lg-pull-20 {
    right: 100%;
  }
  .col-lg-pull-19 {
    right: 95%;
  }
  .col-lg-pull-18 {
    right: 90%;
  }
  .col-lg-pull-17 {
    right: 85%;
  }
  .col-lg-pull-16 {
    right: 80%;
  }
  .col-lg-pull-15 {
    right: 75%;
  }
  .col-lg-pull-14 {
    right: 70%;
  }
  .col-lg-pull-13 {
    right: 65%;
  }
  .col-lg-pull-12 {
    right: 60%;
  }
  .col-lg-pull-11 {
    right: 55%;
  }
  .col-lg-pull-10 {
    right: 50%;
  }
  .col-lg-pull-9 {
    right: 45%;
  }
  .col-lg-pull-8 {
    right: 40%;
  }
  .col-lg-pull-7 {
    right: 35%;
  }
  .col-lg-pull-6 {
    right: 30%;
  }
  .col-lg-pull-5 {
    right: 25%;
  }
  .col-lg-pull-4 {
    right: 20%;
  }
  .col-lg-pull-3 {
    right: 15%;
  }
  .col-lg-pull-2 {
    right: 10%;
  }
  .col-lg-pull-1 {
    right: 5%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-20 {
    left: 100%;
  }
  .col-lg-push-19 {
    left: 95%;
  }
  .col-lg-push-18 {
    left: 90%;
  }
  .col-lg-push-17 {
    left: 85%;
  }
  .col-lg-push-16 {
    left: 80%;
  }
  .col-lg-push-15 {
    left: 75%;
  }
  .col-lg-push-14 {
    left: 70%;
  }
  .col-lg-push-13 {
    left: 65%;
  }
  .col-lg-push-12 {
    left: 60%;
  }
  .col-lg-push-11 {
    left: 55%;
  }
  .col-lg-push-10 {
    left: 50%;
  }
  .col-lg-push-9 {
    left: 45%;
  }
  .col-lg-push-8 {
    left: 40%;
  }
  .col-lg-push-7 {
    left: 35%;
  }
  .col-lg-push-6 {
    left: 30%;
  }
  .col-lg-push-5 {
    left: 25%;
  }
  .col-lg-push-4 {
    left: 20%;
  }
  .col-lg-push-3 {
    left: 15%;
  }
  .col-lg-push-2 {
    left: 10%;
  }
  .col-lg-push-1 {
    left: 5%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-20 {
    margin-left: 100%;
  }
  .col-lg-offset-19 {
    margin-left: 95%;
  }
  .col-lg-offset-18 {
    margin-left: 90%;
  }
  .col-lg-offset-17 {
    margin-left: 85%;
  }
  .col-lg-offset-16 {
    margin-left: 80%;
  }
  .col-lg-offset-15 {
    margin-left: 75%;
  }
  .col-lg-offset-14 {
    margin-left: 70%;
  }
  .col-lg-offset-13 {
    margin-left: 65%;
  }
  .col-lg-offset-12 {
    margin-left: 60%;
  }
  .col-lg-offset-11 {
    margin-left: 55%;
  }
  .col-lg-offset-10 {
    margin-left: 50%;
  }
  .col-lg-offset-9 {
    margin-left: 45%;
  }
  .col-lg-offset-8 {
    margin-left: 40%;
  }
  .col-lg-offset-7 {
    margin-left: 35%;
  }
  .col-lg-offset-6 {
    margin-left: 30%;
  }
  .col-lg-offset-5 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 20%;
  }
  .col-lg-offset-3 {
    margin-left: 15%;
  }
  .col-lg-offset-2 {
    margin-left: 10%;
  }
  .col-lg-offset-1 {
    margin-left: 5%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
table {
  background-color: transparent;
}
th {
  text-align: left;
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 22px;
}
.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) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
  background-color: #f5f5f5;
}
table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}
.table-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;
}
@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 16.5px;
    overflow-y: hidden;
    overflow-x: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 22px;
  font-size: 24px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}
input[type="search"] {
  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: 16px;
  line-height: 1.42857143;
  color: #555555;
}
.form-control {
  display: block;
  width: 100%;
  height: 36px;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.42857143;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -moz-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -ms-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control::-moz-placeholder {
  color: #777777;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #777777;
}
.form-control::-webkit-input-placeholder {
  color: #777777;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #eeeeee;
  opacity: 1;
}
textarea.form-control {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: none;
}
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  line-height: 36px;
  line-height: 1.42857143 \0;
}
input[type="date"].input-sm,
input[type="time"].input-sm,
input[type="datetime-local"].input-sm,
input[type="month"].input-sm {
  line-height: 33px;
}
input[type="date"].input-lg,
input[type="time"].input-lg,
input[type="datetime-local"].input-lg,
input[type="month"].input-lg {
  line-height: 49px;
}
.form-group {
  margin-bottom: 15px;
}
.radio,
.checkbox {
  position: relative;
  display: block;
  min-height: 22px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio label,
.checkbox label {
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
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-left: 0;
  padding-right: 0;
}
.input-sm,
.form-horizontal .form-group-sm .form-control {
  height: 33px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 0;
}
select.input-sm {
  height: 33px;
  line-height: 33px;
}
textarea.input-sm,
select[multiple].input-sm {
  height: auto;
}
.input-lg,
.form-horizontal .form-group-lg .form-control {
  height: 49px;
  padding: 10px 16px;
  font-size: 20px;
  line-height: 1.33;
  border-radius: 0;
}
select.input-lg {
  height: 49px;
  line-height: 49px;
}
textarea.input-lg,
select[multiple].input-lg {
  height: auto;
}
.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 45px;
}
.form-control-feedback {
  position: absolute;
  top: 27px;
  right: 0;
  z-index: 2;
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
}
.input-lg + .form-control-feedback {
  width: 49px;
  height: 49px;
  line-height: 49px;
}
.input-sm + .form-control-feedback {
  width: 33px;
  height: 33px;
  line-height: 33px;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline {
  color: #3c763d;
}
.has-success .form-control {
  border-color: #3c763d;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
  border-color: #2b542c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8;
}
.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 {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
  border-color: #66512c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3;
}
.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 {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
  border-color: #843534;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede;
}
.has-error .form-control-feedback {
  color: #a94442;
}
.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 .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 {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 29px;
}
.form-horizontal .form-group {
  margin-left: -20px;
  margin-right: -20px;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  top: 0;
  right: 20px;
}
@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;
  }
}
.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
  -webkit-transition: opacity 0.15s linear;
  -moz-transition: opacity 0.15s linear;
  -ms-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
tr.collapse.in {
  display: table-row;
}
tbody.collapse.in {
  display: table-row-group;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
  -webkit-transition: height 0.35s ease;
  -moz-transition: height 0.35s ease;
  -ms-transition: height 0.35s ease;
  -o-transition: height 0.35s ease;
}
.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%;
  width: auto;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 100%;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 16px;
  text-align: left;
  background-clip: padding-box;
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 10px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333333;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #00a9e0;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777777;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-menu-right {
  left: auto;
  right: 0;
}
.dropdown-menu-left {
  left: 0;
  right: auto;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #777777;
  white-space: nowrap;
}
.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px solid;
  content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
}
@media (min-width: 975px) {
  .navbar-right .dropdown-menu {
    left: auto;
    right: 0;
  }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 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: 49px;
  padding: 10px 16px;
  font-size: 20px;
  line-height: 1.33;
  border-radius: 0;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 49px;
  line-height: 49px;
}
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: 33px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 0;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 33px;
  line-height: 33px;
}
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: 16px;
  font-weight: normal;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 0;
}
.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 0;
}
.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 20px;
  border-radius: 0;
}
.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-bottom-right-radius: 0;
  border-top-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-bottom-left-radius: 0;
  border-top-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 {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 20px;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.nav > li.disabled > a {
  color: #777777;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #00a9e0;
}
.nav .nav-divider {
  height: 1px;
  margin: 10px 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: 0 0 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #ddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555555;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.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: 0;
}
.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: 0 0 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: 0;
}
.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: #00a9e0;
}
.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 {
  text-align: center;
  margin-bottom: 5px;
}
.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: 0;
}
.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: 0 0 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;
}
.tab-content > .active {
  display: block;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 22px;
  border: 1px solid transparent;
}
@media (min-width: 975px) {
  .navbar {
    border-radius: 0;
  }
}
@media (min-width: 975px) {
  .navbar-header {
    float: left;
  }
}
.navbar-collapse {
  overflow-x: visible;
  padding-right: 20px;
  padding-left: 20px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 975px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-width: 640px) 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: -20px;
  margin-left: -20px;
}
@media (min-width: 975px) {
  .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: 975px) {
  .navbar-static-top {
    border-radius: 0;
  }
}
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
@media (min-width: 975px) {
  .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;
  padding: 14px 20px;
  font-size: 20px;
  line-height: 22px;
  height: 50px;
}
.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}
@media (min-width: 975px) {
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -20px;
  }
}
.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 20px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 0;
}
.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: 975px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-nav {
  margin: 7px -20px;
}
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 22px;
}
@media (max-width: 974px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    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: 22px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 975px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .navbar-nav.navbar-right:last-child {
    margin-right: -20px;
  }
}
@media (min-width: 975px) {
  .navbar-left {
    float: left !important;
  }
  .navbar-right {
    float: right !important;
  }
}
.navbar-form {
  margin-left: -20px;
  margin-right: -20px;
  padding: 10px 20px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 7px;
  margin-bottom: 7px;
}
@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 .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: 974px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
}
@media (min-width: 975px) {
  .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: none;
  }
  .navbar-form.navbar-right:last-child {
    margin-right: -20px;
  }
}
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.navbar-btn {
  margin-top: 7px;
  margin-bottom: 7px;
}
.navbar-btn.btn-sm {
  margin-top: 8.5px;
  margin-bottom: 8.5px;
}
.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}
.navbar-text {
  margin-top: 14px;
  margin-bottom: 14px;
}
@media (min-width: 975px) {
  .navbar-text {
    float: left;
    margin-left: 20px;
    margin-right: 20px;
  }
  .navbar-text.navbar-right:last-child {
    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 {
  background-color: #e7e7e7;
  color: #555;
}
@media (max-width: 974px) {
  .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: #777777;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-text {
  color: #777777;
}
.navbar-inverse .navbar-nav > li > a {
  color: #777777;
}
.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 {
  background-color: #080808;
  color: #fff;
}
@media (max-width: 974px) {
  .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: #777777;
  }
  .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: #777777;
}
.navbar-inverse .navbar-link:hover {
  color: #fff;
}
.navbar-inverse .btn-link {
  color: #777777;
}
.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;
}
.label {
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.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: #777777;
}
.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #5e5e5e;
}
.label-primary {
  background-color: #00a9e0;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #0083ad;
}
.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;
}
.alert {
  padding: 15px;
  margin-bottom: 22px;
  border: 1px solid transparent;
  border-radius: 0;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.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 {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}
.panel {
  margin-bottom: 22px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 0;
  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-right-radius: -1;
  border-top-left-radius: -1;
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  color: inherit;
}
.panel-title > a {
  color: inherit;
}
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: -1;
  border-bottom-left-radius: -1;
}
.panel > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-right-radius: -1;
  border-top-left-radius: -1;
}
.panel > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: -1;
  border-bottom-left-radius: -1;
}
.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:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: -1;
  border-top-left-radius: -1;
}
.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: -1;
}
.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: -1;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: -1;
  border-bottom-left-radius: -1;
}
.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: -1;
}
.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: -1;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive {
  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 {
  border: 0;
  margin-bottom: 0;
}
.panel-group {
  margin-bottom: 22px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 0;
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .panel-body {
  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: #333333;
  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: #333333;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}
.panel-primary {
  border-color: #00a9e0;
}
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #00a9e0;
  border-color: #00a9e0;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #00a9e0;
}
.panel-primary > .panel-heading .badge {
  color: #00a9e0;
  background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #00a9e0;
}
.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;
}
.close {
  float: right;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}
.modal-open {
  overflow: hidden;
}
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate3d(0, -25%, 0);
  transform: translate3d(0, -25%, 0);
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 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;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857143px;
}
.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-left: 5px;
  margin-bottom: 0;
}
.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 {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 975px) {
  .modal-lg {
    width: 900px;
  }
}
.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,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.panel-body:before,
.panel-body:after,
.modal-footer:before,
.modal-footer:after,
.sub_nav:before,
.sub_nav:after,
.listing:before,
.listing:after {
  content: " ";
  display: table;
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.panel-body:after,
.modal-footer:after,
.sub_nav:after,
.listing:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
  visibility: hidden !important;
}
.affix {
  position: fixed;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
@-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: 974px) {
  .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: 974px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 974px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 974px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 975px) and (max-width: 1124px) {
  .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: 975px) and (max-width: 1124px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 975px) and (max-width: 1124px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 975px) and (max-width: 1124px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1125px) {
  .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: 1125px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1125px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1125px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 974px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 975px) and (max-width: 1124px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1125px) {
  .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;
  }
}
[class*="block-grid-"] {
  display: block;
  margin: -20px;
  padding: 0;
}
[class*="block-grid-"]:before,
[class*="block-grid-"]:after {
  content: " ";
  display: table;
}
[class*="block-grid-"]:after {
  clear: both;
}
[class*="block-grid-"]:before,
[class*="block-grid-"]:after {
  content: " ";
  display: table;
}
[class*="block-grid-"]:after {
  clear: both;
}
.block-grid-item {
  display: inline;
  margin: 0;
  padding: 20px;
  height: auto;
  float: left;
  list-style: none;
}
.block-grid-xs-1 > .block-grid-item {
  width: 100%;
}
.block-grid-xs-1 > .block-grid-item:nth-of-type(n) {
  clear: none;
}
.block-grid-xs-1 > .block-grid-item:nth-of-type(1n+1) {
  clear: both;
}
.block-grid-xs-2 > .block-grid-item {
  width: 50%;
}
.block-grid-xs-2 > .block-grid-item:nth-of-type(n) {
  clear: none;
}
.block-grid-xs-2 > .block-grid-item:nth-of-type(2n+1) {
  clear: both;
}
.block-grid-xs-3 > .block-grid-item {
  width: 33.33333333%;
}
.block-grid-xs-3 > .block-grid-item:nth-of-type(n) {
  clear: none;
}
.block-grid-xs-3 > .block-grid-item:nth-of-type(3n+1) {
  clear: both;
}
.block-grid-xs-4 > .block-grid-item {
  width: 25%;
}
.block-grid-xs-4 > .block-grid-item:nth-of-type(n) {
  clear: none;
}
.block-grid-xs-4 > .block-grid-item:nth-of-type(4n+1) {
  clear: both;
}
.block-grid-xs-5 > .block-grid-item {
  width: 20%;
}
.block-grid-xs-5 > .block-grid-item:nth-of-type(n) {
  clear: none;
}
.block-grid-xs-5 > .block-grid-item:nth-of-type(5n+1) {
  clear: both;
}
.block-grid-xs-6 > .block-grid-item {
  width: 16.66666667%;
}
.block-grid-xs-6 > .block-grid-item:nth-of-type(n) {
  clear: none;
}
.block-grid-xs-6 > .block-grid-item:nth-of-type(6n+1) {
  clear: both;
}
.block-grid-xs-7 > .block-grid-item {
  width: 14.28571429%;
}
.block-grid-xs-7 > .block-grid-item:nth-of-type(n) {
  clear: none;
}
.block-grid-xs-7 > .block-grid-item:nth-of-type(7n+1) {
  clear: both;
}
.block-grid-xs-8 > .block-grid-item {
  width: 12.5%;
}
.block-grid-xs-8 > .block-grid-item:nth-of-type(n) {
  clear: none;
}
.block-grid-xs-8 > .block-grid-item:nth-of-type(8n+1) {
  clear: both;
}
.block-grid-xs-9 > .block-grid-item {
  width: 11.11111111%;
}
.block-grid-xs-9 > .block-grid-item:nth-of-type(n) {
  clear: none;
}
.block-grid-xs-9 > .block-grid-item:nth-of-type(9n+1) {
  clear: both;
}
.block-grid-xs-10 > .block-grid-item {
  width: 10%;
}
.block-grid-xs-10 > .block-grid-item:nth-of-type(n) {
  clear: none;
}
.block-grid-xs-10 > .block-grid-item:nth-of-type(10n+1) {
  clear: both;
}
.block-grid-xs-11 > .block-grid-item {
  width: 9.09090909%;
}
.block-grid-xs-11 > .block-grid-item:nth-of-type(n) {
  clear: none;
}
.block-grid-xs-11 > .block-grid-item:nth-of-type(11n+1) {
  clear: both;
}
.block-grid-xs-12 > .block-grid-item {
  width: 8.33333333%;
}
.block-grid-xs-12 > .block-grid-item:nth-of-type(n) {
  clear: none;
}
.block-grid-xs-12 > .block-grid-item:nth-of-type(12n+1) {
  clear: both;
}
@media (min-width: 768px) {
  .block-grid-sm-1 > .block-grid-item {
    width: 100%;
  }
  .block-grid-sm-1 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-sm-1 > .block-grid-item:nth-of-type(1n+1) {
    clear: both;
  }
  .block-grid-sm-2 > .block-grid-item {
    width: 50%;
  }
  .block-grid-sm-2 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-sm-2 > .block-grid-item:nth-of-type(2n+1) {
    clear: both;
  }
  .block-grid-sm-3 > .block-grid-item {
    width: 33.33333333%;
  }
  .block-grid-sm-3 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-sm-3 > .block-grid-item:nth-of-type(3n+1) {
    clear: both;
  }
  .block-grid-sm-4 > .block-grid-item {
    width: 25%;
  }
  .block-grid-sm-4 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-sm-4 > .block-grid-item:nth-of-type(4n+1) {
    clear: both;
  }
  .block-grid-sm-5 > .block-grid-item {
    width: 20%;
  }
  .block-grid-sm-5 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-sm-5 > .block-grid-item:nth-of-type(5n+1) {
    clear: both;
  }
  .block-grid-sm-6 > .block-grid-item {
    width: 16.66666667%;
  }
  .block-grid-sm-6 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-sm-6 > .block-grid-item:nth-of-type(6n+1) {
    clear: both;
  }
  .block-grid-sm-7 > .block-grid-item {
    width: 14.28571429%;
  }
  .block-grid-sm-7 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-sm-7 > .block-grid-item:nth-of-type(7n+1) {
    clear: both;
  }
  .block-grid-sm-8 > .block-grid-item {
    width: 12.5%;
  }
  .block-grid-sm-8 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-sm-8 > .block-grid-item:nth-of-type(8n+1) {
    clear: both;
  }
  .block-grid-sm-9 > .block-grid-item {
    width: 11.11111111%;
  }
  .block-grid-sm-9 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-sm-9 > .block-grid-item:nth-of-type(9n+1) {
    clear: both;
  }
  .block-grid-sm-10 > .block-grid-item {
    width: 10%;
  }
  .block-grid-sm-10 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-sm-10 > .block-grid-item:nth-of-type(10n+1) {
    clear: both;
  }
  .block-grid-sm-11 > .block-grid-item {
    width: 9.09090909%;
  }
  .block-grid-sm-11 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-sm-11 > .block-grid-item:nth-of-type(11n+1) {
    clear: both;
  }
  .block-grid-sm-12 > .block-grid-item {
    width: 8.33333333%;
  }
  .block-grid-sm-12 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-sm-12 > .block-grid-item:nth-of-type(12n+1) {
    clear: both;
  }
}
@media (min-width: 975px) {
  .block-grid-md-1 > .block-grid-item {
    width: 100%;
  }
  .block-grid-md-1 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-md-1 > .block-grid-item:nth-of-type(1n+1) {
    clear: both;
  }
  .block-grid-md-2 > .block-grid-item {
    width: 50%;
  }
  .block-grid-md-2 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-md-2 > .block-grid-item:nth-of-type(2n+1) {
    clear: both;
  }
  .block-grid-md-3 > .block-grid-item {
    width: 33.33333333%;
  }
  .block-grid-md-3 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-md-3 > .block-grid-item:nth-of-type(3n+1) {
    clear: both;
  }
  .block-grid-md-4 > .block-grid-item {
    width: 25%;
  }
  .block-grid-md-4 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-md-4 > .block-grid-item:nth-of-type(4n+1) {
    clear: both;
  }
  .block-grid-md-5 > .block-grid-item {
    width: 20%;
  }
  .block-grid-md-5 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-md-5 > .block-grid-item:nth-of-type(5n+1) {
    clear: both;
  }
  .block-grid-md-6 > .block-grid-item {
    width: 16.66666667%;
  }
  .block-grid-md-6 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-md-6 > .block-grid-item:nth-of-type(6n+1) {
    clear: both;
  }
  .block-grid-md-7 > .block-grid-item {
    width: 14.28571429%;
  }
  .block-grid-md-7 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-md-7 > .block-grid-item:nth-of-type(7n+1) {
    clear: both;
  }
  .block-grid-md-8 > .block-grid-item {
    width: 12.5%;
  }
  .block-grid-md-8 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-md-8 > .block-grid-item:nth-of-type(8n+1) {
    clear: both;
  }
  .block-grid-md-9 > .block-grid-item {
    width: 11.11111111%;
  }
  .block-grid-md-9 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-md-9 > .block-grid-item:nth-of-type(9n+1) {
    clear: both;
  }
  .block-grid-md-10 > .block-grid-item {
    width: 10%;
  }
  .block-grid-md-10 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-md-10 > .block-grid-item:nth-of-type(10n+1) {
    clear: both;
  }
  .block-grid-md-11 > .block-grid-item {
    width: 9.09090909%;
  }
  .block-grid-md-11 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-md-11 > .block-grid-item:nth-of-type(11n+1) {
    clear: both;
  }
  .block-grid-md-12 > .block-grid-item {
    width: 8.33333333%;
  }
  .block-grid-md-12 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-md-12 > .block-grid-item:nth-of-type(12n+1) {
    clear: both;
  }
}
@media (min-width: 1125px) {
  .block-grid-lg-1 > .block-grid-item {
    width: 100%;
  }
  .block-grid-lg-1 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-lg-1 > .block-grid-item:nth-of-type(1n+1) {
    clear: both;
  }
  .block-grid-lg-2 > .block-grid-item {
    width: 50%;
  }
  .block-grid-lg-2 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-lg-2 > .block-grid-item:nth-of-type(2n+1) {
    clear: both;
  }
  .block-grid-lg-3 > .block-grid-item {
    width: 33.33333333%;
  }
  .block-grid-lg-3 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-lg-3 > .block-grid-item:nth-of-type(3n+1) {
    clear: both;
  }
  .block-grid-lg-4 > .block-grid-item {
    width: 25%;
  }
  .block-grid-lg-4 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-lg-4 > .block-grid-item:nth-of-type(4n+1) {
    clear: both;
  }
  .block-grid-lg-5 > .block-grid-item {
    width: 20%;
  }
  .block-grid-lg-5 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-lg-5 > .block-grid-item:nth-of-type(5n+1) {
    clear: both;
  }
  .block-grid-lg-6 > .block-grid-item {
    width: 16.66666667%;
  }
  .block-grid-lg-6 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-lg-6 > .block-grid-item:nth-of-type(6n+1) {
    clear: both;
  }
  .block-grid-lg-7 > .block-grid-item {
    width: 14.28571429%;
  }
  .block-grid-lg-7 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-lg-7 > .block-grid-item:nth-of-type(7n+1) {
    clear: both;
  }
  .block-grid-lg-8 > .block-grid-item {
    width: 12.5%;
  }
  .block-grid-lg-8 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-lg-8 > .block-grid-item:nth-of-type(8n+1) {
    clear: both;
  }
  .block-grid-lg-9 > .block-grid-item {
    width: 11.11111111%;
  }
  .block-grid-lg-9 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-lg-9 > .block-grid-item:nth-of-type(9n+1) {
    clear: both;
  }
  .block-grid-lg-10 > .block-grid-item {
    width: 10%;
  }
  .block-grid-lg-10 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-lg-10 > .block-grid-item:nth-of-type(10n+1) {
    clear: both;
  }
  .block-grid-lg-11 > .block-grid-item {
    width: 9.09090909%;
  }
  .block-grid-lg-11 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-lg-11 > .block-grid-item:nth-of-type(11n+1) {
    clear: both;
  }
  .block-grid-lg-12 > .block-grid-item {
    width: 8.33333333%;
  }
  .block-grid-lg-12 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-lg-12 > .block-grid-item:nth-of-type(12n+1) {
    clear: both;
  }
}
@media (min-width: 1575px) {
  .block-grid-xlg-1 > .block-grid-item {
    width: 100%;
  }
  .block-grid-xlg-1 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-xlg-1 > .block-grid-item:nth-of-type(1n+1) {
    clear: both;
  }
  .block-grid-xlg-2 > .block-grid-item {
    width: 50%;
  }
  .block-grid-xlg-2 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-xlg-2 > .block-grid-item:nth-of-type(2n+1) {
    clear: both;
  }
  .block-grid-xlg-3 > .block-grid-item {
    width: 33.33333333%;
  }
  .block-grid-xlg-3 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-xlg-3 > .block-grid-item:nth-of-type(3n+1) {
    clear: both;
  }
  .block-grid-xlg-4 > .block-grid-item {
    width: 25%;
  }
  .block-grid-xlg-4 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-xlg-4 > .block-grid-item:nth-of-type(4n+1) {
    clear: both;
  }
  .block-grid-xlg-5 > .block-grid-item {
    width: 20%;
  }
  .block-grid-xlg-5 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-xlg-5 > .block-grid-item:nth-of-type(5n+1) {
    clear: both;
  }
  .block-grid-xlg-6 > .block-grid-item {
    width: 16.66666667%;
  }
  .block-grid-xlg-6 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-xlg-6 > .block-grid-item:nth-of-type(6n+1) {
    clear: both;
  }
  .block-grid-xlg-7 > .block-grid-item {
    width: 14.28571429%;
  }
  .block-grid-xlg-7 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-xlg-7 > .block-grid-item:nth-of-type(7n+1) {
    clear: both;
  }
  .block-grid-xlg-8 > .block-grid-item {
    width: 12.5%;
  }
  .block-grid-xlg-8 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-xlg-8 > .block-grid-item:nth-of-type(8n+1) {
    clear: both;
  }
  .block-grid-xlg-9 > .block-grid-item {
    width: 11.11111111%;
  }
  .block-grid-xlg-9 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-xlg-9 > .block-grid-item:nth-of-type(9n+1) {
    clear: both;
  }
  .block-grid-xlg-10 > .block-grid-item {
    width: 10%;
  }
  .block-grid-xlg-10 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-xlg-10 > .block-grid-item:nth-of-type(10n+1) {
    clear: both;
  }
  .block-grid-xlg-11 > .block-grid-item {
    width: 9.09090909%;
  }
  .block-grid-xlg-11 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-xlg-11 > .block-grid-item:nth-of-type(11n+1) {
    clear: both;
  }
  .block-grid-xlg-12 > .block-grid-item {
    width: 8.33333333%;
  }
  .block-grid-xlg-12 > .block-grid-item:nth-of-type(n) {
    clear: none;
  }
  .block-grid-xlg-12 > .block-grid-item:nth-of-type(12n+1) {
    clear: both;
  }
}
/*
        This font software is the property of Commercial Type.

        You may not modify the font software, use it on another website, or install it on a computer.

        License information is available at http://commercialtype.com/eula
        For more information please visit Commercial Type at http://commercialtype.com or email us at info[at]commercialtype.com

        Copyright (C) 2013 Schwartzco Inc.
        License: 1409-HNTNCM     
*/
@font-face {
  font-family: 'Graphik Light';
  src: url(/content/dist/716e7daee1f3f47f147f.eot);
  src: url(/content/dist/716e7daee1f3f47f147f.eot?#iefix) format('embedded-opentype'), url(/content/dist/1103a87de10589864e9a.woff) format('woff'), url(/content/dist/a8870a668a5a4997a339.ttf) format('truetype'), url("/content/dist/09ff3284ebe139638692.svg#Graphik Web") format('svg');
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
}
.graphik-light {
  font-family: 'Graphik Light' !important;
  font-weight: 300 !important;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: 'Graphik Regular';
  src: url(/content/dist/ed7630d70345b1f15a12.eot);
  src: url(/content/dist/ed7630d70345b1f15a12.eot?#iefix) format('embedded-opentype'), url(/content/dist/e95c19f2cecc38aefdcf.woff) format('woff'), url(/content/dist/0a5a021ab295c731f308.ttf) format('truetype'), url("/content/dist/c92c3924f21d33c5386e.svg#Graphik Web") format('svg');
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
}
.graphik-regular {
  font-family: 'Graphik Regular';
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: 'Graphik Medium';
  src: url(/content/dist/57b14d8c31a970cefa1c.eot);
  src: url(/content/dist/57b14d8c31a970cefa1c.eot?#iefix) format('embedded-opentype'), url(/content/dist/ff1b9056240f1077b77f.woff) format('woff'), url(/content/dist/3491bfa0a7397ce46978.ttf) format('truetype'), url("/content/dist/72d3e4507822493952f2.svg#Graphik Web") format('svg');
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
}
.graphik-medium {
  font-family: 'Graphik Medium';
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: 'Graphik Bold';
  src: url(/content/dist/b0f550ce96dfcea71d0e.eot);
  src: url(/content/dist/b0f550ce96dfcea71d0e.eot?#iefix) format('embedded-opentype'), url(/content/dist/037353d34aeadce4906f.woff) format('woff'), url(/content/dist/1653155b243022385999.ttf) format('truetype'), url("/content/dist/267ef69975c96d726d23.svg#Graphik Web") format('svg');
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
}
.graphik-bold {
  font-family: 'Graphik Bold';
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: 'icons';
  src: url(/content/dist/06897397a16beaafa264.ttf?xf14v6) format('truetype'), url(/content/dist/2d43857d495aa626bf51.woff?xf14v6) format('woff'), url(/content/dist/17bdef2b055ebcf2833c.svg?xf14v6#icons) format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icons' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-arrow-small:before {
  content: "\e901";
}
.icon-arrow:before {
  content: "\e900";
}
.icon-search:before {
  content: "\e607";
}
.icon-cross:before {
  content: "\e608";
}
/*
  Mason Mixins:
*/
/*.drop-shadow (@x: 0, @y: 1px, @blur: 2px, @spread: 0, @alpha: 0.25) {
  -webkit-box-shadow: @x @y @blur @spread rgba(0, 0, 0, @alpha);
  -moz-box-shadow:  @x @y @blur @spread rgba(0, 0, 0, @alpha);
  box-shadow:   @x @y @blur @spread rgba(0, 0, 0, @alpha);
}*/
body {
  line-height: 1.3;
  font-family: 'Graphik Regular', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  color: #35322d;
  background-color: #FFFFFF;
}
body,
html {
  height: 100%;
  /* Infinite scroll breaks without this rule */
}
h2 p.subs,
h1 p.subs {
  font-size: 26px;
  font-family: 'Graphik Bold', 'Graphik Regular', Arial, sans-serif;
  color: white;
  line-height: 0.7;
  text-align: left;
  font-weight: 300;
  font-style: normal;
  text-transform: none;
  text-transform: uppercase;
}
h1 {
  font-family: 'Graphik Bold', 'Graphik Regular', Arial, sans-serif;
  font-size: 26px;
  line-height: 1.2;
  text-transform: uppercase;
}
.content_header h2,
.content_header h3,
.content_header h5 {
  margin-top: 0;
}
.content_header h2 a,
.content_header h3 a,
.content_header h5 a {
  text-decoration: underline;
}
.content_header h2 {
  font-size: 18px;
  font-family: 'Graphik Bold', 'Graphik Regular', Arial, sans-serif;
  color: #333;
  line-height: 1.2;
  text-align: left;
  font-weight: 300;
  font-style: normal;
  text-transform: uppercase;
  margin: 15px 0 20px;
  text-transform: none;
  font-size: 24px;
}
.content_header h3 {
  font-family: 'Graphik Medium', 'Graphik Regular', Arial, sans-serif;
}
h3,
h1.h3 {
  font-size: 18px;
  font-family: 'Graphik Bold', 'Graphik Regular', Arial, sans-serif;
  color: #333;
  line-height: 1.2;
  text-align: left;
  font-weight: 300;
  font-style: normal;
  text-transform: uppercase;
  margin: 15px 0 20px;
  text-transform: none;
}
h4 {
  font-size: 16px;
  font-family: 'Graphik Regular', Arial, sans-serif;
  color: #333;
  line-height: 1.3;
  text-align: left;
  font-weight: 300;
  font-style: normal;
  text-transform: none;
  margin: 15px 0 20px;
}
h2 {
  font-size: 20px;
  font-family: 'Graphik Regular', Arial, sans-serif;
  color: #333;
  line-height: 1.3;
  text-align: left;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  padding: 0;
  margin: 10px 0 20px;
}
p {
  font-size: 16px;
  font-family: 'Graphik Regular', Arial, sans-serif;
  color: #333;
  line-height: 1.3;
  text-align: left;
  font-weight: 300;
  font-style: normal;
  text-transform: none;
  padding: 0;
  margin: 10px 0 20px;
}
p a {
  text-decoration: underline;
}
ol,
ul {
  margin: 10px 0 20px;
  padding: 0 0 0 20px;
}
ol li,
ul li {
  padding-left: 20px;
  font-size: 16px;
  font-family: 'Graphik Regular', Arial, sans-serif;
  color: #333;
  line-height: 1.5;
  text-align: left;
  font-weight: 300;
  font-style: normal;
  text-transform: none;
}
small {
  font-size: 13px;
  font-family: 'Graphik Regular', Arial, sans-serif;
  color: #333;
  line-height: 1.3;
  text-align: left;
  font-weight: 300;
  font-style: normal;
  text-transform: none;
}
h5 {
  font-size: 16px;
  font-family: 'Graphik Regular', Arial, sans-serif;
  color: #333;
  line-height: 1.3;
  text-align: left;
  font-weight: 300;
  font-style: normal;
  text-transform: none;
}
footer h5 {
  font-size: 20px;
  font-family: 'Graphik Regular', Arial, sans-serif;
  color: #333;
  line-height: 1.3;
  text-align: left;
  font-weight: 700;
  font-style: normal;
  text-transform: none;
}
a:hover {
  text-decoration: underline;
}
b,
strong {
  font-weight: 700;
}
blockquote {
  font-size: 18px;
  font-family: 'Graphik Regular', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  text-align: left;
  font-weight: 700;
  font-style: normal;
  text-transform: none;
  padding: 10px 0 15px 20px;
  border: none;
  margin: 0;
}
.break-word {
  word-break: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
      hyphens: auto;
}
.link_underline {
  text-decoration: underline;
}
.meta {
  text-transform: uppercase;
  font-size: 14px;
  font-family: 'Graphik Regular', Arial, sans-serif;
  color: #333;
  line-height: 1.2;
  text-align: left;
  font-weight: 100;
  font-style: normal;
  text-transform: none;
}
table.table {
  font-size: 14px;
  font-family: 'Graphik Regular', Arial, sans-serif;
  color: #010101;
  line-height: 2;
  text-align: left;
  font-weight: 300;
  font-style: normal;
  text-transform: none;
}
table.table th {
  font-weight: 300;
}
.well {
  background: #FFF;
  padding: 20px;
  font-size: 16px;
  border: 1px solid #c4c3be;
}
.navbar-inverse .navbar-nav > li > a {
  font-size: 15px;
  font-family: 'Graphik Regular', Arial, sans-serif;
  color: #FFF;
  line-height: 1.3;
  text-align: left;
  font-weight: normal;
  font-style: normal;
  text-transform: none;
}
.inline {
  display: inline;
}
img.img_left {
  margin: 0 20px 20px 0;
  float: left;
}
img.img_right {
  margin: 0 0 20px 20px;
  float: right;
}
img.img_border {
  border: 10px solid white;
}
.container {
  width: auto;
}
.container-sm {
  max-width: 600px;
  margin: 0;
}
.col {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 20px;
  padding-right: 20px;
}
.panel {
  background-color: #e2dfd8;
  border-radius: 0;
  padding: 20px;
}
.panel-full {
  padding: 0;
  border: 1px solid #c4c3be;
}
.panel-padding {
  padding: 20px;
}
.panel-lighter {
  background-color: #E8E7DF;
  border-top: 1px solid #c4c3be;
}
.panel-lighter dl {
  margin-bottom: 0;
}
.panel-lighter dl dd {
  line-height: 1.8;
  font-size: 14px;
}
.panel-lighter dl dd strong {
  font-weight: 600;
}
.panel-lighter .btn_cta {
  margin-bottom: 0;
}
.panel-white {
  background-color: #FCFCFB;
}
.panel-black {
  color: white;
  background-color: black;
}
.panel-black * {
  color: white;
}
.panel-black .lead {
  font-weight: 600;
}
.relative {
  position: relative;
}
.advertise-blocks {
  margin-top: 30px;
}
.advertise-blocks a {
  display: block;
  max-width: 385px;
  margin: 0 0 20px 0;
}
.color-purple {
  color: #99509c !important;
}
.border-color-news {
  border-color: #bec0c2;
}
.border-color-sport {
  border-color: #00a996;
}
.border-color-entertainment {
  border-color: #e9365c;
}
.sub_nav {
  margin-left: -20px;
  margin-right: -20px;
  margin: 0;
}
.sub_nav .navbar-header {
  background-color: #f8f8f8;
  color: #01a9e0;
}
.sub_nav .navbar {
  border: none;
  height: auto;
  min-height: 40px;
  margin: 0;
  z-index: 100;
}
.sub_nav .navbar .navbar-header {
  /*height: 40px;*/
  padding: 7px 20px;
}
.sub_nav .navbar .navbar-header .navbar-h1 {
  font-size: 26px;
  font-family: 'Graphik Bold', 'Graphik Regular', Arial, sans-serif;
  color: #01a9e0;
  line-height: 0.7;
  text-align: left;
  font-weight: 300;
  font-style: normal;
  text-transform: none;
  text-transform: uppercase;
  display: inline-block;
  line-height: 26px;
  cursor: pointer;
  vertical-align: inherit;
}
.sub_nav .navbar .navbar-collapse {
  padding: 0;
  width: 100%;
}
.sub_nav .navbar .navbar-toggle {
  margin: 8px 20px 0 0;
  padding: 0;
  border: 0;
}
.sub_nav .navbar .navbar-toggle > .caret {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid;
  color: white;
}
.sub_nav .navbar .navbar-toggle:hover {
  background-color: transparent;
}
.sub_nav .navbar .navbar-toggle:hover .caret {
  color: black;
}
.sub_nav .navbar ul.navbar-nav {
  padding: 0;
  margin: 0;
}
.sub_nav .navbar ul.navbar-nav li {
  padding-left: 0;
}
.sub_nav .navbar ul.navbar-nav li a {
  font-size: 15px;
  font-family: 'Graphik Bold', 'Graphik Regular', Arial, sans-serif;
  color: #36322D;
  line-height: 1.5;
  text-align: left;
  font-weight: 100;
  font-style: normal;
  text-transform: none;
  text-transform: uppercase;
  text-style: normal;
  background-color: #FFFFFF;
  border-bottom: 1px solid #F2F2F2;
}
.sub_nav .navbar ul.navbar-nav li a > .caret {
  margin-left: 10px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid;
  color: black;
}
.sub_nav .navbar ul.navbar-nav > li.open > a {
  background-color: #FFFFFF;
}
.sub_nav .navbar ul.navbar-nav .open .dropdown-menu {
  padding: 3px 0 8px;
  position: relative;
  border-bottom: 1px solid #F2F2F2;
}
.sub_nav .navbar ul.navbar-nav .open .dropdown-menu li a {
  font-size: 15px;
  font-family: 'Graphik Regular', Arial, sans-serif;
  color: #81807c;
  line-height: 20px;
  text-align: left;
  font-weight: 300;
  font-style: normal;
  text-transform: none;
  padding: 6px 0 6px 20px;
  background: transparent;
  border: none;
}
.sub_nav .navbar ul.navbar-nav .open .dropdown-menu li.active a,
.sub_nav .navbar ul.navbar-nav .open .dropdown-menu li:hover a {
  color: #00a9e0;
}
.sub_nav .navbar .navbar-nav.dropdown-collapse-menu > li > a .caret {
  display: inline-block;
}
.info_contact {
  display: none;
}
.content_btm img,
.col_inner_right img,
.col_right img {
  margin: 0 auto;
}
.content_btm .info,
.col_inner_right .info,
.col_right .info {
  border-bottom: 3px solid #e2dfd8;
}
.content_btm .info p,
.col_inner_right .info p,
.col_right .info p {
  font-size: 14px;
  font-family: 'Graphik Regular', Arial, sans-serif;
  color: #9e9c94;
  line-height: 1.3;
  text-align: center;
  font-weight: 300;
  font-style: normal;
  text-transform: none;
  display: block;
  padding: 0;
  margin: 10px 0 0;
}
.content_btm .info b,
.col_inner_right .info b,
.col_right .info b {
  font-size: 24px;
  font-family: 'Graphik Regular', Arial, sans-serif;
  color: #010101;
  line-height: 1.3;
  text-align: center;
  font-weight: 700;
  font-style: normal;
  text-transform: none;
  display: block;
  margin: 0 0 10px;
}
.content_btm a.btn_cta,
.col_inner_right a.btn_cta,
.col_right a.btn_cta {
  display: table;
  margin: 20px auto 0;
}
.content_btm blockquote,
.col_inner_right blockquote,
.col_right blockquote {
  padding-left: 0;
  text-align: center;
}
header {
  background-color: #010101;
}
.header_page {
  background-color: #00a9e0;
}
.header_page h1 {
  margin: 0;
  color: white;
}
.header_page h1 p.subs {
  margin: 0;
  padding: 0;
  background-color: transparent;
}
footer {
  margin-top: 15px;
}
footer > .row {
  margin-left: 0;
  margin-right: 0;
}
footer .footer_nav {
  background-color: white;
}
footer .footer_nav h5 {
  font-family: 'Graphik Bold', 'Graphik Regular', Arial, sans-serif;
}
footer .footer_nav .nav > li > a,
footer .footer_nav .nav > li > span,
footer .footer_nav .nav > li {
  padding: 0;
  font-size: 12px;
  font-family: 'Graphik Regular', Arial, sans-serif;
  color: #333;
  line-height: 1.2;
  text-align: left;
  font-weight: 300;
  font-style: normal;
  text-transform: uppercase;
}
footer .footer_nav .nav > li > a,
footer .footer_nav .nav > li > span {
  display: block;
  padding-bottom: 5px;
}
footer .footer_nav .nav > li > span {
  cursor: default;
}
footer .footer_site_nav {
  background-color: #F8F8F8;
  padding: 15px 0;
  padding-top: 52px;
  position: relative;
  text-align: center;
}
footer .footer_site_nav ul {
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
footer .footer_site_nav li {
  display: inline-block;
  padding: 0;
}
footer .footer_site_nav li:after {
  font-family: 'Graphik Regular';
  color: #3b3b3b;
  font-weight: 100;
}
footer .footer_site_nav li:first-child {
  padding-left: 0;
}
footer .footer_site_nav li:last-child {
  padding-right: 0;
}
footer .footer_site_nav li:last-child:after {
  content: "";
}
footer .footer_site_nav li a {
  display: inline-block;
  padding: 0 15px;
  letter-spacing: 0px;
  font-size: 12px;
  font-family: 'Graphik Medium', 'Graphik Regular', Arial, sans-serif;
  color: #343534;
  line-height: 2.5;
  text-align: center;
  font-weight: bold;
  font-style: normal;
  text-transform: none;
}
footer .footer_copyright {
  text-align: center;
  padding: 15px 0;
  color: #454545;
  font-size: 12px;
  background: #F8F8F8;
  position: relative;
  padding-top: 30px;
  padding-bottom: 25px;
}
footer .footer_copyright ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
footer .footer_copyright li {
  display: inline-block;
  padding: 0 10px;
  font-size: 14px;
  font-family: 'Graphik Regular', Arial, sans-serif;
  color: #B1B1B3;
  line-height: 1;
  text-align: center;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  border-right: 1px solid #B1B1B3;
  margin-bottom: 20px;
}
footer .footer_copyright li:last-child {
  border-right: none;
  padding-right: 0;
}
footer .footer_copyright li:first-child {
  padding-left: 0;
}
footer .footer_copyright li:last-child {
  padding-right: 0;
}
footer .footer_copyright li:last-child:after {
  content: "";
}
footer .footer_copyright li a {
  display: inline-block;
  font-size: 14px;
  font-family: 'Graphik Regular', Arial, sans-serif;
  color: #B1B1B3;
  line-height: 1;
  text-align: center;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
}
footer a:hover {
  color: #004785 !important;
  text-decoration: none !important;
}
.listing {
  margin-left: -20px;
  margin-right: -20px;
  margin: 0;
  padding: 15px 0 20px;
}
.listing .col_img {
  position: relative;
  min-height: 1px;
  padding-left: 20px;
  padding-right: 20px;
  padding: 0;
}
@media (min-width: 768px) {
  .listing .col_img {
    float: left;
    width: 35%;
  }
}
@media (min-width: 1575px) {
  .listing .col_img {
    float: left;
    width: 20%;
  }
}
.listing .col_img img {
  border: 10px solid white;
  border-color: white;
  transition: border-color 0.5s ease;
  -webkit-transition: border-color 0.5s ease;
  -moz-transition: border-color 0.5s ease;
  -ms-transition: border-color 0.5s ease;
  -o-transition: border-color 0.5s ease;
  display: block;
  width: 100% \9;
  max-width: 100%;
  height: auto;
}
.listing .col_img img:hover {
  border-color: black;
  transition: border-color 0.5s ease;
  -webkit-transition: border-color 0.5s ease;
  -moz-transition: border-color 0.5s ease;
  -ms-transition: border-color 0.5s ease;
  -o-transition: border-color 0.5s ease;
}
.listing .col_info {
  position: relative;
  min-height: 1px;
  padding-left: 20px;
  padding-right: 20px;
  padding: 0;
}
@media (min-width: 768px) {
  .listing .col_info {
    float: left;
    width: 65%;
  }
}
@media (min-width: 1575px) {
  .listing .col_info {
    float: left;
    width: 80%;
  }
}
.listing .col_info h2 {
  margin: 0 0 10px;
}
.listing .col_info *:first-child {
  margin-top: 0;
}
.listings.listings_news {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 20px;
  padding-right: 20px;
  padding: 0;
}
.listings.listings_news .listing {
  border-top: 2px solid #d3d2cd;
  padding: 5px 0 30px;
}
.listings.listings_news .listing:last-child {
  padding-bottom: 10px;
}
.listings.listings_news .listing .col_img {
  position: relative;
  min-height: 1px;
  padding-left: 20px;
  padding-left: 0;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .listings.listings_news .listing .col_img {
    float: left;
    width: 35%;
  }
}
@media (min-width: 1575px) {
  .listings.listings_news .listing .col_img {
    float: left;
    width: 25%;
  }
}
.listings.listings_news .listing .col_info,
.listings.listings_news .listing .col {
  position: relative;
  min-height: 1px;
  padding-left: 20px;
  padding-right: 20px;
  padding: 0;
}
@media (min-width: 768px) {
  .listings.listings_news .listing .col_info,
  .listings.listings_news .listing .col {
    float: left;
    width: 65%;
  }
}
@media (min-width: 1575px) {
  .listings.listings_news .listing .col_info,
  .listings.listings_news .listing .col {
    float: left;
    width: 75%;
  }
}
.listings.listings_news .listing .col_info .meta,
.listings.listings_news .listing .col .meta {
  font-size: 14px;
  font-family: 'Graphik Regular', Arial, sans-serif;
  color: black;
  line-height: 1;
  text-align: left;
  font-weight: 100;
  font-style: normal;
  text-transform: none;
  margin-bottom: 20px;
}
.listings.listings_news .listing .col_info.no_img {
  width: 100%;
}
.listings.listings_news .listing .col {
  padding-left: 0;
  width: 100%;
}
.listings.listings_news .listing p {
  margin: 24px 0 0;
}
.listings.listings_news .listing h2 {
  margin: 13px 0;
  color: #18A9E0;
  font-family: 'Graphik Bold', 'Graphik Regular', Arial, sans-serif;
  font-size: 19px;
  line-height: 1.2;
  text-transform: uppercase;
}
.panel-group {
  margin: 30px 0 20px;
}
.panel-group .panel {
  padding: 0;
  border: none;
  position: relative;
}
.panel-group .panel .panel-heading {
  position: relative;
  padding: 0;
  background-color: white;
  transition: background-color 0.5s ease;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  -ms-transition: background-color 0.5s ease;
  -o-transition: background-color 0.5s ease;
  min-height: 50px;
  border: 1px solid #c4c3be;
}
.panel-group .panel .panel-heading h2 {
  font-size: 17px;
  font-family: 'Graphik Bold', 'Graphik Regular', Arial, sans-serif;
  color: black;
  line-height: 1.3;
  text-align: left;
  font-weight: 700;
  font-style: normal;
  text-transform: none;
  height: 100%;
}
.panel-group .panel .panel-heading h2 a {
  display: block;
  height: 99%;
  padding: 10px 50px 10px 15px;
  outline: none;
  text-decoration: none;
}
.panel-group .panel .panel-heading i {
  position: absolute;
  width: 50px;
  min-height: 50px;
  top: -1px;
  right: -1px;
  bottom: 0;
  font-size: 36px;
  color: white;
  background-color: #343434;
  padding-left: 6px;
  font-family: 'icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
}
.panel-group .panel .panel-heading i:before {
  content: "\e604";
}
.panel-group .panel .panel-heading.active {
  background-color: #343434;
  transition: background-color 0.5s ease;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  -ms-transition: background-color 0.5s ease;
  -o-transition: background-color 0.5s ease;
  border-color: #343434;
}
.panel-group .panel .panel-heading.active h2 {
  color: white;
}
.panel-group .panel .panel-heading.active i:before {
  content: "\e609";
}
.panel-group .panel .panel-collapse {
  background-color: #e7e6e2;
  border: none;
  font-size: 14px;
  font-family: 'Graphik Regular', Arial, sans-serif;
  color: #010101;
  line-height: 2;
  text-align: center;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
}
.panel-group .panel a.btn.btn_email {
  float: left;
}
.panel-group .panel dl {
  text-align: left;
  margin-bottom: 10px;
}
.panel-group .panel dl dd {
  line-height: 1.8;
}
.panel-group .panel dl dd a {
  text-decoration: underline;
}
.box_grid figure h3 {
  font-size: 18px;
  font-family: 'Graphik Bold', 'Graphik Regular', Arial, sans-serif;
  color: #010101;
  line-height: 0.9;
  text-align: center;
  font-weight: 100;
  font-style: normal;
  text-transform: none;
}
.box_grid img {
  display: block;
  width: 100% \9;
  max-width: 100%;
  height: auto;
}
.box_grid figure,
.box_grid article {
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.15);
  display: block;
  position: relative;
}
.box_grid.grid_child_publications {
  margin: 10px 0 20px;
}
.box_grid.grid_child_publications a figure {
  background-color: white;
  transition: background-color 0.5s ease;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  -ms-transition: background-color 0.5s ease;
  -o-transition: background-color 0.5s ease;
  padding-top: 10px;
  height: auto;
}
.box_grid.grid_child_publications a figure img {
  display: block;
  width: 120px;
  margin: 2px auto 12px;
}
.box_grid.grid_child_publications a figure h3 {
  margin: 0 0 10px;
  height: 45px;
  line-height: 45px;
  display: block;
}
.box_grid.grid_child_publications a figure h3.long {
  line-height: 22px;
}
.box_grid.grid_child_publications a figure figcaption {
  background-color: #9e9c94;
  transition: background-color 0.5s ease;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  -ms-transition: background-color 0.5s ease;
  -o-transition: background-color 0.5s ease;
  font-size: 11px;
  font-family: 'Graphik Regular', Arial, sans-serif;
  color: white;
  line-height: 1.6;
  text-align: center;
  font-weight: 700;
  font-style: normal;
  text-transform: none;
}
.box_grid.grid_child_publications a:hover {
  text-decoration: none;
}
.box_grid.grid_publications {
  position: relative;
  min-height: 300px;
  margin-top: 30px;
}
.box_grid.grid_publications article {
  padding: 0;
  margin: 0;
  height: 120px;
  transition: height 0.5s ease;
  -webkit-transition: height 0.5s ease;
  -moz-transition: height 0.5s ease;
  -ms-transition: height 0.5s ease;
  -o-transition: height 0.5s ease;
}
.box_grid.grid_publications article .img,
.box_grid.grid_publications article .info {
  width: 100%;
  height: 120px;
  transition: height 0.5s ease;
  -webkit-transition: height 0.5s ease;
  -moz-transition: height 0.5s ease;
  -ms-transition: height 0.5s ease;
  -o-transition: height 0.5s ease;
}
.box_grid.grid_publications article .img {
  background-color: white;
  padding: 10px;
  opacity: 1;
  transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
}
.box_grid.grid_publications article .img img {
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  max-width: 85%;
  max-height: 85%;
}
.box_grid.grid_publications article .info {
  padding: 10px;
  background-color: #004785;
  opacity: 0;
  transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  display: none;
}
.modal-content {
  background-color: #FFFFFF;
  border: none;
}
.modal-content:before,
.modal-content:after {
  content: " ";
  display: table;
}
.modal-content:after {
  clear: both;
}
.modal-content:before,
.modal-content:after {
  content: " ";
  display: table;
}
.modal-content:after {
  clear: both;
}
.modal-content .modal-header,
.modal-content .modal-footer {
  border: none;
}
.modal-content .modal-body {
  padding: 10px 30px;
}
.modal-content .modal-body h3 {
  margin: 30px 0 15px;
}
.modal-content .modal-body h3:first-child {
  margin-top: 0;
}
.modal-content .modal-body form .form-group {
  margin-bottom: 10px;
}
.modal-content .modal-body form label {
  font-size: 14px;
  text-align: left;
  font-weight: normal;
}
.modal-content .modal-body form input[type='text'],
.modal-content .modal-body form input[type='email'],
.modal-content .modal-body form textarea {
  border: 1px solid #e7e6e2;
}
.modal-content .modal-body form .btn_cta {
  float: right;
}
form .form-control {
  font-size: 14px;
  font-family: 'Graphik Regular', Arial, sans-serif;
  color: black;
  line-height: 1.3;
  text-align: left;
  font-weight: 300;
  font-style: normal;
  text-transform: none;
  border: 1px solid #c4c3be;
  background-color: white;
  border-radius: 0;
}
form .form-control:focus {
  box-shadow: none;
  border: 1px solid #343434;
}
form.form_search .form-control {
  border: none;
}
form.form-horizontal {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 20px;
  padding-right: 20px;
}
form.form-full {
  padding: 0;
}
form .checkbox label div {
  font-size: 13px;
}
form.form-horizontal-left {
  padding: 0;
}
form.form-horizontal-left .form-group {
  margin-bottom: 10px;
}
form.form-horizontal-left .form-group.last-child,
form.form-horizontal-left .form-group:last-child {
  margin-bottom: 0;
}
form.form-horizontal-left .col-sm-15,
form.form-horizontal-left .col-sm-20 {
  padding-right: 0;
}
form.form-horizontal-left .control-label {
  text-align: left;
  font-weight: 500;
}
form.form-horizontal-left .control-label small {
  display: block;
  font-size: 14px;
}
.form_header {
  margin: 10px 0 5px;
  padding: 3px 0 4px;
  font-size: 14px;
  color: #828079;
  text-transform: uppercase;
  border-top: 1px solid #c4c3be;
  border-bottom: 1px solid #c4c3be;
}
.sub_form {
  padding-top: 10px;
  font-size: 14px;
}
.sub_form .form_title {
  display: block;
  margin-bottom: 10px;
}
.sub_form label {
  font-size: 14px;
  font-weight: normal;
}
.sub_form .form-group:last-child {
  margin-bottom: 0;
}
select.select-sm {
  max-width: 70px;
}
.blocks_vert article,
.grid_tools article {
  float: left;
  height: auto;
  padding: 0;
  background: #F5F5F5;
  width: 100%;
  clear: both;
  font-size: 14px;
  font-family: 'Graphik Regular', Arial, sans-serif;
  color: black;
  line-height: 1.3;
  text-align: left;
  font-weight: 300;
  font-style: normal;
  text-transform: none;
}
.blocks_vert article .inner,
.grid_tools article .inner {
  padding: 15px 20px;
}
.blocks_vert article a,
.grid_tools article a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none !important;
}
.blocks_vert article h1,
.grid_tools article h1,
.blocks_vert article h2,
.grid_tools article h2 {
  margin-top: 0;
  font-size: 18px;
  font-family: 'Graphik Bold', 'Graphik Regular', Arial, sans-serif;
  color: black;
  line-height: 1;
  text-align: left;
  font-weight: 300;
  font-style: normal;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.blocks_vert article p,
.grid_tools article p {
  display: none;
  margin: 10px 0;
  font-size: 13px;
  font-weight: 400;
}
.blocks_vert article a,
.grid_tools article a {
  font-size: 14px;
  font-family: 'Graphik Regular', Arial, sans-serif;
  color: black;
  line-height: 1;
  text-align: left;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
}
.blocks_vert article.double,
.grid_tools article.double {
  padding: 0;
  width: 100%;
  clear: both;
}
.blocks_vert article.double .inner,
.grid_tools article.double .inner {
  width: auto;
  height: 160px;
  clear: both;
  position: relative;
}
.blocks_vert article.double img.inner,
.grid_tools article.double img.inner {
  padding: 0;
}
.blocks_vert article.double i,
.grid_tools article.double i {
  position: absolute;
}
.blocks_vert article.bg-blue,
.grid_tools article.bg-blue,
.blocks_vert article.blue:hover,
.grid_tools article.blue:hover {
  background-color: #00aeef;
  transition: background-color 0.5s ease;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  -ms-transition: background-color 0.5s ease;
  -o-transition: background-color 0.5s ease;
}
.blocks_vert article.bg-blue h2,
.grid_tools article.bg-blue h2,
.blocks_vert article.blue:hover h2,
.grid_tools article.blue:hover h2,
.blocks_vert article.bg-blue *,
.grid_tools article.bg-blue *,
.blocks_vert article.blue:hover *,
.grid_tools article.blue:hover *,
.blocks_vert article.bg-blue a,
.grid_tools article.bg-blue a,
.blocks_vert article.blue:hover a,
.grid_tools article.blue:hover a {
  color: black;
}
.blocks_vert article.bg-blue i,
.grid_tools article.bg-blue i,
.blocks_vert article.blue:hover i,
.grid_tools article.blue:hover i {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 28px 28px;
  border-color: transparent transparent #00aeef transparent;
  transition: border-color 0.5s ease;
  -webkit-transition: border-color 0.5s ease;
  -moz-transition: border-color 0.5s ease;
  -ms-transition: border-color 0.5s ease;
  -o-transition: border-color 0.5s ease;
}
.blocks_vert article.bg-dark-blue,
.grid_tools article.bg-dark-blue {
  background-color: #004785;
  transition: background-color 0.5s ease;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  -ms-transition: background-color 0.5s ease;
  -o-transition: background-color 0.5s ease;
}
.blocks_vert article.bg-dark-blue i,
.grid_tools article.bg-dark-blue i {
  border-color: #8dc63f;
}
.blocks_vert article.bg-dark-blue *,
.grid_tools article.bg-dark-blue * {
  color: #FFF;
}
.blocks_vert article.bg-yellow,
.grid_tools article.bg-yellow,
.blocks_vert article.yellow:hover,
.grid_tools article.yellow:hover {
  background-color: #ffc20e;
  transition: background-color 0.5s ease;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  -ms-transition: background-color 0.5s ease;
  -o-transition: background-color 0.5s ease;
}
.blocks_vert article.bg-yellow h2,
.grid_tools article.bg-yellow h2,
.blocks_vert article.yellow:hover h2,
.grid_tools article.yellow:hover h2,
.blocks_vert article.bg-yellow *,
.grid_tools article.bg-yellow *,
.blocks_vert article.yellow:hover *,
.grid_tools article.yellow:hover *,
.blocks_vert article.bg-yellow a,
.grid_tools article.bg-yellow a,
.blocks_vert article.yellow:hover a,
.grid_tools article.yellow:hover a {
  color: black;
}
.blocks_vert article.bg-yellow i,
.grid_tools article.bg-yellow i,
.blocks_vert article.yellow:hover i,
.grid_tools article.yellow:hover i {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 28px 28px;
  border-color: transparent transparent #ffc20e transparent;
  transition: border-color 0.5s ease;
  -webkit-transition: border-color 0.5s ease;
  -moz-transition: border-color 0.5s ease;
  -ms-transition: border-color 0.5s ease;
  -o-transition: border-color 0.5s ease;
}
.blocks_vert article.bg-green,
.grid_tools article.bg-green,
.blocks_vert article.green:hover,
.grid_tools article.green:hover {
  background-color: #8dc63f;
  transition: background-color 0.5s ease;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  -ms-transition: background-color 0.5s ease;
  -o-transition: background-color 0.5s ease;
}
.blocks_vert article.bg-green h2,
.grid_tools article.bg-green h2,
.blocks_vert article.green:hover h2,
.grid_tools article.green:hover h2,
.blocks_vert article.bg-green *,
.grid_tools article.bg-green *,
.blocks_vert article.green:hover *,
.grid_tools article.green:hover *,
.blocks_vert article.bg-green a,
.grid_tools article.bg-green a,
.blocks_vert article.green:hover a,
.grid_tools article.green:hover a {
  color: black;
}
.blocks_vert article.bg-green i,
.grid_tools article.bg-green i,
.blocks_vert article.green:hover i,
.grid_tools article.green:hover i {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 28px 28px;
  border-color: transparent transparent #8dc63f transparent;
  transition: border-color 0.5s ease;
  -webkit-transition: border-color 0.5s ease;
  -moz-transition: border-color 0.5s ease;
  -ms-transition: border-color 0.5s ease;
  -o-transition: border-color 0.5s ease;
}
.blocks_vert article.bg-pink,
.grid_tools article.bg-pink,
.blocks_vert article.pink:hover,
.grid_tools article.pink:hover {
  background-color: #ec008c;
  transition: background-color 0.5s ease;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  -ms-transition: background-color 0.5s ease;
  -o-transition: background-color 0.5s ease;
}
.blocks_vert article.bg-pink h2,
.grid_tools article.bg-pink h2,
.blocks_vert article.pink:hover h2,
.grid_tools article.pink:hover h2,
.blocks_vert article.bg-pink *,
.grid_tools article.bg-pink *,
.blocks_vert article.pink:hover *,
.grid_tools article.pink:hover *,
.blocks_vert article.bg-pink a,
.grid_tools article.bg-pink a,
.blocks_vert article.pink:hover a,
.grid_tools article.pink:hover a {
  color: black;
}
.blocks_vert article.bg-pink i,
.grid_tools article.bg-pink i,
.blocks_vert article.pink:hover i,
.grid_tools article.pink:hover i {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 28px 28px;
  border-color: transparent transparent #ec008c transparent;
  transition: border-color 0.5s ease;
  -webkit-transition: border-color 0.5s ease;
  -moz-transition: border-color 0.5s ease;
  -ms-transition: border-color 0.5s ease;
  -o-transition: border-color 0.5s ease;
}
.blocks_vert article.bg-light,
.grid_tools article.bg-light {
  background-color: #FFFFFF;
  transition: background-color 0.5s ease;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  -ms-transition: background-color 0.5s ease;
  -o-transition: background-color 0.5s ease;
}
.blocks_vert article.bg-light h2,
.grid_tools article.bg-light h2,
.blocks_vert article.bg-light *,
.grid_tools article.bg-light *,
.blocks_vert article.bg-light a,
.grid_tools article.bg-light a {
  color: black;
}
.blocks_vert article.bg-light i,
.grid_tools article.bg-light i {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 28px 28px;
  border-color: transparent transparent #FFFFFF transparent;
  transition: border-color 0.5s ease;
  -webkit-transition: border-color 0.5s ease;
  -moz-transition: border-color 0.5s ease;
  -ms-transition: border-color 0.5s ease;
  -o-transition: border-color 0.5s ease;
}
.blocks_vert article.dark-blue h2,
.grid_tools article.dark-blue h2 {
  color: #004785;
}
.blocks_vert article.dark-blue *,
.grid_tools article.dark-blue * {
  color: white;
}
.blocks_vert article.green,
.grid_tools article.green,
.blocks_vert article.bg-green:hover,
.grid_tools article.bg-green:hover {
  background-color: #343434;
  transition: background-color 0.5s ease;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  -ms-transition: background-color 0.5s ease;
  -o-transition: background-color 0.5s ease;
}
.blocks_vert article.green i,
.grid_tools article.green i,
.blocks_vert article.bg-green:hover i,
.grid_tools article.bg-green:hover i {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 28px 28px;
  border-color: transparent transparent #343434 transparent;
  transition: border-color 0.5s ease;
  -webkit-transition: border-color 0.5s ease;
  -moz-transition: border-color 0.5s ease;
  -ms-transition: border-color 0.5s ease;
  -o-transition: border-color 0.5s ease;
}
.blocks_vert article.green h2,
.grid_tools article.green h2,
.blocks_vert article.bg-green:hover h2,
.grid_tools article.bg-green:hover h2 {
  color: #8dc63f;
}
.blocks_vert article.green *,
.grid_tools article.green *,
.blocks_vert article.bg-green:hover *,
.grid_tools article.bg-green:hover *,
.blocks_vert article.green a,
.grid_tools article.green a,
.blocks_vert article.bg-green:hover a,
.grid_tools article.bg-green:hover a {
  color: white;
}
.blocks_vert article.blue,
.grid_tools article.blue,
.blocks_vert article.bg-blue:hover,
.grid_tools article.bg-blue:hover {
  background-color: #343434;
  transition: background-color 0.5s ease;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  -ms-transition: background-color 0.5s ease;
  -o-transition: background-color 0.5s ease;
}
.blocks_vert article.blue i,
.grid_tools article.blue i,
.blocks_vert article.bg-blue:hover i,
.grid_tools article.bg-blue:hover i {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 28px 28px;
  border-color: transparent transparent #343434 transparent;
  transition: border-color 0.5s ease;
  -webkit-transition: border-color 0.5s ease;
  -moz-transition: border-color 0.5s ease;
  -ms-transition: border-color 0.5s ease;
  -o-transition: border-color 0.5s ease;
}
.blocks_vert article.blue h2,
.grid_tools article.blue h2,
.blocks_vert article.bg-blue:hover h2,
.grid_tools article.bg-blue:hover h2 {
  color: #00aeef;
}
.blocks_vert article.blue *,
.grid_tools article.blue *,
.blocks_vert article.bg-blue:hover *,
.grid_tools article.bg-blue:hover *,
.blocks_vert article.blue a,
.grid_tools article.blue a,
.blocks_vert article.bg-blue:hover a,
.grid_tools article.bg-blue:hover a {
  color: white;
}
.blocks_vert article.pink,
.grid_tools article.pink,
.blocks_vert article.bg-pink:hover,
.grid_tools article.bg-pink:hover {
  background-color: #343434;
  transition: background-color 0.5s ease;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  -ms-transition: background-color 0.5s ease;
  -o-transition: background-color 0.5s ease;
}
.blocks_vert article.pink i,
.grid_tools article.pink i,
.blocks_vert article.bg-pink:hover i,
.grid_tools article.bg-pink:hover i {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 28px 28px;
  border-color: transparent transparent #343434 transparent;
  transition: border-color 0.5s ease;
  -webkit-transition: border-color 0.5s ease;
  -moz-transition: border-color 0.5s ease;
  -ms-transition: border-color 0.5s ease;
  -o-transition: border-color 0.5s ease;
}
.blocks_vert article.pink h2,
.grid_tools article.pink h2,
.blocks_vert article.bg-pink:hover h2,
.grid_tools article.bg-pink:hover h2 {
  color: #ec008c;
}
.blocks_vert article.pink *,
.grid_tools article.pink *,
.blocks_vert article.bg-pink:hover *,
.grid_tools article.bg-pink:hover *,
.blocks_vert article.pink a,
.grid_tools article.pink a,
.blocks_vert article.bg-pink:hover a,
.grid_tools article.bg-pink:hover a {
  color: white;
}
.blocks_vert article.yellow,
.grid_tools article.yellow,
.blocks_vert article.bg-yellow:hover,
.grid_tools article.bg-yellow:hover {
  background-color: #343434;
  transition: background-color 0.5s ease;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  -ms-transition: background-color 0.5s ease;
  -o-transition: background-color 0.5s ease;
}
.blocks_vert article.yellow i,
.grid_tools article.yellow i,
.blocks_vert article.bg-yellow:hover i,
.grid_tools article.bg-yellow:hover i {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 28px 28px;
  border-color: transparent transparent #343434 transparent;
  transition: border-color 0.5s ease;
  -webkit-transition: border-color 0.5s ease;
  -moz-transition: border-color 0.5s ease;
  -ms-transition: border-color 0.5s ease;
  -o-transition: border-color 0.5s ease;
}
.blocks_vert article.yellow h2,
.grid_tools article.yellow h2,
.blocks_vert article.bg-yellow:hover h2,
.grid_tools article.bg-yellow:hover h2 {
  color: #ffc20e;
}
.blocks_vert article.yellow *,
.grid_tools article.yellow *,
.blocks_vert article.bg-yellow:hover *,
.grid_tools article.bg-yellow:hover *,
.blocks_vert article.yellow a,
.grid_tools article.yellow a,
.blocks_vert article.bg-yellow:hover a,
.grid_tools article.bg-yellow:hover a {
  color: white;
}
.blocks_vert {
  display: none;
}
.blocks_vert article.double {
  margin-bottom: 20px;
}
.blocks_vert article.double img.inner {
  height: auto;
}
.blocks_vert article.double i {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 28px 0 0 28px;
  border-color: transparent transparent transparent #343434;
  transition: border-color 0.5s ease;
  -webkit-transition: border-color 0.5s ease;
  -moz-transition: border-color 0.5s ease;
  -ms-transition: border-color 0.5s ease;
  -o-transition: border-color 0.5s ease;
  left: 20px;
  top: -28px;
}
.blocks_vert article.double.blue:hover i {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 28px 0 0 28px;
  border-color: transparent transparent transparent #00aeef;
  transition: border-color 0.5s ease;
  -webkit-transition: border-color 0.5s ease;
  -moz-transition: border-color 0.5s ease;
  -ms-transition: border-color 0.5s ease;
  -o-transition: border-color 0.5s ease;
}
.blocks_vert article.double.green:hover i {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 28px 0 0 28px;
  border-color: transparent transparent transparent #8dc63f;
  transition: border-color 0.5s ease;
  -webkit-transition: border-color 0.5s ease;
  -moz-transition: border-color 0.5s ease;
  -ms-transition: border-color 0.5s ease;
  -o-transition: border-color 0.5s ease;
}
.blocks_vert article.double.blue:hover i {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 28px 0 0 28px;
  border-color: transparent transparent transparent #00aeef;
  transition: border-color 0.5s ease;
  -webkit-transition: border-color 0.5s ease;
  -moz-transition: border-color 0.5s ease;
  -ms-transition: border-color 0.5s ease;
  -o-transition: border-color 0.5s ease;
}
.blocks_vert article.double.dark-blue:hover i {
  border-color: #8dc63f;
}
.blocks_vert article.double.pink:hover i {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 28px 0 0 28px;
  border-color: transparent transparent transparent #ec008c;
  transition: border-color 0.5s ease;
  -webkit-transition: border-color 0.5s ease;
  -moz-transition: border-color 0.5s ease;
  -ms-transition: border-color 0.5s ease;
  -o-transition: border-color 0.5s ease;
}
.blocks_vert article.double.yellow:hover i {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 28px 0 0 28px;
  border-color: transparent transparent transparent #ffc20e;
  transition: border-color 0.5s ease;
  -webkit-transition: border-color 0.5s ease;
  -moz-transition: border-color 0.5s ease;
  -ms-transition: border-color 0.5s ease;
  -o-transition: border-color 0.5s ease;
}
.blocks_vert article.double.bg-light {
  background: #FFFFFF;
}
.blocks_vert article.double.bg-light:hover i {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 28px 0 0 28px;
  border-color: transparent transparent transparent #FFFFFF;
  transition: border-color 0.5s ease;
  -webkit-transition: border-color 0.5s ease;
  -moz-transition: border-color 0.5s ease;
  -ms-transition: border-color 0.5s ease;
  -o-transition: border-color 0.5s ease;
}
body.home {
  background-color: #FFFFFF;
}
body.home footer {
  margin-top: 0;
}
.news_detail .meta {
  margin: 0 0 30px;
}
html,
button,
input,
select,
textarea {
  color: #222;
}
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
img {
  vertical-align: middle;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
textarea {
  resize: vertical;
}
@media only screen and (min-width: 640px) {
  .col_img {
    position: relative;
    float: left;
    width: 35%;
    min-height: 1px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .listing .col_img {
    padding: 0 20px 0 0;
  }
  .col_info {
    position: relative;
    float: left;
    width: 65%;
    min-height: 1px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .reverse .col_img {
    padding: 0 0 0 20px;
  }
  .reverse .col_img img {
    float: right;
  }
}
@media only screen and (max-width: 767px) {
  .no-gutter > div {
    padding: 0;
  }
  .listing .col_img {
    padding-bottom: 20px;
  }
  .listing.reverse .col_img {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  h1 p.subs {
    font-size: 36px;
  }
  h2 {
    font-size: 20px;
  }
  h3,
  h1.h3 {
    font-size: 19px;
  }
  .no-gutter > div:first-child {
    padding-left: 0;
  }
  .no-gutter > div:last-child {
    padding-right: 0;
  }
  .header_page h1 {
    line-height: 110px;
  }
  .grid_tools article {
    height: 170px;
  }
  .box_grid.grid_publications article {
    padding: 1px 0 0 0;
    height: 120px;
    transition: height 0.5s ease;
    -webkit-transition: height 0.5s ease;
    -moz-transition: height 0.5s ease;
    -ms-transition: height 0.5s ease;
    -o-transition: height 0.5s ease;
  }
  .box_grid.grid_publications article .img,
  .box_grid.grid_publications article .info {
    height: 120px;
    transition: height 0.5s ease;
    -webkit-transition: height 0.5s ease;
    -moz-transition: height 0.5s ease;
    -ms-transition: height 0.5s ease;
    -o-transition: height 0.5s ease;
  }
  .modal-dialog {
    max-width: 450px;
  }
  .modal-dialog h3 {
    font-size: 24px;
  }
  .panel-group .panel a.btn.btn_email {
    position: absolute;
    right: 30px;
    bottom: 15px;
  }
}
@media only screen and (max-width: 974px) {
  .navbar-inverse .navbar-nav > li.open > a,
  .navbar-inverse .navbar-nav > li.open > a:focus,
  .navbar-inverse .navbar-nav > li.active > a,
  .navbar-inverse .navbar-nav > li > a:hover,
  .navbar-inverse .navbar-nav > li > a:focus {
    background: #00a9e0;
    border-color: #00a9e0;
  }
}
@media only screen and (min-width: 975px) {
  .pull-md-right {
    float: right;
  }
  .text-md-right {
    text-align: right;
  }
  .overlay h2 p.subs,
  h1 p.subs {
    font-size: 48px;
  }
  h1 {
    font-size: 36px;
  }
  h3 {
    font-size: 19px;
  }
  blockquote {
    padding-left: 40px;
  }
  .col_right,
  .col_inner_right {
    margin-top: -190px;
  }
  .col_right blockquote,
  .col_inner_right blockquote {
    padding: 30px 0;
  }
  h5.first {
    margin-top: 0;
  }
  .advertise-blocks a {
    display: inline-block;
    margin: 0 20px 20px 0;
  }
  .sub_nav .navbar {
    background-color: transparent;
    margin-bottom: 50px;
  }
  .sub_nav .navbar .navbar-header {
    display: none;
  }
  .sub_nav .navbar .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
  .sub_nav .navbar .navbar-nav {
    float: none;
  }
  .sub_nav .navbar .navbar-nav > li {
    float: none;
    display: block;
    clear: both;
  }
  .sub_nav .navbar .navbar-nav > li > a {
    padding: 10px 0;
    border-top: none;
    color: #00a9e0;
  }
  .sub_nav .navbar .navbar-nav > li > a .caret {
    display: none;
  }
  .sub_nav .navbar .navbar-nav > li.active > a,
  .sub_nav .navbar .navbar-nav > li > a:hover,
  .sub_nav .navbar .navbar-nav > li.active > a:hover {
    background-color: transparent;
    color: #00a9e0;
  }
  .blocks_vert {
    display: block;
  }
  footer {
    margin-top: 20px;
  }
  footer h5 {
    margin: 20px 0 5px;
    padding-bottom: 10px;
    border-bottom: 1px solid #edece7;
  }
  footer .nav {
    margin-bottom: 30px;
  }
  footer .nav > li > a:hover,
  footer .nav > li > a:focus {
    background-color: transparent;
    text-decoration: underline;
  }
  footer .col-md-12 {
    width: 50%;
  }
  footer .col-md-8 {
    width: 33.333%;
  }
  footer .col-md-4 {
    width: 16.666%;
  }
  footer .col-md-4:last-child {
    padding-right: 0;
  }
  /* .filter form .form_row{
	.tags{
		width:530px;
	}
	&.label_select3{
        .selects{
            clear:none;
            display:table;
        }
    }
} */
  .blocks_vert article h2,
  .grid_tools article h2 {
    font-size: 20px;
  }
  .blocks_vert article .inner,
  .grid_tools article .inner {
    padding: 20px;
    height: 195px;
  }
  .box_grid.grid_child_publications a:hover figure {
    background-color: #bec0c2;
    transition: background-color 0.5s ease;
    -webkit-transition: background-color 0.5s ease;
    -moz-transition: background-color 0.5s ease;
    -ms-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
  }
  .box_grid.grid_child_publications a:hover figure h3 {
    color: white;
  }
  .box_grid.grid_child_publications a:hover figure figcaption {
    background-color: black;
    transition: background-color 0.5s ease;
    -webkit-transition: background-color 0.5s ease;
    -moz-transition: background-color 0.5s ease;
    -ms-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
    color: white;
  }
  .box_grid.grid_publications article {
    height: 165px;
    transition: height 0.5s ease;
    -webkit-transition: height 0.5s ease;
    -moz-transition: height 0.5s ease;
    -ms-transition: height 0.5s ease;
    -o-transition: height 0.5s ease;
    /* &:hover{
               .img{.trans_opacity(0);} 
               .info{.trans_opacity(1);}
            } */
  }
  .box_grid.grid_publications article .img,
  .box_grid.grid_publications article .info {
    position: absolute;
    top: 0;
    height: 165px;
    transition: height 0.5s ease;
    -webkit-transition: height 0.5s ease;
    -moz-transition: height 0.5s ease;
    -ms-transition: height 0.5s ease;
    -o-transition: height 0.5s ease;
  }
  .box_grid.grid_publications article .img {
    opacity: 1;
    transition: opacity 0.5s ease;
    -webkit-transition: opacity 0.5s ease;
    -moz-transition: opacity 0.5s ease;
    -ms-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
  }
  .box_grid.grid_publications article .info {
    opacity: 0;
    transition: opacity 0.5s ease;
    -webkit-transition: opacity 0.5s ease;
    -moz-transition: opacity 0.5s ease;
    -ms-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    display: block;
  }
}
@media only screen and (min-width: 1125px) {
  .overlay h2 p.subs,
  h1 p.subs {
    font-size: 54px;
  }
  h3,
  h1.h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 19px;
  }
  blockquote {
    font-size: 20px;
  }
  .col_right blockquote,
  .col_main .col_inner_right blockquote {
    padding: 50px 0;
  }
  .col_right a.btn_cta,
  .col_main .col_inner_right a.btn_cta {
    margin-top: 80px;
  }
  .form_search {
    width: 274px;
  }
  .form_search .input_group_search {
    width: 260px;
  }
  footer {
    margin-top: 30px;
  }
  .filter form .form_row .tags {
    width: 650px;
  }
  .blocks_vert article h2,
  .grid_tools article h2 {
    font-size: 24px;
  }
  .blocks_vert article .inner,
  .grid_tools article .inner {
    height: 225px;
  }
  .box_grid figure h3 {
    font-size: 20px;
  }
  .box_grid figure img {
    width: 100%;
    margin: 0 auto 10px;
  }
  .box_grid.grid_publications article {
    height: 190px;
    transition: height 0.5s ease;
    -webkit-transition: height 0.5s ease;
    -moz-transition: height 0.5s ease;
    -ms-transition: height 0.5s ease;
    -o-transition: height 0.5s ease;
  }
  .box_grid.grid_publications article .img,
  .box_grid.grid_publications article .info {
    height: 190px;
    transition: height 0.5s ease;
    -webkit-transition: height 0.5s ease;
    -moz-transition: height 0.5s ease;
    -ms-transition: height 0.5s ease;
    -o-transition: height 0.5s ease;
  }
}
.o-article {
  max-width: 880px;
}
.o-article *:first-child {
  margin-top: 0;
}
.o-article h2,
.o-article .h2 {
  color: #18A9E0;
  font-family: 'Graphik Bold', 'Graphik Regular', Arial, sans-serif;
  font-size: 24px;
  line-height: 1.3;
  margin: 15px 0 20px;
  text-transform: uppercase;
}
.o-article h2:first-child,
.o-article .h2:first-child {
  margin-top: 0;
}
@media only screen and (min-width: 975px) {
  .o-article h2,
  .o-article .h2 {
    font-size: 30px;
  }
}
.o-article h3,
.o-article .h3 {
  font-family: 'Graphik Bold', 'Graphik Regular', Arial, sans-serif;
  font-size: 20px;
  line-height: 1.3;
  margin: 15px 0 20px;
  text-transform: uppercase;
}
@media only screen and (min-width: 975px) {
  .o-article h3,
  .o-article .h3 {
    font-size: 22px;
  }
}
.o-article h4,
.o-article .h4 {
  font-family: 'Graphik Bold', 'Graphik Regular', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.3;
  margin: 15px 0 20px;
}
@media only screen and (min-width: 975px) {
  .o-article h4,
  .o-article .h4 {
    font-size: 20px;
  }
}
.o-article h5,
.o-article .h5 {
  font-family: 'Graphik Bold', 'Graphik Regular', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.3;
  margin: 15px 0 20px;
}
.o-article p {
  font-size: 16px;
  line-height: 1.5;
}
.o-article ul,
.o-article ol {
  font-size: 16px;
  line-height: 1.5;
}
.o-article img {
  height: auto !important;
}
.btn_cta,
.btn,
.o-btn {
  background-color: #F5F5F5;
  border: none;
  color: #191818;
  display: inline-block;
  font-family: 'Graphik Medium', 'Graphik Regular', Arial, sans-serif;
  font-size: 15px;
  line-height: 24px;
  text-decoration: none;
  outline: none;
  padding: 24px 20px;
  padding-right: 65px;
  position: relative;
}
.btn_cta:hover,
.btn:hover,
.o-btn:hover {
  background-color: #000;
  color: #fff;
  text-decoration: none;
}
.btn_cta:after,
.btn:after,
.o-btn:after {
  font-family: 'icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-left: 1px solid #E6E6E6;
  color: #01A9E0;
  content: "\e900";
  font-size: 15px;
  line-height: 1;
  margin-top: -12px;
  padding-bottom: 5px;
  padding-left: 14px;
  padding-top: 5px;
  position: absolute;
  right: 14px;
  text-align: center;
  top: 50%;
}
.btn_cta:hover:after,
.btn:hover:after,
.o-btn:hover:after {
  border-left-color: #fff;
  color: #fff;
  text-decoration: none;
}
@media (min-width: 768px) {
  .btn_cta.btn_email,
  .btn.btn_email,
  .o-btn.btn_email {
    float: right;
  }
}
.btn_cta--block,
.btn--block,
.o-btn--block {
  display: block;
}
.col_secondary {
  display: none;
}
@media (min-width: 975px) {
  .col_container {
    display: flex;
  }
  .col_secondary {
    display: block;
    padding-right: 30px;
    width: 20%;
  }
  .col_main {
    width: calc(100% - 20%);
    margin-top: 0;
    position: relative;
  }
  .col_main *.first {
    margin-top: 0;
  }
}
@media (min-width: 1125px) {
  .col_secondary {
    padding-right: 50px;
  }
}
@media (min-width: 1575px) {
  .col_secondary {
    padding-right: 50px;
    width: 310px;
  }
  .col_main {
    width: calc(100% - 310px);
  }
}
.o-crumbs {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0 30px;
  padding: 0;
  list-style: none;
}
.o-crumbs__item {
  font-size: 12px;
  color: #808690;
  line-height: 1.4;
  padding: 0;
}
.o-crumbs__item:after {
  content: "\2022";
  display: inline-block;
  margin-left: 6px;
  margin-right: 5px;
}
.o-crumbs__item:last-child:after {
  display: none;
}
.o-crumbs__link {
  color: #808690;
}
.o-embed {
  margin: 30px 0;
}
.o-figure__image {
  max-width: 100%;
}
.o-tile {
  align-content: stretch;
  background-color: #fff;
  width: 100%;
}
.o-tile__media {
  align-self: flex-start;
  display: block;
  margin-bottom: 15px;
  width: 100%;
}
.o-tile__image {
  max-width: 100%;
}
.o-tile__content {
  width: 100%;
}
.o-tile__title {
  margin-top: 0;
  color: #18A9E0;
  font-family: 'Graphik Bold', 'Graphik Regular', Arial, sans-serif;
  font-size: 19px;
  line-height: 1.2;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.o-tile__title:first-child {
  margin-top: 0;
}
.o-tile__desc {
  font-size: 15px;
  line-height: 1.5;
}
.o-tile__desc p {
  font-size: inherit;
  line-height: inherit;
  margin-top: 10px;
  margin-bottom: 0;
}
.o-tile--media-1-2 {
  display: flex;
  justify-content: space-between;
}
.o-tile--media-1-2 .o-tile__media {
  margin-bottom: 0;
}
.o-tile--media-1-2 .o-tile__media + .o-tile__content {
  padding-left: 25px;
}
.o-tile--media-1-2 .o-tile__media {
  width: calc(50% - 20px);
}
.o-tile--media-1-2 .o-tile__content {
  width: calc(50% + 20px);
}
.o-tile--media-1-4 {
  display: flex;
  justify-content: space-between;
}
.o-tile--media-1-4 .o-tile__media {
  margin-bottom: 0;
}
.o-tile--media-1-4 .o-tile__media + .o-tile__content {
  padding-left: 25px;
}
.o-tile--media-1-4 .o-tile__media {
  width: calc(25% - 30px);
}
.o-tile--media-1-4 .o-tile__content {
  width: calc(75% + 30px);
}
.o-tile--media-stacked {
  display: block;
}
.o-tile--media-stacked .o-tile__media {
  width: 100%;
}
.o-tile--media-stacked .o-tile__content {
  padding-left: 0;
}
@media (min-width: 480px) {
  .o-tile--xxs-media-1-2 {
    display: flex;
    justify-content: space-between;
  }
  .o-tile--xxs-media-1-2 .o-tile__media {
    margin-bottom: 0;
  }
  .o-tile--xxs-media-1-2 .o-tile__media + .o-tile__content {
    padding-left: 25px;
  }
  .o-tile--xxs-media-1-2 .o-tile__media {
    width: calc(50% - 20px);
  }
  .o-tile--xxs-media-1-2 .o-tile__content {
    width: calc(50% + 20px);
  }
  .o-tile--xxs-media-1-4 {
    display: flex;
    justify-content: space-between;
  }
  .o-tile--xxs-media-1-4 .o-tile__media {
    margin-bottom: 0;
  }
  .o-tile--xxs-media-1-4 .o-tile__media + .o-tile__content {
    padding-left: 25px;
  }
  .o-tile--xxs-media-1-4 .o-tile__media {
    width: calc(25% - 30px);
  }
  .o-tile--xxs-media-1-4 .o-tile__content {
    width: calc(75% + 30px);
  }
  .o-tile--xxs-media-stacked {
    display: block;
  }
  .o-tile--xxs-media-stacked .o-tile__media {
    width: 100%;
  }
  .o-tile--xxs-media-stacked .o-tile__content {
    padding-left: 0;
  }
}
@media (min-width: 640px) {
  .o-tile--xs-media-1-2 {
    display: flex;
    justify-content: space-between;
  }
  .o-tile--xs-media-1-2 .o-tile__media {
    margin-bottom: 0;
  }
  .o-tile--xs-media-1-2 .o-tile__media + .o-tile__content {
    padding-left: 25px;
  }
  .o-tile--xs-media-1-2 .o-tile__media {
    width: calc(50% - 20px);
  }
  .o-tile--xs-media-1-2 .o-tile__content {
    width: calc(50% + 20px);
  }
  .o-tile--xs-media-1-4 {
    display: flex;
    justify-content: space-between;
  }
  .o-tile--xs-media-1-4 .o-tile__media {
    margin-bottom: 0;
  }
  .o-tile--xs-media-1-4 .o-tile__media + .o-tile__content {
    padding-left: 25px;
  }
  .o-tile--xs-media-1-4 .o-tile__media {
    width: calc(25% - 30px);
  }
  .o-tile--xs-media-1-4 .o-tile__content {
    width: calc(75% + 30px);
  }
  .o-tile--xs-media-stacked {
    display: block;
  }
  .o-tile--xs-media-stacked .o-tile__media {
    width: 100%;
  }
  .o-tile--xs-media-stacked .o-tile__content {
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .o-tile--sm-media-1-2 {
    display: flex;
    justify-content: space-between;
  }
  .o-tile--sm-media-1-2 .o-tile__media {
    margin-bottom: 0;
  }
  .o-tile--sm-media-1-2 .o-tile__media + .o-tile__content {
    padding-left: 25px;
  }
  .o-tile--sm-media-1-2 .o-tile__media {
    width: calc(50% - 20px);
  }
  .o-tile--sm-media-1-2 .o-tile__content {
    width: calc(50% + 20px);
  }
  .o-tile--sm-media-1-4 {
    display: flex;
    justify-content: space-between;
  }
  .o-tile--sm-media-1-4 .o-tile__media {
    margin-bottom: 0;
  }
  .o-tile--sm-media-1-4 .o-tile__media + .o-tile__content {
    padding-left: 25px;
  }
  .o-tile--sm-media-1-4 .o-tile__media {
    width: calc(25% - 30px);
  }
  .o-tile--sm-media-1-4 .o-tile__content {
    width: calc(75% + 30px);
  }
  .o-tile--sm-media-stacked {
    display: block;
  }
  .o-tile--sm-media-stacked .o-tile__media {
    width: 100%;
  }
  .o-tile--sm-media-stacked .o-tile__content {
    padding-left: 0;
  }
}
@media (min-width: 975px) {
  .o-tile--md-media-1-2 {
    display: flex;
    justify-content: space-between;
  }
  .o-tile--md-media-1-2 .o-tile__media {
    margin-bottom: 0;
  }
  .o-tile--md-media-1-2 .o-tile__media + .o-tile__content {
    padding-left: 25px;
  }
  .o-tile--md-media-1-2 .o-tile__media {
    width: calc(50% - 20px);
  }
  .o-tile--md-media-1-2 .o-tile__content {
    width: calc(50% + 20px);
  }
  .o-tile--md-media-1-4 {
    display: flex;
    justify-content: space-between;
  }
  .o-tile--md-media-1-4 .o-tile__media {
    margin-bottom: 0;
  }
  .o-tile--md-media-1-4 .o-tile__media + .o-tile__content {
    padding-left: 25px;
  }
  .o-tile--md-media-1-4 .o-tile__media {
    width: calc(25% - 30px);
  }
  .o-tile--md-media-1-4 .o-tile__content {
    width: calc(75% + 30px);
  }
  .o-tile--md-media-stacked {
    display: block;
  }
  .o-tile--md-media-stacked .o-tile__media {
    width: 100%;
  }
  .o-tile--md-media-stacked .o-tile__content {
    padding-left: 0;
  }
}
.o-tile-grid {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-left: -20px;
}
.o-tile-grid:first-child {
  margin-top: 0;
}
.o-tile-grid__column {
  align-items: stretch;
  display: flex;
  margin-bottom: 40px;
  padding-left: 20px;
  width: 100%;
}
.o-tile-grid__column--1-1 {
  width: 100%;
}
.o-tile-grid__column--1-2 {
  width: 50%;
}
.o-tile-grid__column--1-4 {
  width: 25%;
}
@media (min-width: 480px) {
  .o-tile-grid__column--xs-1-1 {
    width: 100%;
  }
  .o-tile-grid__column--xs-1-2 {
    width: 50%;
  }
  .o-tile-grid__column--xs-1-4 {
    width: 25%;
  }
}
@media (min-width: 640px) {
  .o-tile-grid__column--sm-1-1 {
    width: 100%;
  }
  .o-tile-grid__column--sm-1-2 {
    width: 50%;
  }
  .o-tile-grid__column--sm-1-4 {
    width: 25%;
  }
}
@media (min-width: 768px) {
  .o-tile-grid__column--md-1-1 {
    width: 100%;
  }
  .o-tile-grid__column--md-1-2 {
    width: 50%;
  }
  .o-tile-grid__column--md-1-4 {
    width: 25%;
  }
}
.o-block-link {
  position: relative;
}
.o-block-link__link {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.block {
  font-size: 16px;
  font-family: 'Graphik Regular', Arial, sans-serif;
  color: black;
  line-height: 1.3;
  text-align: left;
  font-weight: 300;
  font-style: normal;
  text-transform: none;
  background-position-x: right;
  background-repeat: none;
  background-size: cover;
  clear: both;
  color: #fff;
  height: auto;
  overflow: hidden;
  padding: 0;
  width: 100%;
}
.block__section {
  font-size: 11px;
  font-family: 'Graphik Bold', 'Graphik Regular', Arial, sans-serif;
  color: #fff;
  line-height: 1;
  text-align: left;
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;
  display: block;
  margin-bottom: 7px;
}
.block__title {
  font-size: 28px;
  font-family: 'Graphik Bold', 'Graphik Regular', Arial, sans-serif;
  color: #fff;
  line-height: 1.2;
  text-align: left;
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 0;
  text-decoration: none !important;
  width: 100%;
}
.block__title a {
  color: #fff;
}
.block__summary {
  font-size: 16px;
  line-height: 1.3;
  color: #fff;
  display: block;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 10px;
  width: 100%;
}
.block__cta {
  font-size: 14px;
  font-family: 'Graphik Bold', 'Graphik Regular', Arial, sans-serif;
  color: #191818;
  line-height: 1;
  text-align: left;
  font-weight: 800;
  font-style: normal;
  display: inline-block;
  margin-top: 15px;
  text-transform: uppercase;
  text-decoration: none !important;
}
.block__cta-ind {
  align-content: center;
  background-color: #fff;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  height: 60px;
  justify-content: center;
  position: absolute;
  right: 0;
  width: 60px;
}
.block__cta-ind:before {
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
  -webkit-transition: transform 0.25s;
  -moz-transition: transform 0.25s;
  -ms-transition: transform 0.25s;
  -o-transition: transform 0.25s;
  bottom: 0;
  color: rgba(0, 0, 0, 0.35);
  display: block;
  font-size: 24px;
  line-height: 60px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  height: 100%;
}
.block__cta-ind:after {
  transition: background-color 0.25s;
  -webkit-transition: background-color 0.25s;
  -moz-transition: background-color 0.25s;
  -ms-transition: background-color 0.25s;
  -o-transition: background-color 0.25s;
  background-color: rgba(255, 255, 255, 0.25);
  display: block;
  height: 60px;
  width: 60px;
  content: "";
}
.block__inner {
  display: flex;
  height: 100%;
  min-height: 140px;
  padding: 30px;
  position: relative;
  flex-wrap: wrap;
  align-content: center;
}
.block__shade {
  background-color: #f5f5f5;
  background-position-x: right;
  background-size: cover;
}
.block__shade {
  background-color: #f5f5f5;
}
.block--slider-tile .block__title {
  font-size: 23px;
  line-height: 1;
}
.block--slider-tile .block__image {
  float: left;
  width: 188px;
  height: 188px;
}
.block--slider-tile .block__inner {
  float: left;
  padding-left: 20px;
  padding-right: 20px;
  width: calc(100% - 188px);
}
.block--slider-tile .block__outer {
  display: none;
}
.block--guide-only {
  height: 0 !important;
}
.block--first {
  display: none;
  background-color: #f5f5f5;
  background-image: url(/content/dist/61f6639fc3ebd37c1a53.svg);
  background-size: 50%;
  background-position: center center;
  background-repeat: no-repeat;
}
.block--center .block__inner {
  align-content: center;
  display: flex !important;
  flex-wrap: wrap;
}
.block--title-only .block__inner {
  padding-right: 60px;
}
.block--plain {
  padding-top: 10px;
}
.block--plain .block__title {
  font-size: 24px;
  color: #191818;
}
.block--plain .block__title a {
  color: #191818;
}
.block--plain .block__cta-ind {
  background-color: #fff;
}
.block--plain .block__inner {
  padding-right: 60px;
}
.block--image .block__image {
  width: 100%;
}
.block--double {
  width: 100%;
  clear: both;
}
.block--double .block__inner {
  position: relative;
  clear: none;
}
.block--double__ind {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 28px 28px;
  border-color: transparent transparent #343434 transparent;
  transition: border-color 0.5s ease;
  -webkit-transition: border-color 0.5s ease;
  -moz-transition: border-color 0.5s ease;
  -ms-transition: border-color 0.5s ease;
  -o-transition: border-color 0.5s ease;
  position: absolute;
  top: 20px;
  left: -28px;
}
.block .img-hide-hover,
.block .img-show-hover {
  display: none;
}
.block.hidden-mobile {
  display: none;
}
.block .img-show-hover {
  display: none;
}
@media only screen and (min-width: 975px) {
  .block {
    height: 195px;
    width: 20%;
    clear: none;
    float: left;
  }
  .block__title {
    font-size: 24px;
  }
  .block__inner {
    display: block;
    padding-top: 30px;
  }
  .block--first {
    display: block;
  }
  .block--text-tile .block__inner:before {
    background-color: rgba(255, 255, 255, 0);
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: background-color 0.25s;
    width: 100%;
  }
  .block--text-tile:hover .block__inner:before {
    background-color: rgba(255, 255, 255, 0.3);
  }
  .block--text-tile:hover .block__cta-ind:before {
    -webkit-transform: translateX(12px);
            transform: translateX(12px);
    color: #000000;
  }
  .block--text-tile:hover .block__cta-ind:after {
    background-color: #ffffff;
  }
  .block--plain {
    padding-right: 10px;
  }
  .block--plain .block__cta-ind {
    right: 10px;
  }
  .block--plain .block__inner {
    padding-top: 10px;
    padding-right: 20px;
  }
  .block--plain:hover .block__inner:before {
    background-color: rgba(255, 255, 255, 0.4);
  }
  .block--title-only .block__inner {
    padding-top: 50px;
    padding-right: 20px;
  }
  .block--title-only:hover .block__inner:before {
    background-color: rgba(255, 255, 255, 0.2);
  }
  .block--double {
    width: 40%;
    clear: none;
    float: left;
  }
  .block--slider-tile .block__image,
  .block--slider-tile .block__inner,
  .block--slider-tile .block__outer {
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
  }
  .block--slider-tile .block__image {
    float: left;
    padding: 0;
    position: relative;
    width: 50%;
    height: 100%;
  }
  .block--slider-tile .block__inner {
    position: relative;
    width: 50%;
  }
  .block--slider-tile .block__outer {
    display: block;
    position: absolute;
    width: 50%;
    top: 0;
    bottom: 0;
    left: 0;
    text-align: center;
  }
  .block--slider-tile .block__ind {
    display: inline-block;
    font-size: 50px;
    line-height: 1;
    margin-top: -25px;
    position: relative;
    top: 50%;
    width: 100px;
  }
  .block--slider-tile:hover .block__image {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  .block--slider-tile:hover .block__inner {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  .block--slider-tile:hover .block__outer {
    left: 50%;
  }
  .block .img-hide-hover {
    display: block;
  }
  .block .img-show-mobile {
    display: none;
    max-width: 100%;
  }
  .block img.img-show-hover,
  .block:hover img.img-hide-hover {
    display: none;
  }
  .block:hover img.img-show-hover {
    display: block;
  }
  .block.hidden-mobile {
    display: block;
  }
}
@media only screen and (min-width: 1125px) {
  .block {
    height: 225px;
  }
  .block__section {
    font-size: 14px;
  }
  .block__summary {
    font-size: 15px;
  }
  .block__cta {
    font-size: 14px;
  }
  .block--text-tile .block__inner {
    padding: 30px 40px;
  }
  .block--double .block__title {
    font-size: 28px;
  }
  .block--plain .block__title {
    font-size: 24px;
  }
  .block--slider-tile .block__title {
    font-size: 28px;
  }
  .block--title-only .block__inner {
    padding-top: 50px;
  }
  .block--title-only.block--double .block__title {
    font-size: 34px;
  }
}
@media only screen and (min-width: 1575px) {
  .block {
    width: 14.28571429%;
  }
  .block--double {
    width: 28.57142857%;
  }
  .block--first {
    display: none;
  }
}
.home-grid {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 75px;
  margin-left: -20px;
  margin-right: -20px;
}
@media (min-width: 768px) {
  .home-grid {
    margin-left: 0;
    margin-right: 0;
  }
}
.main_nav {
  background-color: transparent;
  min-height: 90px;
  margin-bottom: 0;
  border: none;
}
.main_nav .navbar-header {
  min-height: 80px;
}
.main_nav .navbar-brand {
  display: block;
  width: 173px;
  height: 31px;
  margin: 30px 0 0 0;
  padding: 0;
  background-image: url(/content/dist/352bc16e9f030f66e227.png);
  background-size: 173px;
  background-repeat: no-repeat;
  overflow: hidden;
  text-indent: -9999px;
}
.main_nav .navbar-toggle {
  position: absolute;
  top: 20px;
  right: 0;
  margin: 0;
  padding: 15px 0 10px;
  border: none;
  background: #000 !important;
}
.main_nav .navbar-toggle .link_menu {
  margin-top: -2px;
  font-size: 16px;
  font-family: 'Graphik Regular', Arial, sans-serif;
  color: white;
  line-height: 1;
  text-align: left;
  font-weight: 700;
  font-style: normal;
  text-transform: none;
  display: inline-block;
  float: left;
}
.main_nav .navbar-toggle .nav_burger {
  display: block;
  margin-left: 10px;
  display: inline-block;
  width: 24px;
  height: 18px;
  background: url(/content/dist/1af595170bd6eb7d84e7.svg) center center no-repeat;
  background-size: 100%;
  -webkit-filter: invert(1);
          filter: invert(1);
}
.main_nav .navbar-toggle .nav_burger .icon-bar {
  height: 1px;
}
.main_nav .navbar-collapse {
  background-color: black;
  border: none;
  padding: 0;
  box-shadow: none;
}
.main_nav .nav {
  border: none;
  margin: 10px 0 0 0;
  background-color: black;
}
.main_nav .nav li {
  padding: 0;
}
.main_nav .nav > li > a:hover i,
.main_nav .nav > li.open > a:hover i {
  background-color: #00a9e0;
  transition: background-color 0.5s ease;
}
.main_nav .nav > li > a {
  padding: 10px 20px;
  background-color: black;
  font-family: 'Graphik Medium', 'Graphik Regular', Arial, sans-serif;
  font-weight: 500;
  border-top: 1px solid #343434;
}
.main_nav .nav > li > a small {
  display: none;
}
.main_nav .nav .open > .dropdown-menu {
  display: block;
  transition: opacity 0.4s ease-in-out;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -ms-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
}
.main_nav .nav .dropdown-menu {
  background-color: black;
  padding: 0;
}
.main_nav .nav .dropdown-menu > li:last-child a {
  border-bottom: none;
}
.main_nav .nav .dropdown-menu > li > a {
  font-size: 14px;
  font-family: 'Graphik Bold', 'Graphik Regular', Arial, sans-serif;
  color: white;
  line-height: 2;
  text-align: left;
  font-weight: 300;
  font-style: normal;
  text-transform: none;
  border-top: 1px solid #363636;
}
@media (min-width: 975px) {
  .main_nav .nav .dropdown-menu > li > a {
    white-space: nowrap;
  }
}
@media (min-width: 975px) {
  .main_nav .nav li .caret {
    display: none;
  }
  .main_nav .nav .open > .dropdown-menu {
    display: none;
  }
  .main_nav {
    height: 100px;
  }
  .main_nav .navbar-header {
    padding: 0;
  }
  .main_nav.navbar.navbar-inverse {
    margin-bottom: 0;
  }
  .main_nav .navbar-collapse {
    padding: 0;
  }
  .main_nav .nav {
    float: right;
    margin-top: 30px;
    padding: 0;
    text-align: left;
  }
  .main_nav .nav > li:hover > a,
  .main_nav .nav > li.open > a,
  .main_nav .nav li.active > a {
    color: white !important;
    border-bottom: none;
  }
  .main_nav .nav > li:hover .dropdown-menu {
    display: block;
  }
  .main_nav .nav > li > a {
    display: inline-block;
    background-color: transparent !important;
    border: none;
    color: white;
    font-size: 14px;
    padding: 15px 12px 0;
    height: 70px;
  }
  .main_nav .nav > li > a small {
    display: block;
    clear: both;
    font-family: 'Graphik Regular', Arial, sans-serif;
    font-size: 15px;
    font-weight: 300;
  }
  .main_nav .nav > li > a i {
    display: block;
    clear: both;
    height: 10px;
    width: 100%;
    background-color: transparent;
    transition: background-color 0.5s ease;
    -webkit-transition: background-color 0.5s ease;
    -moz-transition: background-color 0.5s ease;
    -ms-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .main_nav .nav .dropdown-menu {
    background-color: black;
    padding: 0;
    border: 0;
  }
  .main_nav .nav .dropdown-menu > li > a {
    font-size: 14px;
    font-family: 'Graphik Medium', 'Graphik Regular', Arial, sans-serif;
    color: white;
    line-height: 2;
    text-align: left;
    font-weight: 300;
    font-style: normal;
    text-transform: none;
    border: none;
    padding: 8px 25px 8px 20px;
    transition: background-color 0.5s ease, color 0.5s ease;
  }
  .main_nav .nav .dropdown-menu > li > a:hover {
    background-color: #00a9e0;
    color: black;
  }
}
@media (min-width: 1125px) {
  .main_nav .nav > li > a {
    padding: 15px 16px 0;
    font-size: 15px;
  }
}
.c-page-header {
  background-color: #F8F8F8;
}
.c-page-header__title {
  font-size: 26px;
  line-height: 1.1;
  margin: 0;
  color: #01A9E0;
  padding-top: 15px;
  padding-bottom: 20px;
}
@media (min-width: 975px) {
  .c-page-header__title {
    font-size: 48px;
    padding-top: 20px;
    padding-bottom: 25px;
  }
}
@media (min-width: 1125px) {
  .c-page-header__title {
    font-size: 52px;
    padding-top: 30px;
    padding-bottom: 35px;
  }
}
.owl-carousel {
  display: block;
  padding: 0;
  width: auto;
  margin-left: -20px;
  margin-right: -20px;
}
.owl-carousel .slide {
  display: none;
}
.owl-carousel .slide:first-child {
  display: block;
}
@media (min-width: 768px) {
  .owl-carousel {
    margin-left: 0;
    margin-right: 0;
  }
}
.owl-loaded .slide {
  display: block;
}
.slide {
  position: relative;
  background-color: #010101;
}
.slide__link {
  display: block;
}
.slide__media {
  display: block;
  position: relative;
  padding-bottom: 81.08108108%;
}
.slide__media--desktop {
  display: none;
}
@media (min-width: 768px) {
  .slide__media--mobile {
    display: none;
  }
  .slide__media--desktop {
    display: block;
  }
}
@media (min-width: 768px) {
  .slide__media {
    padding-bottom: 40.12738854%;
  }
}
.slide__image {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.slide__controls {
  position: absolute;
}
@media (max-width: 767px) {
  .slide__controls {
    bottom: 15px;
    right: 20px;
  }
  .slide__prev,
  .slide__next {
    background-color: transparent;
    border: none;
    color: #fff;
    display: inline-block;
    height: 46px;
    padding: 0;
    width: 46px;
    border: 2px solid #fff;
    border-radius: 100%;
  }
  .slide__prev:after,
  .slide__next:after {
    font-family: 'icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e901";
    display: inline-block;
    font-size: 42px;
    line-height: 42px;
  }
  .slide__prev:after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .slide__next {
    margin-left: 10px;
  }
}
@media (min-width: 768px) {
  .slide__controls {
    bottom: 0;
    left: 0;
    right: 0;
  }
  .slide__prev,
  .slide__next {
    border: none;
    color: #000;
    display: block;
    height: 65px;
    padding: 0;
    position: absolute;
    top: -65px;
    width: 65px;
  }
  .slide__prev:after,
  .slide__next:after {
    transition: all 0.25s;
    font-family: 'icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e900";
    display: inline-block;
    font-size: 15px;
    line-height: 65px;
  }
  .slide__prev {
    background: linear-gradient(110deg, #ffffff 0, #ffffff 70%, rgba(255, 255, 255, 0) 72%, rgba(255, 255, 255, 0) 100%);
    left: 0;
    padding-left: 4px;
    text-align: left;
  }
  .slide__prev:after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .slide__prev:hover:after {
    -webkit-transform: rotate(180deg) scale(1.5);
            transform: rotate(180deg) scale(1.5);
  }
  .slide__next {
    background: linear-gradient(250deg, #ffffff 0, #ffffff 68%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0) 100%);
    padding-right: 4px;
    text-align: right;
    right: 0;
  }
  .slide__next:hover:after {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}
.header_slider {
  background: linear-gradient(0deg, white 80%, black 20%);
  position: relative;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .header_slider {
    margin-bottom: 30px;
  }
}
@media (min-width: 975px) {
  .header_slider {
    margin-bottom: 60px;
  }
}
.m0 {
  margin: 0;
}
.mt0 {
  margin-top: 0;
}
.mr0 {
  margin-right: 0;
}
.mb0 {
  margin-bottom: 0;
}
.ml0 {
  margin-left: 0;
}
.mx0 {
  margin-left: 0;
  margin-right: 0;
}
.my0 {
  margin-top: 0;
  margin-bottom: 0;
}
.m1 {
  margin: 0.5rem;
}
.mt1 {
  margin-top: 0.5rem;
}
.mr1 {
  margin-right: 0.5rem;
}
.mb1 {
  margin-bottom: 0.5rem;
}
.ml1 {
  margin-left: 0.5rem;
}
.mx1 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.my1 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.m2 {
  margin: 1rem;
}
.mt2 {
  margin-top: 1rem;
}
.mr2 {
  margin-right: 1rem;
}
.mb2 {
  margin-bottom: 1rem;
}
.ml2 {
  margin-left: 1rem;
}
.mx2 {
  margin-left: 1rem;
  margin-right: 1rem;
}
.my2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.m3 {
  margin: 1.5rem;
}
.mt3 {
  margin-top: 1.5rem;
}
.mr3 {
  margin-right: 1.5rem;
}
.mb3 {
  margin-bottom: 1.5rem;
}
.ml3 {
  margin-left: 1.5rem;
}
.mx3 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.my3 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.m4 {
  margin: 2rem;
}
.mt4 {
  margin-top: 2rem;
}
.mr4 {
  margin-right: 2rem;
}
.mb4 {
  margin-bottom: 2rem;
}
.ml4 {
  margin-left: 2rem;
}
.mx4 {
  margin-left: 2rem;
  margin-right: 2rem;
}
.my4 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.mxn1 {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.mxn2 {
  margin-left: -1rem;
  margin-right: -1rem;
}
.mxn3 {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
.mxn4 {
  margin-left: -2rem;
  margin-right: -2rem;
}
.ml-auto {
  margin-left: auto;
}
.mr-auto {
  margin-right: auto;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

